From 2789e42c77182612aca00048b8d4eb6ad630c9bd Mon Sep 17 00:00:00 2001 From: Changwoo Park Date: Thu, 20 Jul 2023 17:20:02 +0900 Subject: [PATCH] =?UTF-8?q?[IFB][ENC28J60]=20-=20IFB=20v2.0=20:=20JLCPCB?= =?UTF-8?q?=20=EC=A3=BC=EB=AC=B8=EC=9D=98=20=EA=B1=B4=20-=20ENC28J60=20?= =?UTF-8?q?=EC=82=AC=EC=9A=A9=20test=20code?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- FC_InterfaceBoard/FC_InterfaceBoard.h | 12 +- FC_InterfaceBoard/FC_InterfaceBoard.ino | 7 +- FC_InterfaceBoard/GPIO.ino | 6 + FC_InterfaceBoard/Periodics.ino | 38 +- FC_InterfaceBoard/Processes.ino | 10 +- FC_InterfaceBoard/RS485.ino | 2 +- PCB/megaPCB/fp-info-cache | 157917 +-------------------- PCB/megaPCB/megaPCB.kicad_pcb | 56725 ++++---- PCB/megaPCB/megaPCB.kicad_prl | 20 +- PCB/megaPCB/megaPCB.kicad_pro | 2 +- PCB/megaPCB/megaPCB.kicad_sch | 104 +- test_ENC28J60/test_ENC28J60.ino | 80 + 12 files changed, 28476 insertions(+), 186447 deletions(-) create mode 100644 test_ENC28J60/test_ENC28J60.ino diff --git a/FC_InterfaceBoard/FC_InterfaceBoard.h b/FC_InterfaceBoard/FC_InterfaceBoard.h index d3aeb81..de147d4 100644 --- a/FC_InterfaceBoard/FC_InterfaceBoard.h +++ b/FC_InterfaceBoard/FC_InterfaceBoard.h @@ -6,6 +6,8 @@ /* ---------- Periodics ---------- */ // Flags bool T_1ms = false; +bool T_2ms = false; +bool T_5ms = false; bool T_10ms = false; bool T_20ms = false; bool T_50ms = false; @@ -19,7 +21,8 @@ bool T_5000ms = false; // Datas int msCnt = 0; unsigned long timer = 0; -#define AI_AVG_SIZE 20 +#define AI_AVG_SIZE 50 +#define AI_RANGE 8 /* ---------- Arduino Mega 2560 Basic IO ---------- */ // Pins @@ -32,11 +35,12 @@ const int AiPin[] = { A0, A1, A2, A3, A4, A5, A6, A7, // Data Storages int Size_DO = 16; int Size_DI = 8; -int Size_AI = 16; +int Size_AI = AI_RANGE; +int index_AI = 0; int Values_DI; // digit values to a number -int Values_AI[16]; -int Recent_AI[16][AI_AVG_SIZE]; +int Values_AI[AI_RANGE]; +int Recent_AI[AI_RANGE][AI_AVG_SIZE]; /* ---------- I2C (Analog Output, DAC) ---------- */ // Addresses diff --git a/FC_InterfaceBoard/FC_InterfaceBoard.ino b/FC_InterfaceBoard/FC_InterfaceBoard.ino index 83e195b..adf0f47 100644 --- a/FC_InterfaceBoard/FC_InterfaceBoard.ino +++ b/FC_InterfaceBoard/FC_InterfaceBoard.ino @@ -1,8 +1,6 @@ #include "FC_InterfaceBoard.h" - - #define CR "\r" #define FIN "\n" #define CRLF "\r\n" @@ -13,7 +11,7 @@ String IdeSerial; // for 485_0 void setup() { - // put your setup code here, to run once: + // Serial setup (Debug) Serial.begin(9600); Serial.println("Start!"); @@ -98,13 +96,16 @@ void loop() { } // Init else if(cmd=="State?"){ + client.print(cmd + " " + RcvOK + FIN); }else if(cmd=="RngAO!"){ dataSize = demuxNum(cmdData, data); client.print(Prcss_RngAO(data, dataSize)); + }else if(cmd=="ChMC9_1!"){ dataSize = demuxNum(cmdData, data); client.print(Prcss_ChMC9(data, dataSize)); + } // Extra diff --git a/FC_InterfaceBoard/GPIO.ino b/FC_InterfaceBoard/GPIO.ino index 886ef3c..f71a574 100644 --- a/FC_InterfaceBoard/GPIO.ino +++ b/FC_InterfaceBoard/GPIO.ino @@ -15,11 +15,17 @@ void read_analog(){ for(i = 0 ; i < Size_AI ; i++){ Values_AI[i] = analogRead(AiPin[i]); + /* for(int j = 0; j < AI_AVG_SIZE - 1; j++) { Recent_AI[i][j] = Recent_AI[i][j + 1]; } Recent_AI[i][AI_AVG_SIZE - 1] = Values_AI[i]; + */ + // 현재 인덱스 위치에 값을 저장 + Recent_AI[i][index_AI] = Values_AI[i]; } + // 인덱스를 증가시키고, 필요한 경우 순환 + index_AI = (index_AI + 1) % AI_AVG_SIZE; } void read_digital(){ diff --git a/FC_InterfaceBoard/Periodics.ino b/FC_InterfaceBoard/Periodics.ino index 88f76b5..cc1cb05 100644 --- a/FC_InterfaceBoard/Periodics.ino +++ b/FC_InterfaceBoard/Periodics.ino @@ -2,9 +2,19 @@ void Periodic_run(){ if(T_1ms){ // Read Arduino AI - read_analog(); + // read_analog(); T_1ms = false; } + if(T_2ms){ + // Read Arduino AI + read_analog(); // runtime of 1.xxx ms @8ch + T_2ms = false; + } + if(T_5ms){ + // Read Arduino AI + //read_analog(); // runtime of 2.048012 ms @16ch + T_5ms = false; + } if(T_10ms){ //read_analog(); T_10ms = false; @@ -40,6 +50,26 @@ void Periodic_run(){ write_buff(Buff_485_1_Wr, msg_MC9_PV(RS485_1_Addr[i])); } } + /* +float sum_AI = 0.0f; + float factor = 1.0f / AI_AVG_SIZE; + String str = "AI?:"; + for (int i = 0; i < Size_AI; i++) { + int sum_AI = 0; + for(int j = 0; j < AI_AVG_SIZE; j++) { + sum_AI += (float) Recent_AI[i][j] * factor; + } + sum_AI *= 100.0f; // convert the sum to an integer representation + unsigned int integer_part = (unsigned int)sum_AI; + + char formattedNumber[5]; // 4자리 숫자 + 널 종료 문자 + //sprintf(formattedNumber, "%04X", Values_AI[i]); // 4자리로 고정된 형식의 문자열 생성 + sprintf(formattedNumber, "%04X", integer_part); // 4자리로 고정된 형식의 문자열 생성 + str += formattedNumber; // 형식화된 문자열 추가 + str += ','; + } + Serial.println(str); + */ T_1000ms = false; } if(T_2000ms){ @@ -64,6 +94,12 @@ void timer_1ms(){ msCnt += 1; T_1ms = true; + if (msCnt % 4 == 0){ + T_2ms = true; + } + if (msCnt % 5 == 0){ + T_5ms = true; + } if (msCnt % 10 == 0){ T_10ms = true; } diff --git a/FC_InterfaceBoard/Processes.ino b/FC_InterfaceBoard/Processes.ino index d614bdc..917d5cb 100644 --- a/FC_InterfaceBoard/Processes.ino +++ b/FC_InterfaceBoard/Processes.ino @@ -1,16 +1,20 @@ String Prcss_ALL_Read(){ String str = ""; + float factor = 1.0f / AI_AVG_SIZE; str += "AI?:"; for (int i = 0; i < Size_AI; i++) { - int sum_AI = 0; + float sum_AI = 0; for(int j = 0; j < AI_AVG_SIZE; j++) { - sum_AI += Recent_AI[i][j]; + sum_AI += (float) Recent_AI[i][j] * factor; } + sum_AI *= 50.0f; // convert the sum to an integer representation, Transfer data max(0xFFFF): 65,535. Each data max(10bit ADC): 1024. 1024 x 50 = 51,200 + unsigned int integer_part = (unsigned int)sum_AI; + char formattedNumber[5]; // 4자리 숫자 + 널 종료 문자 //sprintf(formattedNumber, "%04X", Values_AI[i]); // 4자리로 고정된 형식의 문자열 생성 - sprintf(formattedNumber, "%04X", sum_AI); // 4자리로 고정된 형식의 문자열 생성 + sprintf(formattedNumber, "%04X", integer_part); // 4자리로 고정된 형식의 문자열 생성 str += formattedNumber; // 형식화된 문자열 추가 str += ','; } diff --git a/FC_InterfaceBoard/RS485.ino b/FC_InterfaceBoard/RS485.ino index 4ea020c..8c93e22 100644 --- a/FC_InterfaceBoard/RS485.ino +++ b/FC_InterfaceBoard/RS485.ino @@ -43,7 +43,7 @@ int recieve_485(){ // Timeout code if(Wait_485_1){ Wait_485_1_cnt++; - if(Wait_485_1_cnt > 25){ // Timeout = periodic(20ms) x 25 = 500 msec + if(Wait_485_1_cnt > 25){ // Timeout = periodic(20ms) x 20 = 400 msec //Serial.println("485 not responced... (Timeout)"); timeoutMC9(); //if((latest_sent_msg == MC9_10_PV) ||(latest_sent_msg == MC9_10_SV)){ diff --git a/PCB/megaPCB/fp-info-cache b/PCB/megaPCB/fp-info-cache index 945f85e..5a5b06a 100644 --- a/PCB/megaPCB/fp-info-cache +++ b/PCB/megaPCB/fp-info-cache @@ -1,157760 +1,729 @@ -37976807964244477 -Audio_Module -Reverb_BTDR-1H -Digital Reverberation Unit, http://www.belton.co.kr/inc/downfile.php?seq=17&file=pdf (footprint from http://www.uk-electronic.de/PDF/BTDR-1.pdf) -audio belton reverb -0 -7 -7 -Audio_Module -Reverb_BTDR-1V -Digital Reverberation Unit, http://www.belton.co.kr/inc/downfile.php?seq=17&file=pdf (footprint from http://www.uk-electronic.de/PDF/BTDR-1.pdf) -audio belton reverb -0 -7 -7 -Battery -BatteryHolder_Bulgin_BX0036_1xC -Bulgin Battery Holder, BX0036, Battery Type C (https://www.bulgin.com/products/pub/media/bulgin/data/Battery_holders.pdf) -Bulgin BX0036 -0 -2 -2 -Battery -BatteryHolder_ComfortableElectronic_CH273-2450_1x2450 -Comfortable Electronic CR2450 battery holder, http://www.comf.com.tw/ProductDetail.asp?no=148 -Comfortable Electronic CR2450 -0 -2 -2 -Battery -BatteryHolder_Eagle_12BH611-GR -https://eu.mouser.com/datasheet/2/209/EPD-200766-1274481.pdf -9V Battery Holder -0 -2 -2 -Battery -BatteryHolder_Keystone_103_1x20mm -http://www.keyelco.com/product-pdf.cfm?p=719 -Keystone type 103 battery holder -0 -2 -2 -Battery -BatteryHolder_Keystone_104_1x23mm -http://www.keyelco.com/product-pdf.cfm?p=744 -Keystone type 104 battery holder -0 -2 -2 -Battery -BatteryHolder_Keystone_105_1x2430 -http://www.keyelco.com/product-pdf.cfm?p=745 -Keystone type 105 battery holder -0 -2 -2 -Battery -BatteryHolder_Keystone_106_1x20mm -http://www.keyelco.com/product-pdf.cfm?p=720 -Keystone type 106 battery holder -0 -2 -2 -Battery -BatteryHolder_Keystone_107_1x23mm -http://www.keyelco.com/product-pdf.cfm?p=746 -Keystone type 107 battery holder -0 -2 -2 -Battery -BatteryHolder_Keystone_500 -Keystone #500, CR1220 battery holder, http://www.keyelco.com/product-pdf.cfm?p=710 -CR1220 battery holder -0 -2 -2 -Battery -BatteryHolder_Keystone_1042_1x18650 -Battery holder for 18650 cylindrical cells http://www.keyelco.com/product.cfm/product_id/918 -18650 Keystone 1042 Li-ion -0 -2 -2 -Battery -BatteryHolder_Keystone_1057_1x2032 -SMT (Auto-In/Ultra-Low) Holder for 2032 Cell, 33.2 x 23.9mm, 2mm height above PCB, https://www.keyelco.com/userAssets/file/M65p4.pdf -Keystone type 1057 coin cell holder -0 -2 -2 -Battery -BatteryHolder_Keystone_1058_1x2032 -http://www.keyelco.com/product-pdf.cfm?p=14028 -Keystone type 1058 coin cell retainer -0 -2 -2 -Battery -BatteryHolder_Keystone_1060_1x2032 -http://www.keyelco.com/product-pdf.cfm?p=726 -CR2032 BR2032 BatteryHolder Battery -0 -2 -2 -Battery -BatteryHolder_Keystone_2460_1xAA -https://www.keyelco.com/product-pdf.cfm?p=1025 -AA battery cell holder -0 -2 -2 -Battery -BatteryHolder_Keystone_2462_2xAA -2xAA cell battery holder, Keystone P/N 2462, https://www.keyelco.com/product-pdf.cfm?p=1027 -AA battery cell holder -0 -2 -2 -Battery -BatteryHolder_Keystone_2466_1xAAA -1xAAA Battery Holder, Keystone, Plastic Case, http://www.keyelco.com/product-pdf.cfm?p=1031 -AAA battery holder Keystone -0 -2 -2 -Battery -BatteryHolder_Keystone_2468_2xAAA -2xAAA cell battery holder, Keystone P/N 2468, http://www.keyelco.com/product-pdf.cfm?p=1033 -AAA battery cell holder -0 -2 -2 -Battery -BatteryHolder_Keystone_2479_3xAAA -Keystone Battery Holder, 2479, Battery Type 3xAAA (Script generated with StandardBox.py) (Keystone Battery Holder, 2479, Battery Type 3xAAA) -Keystone Battery Holder 2479 Battery Type 3xAAA -0 -2 -2 -Battery -BatteryHolder_Keystone_2993 -http://www.keyelco.com/product-pdf.cfm?p=776 -Keystone type 2993 negative battery contact -0 -1 -1 -Battery -BatteryHolder_Keystone_2998_1x6.8mm -www.keyelco.com/product-pdf.cfm?p=763 -Keystone type 2998 battery holder -0 -3 -2 -Battery -BatteryHolder_Keystone_3000_1x12mm -http://www.keyelco.com/product-pdf.cfm?p=777 -Keystone type 3000 coin cell retainer -0 -3 -2 -Battery -BatteryHolder_Keystone_3001_1x12mm -http://www.keyelco.com/product-pdf.cfm?p=778 -Keystone type 3001 coin cell retainer -0 -3 -2 -Battery -BatteryHolder_Keystone_3002_1x2032 -https://www.tme.eu/it/Document/a823211ec201a9e209042d155fe22d2b/KEYS2996.pdf -BR2016 CR2016 DL2016 BR2020 CL2020 BR2025 CR2025 DL2025 DR2032 CR2032 DL2032 -0 -3 -2 -Battery -BatteryHolder_Keystone_3008_1x2450 -http://www.keyelco.com/product-pdf.cfm?p=786 -Keystone type 3008 coin cell retainer -0 -3 -2 -Battery -BatteryHolder_Keystone_3009_1x2450 -http://www.keyelco.com/product-pdf.cfm?p=787 -Keystone type 3009 coin cell retainer -0 -3 -2 -Battery -BatteryHolder_Keystone_3034_1x20mm -Keystone 3034 SMD battery holder for 2020, 2025 and 2032 coincell batteries. http://www.keyelco.com/product-pdf.cfm?p=798 -Keystone type 3034 coin cell retainer -0 -3 -2 -Battery -BatteryHolder_LINX_BAT-HLD-012-SMT -SMT battery holder for CR1216/1220/1225, https://linxtechnologies.com/wp/wp-content/uploads/bat-hld-012-smt.pdf -battery holder coin cell cr1216 cr1220 cr1225 -0 -3 -2 -Battery -BatteryHolder_MPD_BA9VPC_1xPP3 -1xPP3 (9V) battery holder, Memory Protection Devices P/N BA9VPC, http://www.memoryprotectiondevices.com/datasheets/BA9VPC-datasheet.pdf -PP3 Battery Holder BA9VPC 9V -0 -2 -2 -Battery -BatteryHolder_MPD_BC2AAPC_2xAA -2xAA cell battery holder, Memory Protection Devices P/N BC2AAPC, http://www.memoryprotectiondevices.com/datasheets/BC2AAPC-datasheet.pdf -AA battery cell holder -0 -2 -2 -Battery -BatteryHolder_MPD_BC12AAPC_2xAA -2xAA cell battery holder, Memory Protection Devices P/N BC12AAPC, http://www.memoryprotectiondevices.com/datasheets/BC12AAPC-datasheet.pdf -AA battery cell holder -0 -2 -2 -Battery -BatteryHolder_MPD_BC2003_1x2032 -http://www.memoryprotectiondevices.com/datasheets/BC-2003-datasheet.pdf -BC2003 CR2032 2032 Battery Holder -0 -3 -2 -Battery -BatteryHolder_MPD_BH-18650-PC2 -18650 Battery Holder (http://www.memoryprotectiondevices.com/datasheets/BK-18650-PC2-datasheet.pdf) -18650 Battery Holder -0 -2 -2 -Battery -BatteryHolder_Seiko_MS621F -Seiko MS621F, https://www.sii.co.jp/en/me/files/2014/02/file_EXTENDED_PRDCT_SPEC_75_FILE_11.jpg -Seiko MS621F -0 -2 -2 -Battery -BatteryHolder_TruPower_BH-331P_3xAA -Keystone Battery Holder BH-331P Battery Type 3xAA (Script generated with StandardBox.py) (Keystone Battery Holder BH-331P Battery Type 3xAA) -Battery Holder BH-331P Battery Type 3xAA -0 -2 -2 -Battery -Battery_CR1225 -CR1225 battery -battery CR1225 coin cell -0 -0 -0 -Battery -Battery_Panasonic_CR1025-VSK_Vertical_CircularHoles -Panasonic CR-1025/VSK battery -battery CR-1025 coin cell vertical -0 -2 -2 -Battery -Battery_Panasonic_CR1220-VCN_Vertical_CircularHoles -Panasonic CR-1220/VCN battery, https://industrial.panasonic.com/cdbs/www-data/pdf2/AAA4000/AAA4000D140.PDF -battery CR-1220 coin cell vertical -0 -2 -2 -Battery -Battery_Panasonic_CR1632-V1AN_Vertical_CircularHoles -Panasonic CR-1632-V1AN battery, https://industrial.panasonic.com/cdbs/www-data/pdf2/AAA4000/AAA4000D464.PDF -battery CR-1632 coin cell vertical -0 -2 -2 -Battery -Battery_Panasonic_CR2025-V1AK_Vertical_CircularHoles -Panasonic CR-2025/V1AK battery, -battery CR-2025 coin cell vertical -0 -2 -2 -Battery -Battery_Panasonic_CR2032-VS1N_Vertical_CircularHoles -Panasonic CR-2032/VS1N battery, https://industrial.panasonic.com/cdbs/www-data/pdf2/AAA4000/AAA4000D348.PDF -battery CR-2032 coin cell vertical -0 -2 -2 -Battery -Battery_Panasonic_CR2354-VCN_Vertical_CircularHoles -Panasonic CR-2354/VCN battery, https://industrial.panasonic.com/cdbs/www-data/pdf2/AAA4000/AAA4000D486.PDF -battery CR-2354/VCN coin cell vertical -0 -2 -2 -Battery -Battery_Panasonic_CR2450-VAN_Vertical_CircularHoles -Panasonic CR-2450/VAN battery, https://industrial.panasonic.com/cdbs/www-data/pdf2/AAA4000/AAA4000D492.PDF -battery CR-2450 coin cell -0 -2 -2 -Battery -Battery_Panasonic_CR2477-VCN_Vertical_CircularHoles -Panasonic CR-2477/VCN battery, https://industrial.panasonic.com/cdbs/www-data/pdf2/AAA4000/AAA4000D502.PDF -battery CR-2477 coin cell vertical -0 -2 -2 -Battery -Battery_Panasonic_CR3032-VCN_Vertical_CircularHoles -Panasonic CR-3032/VCN battery, https://industrial.panasonic.com/cdbs/www-data/pdf2/AAA4000/AAA4000D508.PDF -battery CR-3032 coin cell vertical -0 -2 -2 -Button_Switch_Keyboard -SW_Cherry_MX_1.00u_PCB -Cherry MX keyswitch, 1.00u, PCB mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf -Cherry MX keyswitch 1.00u PCB -0 -2 -2 -Button_Switch_Keyboard -SW_Cherry_MX_1.00u_Plate -Cherry MX keyswitch, 1.00u, plate mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf -Cherry MX keyswitch 1.00u plate -0 -2 -2 -Button_Switch_Keyboard -SW_Cherry_MX_1.25u_PCB -Cherry MX keyswitch, 1.25u, PCB mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf -Cherry MX keyswitch 1.25u PCB -0 -2 -2 -Button_Switch_Keyboard -SW_Cherry_MX_1.25u_Plate -Cherry MX keyswitch, 1.25u, plate mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf -Cherry MX keyswitch 1.25u plate -0 -2 -2 -Button_Switch_Keyboard -SW_Cherry_MX_1.50u_PCB -Cherry MX keyswitch, 1.50u, PCB mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf -Cherry MX keyswitch 1.50u PCB -0 -2 -2 -Button_Switch_Keyboard -SW_Cherry_MX_1.50u_Plate -Cherry MX keyswitch, 1.50u, plate mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf -Cherry MX keyswitch 1.50u plate -0 -2 -2 -Button_Switch_Keyboard -SW_Cherry_MX_1.75u_PCB -Cherry MX keyswitch, 1.75u, PCB mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf -Cherry MX keyswitch 1.75u PCB -0 -2 -2 -Button_Switch_Keyboard -SW_Cherry_MX_1.75u_Plate -Cherry MX keyswitch, 1.75u, plate mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf -Cherry MX keyswitch 1.75u plate -0 -2 -2 -Button_Switch_Keyboard -SW_Cherry_MX_2.00u_PCB -Cherry MX keyswitch, 2.00u, PCB mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf -Cherry MX keyswitch 2.00u PCB -0 -2 -2 -Button_Switch_Keyboard -SW_Cherry_MX_2.00u_Plate -Cherry MX keyswitch, 2.00u, plate mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf -Cherry MX keyswitch 2.00u plate -0 -2 -2 -Button_Switch_Keyboard -SW_Cherry_MX_2.00u_Vertical_PCB -Cherry MX keyswitch, 2.00u, vertical, PCB mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf -Cherry MX keyswitch 2.00u vertical PCB -0 -2 -2 -Button_Switch_Keyboard -SW_Cherry_MX_2.00u_Vertical_Plate -Cherry MX keyswitch, 2.00u, vertical, plate mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf -Cherry MX keyswitch 2.00u vertical plate -0 -2 -2 -Button_Switch_Keyboard -SW_Cherry_MX_2.25u_PCB -Cherry MX keyswitch, 2.25u, PCB mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf -Cherry MX keyswitch 2.25u PCB -0 -2 -2 -Button_Switch_Keyboard -SW_Cherry_MX_2.25u_Plate -Cherry MX keyswitch, 2.25u, plate mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf -Cherry MX keyswitch 2.25u plate -0 -2 -2 -Button_Switch_Keyboard -SW_Cherry_MX_2.75u_PCB -Cherry MX keyswitch, 2.75u, PCB mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf -Cherry MX keyswitch 2.75u PCB -0 -2 -2 -Button_Switch_Keyboard -SW_Cherry_MX_2.75u_Plate -Cherry MX keyswitch, 2.75u, plate mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf -Cherry MX keyswitch 2.75u plate -0 -2 -2 -Button_Switch_Keyboard -SW_Cherry_MX_6.25u_PCB -Cherry MX keyswitch, 6.25u, PCB mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf -Cherry MX keyswitch 6.25u PCB -0 -2 -2 -Button_Switch_Keyboard -SW_Cherry_MX_6.25u_Plate -Cherry MX keyswitch, 6.25u, plate mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf -Cherry MX keyswitch 6.25u plate -0 -2 -2 -Button_Switch_Keyboard -SW_Cherry_MX_ISOEnter_PCB -Cherry MX keyswitch, ISO Enter, PCB mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf -Cherry MX keyswitch ISO enter PCB -0 -2 -2 -Button_Switch_Keyboard -SW_Cherry_MX_ISOEnter_Plate -Cherry MX keyswitch, ISO Enter, plate mount, http://cherryamericas.com/wp-content/uploads/2014/12/mx_cat.pdf -Cherry MX keyswitch ISO enter plate -0 -2 -2 -Button_Switch_Keyboard -SW_Matias_1.00u -Matias/ALPS keyswitch, 1.00u, http://matias.ca/switches/ -Matias ALPS keyswitch 1.00u -0 -2 -2 -Button_Switch_Keyboard -SW_Matias_1.25u -Matias/ALPS keyswitch, 1.25u, http://matias.ca/switches/ -Matias ALPS keyswitch 1.25u -0 -2 -2 -Button_Switch_Keyboard -SW_Matias_1.50u -Matias/ALPS keyswitch, 1.50u, http://matias.ca/switches/ -Matias ALPS keyswitch 1.50u -0 -2 -2 -Button_Switch_Keyboard -SW_Matias_1.75u -Matias/ALPS keyswitch, 1.75u, http://matias.ca/switches/ -Matias ALPS keyswitch 1.75u -0 -2 -2 -Button_Switch_Keyboard -SW_Matias_2.00u -Matias/ALPS keyswitch, 2.00u, http://matias.ca/switches/ -Matias ALPS keyswitch 2.00u -0 -2 -2 -Button_Switch_Keyboard -SW_Matias_2.25u -Matias/ALPS keyswitch, 2.25u, http://matias.ca/switches/ -Matias ALPS keyswitch 2.25u -0 -2 -2 -Button_Switch_Keyboard -SW_Matias_2.75u -Matias/ALPS keyswitch, 2.75u, http://matias.ca/switches/ -Matias ALPS keyswitch 2.75u -0 -2 -2 -Button_Switch_Keyboard -SW_Matias_6.25u -Matias/ALPS keyswitch, 6.25u, http://matias.ca/switches/ -Matias ALPS keyswitch 6.25u -0 -2 -2 -Button_Switch_Keyboard -SW_Matias_ISOEnter -Matias/ALPS keyswitch, ISO Enter, http://matias.ca/switches/ -Matias ALPS keyswitch ISO enter -0 -2 -2 -Button_Switch_SMD -Nidec_Copal_SH-7010A -4-bit rotary coded switch, J-hook, https://www.nidec-copal-electronics.com/e/catalog/switch/sh-7000.pdf -rotary switch bcd -0 -6 -5 -Button_Switch_SMD -Nidec_Copal_SH-7010B -4-bit rotary coded switch, gull wing, https://www.nidec-copal-electronics.com/e/catalog/switch/sh-7000.pdf -rotary switch bcd -0 -6 -5 -Button_Switch_SMD -Nidec_Copal_SH-7040B -4-bit rotary coded switch, gull wing, Gray code, https://www.nidec-copal-electronics.com/e/catalog/switch/sh-7000.pdf -rotary switch bcd -0 -5 -5 -Button_Switch_SMD -Panasonic_EVQPUJ_EVQPUA -http://industrial.panasonic.com/cdbs/www-data/pdf/ATV0000/ATV0000CE5.pdf -SMD SMT SPST EVQPUJ EVQPUA -0 -4 -2 -Button_Switch_SMD -Panasonic_EVQPUK_EVQPUB -http://industrial.panasonic.com/cdbs/www-data/pdf/ATV0000/ATV0000CE5.pdf -SMD SMT SPST EVQPUK EVQPUB -0 -4 -2 -Button_Switch_SMD -Panasonic_EVQPUL_EVQPUC -http://industrial.panasonic.com/cdbs/www-data/pdf/ATV0000/ATV0000CE5.pdf -SMD SMT SPST EVQPUL EVQPUC -0 -4 -2 -Button_Switch_SMD -Panasonic_EVQPUM_EVQPUD -http://industrial.panasonic.com/cdbs/www-data/pdf/ATV0000/ATV0000CE5.pdf -SMD SMT SPST EVQPUM EVQPUD -0 -4 -2 -Button_Switch_SMD -SW_DIP_SPSTx01_Slide_6.7x4.1mm_W6.73mm_P2.54mm_LowProfile_JPin -SMD 1x-dip-switch SPST , Slide, row spacing 6.73 mm (264 mils), body size 6.7x4.1mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile, JPin -SMD DIP Switch SPST Slide 6.73mm 264mil SMD LowProfile JPin -0 -2 -2 -Button_Switch_SMD -SW_DIP_SPSTx01_Slide_6.7x4.1mm_W8.61mm_P2.54mm_LowProfile -SMD 1x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 6.7x4.1mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile -SMD DIP Switch SPST Slide 8.61mm 338mil SMD LowProfile -0 -2 -2 -Button_Switch_SMD -SW_DIP_SPSTx01_Slide_9.78x4.72mm_W8.61mm_P2.54mm -SMD 1x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 9.78x4.72mm (see e.g. https://www.ctscorp.com/wp-content/uploads/204.pdf), SMD -SMD DIP Switch SPST Slide 8.61mm 338mil SMD -0 -2 -2 -Button_Switch_SMD -SW_DIP_SPSTx01_Slide_Copal_CHS-01A_W5.08mm_P1.27mm_JPin -SMD 1x-dip-switch SPST Copal_CHS-01A, Slide, row spacing 5.08 mm (200 mils), body size (see http://www.nidec-copal-electronics.com/e/catalog/switch/chs.pdf), SMD, JPin -SMD DIP Switch SPST Slide 5.08mm 200mil SMD JPin -0 -2 -2 -Button_Switch_SMD -SW_DIP_SPSTx01_Slide_Copal_CHS-01B_W7.62mm_P1.27mm -SMD 1x-dip-switch SPST Copal_CHS-01B, Slide, row spacing 7.62 mm (300 mils), body size (see http://www.nidec-copal-electronics.com/e/catalog/switch/chs.pdf), SMD -SMD DIP Switch SPST Slide 7.62mm 300mil SMD -0 -2 -2 -Button_Switch_SMD -SW_DIP_SPSTx01_Slide_Copal_CVS-01xB_W5.9mm_P1mm -SMD 1x-dip-switch SPST Copal_CVS-01xB, Slide, row spacing 5.9 mm (232 mils), body size (see http://www.nidec-copal-electronics.com/e/catalog/switch/cvs.pdf) -SMD DIP Switch SPST Slide 5.9mm 232mil -0 -6 -3 -Button_Switch_SMD -SW_DIP_SPSTx01_Slide_Omron_A6S-110x_W8.9mm_P2.54mm -SMD 1x-dip-switch SPST Omron_A6S-110x, Slide, row spacing 8.9 mm (350 mils), body size (see http://omronfs.omron.com/en_US/ecb/products/pdf/en-a6s.pdf) -SMD DIP Switch SPST Slide 8.9mm 350mil -0 -2 -2 -Button_Switch_SMD -SW_DIP_SPSTx02_Slide_6.7x6.64mm_W6.73mm_P2.54mm_LowProfile_JPin -SMD 2x-dip-switch SPST , Slide, row spacing 6.73 mm (264 mils), body size 6.7x6.64mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile, JPin -SMD DIP Switch SPST Slide 6.73mm 264mil SMD LowProfile JPin -0 -4 -4 -Button_Switch_SMD -SW_DIP_SPSTx02_Slide_6.7x6.64mm_W8.61mm_P2.54mm_LowProfile -SMD 2x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 6.7x6.64mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile -SMD DIP Switch SPST Slide 8.61mm 338mil SMD LowProfile -0 -4 -4 -Button_Switch_SMD -SW_DIP_SPSTx02_Slide_9.78x7.26mm_W8.61mm_P2.54mm -SMD 2x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 9.78x7.26mm (see e.g. https://www.ctscorp.com/wp-content/uploads/204.pdf), SMD -SMD DIP Switch SPST Slide 8.61mm 338mil SMD -0 -4 -4 -Button_Switch_SMD -SW_DIP_SPSTx02_Slide_Copal_CHS-02A_W5.08mm_P1.27mm_JPin -SMD 2x-dip-switch SPST Copal_CHS-02A, Slide, row spacing 5.08 mm (200 mils), body size (see http://www.nidec-copal-electronics.com/e/catalog/switch/chs.pdf), SMD, JPin -SMD DIP Switch SPST Slide 5.08mm 200mil SMD JPin -0 -4 -4 -Button_Switch_SMD -SW_DIP_SPSTx02_Slide_Copal_CHS-02B_W7.62mm_P1.27mm -SMD 2x-dip-switch SPST Copal_CHS-02B, Slide, row spacing 7.62 mm (300 mils), body size (see http://www.nidec-copal-electronics.com/e/catalog/switch/chs.pdf), SMD -SMD DIP Switch SPST Slide 7.62mm 300mil SMD -0 -4 -4 -Button_Switch_SMD -SW_DIP_SPSTx02_Slide_Copal_CVS-02xB_W5.9mm_P1mm -SMD 2x-dip-switch SPST Copal_CVS-02xB, Slide, row spacing 5.9 mm (232 mils), body size (see http://www.nidec-copal-electronics.com/e/catalog/switch/cvs.pdf) -SMD DIP Switch SPST Slide 5.9mm 232mil -0 -8 -5 -Button_Switch_SMD -SW_DIP_SPSTx02_Slide_KingTek_DSHP02TJ_W5.25mm_P1.27mm_JPin -SMD 2x-dip-switch SPST KingTek_DSHP02TJ, Slide, row spacing 5.25 mm (206 mils), body size (see http://www.kingtek.net.cn/pic/201601201446313350.pdf), JPin -SMD DIP Switch SPST Slide 5.25mm 206mil JPin -0 -4 -4 -Button_Switch_SMD -SW_DIP_SPSTx02_Slide_KingTek_DSHP02TS_W7.62mm_P1.27mm -SMD 2x-dip-switch SPST KingTek_DSHP02TS, Slide, row spacing 7.62 mm (300 mils), body size (see http://www.kingtek.net.cn/pic/201601201417455112.pdf) -SMD DIP Switch SPST Slide 7.62mm 300mil -0 -4 -4 -Button_Switch_SMD -SW_DIP_SPSTx02_Slide_Omron_A6H-2101_W6.15mm_P1.27mm -SMD 2x-dip-switch SPST Omron_A6H-2101, Slide, row spacing 6.15 mm (242 mils), body size (see https://www.omron.com/ecb/products/pdf/en-a6h.pdf) -SMD DIP Switch SPST Slide 6.15mm 242mil -0 -4 -4 -Button_Switch_SMD -SW_DIP_SPSTx02_Slide_Omron_A6S-210x_W8.9mm_P2.54mm -SMD 2x-dip-switch SPST Omron_A6S-210x, Slide, row spacing 8.9 mm (350 mils), body size (see http://omronfs.omron.com/en_US/ecb/products/pdf/en-a6s.pdf) -SMD DIP Switch SPST Slide 8.9mm 350mil -0 -4 -4 -Button_Switch_SMD -SW_DIP_SPSTx03_Slide_6.7x9.18mm_W6.73mm_P2.54mm_LowProfile_JPin -SMD 3x-dip-switch SPST , Slide, row spacing 6.73 mm (264 mils), body size 6.7x9.18mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile, JPin -SMD DIP Switch SPST Slide 6.73mm 264mil SMD LowProfile JPin -0 -6 -6 -Button_Switch_SMD -SW_DIP_SPSTx03_Slide_6.7x9.18mm_W8.61mm_P2.54mm_LowProfile -SMD 3x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 6.7x9.18mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile -SMD DIP Switch SPST Slide 8.61mm 338mil SMD LowProfile -0 -6 -6 -Button_Switch_SMD -SW_DIP_SPSTx03_Slide_9.78x9.8mm_W8.61mm_P2.54mm -SMD 3x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 9.78x9.8mm (see e.g. https://www.ctscorp.com/wp-content/uploads/204.pdf), SMD -SMD DIP Switch SPST Slide 8.61mm 338mil SMD -0 -6 -6 -Button_Switch_SMD -SW_DIP_SPSTx03_Slide_Copal_CVS-03xB_W5.9mm_P1mm -SMD 3x-dip-switch SPST Copal_CVS-03xB, Slide, row spacing 5.9 mm (232 mils), body size (see http://www.nidec-copal-electronics.com/e/catalog/switch/cvs.pdf) -SMD DIP Switch SPST Slide 5.9mm 232mil -0 -10 -7 -Button_Switch_SMD -SW_DIP_SPSTx03_Slide_KingTek_DSHP03TJ_W5.25mm_P1.27mm_JPin -SMD 3x-dip-switch SPST KingTek_DSHP03TJ, Slide, row spacing 5.25 mm (206 mils), body size (see http://www.kingtek.net.cn/pic/201601201446313350.pdf), JPin -SMD DIP Switch SPST Slide 5.25mm 206mil JPin -0 -6 -6 -Button_Switch_SMD -SW_DIP_SPSTx03_Slide_KingTek_DSHP03TS_W7.62mm_P1.27mm -SMD 3x-dip-switch SPST KingTek_DSHP03TS, Slide, row spacing 7.62 mm (300 mils), body size (see http://www.kingtek.net.cn/pic/201601201417455112.pdf) -SMD DIP Switch SPST Slide 7.62mm 300mil -0 -6 -6 -Button_Switch_SMD -SW_DIP_SPSTx03_Slide_Omron_A6S-310x_W8.9mm_P2.54mm -SMD 3x-dip-switch SPST Omron_A6S-310x, Slide, row spacing 8.9 mm (350 mils), body size (see http://omronfs.omron.com/en_US/ecb/products/pdf/en-a6s.pdf) -SMD DIP Switch SPST Slide 8.9mm 350mil -0 -6 -6 -Button_Switch_SMD -SW_DIP_SPSTx04_Slide_6.7x11.72mm_W6.73mm_P2.54mm_LowProfile_JPin -SMD 4x-dip-switch SPST , Slide, row spacing 6.73 mm (264 mils), body size 6.7x11.72mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile, JPin -SMD DIP Switch SPST Slide 6.73mm 264mil SMD LowProfile JPin -0 -8 -8 -Button_Switch_SMD -SW_DIP_SPSTx04_Slide_6.7x11.72mm_W8.61mm_P2.54mm_LowProfile -SMD 4x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 6.7x11.72mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile -SMD DIP Switch SPST Slide 8.61mm 338mil SMD LowProfile -0 -8 -8 -Button_Switch_SMD -SW_DIP_SPSTx04_Slide_9.78x12.34mm_W8.61mm_P2.54mm -SMD 4x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 9.78x12.34mm (see e.g. https://www.ctscorp.com/wp-content/uploads/204.pdf), SMD -SMD DIP Switch SPST Slide 8.61mm 338mil SMD -0 -8 -8 -Button_Switch_SMD -SW_DIP_SPSTx04_Slide_Copal_CHS-04A_W5.08mm_P1.27mm_JPin -SMD 4x-dip-switch SPST Copal_CHS-04A, Slide, row spacing 5.08 mm (200 mils), body size (see http://www.nidec-copal-electronics.com/e/catalog/switch/chs.pdf), SMD, JPin -SMD DIP Switch SPST Slide 5.08mm 200mil SMD JPin -0 -8 -8 -Button_Switch_SMD -SW_DIP_SPSTx04_Slide_Copal_CHS-04B_W7.62mm_P1.27mm -SMD 4x-dip-switch SPST Copal_CHS-04B, Slide, row spacing 7.62 mm (300 mils), body size (see http://www.nidec-copal-electronics.com/e/catalog/switch/chs.pdf), SMD -SMD DIP Switch SPST Slide 7.62mm 300mil SMD -0 -8 -8 -Button_Switch_SMD -SW_DIP_SPSTx04_Slide_Copal_CVS-04xB_W5.9mm_P1mm -SMD 4x-dip-switch SPST Copal_CVS-04xB, Slide, row spacing 5.9 mm (232 mils), body size (see http://www.nidec-copal-electronics.com/e/catalog/switch/cvs.pdf) -SMD DIP Switch SPST Slide 5.9mm 232mil -0 -12 -9 -Button_Switch_SMD -SW_DIP_SPSTx04_Slide_KingTek_DSHP04TJ_W5.25mm_P1.27mm_JPin -SMD 4x-dip-switch SPST KingTek_DSHP04TJ, Slide, row spacing 5.25 mm (206 mils), body size (see http://www.kingtek.net.cn/pic/201601201446313350.pdf), JPin -SMD DIP Switch SPST Slide 5.25mm 206mil JPin -0 -8 -8 -Button_Switch_SMD -SW_DIP_SPSTx04_Slide_KingTek_DSHP04TS_W7.62mm_P1.27mm -SMD 4x-dip-switch SPST KingTek_DSHP04TS, Slide, row spacing 7.62 mm (300 mils), body size (see http://www.kingtek.net.cn/pic/201601201417455112.pdf) -SMD DIP Switch SPST Slide 7.62mm 300mil -0 -8 -8 -Button_Switch_SMD -SW_DIP_SPSTx04_Slide_Omron_A6H-4101_W6.15mm_P1.27mm -SMD 4x-dip-switch SPST Omron_A6H-4101, Slide, row spacing 6.15 mm (242 mils), body size (see https://www.omron.com/ecb/products/pdf/en-a6h.pdf) -SMD DIP Switch SPST Slide 6.15mm 242mil -0 -8 -8 -Button_Switch_SMD -SW_DIP_SPSTx04_Slide_Omron_A6S-410x_W8.9mm_P2.54mm -SMD 4x-dip-switch SPST Omron_A6S-410x, Slide, row spacing 8.9 mm (350 mils), body size (see http://omronfs.omron.com/en_US/ecb/products/pdf/en-a6s.pdf) -SMD DIP Switch SPST Slide 8.9mm 350mil -0 -8 -8 -Button_Switch_SMD -SW_DIP_SPSTx05_Slide_6.7x14.26mm_W6.73mm_P2.54mm_LowProfile_JPin -SMD 5x-dip-switch SPST , Slide, row spacing 6.73 mm (264 mils), body size 6.7x14.26mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile, JPin -SMD DIP Switch SPST Slide 6.73mm 264mil SMD LowProfile JPin -0 -10 -10 -Button_Switch_SMD -SW_DIP_SPSTx05_Slide_6.7x14.26mm_W8.61mm_P2.54mm_LowProfile -SMD 5x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 6.7x14.26mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile -SMD DIP Switch SPST Slide 8.61mm 338mil SMD LowProfile -0 -10 -10 -Button_Switch_SMD -SW_DIP_SPSTx05_Slide_9.78x14.88mm_W8.61mm_P2.54mm -SMD 5x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 9.78x14.88mm (see e.g. https://www.ctscorp.com/wp-content/uploads/204.pdf), SMD -SMD DIP Switch SPST Slide 8.61mm 338mil SMD -0 -10 -10 -Button_Switch_SMD -SW_DIP_SPSTx05_Slide_KingTek_DSHP05TJ_W5.25mm_P1.27mm_JPin -SMD 5x-dip-switch SPST KingTek_DSHP05TJ, Slide, row spacing 5.25 mm (206 mils), body size (see http://www.kingtek.net.cn/pic/201601201446313350.pdf), JPin -SMD DIP Switch SPST Slide 5.25mm 206mil JPin -0 -10 -10 -Button_Switch_SMD -SW_DIP_SPSTx05_Slide_KingTek_DSHP05TS_W7.62mm_P1.27mm -SMD 5x-dip-switch SPST KingTek_DSHP05TS, Slide, row spacing 7.62 mm (300 mils), body size (see http://www.kingtek.net.cn/pic/201601201417455112.pdf) -SMD DIP Switch SPST Slide 7.62mm 300mil -0 -10 -10 -Button_Switch_SMD -SW_DIP_SPSTx05_Slide_Omron_A6S-510x_W8.9mm_P2.54mm -SMD 5x-dip-switch SPST Omron_A6S-510x, Slide, row spacing 8.9 mm (350 mils), body size (see http://omronfs.omron.com/en_US/ecb/products/pdf/en-a6s.pdf) -SMD DIP Switch SPST Slide 8.9mm 350mil -0 -10 -10 -Button_Switch_SMD -SW_DIP_SPSTx06_Slide_6.7x16.8mm_W6.73mm_P2.54mm_LowProfile_JPin -SMD 6x-dip-switch SPST , Slide, row spacing 6.73 mm (264 mils), body size 6.7x16.8mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile, JPin -SMD DIP Switch SPST Slide 6.73mm 264mil SMD LowProfile JPin -0 -12 -12 -Button_Switch_SMD -SW_DIP_SPSTx06_Slide_6.7x16.8mm_W8.61mm_P2.54mm_LowProfile -SMD 6x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 6.7x16.8mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile -SMD DIP Switch SPST Slide 8.61mm 338mil SMD LowProfile -0 -12 -12 -Button_Switch_SMD -SW_DIP_SPSTx06_Slide_9.78x17.42mm_W8.61mm_P2.54mm -SMD 6x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 9.78x17.42mm (see e.g. https://www.ctscorp.com/wp-content/uploads/204.pdf), SMD -SMD DIP Switch SPST Slide 8.61mm 338mil SMD -0 -12 -12 -Button_Switch_SMD -SW_DIP_SPSTx06_Slide_Copal_CHS-06A_W5.08mm_P1.27mm_JPin -SMD 6x-dip-switch SPST Copal_CHS-06A, Slide, row spacing 5.08 mm (200 mils), body size (see http://www.nidec-copal-electronics.com/e/catalog/switch/chs.pdf), SMD, JPin -SMD DIP Switch SPST Slide 5.08mm 200mil SMD JPin -0 -12 -12 -Button_Switch_SMD -SW_DIP_SPSTx06_Slide_Copal_CHS-06B_W7.62mm_P1.27mm -SMD 6x-dip-switch SPST Copal_CHS-06B, Slide, row spacing 7.62 mm (300 mils), body size (see http://www.nidec-copal-electronics.com/e/catalog/switch/chs.pdf), SMD -SMD DIP Switch SPST Slide 7.62mm 300mil SMD -0 -12 -12 -Button_Switch_SMD -SW_DIP_SPSTx06_Slide_KingTek_DSHP06TJ_W5.25mm_P1.27mm_JPin -SMD 6x-dip-switch SPST KingTek_DSHP06TJ, Slide, row spacing 5.25 mm (206 mils), body size (see http://www.kingtek.net.cn/pic/201601201446313350.pdf), JPin -SMD DIP Switch SPST Slide 5.25mm 206mil JPin -0 -12 -12 -Button_Switch_SMD -SW_DIP_SPSTx06_Slide_KingTek_DSHP06TS_W7.62mm_P1.27mm -SMD 6x-dip-switch SPST KingTek_DSHP06TS, Slide, row spacing 7.62 mm (300 mils), body size (see http://www.kingtek.net.cn/pic/201601201417455112.pdf) -SMD DIP Switch SPST Slide 7.62mm 300mil -0 -12 -12 -Button_Switch_SMD -SW_DIP_SPSTx06_Slide_Omron_A6H-6101_W6.15mm_P1.27mm -SMD 6x-dip-switch SPST Omron_A6H-6101, Slide, row spacing 6.15 mm (242 mils), body size (see https://www.omron.com/ecb/products/pdf/en-a6h.pdf) -SMD DIP Switch SPST Slide 6.15mm 242mil -0 -12 -12 -Button_Switch_SMD -SW_DIP_SPSTx06_Slide_Omron_A6S-610x_W8.9mm_P2.54mm -SMD 6x-dip-switch SPST Omron_A6S-610x, Slide, row spacing 8.9 mm (350 mils), body size (see http://omronfs.omron.com/en_US/ecb/products/pdf/en-a6s.pdf) -SMD DIP Switch SPST Slide 8.9mm 350mil -0 -12 -12 -Button_Switch_SMD -SW_DIP_SPSTx07_Slide_6.7x19.34mm_W6.73mm_P2.54mm_LowProfile_JPin -SMD 7x-dip-switch SPST , Slide, row spacing 6.73 mm (264 mils), body size 6.7x19.34mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile, JPin -SMD DIP Switch SPST Slide 6.73mm 264mil SMD LowProfile JPin -0 -14 -14 -Button_Switch_SMD -SW_DIP_SPSTx07_Slide_6.7x19.34mm_W8.61mm_P2.54mm_LowProfile -SMD 7x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 6.7x19.34mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile -SMD DIP Switch SPST Slide 8.61mm 338mil SMD LowProfile -0 -14 -14 -Button_Switch_SMD -SW_DIP_SPSTx07_Slide_9.78x19.96mm_W8.61mm_P2.54mm -SMD 7x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 9.78x19.96mm (see e.g. https://www.ctscorp.com/wp-content/uploads/204.pdf), SMD -SMD DIP Switch SPST Slide 8.61mm 338mil SMD -0 -14 -14 -Button_Switch_SMD -SW_DIP_SPSTx07_Slide_KingTek_DSHP07TJ_W5.25mm_P1.27mm_JPin -SMD 7x-dip-switch SPST KingTek_DSHP07TJ, Slide, row spacing 5.25 mm (206 mils), body size (see http://www.kingtek.net.cn/pic/201601201446313350.pdf), JPin -SMD DIP Switch SPST Slide 5.25mm 206mil JPin -0 -14 -14 -Button_Switch_SMD -SW_DIP_SPSTx07_Slide_KingTek_DSHP07TS_W7.62mm_P1.27mm -SMD 7x-dip-switch SPST KingTek_DSHP07TS, Slide, row spacing 7.62 mm (300 mils), body size (see http://www.kingtek.net.cn/pic/201601201417455112.pdf) -SMD DIP Switch SPST Slide 7.62mm 300mil -0 -14 -14 -Button_Switch_SMD -SW_DIP_SPSTx07_Slide_Omron_A6S-710x_W8.9mm_P2.54mm -SMD 7x-dip-switch SPST Omron_A6S-710x, Slide, row spacing 8.9 mm (350 mils), body size (see http://omronfs.omron.com/en_US/ecb/products/pdf/en-a6s.pdf) -SMD DIP Switch SPST Slide 8.9mm 350mil -0 -14 -14 -Button_Switch_SMD -SW_DIP_SPSTx08_Slide_6.7x21.88mm_W6.73mm_P2.54mm_LowProfile_JPin -SMD 8x-dip-switch SPST , Slide, row spacing 6.73 mm (264 mils), body size 6.7x21.88mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile, JPin -SMD DIP Switch SPST Slide 6.73mm 264mil SMD LowProfile JPin -0 -16 -16 -Button_Switch_SMD -SW_DIP_SPSTx08_Slide_6.7x21.88mm_W8.61mm_P2.54mm_LowProfile -SMD 8x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 6.7x21.88mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile -SMD DIP Switch SPST Slide 8.61mm 338mil SMD LowProfile -0 -16 -16 -Button_Switch_SMD -SW_DIP_SPSTx08_Slide_9.78x22.5mm_W8.61mm_P2.54mm -SMD 8x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 9.78x22.5mm (see e.g. https://www.ctscorp.com/wp-content/uploads/204.pdf), SMD -SMD DIP Switch SPST Slide 8.61mm 338mil SMD -0 -16 -16 -Button_Switch_SMD -SW_DIP_SPSTx08_Slide_Copal_CHS-08A_W5.08mm_P1.27mm_JPin -SMD 8x-dip-switch SPST Copal_CHS-08A, Slide, row spacing 5.08 mm (200 mils), body size (see http://www.nidec-copal-electronics.com/e/catalog/switch/chs.pdf), SMD, JPin -SMD DIP Switch SPST Slide 5.08mm 200mil SMD JPin -0 -16 -16 -Button_Switch_SMD -SW_DIP_SPSTx08_Slide_Copal_CHS-08B_W7.62mm_P1.27mm -SMD 8x-dip-switch SPST Copal_CHS-08B, Slide, row spacing 7.62 mm (300 mils), body size (see http://www.nidec-copal-electronics.com/e/catalog/switch/chs.pdf), SMD -SMD DIP Switch SPST Slide 7.62mm 300mil SMD -0 -16 -16 -Button_Switch_SMD -SW_DIP_SPSTx08_Slide_Copal_CVS-08xB_W5.9mm_P1mm -SMD 8x-dip-switch SPST Copal_CVS-08xB, Slide, row spacing 5.9 mm (232 mils), body size (see http://www.nidec-copal-electronics.com/e/catalog/switch/cvs.pdf) -SMD DIP Switch SPST Slide 5.9mm 232mil -0 -20 -17 -Button_Switch_SMD -SW_DIP_SPSTx08_Slide_KingTek_DSHP08TJ_W5.25mm_P1.27mm_JPin -SMD 8x-dip-switch SPST KingTek_DSHP08TJ, Slide, row spacing 5.25 mm (206 mils), body size (see http://www.kingtek.net.cn/pic/201601201446313350.pdf), JPin -SMD DIP Switch SPST Slide 5.25mm 206mil JPin -0 -16 -16 -Button_Switch_SMD -SW_DIP_SPSTx08_Slide_KingTek_DSHP08TS_W7.62mm_P1.27mm -SMD 8x-dip-switch SPST KingTek_DSHP08TS, Slide, row spacing 7.62 mm (300 mils), body size (see http://www.kingtek.net.cn/pic/201601201417455112.pdf) -SMD DIP Switch SPST Slide 7.62mm 300mil -0 -16 -16 -Button_Switch_SMD -SW_DIP_SPSTx08_Slide_Omron_A6H-8101_W6.15mm_P1.27mm -SMD 8x-dip-switch SPST Omron_A6H-8101, Slide, row spacing 6.15 mm (242 mils), body size (see https://www.omron.com/ecb/products/pdf/en-a6h.pdf) -SMD DIP Switch SPST Slide 6.15mm 242mil -0 -16 -16 -Button_Switch_SMD -SW_DIP_SPSTx08_Slide_Omron_A6S-810x_W8.9mm_P2.54mm -SMD 8x-dip-switch SPST Omron_A6S-810x, Slide, row spacing 8.9 mm (350 mils), body size (see http://omronfs.omron.com/en_US/ecb/products/pdf/en-a6s.pdf) -SMD DIP Switch SPST Slide 8.9mm 350mil -0 -16 -16 -Button_Switch_SMD -SW_DIP_SPSTx09_Slide_6.7x24.42mm_W6.73mm_P2.54mm_LowProfile_JPin -SMD 9x-dip-switch SPST , Slide, row spacing 6.73 mm (264 mils), body size 6.7x24.42mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile, JPin -SMD DIP Switch SPST Slide 6.73mm 264mil SMD LowProfile JPin -0 -18 -18 -Button_Switch_SMD -SW_DIP_SPSTx09_Slide_6.7x24.42mm_W8.61mm_P2.54mm_LowProfile -SMD 9x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 6.7x24.42mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile -SMD DIP Switch SPST Slide 8.61mm 338mil SMD LowProfile -0 -18 -18 -Button_Switch_SMD -SW_DIP_SPSTx09_Slide_9.78x25.04mm_W8.61mm_P2.54mm -SMD 9x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 9.78x25.04mm (see e.g. https://www.ctscorp.com/wp-content/uploads/204.pdf), SMD -SMD DIP Switch SPST Slide 8.61mm 338mil SMD -0 -18 -18 -Button_Switch_SMD -SW_DIP_SPSTx09_Slide_KingTek_DSHP09TJ_W5.25mm_P1.27mm_JPin -SMD 9x-dip-switch SPST KingTek_DSHP09TJ, Slide, row spacing 5.25 mm (206 mils), body size (see http://www.kingtek.net.cn/pic/201601201446313350.pdf), JPin -SMD DIP Switch SPST Slide 5.25mm 206mil JPin -0 -18 -18 -Button_Switch_SMD -SW_DIP_SPSTx09_Slide_KingTek_DSHP09TS_W7.62mm_P1.27mm -SMD 9x-dip-switch SPST KingTek_DSHP09TS, Slide, row spacing 7.62 mm (300 mils), body size (see http://www.kingtek.net.cn/pic/201601201417455112.pdf) -SMD DIP Switch SPST Slide 7.62mm 300mil -0 -18 -18 -Button_Switch_SMD -SW_DIP_SPSTx09_Slide_Omron_A6S-910x_W8.9mm_P2.54mm -SMD 9x-dip-switch SPST Omron_A6S-910x, Slide, row spacing 8.9 mm (350 mils), body size (see http://omronfs.omron.com/en_US/ecb/products/pdf/en-a6s.pdf) -SMD DIP Switch SPST Slide 8.9mm 350mil -0 -18 -18 -Button_Switch_SMD -SW_DIP_SPSTx10_Slide_6.7x26.96mm_W6.73mm_P2.54mm_LowProfile_JPin -SMD 10x-dip-switch SPST , Slide, row spacing 6.73 mm (264 mils), body size 6.7x26.96mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile, JPin -SMD DIP Switch SPST Slide 6.73mm 264mil SMD LowProfile JPin -0 -20 -20 -Button_Switch_SMD -SW_DIP_SPSTx10_Slide_6.7x26.96mm_W8.61mm_P2.54mm_LowProfile -SMD 10x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 6.7x26.96mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile -SMD DIP Switch SPST Slide 8.61mm 338mil SMD LowProfile -0 -20 -20 -Button_Switch_SMD -SW_DIP_SPSTx10_Slide_9.78x27.58mm_W8.61mm_P2.54mm -SMD 10x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 9.78x27.58mm (see e.g. https://www.ctscorp.com/wp-content/uploads/204.pdf), SMD -SMD DIP Switch SPST Slide 8.61mm 338mil SMD -0 -20 -20 -Button_Switch_SMD -SW_DIP_SPSTx10_Slide_Copal_CHS-10A_W5.08mm_P1.27mm_JPin -SMD 10x-dip-switch SPST Copal_CHS-10A, Slide, row spacing 5.08 mm (200 mils), body size (see http://www.nidec-copal-electronics.com/e/catalog/switch/chs.pdf), SMD, JPin -SMD DIP Switch SPST Slide 5.08mm 200mil SMD JPin -0 -20 -20 -Button_Switch_SMD -SW_DIP_SPSTx10_Slide_Copal_CHS-10B_W7.62mm_P1.27mm -SMD 10x-dip-switch SPST Copal_CHS-10B, Slide, row spacing 7.62 mm (300 mils), body size (see http://www.nidec-copal-electronics.com/e/catalog/switch/chs.pdf), SMD -SMD DIP Switch SPST Slide 7.62mm 300mil SMD -0 -20 -20 -Button_Switch_SMD -SW_DIP_SPSTx10_Slide_KingTek_DSHP10TJ_W5.25mm_P1.27mm_JPin -SMD 10x-dip-switch SPST KingTek_DSHP10TJ, Slide, row spacing 5.25 mm (206 mils), body size (see http://www.kingtek.net.cn/pic/201601201446313350.pdf), JPin -SMD DIP Switch SPST Slide 5.25mm 206mil JPin -0 -20 -20 -Button_Switch_SMD -SW_DIP_SPSTx10_Slide_KingTek_DSHP10TS_W7.62mm_P1.27mm -SMD 10x-dip-switch SPST KingTek_DSHP10TS, Slide, row spacing 7.62 mm (300 mils), body size (see http://www.kingtek.net.cn/pic/201601201417455112.pdf) -SMD DIP Switch SPST Slide 7.62mm 300mil -0 -20 -20 -Button_Switch_SMD -SW_DIP_SPSTx10_Slide_Omron_A6H-10101_W6.15mm_P1.27mm -SMD 10x-dip-switch SPST Omron_A6H-10101, Slide, row spacing 6.15 mm (242 mils), body size (see https://www.omron.com/ecb/products/pdf/en-a6h.pdf) -SMD DIP Switch SPST Slide 6.15mm 242mil -0 -20 -20 -Button_Switch_SMD -SW_DIP_SPSTx10_Slide_Omron_A6S-1010x_W8.9mm_P2.54mm -SMD 10x-dip-switch SPST Omron_A6S-1010x, Slide, row spacing 8.9 mm (350 mils), body size (see http://omronfs.omron.com/en_US/ecb/products/pdf/en-a6s.pdf) -SMD DIP Switch SPST Slide 8.9mm 350mil -0 -20 -20 -Button_Switch_SMD -SW_DIP_SPSTx11_Slide_6.7x29.5mm_W6.73mm_P2.54mm_LowProfile_JPin -SMD 11x-dip-switch SPST , Slide, row spacing 6.73 mm (264 mils), body size 6.7x29.5mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile, JPin -SMD DIP Switch SPST Slide 6.73mm 264mil SMD LowProfile JPin -0 -22 -22 -Button_Switch_SMD -SW_DIP_SPSTx11_Slide_6.7x29.5mm_W8.61mm_P2.54mm_LowProfile -SMD 11x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 6.7x29.5mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile -SMD DIP Switch SPST Slide 8.61mm 338mil SMD LowProfile -0 -22 -22 -Button_Switch_SMD -SW_DIP_SPSTx11_Slide_9.78x30.12mm_W8.61mm_P2.54mm -SMD 11x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 9.78x30.12mm (see e.g. https://www.ctscorp.com/wp-content/uploads/204.pdf), SMD -SMD DIP Switch SPST Slide 8.61mm 338mil SMD -0 -22 -22 -Button_Switch_SMD -SW_DIP_SPSTx12_Slide_6.7x32.04mm_W6.73mm_P2.54mm_LowProfile_JPin -SMD 12x-dip-switch SPST , Slide, row spacing 6.73 mm (264 mils), body size 6.7x32.04mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile, JPin -SMD DIP Switch SPST Slide 6.73mm 264mil SMD LowProfile JPin -0 -24 -24 -Button_Switch_SMD -SW_DIP_SPSTx12_Slide_6.7x32.04mm_W8.61mm_P2.54mm_LowProfile -SMD 12x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 6.7x32.04mm (see e.g. https://www.ctscorp.com/wp-content/uploads/219.pdf), SMD, LowProfile -SMD DIP Switch SPST Slide 8.61mm 338mil SMD LowProfile -0 -24 -24 -Button_Switch_SMD -SW_DIP_SPSTx12_Slide_9.78x32.66mm_W8.61mm_P2.54mm -SMD 12x-dip-switch SPST , Slide, row spacing 8.61 mm (338 mils), body size 9.78x32.66mm (see e.g. https://www.ctscorp.com/wp-content/uploads/204.pdf), SMD -SMD DIP Switch SPST Slide 8.61mm 338mil SMD -0 -24 -24 -Button_Switch_SMD -SW_DPDT_CK_JS202011JCQN -Sub-miniature slide switch, vertical, SMT J bend https://dznh3ojzb2azq.cloudfront.net/products/Slide/JS/documents/datasheet.pdf -switch DPDT SMT -0 -6 -6 -Button_Switch_SMD -SW_MEC_5GSH9 -MEC 5G single pole normally-open tactile switch -switch normally-open pushbutton push-button -0 -4 -4 -Button_Switch_SMD -SW_Push_1P1T-MP_NO_Horizontal_Alps_SKRTLAE010 -Side push button (https://www.alps.com/prod/info/E/PDF/Tact/SurfaceMount/SKRT/SKRT.pdf) -push horizontal SPST 1P1T -0 -5 -3 -Button_Switch_SMD -SW_Push_1P1T-SH_NO_CK_KMR2xxG -CK components KMR2 tactile switch with ground pin http://www.ckswitches.com/media/1479/kmr2.pdf -tactile switch kmr2 -0 -5 -3 -Button_Switch_SMD -SW_Push_1P1T_NO_6x6mm_H9.5mm -tactile push button, 6x6mm e.g. PTS645xx series, height=9.5mm -tact sw push 6mm smd -0 -4 -2 -Button_Switch_SMD -SW_Push_1P1T_NO_CK_KMR2 -CK components KMR2 tactile switch http://www.ckswitches.com/media/1479/kmr2.pdf -tactile switch kmr2 -0 -4 -2 -Button_Switch_SMD -SW_Push_1P1T_NO_CK_KSC6xxJ -CK components KSC6 tactile switch https://www.ckswitches.com/media/1972/ksc6.pdf -tactile switch ksc6 -0 -4 -2 -Button_Switch_SMD -SW_Push_1P1T_NO_CK_KSC7xxJ -CK components KSC7 tactile switch https://www.ckswitches.com/media/1973/ksc7.pdf -tactile switch ksc7 -0 -4 -2 -Button_Switch_SMD -SW_Push_1P1T_NO_CK_PTS125Sx43PSMTR -C&K Switches 1P1T SMD PTS125 Series 12mm Tact Switch with Pegs, https://www.ckswitches.com/media/1462/pts125.pdf -Button Tactile Switch SPST 1P1T -0 -4 -2 -Button_Switch_SMD -SW_Push_1P1T_NO_Vertical_Wuerth_434133025816 -https://katalog.we-online.com/em/datasheet/434133025816.pdf -tactile switch Wurth Wuerth -0 -4 -2 -Button_Switch_SMD -SW_Push_1P1T_XKB_TS-1187A -SMD Tactile Switch, http://www.helloxkb.com/public/images/pdf/TS-1187A-X-X-X.pdf -SPST Tactile Switch -0 -4 -2 -Button_Switch_SMD -SW_Push_SPST_NO_Alps_SKRK -http://www.alps.com/prod/info/E/HTML/Tact/SurfaceMount/SKRK/SKRKAHE020.html -SMD SMT button -0 -2 -2 -Button_Switch_SMD -SW_SP3T_PCM13 -Ultraminiature Surface Mount Slide Switch, right-angle, https://www.ckswitches.com/media/1424/pcm.pdf - -0 -8 -4 -Button_Switch_SMD -SW_SPDT_CK-JS102011SAQN -Sub-miniature slide switch, right-angle, http://www.ckswitches.com/media/1422/js.pdf -switch spdt -0 -3 -3 -Button_Switch_SMD -SW_SPDT_PCM12 -Ultraminiature Surface Mount Slide Switch, right-angle, https://www.ckswitches.com/media/1424/pcm.pdf - -0 -7 -3 -Button_Switch_SMD -SW_SPST_B3S-1000 -Surface Mount Tactile Switch for High-Density Packaging -Tactile Switch -0 -4 -2 -Button_Switch_SMD -SW_SPST_B3S-1100 -Surface Mount Tactile Switch for High-Density Packaging with Ground Terminal -Tactile Switch -0 -5 -3 -Button_Switch_SMD -SW_SPST_B3SL-1002P -Middle Stroke Tactile Switch, B3SL -Middle Stroke Tactile Switch -0 -4 -2 -Button_Switch_SMD -SW_SPST_B3SL-1022P -Middle Stroke Tactile Switch, B3SL -Middle Stroke Tactile Switch -0 -4 -2 -Button_Switch_SMD -SW_SPST_B3U-1000P -Ultra-small-sized Tactile Switch with High Contact Reliability, Top-actuated Model, without Ground Terminal, without Boss -Tactile Switch -0 -2 -2 -Button_Switch_SMD -SW_SPST_B3U-1000P-B -Ultra-small-sized Tactile Switch with High Contact Reliability, Top-actuated Model, without Ground Terminal, with Boss -Tactile Switch -0 -2 -2 -Button_Switch_SMD -SW_SPST_B3U-1100P -Ultra-small-sized Tactile Switch with High Contact Reliability, Top-actuated Model, with Ground Terminal, without Boss -Tactile Switch -0 -3 -3 -Button_Switch_SMD -SW_SPST_B3U-1100P-B -Ultra-small-sized Tactile Switch with High Contact Reliability, Top-actuated Model, with Ground Terminal, with Boss -Tactile Switch -0 -3 -3 -Button_Switch_SMD -SW_SPST_B3U-3000P -Ultra-small-sized Tactile Switch with High Contact Reliability, Side-actuated Model, without Ground Terminal, without Boss -Tactile Switch -0 -2 -2 -Button_Switch_SMD -SW_SPST_B3U-3000P-B -Ultra-small-sized Tactile Switch with High Contact Reliability, Side-actuated Model, without Ground Terminal, with Boss -Tactile Switch -0 -2 -2 -Button_Switch_SMD -SW_SPST_B3U-3100P -Ultra-small-sized Tactile Switch with High Contact Reliability, Side-actuated Model, with Ground Terminal, without Boss -Tactile Switch -0 -3 -3 -Button_Switch_SMD -SW_SPST_B3U-3100P-B -Ultra-small-sized Tactile Switch with High Contact Reliability, Side-actuated Model, with Ground Terminal, with Boss -Tactile Switch -0 -3 -3 -Button_Switch_SMD -SW_SPST_CK_KXT3 -https://www.ckswitches.com/media/1465/kxt3.pdf -Switch SPST KXT3 -0 -2 -2 -Button_Switch_SMD -SW_SPST_CK_RS282G05A3 -https://www.mouser.com/ds/2/60/RS-282G05A-SM_RT-1159762.pdf -SPST button tactile switch -0 -2 -2 -Button_Switch_SMD -SW_SPST_EVPBF -Light Touch Switch - -0 -4 -2 -Button_Switch_SMD -SW_SPST_EVQP0 -Light Touch Switch, https://industrial.panasonic.com/cdbs/www-data/pdf/ATK0000/ATK0000CE28.pdf - -0 -4 -2 -Button_Switch_SMD -SW_SPST_EVQP2 -Light Touch Switch, https://industrial.panasonic.com/cdbs/www-data/pdf/ATK0000/ATK0000C374.pdf -SMD SMT SPST EVQP2 -0 -4 -2 -Button_Switch_SMD -SW_SPST_EVQP7A -Light Touch Switch,https://industrial.panasonic.com/cdbs/www-data/pdf/ATK0000/ATK0000CE20.pdf - -0 -4 -2 -Button_Switch_SMD -SW_SPST_EVQP7C -Light Touch Switch - -0 -4 -2 -Button_Switch_SMD -SW_SPST_EVQPE1 -Light Touch Switch, https://industrial.panasonic.com/cdbs/www-data/pdf/ATK0000/ATK0000CE7.pdf - -0 -2 -2 -Button_Switch_SMD -SW_SPST_EVQQ2 -Light Touch Switch, https://industrial.panasonic.com/cdbs/www-data/pdf/ATK0000/ATK0000CE28.pdf - -0 -4 -2 -Button_Switch_SMD -SW_SPST_FSMSM -http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=1437566-3&DocType=Customer+Drawing&DocLang=English -SPST button tactile switch -0 -2 -2 -Button_Switch_SMD -SW_SPST_Omron_B3FS-100xP -Surface Mount Tactile Switch for High-Density Mounting, 3.1mm height, https://omronfs.omron.com/en_US/ecb/products/pdf/en-b3fs.pdf -Tactile Switch -0 -4 -2 -Button_Switch_SMD -SW_SPST_Omron_B3FS-101xP -Surface Mount Tactile Switch for High-Density Mounting, 4.3mm height, https://omronfs.omron.com/en_US/ecb/products/pdf/en-b3fs.pdf -Tactile Switch -0 -4 -2 -Button_Switch_SMD -SW_SPST_Omron_B3FS-105xP -Surface Mount Tactile Switch for High-Density Mounting, 7.3mm height, https://omronfs.omron.com/en_US/ecb/products/pdf/en-b3fs.pdf -Tactile Switch -0 -4 -2 -Button_Switch_SMD -SW_SPST_PTS645 -C&K Components SPST SMD PTS645 Series 6mm Tact Switch -SPST Button Switch -0 -4 -2 -Button_Switch_SMD -SW_SPST_PTS810 -C&K Components, PTS 810 Series, Microminiature SMT Top Actuated, http://www.ckswitches.com/media/1476/pts810.pdf -SPST Button Switch -0 -4 -2 -Button_Switch_SMD -SW_SPST_Panasonic_EVQPL_3PL_5PL_PT_A08 -Light Touch Switch, http://industrial.panasonic.com/cdbs/www-data/pdf/ATK0000/ATK0000CE3.pdf -SMD SMT SPST EVQPL EVQPT -0 -6 -3 -Button_Switch_SMD -SW_SPST_Panasonic_EVQPL_3PL_5PL_PT_A15 -Light Touch Switch, http://industrial.panasonic.com/cdbs/www-data/pdf/ATK0000/ATK0000CE3.pdf -SMD SMT SPST EVQPL EVQPT -0 -6 -3 -Button_Switch_SMD -SW_SPST_REED_CT05-XXXX-G1 -Coto Technologies SPST Reed Switch CT05-XXXX-G1 -Coto Reed SPST Switch -0 -2 -2 -Button_Switch_SMD -SW_SPST_REED_CT05-XXXX-J1 -Coto Technologies SPST Reed Switch CT05-XXXX-J1 -Coto Reed SPST Switch -0 -2 -2 -Button_Switch_SMD -SW_SPST_REED_CT10-XXXX-G1 -Coto Technologies SPST Reed Switch CT10-XXXX-G1 -Coto Reed SPST Switch -0 -2 -2 -Button_Switch_SMD -SW_SPST_REED_CT10-XXXX-G2 -Coto Technologies SPST Reed Switch CT10-XXXX-G2 -Coto Reed SPST Switch -0 -2 -2 -Button_Switch_SMD -SW_SPST_REED_CT10-XXXX-G4 -Coto Technologies SPST Reed Switch CT10-XXXX-G4 -Coto Reed SPST Switch -0 -2 -2 -Button_Switch_SMD -SW_SPST_SKQG_WithStem -ALPS 5.2mm Square Low-profile Type (Surface Mount) SKQG Series, With stem, http://www.alps.com/prod/info/E/HTML/Tact/SurfaceMount/SKQG/SKQGAFE010.html -SPST Button Switch -0 -4 -2 -Button_Switch_SMD -SW_SPST_SKQG_WithoutStem -ALPS 5.2mm Square Low-profile Type (Surface Mount) SKQG Series, Without stem, http://www.alps.com/prod/info/E/HTML/Tact/SurfaceMount/SKQG/SKQGAEE010.html -SPST Button Switch -0 -4 -2 -Button_Switch_SMD -SW_SPST_TL3305A -https://www.e-switch.com/system/asset/product_line/data_sheet/213/TL3305.pdf -TL3305 Series Tact Switch -0 -4 -2 -Button_Switch_SMD -SW_SPST_TL3305B -https://www.e-switch.com/system/asset/product_line/data_sheet/213/TL3305.pdf -TL3305 Series Tact Switch -0 -4 -2 -Button_Switch_SMD -SW_SPST_TL3305C -https://www.e-switch.com/system/asset/product_line/data_sheet/213/TL3305.pdf -TL3305 Series Tact Switch -0 -4 -2 -Button_Switch_SMD -SW_SPST_TL3342 -Low-profile SMD Tactile Switch, https://www.e-switch.com/system/asset/product_line/data_sheet/165/TL3342.pdf -SPST Tactile Switch -0 -4 -2 -Button_Switch_SMD -SW_Tactile_SPST_NO_Straight_CK_PTS636Sx25SMTRLFS -Tactile switch, SPST, 6.0x3.5 mm, H2.5 mm, straight, NO, gull wing leads: https://www.ckswitches.com/media/2779/pts636.pdf -switch tactile SPST 1P1T straight NO SMTR C&K -0 -2 -2 -Button_Switch_THT -KSA_Tactile_SPST -KSA http://www.ckswitches.com/media/1457/ksa_ksl.pdf -SWITCH SMD KSA SW -0 -5 -5 -Button_Switch_THT -Nidec_Copal_SH-7010C -4-bit rotary coded switch, through-hole, https://www.nidec-copal-electronics.com/e/catalog/switch/sh-7000.pdf -rotary switch bcd -0 -6 -5 -Button_Switch_THT -Push_E-Switch_KS01Q01 -E-Switch KS01Q01 http://spec_sheets.e-switch.com/specs/29-KS01Q01.pdf -Push Button -0 -4 -4 -Button_Switch_THT -SW_CW_GPTS203211B -SPST Off-On Pushbutton, 1A, 30V, CW Industries P/N GPTS203211B, http://switches-connectors-custom.cwind.com/Asset/GPTS203211BR2.pdf -SPST button switch Off-On -0 -2 -2 -Button_Switch_THT -SW_CuK_JS202011AQN_DPDT_Angled -CuK sub miniature slide switch, JS series, DPDT, right angle, http://www.ckswitches.com/media/1422/js.pdf -switch DPDT -0 -6 -6 -Button_Switch_THT -SW_CuK_JS202011CQN_DPDT_Straight -CuK sub miniature slide switch, JS series, DPDT, right angle, http://www.ckswitches.com/media/1422/js.pdf -switch DPDT -0 -6 -6 -Button_Switch_THT -SW_CuK_OS102011MA1QN1_SPDT_Angled -CuK miniature slide switch, OS series, SPDT, right angle, http://www.ckswitches.com/media/1428/os.pdf -switch SPDT -0 -5 -3 -Button_Switch_THT -SW_DIP_SPSTx01_Piano_10.8x4.1mm_W7.62mm_P2.54mm -1x-dip-switch SPST , Piano, row spacing 7.62 mm (300 mils), body size 10.8x4.1mm -DIP Switch SPST Piano 7.62mm 300mil -0 -2 -2 -Button_Switch_THT -SW_DIP_SPSTx01_Slide_6.7x4.1mm_W7.62mm_P2.54mm_LowProfile -1x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 6.7x4.1mm (see e.g. https://www.ctscorp.com/wp-content/uploads/209-210.pdf), LowProfile -DIP Switch SPST Slide 7.62mm 300mil LowProfile -0 -2 -2 -Button_Switch_THT -SW_DIP_SPSTx01_Slide_9.78x4.72mm_W7.62mm_P2.54mm -1x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 9.78x4.72mm (see e.g. https://www.ctscorp.com/wp-content/uploads/206-208.pdf) -DIP Switch SPST Slide 7.62mm 300mil -0 -2 -2 -Button_Switch_THT -SW_DIP_SPSTx02_Piano_10.8x6.64mm_W7.62mm_P2.54mm -2x-dip-switch SPST , Piano, row spacing 7.62 mm (300 mils), body size 10.8x6.64mm -DIP Switch SPST Piano 7.62mm 300mil -0 -4 -4 -Button_Switch_THT -SW_DIP_SPSTx02_Piano_CTS_Series194-2MSTN_W7.62mm_P2.54mm -2x-dip-switch SPST CTS_Series194-2MSTN, Piano, row spacing 7.62 mm (300 mils), body size (see https://www.ctscorp.com/wp-content/uploads/194-195.pdf) -DIP Switch SPST Piano 7.62mm 300mil -0 -4 -4 -Button_Switch_THT -SW_DIP_SPSTx02_Slide_6.7x6.64mm_W7.62mm_P2.54mm_LowProfile -2x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 6.7x6.64mm (see e.g. https://www.ctscorp.com/wp-content/uploads/209-210.pdf), LowProfile -DIP Switch SPST Slide 7.62mm 300mil LowProfile -0 -4 -4 -Button_Switch_THT -SW_DIP_SPSTx02_Slide_9.78x7.26mm_W7.62mm_P2.54mm -2x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 9.78x7.26mm (see e.g. https://www.ctscorp.com/wp-content/uploads/206-208.pdf) -DIP Switch SPST Slide 7.62mm 300mil -0 -4 -4 -Button_Switch_THT -SW_DIP_SPSTx03_Piano_10.8x9.18mm_W7.62mm_P2.54mm -3x-dip-switch SPST , Piano, row spacing 7.62 mm (300 mils), body size 10.8x9.18mm -DIP Switch SPST Piano 7.62mm 300mil -0 -6 -6 -Button_Switch_THT -SW_DIP_SPSTx03_Piano_CTS_Series194-3MSTN_W7.62mm_P2.54mm -3x-dip-switch SPST CTS_Series194-3MSTN, Piano, row spacing 7.62 mm (300 mils), body size (see https://www.ctscorp.com/wp-content/uploads/194-195.pdf) -DIP Switch SPST Piano 7.62mm 300mil -0 -6 -6 -Button_Switch_THT -SW_DIP_SPSTx03_Slide_6.7x9.18mm_W7.62mm_P2.54mm_LowProfile -3x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 6.7x9.18mm (see e.g. https://www.ctscorp.com/wp-content/uploads/209-210.pdf), LowProfile -DIP Switch SPST Slide 7.62mm 300mil LowProfile -0 -6 -6 -Button_Switch_THT -SW_DIP_SPSTx03_Slide_9.78x9.8mm_W7.62mm_P2.54mm -3x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 9.78x9.8mm (see e.g. https://www.ctscorp.com/wp-content/uploads/206-208.pdf) -DIP Switch SPST Slide 7.62mm 300mil -0 -6 -6 -Button_Switch_THT -SW_DIP_SPSTx04_Piano_10.8x11.72mm_W7.62mm_P2.54mm -4x-dip-switch SPST , Piano, row spacing 7.62 mm (300 mils), body size 10.8x11.72mm -DIP Switch SPST Piano 7.62mm 300mil -0 -8 -8 -Button_Switch_THT -SW_DIP_SPSTx04_Piano_CTS_Series194-4MSTN_W7.62mm_P2.54mm -4x-dip-switch SPST CTS_Series194-4MSTN, Piano, row spacing 7.62 mm (300 mils), body size (see https://www.ctscorp.com/wp-content/uploads/194-195.pdf) -DIP Switch SPST Piano 7.62mm 300mil -0 -8 -8 -Button_Switch_THT -SW_DIP_SPSTx04_Slide_6.7x11.72mm_W7.62mm_P2.54mm_LowProfile -4x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 6.7x11.72mm (see e.g. https://www.ctscorp.com/wp-content/uploads/209-210.pdf), LowProfile -DIP Switch SPST Slide 7.62mm 300mil LowProfile -0 -8 -8 -Button_Switch_THT -SW_DIP_SPSTx04_Slide_9.78x12.34mm_W7.62mm_P2.54mm -4x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 9.78x12.34mm (see e.g. https://www.ctscorp.com/wp-content/uploads/206-208.pdf) -DIP Switch SPST Slide 7.62mm 300mil -0 -8 -8 -Button_Switch_THT -SW_DIP_SPSTx05_Piano_10.8x14.26mm_W7.62mm_P2.54mm -5x-dip-switch SPST , Piano, row spacing 7.62 mm (300 mils), body size 10.8x14.26mm -DIP Switch SPST Piano 7.62mm 300mil -0 -10 -10 -Button_Switch_THT -SW_DIP_SPSTx05_Piano_CTS_Series194-5MSTN_W7.62mm_P2.54mm -5x-dip-switch SPST CTS_Series194-5MSTN, Piano, row spacing 7.62 mm (300 mils), body size (see https://www.ctscorp.com/wp-content/uploads/194-195.pdf) -DIP Switch SPST Piano 7.62mm 300mil -0 -10 -10 -Button_Switch_THT -SW_DIP_SPSTx05_Slide_6.7x14.26mm_W7.62mm_P2.54mm_LowProfile -5x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 6.7x14.26mm (see e.g. https://www.ctscorp.com/wp-content/uploads/209-210.pdf), LowProfile -DIP Switch SPST Slide 7.62mm 300mil LowProfile -0 -10 -10 -Button_Switch_THT -SW_DIP_SPSTx05_Slide_9.78x14.88mm_W7.62mm_P2.54mm -5x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 9.78x14.88mm (see e.g. https://www.ctscorp.com/wp-content/uploads/206-208.pdf) -DIP Switch SPST Slide 7.62mm 300mil -0 -10 -10 -Button_Switch_THT -SW_DIP_SPSTx06_Piano_10.8x16.8mm_W7.62mm_P2.54mm -6x-dip-switch SPST , Piano, row spacing 7.62 mm (300 mils), body size 10.8x16.8mm -DIP Switch SPST Piano 7.62mm 300mil -0 -12 -12 -Button_Switch_THT -SW_DIP_SPSTx06_Piano_CTS_Series194-6MSTN_W7.62mm_P2.54mm -6x-dip-switch SPST CTS_Series194-6MSTN, Piano, row spacing 7.62 mm (300 mils), body size (see https://www.ctscorp.com/wp-content/uploads/194-195.pdf) -DIP Switch SPST Piano 7.62mm 300mil -0 -12 -12 -Button_Switch_THT -SW_DIP_SPSTx06_Slide_6.7x16.8mm_W7.62mm_P2.54mm_LowProfile -6x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 6.7x16.8mm (see e.g. https://www.ctscorp.com/wp-content/uploads/209-210.pdf), LowProfile -DIP Switch SPST Slide 7.62mm 300mil LowProfile -0 -12 -12 -Button_Switch_THT -SW_DIP_SPSTx06_Slide_9.78x17.42mm_W7.62mm_P2.54mm -6x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 9.78x17.42mm (see e.g. https://www.ctscorp.com/wp-content/uploads/206-208.pdf) -DIP Switch SPST Slide 7.62mm 300mil -0 -12 -12 -Button_Switch_THT -SW_DIP_SPSTx07_Piano_10.8x19.34mm_W7.62mm_P2.54mm -7x-dip-switch SPST , Piano, row spacing 7.62 mm (300 mils), body size 10.8x19.34mm -DIP Switch SPST Piano 7.62mm 300mil -0 -14 -14 -Button_Switch_THT -SW_DIP_SPSTx07_Piano_CTS_Series194-7MSTN_W7.62mm_P2.54mm -7x-dip-switch SPST CTS_Series194-7MSTN, Piano, row spacing 7.62 mm (300 mils), body size (see https://www.ctscorp.com/wp-content/uploads/194-195.pdf) -DIP Switch SPST Piano 7.62mm 300mil -0 -14 -14 -Button_Switch_THT -SW_DIP_SPSTx07_Slide_6.7x19.34mm_W7.62mm_P2.54mm_LowProfile -7x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 6.7x19.34mm (see e.g. https://www.ctscorp.com/wp-content/uploads/209-210.pdf), LowProfile -DIP Switch SPST Slide 7.62mm 300mil LowProfile -0 -14 -14 -Button_Switch_THT -SW_DIP_SPSTx07_Slide_9.78x19.96mm_W7.62mm_P2.54mm -7x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 9.78x19.96mm (see e.g. https://www.ctscorp.com/wp-content/uploads/206-208.pdf) -DIP Switch SPST Slide 7.62mm 300mil -0 -14 -14 -Button_Switch_THT -SW_DIP_SPSTx08_Piano_10.8x21.88mm_W7.62mm_P2.54mm -8x-dip-switch SPST , Piano, row spacing 7.62 mm (300 mils), body size 10.8x21.88mm -DIP Switch SPST Piano 7.62mm 300mil -0 -16 -16 -Button_Switch_THT -SW_DIP_SPSTx08_Piano_CTS_Series194-8MSTN_W7.62mm_P2.54mm -8x-dip-switch SPST CTS_Series194-8MSTN, Piano, row spacing 7.62 mm (300 mils), body size (see https://www.ctscorp.com/wp-content/uploads/194-195.pdf) -DIP Switch SPST Piano 7.62mm 300mil -0 -16 -16 -Button_Switch_THT -SW_DIP_SPSTx08_Slide_6.7x21.88mm_W7.62mm_P2.54mm_LowProfile -8x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 6.7x21.88mm (see e.g. https://www.ctscorp.com/wp-content/uploads/209-210.pdf), LowProfile -DIP Switch SPST Slide 7.62mm 300mil LowProfile -0 -16 -16 -Button_Switch_THT -SW_DIP_SPSTx08_Slide_9.78x22.5mm_W7.62mm_P2.54mm -8x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 9.78x22.5mm (see e.g. https://www.ctscorp.com/wp-content/uploads/206-208.pdf) -DIP Switch SPST Slide 7.62mm 300mil -0 -16 -16 -Button_Switch_THT -SW_DIP_SPSTx09_Piano_10.8x24.42mm_W7.62mm_P2.54mm -9x-dip-switch SPST , Piano, row spacing 7.62 mm (300 mils), body size 10.8x24.42mm -DIP Switch SPST Piano 7.62mm 300mil -0 -18 -18 -Button_Switch_THT -SW_DIP_SPSTx09_Piano_CTS_Series194-9MSTN_W7.62mm_P2.54mm -9x-dip-switch SPST CTS_Series194-9MSTN, Piano, row spacing 7.62 mm (300 mils), body size (see https://www.ctscorp.com/wp-content/uploads/194-195.pdf) -DIP Switch SPST Piano 7.62mm 300mil -0 -18 -18 -Button_Switch_THT -SW_DIP_SPSTx09_Slide_6.7x24.42mm_W7.62mm_P2.54mm_LowProfile -9x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 6.7x24.42mm (see e.g. https://www.ctscorp.com/wp-content/uploads/209-210.pdf), LowProfile -DIP Switch SPST Slide 7.62mm 300mil LowProfile -0 -18 -18 -Button_Switch_THT -SW_DIP_SPSTx09_Slide_9.78x25.04mm_W7.62mm_P2.54mm -9x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 9.78x25.04mm (see e.g. https://www.ctscorp.com/wp-content/uploads/206-208.pdf) -DIP Switch SPST Slide 7.62mm 300mil -0 -18 -18 -Button_Switch_THT -SW_DIP_SPSTx10_Piano_10.8x26.96mm_W7.62mm_P2.54mm -10x-dip-switch SPST , Piano, row spacing 7.62 mm (300 mils), body size 10.8x26.96mm -DIP Switch SPST Piano 7.62mm 300mil -0 -20 -20 -Button_Switch_THT -SW_DIP_SPSTx10_Piano_CTS_Series194-10MSTN_W7.62mm_P2.54mm -10x-dip-switch SPST CTS_Series194-10MSTN, Piano, row spacing 7.62 mm (300 mils), body size (see https://www.ctscorp.com/wp-content/uploads/194-195.pdf) -DIP Switch SPST Piano 7.62mm 300mil -0 -20 -20 -Button_Switch_THT -SW_DIP_SPSTx10_Slide_6.7x26.96mm_W7.62mm_P2.54mm_LowProfile -10x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 6.7x26.96mm (see e.g. https://www.ctscorp.com/wp-content/uploads/209-210.pdf), LowProfile -DIP Switch SPST Slide 7.62mm 300mil LowProfile -0 -20 -20 -Button_Switch_THT -SW_DIP_SPSTx10_Slide_9.78x27.58mm_W7.62mm_P2.54mm -10x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 9.78x27.58mm (see e.g. https://www.ctscorp.com/wp-content/uploads/206-208.pdf) -DIP Switch SPST Slide 7.62mm 300mil -0 -20 -20 -Button_Switch_THT -SW_DIP_SPSTx11_Piano_10.8x29.5mm_W7.62mm_P2.54mm -11x-dip-switch SPST , Piano, row spacing 7.62 mm (300 mils), body size 10.8x29.5mm -DIP Switch SPST Piano 7.62mm 300mil -0 -22 -22 -Button_Switch_THT -SW_DIP_SPSTx11_Piano_CTS_Series194-11MSTN_W7.62mm_P2.54mm -11x-dip-switch SPST CTS_Series194-11MSTN, Piano, row spacing 7.62 mm (300 mils), body size (see https://www.ctscorp.com/wp-content/uploads/194-195.pdf) -DIP Switch SPST Piano 7.62mm 300mil -0 -22 -22 -Button_Switch_THT -SW_DIP_SPSTx11_Slide_6.7x29.5mm_W7.62mm_P2.54mm_LowProfile -11x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 6.7x29.5mm (see e.g. https://www.ctscorp.com/wp-content/uploads/209-210.pdf), LowProfile -DIP Switch SPST Slide 7.62mm 300mil LowProfile -0 -22 -22 -Button_Switch_THT -SW_DIP_SPSTx11_Slide_9.78x30.12mm_W7.62mm_P2.54mm -11x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 9.78x30.12mm (see e.g. https://www.ctscorp.com/wp-content/uploads/206-208.pdf) -DIP Switch SPST Slide 7.62mm 300mil -0 -22 -22 -Button_Switch_THT -SW_DIP_SPSTx12_Piano_10.8x32.04mm_W7.62mm_P2.54mm -12x-dip-switch SPST , Piano, row spacing 7.62 mm (300 mils), body size 10.8x32.04mm -DIP Switch SPST Piano 7.62mm 300mil -0 -24 -24 -Button_Switch_THT -SW_DIP_SPSTx12_Piano_CTS_Series194-12MSTN_W7.62mm_P2.54mm -12x-dip-switch SPST CTS_Series194-12MSTN, Piano, row spacing 7.62 mm (300 mils), body size (see https://www.ctscorp.com/wp-content/uploads/194-195.pdf) -DIP Switch SPST Piano 7.62mm 300mil -0 -24 -24 -Button_Switch_THT -SW_DIP_SPSTx12_Slide_6.7x32.04mm_W7.62mm_P2.54mm_LowProfile -12x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 6.7x32.04mm (see e.g. https://www.ctscorp.com/wp-content/uploads/209-210.pdf), LowProfile -DIP Switch SPST Slide 7.62mm 300mil LowProfile -0 -24 -24 -Button_Switch_THT -SW_DIP_SPSTx12_Slide_9.78x32.66mm_W7.62mm_P2.54mm -12x-dip-switch SPST , Slide, row spacing 7.62 mm (300 mils), body size 9.78x32.66mm (see e.g. https://www.ctscorp.com/wp-content/uploads/206-208.pdf) -DIP Switch SPST Slide 7.62mm 300mil -0 -24 -24 -Button_Switch_THT -SW_E-Switch_EG1224_SPDT_Angled -E-Switch slide switch, EG series, SPDT, right angle, http://spec_sheets.e-switch.com/specs/P040042.pdf -switch SPDT -0 -7 -3 -Button_Switch_THT -SW_E-Switch_EG1271_SPDT -E-Switch sub miniature slide switch, EG series, SPDT, https://www.e-switch.com/wp-content/uploads/2022/06/EG.pdf -switch SPDT -0 -6 -6 -Button_Switch_THT -SW_E-Switch_EG2219_DPDT_Angled -E-Switch slide switch, EG series, DPDT, right angle, http://spec_sheets.e-switch.com/specs/P040170.pdf -switch DPDT -0 -10 -6 -Button_Switch_THT -SW_Lever_1P2T_NKK_GW12LxH -Switch, single pole double throw, right angle, http://www.nkkswitches.com/pdf/GW.pdf -switch single-pole double-throw spdt ON-ON horizontal -0 -5 -3 -Button_Switch_THT -SW_MEC_5GTH9 -MEC 5G single pole normally-open tactile switch https://cdn.sos.sk/productdata/80/f6/aabf7be6/5gth9358222.pdf -switch normally-open pushbutton push-button -0 -4 -2 -Button_Switch_THT -SW_NKK_BB15AH -https://www.nkkswitches.com/pdf/Bpushbuttons-1.pdf -Pushbutton Right-angle -0 -5 -3 -Button_Switch_THT -SW_NKK_G1xJP -Switch NKK G1xJP http://www.nkkswitches.com/pdf/gwillum.pdf -SWITCH TOGGLE ILLUM SPDT NKK -0 -6 -6 -Button_Switch_THT -SW_NKK_GW12LJP -Switch, single pole double throw, illuminated paddle, http://www.nkkswitches.com/pdf/gwillum.pdf -switch single-pole double-throw spdt ON-ON illuminated LED -0 -6 -6 -Button_Switch_THT -SW_PUSH-12mm -SW PUSH 12mm https://www.e-switch.com/system/asset/product_line/data_sheet/143/TL1100.pdf -tact sw push 12mm -0 -4 -2 -Button_Switch_THT -SW_PUSH-12mm_Wuerth-430476085716 -SW PUSH 12mm http://katalog.we-online.de/em/datasheet/430476085716.pdf -tact sw push 12mm -0 -4 -2 -Button_Switch_THT -SW_PUSH_6mm -https://www.omron.com/ecb/products/pdf/en-b3f.pdf -tact sw push 6mm -0 -4 -2 -Button_Switch_THT -SW_PUSH_6mm_H4.3mm -tactile push button, 6x6mm e.g. PHAP33xx series, height=4.3mm -tact sw push 6mm -0 -4 -2 -Button_Switch_THT -SW_PUSH_6mm_H5mm -tactile push button, 6x6mm e.g. PHAP33xx series, height=5mm -tact sw push 6mm -0 -4 -2 -Button_Switch_THT -SW_PUSH_6mm_H7.3mm -tactile push button, 6x6mm e.g. PHAP33xx series, height=7.3mm -tact sw push 6mm -0 -4 -2 -Button_Switch_THT -SW_PUSH_6mm_H8.5mm -tactile push button, 6x6mm e.g. PHAP33xx series, height=8.5mm -tact sw push 6mm -0 -4 -2 -Button_Switch_THT -SW_PUSH_6mm_H8mm -tactile push button, 6x6mm e.g. PHAP33xx series, height=8mm -tact sw push 6mm -0 -4 -2 -Button_Switch_THT -SW_PUSH_6mm_H9.5mm -tactile push button, 6x6mm e.g. PHAP33xx series, height=9.5mm -tact sw push 6mm -0 -4 -2 -Button_Switch_THT -SW_PUSH_6mm_H13mm -tactile push button, 6x6mm e.g. PHAP33xx series, height=13mm -tact sw push 6mm -0 -4 -2 -Button_Switch_THT -SW_PUSH_E-Switch_FS5700DP_DPDT -FS5700 series pushbutton footswitch, DPDT, https://www.e-switch.com/system/asset/product_line/data_sheet/226/FS5700.pdf -switch DPDT footswitch -0 -6 -6 -Button_Switch_THT -SW_PUSH_LCD_E3_SAxxxx -Switch with LCD screen E3 SAxxxx -switch normally-open pushbutton push-button LCD -0 -6 -6 -Button_Switch_THT -SW_PUSH_LCD_E3_SAxxxx_SocketPins -Switch with LCD screen E3 SAxxxx -switch normally-open pushbutton push-button LCD -0 -6 -6 -Button_Switch_THT -SW_Push_1P1T_NO_LED_E-Switch_TL1250 -illuminated right angle tact switch https://www.e-switch.com/system/asset/product_line/data_sheet/148/TL1250.pdf -led push switch right angle -0 -6 -4 -Button_Switch_THT -SW_Push_1P2T_Vertical_E-Switch_800UDP8P1A1M6 - right angle SPDT push button https://www.e-switch.com/system/asset/product_line/data_sheet/210/800U.pdf -IP67 ultra-miniture horizontal -0 -5 -3 -Button_Switch_THT -SW_Push_2P1T_Toggle_CK_PVA1xxH1xxxxxxV2 -momentary / push-push button, h=17.5mm C&K PVA1 https://www.ckswitches.com/media/1343/pva.pdf -tact sw push PVA1 DPST -0 -4 -4 -Button_Switch_THT -SW_Push_2P1T_Toggle_CK_PVA1xxH2xxxxxxV2 -momentary / push-push button, h=23mm C&K PVA1 https://www.ckswitches.com/media/1343/pva.pdf -tact sw push PVA1 DPST -0 -4 -4 -Button_Switch_THT -SW_Push_2P1T_Toggle_CK_PVA1xxH3xxxxxxV2 -momentary / push-push button, h=20.5mm C&K PVA1 https://www.ckswitches.com/media/1343/pva.pdf -tact sw push PVA1 DPST -0 -4 -4 -Button_Switch_THT -SW_Push_2P1T_Toggle_CK_PVA1xxH4xxxxxxV2 -momentary / push-push button, h=15mm C&K PVA1 https://www.ckswitches.com/media/1343/pva.pdf -tact sw push PVA1 DPST -0 -4 -4 -Button_Switch_THT -SW_Push_2P2T_Toggle_CK_PVA2OAH5xxxxxxV2 -momentary / push-push button, h=13mm C&K PVA2 https://www.ckswitches.com/media/1343/pva.pdf -tact sw push PVA2 DPDT -0 -6 -6 -Button_Switch_THT -SW_Push_2P2T_Toggle_CK_PVA2xxH1xxxxxxV2 -momentary / push-push button, h=17.5mm C&K PVA2 https://www.ckswitches.com/media/1343/pva.pdf -tact sw push PVA2 DPDT -0 -6 -6 -Button_Switch_THT -SW_Push_2P2T_Toggle_CK_PVA2xxH2xxxxxxV2 -momentary / push-push button, h=23mm C&K PVA2 https://www.ckswitches.com/media/1343/pva.pdf -tact sw push PVA2 DPDT -0 -6 -6 -Button_Switch_THT -SW_Push_2P2T_Toggle_CK_PVA2xxH3xxxxxxV2 -momentary / push-push button, h=20.5mm C&K PVA2 https://www.ckswitches.com/media/1343/pva.pdf -tact sw push PVA2 DPDT -0 -6 -6 -Button_Switch_THT -SW_Push_2P2T_Toggle_CK_PVA2xxH4xxxxxxV2 -momentary / push-push button, h=15mm C&K PVA2 https://www.ckswitches.com/media/1343/pva.pdf -tact sw push PVA2 DPDT -0 -6 -6 -Button_Switch_THT -SW_Push_2P2T_Vertical_E-Switch_800UDP8P1A1M6 - right angle DPDT push button https://www.e-switch.com/system/asset/product_line/data_sheet/210/800U.pdf -IP67 ultra-miniture horizontal -0 -8 -6 -Button_Switch_THT -SW_SPST_Omron_B3F-315x_Angled -tactile switch, 7.3mm x 6.25mm x 7.4mm, right angle, https://omronfs.omron.com/en_US/ecb/products/pdf/en-b3f.pdf -tactile switch Omron B3F right angle through hole -0 -4 -2 -Button_Switch_THT -SW_Slide_1P2T_CK_OS102011MS2Q -CuK miniature slide switch, OS series, SPDT, https://www.ckswitches.com/media/1428/os.pdf -switch SPDT -0 -5 -3 -Button_Switch_THT -SW_TH_Tactile_Omron_B3F-10xx -SW_TH_Tactile_Omron_B3F-10xx_https://www.omron.com/ecb/products/pdf/en-b3f.pdf -Omron B3F-10xx -0 -4 -2 -Button_Switch_THT -SW_Tactile_SKHH_Angled -tactile switch 6mm ALPS SKHH right angle http://www.alps.com/prod/info/E/HTML/Tact/SnapIn/SKHH/SKHHLUA010.html -tactile switch 6mm ALPS SKHH right angle -0 -4 -2 -Button_Switch_THT -SW_Tactile_SPST_Angled_PTS645Vx31-2LFS -tactile switch SPST right angle, PTS645VL31-2 LFS -tactile switch SPST angled PTS645VL31-2 LFS C&K Button -0 -4 -2 -Button_Switch_THT -SW_Tactile_SPST_Angled_PTS645Vx39-2LFS -tactile switch SPST right angle, PTS645VL39-2 LFS -tactile switch SPST angled PTS645VL39-2 LFS C&K Button -0 -4 -2 -Button_Switch_THT -SW_Tactile_SPST_Angled_PTS645Vx58-2LFS -tactile switch SPST right angle, PTS645VL58-2 LFS -tactile switch SPST angled PTS645VL58-2 LFS C&K Button -0 -4 -2 -Button_Switch_THT -SW_Tactile_SPST_Angled_PTS645Vx83-2LFS -tactile switch SPST right angle, PTS645VL83-2 LFS -tactile switch SPST angled PTS645VL83-2 LFS C&K Button -0 -4 -2 -Button_Switch_THT -SW_Tactile_Straight_KSA0Axx1LFTR -SW PUSH SMALL http://www.ckswitches.com/media/1457/ksa_ksl.pdf -SW PUSH SMALL Tactile C&K -0 -4 -2 -Button_Switch_THT -SW_Tactile_Straight_KSL0Axx1LFTR -SW PUSH SMALL http://www.ckswitches.com/media/1457/ksa_ksl.pdf -SW PUSH SMALL Tactile C&K -0 -4 -2 -Buzzer_Beeper -Buzzer_12x9.5RM7.6 -Generic Buzzer, D12mm height 9.5mm with RM7.6mm -buzzer -0 -2 -2 -Buzzer_Beeper -Buzzer_15x7.5RM7.6 -Generic Buzzer, D15mm height 7.5mm with RM7.6mm -buzzer -0 -2 -2 -Buzzer_Beeper -Buzzer_CUI_CPT-9019S-SMT -https://www.cui.com/product/resource/cpt-9019s-smt.pdf -buzzer piezo -0 -2 -2 -Buzzer_Beeper -Buzzer_D14mm_H7mm_P10mm -Generic Buzzer, D14mm height 7mm with pitch 10mm -buzzer -0 -2 -2 -Buzzer_Beeper -Buzzer_Mallory_AST1109MLTRQ -Mallory low-profile piezo buzzer, https://mspindy.com/spec-sheets/AST1109MLTRQ.pdf -buzzer piezo -0 -2 -2 -Buzzer_Beeper -Buzzer_Mallory_AST1240MLQ -Mallory low-profile piezo buzzer, https://www.mspindy.com/specifications/AST12140MLQ.pdf -piezo buzzer -0 -2 -2 -Buzzer_Beeper -Buzzer_Murata_PKLCS1212E -Murata Buzzer https://www.murata.com/~/media/webrenewal/support/library/catalog/products/sound/p37e.ashx -Murata Buzzer Beeper -0 -2 -2 -Buzzer_Beeper -Buzzer_Murata_PKMCS0909E -Murata Buzzer http://www.murata.com/en-us/api/pdfdownloadapi?cate=&partno=PKMCS0909E4000-R1 -Murata Buzzer Beeper -0 -2 -2 -Buzzer_Beeper -Buzzer_TDK_PS1240P02BT_D12.2mm_H6.5mm -Buzzer, D12.2mm height 6.5mm, https://product.tdk.com/info/en/catalog/datasheets/piezoelectronic_buzzer_ps_en.pdf -buzzer -0 -2 -2 -Buzzer_Beeper -Indicator_PUI_AI-1440-TWT-24V-2-R -14mm Indicator, https://www.puiaudio.com/media/SpecSheet/AI-1440-TWT-24V-2-R.pdf -piezo buzzer self drive oscillator -0 -2 -2 -Buzzer_Beeper -MagneticBuzzer_CUI_CMT-8504-100-SMT -magnetic transducer buzzer, 5V, SPL of 100 dB at 10 cm, https://www.cuidevices.com/product/resource/pdf/cmt-8504-100-smt-tr.pdf -CMT 8504 -0 -4 -4 -Buzzer_Beeper -MagneticBuzzer_CUI_CST-931RP-A -CST-931RP-A, http://www.cui.com/product/resource/cst-931rp-a.pdf -CST-931RP-A -0 -2 -2 -Buzzer_Beeper -MagneticBuzzer_Kingstate_KCG0601 -Buzzer, Elektromagnetic Beeper, Summer, -Kingstate KCG0601 -0 -2 -2 -Buzzer_Beeper -MagneticBuzzer_Kobitone_254-EMB73-RO -MagneticBuzzer_Kobitone_254-EMB73-RO https://www.mouser.es/datasheet/2/209/joytech_11092018_KT-400379-1501513.pdf -MagneticBuzzer_Kobitone_254-EMB73-RO -0 -2 -2 -Buzzer_Beeper -MagneticBuzzer_Kobitone_254-EMB84Q-RO -MagneticBuzzer Kobitone 254-EMB84Q-RO https://www.mouser.es/datasheet/2/209/KT-400385-1171904.pdf -MagneticBuzzer Kobitone 254-EMB84Q-RO -0 -3 -3 -Buzzer_Beeper -MagneticBuzzer_PUI_AT-0927-TT-6-R -Buzzer Magnetic 9mm AT-0927-TT-6-R, http://www.puiaudio.com/pdf/AT-0927-TT-6-R.pdf -Buzzer Magnetic 9mm AT-0927-TT-6-R -0 -2 -2 -Buzzer_Beeper -MagneticBuzzer_ProSignal_ABI-009-RC -Buzzer, Elektromagnetic Beeper, Summer, 6V-DC, -Pro Signal ABI-009-RC -0 -2 -2 -Buzzer_Beeper -MagneticBuzzer_ProSignal_ABI-010-RC -Buzzer, Elektromagnetic Beeper, Summer, 12V-DC, -Pro Signal ABI-010-RC -0 -2 -2 -Buzzer_Beeper -MagneticBuzzer_ProSignal_ABT-410-RC -Buzzer, Elektromagnetic Beeper, Summer, 1,5V-DC, -Pro Signal ABT-410-RC -0 -2 -2 -Buzzer_Beeper -MagneticBuzzer_ProjectsUnlimited_AI-4228-TWT-R -Buzzer, Elektromagnetic Beeper, Summer, 3-28V-DC, https://www.kynix.com/uploadfiles/pdf/AI-4228-TWT-R.pdf -Projects Unlimited AI-4228-TWT-R -0 -2 -2 -Buzzer_Beeper -MagneticBuzzer_StarMicronics_HMB-06_HMB-12 -Buzzer, Elektromagnetic Beeper, Summer, -Star Micronics HMB-06 HMB-12 -0 -2 -2 -Buzzer_Beeper -PUIAudio_SMT_0825_S_4_R -SMD 8540, http://www.puiaudio.com/product-detail.aspx?partnumber=SMT-0825-S-4-R -SMD 8540 -0 -4 -4 -Buzzer_Beeper -Speaker_CUI_CMR-1206S-67 -Speaker, 30mW, 300-7000Hz, IP67 face, 12x6x2,25mm, https://www.cuidevices.com/product/resource/cmr-12062s-67.pdf -speaker CUI -0 -2 -2 -Calibration_Scale -Gauge_10mm_Type1_CopperTop -Gauge, Massstab, 10mm, CopperTop, Type 1, -Gauge Massstab 10mm CopperTop Type 1 -0 -0 -0 -Calibration_Scale -Gauge_10mm_Type1_SilkScreenTop -Gauge, Massstab, 10mm, SilkScreenTop, Type 1, -Gauge Massstab 10mm SilkScreenTop Type 1 -0 -0 -0 -Calibration_Scale -Gauge_10mm_Type2_CopperTop -Gauge, Massstab, 10mm, CopperTop, Type 2, -Gauge Massstab 10mm CopperTop Type 2 -0 -0 -0 -Calibration_Scale -Gauge_10mm_Type2_SilkScreenTop -Gauge, Massstab, 10mm, SilkScreenTop, Type 2, -Gauge Massstab 10mm SilkScreenTop Type 2 -0 -0 -0 -Calibration_Scale -Gauge_10mm_Type3_CopperTop -Gauge, Massstab, 10mm, CopperTop, Type 3, -Gauge Massstab 10mm CopperTop Type 3 -0 -0 -0 -Calibration_Scale -Gauge_10mm_Type3_SilkScreenTop -Gauge, Massstab, 10mm, SilkScreenTop, Type 3, -Gauge Massstab 10mm SilkScreenTop Type 3 -0 -0 -0 -Calibration_Scale -Gauge_10mm_Type4_CopperTop -Gauge, Massstab, 10mm, CopperTop, Type 4, -Gauge Massstab 10mm CopperTop Type 4 -0 -0 -0 -Calibration_Scale -Gauge_10mm_Type4_SilkScreenTop -Gauge, Massstab, 10mm, SilkScreenTop, Type 4, -Gauge Massstab 10mm SilkScreenTop Type 4 -0 -0 -0 -Calibration_Scale -Gauge_10mm_Type5_CopperTop -Gauge, Massstab, 10mm, CopperTop, Type 5, -Gauge Massstab 10mm CopperTop Type 5 -0 -0 -0 -Calibration_Scale -Gauge_10mm_Type5_SilkScreenTop -Gauge, Massstab, 10mm, SilkScreenTop, Type 5, -Gauge Massstab 10mm SilkScreenTop Type 5 -0 -0 -0 -Calibration_Scale -Gauge_50mm_Type1_CopperTop -Gauge, Massstab, 50mm, CopperTop, Type 1, -Gauge Massstab 50mm CopperTop Type 1 -0 -0 -0 -Calibration_Scale -Gauge_50mm_Type1_SilkScreenTop -Gauge, Massstab, 50mm, SilkScreenTop, Type 1, -Gauge Massstab 50mm SilkScreenTop Type 1 -0 -0 -0 -Calibration_Scale -Gauge_50mm_Type2_CopperTop -Gauge, Massstab, 50mm, CopperTop, Type 2, -Gauge Massstab 50mm CopperTop Type 2 -0 -0 -0 -Calibration_Scale -Gauge_50mm_Type2_SilkScreenTop -Gauge, Massstab, 50mm, SilkScreenTop, Type 2, -Gauge Massstab 50mm SilkScreenTop Type 2 -0 -0 -0 -Calibration_Scale -Gauge_100mm_Grid_Type1_CopperTop -Gauge, Massstab, 100mm, Gitter, Grid, CopperTop, Type 1, -Gauge Massstab 100mm Gitter Grid CopperTop Type 1 -0 -0 -0 -Calibration_Scale -Gauge_100mm_Type1_CopperTop -Gauge, Massstab, 100mm, CopperTop, Type 1, -Gauge Massstab 100mm CopperTop Type 1 -0 -0 -0 -Calibration_Scale -Gauge_100mm_Type1_SilkScreenTop -Gauge, Massstab, 100mm, SilkScreenTop, Type 1, -Gauge Massstab 100mm SilkScreenTop Type 1 -0 -0 -0 -Calibration_Scale -Gauge_100mm_Type2_CopperTop -Gauge, Massstab, 100mm, CopperTop, Type 2, -Gauge Massstab 100mm CopperTop Type 2 -0 -0 -0 -Calibration_Scale -Gauge_100mm_Type2_SilkScreenTop -Gauge, Massstab, 100mm, SilkScreenTop, Type 2, -Gauge Massstab 100mm SilkScreenTop Type 2 -0 -0 -0 -Capacitor_SMD -CP_Elec_3x5.3 -SMT capacitor, aluminium electrolytic, 3x5.3, Cornell Dubilier Electronics -Capacitor Electrolytic -0 -2 -2 -Capacitor_SMD -CP_Elec_3x5.4 -SMD capacitor, aluminum electrolytic, Nichicon, 3.0x5.4mm -capacitor electrolytic -0 -2 -2 -Capacitor_SMD -CP_Elec_4x3 -SMD capacitor, aluminum electrolytic, Nichicon, 4.0x3mm -capacitor electrolytic -0 -2 -2 -Capacitor_SMD -CP_Elec_4x3.9 -SMD capacitor, aluminum electrolytic, Nichicon, 4.0x3.9mm -capacitor electrolytic -0 -2 -2 -Capacitor_SMD -CP_Elec_4x4.5 -SMD capacitor, aluminum electrolytic, Nichicon, 4.0x4.5mm -capacitor electrolytic -0 -2 -2 -Capacitor_SMD -CP_Elec_4x5.3 -SMD capacitor, aluminum electrolytic, Vishay, 4.0x5.3mm -capacitor electrolytic -0 -2 -2 -Capacitor_SMD -CP_Elec_4x5.4 -SMD capacitor, aluminum electrolytic, Panasonic A5 / Nichicon, 4.0x5.4mm -capacitor electrolytic -0 -2 -2 -Capacitor_SMD -CP_Elec_4x5.7 -SMD capacitor, aluminum electrolytic, United Chemi-Con, 4.0x5.7mm -capacitor electrolytic -0 -2 -2 -Capacitor_SMD -CP_Elec_4x5.8 -SMD capacitor, aluminum electrolytic, Panasonic, 4.0x5.8mm -capacitor electrolytic -0 -2 -2 -Capacitor_SMD -CP_Elec_5x3 -SMD capacitor, aluminum electrolytic, Nichicon, 5.0x3.0mm -capacitor electrolytic -0 -2 -2 -Capacitor_SMD -CP_Elec_5x3.9 -SMD capacitor, aluminum electrolytic, Nichicon, 5.0x3.9mm -capacitor electrolytic -0 -2 -2 -Capacitor_SMD -CP_Elec_5x4.4 -SMD capacitor, aluminum electrolytic, Panasonic B45, 5.0x4.4mm -capacitor electrolytic -0 -2 -2 -Capacitor_SMD -CP_Elec_5x4.5 -SMD capacitor, aluminum electrolytic, Nichicon, 5.0x4.5mm -capacitor electrolytic -0 -2 -2 -Capacitor_SMD -CP_Elec_5x5.3 -SMD capacitor, aluminum electrolytic, Nichicon, 5.0x5.3mm -capacitor electrolytic -0 -2 -2 -Capacitor_SMD -CP_Elec_5x5.4 -SMD capacitor, aluminum electrolytic, Nichicon, 5.0x5.4mm -capacitor electrolytic -0 -2 -2 -Capacitor_SMD -CP_Elec_5x5.7 -SMD capacitor, aluminum electrolytic, United Chemi-Con, 5.0x5.7mm -capacitor electrolytic -0 -2 -2 -Capacitor_SMD -CP_Elec_5x5.8 -SMD capacitor, aluminum electrolytic, Panasonic, 5.0x5.8mm -capacitor electrolytic -0 -2 -2 -Capacitor_SMD -CP_Elec_5x5.9 -SMD capacitor, aluminum electrolytic, Panasonic B6, 5.0x5.9mm -capacitor electrolytic -0 -2 -2 -Capacitor_SMD -CP_Elec_6.3x3 -SMD capacitor, aluminum electrolytic, Nichicon, 6.3x3.0mm -capacitor electrolytic -0 -2 -2 -Capacitor_SMD -CP_Elec_6.3x3.9 -SMD capacitor, aluminum electrolytic, Nichicon, 6.3x3.9mm -capacitor electrolytic -0 -2 -2 -Capacitor_SMD -CP_Elec_6.3x4.5 -SMD capacitor, aluminum electrolytic, Nichicon, 6.3x4.5mm -capacitor electrolytic -0 -2 -2 -Capacitor_SMD -CP_Elec_6.3x4.9 -SMD capacitor, aluminum electrolytic, Panasonic C5, 6.3x4.9mm -capacitor electrolytic -0 -2 -2 -Capacitor_SMD -CP_Elec_6.3x5.2 -SMD capacitor, aluminum electrolytic, United Chemi-Con, 6.3x5.2mm -capacitor electrolytic -0 -2 -2 -Capacitor_SMD -CP_Elec_6.3x5.3 -SMD capacitor, aluminum electrolytic, Cornell Dubilier, 6.3x5.3mm -capacitor electrolytic -0 -2 -2 -Capacitor_SMD -CP_Elec_6.3x5.4 -SMD capacitor, aluminum electrolytic, Panasonic C55, 6.3x5.4mm -capacitor electrolytic -0 -2 -2 -Capacitor_SMD -CP_Elec_6.3x5.4_Nichicon -SMD capacitor, aluminum electrolytic, Nichicon, 6.3x5.4mm -capacitor electrolytic -0 -2 -2 -Capacitor_SMD -CP_Elec_6.3x5.7 -SMD capacitor, aluminum electrolytic, United Chemi-Con, 6.3x5.7mm -capacitor electrolytic -0 -2 -2 -Capacitor_SMD -CP_Elec_6.3x5.8 -SMD capacitor, aluminum electrolytic, Nichicon, 6.3x5.8mm -capacitor electrolytic -0 -2 -2 -Capacitor_SMD -CP_Elec_6.3x5.9 -SMD capacitor, aluminum electrolytic, Panasonic C6, 6.3x5.9mm -capacitor electrolytic -0 -2 -2 -Capacitor_SMD -CP_Elec_6.3x7.7 -SMD capacitor, aluminum electrolytic, Nichicon, 6.3x7.7mm -capacitor electrolytic -0 -2 -2 -Capacitor_SMD -CP_Elec_6.3x9.9 -SMD capacitor, aluminum electrolytic, Panasonic C10, 6.3x9.9mm -capacitor electrolytic -0 -2 -2 -Capacitor_SMD -CP_Elec_8x5.4 -SMD capacitor, aluminum electrolytic, Nichicon, 8.0x5.4mm -capacitor electrolytic -0 -2 -2 -Capacitor_SMD -CP_Elec_8x6.2 -SMD capacitor, aluminum electrolytic, Nichicon, 8.0x6.2mm -capacitor electrolytic -0 -2 -2 -Capacitor_SMD -CP_Elec_8x6.5 -SMD capacitor, aluminum electrolytic, Rubycon, 8.0x6.5mm -capacitor electrolytic -0 -2 -2 -Capacitor_SMD -CP_Elec_8x6.7 -SMD capacitor, aluminum electrolytic, United Chemi-Con, 8.0x6.7mm -capacitor electrolytic -0 -2 -2 -Capacitor_SMD -CP_Elec_8x6.9 -SMD capacitor, aluminum electrolytic, Panasonic E7, 8.0x6.9mm -capacitor electrolytic -0 -2 -2 -Capacitor_SMD -CP_Elec_8x10 -SMD capacitor, aluminum electrolytic, Nichicon, 8.0x10mm -capacitor electrolytic -0 -2 -2 -Capacitor_SMD -CP_Elec_8x10.5 -SMD capacitor, aluminum electrolytic, Vishay 0810, 8.0x10.5mm, http://www.vishay.com/docs/28395/150crz.pdf -capacitor electrolytic -0 -2 -2 -Capacitor_SMD -CP_Elec_8x11.9 -SMD capacitor, aluminum electrolytic, Panasonic E12, 8.0x11.9mm -capacitor electrolytic -0 -2 -2 -Capacitor_SMD -CP_Elec_10x7.7 -SMD capacitor, aluminum electrolytic, Nichicon, 10.0x7.7mm -capacitor electrolytic -0 -2 -2 -Capacitor_SMD -CP_Elec_10x7.9 -SMD capacitor, aluminum electrolytic, Panasonic F8, 10.0x7.9mm -capacitor electrolytic -0 -2 -2 -Capacitor_SMD -CP_Elec_10x10 -SMD capacitor, aluminum electrolytic, Nichicon, 10.0x10.0mm -capacitor electrolytic -0 -2 -2 -Capacitor_SMD -CP_Elec_10x10.5 -SMD capacitor, aluminum electrolytic, Vishay 1010, 10.0x10.5mm, http://www.vishay.com/docs/28395/150crz.pdf -capacitor electrolytic -0 -2 -2 -Capacitor_SMD -CP_Elec_10x12.5 -SMD capacitor, aluminum electrolytic, Vishay 1012, 10.0x12.5mm, http://www.vishay.com/docs/28395/150crz.pdf -capacitor electrolytic -0 -2 -2 -Capacitor_SMD -CP_Elec_10x12.6 -SMD capacitor, aluminum electrolytic, Panasonic F12, 10.0x12.6mm -capacitor electrolytic -0 -2 -2 -Capacitor_SMD -CP_Elec_10x14.3 -SMD capacitor, aluminum electrolytic, Vishay 1014, 10.0x14.3mm, http://www.vishay.com/docs/28395/150crz.pdf -capacitor electrolytic -0 -2 -2 -Capacitor_SMD -CP_Elec_16x17.5 -SMD capacitor, aluminum electrolytic, Vishay 1616, 16.0x17.5mm, http://www.vishay.com/docs/28395/150crz.pdf -capacitor electrolytic -0 -2 -2 -Capacitor_SMD -CP_Elec_16x22 -SMD capacitor, aluminum electrolytic, Vishay 1621, 16.0x22.0mm, http://www.vishay.com/docs/28395/150crz.pdf -capacitor electrolytic -0 -2 -2 -Capacitor_SMD -CP_Elec_18x17.5 -SMD capacitor, aluminum electrolytic, Vishay 1816, 18.0x17.5mm, http://www.vishay.com/docs/28395/150crz.pdf -capacitor electrolytic -0 -2 -2 -Capacitor_SMD -CP_Elec_18x22 -SMD capacitor, aluminum electrolytic, Vishay 1821, 18.0x22.0mm, http://www.vishay.com/docs/28395/150crz.pdf -capacitor electrolytic -0 -2 -2 -Capacitor_SMD -CP_Elec_CAP-XX_DMF3Zxxxxxxxx3D -5.5V, 470mF supercapacitor, 45mohm, -40ºC to +70ºC, https://www.cap-xx.com/wp-content/uploads/datasheets/CAP-XX-DMF470mF-Datasheet.pdf -supercap -0 -3 -3 -Capacitor_SMD -C_0201_0603Metric -Capacitor SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), generated with kicad-footprint-generator -capacitor -0 -4 -2 -Capacitor_SMD -C_0201_0603Metric_Pad0.64x0.40mm_HandSolder -Capacitor SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), generated with kicad-footprint-generator -capacitor handsolder -0 -4 -2 -Capacitor_SMD -C_0402_1005Metric -Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator -capacitor -0 -2 -2 -Capacitor_SMD -C_0402_1005Metric_Pad0.74x0.62mm_HandSolder -Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator -capacitor handsolder -0 -2 -2 -Capacitor_SMD -C_0504_1310Metric -Capacitor SMD 0504 (1310 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator -capacitor -0 -2 -2 -Capacitor_SMD -C_0504_1310Metric_Pad0.83x1.28mm_HandSolder -Capacitor SMD 0504 (1310 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator -capacitor handsolder -0 -2 -2 -Capacitor_SMD -C_0603_1608Metric -Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator -capacitor -0 -2 -2 -Capacitor_SMD -C_0603_1608Metric_Pad1.08x0.95mm_HandSolder -Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator -capacitor handsolder -0 -2 -2 -Capacitor_SMD -C_0805_2012Metric -Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator -capacitor -0 -2 -2 -Capacitor_SMD -C_0805_2012Metric_Pad1.18x1.45mm_HandSolder -Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator -capacitor handsolder -0 -2 -2 -Capacitor_SMD -C_01005_0402Metric -Capacitor SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), generated with kicad-footprint-generator -capacitor -0 -4 -2 -Capacitor_SMD -C_01005_0402Metric_Pad0.57x0.30mm_HandSolder -Capacitor SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), generated with kicad-footprint-generator -capacitor handsolder -0 -4 -2 -Capacitor_SMD -C_1206_3216Metric -Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator -capacitor -0 -2 -2 -Capacitor_SMD -C_1206_3216Metric_Pad1.33x1.80mm_HandSolder -Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator -capacitor handsolder -0 -2 -2 -Capacitor_SMD -C_1210_3225Metric -Capacitor SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator -capacitor -0 -2 -2 -Capacitor_SMD -C_1210_3225Metric_Pad1.33x2.70mm_HandSolder -Capacitor SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator -capacitor handsolder -0 -2 -2 -Capacitor_SMD -C_1812_4532Metric -Capacitor SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator -capacitor -0 -2 -2 -Capacitor_SMD -C_1812_4532Metric_Pad1.57x3.40mm_HandSolder -Capacitor SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator -capacitor handsolder -0 -2 -2 -Capacitor_SMD -C_1825_4564Metric -Capacitor SMD 1825 (4564 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator -capacitor -0 -2 -2 -Capacitor_SMD -C_1825_4564Metric_Pad1.57x6.80mm_HandSolder -Capacitor SMD 1825 (4564 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator -capacitor handsolder -0 -2 -2 -Capacitor_SMD -C_2220_5650Metric -Capacitor SMD 2220 (5650 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://datasheets.avx.com/AVX-HV_MLCC.pdf), generated with kicad-footprint-generator -capacitor -0 -2 -2 -Capacitor_SMD -C_2220_5650Metric_Pad1.97x5.40mm_HandSolder -Capacitor SMD 2220 (5650 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: http://datasheets.avx.com/AVX-HV_MLCC.pdf), generated with kicad-footprint-generator -capacitor handsolder -0 -2 -2 -Capacitor_SMD -C_2225_5664Metric -Capacitor SMD 2225 (5664 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://datasheets.avx.com/AVX-HV_MLCC.pdf), generated with kicad-footprint-generator -capacitor -0 -2 -2 -Capacitor_SMD -C_2225_5664Metric_Pad1.80x6.60mm_HandSolder -Capacitor SMD 2225 (5664 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: http://datasheets.avx.com/AVX-HV_MLCC.pdf), generated with kicad-footprint-generator -capacitor handsolder -0 -2 -2 -Capacitor_SMD -C_3640_9110Metric -Capacitor SMD 3640 (9110 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://datasheets.avx.com/AVX-HV_MLCC.pdf), generated with kicad-footprint-generator -capacitor -0 -2 -2 -Capacitor_SMD -C_3640_9110Metric_Pad2.10x10.45mm_HandSolder -Capacitor SMD 3640 (9110 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: http://datasheets.avx.com/AVX-HV_MLCC.pdf), generated with kicad-footprint-generator -capacitor handsolder -0 -2 -2 -Capacitor_SMD -C_Elec_3x5.4 -SMD capacitor, aluminum electrolytic nonpolar, 3.0x5.4mm -capacitor electrolyic nonpolar -0 -2 -2 -Capacitor_SMD -C_Elec_4x5.4 -SMD capacitor, aluminum electrolytic nonpolar, 4.0x5.4mm -capacitor electrolyic nonpolar -0 -2 -2 -Capacitor_SMD -C_Elec_4x5.8 -SMD capacitor, aluminum electrolytic nonpolar, 4.0x5.8mm -capacitor electrolyic nonpolar -0 -2 -2 -Capacitor_SMD -C_Elec_5x5.4 -SMD capacitor, aluminum electrolytic nonpolar, 5.0x5.4mm -capacitor electrolyic nonpolar -0 -2 -2 -Capacitor_SMD -C_Elec_5x5.8 -SMD capacitor, aluminum electrolytic nonpolar, 5.0x5.8mm -capacitor electrolyic nonpolar -0 -2 -2 -Capacitor_SMD -C_Elec_6.3x5.4 -SMD capacitor, aluminum electrolytic nonpolar, 6.3x5.4mm -capacitor electrolyic nonpolar -0 -2 -2 -Capacitor_SMD -C_Elec_6.3x5.8 -SMD capacitor, aluminum electrolytic nonpolar, 6.3x5.8mm -capacitor electrolyic nonpolar -0 -2 -2 -Capacitor_SMD -C_Elec_6.3x7.7 -SMD capacitor, aluminum electrolytic nonpolar, 6.3x7.7mm -capacitor electrolyic nonpolar -0 -2 -2 -Capacitor_SMD -C_Elec_8x5.4 -SMD capacitor, aluminum electrolytic nonpolar, 8.0x5.4mm -capacitor electrolyic nonpolar -0 -2 -2 -Capacitor_SMD -C_Elec_8x6.2 -SMD capacitor, aluminum electrolytic nonpolar, 8.0x6.2mm -capacitor electrolyic nonpolar -0 -2 -2 -Capacitor_SMD -C_Elec_8x10.2 -SMD capacitor, aluminum electrolytic nonpolar, 8.0x10.2mm -capacitor electrolyic nonpolar -0 -2 -2 -Capacitor_SMD -C_Elec_10x10.2 -SMD capacitor, aluminum electrolytic nonpolar, 10.0x10.2mm -capacitor electrolyic nonpolar -0 -2 -2 -Capacitor_SMD -C_Trimmer_Murata_TZB4-A -trimmer capacitor SMD horizontal, http://www.murata.com/~/media/webrenewal/support/library/catalog/products/capacitor/trimmer/t13e.ashx?la=en-gb - Murata TZB4 TZB4-A -0 -2 -2 -Capacitor_SMD -C_Trimmer_Murata_TZB4-B -trimmer capacitor SMD horizontal, http://www.murata.com/~/media/webrenewal/support/library/catalog/products/capacitor/trimmer/t13e.ashx?la=en-gb - Murata TZB4 TZB4-A -0 -2 -2 -Capacitor_SMD -C_Trimmer_Murata_TZC3 -trimmer capacitor SMD horizontal, http://www.murata.com/~/media/webrenewal/support/library/catalog/products/capacitor/trimmer/t13e.ashx?la=en-gb - Murata TZC3 -0 -2 -2 -Capacitor_SMD -C_Trimmer_Murata_TZR1 -trimmer capacitor SMD horizontal, http://www.murata.com/~/media/webrenewal/support/library/catalog/products/capacitor/trimmer/t13e.ashx?la=en-gb - Murata TZR1 -0 -2 -2 -Capacitor_SMD -C_Trimmer_Murata_TZW4 -trimmer capacitor SMD horizontal, http://www.murata.com/~/media/webrenewal/support/library/catalog/products/capacitor/trimmer/t13e.ashx?la=en-gb - Murata TZW4 -0 -2 -2 -Capacitor_SMD -C_Trimmer_Murata_TZY2 -trimmer capacitor SMD horizontal, http://www.murata.com/~/media/webrenewal/support/library/catalog/products/capacitor/trimmer/t13e.ashx?la=en-gb - Murata TZY2 -0 -2 -2 -Capacitor_SMD -C_Trimmer_Sprague-Goodman_SGC3 -trimmer capacitor SMD horizontal, http://media.wix.com/ugd/d86717_38d9821e12823a7aa9cef38c6c2a73cc.pdf - Sprague Goodman SGC3 -0 -2 -2 -Capacitor_SMD -C_Trimmer_Voltronics_JN -trimmer capacitor SMD horizontal, http://www.knowlescapacitors.com/File%20Library/Voltronics/English/GlobalNavigation/Products/Trimmer%20Capacitors/CerChipTrimCap.pdf - Voltronics JN -0 -2 -2 -Capacitor_SMD -C_Trimmer_Voltronics_JQ -trimmer capacitor SMD horizontal, http://www.knowlescapacitors.com/File%20Library/Voltronics/English/GlobalNavigation/Products/Trimmer%20Capacitors/CerChipTrimCap.pdf - Voltronics JQ -0 -2 -2 -Capacitor_SMD -C_Trimmer_Voltronics_JR -trimmer capacitor SMD horizontal, http://www.knowlescapacitors.com/File%20Library/Voltronics/English/GlobalNavigation/Products/Trimmer%20Capacitors/CerChipTrimCap.pdf - Voltronics JR -0 -2 -2 -Capacitor_SMD -C_Trimmer_Voltronics_JV -trimmer capacitor SMD horizontal, http://www.knowlescapacitors.com/File%20Library/Voltronics/English/GlobalNavigation/Products/Trimmer%20Capacitors/CerChipTrimCap.pdf - Voltronics JV -0 -2 -2 -Capacitor_SMD -C_Trimmer_Voltronics_JZ -trimmer capacitor SMD horizontal, http://www.knowlescapacitors.com/File%20Library/Voltronics/English/GlobalNavigation/Products/Trimmer%20Capacitors/CerChipTrimCap.pdf - Voltronics JR -0 -2 -2 -Capacitor_THT -CP_Axial_L10.0mm_D4.5mm_P15.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=10*4.5mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf -CP Axial series Axial Horizontal pin pitch 15mm length 10mm diameter 4.5mm Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Axial_L10.0mm_D6.0mm_P15.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=10*6mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf -CP Axial series Axial Horizontal pin pitch 15mm length 10mm diameter 6mm Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Axial_L11.0mm_D5.0mm_P18.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=18mm, , length*diameter=11*5mm^2, Electrolytic Capacitor -CP Axial series Axial Horizontal pin pitch 18mm length 11mm diameter 5mm Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Axial_L11.0mm_D6.0mm_P18.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=18mm, , length*diameter=11*6mm^2, Electrolytic Capacitor -CP Axial series Axial Horizontal pin pitch 18mm length 11mm diameter 6mm Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Axial_L11.0mm_D8.0mm_P15.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=11*8mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf -CP Axial series Axial Horizontal pin pitch 15mm length 11mm diameter 8mm Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Axial_L18.0mm_D6.5mm_P25.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=18*6.5mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf -CP Axial series Axial Horizontal pin pitch 25mm length 18mm diameter 6.5mm Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Axial_L18.0mm_D8.0mm_P25.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=18*8mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf -CP Axial series Axial Horizontal pin pitch 25mm length 18mm diameter 8mm Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Axial_L18.0mm_D10.0mm_P25.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=18*10mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf -CP Axial series Axial Horizontal pin pitch 25mm length 18mm diameter 10mm Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Axial_L20.0mm_D10.0mm_P26.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=26mm, , length*diameter=20*10mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf -CP Axial series Axial Horizontal pin pitch 26mm length 20mm diameter 10mm Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Axial_L20.0mm_D13.0mm_P26.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=26mm, , length*diameter=20*13mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf -CP Axial series Axial Horizontal pin pitch 26mm length 20mm diameter 13mm Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Axial_L21.0mm_D8.0mm_P28.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=28mm, , length*diameter=21*8mm^2, Electrolytic Capacitor -CP Axial series Axial Horizontal pin pitch 28mm length 21mm diameter 8mm Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Axial_L25.0mm_D10.0mm_P30.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=30mm, , length*diameter=25*10mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf -CP Axial series Axial Horizontal pin pitch 30mm length 25mm diameter 10mm Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Axial_L26.5mm_D20.0mm_P33.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=33mm, , length*diameter=26.5*20mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf -CP Axial series Axial Horizontal pin pitch 33mm length 26.5mm diameter 20mm Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Axial_L29.0mm_D10.0mm_P35.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=29*10mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf -CP Axial series Axial Horizontal pin pitch 35mm length 29mm diameter 10mm Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Axial_L29.0mm_D13.0mm_P35.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=29*13mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf -CP Axial series Axial Horizontal pin pitch 35mm length 29mm diameter 13mm Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Axial_L29.0mm_D16.0mm_P35.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=29*16mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf -CP Axial series Axial Horizontal pin pitch 35mm length 29mm diameter 16mm Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Axial_L29.0mm_D20.0mm_P35.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=29*20mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf -CP Axial series Axial Horizontal pin pitch 35mm length 29mm diameter 20mm Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Axial_L30.0mm_D10.0mm_P35.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=30*10mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf -CP Axial series Axial Horizontal pin pitch 35mm length 30mm diameter 10mm Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Axial_L30.0mm_D12.5mm_P35.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=30*12.5mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf -CP Axial series Axial Horizontal pin pitch 35mm length 30mm diameter 12.5mm Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Axial_L30.0mm_D15.0mm_P35.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=30*15mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf -CP Axial series Axial Horizontal pin pitch 35mm length 30mm diameter 15mm Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Axial_L30.0mm_D18.0mm_P35.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=30*18mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf -CP Axial series Axial Horizontal pin pitch 35mm length 30mm diameter 18mm Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Axial_L34.5mm_D20.0mm_P41.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=41mm, , length*diameter=34.5*20mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf -CP Axial series Axial Horizontal pin pitch 41mm length 34.5mm diameter 20mm Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Axial_L37.0mm_D13.0mm_P43.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=43mm, , length*diameter=37*13mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf -CP Axial series Axial Horizontal pin pitch 43mm length 37mm diameter 13mm Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Axial_L37.0mm_D16.0mm_P43.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=43mm, , length*diameter=37*16mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf -CP Axial series Axial Horizontal pin pitch 43mm length 37mm diameter 16mm Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Axial_L37.0mm_D20.0mm_P43.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=43mm, , length*diameter=37*20mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf -CP Axial series Axial Horizontal pin pitch 43mm length 37mm diameter 20mm Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Axial_L38.0mm_D18.0mm_P44.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=44mm, , length*diameter=38*18mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf -CP Axial series Axial Horizontal pin pitch 44mm length 38mm diameter 18mm Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Axial_L38.0mm_D21.0mm_P44.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=44mm, , length*diameter=38*21mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf -CP Axial series Axial Horizontal pin pitch 44mm length 38mm diameter 21mm Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Axial_L40.0mm_D16.0mm_P48.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=48mm, , length*diameter=40*16mm^2, Electrolytic Capacitor -CP Axial series Axial Horizontal pin pitch 48mm length 40mm diameter 16mm Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Axial_L42.0mm_D23.0mm_P45.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=45mm, , length*diameter=42*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf -CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 23.0mm Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Axial_L42.0mm_D26.0mm_P45.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=45mm, , length*diameter=42*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf -CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 26mm Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Axial_L42.0mm_D29.0mm_P45.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=45mm, , length*diameter=42*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf -CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 29.0mm Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Axial_L42.0mm_D32.0mm_P45.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=45mm, , length*diameter=42*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf -CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 32.0mm Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Axial_L42.0mm_D35.0mm_P45.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=45mm, , length*diameter=42*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf -CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 35.0mm Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Axial_L42.5mm_D20.0mm_P49.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=49mm, , length*diameter=42.5*20mm^2, Electrolytic Capacitor -CP Axial series Axial Horizontal pin pitch 49mm length 42.5mm diameter 20mm Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Axial_L46.0mm_D20.0mm_P52.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=52mm, , length*diameter=46*20mm^2, Electrolytic Capacitor -CP Axial series Axial Horizontal pin pitch 52mm length 46mm diameter 20mm Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Axial_L55.0mm_D23.0mm_P60.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=60mm, , length*diameter=55*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf -CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 23.0mm Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Axial_L55.0mm_D26.0mm_P60.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=60mm, , length*diameter=55*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf -CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 26mm Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Axial_L55.0mm_D29.0mm_P60.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=60mm, , length*diameter=55*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf -CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 29.0mm Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Axial_L55.0mm_D32.0mm_P60.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=60mm, , length*diameter=55*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf -CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 32.0mm Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Axial_L55.0mm_D35.0mm_P60.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=60mm, , length*diameter=55*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf -CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 35.0mm Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Axial_L67.0mm_D23.0mm_P75.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=75mm, , length*diameter=67*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf -CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 23.0mm Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Axial_L67.0mm_D26.0mm_P75.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=75mm, , length*diameter=67*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf -CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 26mm Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Axial_L67.0mm_D29.0mm_P75.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=75mm, , length*diameter=67*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf -CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 29.0mm Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Axial_L67.0mm_D32.0mm_P75.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=75mm, , length*diameter=67*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf -CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 32.0mm Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Axial_L67.0mm_D35.0mm_P75.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=75mm, , length*diameter=67*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf -CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 35.0mm Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Axial_L80.0mm_D23.0mm_P85.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=85mm, , length*diameter=80*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf -CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 23.0mm Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Axial_L80.0mm_D26.0mm_P85.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=85mm, , length*diameter=80*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf -CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 26mm Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Axial_L80.0mm_D29.0mm_P85.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=85mm, , length*diameter=80*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf -CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 29.0mm Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Axial_L80.0mm_D32.0mm_P85.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=85mm, , length*diameter=80*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf -CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 32.0mm Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Axial_L80.0mm_D35.0mm_P85.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=85mm, , length*diameter=80*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf -CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 35.0mm Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Axial_L93.0mm_D23.0mm_P100.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=100mm, , length*diameter=93*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf -CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 23.0mm Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Axial_L93.0mm_D26.0mm_P100.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=100mm, , length*diameter=93*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf -CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 26mm Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Axial_L93.0mm_D29.0mm_P100.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=100mm, , length*diameter=93*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf -CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 29.0mm Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Axial_L93.0mm_D32.0mm_P100.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=100mm, , length*diameter=93*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf -CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 32.0mm Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Axial_L93.0mm_D35.0mm_P100.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=100mm, , length*diameter=93*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf -CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 35.0mm Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Radial_D4.0mm_P1.50mm -CP, Radial series, Radial, pin pitch=1.50mm, , diameter=4mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 1.50mm diameter 4mm Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Radial_D4.0mm_P2.00mm -CP, Radial series, Radial, pin pitch=2.00mm, , diameter=4mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 2.00mm diameter 4mm Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Radial_D5.0mm_P2.00mm -CP, Radial series, Radial, pin pitch=2.00mm, , diameter=5mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 2.00mm diameter 5mm Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Radial_D5.0mm_P2.50mm -CP, Radial series, Radial, pin pitch=2.50mm, , diameter=5mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 2.50mm diameter 5mm Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Radial_D6.3mm_P2.50mm -CP, Radial series, Radial, pin pitch=2.50mm, , diameter=6.3mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 2.50mm diameter 6.3mm Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Radial_D7.5mm_P2.50mm -CP, Radial series, Radial, pin pitch=2.50mm, , diameter=7.5mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 2.50mm diameter 7.5mm Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Radial_D8.0mm_P2.50mm -CP, Radial series, Radial, pin pitch=2.50mm, , diameter=8mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 2.50mm diameter 8mm Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Radial_D8.0mm_P3.50mm -CP, Radial series, Radial, pin pitch=3.50mm, , diameter=8mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 3.50mm diameter 8mm Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Radial_D8.0mm_P3.80mm -CP, Radial series, Radial, pin pitch=3.80mm, , diameter=8mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 3.80mm diameter 8mm Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Radial_D8.0mm_P5.00mm -CP, Radial series, Radial, pin pitch=5.00mm, , diameter=8mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 5.00mm diameter 8mm Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Radial_D10.0mm_P2.50mm -CP, Radial series, Radial, pin pitch=2.50mm, , diameter=10mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 2.50mm diameter 10mm Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Radial_D10.0mm_P2.50mm_P5.00mm -CP, Radial series, Radial, pin pitch=2.50mm 5.00mm, , diameter=10mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 2.50mm 5.00mm diameter 10mm Electrolytic Capacitor -0 -4 -2 -Capacitor_THT -CP_Radial_D10.0mm_P3.50mm -CP, Radial series, Radial, pin pitch=3.50mm, , diameter=10mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 3.50mm diameter 10mm Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Radial_D10.0mm_P3.80mm -CP, Radial series, Radial, pin pitch=3.80mm, , diameter=10mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 3.80mm diameter 10mm Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Radial_D10.0mm_P5.00mm -CP, Radial series, Radial, pin pitch=5.00mm, , diameter=10mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 5.00mm diameter 10mm Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Radial_D10.0mm_P5.00mm_P7.50mm -CP, Radial series, Radial, pin pitch=5.00mm 7.50mm, , diameter=10mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 5.00mm 7.50mm diameter 10mm Electrolytic Capacitor -0 -4 -2 -Capacitor_THT -CP_Radial_D10.0mm_P7.50mm -CP, Radial series, Radial, pin pitch=7.50mm, , diameter=10mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 7.50mm diameter 10mm Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Radial_D12.5mm_P2.50mm -CP, Radial series, Radial, pin pitch=2.50mm, , diameter=12.5mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 2.50mm diameter 12.5mm Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Radial_D12.5mm_P5.00mm -CP, Radial series, Radial, pin pitch=5.00mm, , diameter=12.5mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 5.00mm diameter 12.5mm Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Radial_D12.5mm_P7.50mm -CP, Radial series, Radial, pin pitch=7.50mm, , diameter=12.5mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 7.50mm diameter 12.5mm Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Radial_D13.0mm_P2.50mm -CP, Radial series, Radial, pin pitch=2.50mm, , diameter=13mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 2.50mm diameter 13mm Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Radial_D13.0mm_P5.00mm -CP, Radial series, Radial, pin pitch=5.00mm, , diameter=13mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 5.00mm diameter 13mm Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Radial_D13.0mm_P7.50mm -CP, Radial series, Radial, pin pitch=7.50mm, , diameter=13mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 7.50mm diameter 13mm Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Radial_D14.0mm_P5.00mm -CP, Radial series, Radial, pin pitch=5.00mm, , diameter=14mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 5.00mm diameter 14mm Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Radial_D14.0mm_P7.50mm -CP, Radial series, Radial, pin pitch=7.50mm, , diameter=14mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 7.50mm diameter 14mm Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Radial_D16.0mm_P7.50mm -CP, Radial series, Radial, pin pitch=7.50mm, , diameter=16mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 7.50mm diameter 16mm Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Radial_D17.0mm_P7.50mm -CP, Radial series, Radial, pin pitch=7.50mm, , diameter=17mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 7.50mm diameter 17mm Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Radial_D18.0mm_P7.50mm -CP, Radial series, Radial, pin pitch=7.50mm, , diameter=18mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 7.50mm diameter 18mm Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Radial_D22.0mm_P10.00mm_3pin_SnapIn -CP, Radial series, Radial, pin pitch=10.00mm, diameter=22mm, height=40mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf -CP Radial series Radial pin pitch 10.00mm diameter 22mm height 40mm Electrolytic Capacitor -0 -3 -2 -Capacitor_THT -CP_Radial_D22.0mm_P10.00mm_SnapIn -CP, Radial series, Radial, pin pitch=10.00mm, , diameter=22mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf -CP Radial series Radial pin pitch 10.00mm diameter 22mm Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Radial_D24.0mm_P10.00mm_3pin_SnapIn -CP, Radial series, Radial, pin pitch=10.00mm, diameter=24mm, height=40mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf -CP Radial series Radial pin pitch 10.00mm diameter 24mm height 40mm Electrolytic Capacitor -0 -3 -2 -Capacitor_THT -CP_Radial_D24.0mm_P10.00mm_SnapIn -CP, Radial series, Radial, pin pitch=10.00mm, , diameter=24mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf -CP Radial series Radial pin pitch 10.00mm diameter 24mm Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Radial_D25.0mm_P10.00mm_3pin_SnapIn -CP, Radial series, Radial, pin pitch=10.00mm, diameter=25mm, height=45mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf -CP Radial series Radial pin pitch 10.00mm diameter 25mm height 45mm Electrolytic Capacitor -0 -3 -2 -Capacitor_THT -CP_Radial_D25.0mm_P10.00mm_SnapIn -CP, Radial series, Radial, pin pitch=10.00mm, , diameter=25mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf -CP Radial series Radial pin pitch 10.00mm diameter 25mm Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Radial_D26.0mm_P10.00mm_3pin_SnapIn -CP, Radial series, Radial, pin pitch=10.00mm, diameter=26mm, height=45mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf -CP Radial series Radial pin pitch 10.00mm diameter 26mm height 45mm Electrolytic Capacitor -0 -3 -2 -Capacitor_THT -CP_Radial_D26.0mm_P10.00mm_SnapIn -CP, Radial series, Radial, pin pitch=10.00mm, , diameter=26mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf -CP Radial series Radial pin pitch 10.00mm diameter 26mm Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Radial_D30.0mm_P10.00mm_3pin_SnapIn -CP, Radial series, Radial, pin pitch=10.00mm, diameter=30mm, height=45mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf -CP Radial series Radial pin pitch 10.00mm diameter 30mm height 45mm Electrolytic Capacitor -0 -3 -2 -Capacitor_THT -CP_Radial_D30.0mm_P10.00mm_SnapIn -CP, Radial series, Radial, pin pitch=10.00mm, , diameter=30mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf -CP Radial series Radial pin pitch 10.00mm diameter 30mm Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Radial_D35.0mm_P10.00mm_3pin_SnapIn -CP, Radial series, Radial, pin pitch=10.00mm, diameter=35mm, height=50mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf -CP Radial series Radial pin pitch 10.00mm diameter 35mm height 50mm Electrolytic Capacitor -0 -3 -2 -Capacitor_THT -CP_Radial_D35.0mm_P10.00mm_SnapIn -CP, Radial series, Radial, pin pitch=10.00mm, , diameter=35mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf -CP Radial series Radial pin pitch 10.00mm diameter 35mm Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Radial_D40.0mm_P10.00mm_3pin_SnapIn -CP, Radial series, Radial, pin pitch=10.00mm, diameter=40mm, height=50mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf -CP Radial series Radial pin pitch 10.00mm diameter 40mm height 50mm Electrolytic Capacitor -0 -3 -2 -Capacitor_THT -CP_Radial_D40.0mm_P10.00mm_SnapIn -CP, Radial series, Radial, pin pitch=10.00mm, , diameter=40mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf -CP Radial series Radial pin pitch 10.00mm diameter 40mm Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Radial_Tantal_D4.5mm_P2.50mm -CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=4.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf -CP Radial_Tantal series Radial pin pitch 2.50mm diameter 4.5mm Tantal Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Radial_Tantal_D4.5mm_P5.00mm -CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=4.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf -CP Radial_Tantal series Radial pin pitch 5.00mm diameter 4.5mm Tantal Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Radial_Tantal_D5.0mm_P2.50mm -CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=5.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf -CP Radial_Tantal series Radial pin pitch 2.50mm diameter 5.0mm Tantal Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Radial_Tantal_D5.0mm_P5.00mm -CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=5.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf -CP Radial_Tantal series Radial pin pitch 5.00mm diameter 5.0mm Tantal Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Radial_Tantal_D5.5mm_P2.50mm -CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=5.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf -CP Radial_Tantal series Radial pin pitch 2.50mm diameter 5.5mm Tantal Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Radial_Tantal_D5.5mm_P5.00mm -CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=5.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf -CP Radial_Tantal series Radial pin pitch 5.00mm diameter 5.5mm Tantal Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Radial_Tantal_D6.0mm_P2.50mm -CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=6.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf -CP Radial_Tantal series Radial pin pitch 2.50mm diameter 6.0mm Tantal Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Radial_Tantal_D6.0mm_P5.00mm -CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=6.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf -CP Radial_Tantal series Radial pin pitch 5.00mm diameter 6.0mm Tantal Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Radial_Tantal_D7.0mm_P2.50mm -CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=7.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf -CP Radial_Tantal series Radial pin pitch 2.50mm diameter 7.0mm Tantal Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Radial_Tantal_D7.0mm_P5.00mm -CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=7.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf -CP Radial_Tantal series Radial pin pitch 5.00mm diameter 7.0mm Tantal Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Radial_Tantal_D8.0mm_P2.50mm -CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=8.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf -CP Radial_Tantal series Radial pin pitch 2.50mm diameter 8.0mm Tantal Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Radial_Tantal_D8.0mm_P5.00mm -CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=8.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf -CP Radial_Tantal series Radial pin pitch 5.00mm diameter 8.0mm Tantal Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Radial_Tantal_D9.0mm_P2.50mm -CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=9.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf -CP Radial_Tantal series Radial pin pitch 2.50mm diameter 9.0mm Tantal Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Radial_Tantal_D9.0mm_P5.00mm -CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=9.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf -CP Radial_Tantal series Radial pin pitch 5.00mm diameter 9.0mm Tantal Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Radial_Tantal_D10.5mm_P2.50mm -CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=10.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf -CP Radial_Tantal series Radial pin pitch 2.50mm diameter 10.5mm Tantal Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -CP_Radial_Tantal_D10.5mm_P5.00mm -CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=10.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf -CP Radial_Tantal series Radial pin pitch 5.00mm diameter 10.5mm Tantal Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -C_Axial_L3.8mm_D2.6mm_P7.50mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf -C Axial series Axial Horizontal pin pitch 7.5mm length 3.8mm diameter 2.6mm -0 -2 -2 -Capacitor_THT -C_Axial_L3.8mm_D2.6mm_P10.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=10mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf -C Axial series Axial Horizontal pin pitch 10mm length 3.8mm diameter 2.6mm -0 -2 -2 -Capacitor_THT -C_Axial_L3.8mm_D2.6mm_P12.50mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=12.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf -C Axial series Axial Horizontal pin pitch 12.5mm length 3.8mm diameter 2.6mm -0 -2 -2 -Capacitor_THT -C_Axial_L3.8mm_D2.6mm_P15.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf -C Axial series Axial Horizontal pin pitch 15mm length 3.8mm diameter 2.6mm -0 -2 -2 -Capacitor_THT -C_Axial_L5.1mm_D3.1mm_P7.50mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=5.1*3.1mm^2, http://www.vishay.com/docs/45231/arseries.pdf -C Axial series Axial Horizontal pin pitch 7.5mm length 5.1mm diameter 3.1mm -0 -2 -2 -Capacitor_THT -C_Axial_L5.1mm_D3.1mm_P10.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=10mm, , length*diameter=5.1*3.1mm^2, http://www.vishay.com/docs/45231/arseries.pdf -C Axial series Axial Horizontal pin pitch 10mm length 5.1mm diameter 3.1mm -0 -2 -2 -Capacitor_THT -C_Axial_L5.1mm_D3.1mm_P12.50mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=12.5mm, , length*diameter=5.1*3.1mm^2, http://www.vishay.com/docs/45231/arseries.pdf -C Axial series Axial Horizontal pin pitch 12.5mm length 5.1mm diameter 3.1mm -0 -2 -2 -Capacitor_THT -C_Axial_L5.1mm_D3.1mm_P15.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=5.1*3.1mm^2, http://www.vishay.com/docs/45231/arseries.pdf -C Axial series Axial Horizontal pin pitch 15mm length 5.1mm diameter 3.1mm -0 -2 -2 -Capacitor_THT -C_Axial_L12.0mm_D6.5mm_P15.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=12*6.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf -C Axial series Axial Horizontal pin pitch 15mm length 12mm diameter 6.5mm -0 -2 -2 -Capacitor_THT -C_Axial_L12.0mm_D6.5mm_P20.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*6.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf -C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 6.5mm -0 -2 -2 -Capacitor_THT -C_Axial_L12.0mm_D7.5mm_P15.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=12*7.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf -C Axial series Axial Horizontal pin pitch 15mm length 12mm diameter 7.5mm -0 -2 -2 -Capacitor_THT -C_Axial_L12.0mm_D7.5mm_P20.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*7.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf -C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 7.5mm -0 -2 -2 -Capacitor_THT -C_Axial_L12.0mm_D8.5mm_P15.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=12*8.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf -C Axial series Axial Horizontal pin pitch 15mm length 12mm diameter 8.5mm -0 -2 -2 -Capacitor_THT -C_Axial_L12.0mm_D8.5mm_P20.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*8.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf -C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 8.5mm -0 -2 -2 -Capacitor_THT -C_Axial_L12.0mm_D9.5mm_P15.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=12*9.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf -C Axial series Axial Horizontal pin pitch 15mm length 12mm diameter 9.5mm -0 -2 -2 -Capacitor_THT -C_Axial_L12.0mm_D9.5mm_P20.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*9.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf -C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 9.5mm -0 -2 -2 -Capacitor_THT -C_Axial_L12.0mm_D10.5mm_P15.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=12*10.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf -C Axial series Axial Horizontal pin pitch 15mm length 12mm diameter 10.5mm -0 -2 -2 -Capacitor_THT -C_Axial_L12.0mm_D10.5mm_P20.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*10.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf -C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 10.5mm -0 -2 -2 -Capacitor_THT -C_Axial_L17.0mm_D6.5mm_P20.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=17*6.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf -C Axial series Axial Horizontal pin pitch 20mm length 17mm diameter 6.5mm -0 -2 -2 -Capacitor_THT -C_Axial_L17.0mm_D6.5mm_P25.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=17*6.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf -C Axial series Axial Horizontal pin pitch 25mm length 17mm diameter 6.5mm -0 -2 -2 -Capacitor_THT -C_Axial_L17.0mm_D7.0mm_P20.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=17*7.0mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf -C Axial series Axial Horizontal pin pitch 20mm length 17mm diameter 7.0mm -0 -2 -2 -Capacitor_THT -C_Axial_L17.0mm_D7.0mm_P25.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=17*7.0mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf -C Axial series Axial Horizontal pin pitch 25mm length 17mm diameter 7.0mm -0 -2 -2 -Capacitor_THT -C_Axial_L19.0mm_D7.5mm_P25.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=19*7.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf -C Axial series Axial Horizontal pin pitch 25mm length 19mm diameter 7.5mm -0 -2 -2 -Capacitor_THT -C_Axial_L19.0mm_D8.0mm_P25.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=19*8.0mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf -C Axial series Axial Horizontal pin pitch 25mm length 19mm diameter 8.0mm -0 -2 -2 -Capacitor_THT -C_Axial_L19.0mm_D9.0mm_P25.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=19*9mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf -C Axial series Axial Horizontal pin pitch 25mm length 19mm diameter 9mm -0 -2 -2 -Capacitor_THT -C_Axial_L19.0mm_D9.5mm_P25.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=19*9.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf -C Axial series Axial Horizontal pin pitch 25mm length 19mm diameter 9.5mm -0 -2 -2 -Capacitor_THT -C_Axial_L22.0mm_D9.5mm_P27.50mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=27.5mm, , length*diameter=22*9.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf -C Axial series Axial Horizontal pin pitch 27.5mm length 22mm diameter 9.5mm -0 -2 -2 -Capacitor_THT -C_Axial_L22.0mm_D10.5mm_P27.50mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=27.5mm, , length*diameter=22*10.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf -C Axial series Axial Horizontal pin pitch 27.5mm length 22mm diameter 10.5mm -0 -2 -2 -Capacitor_THT -C_Disc_D3.0mm_W1.6mm_P2.50mm -C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3.0*1.6mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf -C Disc series Radial pin pitch 2.50mm diameter 3.0mm width 1.6mm Capacitor -0 -2 -2 -Capacitor_THT -C_Disc_D3.0mm_W2.0mm_P2.50mm -C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3*2mm^2, Capacitor -C Disc series Radial pin pitch 2.50mm diameter 3mm width 2mm Capacitor -0 -2 -2 -Capacitor_THT -C_Disc_D3.4mm_W2.1mm_P2.50mm -C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3.4*2.1mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf -C Disc series Radial pin pitch 2.50mm diameter 3.4mm width 2.1mm Capacitor -0 -2 -2 -Capacitor_THT -C_Disc_D3.8mm_W2.6mm_P2.50mm -C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3.8*2.6mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf -C Disc series Radial pin pitch 2.50mm diameter 3.8mm width 2.6mm Capacitor -0 -2 -2 -Capacitor_THT -C_Disc_D4.3mm_W1.9mm_P5.00mm -C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=4.3*1.9mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf -C Disc series Radial pin pitch 5.00mm diameter 4.3mm width 1.9mm Capacitor -0 -2 -2 -Capacitor_THT -C_Disc_D4.7mm_W2.5mm_P5.00mm -C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=4.7*2.5mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf -C Disc series Radial pin pitch 5.00mm diameter 4.7mm width 2.5mm Capacitor -0 -2 -2 -Capacitor_THT -C_Disc_D5.0mm_W2.5mm_P2.50mm -C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=5*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf -C Disc series Radial pin pitch 2.50mm diameter 5mm width 2.5mm Capacitor -0 -2 -2 -Capacitor_THT -C_Disc_D5.0mm_W2.5mm_P5.00mm -C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=5*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf -C Disc series Radial pin pitch 5.00mm diameter 5mm width 2.5mm Capacitor -0 -2 -2 -Capacitor_THT -C_Disc_D5.1mm_W3.2mm_P5.00mm -C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=5.1*3.2mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf -C Disc series Radial pin pitch 5.00mm diameter 5.1mm width 3.2mm Capacitor -0 -2 -2 -Capacitor_THT -C_Disc_D6.0mm_W2.5mm_P5.00mm -C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=6*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf -C Disc series Radial pin pitch 5.00mm diameter 6mm width 2.5mm Capacitor -0 -2 -2 -Capacitor_THT -C_Disc_D6.0mm_W4.4mm_P5.00mm -C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=6*4.4mm^2, Capacitor -C Disc series Radial pin pitch 5.00mm diameter 6mm width 4.4mm Capacitor -0 -2 -2 -Capacitor_THT -C_Disc_D7.0mm_W2.5mm_P5.00mm -C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=7*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf -C Disc series Radial pin pitch 5.00mm diameter 7mm width 2.5mm Capacitor -0 -2 -2 -Capacitor_THT -C_Disc_D7.5mm_W2.5mm_P5.00mm -C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=7.5*2.5mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf -C Disc series Radial pin pitch 5.00mm diameter 7.5mm width 2.5mm Capacitor -0 -2 -2 -Capacitor_THT -C_Disc_D7.5mm_W4.4mm_P5.00mm -C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=7.5*4.4mm^2, Capacitor -C Disc series Radial pin pitch 5.00mm diameter 7.5mm width 4.4mm Capacitor -0 -2 -2 -Capacitor_THT -C_Disc_D7.5mm_W5.0mm_P5.00mm -C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=7.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf -C Disc series Radial pin pitch 5.00mm diameter 7.5mm width 5.0mm Capacitor -0 -2 -2 -Capacitor_THT -C_Disc_D7.5mm_W5.0mm_P7.50mm -C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=7.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf -C Disc series Radial pin pitch 7.50mm diameter 7.5mm width 5.0mm Capacitor -0 -2 -2 -Capacitor_THT -C_Disc_D7.5mm_W5.0mm_P10.00mm -C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=7.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf -C Disc series Radial pin pitch 10.00mm diameter 7.5mm width 5.0mm Capacitor -0 -2 -2 -Capacitor_THT -C_Disc_D8.0mm_W2.5mm_P5.00mm -C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=8*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf -C Disc series Radial pin pitch 5.00mm diameter 8mm width 2.5mm Capacitor -0 -2 -2 -Capacitor_THT -C_Disc_D8.0mm_W5.0mm_P5.00mm -C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=8*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf -C Disc series Radial pin pitch 5.00mm diameter 8mm width 5.0mm Capacitor -0 -2 -2 -Capacitor_THT -C_Disc_D8.0mm_W5.0mm_P7.50mm -C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=8*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf -C Disc series Radial pin pitch 7.50mm diameter 8mm width 5.0mm Capacitor -0 -2 -2 -Capacitor_THT -C_Disc_D8.0mm_W5.0mm_P10.00mm -C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=8*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf -C Disc series Radial pin pitch 10.00mm diameter 8mm width 5.0mm Capacitor -0 -2 -2 -Capacitor_THT -C_Disc_D9.0mm_W2.5mm_P5.00mm -C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=9*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf -C Disc series Radial pin pitch 5.00mm diameter 9mm width 2.5mm Capacitor -0 -2 -2 -Capacitor_THT -C_Disc_D9.0mm_W5.0mm_P5.00mm -C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=9*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf -C Disc series Radial pin pitch 5.00mm diameter 9mm width 5.0mm Capacitor -0 -2 -2 -Capacitor_THT -C_Disc_D9.0mm_W5.0mm_P7.50mm -C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=9*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf -C Disc series Radial pin pitch 7.50mm diameter 9mm width 5.0mm Capacitor -0 -2 -2 -Capacitor_THT -C_Disc_D9.0mm_W5.0mm_P10.00mm -C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=9*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf -C Disc series Radial pin pitch 10.00mm diameter 9mm width 5.0mm Capacitor -0 -2 -2 -Capacitor_THT -C_Disc_D10.0mm_W2.5mm_P5.00mm -C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=10*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf -C Disc series Radial pin pitch 5.00mm diameter 10mm width 2.5mm Capacitor -0 -2 -2 -Capacitor_THT -C_Disc_D10.5mm_W5.0mm_P5.00mm -C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=10.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf -C Disc series Radial pin pitch 5.00mm diameter 10.5mm width 5.0mm Capacitor -0 -2 -2 -Capacitor_THT -C_Disc_D10.5mm_W5.0mm_P7.50mm -C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=10.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf -C Disc series Radial pin pitch 7.50mm diameter 10.5mm width 5.0mm Capacitor -0 -2 -2 -Capacitor_THT -C_Disc_D10.5mm_W5.0mm_P10.00mm -C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=10.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf -C Disc series Radial pin pitch 10.00mm diameter 10.5mm width 5.0mm Capacitor -0 -2 -2 -Capacitor_THT -C_Disc_D11.0mm_W5.0mm_P5.00mm -C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=11*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf -C Disc series Radial pin pitch 5.00mm diameter 11mm width 5.0mm Capacitor -0 -2 -2 -Capacitor_THT -C_Disc_D11.0mm_W5.0mm_P7.50mm -C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=11*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf -C Disc series Radial pin pitch 7.50mm diameter 11mm width 5.0mm Capacitor -0 -2 -2 -Capacitor_THT -C_Disc_D11.0mm_W5.0mm_P10.00mm -C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=11*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf -C Disc series Radial pin pitch 10.00mm diameter 11mm width 5.0mm Capacitor -0 -2 -2 -Capacitor_THT -C_Disc_D12.0mm_W4.4mm_P7.75mm -C, Disc series, Radial, pin pitch=7.75mm, , diameter*width=12*4.4mm^2, Capacitor -C Disc series Radial pin pitch 7.75mm diameter 12mm width 4.4mm Capacitor -0 -2 -2 -Capacitor_THT -C_Disc_D12.5mm_W5.0mm_P7.50mm -C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=12.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf -C Disc series Radial pin pitch 7.50mm diameter 12.5mm width 5.0mm Capacitor -0 -2 -2 -Capacitor_THT -C_Disc_D12.5mm_W5.0mm_P10.00mm -C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=12.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf -C Disc series Radial pin pitch 10.00mm diameter 12.5mm width 5.0mm Capacitor -0 -2 -2 -Capacitor_THT -C_Disc_D14.5mm_W5.0mm_P7.50mm -C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=14.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf -C Disc series Radial pin pitch 7.50mm diameter 14.5mm width 5.0mm Capacitor -0 -2 -2 -Capacitor_THT -C_Disc_D14.5mm_W5.0mm_P10.00mm -C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=14.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf -C Disc series Radial pin pitch 10.00mm diameter 14.5mm width 5.0mm Capacitor -0 -2 -2 -Capacitor_THT -C_Disc_D16.0mm_W5.0mm_P7.50mm -C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=16.0*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf -C Disc series Radial pin pitch 7.50mm diameter 16.0mm width 5.0mm Capacitor -0 -2 -2 -Capacitor_THT -C_Disc_D16.0mm_W5.0mm_P10.00mm -C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=16.0*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf -C Disc series Radial pin pitch 10.00mm diameter 16.0mm width 5.0mm Capacitor -0 -2 -2 -Capacitor_THT -C_Radial_D4.0mm_H5.0mm_P1.50mm -C, Radial series, Radial, pin pitch=1.50mm, diameter=4mm, height=5mm, Non-Polar Electrolytic Capacitor -C Radial series Radial pin pitch 1.50mm diameter 4mm height 5mm Non-Polar Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -C_Radial_D4.0mm_H7.0mm_P1.50mm -C, Radial series, Radial, pin pitch=1.50mm, diameter=4mm, height=7mm, Non-Polar Electrolytic Capacitor -C Radial series Radial pin pitch 1.50mm diameter 4mm height 7mm Non-Polar Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -C_Radial_D5.0mm_H5.0mm_P2.00mm -C, Radial series, Radial, pin pitch=2.00mm, diameter=5mm, height=5mm, Non-Polar Electrolytic Capacitor -C Radial series Radial pin pitch 2.00mm diameter 5mm height 5mm Non-Polar Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -C_Radial_D5.0mm_H7.0mm_P2.00mm -C, Radial series, Radial, pin pitch=2.00mm, diameter=5mm, height=7mm, Non-Polar Electrolytic Capacitor -C Radial series Radial pin pitch 2.00mm diameter 5mm height 7mm Non-Polar Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -C_Radial_D5.0mm_H11.0mm_P2.00mm -C, Radial series, Radial, pin pitch=2.00mm, diameter=5mm, height=11mm, Non-Polar Electrolytic Capacitor -C Radial series Radial pin pitch 2.00mm diameter 5mm height 11mm Non-Polar Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -C_Radial_D6.3mm_H5.0mm_P2.50mm -C, Radial series, Radial, pin pitch=2.50mm, diameter=6.3mm, height=5mm, Non-Polar Electrolytic Capacitor -C Radial series Radial pin pitch 2.50mm diameter 6.3mm height 5mm Non-Polar Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -C_Radial_D6.3mm_H7.0mm_P2.50mm -C, Radial series, Radial, pin pitch=2.50mm, diameter=6.3mm, height=7mm, Non-Polar Electrolytic Capacitor -C Radial series Radial pin pitch 2.50mm diameter 6.3mm height 7mm Non-Polar Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -C_Radial_D6.3mm_H11.0mm_P2.50mm -C, Radial series, Radial, pin pitch=2.50mm, diameter=6.3mm, height=11mm, Non-Polar Electrolytic Capacitor -C Radial series Radial pin pitch 2.50mm diameter 6.3mm height 11mm Non-Polar Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -C_Radial_D8.0mm_H7.0mm_P3.50mm -C, Radial series, Radial, pin pitch=3.50mm, diameter=8mm, height=7mm, Non-Polar Electrolytic Capacitor -C Radial series Radial pin pitch 3.50mm diameter 8mm height 7mm Non-Polar Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -C_Radial_D8.0mm_H11.5mm_P3.50mm -C, Radial series, Radial, pin pitch=3.50mm, diameter=8mm, height=11.5mm, Non-Polar Electrolytic Capacitor -C Radial series Radial pin pitch 3.50mm diameter 8mm height 11.5mm Non-Polar Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -C_Radial_D10.0mm_H12.5mm_P5.00mm -C, Radial series, Radial, pin pitch=5.00mm, diameter=10mm, height=12.5mm, Non-Polar Electrolytic Capacitor -C Radial series Radial pin pitch 5.00mm diameter 10mm height 12.5mm Non-Polar Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -C_Radial_D10.0mm_H16.0mm_P5.00mm -C, Radial series, Radial, pin pitch=5.00mm, diameter=10mm, height=16mm, Non-Polar Electrolytic Capacitor -C Radial series Radial pin pitch 5.00mm diameter 10mm height 16mm Non-Polar Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -C_Radial_D10.0mm_H20.0mm_P5.00mm -C, Radial series, Radial, pin pitch=5.00mm, diameter=10mm, height=20mm, Non-Polar Electrolytic Capacitor -C Radial series Radial pin pitch 5.00mm diameter 10mm height 20mm Non-Polar Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -C_Radial_D12.5mm_H20.0mm_P5.00mm -C, Radial series, Radial, pin pitch=5.00mm, diameter=12.5mm, height=20mm, Non-Polar Electrolytic Capacitor -C Radial series Radial pin pitch 5.00mm diameter 12.5mm height 20mm Non-Polar Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -C_Radial_D12.5mm_H25.0mm_P5.00mm -C, Radial series, Radial, pin pitch=5.00mm, diameter=12.5mm, height=25mm, Non-Polar Electrolytic Capacitor -C Radial series Radial pin pitch 5.00mm diameter 12.5mm height 25mm Non-Polar Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -C_Radial_D16.0mm_H25.0mm_P7.50mm -C, Radial series, Radial, pin pitch=7.50mm, diameter=16mm, height=25mm, Non-Polar Electrolytic Capacitor -C Radial series Radial pin pitch 7.50mm diameter 16mm height 25mm Non-Polar Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -C_Radial_D16.0mm_H31.5mm_P7.50mm -C, Radial series, Radial, pin pitch=7.50mm, diameter=16mm, height=31.5mm, Non-Polar Electrolytic Capacitor -C Radial series Radial pin pitch 7.50mm diameter 16mm height 31.5mm Non-Polar Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -C_Radial_D18.0mm_H35.5mm_P7.50mm -C, Radial series, Radial, pin pitch=7.50mm, diameter=18mm, height=35.5mm, Non-Polar Electrolytic Capacitor -C Radial series Radial pin pitch 7.50mm diameter 18mm height 35.5mm Non-Polar Electrolytic Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L4.0mm_W2.5mm_P2.50mm -C, Rect series, Radial, pin pitch=2.50mm, , length*width=4*2.5mm^2, Capacitor -C Rect series Radial pin pitch 2.50mm length 4mm width 2.5mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L4.6mm_W2.0mm_P2.50mm_MKS02_FKP02 -C, Rect series, Radial, pin pitch=2.50mm, , length*width=4.6*2mm^2, Capacitor, http://www.wima.de/DE/WIMA_MKS_02.pdf -C Rect series Radial pin pitch 2.50mm length 4.6mm width 2mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L4.6mm_W3.0mm_P2.50mm_MKS02_FKP02 -C, Rect series, Radial, pin pitch=2.50mm, , length*width=4.6*3.0mm^2, Capacitor, http://www.wima.de/DE/WIMA_MKS_02.pdf -C Rect series Radial pin pitch 2.50mm length 4.6mm width 3.0mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L4.6mm_W3.8mm_P2.50mm_MKS02_FKP02 -C, Rect series, Radial, pin pitch=2.50mm, , length*width=4.6*3.8mm^2, Capacitor, http://www.wima.de/DE/WIMA_MKS_02.pdf -C Rect series Radial pin pitch 2.50mm length 4.6mm width 3.8mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L4.6mm_W4.6mm_P2.50mm_MKS02_FKP02 -C, Rect series, Radial, pin pitch=2.50mm, , length*width=4.6*4.6mm^2, Capacitor, http://www.wima.de/DE/WIMA_MKS_02.pdf -C Rect series Radial pin pitch 2.50mm length 4.6mm width 4.6mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L4.6mm_W5.5mm_P2.50mm_MKS02_FKP02 -C, Rect series, Radial, pin pitch=2.50mm, , length*width=4.6*5.5mm^2, Capacitor, http://www.wima.de/DE/WIMA_MKS_02.pdf -C Rect series Radial pin pitch 2.50mm length 4.6mm width 5.5mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L7.0mm_W2.0mm_P5.00mm -C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*2mm^2, Capacitor -C Rect series Radial pin pitch 5.00mm length 7mm width 2mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L7.0mm_W2.5mm_P5.00mm -C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*2.5mm^2, Capacitor -C Rect series Radial pin pitch 5.00mm length 7mm width 2.5mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L7.0mm_W3.5mm_P2.50mm_P5.00mm -C, Rect series, Radial, pin pitch=2.50mm 5.00mm, , length*width=7*3.5mm^2, Capacitor -C Rect series Radial pin pitch 2.50mm 5.00mm length 7mm width 3.5mm Capacitor -0 -4 -2 -Capacitor_THT -C_Rect_L7.0mm_W3.5mm_P5.00mm -C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*3.5mm^2, Capacitor -C Rect series Radial pin pitch 5.00mm length 7mm width 3.5mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L7.0mm_W4.5mm_P5.00mm -C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*4.5mm^2, Capacitor -C Rect series Radial pin pitch 5.00mm length 7mm width 4.5mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L7.0mm_W6.0mm_P5.00mm -C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*6mm^2, Capacitor -C Rect series Radial pin pitch 5.00mm length 7mm width 6mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L7.0mm_W6.5mm_P5.00mm -C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*6.5mm^2, Capacitor -C Rect series Radial pin pitch 5.00mm length 7mm width 6.5mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L7.2mm_W2.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2 -C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*2.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf -C Rect series Radial pin pitch 5.00mm length 7.2mm width 2.5mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L7.2mm_W3.0mm_P5.00mm_FKS2_FKP2_MKS2_MKP2 -C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*3.0mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf -C Rect series Radial pin pitch 5.00mm length 7.2mm width 3.0mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L7.2mm_W3.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2 -C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*3.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf -C Rect series Radial pin pitch 5.00mm length 7.2mm width 3.5mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L7.2mm_W4.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2 -C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*4.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf -C Rect series Radial pin pitch 5.00mm length 7.2mm width 4.5mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L7.2mm_W5.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2 -C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*5.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf -C Rect series Radial pin pitch 5.00mm length 7.2mm width 5.5mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L7.2mm_W7.2mm_P5.00mm_FKS2_FKP2_MKS2_MKP2 -C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*7.2mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf -C Rect series Radial pin pitch 5.00mm length 7.2mm width 7.2mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L7.2mm_W8.5mm_P5.00mm_FKP2_FKP2_MKS2_MKP2 -C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*8.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf -C Rect series Radial pin pitch 5.00mm length 7.2mm width 8.5mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L7.2mm_W11.0mm_P5.00mm_FKS2_FKP2_MKS2_MKP2 -C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*11mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf -C Rect series Radial pin pitch 5.00mm length 7.2mm width 11mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L7.5mm_W6.5mm_P5.00mm -C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.5*6.5mm^2, Capacitor -C Rect series Radial pin pitch 5.00mm length 7.5mm width 6.5mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L9.0mm_W2.5mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*2.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 7.50mm length 9mm width 2.5mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L9.0mm_W2.6mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*2.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 7.50mm length 9mm width 2.6mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L9.0mm_W2.7mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*2.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 7.50mm length 9mm width 2.7mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L9.0mm_W3.2mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*3.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 7.50mm length 9mm width 3.2mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L9.0mm_W3.3mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*3.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 7.50mm length 9mm width 3.3mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L9.0mm_W3.4mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*3.4mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 7.50mm length 9mm width 3.4mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L9.0mm_W3.6mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*3.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 7.50mm length 9mm width 3.6mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L9.0mm_W3.8mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*3.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 7.50mm length 9mm width 3.8mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L9.0mm_W3.9mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*3.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 7.50mm length 9mm width 3.9mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L9.0mm_W4.0mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*4.0mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 7.50mm length 9mm width 4.0mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L9.0mm_W4.2mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*4.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 7.50mm length 9mm width 4.2mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L9.0mm_W4.9mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*4.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 7.50mm length 9mm width 4.9mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L9.0mm_W5.1mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*5.1mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 7.50mm length 9mm width 5.1mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L9.0mm_W5.7mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*5.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 7.50mm length 9mm width 5.7mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L9.0mm_W6.4mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*6.4mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 7.50mm length 9mm width 6.4mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L9.0mm_W6.7mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*6.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 7.50mm length 9mm width 6.7mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L9.0mm_W7.7mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*7.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 7.50mm length 9mm width 7.7mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L9.0mm_W8.5mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*8.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 7.50mm length 9mm width 8.5mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L9.0mm_W9.5mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*9.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 7.50mm length 9mm width 9.5mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L9.0mm_W9.8mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*9.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 7.50mm length 9mm width 9.8mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L10.0mm_W2.5mm_P7.50mm_MKS4 -C, Rect series, Radial, pin pitch=7.50mm, , length*width=10*2.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf -C Rect series Radial pin pitch 7.50mm length 10mm width 2.5mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L10.0mm_W3.0mm_P7.50mm_FKS3_FKP3 -C, Rect series, Radial, pin pitch=7.50mm, , length*width=10*3mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf -C Rect series Radial pin pitch 7.50mm length 10mm width 3mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L10.0mm_W3.0mm_P7.50mm_MKS4 -C, Rect series, Radial, pin pitch=7.50mm, , length*width=10*3.0mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf -C Rect series Radial pin pitch 7.50mm length 10mm width 3.0mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L10.0mm_W4.0mm_P7.50mm_FKS3_FKP3 -C, Rect series, Radial, pin pitch=7.50mm, , length*width=10*4mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf -C Rect series Radial pin pitch 7.50mm length 10mm width 4mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L10.0mm_W4.0mm_P7.50mm_MKS4 -C, Rect series, Radial, pin pitch=7.50mm, , length*width=10*4.0mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf -C Rect series Radial pin pitch 7.50mm length 10mm width 4.0mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L10.0mm_W5.0mm_P5.00mm_P7.50mm -C, Rect series, Radial, pin pitch=5.00mm 7.50mm, , length*width=10*5mm^2, Capacitor -C Rect series Radial pin pitch 5.00mm 7.50mm length 10mm width 5mm Capacitor -0 -4 -2 -Capacitor_THT -C_Rect_L10.3mm_W4.5mm_P7.50mm_MKS4 -C, Rect series, Radial, pin pitch=7.50mm, , length*width=10.3*4.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf -C Rect series Radial pin pitch 7.50mm length 10.3mm width 4.5mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L10.3mm_W5.0mm_P7.50mm_MKS4 -C, Rect series, Radial, pin pitch=7.50mm, , length*width=10.3*5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf -C Rect series Radial pin pitch 7.50mm length 10.3mm width 5mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L10.3mm_W5.7mm_P7.50mm_MKS4 -C, Rect series, Radial, pin pitch=7.50mm, , length*width=10.3*5.7mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf -C Rect series Radial pin pitch 7.50mm length 10.3mm width 5.7mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L10.3mm_W7.2mm_P7.50mm_MKS4 -C, Rect series, Radial, pin pitch=7.50mm, , length*width=10.3*7.2mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf -C Rect series Radial pin pitch 7.50mm length 10.3mm width 7.2mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L11.0mm_W2.8mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*2.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 10.00mm length 11.0mm width 2.8mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L11.0mm_W3.4mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*3.4mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 10.00mm length 11.0mm width 3.4mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L11.0mm_W3.5mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*3.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 10.00mm length 11.0mm width 3.5mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L11.0mm_W4.2mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*4.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 10.00mm length 11.0mm width 4.2mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L11.0mm_W4.3mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*4.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 10.00mm length 11.0mm width 4.3mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L11.0mm_W5.1mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*5.1mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 10.00mm length 11.0mm width 5.1mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L11.0mm_W5.3mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*5.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 10.00mm length 11.0mm width 5.3mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L11.0mm_W6.3mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*6.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 10.00mm length 11.0mm width 6.3mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L11.0mm_W6.4mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*6.4mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 10.00mm length 11.0mm width 6.4mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L11.0mm_W7.3mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*7.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 10.00mm length 11.0mm width 7.3mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L11.0mm_W8.8mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*8.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 10.00mm length 11.0mm width 8.8mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L11.5mm_W2.0mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 10.00mm length 11.5mm width 2mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L11.5mm_W2.6mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*2.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 10.00mm length 11.5mm width 2.6mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L11.5mm_W2.8mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*2.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 10.00mm length 11.5mm width 2.8mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L11.5mm_W3.2mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*3.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 10.00mm length 11.5mm width 3.2mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L11.5mm_W3.5mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*3.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 10.00mm length 11.5mm width 3.5mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L11.5mm_W3.6mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*3.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 10.00mm length 11.5mm width 3.6mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L11.5mm_W4.0mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*4.0mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 10.00mm length 11.5mm width 4.0mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L11.5mm_W4.3mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*4.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 10.00mm length 11.5mm width 4.3mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L11.5mm_W4.5mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*4.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 10.00mm length 11.5mm width 4.5mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L11.5mm_W5.0mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 10.00mm length 11.5mm width 5mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L11.5mm_W5.1mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*5.1mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 10.00mm length 11.5mm width 5.1mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L11.5mm_W5.2mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*5.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 10.00mm length 11.5mm width 5.2mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L11.5mm_W5.6mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*5.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 10.00mm length 11.5mm width 5.6mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L11.5mm_W6.4mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*6.4mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 10.00mm length 11.5mm width 6.4mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L11.5mm_W6.6mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*6.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 10.00mm length 11.5mm width 6.6mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L11.5mm_W6.9mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*6.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 10.00mm length 11.5mm width 6.9mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L11.5mm_W7.3mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*7.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 10.00mm length 11.5mm width 7.3mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L11.5mm_W7.5mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*7.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 10.00mm length 11.5mm width 7.5mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L11.5mm_W7.8mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*7.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 10.00mm length 11.5mm width 7.8mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L11.5mm_W8.0mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*8.0mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 10.00mm length 11.5mm width 8.0mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L11.5mm_W8.8mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*8.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 10.00mm length 11.5mm width 8.8mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L11.5mm_W9.5mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*9.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 10.00mm length 11.5mm width 9.5mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L11.5mm_W9.8mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*9.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 10.00mm length 11.5mm width 9.8mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L13.0mm_W3.0mm_P10.00mm_FKS3_FKP3_MKS4 -C, Rect series, Radial, pin pitch=10.00mm, , length*width=13*3mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, http://www.wima.com/EN/WIMA_MKS_4.pdf -C Rect series Radial pin pitch 10.00mm length 13mm width 3mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L13.0mm_W4.0mm_P10.00mm_FKS3_FKP3_MKS4 -C, Rect series, Radial, pin pitch=10.00mm, , length*width=13*4mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, http://www.wima.com/EN/WIMA_MKS_4.pdf -C Rect series Radial pin pitch 10.00mm length 13mm width 4mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L13.0mm_W5.0mm_P10.00mm_FKS3_FKP3_MKS4 -C, Rect series, Radial, pin pitch=10.00mm, , length*width=13*5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, http://www.wima.com/EN/WIMA_MKS_4.pdf -C Rect series Radial pin pitch 10.00mm length 13mm width 5mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L13.0mm_W6.0mm_P10.00mm_FKS3_FKP3_MKS4 -C, Rect series, Radial, pin pitch=10.00mm, , length*width=13*6mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, http://www.wima.com/EN/WIMA_MKS_4.pdf -C Rect series Radial pin pitch 10.00mm length 13mm width 6mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L13.0mm_W6.5mm_P7.50mm_P10.00mm -C, Rect series, Radial, pin pitch=7.50mm 10.00mm, , length*width=13*6.5mm^2, Capacitor -C Rect series Radial pin pitch 7.50mm 10.00mm length 13mm width 6.5mm Capacitor -0 -4 -2 -Capacitor_THT -C_Rect_L13.0mm_W8.0mm_P10.00mm_FKS3_FKP3_MKS4 -C, Rect series, Radial, pin pitch=10.00mm, , length*width=13*8mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, http://www.wima.com/EN/WIMA_MKS_4.pdf -C Rect series Radial pin pitch 10.00mm length 13mm width 8mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L13.5mm_W4.0mm_P10.00mm_FKS3_FKP3_MKS4 -C, Rect series, Radial, pin pitch=10.00mm, , length*width=13.5*4mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, http://www.wima.com/EN/WIMA_MKS_4.pdf -C Rect series Radial pin pitch 10.00mm length 13.5mm width 4mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L13.5mm_W5.0mm_P10.00mm_FKS3_FKP3_MKS4 -C, Rect series, Radial, pin pitch=10.00mm, , length*width=13.5*5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, http://www.wima.com/EN/WIMA_MKS_4.pdf -C Rect series Radial pin pitch 10.00mm length 13.5mm width 5mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L16.5mm_W4.7mm_P15.00mm_MKT -C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*4.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 15.00mm length 16.5mm width 4.7mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L16.5mm_W4.9mm_P15.00mm_MKT -C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*4.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 15.00mm length 16.5mm width 4.9mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L16.5mm_W5.0mm_P15.00mm_MKT -C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 15.00mm length 16.5mm width 5mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L16.5mm_W6.0mm_P15.00mm_MKT -C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 15.00mm length 16.5mm width 6mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L16.5mm_W7.0mm_P15.00mm_MKT -C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 15.00mm length 16.5mm width 7mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L16.5mm_W7.3mm_P15.00mm_MKT -C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*7.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 15.00mm length 16.5mm width 7.3mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L16.5mm_W8.7mm_P15.00mm_MKT -C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*8.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 15.00mm length 16.5mm width 8.7mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L16.5mm_W8.9mm_P15.00mm_MKT -C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*8.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 15.00mm length 16.5mm width 8.9mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L16.5mm_W9.0mm_P15.00mm_MKT -C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 15.00mm length 16.5mm width 9mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L16.5mm_W9.2mm_P15.00mm_MKT -C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*9.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 15.00mm length 16.5mm width 9.2mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L16.5mm_W10.7mm_P15.00mm_MKT -C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*10.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 15.00mm length 16.5mm width 10.7mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L16.5mm_W10.9mm_P15.00mm_MKT -C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*10.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 15.00mm length 16.5mm width 10.9mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L16.5mm_W11.2mm_P15.00mm_MKT -C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*11.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 15.00mm length 16.5mm width 11.2mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L16.5mm_W11.8mm_P15.00mm_MKT -C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*11.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 15.00mm length 16.5mm width 11.8mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L16.5mm_W13.5mm_P15.00mm_MKT -C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*13.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 15.00mm length 16.5mm width 13.5mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L16.5mm_W13.7mm_P15.00mm_MKT -C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*13.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 15.00mm length 16.5mm width 13.7mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L16.5mm_W13.9mm_P15.00mm_MKT -C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*13.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 15.00mm length 16.5mm width 13.9mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L18.0mm_W5.0mm_P15.00mm_FKS3_FKP3 -C, Rect series, Radial, pin pitch=15.00mm, , length*width=18*5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf -C Rect series Radial pin pitch 15.00mm length 18mm width 5mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L18.0mm_W6.0mm_P15.00mm_FKS3_FKP3 -C, Rect series, Radial, pin pitch=15.00mm, , length*width=18*6mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf -C Rect series Radial pin pitch 15.00mm length 18mm width 6mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L18.0mm_W7.0mm_P15.00mm_FKS3_FKP3 -C, Rect series, Radial, pin pitch=15.00mm, , length*width=18*7mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf -C Rect series Radial pin pitch 15.00mm length 18mm width 7mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L18.0mm_W8.0mm_P15.00mm_FKS3_FKP3 -C, Rect series, Radial, pin pitch=15.00mm, , length*width=18*8mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf -C Rect series Radial pin pitch 15.00mm length 18mm width 8mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L18.0mm_W9.0mm_P15.00mm_FKS3_FKP3 -C, Rect series, Radial, pin pitch=15.00mm, , length*width=18*9mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf -C Rect series Radial pin pitch 15.00mm length 18mm width 9mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L18.0mm_W11.0mm_P15.00mm_FKS3_FKP3 -C, Rect series, Radial, pin pitch=15.00mm, , length*width=18*11mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf -C Rect series Radial pin pitch 15.00mm length 18mm width 11mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L19.0mm_W5.0mm_P15.00mm_MKS4 -C, Rect series, Radial, pin pitch=15.00mm, , length*width=19*5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf -C Rect series Radial pin pitch 15.00mm length 19mm width 5mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L19.0mm_W6.0mm_P15.00mm_MKS4 -C, Rect series, Radial, pin pitch=15.00mm, , length*width=19*6mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf -C Rect series Radial pin pitch 15.00mm length 19mm width 6mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L19.0mm_W7.0mm_P15.00mm_MKS4 -C, Rect series, Radial, pin pitch=15.00mm, , length*width=19*7mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf -C Rect series Radial pin pitch 15.00mm length 19mm width 7mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L19.0mm_W8.0mm_P15.00mm_MKS4 -C, Rect series, Radial, pin pitch=15.00mm, , length*width=19*8mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf -C Rect series Radial pin pitch 15.00mm length 19mm width 8mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L19.0mm_W9.0mm_P15.00mm_MKS4 -C, Rect series, Radial, pin pitch=15.00mm, , length*width=19*9mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf -C Rect series Radial pin pitch 15.00mm length 19mm width 9mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L19.0mm_W11.0mm_P15.00mm_MKS4 -C, Rect series, Radial, pin pitch=15.00mm, , length*width=19*11mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf -C Rect series Radial pin pitch 15.00mm length 19mm width 11mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L24.0mm_W7.0mm_P22.50mm_MKT -C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 22.50mm length 24mm width 7mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L24.0mm_W8.3mm_P22.50mm_MKT -C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*8.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 22.50mm length 24mm width 8.3mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L24.0mm_W8.6mm_P22.50mm_MKT -C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*8.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 22.50mm length 24mm width 8.6mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L24.0mm_W10.1mm_P22.50mm_MKT -C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*10.1mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 22.50mm length 24mm width 10.1mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L24.0mm_W10.3mm_P22.50mm_MKT -C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*10.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 22.50mm length 24mm width 10.3mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L24.0mm_W10.9mm_P22.50mm_MKT -C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*10.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 22.50mm length 24mm width 10.9mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L24.0mm_W12.2mm_P22.50mm_MKT -C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*12.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 22.50mm length 24mm width 12.2mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L24.0mm_W12.6mm_P22.50mm_MKT -C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*12.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 22.50mm length 24mm width 12.6mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L24.0mm_W12.8mm_P22.50mm_MKT -C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*12.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 22.50mm length 24mm width 12.8mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L26.5mm_W5.0mm_P22.50mm_MKS4 -C, Rect series, Radial, pin pitch=22.50mm, , length*width=26.5*5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf -C Rect series Radial pin pitch 22.50mm length 26.5mm width 5mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L26.5mm_W6.0mm_P22.50mm_MKS4 -C, Rect series, Radial, pin pitch=22.50mm, , length*width=26.5*6mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf -C Rect series Radial pin pitch 22.50mm length 26.5mm width 6mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L26.5mm_W7.0mm_P22.50mm_MKS4 -C, Rect series, Radial, pin pitch=22.50mm, , length*width=26.5*7mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf -C Rect series Radial pin pitch 22.50mm length 26.5mm width 7mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L26.5mm_W8.5mm_P22.50mm_MKS4 -C, Rect series, Radial, pin pitch=22.50mm, , length*width=26.5*8.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf -C Rect series Radial pin pitch 22.50mm length 26.5mm width 8.5mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L26.5mm_W10.5mm_P22.50mm_MKS4 -C, Rect series, Radial, pin pitch=22.50mm, , length*width=26.5*10.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf -C Rect series Radial pin pitch 22.50mm length 26.5mm width 10.5mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L26.5mm_W11.5mm_P22.50mm_MKS4 -C, Rect series, Radial, pin pitch=22.50mm, , length*width=26.5*11.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf -C Rect series Radial pin pitch 22.50mm length 26.5mm width 11.5mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L27.0mm_W9.0mm_P22.00mm -C, Rect series, Radial, pin pitch=22.00mm, , length*width=27*9mm^2, Capacitor -C Rect series Radial pin pitch 22.00mm length 27mm width 9mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L27.0mm_W9.0mm_P23.00mm -C, Rect series, Radial, pin pitch=23.00mm, , length*width=27*9mm^2, Capacitor -C Rect series Radial pin pitch 23.00mm length 27mm width 9mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L27.0mm_W11.0mm_P22.00mm -C, Rect series, Radial, pin pitch=22.00mm, , length*width=27*11mm^2, Capacitor -C Rect series Radial pin pitch 22.00mm length 27mm width 11mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L28.0mm_W8.0mm_P22.50mm_MKS4 -C, Rect series, Radial, pin pitch=22.50mm, , length*width=28*8mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf -C Rect series Radial pin pitch 22.50mm length 28mm width 8mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L28.0mm_W10.0mm_P22.50mm_MKS4 -C, Rect series, Radial, pin pitch=22.50mm, , length*width=28*10mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf -C Rect series Radial pin pitch 22.50mm length 28mm width 10mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L28.0mm_W12.0mm_P22.50mm_MKS4 -C, Rect series, Radial, pin pitch=22.50mm, , length*width=28*12mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf -C Rect series Radial pin pitch 22.50mm length 28mm width 12mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L29.0mm_W7.6mm_P27.50mm_MKT -C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*7.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 27.50mm length 29mm width 7.6mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L29.0mm_W7.8mm_P27.50mm_MKT -C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*7.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 27.50mm length 29mm width 7.8mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L29.0mm_W7.9mm_P27.50mm_MKT -C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*7.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 27.50mm length 29mm width 7.9mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L29.0mm_W9.1mm_P27.50mm_MKT -C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*9.1mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 27.50mm length 29mm width 9.1mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L29.0mm_W9.6mm_P27.50mm_MKT -C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*9.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 27.50mm length 29mm width 9.6mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L29.0mm_W11.0mm_P27.50mm_MKT -C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*11mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 27.50mm length 29mm width 11mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L29.0mm_W11.9mm_P27.50mm_MKT -C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*11.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 27.50mm length 29mm width 11.9mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L29.0mm_W12.2mm_P27.50mm_MKT -C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*12.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 27.50mm length 29mm width 12.2mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L29.0mm_W13.0mm_P27.50mm_MKT -C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*13mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 27.50mm length 29mm width 13mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L29.0mm_W13.8mm_P27.50mm_MKT -C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*13.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 27.50mm length 29mm width 13.8mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L29.0mm_W14.2mm_P27.50mm_MKT -C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*14.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 27.50mm length 29mm width 14.2mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L29.0mm_W16.0mm_P27.50mm_MKT -C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*16mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf -C Rect series Radial pin pitch 27.50mm length 29mm width 16mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L31.5mm_W9.0mm_P27.50mm_MKS4 -C, Rect series, Radial, pin pitch=27.50mm, , length*width=31.5*9mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf -C Rect series Radial pin pitch 27.50mm length 31.5mm width 9mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L31.5mm_W11.0mm_P27.50mm_MKS4 -C, Rect series, Radial, pin pitch=27.50mm, , length*width=31.5*11mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf -C Rect series Radial pin pitch 27.50mm length 31.5mm width 11mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L31.5mm_W13.0mm_P27.50mm_MKS4 -C, Rect series, Radial, pin pitch=27.50mm, , length*width=31.5*13mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf -C Rect series Radial pin pitch 27.50mm length 31.5mm width 13mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L31.5mm_W15.0mm_P27.50mm_MKS4 -C, Rect series, Radial, pin pitch=27.50mm, , length*width=31.5*15mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf -C Rect series Radial pin pitch 27.50mm length 31.5mm width 15mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L31.5mm_W17.0mm_P27.50mm_MKS4 -C, Rect series, Radial, pin pitch=27.50mm, , length*width=31.5*17mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf -C Rect series Radial pin pitch 27.50mm length 31.5mm width 17mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L31.5mm_W20.0mm_P27.50mm_MKS4 -C, Rect series, Radial, pin pitch=27.50mm, , length*width=31.5*20mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf -C Rect series Radial pin pitch 27.50mm length 31.5mm width 20mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L32.0mm_W15.0mm_P27.00mm -C, Rect series, Radial, pin pitch=27.00mm, , length*width=32*15mm^2, Capacitor -C Rect series Radial pin pitch 27.00mm length 32mm width 15mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L33.0mm_W13.0mm_P27.50mm_MKS4 -C, Rect series, Radial, pin pitch=27.50mm, , length*width=33*13mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf -C Rect series Radial pin pitch 27.50mm length 33mm width 13mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L33.0mm_W15.0mm_P27.50mm_MKS4 -C, Rect series, Radial, pin pitch=27.50mm, , length*width=33*15mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf -C Rect series Radial pin pitch 27.50mm length 33mm width 15mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L33.0mm_W20.0mm_P27.50mm_MKS4 -C, Rect series, Radial, pin pitch=27.50mm, , length*width=33*20mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf -C Rect series Radial pin pitch 27.50mm length 33mm width 20mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L41.5mm_W9.0mm_P37.50mm_MKS4 -C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*9mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf -C Rect series Radial pin pitch 37.50mm length 41.5mm width 9mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L41.5mm_W11.0mm_P37.50mm_MKS4 -C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*11mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf -C Rect series Radial pin pitch 37.50mm length 41.5mm width 11mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L41.5mm_W13.0mm_P37.50mm_MKS4 -C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*13mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf -C Rect series Radial pin pitch 37.50mm length 41.5mm width 13mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L41.5mm_W15.0mm_P37.50mm_MKS4 -C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*15mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf -C Rect series Radial pin pitch 37.50mm length 41.5mm width 15mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L41.5mm_W17.0mm_P37.50mm_MKS4 -C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*17mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf -C Rect series Radial pin pitch 37.50mm length 41.5mm width 17mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L41.5mm_W19.0mm_P37.50mm_MKS4 -C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*19mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf -C Rect series Radial pin pitch 37.50mm length 41.5mm width 19mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L41.5mm_W20.0mm_P37.50mm_MKS4 -C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*20mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf -C Rect series Radial pin pitch 37.50mm length 41.5mm width 20mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L41.5mm_W24.0mm_P37.50mm_MKS4 -C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*24mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf -C Rect series Radial pin pitch 37.50mm length 41.5mm width 24mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L41.5mm_W31.0mm_P37.50mm_MKS4 -C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*31mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf -C Rect series Radial pin pitch 37.50mm length 41.5mm width 31mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L41.5mm_W35.0mm_P37.50mm_MKS4 -C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*35mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf -C Rect series Radial pin pitch 37.50mm length 41.5mm width 35mm Capacitor -0 -2 -2 -Capacitor_THT -C_Rect_L41.5mm_W40.0mm_P37.50mm_MKS4 -C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*40mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf -C Rect series Radial pin pitch 37.50mm length 41.5mm width 40mm Capacitor -0 -2 -2 -Capacitor_THT -DX_5R5HxxxxU_D11.5mm_P10.00mm -CP, Radial series, Radial, pin pitch=10.00mm, diameter=11.5mm, Supercapacitor, http://www.elna.co.jp/en/capacitor/double_layer/catalog/pdf/dx_e.pdf -CP Radial series Radial pin pitch 10.00mm diameter 11.5mm supercapacitor -0 -2 -2 -Capacitor_THT -DX_5R5VxxxxU_D11.5mm_P5.00mm -CP, Radial series, Radial, pin pitch=5.00mm, diameter=11.5mm, Supercapacitor, http://www.elna.co.jp/en/capacitor/double_layer/catalog/pdf/dx_e.pdf -CP Radial series Radial pin pitch 5.00mm diameter 11.5mm supercapacitor -0 -2 -2 -Capacitor_THT -DX_5R5VxxxxU_D19.0mm_P5.00mm -CP, Radial series, Radial, pin pitch=5.00mm, diameter=19mm, Supercapacitor, http://www.elna.co.jp/en/capacitor/double_layer/catalog/pdf/dx_e.pdf -CP Radial series Radial pin pitch 5.00mm diameter 19mm supercapacitor -0 -2 -2 -Capacitor_Tantalum_SMD -CP_EIA-1608-08_AVX-J -Tantalum Capacitor SMD AVX-J (1608-08 Metric), IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/48064/_t58_vmn_pt0471_1601.pdf), generated with kicad-footprint-generator -capacitor tantalum -0 -2 -2 -Capacitor_Tantalum_SMD -CP_EIA-1608-08_AVX-J_Pad1.25x1.05mm_HandSolder -Tantalum Capacitor SMD AVX-J (1608-08 Metric), IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/48064/_t58_vmn_pt0471_1601.pdf), generated with kicad-footprint-generator -capacitor tantalum -0 -2 -2 -Capacitor_Tantalum_SMD -CP_EIA-1608-10_AVX-L -Tantalum Capacitor SMD AVX-L (1608-10 Metric), IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/48064/_t58_vmn_pt0471_1601.pdf), generated with kicad-footprint-generator -capacitor tantalum -0 -2 -2 -Capacitor_Tantalum_SMD -CP_EIA-1608-10_AVX-L_Pad1.25x1.05mm_HandSolder -Tantalum Capacitor SMD AVX-L (1608-10 Metric), IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/48064/_t58_vmn_pt0471_1601.pdf), generated with kicad-footprint-generator -capacitor tantalum -0 -2 -2 -Capacitor_Tantalum_SMD -CP_EIA-2012-12_Kemet-R -Tantalum Capacitor SMD Kemet-R (2012-12 Metric), IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/40182/tmch.pdf), generated with kicad-footprint-generator -capacitor tantalum -0 -2 -2 -Capacitor_Tantalum_SMD -CP_EIA-2012-12_Kemet-R_Pad1.30x1.05mm_HandSolder -Tantalum Capacitor SMD Kemet-R (2012-12 Metric), IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/40182/tmch.pdf), generated with kicad-footprint-generator -capacitor tantalum -0 -2 -2 -Capacitor_Tantalum_SMD -CP_EIA-2012-15_AVX-P -Tantalum Capacitor SMD AVX-P (2012-15 Metric), IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/40182/tmch.pdf), generated with kicad-footprint-generator -capacitor tantalum -0 -2 -2 -Capacitor_Tantalum_SMD -CP_EIA-2012-15_AVX-P_Pad1.30x1.05mm_HandSolder -Tantalum Capacitor SMD AVX-P (2012-15 Metric), IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/40182/tmch.pdf), generated with kicad-footprint-generator -capacitor tantalum -0 -2 -2 -Capacitor_Tantalum_SMD -CP_EIA-3216-10_Kemet-I -Tantalum Capacitor SMD Kemet-I (3216-10 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator -capacitor tantalum -0 -2 -2 -Capacitor_Tantalum_SMD -CP_EIA-3216-10_Kemet-I_Pad1.58x1.35mm_HandSolder -Tantalum Capacitor SMD Kemet-I (3216-10 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator -capacitor tantalum -0 -2 -2 -Capacitor_Tantalum_SMD -CP_EIA-3216-12_Kemet-S -Tantalum Capacitor SMD Kemet-S (3216-12 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator -capacitor tantalum -0 -2 -2 -Capacitor_Tantalum_SMD -CP_EIA-3216-12_Kemet-S_Pad1.58x1.35mm_HandSolder -Tantalum Capacitor SMD Kemet-S (3216-12 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator -capacitor tantalum -0 -2 -2 -Capacitor_Tantalum_SMD -CP_EIA-3216-18_Kemet-A -Tantalum Capacitor SMD Kemet-A (3216-18 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator -capacitor tantalum -0 -2 -2 -Capacitor_Tantalum_SMD -CP_EIA-3216-18_Kemet-A_Pad1.58x1.35mm_HandSolder -Tantalum Capacitor SMD Kemet-A (3216-18 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator -capacitor tantalum -0 -2 -2 -Capacitor_Tantalum_SMD -CP_EIA-3528-12_Kemet-T -Tantalum Capacitor SMD Kemet-T (3528-12 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator -capacitor tantalum -0 -2 -2 -Capacitor_Tantalum_SMD -CP_EIA-3528-12_Kemet-T_Pad1.50x2.35mm_HandSolder -Tantalum Capacitor SMD Kemet-T (3528-12 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator -capacitor tantalum -0 -2 -2 -Capacitor_Tantalum_SMD -CP_EIA-3528-15_AVX-H -Tantalum Capacitor SMD AVX-H (3528-15 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator -capacitor tantalum -0 -2 -2 -Capacitor_Tantalum_SMD -CP_EIA-3528-15_AVX-H_Pad1.50x2.35mm_HandSolder -Tantalum Capacitor SMD AVX-H (3528-15 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator -capacitor tantalum -0 -2 -2 -Capacitor_Tantalum_SMD -CP_EIA-3528-21_Kemet-B -Tantalum Capacitor SMD Kemet-B (3528-21 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator -capacitor tantalum -0 -2 -2 -Capacitor_Tantalum_SMD -CP_EIA-3528-21_Kemet-B_Pad1.50x2.35mm_HandSolder -Tantalum Capacitor SMD Kemet-B (3528-21 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator -capacitor tantalum -0 -2 -2 -Capacitor_Tantalum_SMD -CP_EIA-6032-15_Kemet-U -Tantalum Capacitor SMD Kemet-U (6032-15 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator -capacitor tantalum -0 -2 -2 -Capacitor_Tantalum_SMD -CP_EIA-6032-15_Kemet-U_Pad2.25x2.35mm_HandSolder -Tantalum Capacitor SMD Kemet-U (6032-15 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator -capacitor tantalum -0 -2 -2 -Capacitor_Tantalum_SMD -CP_EIA-6032-20_AVX-F -Tantalum Capacitor SMD AVX-F (6032-20 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator -capacitor tantalum -0 -2 -2 -Capacitor_Tantalum_SMD -CP_EIA-6032-20_AVX-F_Pad2.25x2.35mm_HandSolder -Tantalum Capacitor SMD AVX-F (6032-20 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator -capacitor tantalum -0 -2 -2 -Capacitor_Tantalum_SMD -CP_EIA-6032-28_Kemet-C -Tantalum Capacitor SMD Kemet-C (6032-28 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator -capacitor tantalum -0 -2 -2 -Capacitor_Tantalum_SMD -CP_EIA-6032-28_Kemet-C_Pad2.25x2.35mm_HandSolder -Tantalum Capacitor SMD Kemet-C (6032-28 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator -capacitor tantalum -0 -2 -2 -Capacitor_Tantalum_SMD -CP_EIA-7132-20_AVX-U -Tantalum Capacitor SMD AVX-U (7132-20 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), generated with kicad-footprint-generator -capacitor tantalum -0 -2 -2 -Capacitor_Tantalum_SMD -CP_EIA-7132-20_AVX-U_Pad2.72x3.50mm_HandSolder -Tantalum Capacitor SMD AVX-U (7132-20 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), generated with kicad-footprint-generator -capacitor tantalum -0 -2 -2 -Capacitor_Tantalum_SMD -CP_EIA-7132-28_AVX-C -Tantalum Capacitor SMD AVX-C (7132-28 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), generated with kicad-footprint-generator -capacitor tantalum -0 -2 -2 -Capacitor_Tantalum_SMD -CP_EIA-7132-28_AVX-C_Pad2.72x3.50mm_HandSolder -Tantalum Capacitor SMD AVX-C (7132-28 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), generated with kicad-footprint-generator -capacitor tantalum -0 -2 -2 -Capacitor_Tantalum_SMD -CP_EIA-7260-15_AVX-R -Tantalum Capacitor SMD AVX-R (7260-15 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), generated with kicad-footprint-generator -capacitor tantalum -0 -2 -2 -Capacitor_Tantalum_SMD -CP_EIA-7260-15_AVX-R_Pad2.68x6.30mm_HandSolder -Tantalum Capacitor SMD AVX-R (7260-15 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), generated with kicad-footprint-generator -capacitor tantalum -0 -2 -2 -Capacitor_Tantalum_SMD -CP_EIA-7260-20_AVX-M -Tantalum Capacitor SMD AVX-M (7260-20 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), generated with kicad-footprint-generator -capacitor tantalum -0 -2 -2 -Capacitor_Tantalum_SMD -CP_EIA-7260-20_AVX-M_Pad2.68x6.30mm_HandSolder -Tantalum Capacitor SMD AVX-M (7260-20 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), generated with kicad-footprint-generator -capacitor tantalum -0 -2 -2 -Capacitor_Tantalum_SMD -CP_EIA-7260-28_AVX-M -Tantalum Capacitor SMD AVX-M (7260-28 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), generated with kicad-footprint-generator -capacitor tantalum -0 -2 -2 -Capacitor_Tantalum_SMD -CP_EIA-7260-28_AVX-M_Pad2.68x6.30mm_HandSolder -Tantalum Capacitor SMD AVX-M (7260-28 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), generated with kicad-footprint-generator -capacitor tantalum -0 -2 -2 -Capacitor_Tantalum_SMD -CP_EIA-7260-38_AVX-R -Tantalum Capacitor SMD AVX-R (7260-38 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), generated with kicad-footprint-generator -capacitor tantalum -0 -2 -2 -Capacitor_Tantalum_SMD -CP_EIA-7260-38_AVX-R_Pad2.68x6.30mm_HandSolder -Tantalum Capacitor SMD AVX-R (7260-38 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), generated with kicad-footprint-generator -capacitor tantalum -0 -2 -2 -Capacitor_Tantalum_SMD -CP_EIA-7343-15_Kemet-W -Tantalum Capacitor SMD Kemet-W (7343-15 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator -capacitor tantalum -0 -2 -2 -Capacitor_Tantalum_SMD -CP_EIA-7343-15_Kemet-W_Pad2.25x2.55mm_HandSolder -Tantalum Capacitor SMD Kemet-W (7343-15 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator -capacitor tantalum -0 -2 -2 -Capacitor_Tantalum_SMD -CP_EIA-7343-20_Kemet-V -Tantalum Capacitor SMD Kemet-V (7343-20 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator -capacitor tantalum -0 -2 -2 -Capacitor_Tantalum_SMD -CP_EIA-7343-20_Kemet-V_Pad2.25x2.55mm_HandSolder -Tantalum Capacitor SMD Kemet-V (7343-20 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator -capacitor tantalum -0 -2 -2 -Capacitor_Tantalum_SMD -CP_EIA-7343-30_AVX-N -Tantalum Capacitor SMD AVX-N (7343-30 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator -capacitor tantalum -0 -2 -2 -Capacitor_Tantalum_SMD -CP_EIA-7343-30_AVX-N_Pad2.25x2.55mm_HandSolder -Tantalum Capacitor SMD AVX-N (7343-30 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator -capacitor tantalum -0 -2 -2 -Capacitor_Tantalum_SMD -CP_EIA-7343-31_Kemet-D -Tantalum Capacitor SMD Kemet-D (7343-31 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator -capacitor tantalum -0 -2 -2 -Capacitor_Tantalum_SMD -CP_EIA-7343-31_Kemet-D_Pad2.25x2.55mm_HandSolder -Tantalum Capacitor SMD Kemet-D (7343-31 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator -capacitor tantalum -0 -2 -2 -Capacitor_Tantalum_SMD -CP_EIA-7343-40_Kemet-Y -Tantalum Capacitor SMD Kemet-Y (7343-40 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator -capacitor tantalum -0 -2 -2 -Capacitor_Tantalum_SMD -CP_EIA-7343-40_Kemet-Y_Pad2.25x2.55mm_HandSolder -Tantalum Capacitor SMD Kemet-Y (7343-40 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator -capacitor tantalum -0 -2 -2 -Capacitor_Tantalum_SMD -CP_EIA-7343-43_Kemet-X -Tantalum Capacitor SMD Kemet-X (7343-43 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator -capacitor tantalum -0 -2 -2 -Capacitor_Tantalum_SMD -CP_EIA-7343-43_Kemet-X_Pad2.25x2.55mm_HandSolder -Tantalum Capacitor SMD Kemet-X (7343-43 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator -capacitor tantalum -0 -2 -2 -Capacitor_Tantalum_SMD -CP_EIA-7360-38_Kemet-E -Tantalum Capacitor SMD Kemet-E (7360-38 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator -capacitor tantalum -0 -2 -2 -Capacitor_Tantalum_SMD -CP_EIA-7360-38_Kemet-E_Pad2.25x4.25mm_HandSolder -Tantalum Capacitor SMD Kemet-E (7360-38 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator -capacitor tantalum -0 -2 -2 -Capacitor_Tantalum_SMD -CP_EIA-7361-38_AVX-V -Tantalum Capacitor SMD AVX-V (7361-38 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/NOS.pdf), generated with kicad-footprint-generator -capacitor tantalum -0 -2 -2 -Capacitor_Tantalum_SMD -CP_EIA-7361-38_AVX-V_Pad2.18x3.30mm_HandSolder -Tantalum Capacitor SMD AVX-V (7361-38 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/NOS.pdf), generated with kicad-footprint-generator -capacitor tantalum -0 -2 -2 -Capacitor_Tantalum_SMD -CP_EIA-7361-438_AVX-U -Tantalum Capacitor SMD AVX-U (7361-438 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/NOS.pdf), generated with kicad-footprint-generator -capacitor tantalum -0 -2 -2 -Capacitor_Tantalum_SMD -CP_EIA-7361-438_AVX-U_Pad2.18x3.30mm_HandSolder -Tantalum Capacitor SMD AVX-U (7361-438 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/NOS.pdf), generated with kicad-footprint-generator -capacitor tantalum -0 -2 -2 -Connector -Banana_Cliff_FCR7350x_S16N-PC_Horizontal -Cliff single 4mm shrouded banana panel socket, through-hole, horizontal, https://www.cliffuk.co.uk/products/testleads/sockets/S16NPC.pdf -cliff 4mm socket jack banana -0 -1 -1 -Connector -Banana_Jack_1Pin -Single banana socket, footprint - 6mm drill -banana socket -0 -1 -1 -Connector -Banana_Jack_2Pin -Dual banana socket, footprint - 2 x 6mm drills -banana socket -0 -2 -2 -Connector -Banana_Jack_3Pin -Triple banana socket, footprint - 3 x 6mm drills -banana socket -0 -3 -3 -Connector -CUI_PD-30 -3 pin connector, PD-30, http://www.cui.com/product/resource/pd-30.pdf -connector 3-pin PD-30 power DIN -0 -4 -4 -Connector -CUI_PD-30S -3-pin nonstandard DIN connector, shielded, PD-30S, http://www.cui.com/product/resource/pd-30s.pdf -connector 3-pin PD-30S power DIN shielded -0 -8 -5 -Connector -CUI_PD-30S_CircularHoles -3-pin nonstandard DIN connector, shielded, PD-30S, http://www.cui.com/product/resource/pd-30s.pdf -connector 3-pin PD-30S power DIN shielded -0 -8 -5 -Connector -CalTest_CT3151 -Right-angle standard banana jack, http://www.caltestelectronics.com/images/attachments/P315100rH_drawing.pdf -banana jack horizontal -0 -4 -1 -Connector -Connector_SFP_and_Cage -https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=2227302&DocType=Customer+Drawing&DocLang=English -SFP+ SFP -0 -40 -21 -Connector -DTF13-12Px -http://www.te.com/usa-en/product-DTF13-12PA-G003.html -DEUTSCH DT header 12 pin -0 -12 -12 -Connector -FanPinHeader_1x03_P2.54mm_Vertical -3-pin CPU fan Through hole pin header, see http://www.formfactors.org/developer%5Cspecs%5Crev1_2_public.pdf -pin header 3-pin CPU fan -0 -3 -3 -Connector -FanPinHeader_1x04_P2.54mm_Vertical -4-pin CPU fan Through hole pin header, e.g. for Wieson part number 2366C888-007 Molex 47053-1000, Foxconn HF27040-M1, Tyco 1470947-1 or equivalent, see http://www.formfactors.org/developer%5Cspecs%5Crev1_2_public.pdf -pin header 4-pin CPU fan -0 -4 -4 -Connector -GB042-34S-H10 -http://www.lsmtron.com/pdf/Connector&Antenna_catalog.PDF -34pin SMD connector -0 -34 -34 -Connector -IHI_B6A-PCB-45_Vertical -https://lugsdirect.com/PDF_Webprint/B6A-PCB-45-XX(-X).pdf -connector IHI B6A-PCB-45 -0 -49 -1 -Connector -JWT_A3963_1x02_P3.96mm_Vertical -JWT A3963, 3.96mm pitch Pin head connector (http://www.jwt.com.tw/pro_pdf/A3963.pdf) -connector JWT A3963 pinhead -0 -2 -2 -Connector -Joint-Tech_C5080WR-04P_1x04_P5.08mm_Vertical -C5080 SERIES 90° Wafer, (https://datasheet.lcsc.com/lcsc/1912261836_HR-Joint-Tech-Elec-C5080WR-04P_C477015.pdf) -connector side-entry ATA PATA IDE 5.25 inch floppy drive power -0 -6 -5 -Connector -NS-Tech_Grove_1x04_P2mm_Vertical -https://statics3.seeedstudio.com/images/opl/datasheet/3470130P1.pdf -Grove-1x04 -0 -4 -4 -Connector -SpringContact_Harwin_S1941-46R -7.25mm SMT Multi-directional Spring Contact (T+R), https://cdn.harwin.com/pdfs/S1941R.pdf -spring contact emi emc shield -0 -1 -1 -Connector -Tag-Connect_TC2030-IDC-FP_2x03_P1.27mm_Vertical -Tag-Connect programming header; http://www.tag-connect.com/Materials/TC2030-IDC.pdf -tag connect programming header pogo pins -0 -6 -6 -Connector -Tag-Connect_TC2030-IDC-NL_2x03_P1.27mm_Vertical -Tag-Connect programming header; http://www.tag-connect.com/Materials/TC2030-IDC-NL.pdf -tag connect programming header pogo pins -0 -6 -6 -Connector -Tag-Connect_TC2050-IDC-FP_2x05_P1.27mm_Vertical -Tag-Connect programming header; http://www.tag-connect.com/Materials/TC2050-IDC-430%20Datasheet.pdf -tag connect programming header pogo pins -0 -10 -10 -Connector -Tag-Connect_TC2050-IDC-NL_2x05_P1.27mm_Vertical -Tag-Connect programming header; http://www.tag-connect.com/Materials/TC2050-IDC-NL%20Datasheet.pdf -tag connect programming header pogo pins -0 -10 -10 -Connector -Tag-Connect_TC2050-IDC-NL_2x05_P1.27mm_Vertical_with_bottom_clip -Tag-Connect programming header with bottom courtyard for TC2050-NL Clip board ; https://www.tag-connect.com/wp-content/uploads/bsk-pdf-manager/TC2050-IDC-NL_Datasheet_8.pdf https://www.tag-connect.com/wp-content/uploads/bsk-pdf-manager/TC2050-CLIP_Datasheet_25.pdf -tag connect programming header pogo pins -0 -10 -10 -Connector -Tag-Connect_TC2070-IDC-FP_2x07_P1.27mm_Vertical -Tag-Connect programming header; http://www.tag-connect.com/Materials/TC2070-IDC%20Datasheet.pdf -tag connect programming header pogo pins -0 -14 -14 -Connector_AMASS -AMASS_MR30PW-FB_1x03_P3.50mm_Horizontal -Connector XT30 Horizontal PCB Female, https://www.tme.eu/en/Document/5e47640ba39fa492dbd4c0f4c8ae7b93/MR30PW%20SPEC.pdf -RC Connector XT30 -0 -5 -3 -Connector_AMASS -AMASS_MR30PW-M_1x03_P3.50mm_Horizontal -Connector XT30 Horizontal PCB Male, https://www.tme.eu/en/Document/5e47640ba39fa492dbd4c0f4c8ae7b93/MR30PW%20SPEC.pdf -RC Connector XT30 -0 -5 -3 -Connector_AMASS -AMASS_XT30PW-F_1x02_P2.50mm_Horizontal -Connector XT30 Horizontal PCB Female, https://www.tme.eu/en/Document/ce4077e36b79046da520ca73227e15de/XT30PW%20SPEC.pdf -RC Connector XT30 -0 -4 -2 -Connector_AMASS -AMASS_XT30PW-M_1x02_P2.50mm_Horizontal -Connector XT30 Horizontal PCB Male, https://www.tme.eu/en/Document/ce4077e36b79046da520ca73227e15de/XT30PW%20SPEC.pdf -RC Connector XT30 -0 -4 -2 -Connector_AMASS -AMASS_XT30U-F_1x02_P5.0mm_Vertical -Connector XT30 Vertical Cable Female, https://www.tme.eu/en/Document/3cbfa5cfa544d79584972dd5234a409e/XT30U%20SPEC.pdf -RC Connector XT30 -0 -2 -2 -Connector_AMASS -AMASS_XT30U-M_1x02_P5.0mm_Vertical -Connector XT30 Vertical Cable Male, https://www.tme.eu/en/Document/3cbfa5cfa544d79584972dd5234a409e/XT30U%20SPEC.pdf -RC Connector XT30 -0 -2 -2 -Connector_AMASS -AMASS_XT30UPB-F_1x02_P5.0mm_Vertical -Connector XT30 Vertical PCB Female, https://www.tme.eu/en/Document/4acc913878197f8c2e30d4b8cdc47230/XT30UPB%20SPEC.pdf -RC Connector XT30 -0 -2 -2 -Connector_AMASS -AMASS_XT30UPB-M_1x02_P5.0mm_Vertical -Connector XT30 Vertical PCB Male, https://www.tme.eu/en/Document/4acc913878197f8c2e30d4b8cdc47230/XT30UPB%20SPEC.pdf -RC Connector XT30 -0 -2 -2 -Connector_AMASS -AMASS_XT60-F_1x02_P7.20mm_Vertical -AMASS female XT60, through hole, vertical, https://www.tme.eu/Document/2d152ced3b7a446066e6c419d84bb460/XT60%20SPEC.pdf -XT60 female vertical -0 -2 -2 -Connector_AMASS -AMASS_XT60-M_1x02_P7.20mm_Vertical -AMASS female XT60, through hole, vertical, https://www.tme.eu/Document/2d152ced3b7a446066e6c419d84bb460/XT60%20SPEC.pdf -XT60 female vertical -0 -2 -2 -Connector_AMASS -AMASS_XT60IPW-M_1x03_P7.20mm_Horizontal -Connector XT60 Horizontal PCB Male, https://www.bto.pl/pdf/08988/XT60IPW-M3.pdf -RC Connector XT60 -0 -5 -3 -Connector_AMASS -AMASS_XT60PW-F_1x02_P7.20mm_Horizontal -Connector XT60 Horizontal PCB Female, https://www.tme.eu/en/Document/9b8d0c5eb7094295f3d3112c214d3ade/XT60PW%20SPEC.pdf -RC Connector XT60 -0 -4 -2 -Connector_AMASS -AMASS_XT60PW-M_1x02_P7.20mm_Horizontal -Connector XT60 Horizontal PCB Female, https://www.tme.eu/en/Document/9b8d0c5eb7094295f3d3112c214d3ade/XT60PW%20SPEC.pdf -RC Connector XT60 -0 -4 -2 -Connector_Amphenol -Amphenol_M8S-03PMMR-SF8001 -M8 Male connector for panel, 90° PCB mount (https://www.amphenolltw.com/2012download/2D%20PDF/03_M%20Series%20Sensor%20Connectors/M8S-XXPMMR-SF8001.pdf) -three-pin M8 -0 -5 -4 -Connector_Audio -Jack_3.5mm_CUI_SJ-3523-SMT_Horizontal -3.5 mm, Stereo, Right Angle, Surface Mount (SMT), Audio Jack Connector (https://www.cui.com/product/resource/sj-352x-smt-series.pdf) -3.5mm audio cui horizontal jack stereo -0 -3 -3 -Connector_Audio -Jack_3.5mm_CUI_SJ-3524-SMT_Horizontal -3.5 mm, Stereo, Right Angle, Surface Mount (SMT), Audio Jack Connector (https://www.cui.com/product/resource/sj-352x-smt-series.pdf) -3.5mm audio cui horizontal jack stereo -0 -4 -4 -Connector_Audio -Jack_3.5mm_CUI_SJ1-3523N_Horizontal -TRS 3.5mm, horizontal, through-hole, https://www.cuidevices.com/product/resource/pdf/sj1-352xn.pdf -TRS audio jack stereo horizontal -0 -3 -3 -Connector_Audio -Jack_3.5mm_CUI_SJ1-3524N_Horizontal -TRS 3.5mm, horizontal, through-hole, https://www.cuidevices.com/product/resource/pdf/sj1-352xn.pdf -TRS audio jack stereo horizontal -0 -4 -4 -Connector_Audio -Jack_3.5mm_CUI_SJ1-3525N_Horizontal -TRS 3.5mm, horizontal, through-hole, https://www.cuidevices.com/product/resource/pdf/sj1-352xn.pdf -TRS audio jack stereo horizontal -0 -5 -5 -Connector_Audio -Jack_3.5mm_CUI_SJ1-3533NG_Horizontal -TRS 3.5mm, horizontal, through-hole, https://www.cui.com/product/resource/sj1-353xng.pdf -TRS audio jack stereo horizontal -0 -3 -3 -Connector_Audio -Jack_3.5mm_CUI_SJ1-3533NG_Horizontal_CircularHoles -TRS 3.5mm, horizontal, through-hole, , circular holeshttps://www.cui.com/product/resource/sj1-353xng.pdf -TRS audio jack stereo horizontal circular -0 -3 -3 -Connector_Audio -Jack_3.5mm_CUI_SJ1-3535NG_Horizontal -TRS 3.5mm, horizontal, through-hole, with switch, https://www.cui.com/product/resource/sj1-353xng.pdf -TRS audio jack stereo horizontal -0 -5 -5 -Connector_Audio -Jack_3.5mm_CUI_SJ1-3535NG_Horizontal_CircularHoles -TRS 3.5mm, horizontal, through-hole, with switch, circular holes, https://www.cui.com/product/resource/sj1-353xng.pdf -TRS audio jack stereo horizontal circular -0 -5 -5 -Connector_Audio -Jack_3.5mm_CUI_SJ2-3593D-SMT_Horizontal -3.5 mm, Stereo, Right Angle, Surface Mount (SMT), Audio Jack Connector (https://www.cuidevices.com/product/resource/sj2-359x-smt.pdf) -3.5mm audio cui horizontal jack stereo -0 -5 -5 -Connector_Audio -Jack_3.5mm_KoreanHropartsElec_PJ-320D-4A_Horizontal -Korean Hroparts Elec PJ-320D-4A (https://datasheet.lcsc.com/lcsc/1810121716_Korean-Hroparts-Elec-PJ-320D-4A_C95562.pdf) -smt female jack horizontal -0 -4 -4 -Connector_Audio -Jack_3.5mm_Ledino_KB3SPRS_Horizontal -https://www.reichelt.de/index.html?ACTION=7&LA=3&OPEN=0&INDEX=0&FILENAME=C160%252FKB3SPRS.pdf -jack stereo TRS -0 -5 -5 -Connector_Audio -Jack_3.5mm_Lumberg_1503_07_Horizontal -TRS 3.5mm, horizontal, through-hole, https://downloads.lumberg.com/datenblaetter/en/1503_07.pdf -TRS audio jack horizontal -0 -4 -3 -Connector_Audio -Jack_3.5mm_PJ311_Horizontal -PJ311 6pin SMD 3.5mm stereo headphones jack. -headphones jack plug stereo 3.5mm PJ311 -0 -6 -6 -Connector_Audio -Jack_3.5mm_PJ320D_Horizontal -Headphones with microphone connector, 3.5mm, 4 pins (http://www.qingpu-electronics.com/en/products/WQP-PJ320D-72.html) -3.5mm jack mic microphone phones headphones 4pins audio plug -0 -4 -4 -Connector_Audio -Jack_3.5mm_PJ320E_Horizontal -Headphones with microphone connector, 3.5mm, 4 pins (http://www.qingpu-electronics.com/en/products/WQP-PJ320E-177.html) -3.5mm jack mic microphone phones headphones 4pins audio plug -0 -5 -4 -Connector_Audio -Jack_3.5mm_PJ31060-I_Horizontal -PJ31060-I 6pin SMD 3.5mm headphones jack (http://www.china-bsun.com/Product48/1577.html) -headphones jack plug stereo 3.5mm PJ31060-I PJ31060 -0 -6 -6 -Connector_Audio -Jack_3.5mm_QingPu_WQP-PJ398SM_Vertical_CircularHoles -TRS 3.5mm, vertical, Thonkiconn, PCB mount, (http://www.qingpu-electronics.com/en/products/WQP-PJ398SM-362.html) -WQP-PJ398SM WQP-PJ301M-12 TRS 3.5mm mono vertical jack thonkiconn qingpu -0 -3 -3 -Connector_Audio -Jack_3.5mm_Switronic_ST-005-G_horizontal -3.5mm horizontal headphones jack, http://akizukidenshi.com/download/ds/switronic/ST-005-G.pdf -Connector Audio Switronic ST-005-G -0 -4 -3 -Connector_Audio -Jack_3.5mm_Technik_TWP-3002_Horizontal -3.5mm Horizontal Waterproof Stereo Headphones Jack, https://www.technik.com.hk/images/pdf_product/WP3002-PA66-A.pdf -audio jack stereo horizontal waterproof -0 -7 -4 -Connector_Audio -Jack_6.35mm_Neutrik_NJ2FD-V_Vertical -6.35mm (1/4 in) Vertical Jack, Non-switching mono jack (T/S), https://www.neutrik.com/en/product/nj2fd-v -neutrik jack vertical -0 -2 -2 -Connector_Audio -Jack_6.35mm_Neutrik_NJ3FD-V_Vertical -6.35mm (1/4 in) Vertical Jack, Non-switching stereo jack (T/R/S), https://www.neutrik.com/en/product/nj3fd-v -neutrik jack vertical -0 -3 -3 -Connector_Audio -Jack_6.35mm_Neutrik_NJ5FD-V_Vertical -6.35mm (1/4 in) Vertical Jack, 2 x switching (normalling) stereo jack (T/TN/R/RN/S), https://www.neutrik.com/en/product/nj5fd-v -neutrik jack vertical -0 -5 -5 -Connector_Audio -Jack_6.35mm_Neutrik_NJ6FD-V_Vertical -6.35mm (1/4 in) Vertical Jack, 3 x switching (normalling) stereo jack (T/TN/R/RN/S/SN), https://www.neutrik.com/en/product/nj6fd-v -neutrik jack vertical -0 -6 -6 -Connector_Audio -Jack_6.35mm_Neutrik_NJ6TB-V_Vertical -6.35mm (1/4 in) Vertical Jack, 3 x switching (normalling) stereo jack B-gauge type (T/TN/R/RN/S/SN), https://www.neutrik.com/en/product/nj6tb-v -neutrik jack vertical -0 -6 -6 -Connector_Audio -Jack_6.35mm_Neutrik_NMJ4HCD2_Horizontal -M Series, 6.35mm (1/4in) mono jack, switched, with chrome ferrule and straight PCB pins, https://www.neutrik.com/en/product/nmj4hcd2 -neutrik jack m -0 -4 -4 -Connector_Audio -Jack_6.35mm_Neutrik_NMJ4HFD2_Horizontal -M Series, 6.35mm (1/4in) mono jack, switched, with full threaded nose and straight PCB pins, https://www.neutrik.com/en/product/nmj4hfd2 -neutrik jack m -0 -4 -4 -Connector_Audio -Jack_6.35mm_Neutrik_NMJ4HFD3_Horizontal -M Series, 6.35mm (1/4in) mono jack, switched, with a full threaded nose and offset PCB pins, https://www.neutrik.com/en/product/nmj4hfd3 -neutrik jack m -0 -4 -4 -Connector_Audio -Jack_6.35mm_Neutrik_NMJ4HHD2_Horizontal -M Series, 6.35mm (1/4in) mono jack, switched, with a half threaded nose and offset PCB pins, https://www.neutrik.com/en/product/nmj4hhd2 -neutrik jack m -0 -4 -4 -Connector_Audio -Jack_6.35mm_Neutrik_NMJ6HCD2_Horizontal -M Series, 6.35mm (1/4in) stereo jack, switched, with chrome ferrule and straight PCB pins, https://www.neutrik.com/en/product/nmj6hcd2 -neutrik jack m -0 -6 -6 -Connector_Audio -Jack_6.35mm_Neutrik_NMJ6HCD3_Horizontal -M Series, 6.35mm (1/4in) stereo jack, switched, with chrome ferrule and offset PCB pins, https://www.neutrik.com/en/product/nmj6hcd3 -neutrik jack m -0 -6 -6 -Connector_Audio -Jack_6.35mm_Neutrik_NMJ6HFD2-AU_Horizontal -M Series, 6.35mm (1/4in) stereo jack, switched, full threaded nose, straight PCB pins, gold plated contacts, https://www.neutrik.com/en/product/nmj6hfd2-au -neutrik jack m -0 -6 -6 -Connector_Audio -Jack_6.35mm_Neutrik_NMJ6HFD2_Horizontal -M Series, 6.35mm (1/4in) stereo jack, switched, with full threaded nose and straight PCB pins, https://www.neutrik.com/en/product/nmj6hfd2 -neutrik jack m -0 -6 -6 -Connector_Audio -Jack_6.35mm_Neutrik_NMJ6HFD3_Horizontal -M Series, 6.35mm (1/4in) stereo jack, switched, with full threaded nose and offset PCB pins, https://www.neutrik.com/en/product/nmj6hfd3 -neutrik jack m -0 -6 -6 -Connector_Audio -Jack_6.35mm_Neutrik_NMJ6HFD4_Horizontal -M Series, 6.35mm (1/4in) stereo jack, switched, with full threaded nose and fishtail PCB pins, https://www.neutrik.com/en/product/nmj6hfd4 -neutrik jack m -0 -6 -6 -Connector_Audio -Jack_6.35mm_Neutrik_NMJ6HHD2_Horizontal -M Series, 6.35mm (1/4in) stereo jack, switched, with half threaded nose and offset PCB pins, https://www.neutrik.com/en/product/nmj6hhd2 -neutrik jack m -0 -6 -6 -Connector_Audio -Jack_6.35mm_Neutrik_NRJ3HF-1_Horizontal -Slim Jacks, 6.35mm (1/4in) stereo jack, unswitched, fully threaded nose, sleeve contact/front panel connection, https://www.neutrik.com/en/product/nrj3hf-1 -neutrik jack slim -0 -4 -4 -Connector_Audio -Jack_6.35mm_Neutrik_NRJ4HF-1_Horizontal -Slim Jacks, 6.35mm (1/4in) mono jack, switched, fully threaded nose, sleeve contact/front panel connection, https://www.neutrik.com/en/product/nrj4hf-1 -neutrik jack slim -0 -4 -4 -Connector_Audio -Jack_6.35mm_Neutrik_NRJ4HF_Horizontal -Slim Jacks, 6.35mm (1/4in) mono jack, switched, fully threaded nose, https://www.neutrik.com/en/product/nrj4hf -neutrik jack slim -0 -4 -4 -Connector_Audio -Jack_6.35mm_Neutrik_NRJ4HH-1_Horizontal -Slim Jacks, 6.35mm (1/4in) mono jack, switched, half threaded nose, sleeve contact/front panel connection, https://www.neutrik.com/en/product/nrj4hh-1 -neutrik jack slim -0 -4 -4 -Connector_Audio -Jack_6.35mm_Neutrik_NRJ4HH_Horizontal -Slim Jacks, 6.35mm (1/4in) mono jack, switched, half threaded nose, https://www.neutrik.com/en/product/nrj4hh -neutrik jack slim -0 -4 -4 -Connector_Audio -Jack_6.35mm_Neutrik_NRJ6HF-1-AU_Horizontal -Slim Jacks, 6.35mm (1/4in) stereo jack, switched, gold plated contacts, fully threaded nose, sleeve contact/front panel connection, https://www.neutrik.com/en/product/nrj6hf-1-au -neutrik jack slim -0 -6 -6 -Connector_Audio -Jack_6.35mm_Neutrik_NRJ6HF-1_Horizontal -Slim Jacks, 6.35mm (1/4in) stereo jack, switched, fully threaded nose, sleeve contact/front panel connection, https://www.neutrik.com/en/product/nrj6hf-1 -neutrik jack slim -0 -6 -6 -Connector_Audio -Jack_6.35mm_Neutrik_NRJ6HF-AU_Horizontal -Slim Jacks, 6.35mm (1/4in) stereo jack, switched, gold plated contacts, fully threaded nose, https://www.neutrik.com/en/product/nrj6hf-au -neutrik jack slim -0 -6 -6 -Connector_Audio -Jack_6.35mm_Neutrik_NRJ6HF_Horizontal -Slim Jacks, 6.35mm (1/4in) stereo jack, switched, fully threaded nose, https://www.neutrik.com/en/product/nrj6hf -neutrik jack slim -0 -6 -6 -Connector_Audio -Jack_6.35mm_Neutrik_NRJ6HH-1_Horizontal -Slim Jacks, 6.35mm (1/4in) stereo jack, switched, half threaded nose, sleeve contact/front panel connection, https://www.neutrik.com/en/product/nrj6hh-1 -neutrik jack slim -0 -6 -6 -Connector_Audio -Jack_6.35mm_Neutrik_NRJ6HH-AU_Horizontal -Slim Jacks, 6.35mm (1/4in) stereo jack, switched, gold plated contacts, half threaded nose, https://www.neutrik.com/en/product/nrj6hh-au -neutrik jack slim -0 -6 -6 -Connector_Audio -Jack_6.35mm_Neutrik_NRJ6HH_Horizontal -Slim Jacks, 6.35mm (1/4in) stereo jack, switched, half threaded nose, https://www.neutrik.com/en/product/nrj6hh -neutrik jack slim -0 -6 -6 -Connector_Audio -Jack_6.35mm_Neutrik_NRJ6HM-1-AU_Horizontal -Slim Jacks, 6.35mm (1/4in) stereo jack, metal nose, gold plated contacts, efficient chassis ground connection, T+R+S normalling contact, https://www.neutrik.com/en/product/nrj6hm-1-au -neutrik jack slim -0 -6 -6 -Connector_Audio -Jack_6.35mm_Neutrik_NRJ6HM-1-PRE_Horizontal -Slim Jacks, 6.35mm (1/4in) stereo jack, metal nose, efficient chassis ground connection, T+R normalling contact, https://www.neutrik.com/en/product/nrj6hm-1-pre -neutrik jack slim -0 -6 -5 -Connector_Audio -Jack_6.35mm_Neutrik_NRJ6HM-1_Horizontal -Slim Jacks, 6.35mm (1/4in) stereo jack, metal nose with efficient chassis ground connection, T+R+S normalling contact, https://www.neutrik.com/en/product/nrj6hm-1 -neutrik jack slim -0 -6 -6 -Connector_Audio -Jack_6.35mm_Neutrik_NSJ8HC_Horizontal -Stacking Jacks, Mono dual jack, full nose, https://www.neutrik.com/en/product/nsj8hc -neutrik jack stacking -0 -9 -9 -Connector_Audio -Jack_6.35mm_Neutrik_NSJ8HL_Horizontal -Stacking Jacks, Mono dual jack, quick fix nose, https://www.neutrik.com/en/product/nsj8hl -neutrik jack stacking -0 -9 -9 -Connector_Audio -Jack_6.35mm_Neutrik_NSJ12HC_Horizontal -Stacking Jacks, Stereo dual jack, full nose, https://www.neutrik.com/en/product/nsj12hc -neutrik jack stacking -0 -13 -13 -Connector_Audio -Jack_6.35mm_Neutrik_NSJ12HF-1_Horizontal -Stacking Jacks, Stereo dual jack, full threaded nose, https://www.neutrik.com/en/product/nsj12hf-1 -neutrik jack stacking -0 -13 -13 -Connector_Audio -Jack_6.35mm_Neutrik_NSJ12HH-1_Horizontal -Stacking Jacks, Stereo dual jack, half threaded nose, https://www.neutrik.com/en/product/nsj12hh-1 -neutrik jack stacking -0 -13 -13 -Connector_Audio -Jack_6.35mm_Neutrik_NSJ12HL_Horizontal -Stacking Jacks, Stereo dual jack, quick fix nose, https://www.neutrik.com/en/product/nsj12hl -neutrik jack stacking -0 -13 -13 -Connector_Audio -Jack_XLR-6.35mm_Neutrik_NCJ5FI-H-0_Horizontal -Combo I series, 3 pole XLR female receptacle with 6.35mm (1/4in) mono jack without switching contact, horizontal PCB mount, https://www.neutrik.com/en/product/ncj5fi-h-0 -neutrik jack combo i -0 -6 -6 -Connector_Audio -Jack_XLR-6.35mm_Neutrik_NCJ5FI-H_Horizontal -Combo I series, 3 pole XLR female receptacle with 6.35mm (1/4in) mono jack without switching contact, horizontal PCB mount, retention spring, https://www.neutrik.com/en/product/ncj5fi-h -neutrik jack combo i -0 -6 -6 -Connector_Audio -Jack_XLR-6.35mm_Neutrik_NCJ5FI-V-0_Vertical -Combo I series, 3 pole XLR female receptacle with 6.35mm (1/4in) mono jack without switching contact, vertical PCB mount, https://www.neutrik.com/en/product/ncj5fi-v-0 -neutrik jack combo i -0 -6 -6 -Connector_Audio -Jack_XLR-6.35mm_Neutrik_NCJ5FI-V_Vertical -Combo I series, 3 pole XLR female receptacle with 6.35mm (1/4in) mono jack without switching contact, vertical PCB mount, retention spring, https://www.neutrik.com/en/product/ncj5fi-v -neutrik jack combo i -0 -6 -6 -Connector_Audio -Jack_XLR-6.35mm_Neutrik_NCJ6FA-H-0_Horizontal -Combo A series, 3 pole XLR female receptacle with 6.35mm (1/4in) stereo jack, horizontal PCB mount, retention spring, https://www.neutrik.com/en/product/ncj6fa-h-0 -neutrik jack combo a -0 -8 -7 -Connector_Audio -Jack_XLR-6.35mm_Neutrik_NCJ6FA-H-DA_Horizontal -Combo A series, 3 pole XLR female receptacle with 6.35mm (1/4in) stereo jack, horizontal PCB mount, asymmetric push, https://www.neutrik.com/en/product/ncj6fa-h-da -neutrik jack combo a -0 -8 -7 -Connector_Audio -Jack_XLR-6.35mm_Neutrik_NCJ6FA-H_Horizontal -Combo A series, 3 pole XLR female receptacle with 6.35mm (1/4in) stereo jack, horizontal PCB mount, https://www.neutrik.com/en/product/ncj6fa-h -neutrik jack combo a -0 -8 -7 -Connector_Audio -Jack_XLR-6.35mm_Neutrik_NCJ6FA-V-0_Vertical -Combo A series, 3 pole XLR female receptacle with 6.35mm (1/4in) stereo jack, vertical PCB mount, retention spring, https://www.neutrik.com/en/product/ncj6fa-v-0 -neutrik jack combo a -0 -8 -7 -Connector_Audio -Jack_XLR-6.35mm_Neutrik_NCJ6FA-V-DA_Vertical -Combo A series, 3 pole XLR female receptacle with 6.35mm (1/4in) stereo jack, vertical PCB mount, asymmetric push, https://www.neutrik.com/en/product/ncj6fa-v-da -neutrik jack combo a -0 -8 -7 -Connector_Audio -Jack_XLR-6.35mm_Neutrik_NCJ6FA-V_Vertical -Combo A series, 3 pole XLR female receptacle with 6.35mm (1/4in) stereo jack, vertical PCB mount, https://www.neutrik.com/en/product/ncj6fa-v -neutrik jack combo a -0 -8 -7 -Connector_Audio -Jack_XLR-6.35mm_Neutrik_NCJ6FI-H-0_Horizontal -Combo I series, 3 pole XLR female receptacle with 6.35mm (1/4in) stereo jack without switching contact, horizontal PCB mount, https://www.neutrik.com/en/product/ncj6fi-h-0 -neutrik jack combo i -0 -7 -7 -Connector_Audio -Jack_XLR-6.35mm_Neutrik_NCJ6FI-H_Horizontal -Combo I series, 3 pole XLR female receptacle with 6.35mm (1/4in) stereo jack without switching contact, horizontal PCB mount, retention spring, https://www.neutrik.com/en/product/ncj6fi-h -neutrik jack combo i -0 -7 -7 -Connector_Audio -Jack_XLR-6.35mm_Neutrik_NCJ6FI-V-0_Vertical -Combo I series, 3 pole XLR female receptacle with 6.35mm (1/4in) stereo jack without switching contact, vertical PCB mount, https://www.neutrik.com/en/product/ncj6fi-v-0 -neutrik jack combo i -0 -7 -7 -Connector_Audio -Jack_XLR-6.35mm_Neutrik_NCJ6FI-V_Vertical -Combo I series, 3 pole XLR female receptacle with 6.35mm (1/4in) stereo jack without switching contact, vertical PCB mount, retention spring, https://www.neutrik.com/en/product/ncj6fi-v -neutrik jack combo i -0 -7 -7 -Connector_Audio -Jack_XLR-6.35mm_Neutrik_NCJ9FI-H-0_Horizontal -Combo I series, 3 pole XLR female receptacle with 6.35mm (1/4in) switching stereo jack, horizontal PCB mount, https://www.neutrik.com/en/product/ncj9fi-h-0 -neutrik jack combo i -0 -10 -10 -Connector_Audio -Jack_XLR-6.35mm_Neutrik_NCJ9FI-H_Horizontal -Combo I series, 3 pole XLR female receptacle with 6.35mm (1/4in) switching stereo jack, horizontal PCB mount, retention spring, https://www.neutrik.com/en/product/ncj9fi-h -neutrik jack combo i -0 -10 -10 -Connector_Audio -Jack_XLR-6.35mm_Neutrik_NCJ9FI-V-0_Vertical -Combo I series, 3 pole XLR female receptacle with 6.35mm (1/4in) switching stereo jack, vertical PCB mount, https://www.neutrik.com/en/product/ncj9fi-v-0 -neutrik jack combo i -0 -10 -10 -Connector_Audio -Jack_XLR-6.35mm_Neutrik_NCJ9FI-V_Vertical -Combo I series, 3 pole XLR female receptacle with 6.35mm (1/4in) switching stereo jack, vertical PCB mount, retention spring, https://www.neutrik.com/en/product/ncj9fi-v -neutrik jack combo i -0 -10 -10 -Connector_Audio -Jack_XLR-6.35mm_Neutrik_NCJ10FI-H-0_Horizontal -Combo I series, 3 pole XLR female receptacle with 6.35mm (1/4in) switching stereo jack and switching ground contact, horizontal PCB mount, https://www.neutrik.com/en/product/ncj10fi-h-0 -neutrik jack combo i -0 -11 -11 -Connector_Audio -Jack_XLR-6.35mm_Neutrik_NCJ10FI-H_Horizontal -Combo I series, 3 pole XLR female receptacle with 6.35mm (1/4in) switching stereo jack and switching ground contact, horizontal PCB mount, retention spring, https://www.neutrik.com/en/product/ncj10fi-h -neutrik jack combo i -0 -11 -11 -Connector_Audio -Jack_XLR-6.35mm_Neutrik_NCJ10FI-V-0_Vertical -Combo I series, 3 pole XLR female receptacle with 6.35mm (1/4in) switching stereo jack and switching ground contact, vertical PCB mount, https://www.neutrik.com/en/product/ncj10fi-v-0 -neutrik jack combo i -0 -11 -11 -Connector_Audio -Jack_XLR-6.35mm_Neutrik_NCJ10FI-V_Vertical -Combo I series, 3 pole XLR female receptacle with 6.35mm (1/4in) switching stereo jack and switching ground contact, vertical PCB mount, retention spring, https://www.neutrik.com/en/product/ncj10fi-v -neutrik jack combo i -0 -11 -11 -Connector_Audio -Jack_XLR_Neutrik_NC3FAAH-0_Horizontal -AA Series, 3 pole female XLR receptacle, grounding: without ground/shell contact, horizontal PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc3faah-0 -neutrik xlr aa -0 -3 -3 -Connector_Audio -Jack_XLR_Neutrik_NC3FAAH1-0_Horizontal -AA Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, horizontal PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc3faah1-0 -neutrik xlr aa -0 -3 -3 -Connector_Audio -Jack_XLR_Neutrik_NC3FAAH1-DA_Horizontal -AA Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, horizontal PCB mount, asymmetric push, https://www.neutrik.com/en/product/nc3faah1-da -neutrik xlr aa -0 -3 -3 -Connector_Audio -Jack_XLR_Neutrik_NC3FAAH1_Horizontal -AA Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, horizontal PCB mount, https://www.neutrik.com/en/product/nc3faah1 -neutrik xlr aa -0 -3 -3 -Connector_Audio -Jack_XLR_Neutrik_NC3FAAH2-0_Horizontal -AA Series, 3 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc3faah2-0 -neutrik xlr aa -0 -4 -4 -Connector_Audio -Jack_XLR_Neutrik_NC3FAAH2_Horizontal -AA Series, 3 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, https://www.neutrik.com/en/product/nc3faah2 -neutrik xlr aa -0 -4 -4 -Connector_Audio -Jack_XLR_Neutrik_NC3FAAH_Horizontal -AA Series, 3 pole female XLR receptacle, grounding: without ground/shell contact, horizontal PCB mount, https://www.neutrik.com/en/product/nc3faah -neutrik xlr aa -0 -3 -3 -Connector_Audio -Jack_XLR_Neutrik_NC3FAAV-0_Vertical -AA Series, 3 pole female receptacle, grounding: without ground/shell contact, vertical PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc3faav-0 -neutrik xlr aa -0 -3 -3 -Connector_Audio -Jack_XLR_Neutrik_NC3FAAV1-0_Vertical -AA Series, 3 pole female receptacle, grounding: mating connector shell to pin1 and front panel, vertical PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc3faav1-0 -neutrik xlr aa -0 -3 -3 -Connector_Audio -Jack_XLR_Neutrik_NC3FAAV1-DA_Vertical -AA Series, 3 pole female receptacle, grounding: mating connector shell to pin1 and front panel, vertical PCB mount, asymmetric push, https://www.neutrik.com/en/product/nc3faav1-da -neutrik xlr aa -0 -3 -3 -Connector_Audio -Jack_XLR_Neutrik_NC3FAAV1_Vertical -AA Series, 3 pole female receptacle, grounding: mating connector shell to pin1 and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc3faav1 -neutrik xlr aa -0 -3 -3 -Connector_Audio -Jack_XLR_Neutrik_NC3FAAV2-0_Vertical -AA Series, 3 pole female receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc3faav2-0 -neutrik xlr aa -0 -4 -4 -Connector_Audio -Jack_XLR_Neutrik_NC3FAAV2_Vertical -AA Series, 3 pole female receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc3faav2 -neutrik xlr aa -0 -4 -4 -Connector_Audio -Jack_XLR_Neutrik_NC3FAAV_Vertical -AA Series, 3 pole female receptacle, grounding: without ground/shell contact, vertical PCB mount, https://www.neutrik.com/en/product/nc3faav -neutrik xlr aa -0 -3 -3 -Connector_Audio -Jack_XLR_Neutrik_NC3FAH-0_Horizontal -A Series, 3 pole female XLR receptacle, grounding: without ground/shell contact, horizontal PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc3fah-0 -neutrik xlr a -0 -3 -3 -Connector_Audio -Jack_XLR_Neutrik_NC3FAH1-0_Horizontal -A Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, horizontal PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc3fah1-0 -neutrik xlr a -0 -3 -3 -Connector_Audio -Jack_XLR_Neutrik_NC3FAH1-DA_Horizontal -A Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, horizontal PCB mount, asymmetric push, https://www.neutrik.com/en/product/nc3fah1-da -neutrik xlr a -0 -3 -3 -Connector_Audio -Jack_XLR_Neutrik_NC3FAH1_Horizontal -A Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, horizontal PCB mount, https://www.neutrik.com/en/product/nc3fah1 -neutrik xlr a -0 -3 -3 -Connector_Audio -Jack_XLR_Neutrik_NC3FAH2-0_Horizontal -A Series, 3 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc3fah2-0 -neutrik xlr a -0 -4 -4 -Connector_Audio -Jack_XLR_Neutrik_NC3FAH2-DA_Horizontal -A Series, 3 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, asymmetric push, https://www.neutrik.com/en/product/nc3fah2-da -neutrik xlr a -0 -4 -4 -Connector_Audio -Jack_XLR_Neutrik_NC3FAH2_Horizontal -A Series, 3 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, https://www.neutrik.com/en/product/nc3fah2 -neutrik xlr a -0 -4 -4 -Connector_Audio -Jack_XLR_Neutrik_NC3FAHL-0_Horizontal -A Series, 3 pole female XLR receptacle, grounding: without ground/shell contact, lateral left PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc3fahl-0 -neutrik xlr a -0 -3 -3 -Connector_Audio -Jack_XLR_Neutrik_NC3FAHL1-0_Horizontal -A Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, lateral left PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc3fahl1-0 -neutrik xlr a -0 -3 -3 -Connector_Audio -Jack_XLR_Neutrik_NC3FAHL1_Horizontal -A Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, lateral left PCB mount, https://www.neutrik.com/en/product/nc3fahl1 -neutrik xlr a -0 -3 -3 -Connector_Audio -Jack_XLR_Neutrik_NC3FAHR-0_Horizontal -A Series, 3 pole female XLR receptacle, grounding: without ground / shell contact, lateral right PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc3fahr-0 -neutrik xlr a -0 -3 -3 -Connector_Audio -Jack_XLR_Neutrik_NC3FAHR1-0_Horizontal -A Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, lateral right PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc3fahr1-0 -neutrik xlr a -0 -3 -3 -Connector_Audio -Jack_XLR_Neutrik_NC3FAHR1_Horizontal -A Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, lateral right PCB mount, https://www.neutrik.com/en/product/nc3fahr1 -neutrik xlr a -0 -3 -3 -Connector_Audio -Jack_XLR_Neutrik_NC3FAHR2-0_Horizontal -A Series, 3 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, lateral right PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc3fahr2-0 -neutrik xlr a -0 -4 -4 -Connector_Audio -Jack_XLR_Neutrik_NC3FAHR2_Horizontal -A Series, 3 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, lateral right PCB mount, https://www.neutrik.com/en/product/nc3fahr2 -neutrik xlr a -0 -4 -4 -Connector_Audio -Jack_XLR_Neutrik_NC3FAH_Horizontal -A Series, 3 pole female XLR receptacle, grounding: without ground/shell contact, horizontal PCB mount, https://www.neutrik.com/en/product/nc3fah -neutrik xlr a -0 -3 -3 -Connector_Audio -Jack_XLR_Neutrik_NC3FAV-0_Vertical -A Series, 3 pole female XLR receptacle, grounding: without ground / shell contact, vertical PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc3fav-0 -neutrik xlr a -0 -3 -3 -Connector_Audio -Jack_XLR_Neutrik_NC3FAV1-0_Vertical -A Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, vertical PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc3fav1-0 -neutrik xlr a -0 -3 -3 -Connector_Audio -Jack_XLR_Neutrik_NC3FAV1-DA_Vertical -A Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, vertical PCB mount, asymmetric push, https://www.neutrik.com/en/product/nc3fav1-da -neutrik xlr a -0 -3 -3 -Connector_Audio -Jack_XLR_Neutrik_NC3FAV1_Vertical -A Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc3fav1 -neutrik xlr a -0 -3 -3 -Connector_Audio -Jack_XLR_Neutrik_NC3FAV2-0_Vertical -A Series, 3 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc3fav2-0 -neutrik xlr a -0 -4 -4 -Connector_Audio -Jack_XLR_Neutrik_NC3FAV2-DA_Vertical -A Series, 3 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, asymmetric push, https://www.neutrik.com/en/product/nc3fav2-da -neutrik xlr a -0 -4 -4 -Connector_Audio -Jack_XLR_Neutrik_NC3FAV2_Vertical -A Series, 3 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc3fav2 -neutrik xlr a -0 -4 -4 -Connector_Audio -Jack_XLR_Neutrik_NC3FAV_Vertical -A Series, 3 pole female XLR receptacle, grounding: without ground / shell contact, vertical PCB mount, https://www.neutrik.com/en/product/nc3fav -neutrik xlr a -0 -3 -3 -Connector_Audio -Jack_XLR_Neutrik_NC3FBH1-B_Horizontal -B Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, horizontal PCB mount, black chrome shell, https://www.neutrik.com/en/product/nc3fbh1-b -neutrik xlr b -0 -3 -3 -Connector_Audio -Jack_XLR_Neutrik_NC3FBH1-DA_Horizontal -B Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, horizontal PCB mount, asymmetric push, https://www.neutrik.com/en/product/nc3fbh1-da -neutrik xlr b -0 -3 -3 -Connector_Audio -Jack_XLR_Neutrik_NC3FBH1-E_Horizontal -B Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, horizontal PCB mount, additional ground contacts, https://www.neutrik.com/en/product/nc3fbh1-e -neutrik xlr b -0 -3 -3 -Connector_Audio -Jack_XLR_Neutrik_NC3FBH1_Horizontal -B Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, horizontal PCB mount, https://www.neutrik.com/en/product/nc3fbh1 -neutrik xlr b -0 -3 -3 -Connector_Audio -Jack_XLR_Neutrik_NC3FBH2-B_Horizontal -B Series, 3 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, black chrome shell, https://www.neutrik.com/en/product/nc3fbh2-b -neutrik xlr b -0 -4 -4 -Connector_Audio -Jack_XLR_Neutrik_NC3FBH2-DA_Horizontal -B Series, 3 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, asymmetric push, https://www.neutrik.com/en/product/nc3fbh2-da -neutrik xlr b -0 -4 -4 -Connector_Audio -Jack_XLR_Neutrik_NC3FBH2-E_Horizontal -B Series, 3 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, additional ground contacts, https://www.neutrik.com/en/product/nc3fbh2-e -neutrik xlr b -0 -4 -4 -Connector_Audio -Jack_XLR_Neutrik_NC3FBH2_Horizontal -B Series, 3 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, https://www.neutrik.com/en/product/nc3fbh2 -neutrik xlr b -0 -4 -4 -Connector_Audio -Jack_XLR_Neutrik_NC3FBHL1_Horizontal -B Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, lateral left PCB mount, https://www.neutrik.com/en/product/nc3fbhl1 -neutrik xlr b -0 -3 -3 -Connector_Audio -Jack_XLR_Neutrik_NC3FBV1-0_Vertical -B Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, vertical PCB mount, retention spring, no latch, https://www.neutrik.com/en/product/nc3fbv1-0 -neutrik xlr b -0 -3 -3 -Connector_Audio -Jack_XLR_Neutrik_NC3FBV1-B_Vertical -B Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, vertical PCB mount, black chrome shell, https://www.neutrik.com/en/product/nc3fbv1-b -neutrik xlr b -0 -3 -3 -Connector_Audio -Jack_XLR_Neutrik_NC3FBV1-DA_Vertical -B Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, vertical PCB mount, asymmetric push, https://www.neutrik.com/en/product/nc3fbv1-da -neutrik xlr b -0 -3 -3 -Connector_Audio -Jack_XLR_Neutrik_NC3FBV1_Vertical -B Series, 3 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc3fbv1 -neutrik xlr b -0 -3 -3 -Connector_Audio -Jack_XLR_Neutrik_NC3FBV2-B_Vertical -B Series, 3 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, black chrome shell, https://www.neutrik.com/en/product/nc3fbv2-b -neutrik xlr b -0 -4 -4 -Connector_Audio -Jack_XLR_Neutrik_NC3FBV2-DA_Vertical -B Series, 3 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, asymmetric push, https://www.neutrik.com/en/product/nc3fbv2-da -neutrik xlr b -0 -4 -4 -Connector_Audio -Jack_XLR_Neutrik_NC3FBV2-SW_Vertical -B Series, 3 pole female XLR receptacle, switching contacts, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc3fbv2-sw -neutrik xlr b -0 -7 -7 -Connector_Audio -Jack_XLR_Neutrik_NC3FBV2_Vertical -B Series, 3 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc3fbv2 -neutrik xlr b -0 -4 -4 -Connector_Audio -Jack_XLR_Neutrik_NC3MAAH-0_Horizontal -AA Series, 3 pole male XLR receptacle, grounding: ground contact connected to shell ground, but not to front panel and Pin 1, horizontal PCB mount, https://www.neutrik.com/en/product/nc3maah-0 -neutrik xlr aa -0 -4 -4 -Connector_Audio -Jack_XLR_Neutrik_NC3MAAH-1_Horizontal -AA Series, 3 pole male XLR receptacle, grounding: mating connector shell to pin1 and front panel, horizontal PCB mount, https://www.neutrik.com/en/product/nc3maah-1 -neutrik xlr aa -0 -3 -3 -Connector_Audio -Jack_XLR_Neutrik_NC3MAAH_Horizontal -AA Series, 3 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, https://www.neutrik.com/en/product/nc3maah -neutrik xlr aa -0 -4 -4 -Connector_Audio -Jack_XLR_Neutrik_NC3MAAV-0_Vertical -AA Series, 3 pole male XLR receptacle, grounding: ground contact connected to shell ground, but not to front panel and Pin 1, vertical PCB mount, https://www.neutrik.com/en/product/nc3maav-0 -neutrik xlr aa -0 -4 -4 -Connector_Audio -Jack_XLR_Neutrik_NC3MAAV-1_Vertical -AA Series, 3 pole male XLR receptacle, grounding: mating connector shell to pin1 and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc3maav-1 -neutrik xlr aa -0 -3 -3 -Connector_Audio -Jack_XLR_Neutrik_NC3MAAV_Vertical -AA Series, 3 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc3maav -neutrik xlr aa -0 -4 -4 -Connector_Audio -Jack_XLR_Neutrik_NC3MAFH-PH_Horizontal -A Series, Chassis connector H female (A series layout), mates with Phoenix MSTB2,5/3-ST, horizontal PCB mount, https://www.neutrik.com/en/product/nc3mafh-ph -neutrik xlr a -0 -3 -3 -Connector_Audio -Jack_XLR_Neutrik_NC3MAH-0_Horizontal -A Series, 3 pole male XLR receptacle, grounding: ground contact connected to shell ground, but not to front panel and Pin 1, horizontal PCB mount, https://www.neutrik.com/en/product/nc3mah-0 -neutrik xlr a -0 -4 -4 -Connector_Audio -Jack_XLR_Neutrik_NC3MAHL_Horizontal -A Series, 3 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, lateral left PCB mount, https://www.neutrik.com/en/product/nc3mahl -neutrik xlr a -0 -4 -4 -Connector_Audio -Jack_XLR_Neutrik_NC3MAHR_Horizontal -A Series, 3 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, lateral right PCB mount, https://www.neutrik.com/en/product/nc3mahr -neutrik xlr a -0 -4 -4 -Connector_Audio -Jack_XLR_Neutrik_NC3MAH_Horizontal -A Series, 3 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, https://www.neutrik.com/en/product/nc3mah -neutrik xlr a -0 -4 -4 -Connector_Audio -Jack_XLR_Neutrik_NC3MAMH-PH_Horizontal -A Series, Chassis connector Phoenix H male (A series layout), mates with Phoenix MSTB 2,5/3-ST, horizontal PCB mount, https://www.neutrik.com/en/product/nc3mamh-ph -neutrik xlr a -0 -3 -3 -Connector_Audio -Jack_XLR_Neutrik_NC3MAV-0_Vertical -A Series, 3 pole male XLR receptacle, grounding: ground contact connected to shell ground, but not to front panel and Pin 1, vertical PCB mount, https://www.neutrik.com/en/product/nc3mav-0 -neutrik xlr a -0 -4 -4 -Connector_Audio -Jack_XLR_Neutrik_NC3MAV_Vertical -A Series, 3 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc3mav -neutrik xlr a -0 -4 -4 -Connector_Audio -Jack_XLR_Neutrik_NC3MBH-0_Horizontal -B Series, 3 pole male XLR receptacle, grounding: ground contact connected to shell ground, but not to front panel and Pin 1, steel retention lug, horizontal PCB mount, https://www.neutrik.com/en/product/nc3mbh-0 -neutrik xlr b -0 -4 -4 -Connector_Audio -Jack_XLR_Neutrik_NC3MBH-1_Horizontal -B Series, 3 pole male XLR receptacle, grounding: mating connector shell to pin1 and front panel, steel retention lug, horizontal PCB mount, https://www.neutrik.com/en/product/nc3mbh-1 -neutrik xlr b -0 -3 -3 -Connector_Audio -Jack_XLR_Neutrik_NC3MBH-B_Horizontal -B Series, 3 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, steel retention lug, horizontal PCB mount, black chrome shell, https://www.neutrik.com/en/product/nc3mbh-b -neutrik xlr b -0 -4 -4 -Connector_Audio -Jack_XLR_Neutrik_NC3MBH-E_Horizontal -B Series, 3 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, steel retention lug, horizontal PCB mount, additional ground contacts, https://www.neutrik.com/en/product/nc3mbh-e -neutrik xlr b -0 -4 -4 -Connector_Audio -Jack_XLR_Neutrik_NC3MBHL-B_Horizontal -B Series, 3 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, steel retention lug, lateral left PCB mount, black chrome shell, https://www.neutrik.com/en/product/nc3mbhl-b -neutrik xlr b -0 -4 -4 -Connector_Audio -Jack_XLR_Neutrik_NC3MBHL_Horizontal -B Series, 3 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, steel retention lug, lateral left PCB mount, https://www.neutrik.com/en/product/nc3mbhl -neutrik xlr b -0 -4 -4 -Connector_Audio -Jack_XLR_Neutrik_NC3MBHR-B_Horizontal -B Series, 3 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, steel retention lug, lateral right PCB mount, black chrome shell, https://www.neutrik.com/en/product/nc3mbhr-b -neutrik xlr b -0 -4 -4 -Connector_Audio -Jack_XLR_Neutrik_NC3MBHR_Horizontal -B Series, 3 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, steel retention lug, lateral right PCB mount, https://www.neutrik.com/en/product/nc3mbhr -neutrik xlr b -0 -4 -4 -Connector_Audio -Jack_XLR_Neutrik_NC3MBH_Horizontal -B Series, 3 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, steel retention lug, horizontal PCB mount, https://www.neutrik.com/en/product/nc3mbh -neutrik xlr b -0 -4 -4 -Connector_Audio -Jack_XLR_Neutrik_NC3MBV-0_Vertical -B Series, 3 pole male XLR receptacle, grounding: ground contact connected to shell ground, but not to front panel and Pin 1, steel retention lug, vertical PCB mount, https://www.neutrik.com/en/product/nc3mbv-0 -neutrik xlr b -0 -4 -4 -Connector_Audio -Jack_XLR_Neutrik_NC3MBV-1_Vertical -B Series, 3 pole male XLR receptacle, grounding: mating connector shell to pin1 and front panel, steel retention lug, vertical PCB mount, https://www.neutrik.com/en/product/nc3mbv-1 -neutrik xlr b -0 -3 -3 -Connector_Audio -Jack_XLR_Neutrik_NC3MBV-B_Vertical -B Series, 3 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, steel retention lug, vertical PCB mount, black chrome shell, https://www.neutrik.com/en/product/nc3mbv-b -neutrik xlr b -0 -4 -4 -Connector_Audio -Jack_XLR_Neutrik_NC3MBV-E_Vertical -B Series, 3 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, steel retention lug, vertical PCB mount, additional ground contacts, https://www.neutrik.com/en/product/nc3mbv-e -neutrik xlr b -0 -4 -4 -Connector_Audio -Jack_XLR_Neutrik_NC3MBV-SW_Vertical -B Series, 3 pole male XLR receptacle, switching contacts, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc3mbv-sw -neutrik xlr b -0 -7 -7 -Connector_Audio -Jack_XLR_Neutrik_NC3MBV_Vertical -B Series, 3 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, steel retention lug, vertical PCB mount, https://www.neutrik.com/en/product/nc3mbv -neutrik xlr b -0 -4 -4 -Connector_Audio -Jack_XLR_Neutrik_NC4FAH-0_Horizontal -A Series, 4 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc4fah-0 -neutrik xlr a -0 -5 -5 -Connector_Audio -Jack_XLR_Neutrik_NC4FAH_Horizontal -A Series, 4 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, https://www.neutrik.com/en/product/nc4fah -neutrik xlr a -0 -5 -5 -Connector_Audio -Jack_XLR_Neutrik_NC4FAV-0_Vertical -A Series, 4 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc4fav-0 -neutrik xlr a -0 -5 -5 -Connector_Audio -Jack_XLR_Neutrik_NC4FAV_Vertical -A Series, 4 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc4fav -neutrik xlr a -0 -5 -5 -Connector_Audio -Jack_XLR_Neutrik_NC4FBH_Horizontal -B Series, 4 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, https://www.neutrik.com/en/product/nc4fbh -neutrik xlr b -0 -5 -5 -Connector_Audio -Jack_XLR_Neutrik_NC4FBV_Vertical -B Series, 4 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc4fbv -neutrik xlr b -0 -5 -5 -Connector_Audio -Jack_XLR_Neutrik_NC4MAH_Horizontal -A Series, 4 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, https://www.neutrik.com/en/product/nc4mah -neutrik xlr a -0 -5 -5 -Connector_Audio -Jack_XLR_Neutrik_NC4MAV_Vertical -A Series, 4 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc4mav -neutrik xlr a -0 -5 -5 -Connector_Audio -Jack_XLR_Neutrik_NC4MBH_Horizontal -B Series, 4 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, https://www.neutrik.com/en/product/nc4mbh -neutrik xlr b -0 -5 -5 -Connector_Audio -Jack_XLR_Neutrik_NC4MBV_Vertical -B Series, 4 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc4mbv -neutrik xlr b -0 -5 -5 -Connector_Audio -Jack_XLR_Neutrik_NC5FAH-0_Horizontal -A Series, 5 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, retention spring instead of latch, https://www.neutrik.com/en/product/nc5fah-0 -neutrik xlr a -0 -6 -6 -Connector_Audio -Jack_XLR_Neutrik_NC5FAH-DA_Horizontal -A Series, 5 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, horizontal PCB mount, asymmetric push, https://www.neutrik.com/en/product/nc5fah-da -neutrik xlr a -0 -6 -6 -Connector_Audio -Jack_XLR_Neutrik_NC5FAH_Horizontal -A Series, 5 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, https://www.neutrik.com/en/product/nc5fah -neutrik xlr a -0 -6 -6 -Connector_Audio -Jack_XLR_Neutrik_NC5FAV-DA_Vertical -A Series, 5 pole female XLR receptacle, grounding: mating connector shell to pin1 and front panel, horizontal PCB mount, asymmetric push, https://www.neutrik.com/en/product/nc5fav-da -neutrik xlr a -0 -6 -6 -Connector_Audio -Jack_XLR_Neutrik_NC5FAV-SW_Vertical -A Series, 5 pole female XLR receptacle, switching contacts, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, color coding possible, https://www.neutrik.com/en/product/nc5fav-sw -neutrik xlr a -0 -9 -9 -Connector_Audio -Jack_XLR_Neutrik_NC5FAV_Vertical -A Series, 5 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc5fav -neutrik xlr a -0 -6 -6 -Connector_Audio -Jack_XLR_Neutrik_NC5FBH-B_Horizontal -B Series, 5 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, black chrome shell, https://www.neutrik.com/en/product/nc5fbh-b -neutrik xlr b -0 -6 -6 -Connector_Audio -Jack_XLR_Neutrik_NC5FBH_Horizontal -B Series, 5 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, https://www.neutrik.com/en/product/nc5fbh -neutrik xlr b -0 -6 -6 -Connector_Audio -Jack_XLR_Neutrik_NC5FBV-B_Vertical -B Series, 5 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, black chrome shell, https://www.neutrik.com/en/product/nc5fbv-b -neutrik xlr b -0 -6 -6 -Connector_Audio -Jack_XLR_Neutrik_NC5FBV-SW_Vertical -B Series, 5 pole female XLR receptacle, switching contacts, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc5fbv-sw -neutrik xlr b -0 -9 -9 -Connector_Audio -Jack_XLR_Neutrik_NC5FBV_Vertical -B Series, 5 pole female XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc5fbv -neutrik xlr b -0 -6 -6 -Connector_Audio -Jack_XLR_Neutrik_NC5MAH_Horizontal -A Series, 5 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, https://www.neutrik.com/en/product/nc5mah -neutrik xlr a -0 -6 -6 -Connector_Audio -Jack_XLR_Neutrik_NC5MAV-SW_Vertical -A Series, 5 pole male XLR receptacle, switching contacts, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc5mav-sw -neutrik xlr a -0 -9 -9 -Connector_Audio -Jack_XLR_Neutrik_NC5MAV_Vertical -A Series, 5 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc5mav -neutrik xlr a -0 -6 -6 -Connector_Audio -Jack_XLR_Neutrik_NC5MBH-B_Horizontal -B Series, 5 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, black chrome shell, https://www.neutrik.com/en/product/nc5mbh-b -neutrik xlr b -0 -6 -6 -Connector_Audio -Jack_XLR_Neutrik_NC5MBH_Horizontal -B Series, 5 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, horizontal PCB mount, https://www.neutrik.com/en/product/nc5mbh -neutrik xlr b -0 -6 -6 -Connector_Audio -Jack_XLR_Neutrik_NC5MBV-B_Vertical -B Series, 5 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, black chrome shell, https://www.neutrik.com/en/product/nc5mbv-b -neutrik xlr b -0 -6 -6 -Connector_Audio -Jack_XLR_Neutrik_NC5MBV-SW_Vertical -B Series, 5 pole male XLR receptacle, switching contacts, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc5mbv-sw -neutrik xlr b -0 -9 -9 -Connector_Audio -Jack_XLR_Neutrik_NC5MBV_Vertical -B Series, 5 pole male XLR receptacle, grounding: separate ground contact to mating connector shell and front panel, vertical PCB mount, https://www.neutrik.com/en/product/nc5mbv -neutrik xlr b -0 -6 -6 -Connector_Audio -Jack_speakON-6.35mm_Neutrik_NLJ2MDXX-H_Horizontal -speakON Combo, 2 pole combination of speakON socket and 6.35mm (1/4in) jack receptacle, horizontal pcb mount, replaces NLJ2MD-H, https://www.neutrik.com/en/product/nlj2mdxx-h -neutrik speakon combo -0 -2 -2 -Connector_Audio -Jack_speakON-6.35mm_Neutrik_NLJ2MDXX-V_Vertical -speakON Combo, 2 pole combination of speakON socket and 6.35mm (1/4in) jack receptacle, vertical pcb mount, replaces NLJ2MD-V, https://www.neutrik.com/en/product/nlj2mdxx-v -neutrik speakon combo -0 -2 -2 -Connector_Audio -Jack_speakON_Neutrik_NL2MDXX-H-3_Horizontal -speakON Chassis Connectors, 2 pole chassis connector, gray D-size flange, countersunk thru holes, horizontal PCB, replaces NL2MD-H, https://www.neutrik.com/en/product/nl2mdxx-h-3 -neutrik speakon -0 -2 -2 -Connector_Audio -Jack_speakON_Neutrik_NL2MDXX-V_Vertical -speakON Chassis Connectors, 2 pole chassis connector, black D-size flange, countersunk thru holes, vertical PCB mount, replaces NL2MD-V, https://www.neutrik.com/en/product/nl2mdxx-v -neutrik speakon -0 -2 -2 -Connector_Audio -Jack_speakON_Neutrik_NL4MDXX-H-2_Horizontal -speakON Chassis Connectors, 4 pole chassis connector, black D-size flange, mirrored self tapping screw holes (A-screw), horizontal PCB mount, replaces NL4MD-H-2, https://www.neutrik.com/en/product/nl4mdxx-h-2 -neutrik speakon -0 -4 -4 -Connector_Audio -Jack_speakON_Neutrik_NL4MDXX-H-3_Horizontal -speakON Chassis Connectors, 4 pole chassis connector, grey D-size flange, self tapping screw holes (A-screw), horizontal PCB mount, replaces NL4MD-H, NL4MD-H-1, NL4MD-H-3, https://www.neutrik.com/en/product/nl4mdxx-h-3 -neutrik speakon -0 -4 -4 -Connector_Audio -Jack_speakON_Neutrik_NL4MDXX-V-2_Vertical -speakON Chassis Connectors, 4 pole chassis connector, black D-size flange, mirrored self tapping screw holes (A-screw), vertical PCB mount, replaces NL4MD-V-2, https://www.neutrik.com/en/product/nl4mdxx-v-2 -neutrik speakon -0 -4 -4 -Connector_Audio -Jack_speakON_Neutrik_NL4MDXX-V-3_Vertical -speakON Chassis Connectors, 4 pole chassis connector, grey D-size flange, self tapping screw holes (A-screw), vertical PCB mount, replaces NL4MD-V-1, https://www.neutrik.com/en/product/nl4mdxx-v-3 -neutrik speakon -0 -4 -4 -Connector_Audio -Jack_speakON_Neutrik_NL4MDXX-V_Vertical -speakON Chassis Connectors, 4 pole chassis connector, black D-size flange, countersunk thru holes, vertical PCB mount, replaces NL4MD-V, NL4MD-V-R, NL4MD-V-S, https://www.neutrik.com/en/product/nl4mdxx-v -neutrik speakon -0 -4 -4 -Connector_Audio -Jack_speakON_Neutrik_NL8MDXX-V-3_Vertical -speakON Chassis Connectors, 8 pole chassis connector, nickel metal square G-size flange, self tapping screw holes (A-screw), vertical PCB mount, replaces NL8MD-V-1, https://www.neutrik.com/en/product/nl8mdxx-v-3 -neutrik speakon -0 -8 -8 -Connector_Audio -Jack_speakON_Neutrik_NL8MDXX-V_Vertical -speakON Chassis Connectors, 8 pole chassis connector, nickel metal square G-size flange, countersunk thru holes, vertical PCB mount, replaces NL8MD-V, https://www.neutrik.com/en/product/nl8mdxx-v -neutrik speakon -0 -8 -8 -Connector_Audio -Jack_speakON_Neutrik_NLT4MD-V_Vertical -STX Series, 4 pole male chassis connector, metal housing, vertical PCB mount, self tapping screw holes (A-screw), https://www.neutrik.com/en/product/nlt4md-v -neutrik speakon stx -0 -4 -4 -Connector_Audio -MiniXLR-5_Switchcraft_TRAPC_Horizontal -http://www.switchcraft.com/ProductSummary.aspx?Parent=620 http://www.switchcraft.com/Drawings/TRAPC_X-TRASM_X_SERIES_CD.PDF -THT Mini XLR 5Pin right angle -0 -5 -5 -Connector_Audio -Plug_3.5mm_CUI_SP-3541 -4 contacts, 3.5mm audio plug, https://www.cuidevices.com/product/resource/pdf/sp-3541.pdf -3.5mm plug TRRS -0 -4 -4 -Connector_BarrelJack -BarrelJack_CLIFF_FC681465S_SMT_Horizontal -Surface-mount DC Barrel Jack, https://www.cliffuk.co.uk/products/dcconnectors/FC681465S.pdf -Power Jack SMT -0 -4 -3 -Connector_BarrelJack -BarrelJack_CUI_PJ-036AH-SMT_Horizontal -Surface-mount DC Barrel Jack, http://www.cui.com/product/resource/pj-036ah-smt.pdf -Power Jack SMT -0 -3 -3 -Connector_BarrelJack -BarrelJack_CUI_PJ-063AH_Horizontal -Barrel Jack, 2.0mm ID, 5.5mm OD, 24V, 8A, no switch, https://www.cui.com/product/resource/pj-063ah.pdf -barrel jack cui dc power -0 -4 -3 -Connector_BarrelJack -BarrelJack_CUI_PJ-063AH_Horizontal_CircularHoles -Barrel Jack, 2.0mm ID, 5.5mm OD, 24V, 8A, no switch, https://www.cui.com/product/resource/pj-063ah.pdf -barrel jack cui dc power -0 -4 -3 -Connector_BarrelJack -BarrelJack_CUI_PJ-102AH_Horizontal -Thin-pin DC Barrel Jack, https://cdn-shop.adafruit.com/datasheets/21mmdcjackDatasheet.pdf -Power Jack -0 -3 -3 -Connector_BarrelJack -BarrelJack_GCT_DCJ200-10-A_Horizontal -Barrel jack connector (5.5 mm outer diameter, 2.05 inner diameter ), https://gct.co/files/drawings/dcj200-10.pdf -connector barrel jack -0 -3 -3 -Connector_BarrelJack -BarrelJack_Horizontal -DC Barrel Jack -Power Jack -0 -3 -3 -Connector_BarrelJack -BarrelJack_Kycon_KLDX-0202-xC_Horizontal -DC Barrel Jack 2mm or 2.5mm center pin, https://www.kycon.com/Pub_Eng_Draw/KLDX-0202-AC%20&%20BC.pdf -power jack 2mm 2.5mm KLDX-0202-BC KLDX-0202-AC -0 -3 -3 -Connector_BarrelJack -BarrelJack_SwitchcraftConxall_RAPC10U_Horizontal -DC Power Jack, 13A, 24V, Panel Mount,Through-hole, https://www.switchcraft.com/Drawings/RAPC10U_CD.pdf -barreljack switchcraftconxall dc power -0 -2 -2 -Connector_BarrelJack -BarrelJack_Wuerth_6941xx301002 -Wuerth electronics barrel jack connector (5.5mm outher diameter, inner diameter 2.05mm or 2.55mm depending on exact order number), See: http://katalog.we-online.de/em/datasheet/6941xx301002.pdf -connector barrel jack -0 -3 -3 -Connector_Card -CF-Card_3M_N7E50-A516xx-30 -Compact Flash Card connector, polarization inverse (https://multimedia.3m.com/mws/media/22424O/3mtm-cf-card-header-type-i-low-profile-surface-mount-ts0747.pdf) -connector cf -0 -54 -50 -Connector_Card -CF-Card_3M_N7E50-E516xx-30 -Compact Flash Card connector, normal polarization (https://multimedia.3m.com/mws/media/22424O/3mtm-cf-card-header-type-i-low-profile-surface-mount-ts0747.pdf) -connector cf -0 -54 -50 -Connector_Card -SD_Hirose_DM1AA_SF_PEJ82 -SD, SMD, top-mount, push-push (https://www.hirose.com/product/document?clcode=CL0609-0004-8-82&productname=DM1AA-SF-PEJ(82)&series=DM1&documenttype=2DDrawing&lang=en&documentid=0000915301) -SD card connector -0 -16 -13 -Connector_Card -SD_Kyocera_145638009211859+ -SD Card Connector, Normal Type, Outer Tail, Without Ejector (https://global.kyocera.com/prdct/electro/product/pdf/5638.pdf) -sd card smt -0 -13 -13 -Connector_Card -SD_Kyocera_145638009511859+ -SD Card Connector, Normal Type, Outer Tail, Spring Eject Type (https://global.kyocera.com/prdct/electro/product/pdf/5638.pdf) -sd card smt -0 -13 -13 -Connector_Card -SD_Kyocera_145638109211859+ -SD Card Connector, Reverse Type, Outer Tail, Without Ejector (https://global.kyocera.com/prdct/electro/product/pdf/5638.pdf) -sd card smt -0 -13 -13 -Connector_Card -SD_Kyocera_145638109511859+ -SD Card Connector, Reverse Type, Outer Tail, Spring Eject Type (https://global.kyocera.com/prdct/electro/product/pdf/5638.pdf) -sd card smt -0 -13 -13 -Connector_Card -SD_TE_2041021 -SD card connector, top mount, SMT (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F2041021%7FB%7Fpdf%7FEnglish%7FENG_CD_2041021_B_C_2041021_B.pdf%7F2041021-4) -sd card -0 -15 -12 -Connector_Card -microSD_HC_Hirose_DM3AT-SF-PEJM5 -Micro SD, SMD, right-angle, push-pull (https://www.hirose.com/product/en/download_file/key_name/DM3AT-SF-PEJM5/category/Drawing%20(2D)/doc_file_id/44099/?file_category_id=6&item_id=06090031000&is_series=) -Micro SD -0 -14 -11 -Connector_Card -microSD_HC_Hirose_DM3BT-DSF-PEJS -Micro SD, SMD, reverse on-board, right-angle, push-pull (https://www.hirose.com/product/en/download_file/key_name/DM3BT-DSF-PEJS/category/Drawing%20(2D)/doc_file_id/44097/?file_category_id=6&item_id=06090029900&is_series=) -Micro SD -0 -16 -11 -Connector_Card -microSD_HC_Hirose_DM3D-SF -Micro SD, SMD, right-angle, push-pull (https://media.digikey.com/PDF/Data%20Sheets/Hirose%20PDFs/DM3D-SF.pdf) -Micro SD -0 -14 -11 -Connector_Card -microSD_HC_Molex_47219-2001 -1.10mm Pitch microSD Card Connector, Hinge Type, https://www.molex.com/pdm_docs/sd/472192001_sd.pdf -Micro SD -0 -12 -9 -Connector_Card -microSD_HC_Molex_104031-0811 -1.10mm Pitch microSD Memory Card Connector, Surface Mount, Push-Pull Type, 1.42mm Height, with Detect Switch (https://www.molex.com/pdm_docs/sd/1040310811_sd.pdf) -microSD SD molex -0 -14 -11 -Connector_Card -microSD_HC_Wuerth_693072010801 -http://katalog.we-online.de/em/datasheet/693072010801.pdf -Micro SD Wuerth Wurth Würth -0 -12 -9 -Connector_Card -microSIM_JAE_SF53S006VCBR2000 -https://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ115712.pdf -microSIM GSM Card -0 -14 -7 -Connector_Coaxial -BNC_Amphenol_031-5539_Vertical -BNC coaxial connector vertical, Amphenol 031-71059, https://www.amphenolrf.com/library/download/link/link_id/594427/parent/031-5539/ -BNC Amphenol Vertical -0 -4 -2 -Connector_Coaxial -BNC_Amphenol_031-6575_Horizontal -dual independently isolated BNC plug (https://www.amphenolrf.com/downloads/dl/file/id/2980/product/644/031_6575_customer_drawing.pdf) -Dual BNC Amphenol Horizontal -0 -6 -4 -Connector_Coaxial -BNC_Amphenol_B6252HB-NPP3G-50_Horizontal -http://www.farnell.com/datasheets/612848.pdf -BNC Amphenol Horizontal -0 -4 -2 -Connector_Coaxial -BNC_PanelMountable_Vertical -Panel-mountable BNC connector mounted through PCB, vertical -BNC connector -0 -2 -2 -Connector_Coaxial -BNC_TEConnectivity_1478035_Horizontal -BNC RF Interface, PCB mount 4 pin, Right Angle, Bayonet, 50Ohm, 4GHz, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1478035%7FB1%7Fpdf%7FEnglish%7FENG_CD_1478035_B1.pdf%7F1-1478035-0 -BNC RF interface bayonet 50ohm -0 -5 -2 -Connector_Coaxial -BNC_TEConnectivity_1478204_Vertical -BNC female PCB mount 4 pin straight chassis connector http://www.te.com/usa-en/product-1-1478204-0.html -BNC female PCB mount 4 pin straight chassis connector -0 -5 -2 -Connector_Coaxial -BNC_Win_364A2x95_Horizontal -Dual front isolated BNC plug (https://www.winconn.com/wp-content/uploads/364A2595.pdf) -Dual BNC Horizontal Isolated -0 -6 -3 -Connector_Coaxial -CoaxialSwitch_Hirose_MS-156C3_Horizontal -Subminiature Coaxial Switch 1.35mm High, DC to 11GHz -Switch Coaxial RF -0 -12 -3 -Connector_Coaxial -MMCX_Molex_73415-0961_Horizontal_0.8mm-PCB -Molex MMCX Horizontal Coaxial https://www.molex.com/pdm_docs/sd/734150961_sd.pdf -Molex MMCX Horizontal Coaxial -0 -3 -2 -Connector_Coaxial -MMCX_Molex_73415-0961_Horizontal_1.0mm-PCB -Molex MMCX Horizontal Coaxial https://www.molex.com/pdm_docs/sd/734150961_sd.pdf -Molex MMCX Horizontal Coaxial -0 -3 -2 -Connector_Coaxial -MMCX_Molex_73415-0961_Horizontal_1.6mm-PCB -Molex MMCX Horizontal Coaxial https://www.molex.com/pdm_docs/sd/734150961_sd.pdf -Molex MMCX Horizontal Coaxial -0 -3 -2 -Connector_Coaxial -MMCX_Molex_73415-1471_Vertical -http://www.molex.com/pdm_docs/sd/734151471_sd.pdf -Molex MMCX Coaxial Connector 50 ohms Female Jack Vertical THT -0 -5 -2 -Connector_Coaxial -SMA_Amphenol_901-143_Horizontal - Amphenol RF 901-143 https://www.amphenolrf.com/library/download/link/link_id/585682 -SMA THT Female Jack Horizontal -0 -5 -2 -Connector_Coaxial -SMA_Amphenol_901-144_Vertical -https://www.amphenolrf.com/downloads/dl/file/id/7023/product/3103/901_144_customer_drawing.pdf -SMA THT Female Jack Vertical -0 -5 -2 -Connector_Coaxial -SMA_Amphenol_132134-10_Vertical -https://www.amphenolrf.com/downloads/dl/file/id/4007/product/2974/132134_10_customer_drawing.pdf -SMA SMD Female Jack Vertical -0 -3 -2 -Connector_Coaxial -SMA_Amphenol_132134-11_Vertical -https://www.amphenolrf.com/downloads/dl/file/id/3406/product/2975/132134_11_customer_drawing.pdf -SMA THT Female Jack Vertical ExtendedLegs -0 -5 -2 -Connector_Coaxial -SMA_Amphenol_132134-14_Vertical -https://www.amphenolrf.com/downloads/dl/file/id/1793/product/2976/132134_14_customer_drawing.pdf -SMA THT Female Jack Vertical ExtendedLegs -0 -5 -2 -Connector_Coaxial -SMA_Amphenol_132134-16_Vertical -https://www.amphenolrf.com/downloads/dl/file/id/1141/product/2978/132134_16_customer_drawing.pdf -SMA THT Female Jack Vertical ExtendedLegs -0 -5 -2 -Connector_Coaxial -SMA_Amphenol_132134_Vertical -https://www.amphenolrf.com/downloads/dl/file/id/2187/product/2843/132134_customer_drawing.pdf -SMA THT Female Jack Vertical ExtendedLegs -0 -5 -2 -Connector_Coaxial -SMA_Amphenol_132203-12_Horizontal -https://www.amphenolrf.com/media/downloads/1769/132203-12.pdf -SMA THT Female Jack Horizontal -0 -5 -2 -Connector_Coaxial -SMA_Amphenol_132289_EdgeMount -http://www.amphenolrf.com/132289.html -SMA -0 -5 -2 -Connector_Coaxial -SMA_Amphenol_132291-12_Vertical -https://www.amphenolrf.com/downloads/dl/file/id/1688/product/3020/132291_12_customer_drawing.pdf -SMA THT Female Jack Vertical Bulkhead -0 -5 -2 -Connector_Coaxial -SMA_Amphenol_132291_Vertical -https://www.amphenolrf.com/downloads/dl/file/id/3222/product/2918/132291_customer_drawing.pdf -SMA THT Female Jack Vertical Bulkhead -0 -5 -2 -Connector_Coaxial -SMA_Molex_73251-1153_EdgeMount_Horizontal -Molex SMA RF Connectors, Edge Mount, (http://www.molex.com/pdm_docs/sd/732511150_sd.pdf) -sma edge -0 -11 -2 -Connector_Coaxial -SMA_Molex_73251-2120_EdgeMount_Horizontal -Molex SMA RF Connector, Edge Mount, (http://www.molex.com/pdm_docs/sd/732512120_sd.pdf) -sma edge -0 -11 -2 -Connector_Coaxial -SMA_Molex_73251-2200_Horizontal -https://www.molex.com/webdocs/datasheets/pdf/en-us/0732512200_RF_COAX_CONNECTORS.pdf -SMA THT Female Jack Horizontal -0 -5 -2 -Connector_Coaxial -SMA_Samtec_SMA-J-P-X-ST-EM1_EdgeMount -Connector SMA, 0Hz to 20GHz, 50Ohm, Edge Mount (http://suddendocs.samtec.com/prints/sma-j-p-x-st-em1-mkt.pdf) -SMA Straight Samtec Edge Mount -0 -5 -2 -Connector_Coaxial -SMA_Wurth_60312002114503_Vertical -https://www.we-online.de/katalog/datasheet/60312002114503.pdf -SMA THT Female Jack Vertical ExtendedLegs -0 -5 -2 -Connector_Coaxial -SMB_Jack_Vertical -SMB pcb mounting jack -SMB Jack Striaght -0 -5 -2 -Connector_Coaxial -U.FL_Hirose_U.FL-R-SMT-1_Vertical -Hirose U.FL Coaxial https://www.hirose.com/product/en/products/U.FL/U.FL-R-SMT-1%2810%29/ -Hirose U.FL Coaxial -0 -3 -2 -Connector_Coaxial -U.FL_Molex_MCRF_73412-0110_Vertical -Molex Microcoaxial RF Connectors (MCRF), mates Hirose U.FL, (http://www.molex.com/pdm_docs/sd/734120110_sd.pdf) -mcrf hirose ufl u.fl microcoaxial -0 -4 -2 -Connector_Coaxial -WR-MMCX_Wuerth_66012102111404_Vertical -Würth WR-MMCX PCB SMT Jack, Vertical (https://www.we-online.com/components/products/datasheet/66012102111404.pdf) -Coaxial Connector 50 ohms Female -0 -3 -2 -Connector_Coaxial -WR-MMCX_Wuerth_66011102111302_Horizontal -Würth WR-MMCX PCB SMT Jack, Horizontal (https://www.we-online.com/components/products/datasheet/66011102111302.pdf) -Coaxial Connector 50 ohms Female -0 -7 -2 -Connector_DIN -DIN41612_B2_2x8_Female_Vertical_THT -DIN41612 connector, type B/2, Vertical, 2 rows 16 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf -DIN 41612 IEC 60603 B/2 -0 -16 -16 -Connector_DIN -DIN41612_B2_2x8_Male_Horizontal_THT -DIN41612 connector, type B/2, Horizontal, 2 rows 16 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf -DIN 41612 IEC 60603 B/2 -0 -16 -16 -Connector_DIN -DIN41612_B2_2x16_Female_Vertical_THT -DIN41612 connector, type B/2, Vertical, 2 rows 16 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf -DIN 41612 IEC 60603 B/2 -0 -32 -32 -Connector_DIN -DIN41612_B2_2x16_Male_Horizontal_THT -DIN41612 connector, type B/2, Horizontal, 2 rows 16 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf -DIN 41612 IEC 60603 B/2 -0 -32 -32 -Connector_DIN -DIN41612_B3_2x5_Female_Vertical_THT -DIN41612 connector, type B/3, Vertical, 2 rows 10 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf -DIN 41612 IEC 60603 B/3 -0 -10 -10 -Connector_DIN -DIN41612_B3_2x5_Male_Horizontal_THT -DIN41612 connector, type B/3, Horizontal, 2 rows 10 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf -DIN 41612 IEC 60603 B/3 -0 -10 -10 -Connector_DIN -DIN41612_B3_2x10_Female_Vertical_THT -DIN41612 connector, type B/3, Vertical, 2 rows 10 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf -DIN 41612 IEC 60603 B/3 -0 -20 -20 -Connector_DIN -DIN41612_B3_2x10_Male_Horizontal_THT -DIN41612 connector, type B/3, Horizontal, 2 rows 10 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf -DIN 41612 IEC 60603 B/3 -0 -20 -20 -Connector_DIN -DIN41612_B_1x32_Female_Vertical_THT -DIN41612 connector, type B, Vertical, 2 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf -DIN 41612 IEC 60603 B -0 -32 -32 -Connector_DIN -DIN41612_B_1x32_Male_Horizontal_THT -DIN41612 connector, type B, Horizontal, 2 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf -DIN 41612 IEC 60603 B -0 -32 -32 -Connector_DIN -DIN41612_B_2x16_Female_Vertical_THT -DIN41612 connector, type B, Vertical, 2 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf -DIN 41612 IEC 60603 B -0 -32 -32 -Connector_DIN -DIN41612_B_2x16_Male_Horizontal_THT -DIN41612 connector, type B, Horizontal, 2 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf -DIN 41612 IEC 60603 B -0 -32 -32 -Connector_DIN -DIN41612_B_2x32_Female_Vertical_THT -DIN41612 connector, type B, Vertical, 2 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf -DIN 41612 IEC 60603 B -0 -64 -64 -Connector_DIN -DIN41612_B_2x32_Male_Horizontal_THT -DIN41612 connector, type B, Horizontal, 2 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf -DIN 41612 IEC 60603 B -0 -64 -64 -Connector_DIN -DIN41612_C2_2x16_Female_Vertical_THT -DIN41612 connector, type C/2, Vertical, 3 rows 16 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf -DIN 41612 IEC 60603 C/2 -0 -32 -32 -Connector_DIN -DIN41612_C2_2x16_Male_Horizontal_THT -DIN41612 connector, type C/2, Horizontal, 3 rows 16 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf -DIN 41612 IEC 60603 C/2 -0 -32 -32 -Connector_DIN -DIN41612_C2_3x16_Female_Vertical_THT -DIN41612 connector, type C/2, Vertical, 3 rows 16 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf -DIN 41612 IEC 60603 C/2 -0 -48 -48 -Connector_DIN -DIN41612_C2_3x16_Male_Horizontal_THT -DIN41612 connector, type C/2, Horizontal, 3 rows 16 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf -DIN 41612 IEC 60603 C/2 -0 -48 -48 -Connector_DIN -DIN41612_C3_2x10_Female_Vertical_THT -DIN41612 connector, type C/3, Vertical, 3 rows 10 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf -DIN 41612 IEC 60603 C/3 -0 -20 -20 -Connector_DIN -DIN41612_C3_2x10_Male_Horizontal_THT -DIN41612 connector, type C/3, Horizontal, 3 rows 10 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf -DIN 41612 IEC 60603 C/3 -0 -20 -20 -Connector_DIN -DIN41612_C3_3x10_Female_Vertical_THT -DIN41612 connector, type C/3, Vertical, 3 rows 10 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf -DIN 41612 IEC 60603 C/3 -0 -30 -30 -Connector_DIN -DIN41612_C3_3x10_Male_Horizontal_THT -DIN41612 connector, type C/3, Horizontal, 3 rows 10 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf -DIN 41612 IEC 60603 C/3 -0 -30 -30 -Connector_DIN -DIN41612_C_1x32_Female_Vertical_THT -DIN41612 connector, type C, Vertical, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf -DIN 41612 IEC 60603 C -0 -32 -32 -Connector_DIN -DIN41612_C_1x32_Male_Horizontal_THT -DIN41612 connector, type C, Horizontal, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf -DIN 41612 IEC 60603 C -0 -32 -32 -Connector_DIN -DIN41612_C_2x16_Female_Vertical_THT -DIN41612 connector, type C, Vertical, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf -DIN 41612 IEC 60603 C -0 -32 -32 -Connector_DIN -DIN41612_C_2x16_Male_Horizontal_THT -DIN41612 connector, type C, Horizontal, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf -DIN 41612 IEC 60603 C -0 -32 -32 -Connector_DIN -DIN41612_C_2x32_Female_Vertical_THT -DIN41612 connector, type C, Vertical, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf -DIN 41612 IEC 60603 C -0 -64 -64 -Connector_DIN -DIN41612_C_2x32_Male_Horizontal_THT -DIN41612 connector, type C, Horizontal, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf -DIN 41612 IEC 60603 C -0 -64 -64 -Connector_DIN -DIN41612_C_3x16_Female_Vertical_THT -DIN41612 connector, type C, Vertical, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf -DIN 41612 IEC 60603 C -0 -48 -48 -Connector_DIN -DIN41612_C_3x16_Male_Horizontal_THT -DIN41612 connector, type C, Horizontal, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf -DIN 41612 IEC 60603 C -0 -48 -48 -Connector_DIN -DIN41612_C_3x32_Female_Vertical_THT -DIN41612 connector, type C, Vertical, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf -DIN 41612 IEC 60603 C -0 -96 -96 -Connector_DIN -DIN41612_C_3x32_Male_Horizontal_THT -DIN41612 connector, type C, Horizontal, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf -DIN 41612 IEC 60603 C -0 -96 -96 -Connector_DIN -DIN41612_D_2x8_Female_Vertical_THT -DIN41612 connector, type D, Vertical, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf -DIN 41612 IEC 60603 D -0 -16 -16 -Connector_DIN -DIN41612_D_2x8_Male_Horizontal_THT -DIN41612 connector, type D, Horizontal, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf -DIN 41612 IEC 60603 D -0 -16 -16 -Connector_DIN -DIN41612_D_2x16_Female_Vertical_THT -DIN41612 connector, type D, Vertical, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf -DIN 41612 IEC 60603 D -0 -32 -32 -Connector_DIN -DIN41612_D_2x16_Male_Horizontal_THT -DIN41612 connector, type D, Horizontal, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf -DIN 41612 IEC 60603 D -0 -32 -32 -Connector_DIN -DIN41612_E_2x16_Female_Vertical_THT -DIN41612 connector, type E, Vertical, 5 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf -DIN 41612 IEC 60603 E -0 -32 -32 -Connector_DIN -DIN41612_E_2x16_Male_Horizontal_THT -DIN41612 connector, type E, Horizontal, 5 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf -DIN 41612 IEC 60603 E -0 -32 -32 -Connector_DIN -DIN41612_E_2x16_RowsAC_Female_Vertical_THT -DIN41612 connector, type E, Vertical, 5 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf -DIN 41612 IEC 60603 E -0 -32 -32 -Connector_DIN -DIN41612_E_2x16_RowsAC_Male_Horizontal_THT -DIN41612 connector, type E, Horizontal, 5 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf -DIN 41612 IEC 60603 E -0 -32 -32 -Connector_DIN -DIN41612_E_3x16_Female_Vertical_THT -DIN41612 connector, type E, Vertical, 5 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf -DIN 41612 IEC 60603 E -0 -48 -48 -Connector_DIN -DIN41612_E_3x16_Male_Horizontal_THT -DIN41612 connector, type E, Horizontal, 5 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf -DIN 41612 IEC 60603 E -0 -48 -48 -Connector_DIN -DIN41612_F_2x16_Female_Vertical_THT -DIN41612 connector, type F, Vertical, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf -DIN 41612 IEC 60603 F -0 -32 -32 -Connector_DIN -DIN41612_F_2x16_Male_Horizontal_THT -DIN41612 connector, type F, Horizontal, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf -DIN 41612 IEC 60603 F -0 -32 -32 -Connector_DIN -DIN41612_F_2x16_RowsZD_Female_Vertical_THT -DIN41612 connector, type F, Vertical, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf -DIN 41612 IEC 60603 F -0 -32 -32 -Connector_DIN -DIN41612_F_2x16_RowsZD_Male_Horizontal_THT -DIN41612 connector, type F, Horizontal, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf -DIN 41612 IEC 60603 F -0 -32 -32 -Connector_DIN -DIN41612_F_3x16_Female_Vertical_THT -DIN41612 connector, type F, Vertical, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf -DIN 41612 IEC 60603 F -0 -48 -48 -Connector_DIN -DIN41612_F_3x16_Male_Horizontal_THT -DIN41612 connector, type F, Horizontal, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf -DIN 41612 IEC 60603 F -0 -48 -48 -Connector_DIN -DIN41612_Q2_2x16_Male_Horizontal_THT -DIN41612 connector, type Q/2, Horizontal, 2 rows 16 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf -DIN 41612 IEC 60603 Q/2 -0 -32 -32 -Connector_DIN -DIN41612_Q2_2x16_Male_Vertical_THT -DIN41612 connector, type Q/2, Vertical, 2 rows 16 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf -DIN 41612 IEC 60603 Q/2 -0 -32 -32 -Connector_DIN -DIN41612_Q3_2x10_Male_Horizontal_THT -DIN41612 connector, type Q/3, Horizontal, 2 rows 10 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf -DIN 41612 IEC 60603 Q/3 -0 -20 -20 -Connector_DIN -DIN41612_Q3_2x10_Male_Vertical_THT -DIN41612 connector, type Q/3, Vertical, 2 rows 10 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf -DIN 41612 IEC 60603 Q/3 -0 -20 -20 -Connector_DIN -DIN41612_Q_2x32_Male_Horizontal_THT -DIN41612 connector, type Q, Horizontal, 2 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf -DIN 41612 IEC 60603 Q -0 -64 -64 -Connector_DIN -DIN41612_Q_2x32_Male_Vertical_THT -DIN41612 connector, type Q, Vertical, 2 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf -DIN 41612 IEC 60603 Q -0 -64 -64 -Connector_DIN -DIN41612_R2_2x16_Male_Horizontal_THT -DIN41612 connector, type R/2, Horizontal, 3 rows 16 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf -DIN 41612 IEC 60603 R/2 -0 -32 -32 -Connector_DIN -DIN41612_R2_2x16_Male_Vertical_THT -DIN41612 connector, type R/2, Vertical, 3 rows 16 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf -DIN 41612 IEC 60603 R/2 -0 -32 -32 -Connector_DIN -DIN41612_R2_3x16_Male_Horizontal_THT -DIN41612 connector, type R/2, Horizontal, 3 rows 16 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf -DIN 41612 IEC 60603 R/2 -0 -48 -48 -Connector_DIN -DIN41612_R2_3x16_Male_Vertical_THT -DIN41612 connector, type R/2, Vertical, 3 rows 16 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf -DIN 41612 IEC 60603 R/2 -0 -48 -48 -Connector_DIN -DIN41612_R3_2x10_Male_Horizontal_THT -DIN41612 connector, type R/3, Horizontal, 3 rows 10 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf -DIN 41612 IEC 60603 R/3 -0 -20 -20 -Connector_DIN -DIN41612_R3_2x10_Male_Vertical_THT -DIN41612 connector, type R/3, Vertical, 3 rows 10 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf -DIN 41612 IEC 60603 R/3 -0 -20 -20 -Connector_DIN -DIN41612_R3_3x10_Male_Horizontal_THT -DIN41612 connector, type R/3, Horizontal, 3 rows 10 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf -DIN 41612 IEC 60603 R/3 -0 -30 -30 -Connector_DIN -DIN41612_R3_3x10_Male_Vertical_THT -DIN41612 connector, type R/3, Vertical, 3 rows 10 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf -DIN 41612 IEC 60603 R/3 -0 -30 -30 -Connector_DIN -DIN41612_R_1x32_Male_Horizontal_THT -DIN41612 connector, type R, Horizontal, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf -DIN 41612 IEC 60603 R -0 -32 -32 -Connector_DIN -DIN41612_R_1x32_Male_Vertical_THT -DIN41612 connector, type R, Vertical, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf -DIN 41612 IEC 60603 R -0 -32 -32 -Connector_DIN -DIN41612_R_2x16_Male_Horizontal_THT -DIN41612 connector, type R, Horizontal, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf -DIN 41612 IEC 60603 R -0 -32 -32 -Connector_DIN -DIN41612_R_2x16_Male_Vertical_THT -DIN41612 connector, type R, Vertical, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf -DIN 41612 IEC 60603 R -0 -32 -32 -Connector_DIN -DIN41612_R_2x32_Male_Horizontal_THT -DIN41612 connector, type R, Horizontal, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf -DIN 41612 IEC 60603 R -0 -64 -64 -Connector_DIN -DIN41612_R_2x32_Male_Vertical_THT -DIN41612 connector, type R, Vertical, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf -DIN 41612 IEC 60603 R -0 -64 -64 -Connector_DIN -DIN41612_R_3x16_Male_Horizontal_THT -DIN41612 connector, type R, Horizontal, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf -DIN 41612 IEC 60603 R -0 -48 -48 -Connector_DIN -DIN41612_R_3x16_Male_Vertical_THT -DIN41612 connector, type R, Vertical, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf -DIN 41612 IEC 60603 R -0 -48 -48 -Connector_DIN -DIN41612_R_3x32_Male_Horizontal_THT -DIN41612 connector, type R, Horizontal, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf -DIN 41612 IEC 60603 R -0 -96 -96 -Connector_DIN -DIN41612_R_3x32_Male_Vertical_THT -DIN41612 connector, type R, Vertical, 3 rows 32 pins wide, https://www.erni-x-press.com/de/downloads/kataloge/englische_kataloge/erni-din41612-iec60603-2-e.pdf -DIN 41612 IEC 60603 R -0 -96 -96 -Connector_Dsub -DSUB-9_Female_EdgeMount_P2.77mm -9-pin D-Sub connector, solder-cups edge-mounted, female, x-pin-pitch 2.77mm, distance of mounting holes 25mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf -9-pin D-Sub connector edge mount solder cup female x-pin-pitch 2.77mm mounting holes distance 25mm -0 -9 -9 -Connector_Dsub -DSUB-9_Female_Horizontal_P2.77x2.54mm_EdgePinOffset9.40mm -9-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.54mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf -9-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.54mm pin-PCB-offset 9.4mm -0 -9 -9 -Connector_Dsub -DSUB-9_Female_Horizontal_P2.77x2.84mm_EdgePinOffset4.94mm_Housed_MountingHolesOffset7.48mm -9-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 4.9399999999999995mm, distance of mounting holes 25mm, distance of mounting holes to PCB edge 7.4799999999999995mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf -9-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 4.9399999999999995mm mounting-holes-distance 25mm mounting-hole-offset 25mm -0 -11 -10 -Connector_Dsub -DSUB-9_Female_Horizontal_P2.77x2.84mm_EdgePinOffset7.70mm_Housed_MountingHolesOffset9.12mm -9-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 7.699999999999999mm, distance of mounting holes 25mm, distance of mounting holes to PCB edge 9.12mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf -9-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 7.699999999999999mm mounting-holes-distance 25mm mounting-hole-offset 25mm -0 -11 -10 -Connector_Dsub -DSUB-9_Female_Horizontal_P2.77x2.84mm_EdgePinOffset9.40mm -9-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf -9-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 9.4mm -0 -9 -9 -Connector_Dsub -DSUB-9_Female_Horizontal_P2.77x2.84mm_EdgePinOffset9.90mm_Housed_MountingHolesOffset11.32mm -9-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 9.9mm, distance of mounting holes 25mm, distance of mounting holes to PCB edge 11.32mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf -9-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 9.9mm mounting-holes-distance 25mm mounting-hole-offset 25mm -0 -11 -10 -Connector_Dsub -DSUB-9_Female_Horizontal_P2.77x2.84mm_EdgePinOffset14.56mm_Housed_MountingHolesOffset8.20mm -9-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 14.56mm, distance of mounting holes 25mm, distance of mounting holes to PCB edge 8.2mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf -9-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 14.56mm mounting-holes-distance 25mm mounting-hole-offset 25mm -0 -11 -10 -Connector_Dsub -DSUB-9_Female_Horizontal_P2.77x2.84mm_EdgePinOffset14.56mm_Housed_MountingHolesOffset15.98mm -9-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 14.56mm, distance of mounting holes 25mm, distance of mounting holes to PCB edge 15.979999999999999mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf -9-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 14.56mm mounting-holes-distance 25mm mounting-hole-offset 25mm -0 -11 -10 -Connector_Dsub -DSUB-9_Female_Vertical_P2.77x2.84mm -9-pin D-Sub connector, straight/vertical, THT-mount, female, pitch 2.77x2.84mm, distance of mounting holes 25mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf -9-pin D-Sub connector straight vertical THT female pitch 2.77x2.84mm mounting holes distance 25mm -0 -9 -9 -Connector_Dsub -DSUB-9_Female_Vertical_P2.77x2.84mm_MountingHoles -9-pin D-Sub connector, straight/vertical, THT-mount, female, pitch 2.77x2.84mm, distance of mounting holes 25mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf -9-pin D-Sub connector straight vertical THT female pitch 2.77x2.84mm mounting holes distance 25mm -0 -11 -10 -Connector_Dsub -DSUB-9_Male_EdgeMount_P2.77mm -9-pin D-Sub connector, solder-cups edge-mounted, male, x-pin-pitch 2.77mm, distance of mounting holes 25mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf -9-pin D-Sub connector edge mount solder cup male x-pin-pitch 2.77mm mounting holes distance 25mm -0 -9 -9 -Connector_Dsub -DSUB-9_Male_Horizontal_P2.77x2.54mm_EdgePinOffset9.40mm -9-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.54mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf -9-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.54mm pin-PCB-offset 9.4mm -0 -9 -9 -Connector_Dsub -DSUB-9_Male_Horizontal_P2.77x2.84mm_EdgePinOffset4.94mm_Housed_MountingHolesOffset7.48mm -9-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 4.9399999999999995mm, distance of mounting holes 25mm, distance of mounting holes to PCB edge 7.4799999999999995mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf -9-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 4.9399999999999995mm mounting-holes-distance 25mm mounting-hole-offset 25mm -0 -11 -10 -Connector_Dsub -DSUB-9_Male_Horizontal_P2.77x2.84mm_EdgePinOffset7.70mm_Housed_MountingHolesOffset9.12mm -9-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 7.699999999999999mm, distance of mounting holes 25mm, distance of mounting holes to PCB edge 9.12mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf -9-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 7.699999999999999mm mounting-holes-distance 25mm mounting-hole-offset 25mm -0 -11 -10 -Connector_Dsub -DSUB-9_Male_Horizontal_P2.77x2.84mm_EdgePinOffset9.40mm -9-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf -9-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 9.4mm -0 -9 -9 -Connector_Dsub -DSUB-9_Male_Horizontal_P2.77x2.84mm_EdgePinOffset9.90mm_Housed_MountingHolesOffset11.32mm -9-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 9.9mm, distance of mounting holes 25mm, distance of mounting holes to PCB edge 11.32mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf -9-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 9.9mm mounting-holes-distance 25mm mounting-hole-offset 25mm -0 -11 -10 -Connector_Dsub -DSUB-9_Male_Horizontal_P2.77x2.84mm_EdgePinOffset14.56mm_Housed_MountingHolesOffset8.20mm -9-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 14.56mm, distance of mounting holes 25mm, distance of mounting holes to PCB edge 8.2mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf -9-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 14.56mm mounting-holes-distance 25mm mounting-hole-offset 25mm -0 -11 -10 -Connector_Dsub -DSUB-9_Male_Horizontal_P2.77x2.84mm_EdgePinOffset14.56mm_Housed_MountingHolesOffset15.98mm -9-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 14.56mm, distance of mounting holes 25mm, distance of mounting holes to PCB edge 15.979999999999999mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf -9-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 14.56mm mounting-holes-distance 25mm mounting-hole-offset 25mm -0 -11 -10 -Connector_Dsub -DSUB-9_Male_Vertical_P2.77x2.84mm -9-pin D-Sub connector, straight/vertical, THT-mount, male, pitch 2.77x2.84mm, distance of mounting holes 25mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf -9-pin D-Sub connector straight vertical THT male pitch 2.77x2.84mm mounting holes distance 25mm -0 -9 -9 -Connector_Dsub -DSUB-9_Male_Vertical_P2.77x2.84mm_MountingHoles -9-pin D-Sub connector, straight/vertical, THT-mount, male, pitch 2.77x2.84mm, distance of mounting holes 25mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf -9-pin D-Sub connector straight vertical THT male pitch 2.77x2.84mm mounting holes distance 25mm -0 -11 -10 -Connector_Dsub -DSUB-15-HD_Female_Horizontal_P2.29x1.98mm_EdgePinOffset3.03mm_Housed_MountingHolesOffset4.94mm -15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.29x1.98mm, pin-PCB-offset 3.0300000000000002mm, distance of mounting holes 25mm, distance of mounting holes to PCB edge 4.9399999999999995mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf -15-pin D-Sub connector horizontal angled 90deg THT female pitch 2.29x1.98mm pin-PCB-offset 3.0300000000000002mm mounting-holes-distance 25mm mounting-hole-offset 25mm -0 -17 -16 -Connector_Dsub -DSUB-15-HD_Female_Horizontal_P2.29x1.98mm_EdgePinOffset8.35mm_Housed_MountingHolesOffset10.89mm -15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.29x1.98mm, pin-PCB-offset 8.35mm, distance of mounting holes 25mm, distance of mounting holes to PCB edge 10.889999999999999mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf -15-pin D-Sub connector horizontal angled 90deg THT female pitch 2.29x1.98mm pin-PCB-offset 8.35mm mounting-holes-distance 25mm mounting-hole-offset 25mm -0 -17 -16 -Connector_Dsub -DSUB-15-HD_Female_Horizontal_P2.29x1.98mm_EdgePinOffset9.40mm -15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.29x1.98mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf -15-pin D-Sub connector horizontal angled 90deg THT female pitch 2.29x1.98mm pin-PCB-offset 9.4mm -0 -15 -15 -Connector_Dsub -DSUB-15-HD_Female_Horizontal_P2.29x2.54mm_EdgePinOffset9.40mm -15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.29x2.54mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf -15-pin D-Sub connector horizontal angled 90deg THT female pitch 2.29x2.54mm pin-PCB-offset 9.4mm -0 -15 -15 -Connector_Dsub -DSUB-15-HD_Female_Vertical_P2.29x1.98mm_MountingHoles -15-pin D-Sub connector, straight/vertical, THT-mount, female, pitch 2.29x1.98mm, distance of mounting holes 25mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf -15-pin D-Sub connector straight vertical THT female pitch 2.29x1.98mm mounting holes distance 25mm -0 -17 -16 -Connector_Dsub -DSUB-15-HD_Male_Horizontal_P2.29x1.98mm_EdgePinOffset3.03mm_Housed_MountingHolesOffset4.94mm -15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.29x1.98mm, pin-PCB-offset 3.0300000000000002mm, distance of mounting holes 25mm, distance of mounting holes to PCB edge 4.9399999999999995mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf -15-pin D-Sub connector horizontal angled 90deg THT male pitch 2.29x1.98mm pin-PCB-offset 3.0300000000000002mm mounting-holes-distance 25mm mounting-hole-offset 25mm -0 -17 -16 -Connector_Dsub -DSUB-15-HD_Male_Horizontal_P2.29x1.98mm_EdgePinOffset8.35mm_Housed_MountingHolesOffset10.89mm -15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.29x1.98mm, pin-PCB-offset 8.35mm, distance of mounting holes 25mm, distance of mounting holes to PCB edge 10.889999999999999mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf -15-pin D-Sub connector horizontal angled 90deg THT male pitch 2.29x1.98mm pin-PCB-offset 8.35mm mounting-holes-distance 25mm mounting-hole-offset 25mm -0 -17 -16 -Connector_Dsub -DSUB-15-HD_Male_Horizontal_P2.29x1.98mm_EdgePinOffset9.40mm -15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.29x1.98mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf -15-pin D-Sub connector horizontal angled 90deg THT male pitch 2.29x1.98mm pin-PCB-offset 9.4mm -0 -15 -15 -Connector_Dsub -DSUB-15-HD_Male_Horizontal_P2.29x2.54mm_EdgePinOffset9.40mm -15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.29x2.54mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf -15-pin D-Sub connector horizontal angled 90deg THT male pitch 2.29x2.54mm pin-PCB-offset 9.4mm -0 -15 -15 -Connector_Dsub -DSUB-15-HD_Male_Vertical_P2.29x1.98mm_MountingHoles -15-pin D-Sub connector, straight/vertical, THT-mount, male, pitch 2.29x1.98mm, distance of mounting holes 25mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf -15-pin D-Sub connector straight vertical THT male pitch 2.29x1.98mm mounting holes distance 25mm -0 -17 -16 -Connector_Dsub -DSUB-15_Female_EdgeMount_P2.77mm -15-pin D-Sub connector, solder-cups edge-mounted, female, x-pin-pitch 2.77mm, distance of mounting holes 33.3mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf -15-pin D-Sub connector edge mount solder cup female x-pin-pitch 2.77mm mounting holes distance 33.3mm -0 -15 -15 -Connector_Dsub -DSUB-15_Female_Horizontal_P2.77x2.54mm_EdgePinOffset9.40mm -15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.54mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf -15-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.54mm pin-PCB-offset 9.4mm -0 -15 -15 -Connector_Dsub -DSUB-15_Female_Horizontal_P2.77x2.84mm_EdgePinOffset4.94mm_Housed_MountingHolesOffset7.48mm -15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 4.9399999999999995mm, distance of mounting holes 33.3mm, distance of mounting holes to PCB edge 7.4799999999999995mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf -15-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 4.9399999999999995mm mounting-holes-distance 33.3mm mounting-hole-offset 33.3mm -0 -17 -16 -Connector_Dsub -DSUB-15_Female_Horizontal_P2.77x2.84mm_EdgePinOffset7.70mm_Housed_MountingHolesOffset9.12mm -15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 7.699999999999999mm, distance of mounting holes 33.3mm, distance of mounting holes to PCB edge 9.12mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf -15-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 7.699999999999999mm mounting-holes-distance 33.3mm mounting-hole-offset 33.3mm -0 -17 -16 -Connector_Dsub -DSUB-15_Female_Horizontal_P2.77x2.84mm_EdgePinOffset9.40mm -15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf -15-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 9.4mm -0 -15 -15 -Connector_Dsub -DSUB-15_Female_Horizontal_P2.77x2.84mm_EdgePinOffset9.90mm_Housed_MountingHolesOffset11.32mm -15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 9.9mm, distance of mounting holes 33.3mm, distance of mounting holes to PCB edge 11.32mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf -15-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 9.9mm mounting-holes-distance 33.3mm mounting-hole-offset 33.3mm -0 -17 -16 -Connector_Dsub -DSUB-15_Female_Horizontal_P2.77x2.84mm_EdgePinOffset14.56mm_Housed_MountingHolesOffset8.20mm -15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 14.56mm, distance of mounting holes 33.3mm, distance of mounting holes to PCB edge 8.2mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf -15-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 14.56mm mounting-holes-distance 33.3mm mounting-hole-offset 33.3mm -0 -17 -16 -Connector_Dsub -DSUB-15_Female_Horizontal_P2.77x2.84mm_EdgePinOffset14.56mm_Housed_MountingHolesOffset15.98mm -15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 14.56mm, distance of mounting holes 33.3mm, distance of mounting holes to PCB edge 15.979999999999999mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf -15-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 14.56mm mounting-holes-distance 33.3mm mounting-hole-offset 33.3mm -0 -17 -16 -Connector_Dsub -DSUB-15_Female_Vertical_P2.77x2.84mm -15-pin D-Sub connector, straight/vertical, THT-mount, female, pitch 2.77x2.84mm, distance of mounting holes 33.3mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf -15-pin D-Sub connector straight vertical THT female pitch 2.77x2.84mm mounting holes distance 33.3mm -0 -15 -15 -Connector_Dsub -DSUB-15_Female_Vertical_P2.77x2.84mm_MountingHoles -15-pin D-Sub connector, straight/vertical, THT-mount, female, pitch 2.77x2.84mm, distance of mounting holes 33.3mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf -15-pin D-Sub connector straight vertical THT female pitch 2.77x2.84mm mounting holes distance 33.3mm -0 -17 -16 -Connector_Dsub -DSUB-15_Male_EdgeMount_P2.77mm -15-pin D-Sub connector, solder-cups edge-mounted, male, x-pin-pitch 2.77mm, distance of mounting holes 33.3mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf -15-pin D-Sub connector edge mount solder cup male x-pin-pitch 2.77mm mounting holes distance 33.3mm -0 -15 -15 -Connector_Dsub -DSUB-15_Male_Horizontal_P2.77x2.54mm_EdgePinOffset9.40mm -15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.54mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf -15-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.54mm pin-PCB-offset 9.4mm -0 -15 -15 -Connector_Dsub -DSUB-15_Male_Horizontal_P2.77x2.84mm_EdgePinOffset4.94mm_Housed_MountingHolesOffset7.48mm -15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 4.9399999999999995mm, distance of mounting holes 33.3mm, distance of mounting holes to PCB edge 7.4799999999999995mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf -15-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 4.9399999999999995mm mounting-holes-distance 33.3mm mounting-hole-offset 33.3mm -0 -17 -16 -Connector_Dsub -DSUB-15_Male_Horizontal_P2.77x2.84mm_EdgePinOffset7.70mm_Housed_MountingHolesOffset9.12mm -15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 7.699999999999999mm, distance of mounting holes 33.3mm, distance of mounting holes to PCB edge 9.12mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf -15-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 7.699999999999999mm mounting-holes-distance 33.3mm mounting-hole-offset 33.3mm -0 -17 -16 -Connector_Dsub -DSUB-15_Male_Horizontal_P2.77x2.84mm_EdgePinOffset9.40mm -15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf -15-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 9.4mm -0 -15 -15 -Connector_Dsub -DSUB-15_Male_Horizontal_P2.77x2.84mm_EdgePinOffset9.90mm_Housed_MountingHolesOffset11.32mm -15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 9.9mm, distance of mounting holes 33.3mm, distance of mounting holes to PCB edge 11.32mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf -15-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 9.9mm mounting-holes-distance 33.3mm mounting-hole-offset 33.3mm -0 -17 -16 -Connector_Dsub -DSUB-15_Male_Horizontal_P2.77x2.84mm_EdgePinOffset14.56mm_Housed_MountingHolesOffset8.20mm -15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 14.56mm, distance of mounting holes 33.3mm, distance of mounting holes to PCB edge 8.2mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf -15-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 14.56mm mounting-holes-distance 33.3mm mounting-hole-offset 33.3mm -0 -17 -16 -Connector_Dsub -DSUB-15_Male_Horizontal_P2.77x2.84mm_EdgePinOffset14.56mm_Housed_MountingHolesOffset15.98mm -15-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 14.56mm, distance of mounting holes 33.3mm, distance of mounting holes to PCB edge 15.979999999999999mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf -15-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 14.56mm mounting-holes-distance 33.3mm mounting-hole-offset 33.3mm -0 -17 -16 -Connector_Dsub -DSUB-15_Male_Vertical_P2.77x2.84mm -15-pin D-Sub connector, straight/vertical, THT-mount, male, pitch 2.77x2.84mm, distance of mounting holes 33.3mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf -15-pin D-Sub connector straight vertical THT male pitch 2.77x2.84mm mounting holes distance 33.3mm -0 -15 -15 -Connector_Dsub -DSUB-15_Male_Vertical_P2.77x2.84mm_MountingHoles -15-pin D-Sub connector, straight/vertical, THT-mount, male, pitch 2.77x2.84mm, distance of mounting holes 33.3mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf -15-pin D-Sub connector straight vertical THT male pitch 2.77x2.84mm mounting holes distance 33.3mm -0 -17 -16 -Connector_Dsub -DSUB-25_Female_EdgeMount_P2.77mm -25-pin D-Sub connector, solder-cups edge-mounted, female, x-pin-pitch 2.77mm, distance of mounting holes 47.1mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf -25-pin D-Sub connector edge mount solder cup female x-pin-pitch 2.77mm mounting holes distance 47.1mm -0 -25 -25 -Connector_Dsub -DSUB-25_Female_Horizontal_P2.77x2.54mm_EdgePinOffset9.40mm -25-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.54mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf -25-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.54mm pin-PCB-offset 9.4mm -0 -25 -25 -Connector_Dsub -DSUB-25_Female_Horizontal_P2.77x2.84mm_EdgePinOffset4.94mm_Housed_MountingHolesOffset7.48mm -25-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, 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 -25-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 4.9399999999999995mm mounting-holes-distance 47.1mm mounting-hole-offset 47.1mm -0 -27 -26 -Connector_Dsub -DSUB-25_Female_Horizontal_P2.77x2.84mm_EdgePinOffset7.70mm_Housed_MountingHolesOffset9.12mm -25-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 7.699999999999999mm, distance of mounting holes 47.1mm, distance of mounting holes to PCB edge 9.12mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf -25-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 7.699999999999999mm mounting-holes-distance 47.1mm mounting-hole-offset 47.1mm -0 -27 -26 -Connector_Dsub -DSUB-25_Female_Horizontal_P2.77x2.84mm_EdgePinOffset9.40mm -25-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf -25-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 9.4mm -0 -25 -25 -Connector_Dsub -DSUB-25_Female_Horizontal_P2.77x2.84mm_EdgePinOffset9.90mm_Housed_MountingHolesOffset11.32mm -25-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 9.9mm, distance of mounting holes 47.1mm, distance of mounting holes to PCB edge 11.32mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf -25-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 9.9mm mounting-holes-distance 47.1mm mounting-hole-offset 47.1mm -0 -27 -26 -Connector_Dsub -DSUB-25_Female_Horizontal_P2.77x2.84mm_EdgePinOffset14.56mm_Housed_MountingHolesOffset8.20mm -25-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 14.56mm, distance of mounting holes 47.1mm, distance of mounting holes to PCB edge 8.2mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf -25-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 14.56mm mounting-holes-distance 47.1mm mounting-hole-offset 47.1mm -0 -27 -26 -Connector_Dsub -DSUB-25_Female_Horizontal_P2.77x2.84mm_EdgePinOffset14.56mm_Housed_MountingHolesOffset15.98mm -25-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 14.56mm, distance of mounting holes 47.1mm, distance of mounting holes to PCB edge 15.979999999999999mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf -25-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 14.56mm mounting-holes-distance 47.1mm mounting-hole-offset 47.1mm -0 -27 -26 -Connector_Dsub -DSUB-25_Female_Vertical_P2.77x2.84mm -25-pin D-Sub connector, straight/vertical, THT-mount, female, pitch 2.77x2.84mm, distance of mounting holes 47.1mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf -25-pin D-Sub connector straight vertical THT female pitch 2.77x2.84mm mounting holes distance 47.1mm -0 -25 -25 -Connector_Dsub -DSUB-25_Female_Vertical_P2.77x2.84mm_MountingHoles -25-pin D-Sub connector, straight/vertical, THT-mount, female, pitch 2.77x2.84mm, distance of mounting holes 47.1mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf -25-pin D-Sub connector straight vertical THT female pitch 2.77x2.84mm mounting holes distance 47.1mm -0 -27 -26 -Connector_Dsub -DSUB-25_Male_EdgeMount_P2.77mm -25-pin D-Sub connector, solder-cups edge-mounted, male, x-pin-pitch 2.77mm, distance of mounting holes 47.1mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf -25-pin D-Sub connector edge mount solder cup male x-pin-pitch 2.77mm mounting holes distance 47.1mm -0 -25 -25 -Connector_Dsub -DSUB-25_Male_Horizontal_P2.77x2.54mm_EdgePinOffset9.40mm -25-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.54mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf -25-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.54mm pin-PCB-offset 9.4mm -0 -25 -25 -Connector_Dsub -DSUB-25_Male_Horizontal_P2.77x2.84mm_EdgePinOffset4.94mm_Housed_MountingHolesOffset7.48mm -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 -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 -0 -27 -26 -Connector_Dsub -DSUB-25_Male_Horizontal_P2.77x2.84mm_EdgePinOffset7.70mm_Housed_MountingHolesOffset9.12mm -25-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 7.699999999999999mm, distance of mounting holes 47.1mm, distance of mounting holes to PCB edge 9.12mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf -25-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 7.699999999999999mm mounting-holes-distance 47.1mm mounting-hole-offset 47.1mm -0 -27 -26 -Connector_Dsub -DSUB-25_Male_Horizontal_P2.77x2.84mm_EdgePinOffset9.40mm -25-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf -25-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 9.4mm -0 -25 -25 -Connector_Dsub -DSUB-25_Male_Horizontal_P2.77x2.84mm_EdgePinOffset9.90mm_Housed_MountingHolesOffset11.32mm -25-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 9.9mm, distance of mounting holes 47.1mm, distance of mounting holes to PCB edge 11.32mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf -25-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 9.9mm mounting-holes-distance 47.1mm mounting-hole-offset 47.1mm -0 -27 -26 -Connector_Dsub -DSUB-25_Male_Horizontal_P2.77x2.84mm_EdgePinOffset14.56mm_Housed_MountingHolesOffset8.20mm -25-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 14.56mm, distance of mounting holes 47.1mm, distance of mounting holes to PCB edge 8.2mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf -25-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 14.56mm mounting-holes-distance 47.1mm mounting-hole-offset 47.1mm -0 -27 -26 -Connector_Dsub -DSUB-25_Male_Horizontal_P2.77x2.84mm_EdgePinOffset14.56mm_Housed_MountingHolesOffset15.98mm -25-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 14.56mm, distance of mounting holes 47.1mm, distance of mounting holes to PCB edge 15.979999999999999mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf -25-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 14.56mm mounting-holes-distance 47.1mm mounting-hole-offset 47.1mm -0 -27 -26 -Connector_Dsub -DSUB-25_Male_Vertical_P2.77x2.84mm -25-pin D-Sub connector, straight/vertical, THT-mount, male, pitch 2.77x2.84mm, distance of mounting holes 47.1mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf -25-pin D-Sub connector straight vertical THT male pitch 2.77x2.84mm mounting holes distance 47.1mm -0 -25 -25 -Connector_Dsub -DSUB-25_Male_Vertical_P2.77x2.84mm_MountingHoles -25-pin D-Sub connector, straight/vertical, THT-mount, male, pitch 2.77x2.84mm, distance of mounting holes 47.1mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf -25-pin D-Sub connector straight vertical THT male pitch 2.77x2.84mm mounting holes distance 47.1mm -0 -27 -26 -Connector_Dsub -DSUB-26-HD_Female_Horizontal_P2.29x1.98mm_EdgePinOffset3.03mm_Housed_MountingHolesOffset4.94mm -26-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.29x1.98mm, pin-PCB-offset 3.0300000000000002mm, distance of mounting holes 33.3mm, distance of mounting holes to PCB edge 4.9399999999999995mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf -26-pin D-Sub connector horizontal angled 90deg THT female pitch 2.29x1.98mm pin-PCB-offset 3.0300000000000002mm mounting-holes-distance 33.3mm mounting-hole-offset 33.3mm -0 -28 -27 -Connector_Dsub -DSUB-26-HD_Female_Horizontal_P2.29x1.98mm_EdgePinOffset8.35mm_Housed_MountingHolesOffset10.89mm -26-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.29x1.98mm, pin-PCB-offset 8.35mm, distance of mounting holes 33.3mm, distance of mounting holes to PCB edge 10.889999999999999mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf -26-pin D-Sub connector horizontal angled 90deg THT female pitch 2.29x1.98mm pin-PCB-offset 8.35mm mounting-holes-distance 33.3mm mounting-hole-offset 33.3mm -0 -28 -27 -Connector_Dsub -DSUB-26-HD_Female_Horizontal_P2.29x1.98mm_EdgePinOffset9.40mm -26-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.29x1.98mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf -26-pin D-Sub connector horizontal angled 90deg THT female pitch 2.29x1.98mm pin-PCB-offset 9.4mm -0 -26 -26 -Connector_Dsub -DSUB-26-HD_Female_Horizontal_P2.29x2.54mm_EdgePinOffset9.40mm -26-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.29x2.54mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf -26-pin D-Sub connector horizontal angled 90deg THT female pitch 2.29x2.54mm pin-PCB-offset 9.4mm -0 -26 -26 -Connector_Dsub -DSUB-26-HD_Female_Vertical_P2.29x1.98mm_MountingHoles -26-pin D-Sub connector, straight/vertical, THT-mount, female, pitch 2.29x1.98mm, distance of mounting holes 33.3mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf -26-pin D-Sub connector straight vertical THT female pitch 2.29x1.98mm mounting holes distance 33.3mm -0 -28 -27 -Connector_Dsub -DSUB-26-HD_Male_Horizontal_P2.29x1.98mm_EdgePinOffset3.03mm_Housed_MountingHolesOffset4.94mm -26-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.29x1.98mm, pin-PCB-offset 3.0300000000000002mm, distance of mounting holes 33.3mm, distance of mounting holes to PCB edge 4.9399999999999995mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf -26-pin D-Sub connector horizontal angled 90deg THT male pitch 2.29x1.98mm pin-PCB-offset 3.0300000000000002mm mounting-holes-distance 33.3mm mounting-hole-offset 33.3mm -0 -28 -27 -Connector_Dsub -DSUB-26-HD_Male_Horizontal_P2.29x1.98mm_EdgePinOffset8.35mm_Housed_MountingHolesOffset10.89mm -26-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.29x1.98mm, pin-PCB-offset 8.35mm, distance of mounting holes 33.3mm, distance of mounting holes to PCB edge 10.889999999999999mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf -26-pin D-Sub connector horizontal angled 90deg THT male pitch 2.29x1.98mm pin-PCB-offset 8.35mm mounting-holes-distance 33.3mm mounting-hole-offset 33.3mm -0 -28 -27 -Connector_Dsub -DSUB-26-HD_Male_Horizontal_P2.29x1.98mm_EdgePinOffset9.40mm -26-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.29x1.98mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf -26-pin D-Sub connector horizontal angled 90deg THT male pitch 2.29x1.98mm pin-PCB-offset 9.4mm -0 -26 -26 -Connector_Dsub -DSUB-26-HD_Male_Horizontal_P2.29x2.54mm_EdgePinOffset9.40mm -26-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.29x2.54mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf -26-pin D-Sub connector horizontal angled 90deg THT male pitch 2.29x2.54mm pin-PCB-offset 9.4mm -0 -26 -26 -Connector_Dsub -DSUB-26-HD_Male_Vertical_P2.29x1.98mm_MountingHoles -26-pin D-Sub connector, straight/vertical, THT-mount, male, pitch 2.29x1.98mm, distance of mounting holes 33.3mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf -26-pin D-Sub connector straight vertical THT male pitch 2.29x1.98mm mounting holes distance 33.3mm -0 -28 -27 -Connector_Dsub -DSUB-37_Female_EdgeMount_P2.77mm -37-pin D-Sub connector, solder-cups edge-mounted, female, x-pin-pitch 2.77mm, distance of mounting holes 63.5mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf -37-pin D-Sub connector edge mount solder cup female x-pin-pitch 2.77mm mounting holes distance 63.5mm -0 -37 -37 -Connector_Dsub -DSUB-37_Female_Horizontal_P2.77x2.54mm_EdgePinOffset9.40mm -37-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.54mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf -37-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.54mm pin-PCB-offset 9.4mm -0 -37 -37 -Connector_Dsub -DSUB-37_Female_Horizontal_P2.77x2.84mm_EdgePinOffset4.94mm_Housed_MountingHolesOffset7.48mm -37-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 4.9399999999999995mm, distance of mounting holes 63.5mm, distance of mounting holes to PCB edge 7.4799999999999995mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf -37-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 4.9399999999999995mm mounting-holes-distance 63.5mm mounting-hole-offset 63.5mm -0 -39 -38 -Connector_Dsub -DSUB-37_Female_Horizontal_P2.77x2.84mm_EdgePinOffset7.70mm_Housed_MountingHolesOffset9.12mm -37-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 7.699999999999999mm, distance of mounting holes 63.5mm, distance of mounting holes to PCB edge 9.12mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf -37-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 7.699999999999999mm mounting-holes-distance 63.5mm mounting-hole-offset 63.5mm -0 -39 -38 -Connector_Dsub -DSUB-37_Female_Horizontal_P2.77x2.84mm_EdgePinOffset9.40mm -37-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf -37-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 9.4mm -0 -37 -37 -Connector_Dsub -DSUB-37_Female_Horizontal_P2.77x2.84mm_EdgePinOffset9.90mm_Housed_MountingHolesOffset11.32mm -37-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 9.9mm, distance of mounting holes 63.5mm, distance of mounting holes to PCB edge 11.32mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf -37-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 9.9mm mounting-holes-distance 63.5mm mounting-hole-offset 63.5mm -0 -39 -38 -Connector_Dsub -DSUB-37_Female_Horizontal_P2.77x2.84mm_EdgePinOffset14.56mm_Housed_MountingHolesOffset8.20mm -37-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 14.56mm, distance of mounting holes 63.5mm, distance of mounting holes to PCB edge 8.2mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf -37-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 14.56mm mounting-holes-distance 63.5mm mounting-hole-offset 63.5mm -0 -39 -38 -Connector_Dsub -DSUB-37_Female_Horizontal_P2.77x2.84mm_EdgePinOffset14.56mm_Housed_MountingHolesOffset15.98mm -37-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.77x2.84mm, pin-PCB-offset 14.56mm, distance of mounting holes 63.5mm, distance of mounting holes to PCB edge 15.979999999999999mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf -37-pin D-Sub connector horizontal angled 90deg THT female pitch 2.77x2.84mm pin-PCB-offset 14.56mm mounting-holes-distance 63.5mm mounting-hole-offset 63.5mm -0 -39 -38 -Connector_Dsub -DSUB-37_Female_Vertical_P2.77x2.84mm -37-pin D-Sub connector, straight/vertical, THT-mount, female, pitch 2.77x2.84mm, distance of mounting holes 63.5mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf -37-pin D-Sub connector straight vertical THT female pitch 2.77x2.84mm mounting holes distance 63.5mm -0 -37 -37 -Connector_Dsub -DSUB-37_Female_Vertical_P2.77x2.84mm_MountingHoles -37-pin D-Sub connector, straight/vertical, THT-mount, female, pitch 2.77x2.84mm, distance of mounting holes 63.5mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf -37-pin D-Sub connector straight vertical THT female pitch 2.77x2.84mm mounting holes distance 63.5mm -0 -39 -38 -Connector_Dsub -DSUB-37_Male_EdgeMount_P2.77mm -37-pin D-Sub connector, solder-cups edge-mounted, male, x-pin-pitch 2.77mm, distance of mounting holes 63.5mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf -37-pin D-Sub connector edge mount solder cup male x-pin-pitch 2.77mm mounting holes distance 63.5mm -0 -37 -37 -Connector_Dsub -DSUB-37_Male_Horizontal_P2.77x2.54mm_EdgePinOffset9.40mm -37-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.54mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf -37-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.54mm pin-PCB-offset 9.4mm -0 -37 -37 -Connector_Dsub -DSUB-37_Male_Horizontal_P2.77x2.84mm_EdgePinOffset4.94mm_Housed_MountingHolesOffset7.48mm -37-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 4.9399999999999995mm, distance of mounting holes 63.5mm, distance of mounting holes to PCB edge 7.4799999999999995mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf -37-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 4.9399999999999995mm mounting-holes-distance 63.5mm mounting-hole-offset 63.5mm -0 -39 -38 -Connector_Dsub -DSUB-37_Male_Horizontal_P2.77x2.84mm_EdgePinOffset7.70mm_Housed_MountingHolesOffset9.12mm -37-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 7.699999999999999mm, distance of mounting holes 63.5mm, distance of mounting holes to PCB edge 9.12mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf -37-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 7.699999999999999mm mounting-holes-distance 63.5mm mounting-hole-offset 63.5mm -0 -39 -38 -Connector_Dsub -DSUB-37_Male_Horizontal_P2.77x2.84mm_EdgePinOffset9.40mm -37-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf -37-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 9.4mm -0 -37 -37 -Connector_Dsub -DSUB-37_Male_Horizontal_P2.77x2.84mm_EdgePinOffset9.90mm_Housed_MountingHolesOffset11.32mm -37-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 9.9mm, distance of mounting holes 63.5mm, distance of mounting holes to PCB edge 11.32mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf -37-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 9.9mm mounting-holes-distance 63.5mm mounting-hole-offset 63.5mm -0 -39 -38 -Connector_Dsub -DSUB-37_Male_Horizontal_P2.77x2.84mm_EdgePinOffset14.56mm_Housed_MountingHolesOffset8.20mm -37-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 14.56mm, distance of mounting holes 63.5mm, distance of mounting holes to PCB edge 8.2mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf -37-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 14.56mm mounting-holes-distance 63.5mm mounting-hole-offset 63.5mm -0 -39 -38 -Connector_Dsub -DSUB-37_Male_Horizontal_P2.77x2.84mm_EdgePinOffset14.56mm_Housed_MountingHolesOffset15.98mm -37-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 14.56mm, distance of mounting holes 63.5mm, distance of mounting holes to PCB edge 15.979999999999999mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf -37-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 14.56mm mounting-holes-distance 63.5mm mounting-hole-offset 63.5mm -0 -39 -38 -Connector_Dsub -DSUB-37_Male_Vertical_P2.77x2.84mm -37-pin D-Sub connector, straight/vertical, THT-mount, male, pitch 2.77x2.84mm, distance of mounting holes 63.5mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf -37-pin D-Sub connector straight vertical THT male pitch 2.77x2.84mm mounting holes distance 63.5mm -0 -37 -37 -Connector_Dsub -DSUB-37_Male_Vertical_P2.77x2.84mm_MountingHoles -37-pin D-Sub connector, straight/vertical, THT-mount, male, pitch 2.77x2.84mm, distance of mounting holes 63.5mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf -37-pin D-Sub connector straight vertical THT male pitch 2.77x2.84mm mounting holes distance 63.5mm -0 -39 -38 -Connector_Dsub -DSUB-44-HD_Female_Horizontal_P2.29x1.98mm_EdgePinOffset3.03mm_Housed_MountingHolesOffset4.94mm -44-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.29x1.98mm, pin-PCB-offset 3.0300000000000002mm, distance of mounting holes 47.1mm, distance of mounting holes to PCB edge 4.9399999999999995mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf -44-pin D-Sub connector horizontal angled 90deg THT female pitch 2.29x1.98mm pin-PCB-offset 3.0300000000000002mm mounting-holes-distance 47.1mm mounting-hole-offset 47.1mm -0 -46 -45 -Connector_Dsub -DSUB-44-HD_Female_Horizontal_P2.29x1.98mm_EdgePinOffset8.35mm_Housed_MountingHolesOffset10.89mm -44-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.29x1.98mm, pin-PCB-offset 8.35mm, distance of mounting holes 47.1mm, distance of mounting holes to PCB edge 10.889999999999999mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf -44-pin D-Sub connector horizontal angled 90deg THT female pitch 2.29x1.98mm pin-PCB-offset 8.35mm mounting-holes-distance 47.1mm mounting-hole-offset 47.1mm -0 -46 -45 -Connector_Dsub -DSUB-44-HD_Female_Horizontal_P2.29x1.98mm_EdgePinOffset9.40mm -44-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.29x1.98mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf -44-pin D-Sub connector horizontal angled 90deg THT female pitch 2.29x1.98mm pin-PCB-offset 9.4mm -0 -44 -44 -Connector_Dsub -DSUB-44-HD_Female_Horizontal_P2.29x2.54mm_EdgePinOffset9.40mm -44-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.29x2.54mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf -44-pin D-Sub connector horizontal angled 90deg THT female pitch 2.29x2.54mm pin-PCB-offset 9.4mm -0 -44 -44 -Connector_Dsub -DSUB-44-HD_Female_Vertical_P2.29x1.98mm_MountingHoles -44-pin D-Sub connector, straight/vertical, THT-mount, female, pitch 2.29x1.98mm, distance of mounting holes 47.1mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf -44-pin D-Sub connector straight vertical THT female pitch 2.29x1.98mm mounting holes distance 47.1mm -0 -46 -45 -Connector_Dsub -DSUB-44-HD_Male_Horizontal_P2.29x1.98mm_EdgePinOffset3.03mm_Housed_MountingHolesOffset4.94mm -44-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.29x1.98mm, pin-PCB-offset 3.0300000000000002mm, distance of mounting holes 47.1mm, distance of mounting holes to PCB edge 4.9399999999999995mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf -44-pin D-Sub connector horizontal angled 90deg THT male pitch 2.29x1.98mm pin-PCB-offset 3.0300000000000002mm mounting-holes-distance 47.1mm mounting-hole-offset 47.1mm -0 -46 -45 -Connector_Dsub -DSUB-44-HD_Male_Horizontal_P2.29x1.98mm_EdgePinOffset8.35mm_Housed_MountingHolesOffset10.89mm -44-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.29x1.98mm, pin-PCB-offset 8.35mm, distance of mounting holes 47.1mm, distance of mounting holes to PCB edge 10.889999999999999mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf -44-pin D-Sub connector horizontal angled 90deg THT male pitch 2.29x1.98mm pin-PCB-offset 8.35mm mounting-holes-distance 47.1mm mounting-hole-offset 47.1mm -0 -46 -45 -Connector_Dsub -DSUB-44-HD_Male_Horizontal_P2.29x1.98mm_EdgePinOffset9.40mm -44-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.29x1.98mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf -44-pin D-Sub connector horizontal angled 90deg THT male pitch 2.29x1.98mm pin-PCB-offset 9.4mm -0 -44 -44 -Connector_Dsub -DSUB-44-HD_Male_Horizontal_P2.29x2.54mm_EdgePinOffset9.40mm -44-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.29x2.54mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf -44-pin D-Sub connector horizontal angled 90deg THT male pitch 2.29x2.54mm pin-PCB-offset 9.4mm -0 -44 -44 -Connector_Dsub -DSUB-44-HD_Male_Vertical_P2.29x1.98mm_MountingHoles -44-pin D-Sub connector, straight/vertical, THT-mount, male, pitch 2.29x1.98mm, distance of mounting holes 47.1mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf -44-pin D-Sub connector straight vertical THT male pitch 2.29x1.98mm mounting holes distance 47.1mm -0 -46 -45 -Connector_Dsub -DSUB-62-HD_Female_Horizontal_P2.41x1.98mm_EdgePinOffset3.03mm_Housed_MountingHolesOffset4.94mm -62-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.41x1.98mm, pin-PCB-offset 3.0300000000000002mm, distance of mounting holes 63.5mm, distance of mounting holes to PCB edge 4.9399999999999995mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf -62-pin D-Sub connector horizontal angled 90deg THT female pitch 2.41x1.98mm pin-PCB-offset 3.0300000000000002mm mounting-holes-distance 63.5mm mounting-hole-offset 63.5mm -0 -64 -63 -Connector_Dsub -DSUB-62-HD_Female_Horizontal_P2.41x1.98mm_EdgePinOffset8.35mm_Housed_MountingHolesOffset10.89mm -62-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.41x1.98mm, pin-PCB-offset 8.35mm, distance of mounting holes 63.5mm, distance of mounting holes to PCB edge 10.889999999999999mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf -62-pin D-Sub connector horizontal angled 90deg THT female pitch 2.41x1.98mm pin-PCB-offset 8.35mm mounting-holes-distance 63.5mm mounting-hole-offset 63.5mm -0 -64 -63 -Connector_Dsub -DSUB-62-HD_Female_Horizontal_P2.41x1.98mm_EdgePinOffset9.40mm -62-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.41x1.98mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf -62-pin D-Sub connector horizontal angled 90deg THT female pitch 2.41x1.98mm pin-PCB-offset 9.4mm -0 -62 -62 -Connector_Dsub -DSUB-62-HD_Female_Horizontal_P2.41x2.54mm_EdgePinOffset9.40mm -62-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, female, pitch 2.41x2.54mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf -62-pin D-Sub connector horizontal angled 90deg THT female pitch 2.41x2.54mm pin-PCB-offset 9.4mm -0 -62 -62 -Connector_Dsub -DSUB-62-HD_Female_Vertical_P2.41x1.98mm_MountingHoles -62-pin D-Sub connector, straight/vertical, THT-mount, female, pitch 2.41x1.98mm, distance of mounting holes 63.5mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf -62-pin D-Sub connector straight vertical THT female pitch 2.41x1.98mm mounting holes distance 63.5mm -0 -64 -63 -Connector_Dsub -DSUB-62-HD_Male_Horizontal_P2.41x1.98mm_EdgePinOffset3.03mm_Housed_MountingHolesOffset4.94mm -62-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.41x1.98mm, pin-PCB-offset 3.0300000000000002mm, distance of mounting holes 63.5mm, distance of mounting holes to PCB edge 4.9399999999999995mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf -62-pin D-Sub connector horizontal angled 90deg THT male pitch 2.41x1.98mm pin-PCB-offset 3.0300000000000002mm mounting-holes-distance 63.5mm mounting-hole-offset 63.5mm -0 -64 -63 -Connector_Dsub -DSUB-62-HD_Male_Horizontal_P2.41x1.98mm_EdgePinOffset8.35mm_Housed_MountingHolesOffset10.89mm -62-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.41x1.98mm, pin-PCB-offset 8.35mm, distance of mounting holes 63.5mm, distance of mounting holes to PCB edge 10.889999999999999mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf -62-pin D-Sub connector horizontal angled 90deg THT male pitch 2.41x1.98mm pin-PCB-offset 8.35mm mounting-holes-distance 63.5mm mounting-hole-offset 63.5mm -0 -64 -63 -Connector_Dsub -DSUB-62-HD_Male_Horizontal_P2.41x1.98mm_EdgePinOffset9.40mm -62-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.41x1.98mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf -62-pin D-Sub connector horizontal angled 90deg THT male pitch 2.41x1.98mm pin-PCB-offset 9.4mm -0 -62 -62 -Connector_Dsub -DSUB-62-HD_Male_Horizontal_P2.41x2.54mm_EdgePinOffset9.40mm -62-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.41x2.54mm, pin-PCB-offset 9.4mm, see http://docs-europe.electrocomponents.com/webdocs/1585/0900766b81585df2.pdf -62-pin D-Sub connector horizontal angled 90deg THT male pitch 2.41x2.54mm pin-PCB-offset 9.4mm -0 -62 -62 -Connector_Dsub -DSUB-62-HD_Male_Vertical_P2.41x1.98mm_MountingHoles -62-pin D-Sub connector, straight/vertical, THT-mount, male, pitch 2.41x1.98mm, distance of mounting holes 63.5mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf -62-pin D-Sub connector straight vertical THT male pitch 2.41x1.98mm mounting holes distance 63.5mm -0 -64 -63 -Connector_FFC-FPC -Hirose_FH12-6S-0.5SH_1x06-1MP_P0.50mm_Horizontal -Hirose FH12, FFC/FPC connector, FH12-6S-0.5SH, 6 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator -connector Hirose FH12 horizontal -0 -8 -7 -Connector_FFC-FPC -Hirose_FH12-8S-0.5SH_1x08-1MP_P0.50mm_Horizontal -Hirose FH12, FFC/FPC connector, FH12-8S-0.5SH, 8 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator -connector Hirose FH12 horizontal -0 -10 -9 -Connector_FFC-FPC -Hirose_FH12-10S-0.5SH_1x10-1MP_P0.50mm_Horizontal -Hirose FH12, FFC/FPC connector, FH12-10S-0.5SH, 10 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator -connector Hirose FH12 horizontal -0 -12 -11 -Connector_FFC-FPC -Hirose_FH12-11S-0.5SH_1x11-1MP_P0.50mm_Horizontal -Hirose FH12, FFC/FPC connector, FH12-11S-0.5SH, 11 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator -connector Hirose FH12 horizontal -0 -13 -12 -Connector_FFC-FPC -Hirose_FH12-12S-0.5SH_1x12-1MP_P0.50mm_Horizontal -Hirose FH12, FFC/FPC connector, FH12-12S-0.5SH, 12 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator -connector Hirose FH12 horizontal -0 -14 -13 -Connector_FFC-FPC -Hirose_FH12-13S-0.5SH_1x13-1MP_P0.50mm_Horizontal -Hirose FH12, FFC/FPC connector, FH12-13S-0.5SH, 13 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator -connector Hirose FH12 horizontal -0 -15 -14 -Connector_FFC-FPC -Hirose_FH12-14S-0.5SH_1x14-1MP_P0.50mm_Horizontal -Hirose FH12, FFC/FPC connector, FH12-14S-0.5SH, 14 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator -connector Hirose FH12 horizontal -0 -16 -15 -Connector_FFC-FPC -Hirose_FH12-15S-0.5SH_1x15-1MP_P0.50mm_Horizontal -Hirose FH12, FFC/FPC connector, FH12-15S-0.5SH, 15 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator -connector Hirose FH12 horizontal -0 -17 -16 -Connector_FFC-FPC -Hirose_FH12-16S-0.5SH_1x16-1MP_P0.50mm_Horizontal -Hirose FH12, FFC/FPC connector, FH12-16S-0.5SH, 16 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator -connector Hirose FH12 horizontal -0 -18 -17 -Connector_FFC-FPC -Hirose_FH12-17S-0.5SH_1x17-1MP_P0.50mm_Horizontal -Hirose FH12, FFC/FPC connector, FH12-17S-0.5SH, 17 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator -connector Hirose FH12 horizontal -0 -19 -18 -Connector_FFC-FPC -Hirose_FH12-18S-0.5SH_1x18-1MP_P0.50mm_Horizontal -Hirose FH12, FFC/FPC connector, FH12-18S-0.5SH, 18 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator -connector Hirose FH12 horizontal -0 -20 -19 -Connector_FFC-FPC -Hirose_FH12-19S-0.5SH_1x19-1MP_P0.50mm_Horizontal -Hirose FH12, FFC/FPC connector, FH12-19S-0.5SH, 19 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator -connector Hirose FH12 horizontal -0 -21 -20 -Connector_FFC-FPC -Hirose_FH12-20S-0.5SH_1x20-1MP_P0.50mm_Horizontal -Hirose FH12, FFC/FPC connector, FH12-20S-0.5SH, 20 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator -connector Hirose FH12 horizontal -0 -22 -21 -Connector_FFC-FPC -Hirose_FH12-22S-0.5SH_1x22-1MP_P0.50mm_Horizontal -Hirose FH12, FFC/FPC connector, FH12-22S-0.5SH, 22 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator -connector Hirose FH12 horizontal -0 -24 -23 -Connector_FFC-FPC -Hirose_FH12-24S-0.5SH_1x24-1MP_P0.50mm_Horizontal -Hirose FH12, FFC/FPC connector, FH12-24S-0.5SH, 24 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator -connector Hirose FH12 horizontal -0 -26 -25 -Connector_FFC-FPC -Hirose_FH12-25S-0.5SH_1x25-1MP_P0.50mm_Horizontal -Hirose FH12, FFC/FPC connector, FH12-25S-0.5SH, 25 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator -connector Hirose FH12 horizontal -0 -27 -26 -Connector_FFC-FPC -Hirose_FH12-26S-0.5SH_1x26-1MP_P0.50mm_Horizontal -Hirose FH12, FFC/FPC connector, FH12-26S-0.5SH, 26 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator -connector Hirose FH12 horizontal -0 -28 -27 -Connector_FFC-FPC -Hirose_FH12-28S-0.5SH_1x28-1MP_P0.50mm_Horizontal -Hirose FH12, FFC/FPC connector, FH12-28S-0.5SH, 28 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator -connector Hirose FH12 horizontal -0 -30 -29 -Connector_FFC-FPC -Hirose_FH12-30S-0.5SH_1x30-1MP_P0.50mm_Horizontal -Hirose FH12, FFC/FPC connector, FH12-30S-0.5SH, 30 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator -connector Hirose FH12 horizontal -0 -32 -31 -Connector_FFC-FPC -Hirose_FH12-32S-0.5SH_1x32-1MP_P0.50mm_Horizontal -Hirose FH12, FFC/FPC connector, FH12-32S-0.5SH, 32 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator -connector Hirose FH12 horizontal -0 -34 -33 -Connector_FFC-FPC -Hirose_FH12-33S-0.5SH_1x33-1MP_P0.50mm_Horizontal -Hirose FH12, FFC/FPC connector, FH12-33S-0.5SH, 33 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator -connector Hirose FH12 horizontal -0 -35 -34 -Connector_FFC-FPC -Hirose_FH12-34S-0.5SH_1x34-1MP_P0.50mm_Horizontal -Hirose FH12, FFC/FPC connector, FH12-34S-0.5SH, 34 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator -connector Hirose FH12 horizontal -0 -36 -35 -Connector_FFC-FPC -Hirose_FH12-35S-0.5SH_1x35-1MP_P0.50mm_Horizontal -Hirose FH12, FFC/FPC connector, FH12-35S-0.5SH, 35 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator -connector Hirose FH12 horizontal -0 -37 -36 -Connector_FFC-FPC -Hirose_FH12-36S-0.5SH_1x36-1MP_P0.50mm_Horizontal -Hirose FH12, FFC/FPC connector, FH12-36S-0.5SH, 36 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator -connector Hirose FH12 horizontal -0 -38 -37 -Connector_FFC-FPC -Hirose_FH12-40S-0.5SH_1x40-1MP_P0.50mm_Horizontal -Hirose FH12, FFC/FPC connector, FH12-40S-0.5SH, 40 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator -connector Hirose FH12 horizontal -0 -42 -41 -Connector_FFC-FPC -Hirose_FH12-45S-0.5SH_1x45-1MP_P0.50mm_Horizontal -Hirose FH12, FFC/FPC connector, FH12-45S-0.5SH, 45 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator -connector Hirose FH12 horizontal -0 -47 -46 -Connector_FFC-FPC -Hirose_FH12-50S-0.5SH_1x50-1MP_P0.50mm_Horizontal -Hirose FH12, FFC/FPC connector, FH12-50S-0.5SH, 50 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator -connector Hirose FH12 horizontal -0 -52 -51 -Connector_FFC-FPC -Hirose_FH12-53S-0.5SH_1x53-1MP_P0.50mm_Horizontal -Hirose FH12, FFC/FPC connector, FH12-53S-0.5SH, 53 Pins per row (https://www.hirose.com/product/en/products/FH12/FH12-24S-0.5SH(55)/), generated with kicad-footprint-generator -connector Hirose FH12 horizontal -0 -55 -54 -Connector_FFC-FPC -Hirose_FH41-30S-0.5SH_1x30_1MP_1SH_P0.5mm_Horizontal -Hirose FH41, FFC/FPC connector, FH41-30S-0.5SH, 30 Pins per row (https://www.hirose.com/fr/product/document?clcode=CL0580-2218-5-05&productname=FH41-30S-0.5SH(05)&series=FH41&documenttype=2DDrawing&lang=fr&documentid=0001001704) -connector Hirose FH41 horizontal -0 -38 -32 -Connector_FFC-FPC -JAE_FF0825SA1_2Rows-25Pins_P0.40mm_Horizontal -Molex JAE 0.2mm pitch, 1mm overall height FFC/FPC connector, FF0825SA1, 25 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ108178.pdf), generated with kicad-footprint-generator -connector JAE top entry -0 -25 -25 -Connector_FFC-FPC -JAE_FF0829SA1_2Rows-29Pins_P0.40mm_Horizontal -Molex JAE 0.2mm pitch, 1mm overall height FFC/FPC connector, FF0829SA1, 29 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ108178.pdf), generated with kicad-footprint-generator -connector JAE top entry -0 -29 -29 -Connector_FFC-FPC -JAE_FF0841SA1_2Rows-41Pins_P0.40mm_Horizontal -Molex JAE 0.2mm pitch, 1mm overall height FFC/FPC connector, FF0841SA1, 41 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ108178.pdf), generated with kicad-footprint-generator -connector JAE top entry -0 -41 -41 -Connector_FFC-FPC -JAE_FF0851SA1_2Rows-51Pins_P0.40mm_Horizontal -Molex JAE 0.2mm pitch, 1mm overall height FFC/FPC connector, FF0851SA1, 51 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ108178.pdf), generated with kicad-footprint-generator -connector JAE top entry -0 -51 -51 -Connector_FFC-FPC -JAE_FF0871SA1_2Rows-71Pins_P0.40mm_Horizontal -Molex JAE 0.2mm pitch, 1mm overall height FFC/FPC connector, FF0871SA1, 71 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ108178.pdf), generated with kicad-footprint-generator -connector JAE top entry -0 -71 -71 -Connector_FFC-FPC -JAE_FF0881SA1_2Rows-81Pins_P0.40mm_Horizontal -Molex JAE 0.2mm pitch, 1mm overall height FFC/FPC connector, FF0881SA1, 81 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ108178.pdf), generated with kicad-footprint-generator -connector JAE top entry -0 -81 -81 -Connector_FFC-FPC -Jushuo_AFC07-S06FCA-00_1x6-1MP_P0.50_Horizontal -Jushuo AFC07, FFC/FPC connector, AFC07-S06FCA-00, 6 Pins per row (https://datasheet.lcsc.com/lcsc/1811040204_JUSHUO-AFC07-S32FCC-00_C11061.pdf) -connector jushuo horizontal -0 -8 -7 -Connector_FFC-FPC -Jushuo_AFC07-S24FCA-00_1x24-1MP_P0.50_Horizontal -Jushuo AFC07, FFC/FPC connector, AFC07-S24FCA-00, 24 Pins per row (https://datasheet.lcsc.com/lcsc/1811040204_JUSHUO-AFC07-S32FCC-00_C11061.pdf) -connector jushuo horizontal -0 -26 -25 -Connector_FFC-FPC -Molex_52559-3652_2x18-1MP_P0.5mm_Vertical -Molex 0.50mm Pitch Easy-On Type FFC/FPC, 52559-3652, 36 Circuits (https://www.molex.com/pdm_docs/sd/525593652_sd.pdf) -connector Molex top entry -0 -40 -37 -Connector_FFC-FPC -Molex_54132-5033_1x50-1MP_P0.5mm_Horizontal -Molex FFC/FPC connector, 50 bottom-side contacts, 0.5mm pitch, 2.0mm height, https://www.molex.com/pdm_docs/sd/541325033_sd.pdf -FFC FPC -0 -54 -51 -Connector_FFC-FPC -Molex_54548-1071_1x10-1MP_P0.5mm_Horizontal -Molex FFC/FPC connector, 10 bottom-side contacts, 0.5mm pitch, 1.2mm height, https://www.molex.com/pdm_docs/sd/545481071_sd.pdf -FFC FPC connector -0 -12 -11 -Connector_FFC-FPC -Molex_200528-0040_1x04-1MP_P1.00mm_Horizontal -Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0040, 4 Circuits (https://www.molex.com/pdm_docs/sd/2005280040_sd.pdf), generated with kicad-footprint-generator -connector Molex top entry -0 -6 -5 -Connector_FFC-FPC -Molex_200528-0050_1x05-1MP_P1.00mm_Horizontal -Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0050, 5 Circuits (https://www.molex.com/pdm_docs/sd/2005280050_sd.pdf), generated with kicad-footprint-generator -connector Molex top entry -0 -7 -6 -Connector_FFC-FPC -Molex_200528-0060_1x06-1MP_P1.00mm_Horizontal -Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0060, 6 Circuits (https://www.molex.com/pdm_docs/sd/2005280060_sd.pdf), generated with kicad-footprint-generator -connector Molex top entry -0 -8 -7 -Connector_FFC-FPC -Molex_200528-0070_1x07-1MP_P1.00mm_Horizontal -Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0070, 7 Circuits (https://www.molex.com/pdm_docs/sd/2005280070_sd.pdf), generated with kicad-footprint-generator -connector Molex top entry -0 -9 -8 -Connector_FFC-FPC -Molex_200528-0080_1x08-1MP_P1.00mm_Horizontal -Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0080, 8 Circuits (https://www.molex.com/pdm_docs/sd/2005280080_sd.pdf), generated with kicad-footprint-generator -connector Molex top entry -0 -10 -9 -Connector_FFC-FPC -Molex_200528-0090_1x09-1MP_P1.00mm_Horizontal -Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0090, 9 Circuits (https://www.molex.com/pdm_docs/sd/2005280090_sd.pdf), generated with kicad-footprint-generator -connector Molex top entry -0 -11 -10 -Connector_FFC-FPC -Molex_200528-0100_1x10-1MP_P1.00mm_Horizontal -Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0100, 10 Circuits (https://www.molex.com/pdm_docs/sd/2005280100_sd.pdf), generated with kicad-footprint-generator -connector Molex top entry -0 -12 -11 -Connector_FFC-FPC -Molex_200528-0110_1x11-1MP_P1.00mm_Horizontal -Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0110, 11 Circuits (https://www.molex.com/pdm_docs/sd/2005280110_sd.pdf), generated with kicad-footprint-generator -connector Molex top entry -0 -13 -12 -Connector_FFC-FPC -Molex_200528-0120_1x12-1MP_P1.00mm_Horizontal -Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0120, 12 Circuits (https://www.molex.com/pdm_docs/sd/2005280120_sd.pdf), generated with kicad-footprint-generator -connector Molex top entry -0 -14 -13 -Connector_FFC-FPC -Molex_200528-0130_1x13-1MP_P1.00mm_Horizontal -Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0130, 13 Circuits (https://www.molex.com/pdm_docs/sd/2005280130_sd.pdf), generated with kicad-footprint-generator -connector Molex top entry -0 -15 -14 -Connector_FFC-FPC -Molex_200528-0140_1x14-1MP_P1.00mm_Horizontal -Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0140, 14 Circuits (https://www.molex.com/pdm_docs/sd/2005280140_sd.pdf), generated with kicad-footprint-generator -connector Molex top entry -0 -16 -15 -Connector_FFC-FPC -Molex_200528-0150_1x15-1MP_P1.00mm_Horizontal -Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0150, 15 Circuits (https://www.molex.com/pdm_docs/sd/2005280150_sd.pdf), generated with kicad-footprint-generator -connector Molex top entry -0 -17 -16 -Connector_FFC-FPC -Molex_200528-0160_1x16-1MP_P1.00mm_Horizontal -Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0160, 16 Circuits (https://www.molex.com/pdm_docs/sd/2005280160_sd.pdf), generated with kicad-footprint-generator -connector Molex top entry -0 -18 -17 -Connector_FFC-FPC -Molex_200528-0170_1x17-1MP_P1.00mm_Horizontal -Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0170, 17 Circuits (https://www.molex.com/pdm_docs/sd/2005280170_sd.pdf), generated with kicad-footprint-generator -connector Molex top entry -0 -19 -18 -Connector_FFC-FPC -Molex_200528-0180_1x18-1MP_P1.00mm_Horizontal -Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0180, 18 Circuits (https://www.molex.com/pdm_docs/sd/2005280180_sd.pdf), generated with kicad-footprint-generator -connector Molex top entry -0 -20 -19 -Connector_FFC-FPC -Molex_200528-0190_1x19-1MP_P1.00mm_Horizontal -Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0190, 19 Circuits (https://www.molex.com/pdm_docs/sd/2005280190_sd.pdf), generated with kicad-footprint-generator -connector Molex top entry -0 -21 -20 -Connector_FFC-FPC -Molex_200528-0200_1x20-1MP_P1.00mm_Horizontal -Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0200, 20 Circuits (https://www.molex.com/pdm_docs/sd/2005280200_sd.pdf), generated with kicad-footprint-generator -connector Molex top entry -0 -22 -21 -Connector_FFC-FPC -Molex_200528-0210_1x21-1MP_P1.00mm_Horizontal -Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0210, 21 Circuits (https://www.molex.com/pdm_docs/sd/2005280210_sd.pdf), generated with kicad-footprint-generator -connector Molex top entry -0 -23 -22 -Connector_FFC-FPC -Molex_200528-0220_1x22-1MP_P1.00mm_Horizontal -Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0220, 22 Circuits (https://www.molex.com/pdm_docs/sd/2005280220_sd.pdf), generated with kicad-footprint-generator -connector Molex top entry -0 -24 -23 -Connector_FFC-FPC -Molex_200528-0230_1x23-1MP_P1.00mm_Horizontal -Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0230, 23 Circuits (https://www.molex.com/pdm_docs/sd/2005280230_sd.pdf), generated with kicad-footprint-generator -connector Molex top entry -0 -25 -24 -Connector_FFC-FPC -Molex_200528-0240_1x24-1MP_P1.00mm_Horizontal -Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0240, 24 Circuits (https://www.molex.com/pdm_docs/sd/2005280240_sd.pdf), generated with kicad-footprint-generator -connector Molex top entry -0 -26 -25 -Connector_FFC-FPC -Molex_200528-0250_1x25-1MP_P1.00mm_Horizontal -Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0250, 25 Circuits (https://www.molex.com/pdm_docs/sd/2005280250_sd.pdf), generated with kicad-footprint-generator -connector Molex top entry -0 -27 -26 -Connector_FFC-FPC -Molex_200528-0260_1x26-1MP_P1.00mm_Horizontal -Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0260, 26 Circuits (https://www.molex.com/pdm_docs/sd/2005280260_sd.pdf), generated with kicad-footprint-generator -connector Molex top entry -0 -28 -27 -Connector_FFC-FPC -Molex_200528-0270_1x27-1MP_P1.00mm_Horizontal -Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0270, 27 Circuits (https://www.molex.com/pdm_docs/sd/2005280270_sd.pdf), generated with kicad-footprint-generator -connector Molex top entry -0 -29 -28 -Connector_FFC-FPC -Molex_200528-0280_1x28-1MP_P1.00mm_Horizontal -Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0280, 28 Circuits (https://www.molex.com/pdm_docs/sd/2005280280_sd.pdf), generated with kicad-footprint-generator -connector Molex top entry -0 -30 -29 -Connector_FFC-FPC -Molex_200528-0290_1x29-1MP_P1.00mm_Horizontal -Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0290, 29 Circuits (https://www.molex.com/pdm_docs/sd/2005280290_sd.pdf), generated with kicad-footprint-generator -connector Molex top entry -0 -31 -30 -Connector_FFC-FPC -Molex_200528-0300_1x30-1MP_P1.00mm_Horizontal -Molex Molex 1.00mm Pitch Easy-On BackFlip, Right-Angle, Bottom Contact FFC/FPC, 200528-0300, 30 Circuits (https://www.molex.com/pdm_docs/sd/2005280300_sd.pdf), generated with kicad-footprint-generator -connector Molex top entry -0 -32 -31 -Connector_FFC-FPC -Molex_502231-1500_1x15-1SH_P0.5mm_Vertical -Molex 0.50mm Pitch Easy-On Type FFC/FPC Connector, For LVDS, 6.05mm Height, Vertical, Surface Mount, ZIF, 15 Circuits (https://www.molex.com/pdm_docs/sd/5022311500_sd.pdf) -molex FFC/FPC connector Pitch 0.5mm vertical -0 -17 -16 -Connector_FFC-FPC -Molex_502231-2400_1x24-1SH_P0.5mm_Vertical -Molex 0.50mm Pitch Easy-On Type FFC/FPC Connector, For LVDS, 6.05mm Height, Vertical, Surface Mount, ZIF, 24 Circuits (https://www.molex.com/pdm_docs/sd/5022312400_sd.pdf) -molex FFC/FPC connector Pitch 0.5mm vertical -0 -26 -25 -Connector_FFC-FPC -Molex_502231-3300_1x33-1SH_P0.5mm_Vertical -Molex 0.50mm Pitch Easy-On Type FFC/FPC Connector, For LVDS, 6.05mm Height, Vertical, Surface Mount, ZIF, 33 Circuits (https://www.molex.com/pdm_docs/sd/5022313300_sd.pdf) -molex FFC/FPC connector Pitch 0.5mm vertical -0 -36 -34 -Connector_FFC-FPC -Molex_502244-1530_1x15-1MP_P0.5mm_Horizontal -Molex 0.50mm Pitch Easy-On Type FFC/FPC Connector, For LVDS, 2.33mm Height, Right Angle, Surface Mount, ZIF, Bottom Contact Style, 15 Circuits (http://www.molex.com/pdm_docs/sd/5022441530_sd.pdf) -molex FFC/FPC connector Pitch 0.5mm right angle -0 -19 -16 -Connector_FFC-FPC -Molex_502244-2430_1x24-1MP_P0.5mm_Horizontal -Molex 0.50mm Pitch Easy-On Type FFC/FPC Connector, For LVDS, 2.33mm Height, Right Angle, Surface Mount, ZIF, Bottom Contact Style, 24 Circuits (http://www.molex.com/pdm_docs/sd/5022441530_sd.pdf) -molex FFC/FPC connector Pitch 0.5mm right angle -0 -28 -25 -Connector_FFC-FPC -Molex_502244-3330_1x33-1MP_P0.5mm_Horizontal -Molex 0.50mm Pitch Easy-On Type FFC/FPC Connector, For LVDS, 2.33mm Height, Right Angle, Surface Mount, ZIF, Bottom Contact Style, 33 Circuits (http://www.molex.com/pdm_docs/sd/5022441530_sd.pdf) -molex FFC/FPC connector Pitch 0.5mm right angle -0 -39 -34 -Connector_FFC-FPC -Molex_502250-1791_2Rows-17Pins-1MP_P0.60mm_Horizontal -Molex Molex 0.30mm Pitch Easy-On BackFlip Type FFC/FPC, 502250-1791, 17 Circuits (http://www.molex.com/pdm_docs/sd/5022501791_sd.pdf), generated with kicad-footprint-generator -connector Molex top entry -0 -19 -18 -Connector_FFC-FPC -Molex_502250-2191_2Rows-21Pins-1MP_P0.60mm_Horizontal -Molex Molex 0.30mm Pitch Easy-On BackFlip Type FFC/FPC, 502250-2191, 21 Circuits (http://www.molex.com/pdm_docs/sd/5022502191_sd.pdf), generated with kicad-footprint-generator -connector Molex top entry -0 -23 -22 -Connector_FFC-FPC -Molex_502250-2391_2Rows-23Pins-1MP_P0.60mm_Horizontal -Molex Molex 0.30mm Pitch Easy-On BackFlip Type FFC/FPC, 502250-2391, 23 Circuits (http://www.molex.com/pdm_docs/sd/5022502391_sd.pdf), generated with kicad-footprint-generator -connector Molex top entry -0 -25 -24 -Connector_FFC-FPC -Molex_502250-2791_2Rows-27Pins-1MP_P0.60mm_Horizontal -Molex Molex 0.30mm Pitch Easy-On BackFlip Type FFC/FPC, 502250-2791, 27 Circuits (http://www.molex.com/pdm_docs/sd/5022502791_sd.pdf), generated with kicad-footprint-generator -connector Molex top entry -0 -29 -28 -Connector_FFC-FPC -Molex_502250-3391_2Rows-33Pins-1MP_P0.60mm_Horizontal -Molex Molex 0.30mm Pitch Easy-On BackFlip Type FFC/FPC, 502250-3391, 33 Circuits (http://www.molex.com/pdm_docs/sd/5022503391_sd.pdf), generated with kicad-footprint-generator -connector Molex top entry -0 -35 -34 -Connector_FFC-FPC -Molex_502250-3591_2Rows-35Pins-1MP_P0.60mm_Horizontal -Molex Molex 0.30mm Pitch Easy-On BackFlip Type FFC/FPC, 502250-3591, 35 Circuits (http://www.molex.com/pdm_docs/sd/5022503591_sd.pdf), generated with kicad-footprint-generator -connector Molex top entry -0 -37 -36 -Connector_FFC-FPC -Molex_502250-3991_2Rows-39Pins-1MP_P0.60mm_Horizontal -Molex Molex 0.30mm Pitch Easy-On BackFlip Type FFC/FPC, 502250-3991, 39 Circuits (http://www.molex.com/pdm_docs/sd/5022503991_sd.pdf), generated with kicad-footprint-generator -connector Molex top entry -0 -41 -40 -Connector_FFC-FPC -Molex_502250-4191_2Rows-41Pins-1MP_P0.60mm_Horizontal -Molex Molex 0.30mm Pitch Easy-On BackFlip Type FFC/FPC, 502250-4191, 41 Circuits (http://www.molex.com/pdm_docs/sd/5022504191_sd.pdf), generated with kicad-footprint-generator -connector Molex top entry -0 -43 -42 -Connector_FFC-FPC -Molex_502250-5191_2Rows-51Pins-1MP_P0.60mm_Horizontal -Molex Molex 0.30mm Pitch Easy-On BackFlip Type FFC/FPC, 502250-5191, 51 Circuits (http://www.molex.com/pdm_docs/sd/5022505191_sd.pdf), generated with kicad-footprint-generator -connector Molex top entry -0 -53 -52 -Connector_FFC-FPC -Omron_XF2M-4015-1A_1x40-1MP_P0.5mm_Horizontal -Omron FPC connector, 40 top-side contacts, 0.5mm pitch, SMT, https://omronfs.omron.com/en_US/ecb/products/pdf/en-xf2m.pdf -omron fpc xf2m -0 -42 -41 -Connector_FFC-FPC -TE_0-1734839-5_1x05-1MP_P0.5mm_Horizontal -TE FPC connector, 05 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 -te fpc 1734839 -0 -7 -6 -Connector_FFC-FPC -TE_0-1734839-6_1x06-1MP_P0.5mm_Horizontal -TE FPC connector, 06 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 -te fpc 1734839 -0 -8 -7 -Connector_FFC-FPC -TE_0-1734839-7_1x07-1MP_P0.5mm_Horizontal -TE FPC connector, 07 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 -te fpc 1734839 -0 -9 -8 -Connector_FFC-FPC -TE_0-1734839-8_1x08-1MP_P0.5mm_Horizontal -TE FPC connector, 08 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 -te fpc 1734839 -0 -10 -9 -Connector_FFC-FPC -TE_0-1734839-9_1x09-1MP_P0.5mm_Horizontal -TE FPC connector, 09 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 -te fpc 1734839 -0 -11 -10 -Connector_FFC-FPC -TE_1-84952-0_1x10-1MP_P1.0mm_Horizontal -TE FPC connector, 10 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 -te fpc 84952 -0 -12 -11 -Connector_FFC-FPC -TE_1-84952-1_1x11-1MP_P1.0mm_Horizontal -TE FPC connector, 11 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 -te fpc 84952 -0 -13 -12 -Connector_FFC-FPC -TE_1-84952-2_1x12-1MP_P1.0mm_Horizontal -TE FPC connector, 12 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 -te fpc 84952 -0 -14 -13 -Connector_FFC-FPC -TE_1-84952-3_1x13-1MP_P1.0mm_Horizontal -TE FPC connector, 13 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 -te fpc 84952 -0 -15 -14 -Connector_FFC-FPC -TE_1-84952-4_1x14-1MP_P1.0mm_Horizontal -TE FPC connector, 14 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 -te fpc 84952 -0 -16 -15 -Connector_FFC-FPC -TE_1-84952-5_1x15-1MP_P1.0mm_Horizontal -TE FPC connector, 15 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 -te fpc 84952 -0 -17 -16 -Connector_FFC-FPC -TE_1-84952-6_1x16-1MP_P1.0mm_Horizontal -TE FPC connector, 16 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 -te fpc 84952 -0 -18 -17 -Connector_FFC-FPC -TE_1-84952-7_1x17-1MP_P1.0mm_Horizontal -TE FPC connector, 17 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 -te fpc 84952 -0 -19 -18 -Connector_FFC-FPC -TE_1-84952-8_1x18-1MP_P1.0mm_Horizontal -TE FPC connector, 18 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 -te fpc 84952 -0 -20 -19 -Connector_FFC-FPC -TE_1-84952-9_1x19-1MP_P1.0mm_Horizontal -TE FPC connector, 19 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 -te fpc 84952 -0 -21 -20 -Connector_FFC-FPC -TE_1-84953-0_1x10-1MP_P1.0mm_Horizontal -TE FPC connector, 10 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 -te fpc 84953 -0 -12 -11 -Connector_FFC-FPC -TE_1-84953-1_1x11-1MP_P1.0mm_Horizontal -TE FPC connector, 11 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 -te fpc 84953 -0 -13 -12 -Connector_FFC-FPC -TE_1-84953-2_1x12-1MP_P1.0mm_Horizontal -TE FPC connector, 12 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 -te fpc 84953 -0 -14 -13 -Connector_FFC-FPC -TE_1-84953-3_1x13-1MP_P1.0mm_Horizontal -TE FPC connector, 13 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 -te fpc 84953 -0 -15 -14 -Connector_FFC-FPC -TE_1-84953-4_1x14-1MP_P1.0mm_Horizontal -TE FPC connector, 14 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 -te fpc 84953 -0 -16 -15 -Connector_FFC-FPC -TE_1-84953-5_1x15-1MP_P1.0mm_Horizontal -TE FPC connector, 15 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 -te fpc 84953 -0 -17 -16 -Connector_FFC-FPC -TE_1-84953-6_1x16-1MP_P1.0mm_Horizontal -TE FPC connector, 16 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 -te fpc 84953 -0 -18 -17 -Connector_FFC-FPC -TE_1-84953-7_1x17-1MP_P1.0mm_Horizontal -TE FPC connector, 17 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 -te fpc 84953 -0 -19 -18 -Connector_FFC-FPC -TE_1-84953-8_1x18-1MP_P1.0mm_Horizontal -TE FPC connector, 18 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 -te fpc 84953 -0 -20 -19 -Connector_FFC-FPC -TE_1-84953-9_1x19-1MP_P1.0mm_Horizontal -TE FPC connector, 19 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 -te fpc 84953 -0 -21 -20 -Connector_FFC-FPC -TE_1-1734839-0_1x10-1MP_P0.5mm_Horizontal -TE FPC connector, 10 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 -te fpc 1734839 -0 -12 -11 -Connector_FFC-FPC -TE_1-1734839-1_1x11-1MP_P0.5mm_Horizontal -TE FPC connector, 11 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 -te fpc 1734839 -0 -13 -12 -Connector_FFC-FPC -TE_1-1734839-2_1x12-1MP_P0.5mm_Horizontal -TE FPC connector, 12 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 -te fpc 1734839 -0 -14 -13 -Connector_FFC-FPC -TE_1-1734839-3_1x13-1MP_P0.5mm_Horizontal -TE FPC connector, 13 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 -te fpc 1734839 -0 -15 -14 -Connector_FFC-FPC -TE_1-1734839-4_1x14-1MP_P0.5mm_Horizontal -TE FPC connector, 14 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 -te fpc 1734839 -0 -16 -15 -Connector_FFC-FPC -TE_1-1734839-5_1x15-1MP_P0.5mm_Horizontal -TE FPC connector, 15 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 -te fpc 1734839 -0 -17 -16 -Connector_FFC-FPC -TE_1-1734839-6_1x16-1MP_P0.5mm_Horizontal -TE FPC connector, 16 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 -te fpc 1734839 -0 -18 -17 -Connector_FFC-FPC -TE_1-1734839-7_1x17-1MP_P0.5mm_Horizontal -TE FPC connector, 17 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 -te fpc 1734839 -0 -19 -18 -Connector_FFC-FPC -TE_1-1734839-8_1x18-1MP_P0.5mm_Horizontal -TE FPC connector, 18 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 -te fpc 1734839 -0 -20 -19 -Connector_FFC-FPC -TE_1-1734839-9_1x19-1MP_P0.5mm_Horizontal -TE FPC connector, 19 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 -te fpc 1734839 -0 -21 -20 -Connector_FFC-FPC -TE_2-84952-0_1x20-1MP_P1.0mm_Horizontal -TE FPC connector, 20 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 -te fpc 84952 -0 -22 -21 -Connector_FFC-FPC -TE_2-84952-1_1x21-1MP_P1.0mm_Horizontal -TE FPC connector, 21 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 -te fpc 84952 -0 -23 -22 -Connector_FFC-FPC -TE_2-84952-2_1x22-1MP_P1.0mm_Horizontal -TE FPC connector, 22 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 -te fpc 84952 -0 -24 -23 -Connector_FFC-FPC -TE_2-84952-3_1x23-1MP_P1.0mm_Horizontal -TE FPC connector, 23 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 -te fpc 84952 -0 -25 -24 -Connector_FFC-FPC -TE_2-84952-4_1x24-1MP_P1.0mm_Horizontal -TE FPC connector, 24 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 -te fpc 84952 -0 -26 -25 -Connector_FFC-FPC -TE_2-84952-5_1x25-1MP_P1.0mm_Horizontal -TE FPC connector, 25 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 -te fpc 84952 -0 -27 -26 -Connector_FFC-FPC -TE_2-84952-6_1x26-1MP_P1.0mm_Horizontal -TE FPC connector, 26 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 -te fpc 84952 -0 -28 -27 -Connector_FFC-FPC -TE_2-84952-7_1x27-1MP_P1.0mm_Horizontal -TE FPC connector, 27 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 -te fpc 84952 -0 -29 -28 -Connector_FFC-FPC -TE_2-84952-8_1x28-1MP_P1.0mm_Horizontal -TE FPC connector, 28 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 -te fpc 84952 -0 -30 -29 -Connector_FFC-FPC -TE_2-84952-9_1x29-1MP_P1.0mm_Horizontal -TE FPC connector, 29 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 -te fpc 84952 -0 -31 -30 -Connector_FFC-FPC -TE_2-84953-0_1x20-1MP_P1.0mm_Horizontal -TE FPC connector, 20 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 -te fpc 84953 -0 -22 -21 -Connector_FFC-FPC -TE_2-84953-1_1x21-1MP_P1.0mm_Horizontal -TE FPC connector, 21 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 -te fpc 84953 -0 -23 -22 -Connector_FFC-FPC -TE_2-84953-2_1x22-1MP_P1.0mm_Horizontal -TE FPC connector, 22 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 -te fpc 84953 -0 -24 -23 -Connector_FFC-FPC -TE_2-84953-3_1x23-1MP_P1.0mm_Horizontal -TE FPC connector, 23 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 -te fpc 84953 -0 -25 -24 -Connector_FFC-FPC -TE_2-84953-4_1x24-1MP_P1.0mm_Horizontal -TE FPC connector, 24 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 -te fpc 84953 -0 -26 -25 -Connector_FFC-FPC -TE_2-84953-5_1x25-1MP_P1.0mm_Horizontal -TE FPC connector, 25 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 -te fpc 84953 -0 -27 -26 -Connector_FFC-FPC -TE_2-84953-6_1x26-1MP_P1.0mm_Horizontal -TE FPC connector, 26 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 -te fpc 84953 -0 -28 -27 -Connector_FFC-FPC -TE_2-84953-7_1x27-1MP_P1.0mm_Horizontal -TE FPC connector, 27 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 -te fpc 84953 -0 -29 -28 -Connector_FFC-FPC -TE_2-84953-8_1x28-1MP_P1.0mm_Horizontal -TE FPC connector, 28 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 -te fpc 84953 -0 -30 -29 -Connector_FFC-FPC -TE_2-84953-9_1x29-1MP_P1.0mm_Horizontal -TE FPC connector, 29 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 -te fpc 84953 -0 -31 -30 -Connector_FFC-FPC -TE_2-1734839-0_1x20-1MP_P0.5mm_Horizontal -TE FPC connector, 20 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 -te fpc 1734839 -0 -22 -21 -Connector_FFC-FPC -TE_2-1734839-1_1x21-1MP_P0.5mm_Horizontal -TE FPC connector, 21 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 -te fpc 1734839 -0 -23 -22 -Connector_FFC-FPC -TE_2-1734839-2_1x22-1MP_P0.5mm_Horizontal -TE FPC connector, 22 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 -te fpc 1734839 -0 -24 -23 -Connector_FFC-FPC -TE_2-1734839-3_1x23-1MP_P0.5mm_Horizontal -TE FPC connector, 23 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 -te fpc 1734839 -0 -25 -24 -Connector_FFC-FPC -TE_2-1734839-4_1x24-1MP_P0.5mm_Horizontal -TE FPC connector, 24 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 -te fpc 1734839 -0 -26 -25 -Connector_FFC-FPC -TE_2-1734839-5_1x25-1MP_P0.5mm_Horizontal -TE FPC connector, 25 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 -te fpc 1734839 -0 -27 -26 -Connector_FFC-FPC -TE_2-1734839-6_1x26-1MP_P0.5mm_Horizontal -TE FPC connector, 26 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 -te fpc 1734839 -0 -28 -27 -Connector_FFC-FPC -TE_2-1734839-7_1x27-1MP_P0.5mm_Horizontal -TE FPC connector, 27 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 -te fpc 1734839 -0 -29 -28 -Connector_FFC-FPC -TE_2-1734839-8_1x28-1MP_P0.5mm_Horizontal -TE FPC connector, 28 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 -te fpc 1734839 -0 -30 -29 -Connector_FFC-FPC -TE_2-1734839-9_1x29-1MP_P0.5mm_Horizontal -TE FPC connector, 29 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 -te fpc 1734839 -0 -31 -30 -Connector_FFC-FPC -TE_3-84952-0_1x30-1MP_P1.0mm_Horizontal -TE FPC connector, 30 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 -te fpc 84952 -0 -32 -31 -Connector_FFC-FPC -TE_3-84953-0_1x30-1MP_P1.0mm_Horizontal -TE FPC connector, 30 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 -te fpc 84953 -0 -32 -31 -Connector_FFC-FPC -TE_3-1734839-0_1x30-1MP_P0.5mm_Horizontal -TE FPC connector, 30 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 -te fpc 1734839 -0 -32 -31 -Connector_FFC-FPC -TE_3-1734839-1_1x31-1MP_P0.5mm_Horizontal -TE FPC connector, 31 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 -te fpc 1734839 -0 -33 -32 -Connector_FFC-FPC -TE_3-1734839-2_1x32-1MP_P0.5mm_Horizontal -TE FPC connector, 32 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 -te fpc 1734839 -0 -34 -33 -Connector_FFC-FPC -TE_3-1734839-3_1x33-1MP_P0.5mm_Horizontal -TE FPC connector, 33 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 -te fpc 1734839 -0 -35 -34 -Connector_FFC-FPC -TE_3-1734839-4_1x34-1MP_P0.5mm_Horizontal -TE FPC connector, 34 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 -te fpc 1734839 -0 -36 -35 -Connector_FFC-FPC -TE_3-1734839-5_1x35-1MP_P0.5mm_Horizontal -TE FPC connector, 35 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 -te fpc 1734839 -0 -37 -36 -Connector_FFC-FPC -TE_3-1734839-6_1x36-1MP_P0.5mm_Horizontal -TE FPC connector, 36 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 -te fpc 1734839 -0 -38 -37 -Connector_FFC-FPC -TE_3-1734839-7_1x37-1MP_P0.5mm_Horizontal -TE FPC connector, 37 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 -te fpc 1734839 -0 -39 -38 -Connector_FFC-FPC -TE_3-1734839-8_1x38-1MP_P0.5mm_Horizontal -TE FPC connector, 38 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 -te fpc 1734839 -0 -40 -39 -Connector_FFC-FPC -TE_3-1734839-9_1x39-1MP_P0.5mm_Horizontal -TE FPC connector, 39 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 -te fpc 1734839 -0 -41 -40 -Connector_FFC-FPC -TE_4-1734839-0_1x40-1MP_P0.5mm_Horizontal -TE FPC connector, 40 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 -te fpc 1734839 -0 -42 -41 -Connector_FFC-FPC -TE_4-1734839-1_1x41-1MP_P0.5mm_Horizontal -TE FPC connector, 41 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 -te fpc 1734839 -0 -43 -42 -Connector_FFC-FPC -TE_4-1734839-2_1x42-1MP_P0.5mm_Horizontal -TE FPC connector, 42 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 -te fpc 1734839 -0 -44 -43 -Connector_FFC-FPC -TE_4-1734839-3_1x43-1MP_P0.5mm_Horizontal -TE FPC connector, 43 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 -te fpc 1734839 -0 -45 -44 -Connector_FFC-FPC -TE_4-1734839-4_1x44-1MP_P0.5mm_Horizontal -TE FPC connector, 44 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 -te fpc 1734839 -0 -46 -45 -Connector_FFC-FPC -TE_4-1734839-5_1x45-1MP_P0.5mm_Horizontal -TE FPC connector, 45 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 -te fpc 1734839 -0 -47 -46 -Connector_FFC-FPC -TE_4-1734839-6_1x46-1MP_P0.5mm_Horizontal -TE FPC connector, 46 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 -te fpc 1734839 -0 -48 -47 -Connector_FFC-FPC -TE_4-1734839-7_1x47-1MP_P0.5mm_Horizontal -TE FPC connector, 47 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 -te fpc 1734839 -0 -49 -48 -Connector_FFC-FPC -TE_4-1734839-8_1x48-1MP_P0.5mm_Horizontal -TE FPC connector, 48 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 -te fpc 1734839 -0 -50 -49 -Connector_FFC-FPC -TE_4-1734839-9_1x49-1MP_P0.5mm_Horizontal -TE FPC connector, 49 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 -te fpc 1734839 -0 -51 -50 -Connector_FFC-FPC -TE_5-1734839-0_1x50-1MP_P0.5mm_Horizontal -TE FPC connector, 50 top-side contacts, 0.5mm pitch, SMT, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1734839%7FC%7Fpdf%7FEnglish%7FENG_CD_1734839_C_C_1734839.pdf%7F4-1734839-0 -te fpc 1734839 -0 -52 -51 -Connector_FFC-FPC -TE_84952-4_1x04-1MP_P1.0mm_Horizontal -TE FPC connector, 04 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 -te fpc 84952 -0 -6 -5 -Connector_FFC-FPC -TE_84952-5_1x05-1MP_P1.0mm_Horizontal -TE FPC connector, 05 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 -te fpc 84952 -0 -7 -6 -Connector_FFC-FPC -TE_84952-6_1x06-1MP_P1.0mm_Horizontal -TE FPC connector, 06 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 -te fpc 84952 -0 -8 -7 -Connector_FFC-FPC -TE_84952-7_1x07-1MP_P1.0mm_Horizontal -TE FPC connector, 07 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 -te fpc 84952 -0 -9 -8 -Connector_FFC-FPC -TE_84952-8_1x08-1MP_P1.0mm_Horizontal -TE FPC connector, 08 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 -te fpc 84952 -0 -10 -9 -Connector_FFC-FPC -TE_84952-9_1x09-1MP_P1.0mm_Horizontal -TE FPC connector, 09 bottom-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84952&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84952-4 -te fpc 84952 -0 -11 -10 -Connector_FFC-FPC -TE_84953-4_1x04-1MP_P1.0mm_Horizontal -TE FPC connector, 04 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 -te fpc 84953 -0 -6 -5 -Connector_FFC-FPC -TE_84953-5_1x05-1MP_P1.0mm_Horizontal -TE FPC connector, 05 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 -te fpc 84953 -0 -7 -6 -Connector_FFC-FPC -TE_84953-6_1x06-1MP_P1.0mm_Horizontal -TE FPC connector, 06 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 -te fpc 84953 -0 -8 -7 -Connector_FFC-FPC -TE_84953-7_1x07-1MP_P1.0mm_Horizontal -TE FPC connector, 07 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 -te fpc 84953 -0 -9 -8 -Connector_FFC-FPC -TE_84953-8_1x08-1MP_P1.0mm_Horizontal -TE FPC connector, 08 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 -te fpc 84953 -0 -10 -9 -Connector_FFC-FPC -TE_84953-9_1x09-1MP_P1.0mm_Horizontal -TE FPC connector, 09 top-side contacts, 1.0mm pitch, 1.0mm height, SMT, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=84953&DocType=Customer+Drawing&DocLang=English&DocFormat=pdf&PartCntxt=84953-4 -te fpc 84953 -0 -11 -10 -Connector_FFC-FPC -Wuerth_68611214422_1x12-1MP_P1.0mm_Horizontal -http://katalog.we-online.de/em/datasheet/68611214422.pdf -Wuerth FPC 68611214422 connector 12 bottom-side contacts 1.0mm pitch 1.0mm height SMT -0 -14 -13 -Connector_HDMI -HDMI_A_Amphenol_10029449-x01xLF_Horizontal -HDMI Type A connector, Amphenol 10029449-001TLF 10029449-001RLF 10029449-101TLF 10029449-101RLF, Right Angle(https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/10029449.pdf) -hdmi right angle -0 -23 -20 -Connector_HDMI -HDMI_A_Contact_Technology_HDMI-19APL2_Horizontal -HDMI Contact Technology Type A http://www.contactswitch.com/en/download.aspx?id=1449 -HDMI Contact Technology Type A -0 -23 -20 -Connector_HDMI -HDMI_A_Kycon_KDMIX-SL1-NS-WS-B15_VerticalRightAngle -HDMI, Type A, Kycon KDMIX-SL1-NS-WS-B15, Vertical Right Angle, http://www.kycon.com/Pub_Eng_Draw/KDMIX-SL1-NS-WS-B15.pdf -hdmi type a -0 -23 -20 -Connector_HDMI -HDMI_A_Molex_208658-1001_Horizontal -HDMI Molex Type A https://www.molex.com/pdm_docs/sd/2086581001_sd.pdf -HDMI Molex Type A -0 -23 -20 -Connector_HDMI -HDMI_Micro-D_Molex_46765-0x01 -HDMI, Micro, Type D, SMD, 0.4mm pitch, 19 ckt, right angle (http://www.molex.com/pdm_docs/sd/467651301_sd.pdf) -hdmi micro type d right angle smd -0 -23 -20 -Connector_HDMI -HDMI_Micro-D_Molex_46765-1x01 -HDMI, Micro, Type D, THT, 0.4mm pitch, 19 ckt, right angle (http://www.molex.com/pdm_docs/sd/467651301_sd.pdf) -hdmi micro type d right angle tht -0 -23 -20 -Connector_HDMI -HDMI_Micro-D_Molex_46765-2x0x -HDMI, Micro, Type D, THT/SMD hybrid, 0.4mm pitch, 19 ckt, right angle (http://www.molex.com/pdm_docs/sd/467651301_sd.pdf) -hdmi micro type d right angle tht smd hybrid -0 -23 -20 -Connector_Harting -Harting_har-flexicon_14110213001xxx_1x02-MP_P2.54mm_Vertical -Harting har-flexicon series connector, 14110213001xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13001XXX_100228421DRW046C.pdf), generated with kicad-footprint-generator -connector Harting har-flexicon vertical -0 -4 -3 -Connector_Harting -Harting_har-flexicon_14110213002xxx_1x02-MP_P2.54mm_Horizontal -Harting har-flexicon series connector, 14110213002xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13002XXX_100228421DRW035C.pdf), generated with kicad-footprint-generator -connector Harting har-flexicon horizontal -0 -4 -3 -Connector_Harting -Harting_har-flexicon_14110213010xxx_1x02-MP_P2.54mm_Horizontal -Harting har-flexicon series connector, 14110213010xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13010XXX_100228421DRW063C.pdf), generated with kicad-footprint-generator -connector Harting har-flexicon horizontal -0 -4 -3 -Connector_Harting -Harting_har-flexicon_14110313001xxx_1x03-MP_P2.54mm_Vertical -Harting har-flexicon series connector, 14110313001xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13001XXX_100228421DRW046C.pdf), generated with kicad-footprint-generator -connector Harting har-flexicon vertical -0 -5 -4 -Connector_Harting -Harting_har-flexicon_14110313002xxx_1x03-MP_P2.54mm_Horizontal -Harting har-flexicon series connector, 14110313002xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13002XXX_100228421DRW035C.pdf), generated with kicad-footprint-generator -connector Harting har-flexicon horizontal -0 -5 -4 -Connector_Harting -Harting_har-flexicon_14110313010xxx_1x03-MP_P2.54mm_Horizontal -Harting har-flexicon series connector, 14110313010xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13010XXX_100228421DRW063C.pdf), generated with kicad-footprint-generator -connector Harting har-flexicon horizontal -0 -5 -4 -Connector_Harting -Harting_har-flexicon_14110413001xxx_1x04-MP_P2.54mm_Vertical -Harting har-flexicon series connector, 14110413001xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13001XXX_100228421DRW046C.pdf), generated with kicad-footprint-generator -connector Harting har-flexicon vertical -0 -6 -5 -Connector_Harting -Harting_har-flexicon_14110413002xxx_1x04-MP_P2.54mm_Horizontal -Harting har-flexicon series connector, 14110413002xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13002XXX_100228421DRW035C.pdf), generated with kicad-footprint-generator -connector Harting har-flexicon horizontal -0 -6 -5 -Connector_Harting -Harting_har-flexicon_14110413010xxx_1x04-MP_P2.54mm_Horizontal -Harting har-flexicon series connector, 14110413010xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13010XXX_100228421DRW063C.pdf), generated with kicad-footprint-generator -connector Harting har-flexicon horizontal -0 -6 -5 -Connector_Harting -Harting_har-flexicon_14110513001xxx_1x05-MP_P2.54mm_Vertical -Harting har-flexicon series connector, 14110513001xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13001XXX_100228421DRW046C.pdf), generated with kicad-footprint-generator -connector Harting har-flexicon vertical -0 -7 -6 -Connector_Harting -Harting_har-flexicon_14110513002xxx_1x05-MP_P2.54mm_Horizontal -Harting har-flexicon series connector, 14110513002xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13002XXX_100228421DRW035C.pdf), generated with kicad-footprint-generator -connector Harting har-flexicon horizontal -0 -7 -6 -Connector_Harting -Harting_har-flexicon_14110513010xxx_1x05-MP_P2.54mm_Horizontal -Harting har-flexicon series connector, 14110513010xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13010XXX_100228421DRW063C.pdf), generated with kicad-footprint-generator -connector Harting har-flexicon horizontal -0 -7 -6 -Connector_Harting -Harting_har-flexicon_14110613001xxx_1x06-MP_P2.54mm_Vertical -Harting har-flexicon series connector, 14110613001xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13001XXX_100228421DRW046C.pdf), generated with kicad-footprint-generator -connector Harting har-flexicon vertical -0 -8 -7 -Connector_Harting -Harting_har-flexicon_14110613002xxx_1x06-MP_P2.54mm_Horizontal -Harting har-flexicon series connector, 14110613002xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13002XXX_100228421DRW035C.pdf), generated with kicad-footprint-generator -connector Harting har-flexicon horizontal -0 -8 -7 -Connector_Harting -Harting_har-flexicon_14110613010xxx_1x06-MP_P2.54mm_Horizontal -Harting har-flexicon series connector, 14110613010xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13010XXX_100228421DRW063C.pdf), generated with kicad-footprint-generator -connector Harting har-flexicon horizontal -0 -8 -7 -Connector_Harting -Harting_har-flexicon_14110713001xxx_1x07-MP_P2.54mm_Vertical -Harting har-flexicon series connector, 14110713001xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13001XXX_100228421DRW046C.pdf), generated with kicad-footprint-generator -connector Harting har-flexicon vertical -0 -9 -8 -Connector_Harting -Harting_har-flexicon_14110713002xxx_1x07-MP_P2.54mm_Horizontal -Harting har-flexicon series connector, 14110713002xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13002XXX_100228421DRW035C.pdf), generated with kicad-footprint-generator -connector Harting har-flexicon horizontal -0 -9 -8 -Connector_Harting -Harting_har-flexicon_14110713010xxx_1x07-MP_P2.54mm_Horizontal -Harting har-flexicon series connector, 14110713010xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13010XXX_100228421DRW063C.pdf), generated with kicad-footprint-generator -connector Harting har-flexicon horizontal -0 -9 -8 -Connector_Harting -Harting_har-flexicon_14110813001xxx_1x08-MP_P2.54mm_Vertical -Harting har-flexicon series connector, 14110813001xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13001XXX_100228421DRW046C.pdf), generated with kicad-footprint-generator -connector Harting har-flexicon vertical -0 -10 -9 -Connector_Harting -Harting_har-flexicon_14110813002xxx_1x08-MP_P2.54mm_Horizontal -Harting har-flexicon series connector, 14110813002xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13002XXX_100228421DRW035C.pdf), generated with kicad-footprint-generator -connector Harting har-flexicon horizontal -0 -10 -9 -Connector_Harting -Harting_har-flexicon_14110813010xxx_1x08-MP_P2.54mm_Horizontal -Harting har-flexicon series connector, 14110813010xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13010XXX_100228421DRW063C.pdf), generated with kicad-footprint-generator -connector Harting har-flexicon horizontal -0 -10 -9 -Connector_Harting -Harting_har-flexicon_14110913001xxx_1x09-MP_P2.54mm_Vertical -Harting har-flexicon series connector, 14110913001xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13001XXX_100228421DRW046C.pdf), generated with kicad-footprint-generator -connector Harting har-flexicon vertical -0 -11 -10 -Connector_Harting -Harting_har-flexicon_14110913002xxx_1x09-MP_P2.54mm_Horizontal -Harting har-flexicon series connector, 14110913002xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13002XXX_100228421DRW035C.pdf), generated with kicad-footprint-generator -connector Harting har-flexicon horizontal -0 -11 -10 -Connector_Harting -Harting_har-flexicon_14110913010xxx_1x09-MP_P2.54mm_Horizontal -Harting har-flexicon series connector, 14110913010xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13010XXX_100228421DRW063C.pdf), generated with kicad-footprint-generator -connector Harting har-flexicon horizontal -0 -11 -10 -Connector_Harting -Harting_har-flexicon_14111013001xxx_1x10-MP_P2.54mm_Vertical -Harting har-flexicon series connector, 14111013001xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13001XXX_100228421DRW046C.pdf), generated with kicad-footprint-generator -connector Harting har-flexicon vertical -0 -12 -11 -Connector_Harting -Harting_har-flexicon_14111013002xxx_1x10-MP_P2.54mm_Horizontal -Harting har-flexicon series connector, 14111013002xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13002XXX_100228421DRW035C.pdf), generated with kicad-footprint-generator -connector Harting har-flexicon horizontal -0 -12 -11 -Connector_Harting -Harting_har-flexicon_14111013010xxx_1x10-MP_P2.54mm_Horizontal -Harting har-flexicon series connector, 14111013010xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13010XXX_100228421DRW063C.pdf), generated with kicad-footprint-generator -connector Harting har-flexicon horizontal -0 -12 -11 -Connector_Harting -Harting_har-flexicon_14111113001xxx_1x11-MP_P2.54mm_Vertical -Harting har-flexicon series connector, 14111113001xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13001XXX_100228421DRW046C.pdf), generated with kicad-footprint-generator -connector Harting har-flexicon vertical -0 -13 -12 -Connector_Harting -Harting_har-flexicon_14111113002xxx_1x11-MP_P2.54mm_Horizontal -Harting har-flexicon series connector, 14111113002xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13002XXX_100228421DRW035C.pdf), generated with kicad-footprint-generator -connector Harting har-flexicon horizontal -0 -13 -12 -Connector_Harting -Harting_har-flexicon_14111113010xxx_1x11-MP_P2.54mm_Horizontal -Harting har-flexicon series connector, 14111113010xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13010XXX_100228421DRW063C.pdf), generated with kicad-footprint-generator -connector Harting har-flexicon horizontal -0 -13 -12 -Connector_Harting -Harting_har-flexicon_14111213001xxx_1x12-MP_P2.54mm_Vertical -Harting har-flexicon series connector, 14111213001xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13001XXX_100228421DRW046C.pdf), generated with kicad-footprint-generator -connector Harting har-flexicon vertical -0 -14 -13 -Connector_Harting -Harting_har-flexicon_14111213002xxx_1x12-MP_P2.54mm_Horizontal -Harting har-flexicon series connector, 14111213002xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13002XXX_100228421DRW035C.pdf), generated with kicad-footprint-generator -connector Harting har-flexicon horizontal -0 -14 -13 -Connector_Harting -Harting_har-flexicon_14111213010xxx_1x12-MP_P2.54mm_Horizontal -Harting har-flexicon series connector, 14111213010xxx (https://b2b.harting.com/files/download/PRD/PDF_TS/1411XX13010XXX_100228421DRW063C.pdf), generated with kicad-footprint-generator -connector Harting har-flexicon horizontal -0 -14 -13 -Connector_Harwin -Harwin_Gecko-G125-FVX0605L0X_2x03_P1.25mm_Vertical -Harwin Gecko Connector, 6 pins, dual row female, vertical entry, PN:G125-FVX0605L0X -connector harwin gecko -0 -6 -6 -Connector_Harwin -Harwin_Gecko-G125-FVX1005L0X_2x05_P1.25mm_Vertical -Harwin Gecko Connector, 10 pins, dual row female, vertical entry, PN:G125-FVX1005L0X -connector harwin gecko -0 -10 -10 -Connector_Harwin -Harwin_Gecko-G125-FVX1205L0X_2x06_P1.25mm_Vertical -Harwin Gecko Connector, 12 pins, dual row female, vertical entry, PN:G125-FVX1205L0X -connector harwin gecko -0 -12 -12 -Connector_Harwin -Harwin_Gecko-G125-FVX1605L0X_2x08_P1.25mm_Vertical -Harwin Gecko Connector, 16 pins, dual row female, vertical entry, PN:G125-FVX1605L0X -connector harwin gecko -0 -16 -16 -Connector_Harwin -Harwin_Gecko-G125-FVX2005L0X_2x10_P1.25mm_Vertical -Harwin Gecko Connector, 20 pins, dual row female, vertical entry, PN:G125-FVX2005L0X -connector harwin gecko -0 -20 -20 -Connector_Harwin -Harwin_Gecko-G125-FVX2605L0X_2x13_P1.25mm_Vertical -Harwin Gecko Connector, 26 pins, dual row female, vertical entry, PN:G125-FVX2605L0X -connector harwin gecko -0 -26 -26 -Connector_Harwin -Harwin_Gecko-G125-FVX3405L0X_2x17_P1.25mm_Vertical -Harwin Gecko Connector, 34 pins, dual row female, vertical entry, PN:G125-FVX3405L0X -connector harwin gecko -0 -34 -34 -Connector_Harwin -Harwin_Gecko-G125-FVX5005L0X_2x25_P1.25mm_Vertical -Harwin Gecko Connector, 50 pins, dual row female, vertical entry, PN:G125-FVX5005L0X -connector harwin gecko -0 -50 -50 -Connector_Harwin -Harwin_Gecko-G125-MVX0605L0X_2x03_P1.25mm_Vertical -Harwin Gecko Connector, 6 pins, dual row male, vertical entry, no latches, PN:G125-MVX0605L0X -connector harwin gecko -0 -6 -6 -Connector_Harwin -Harwin_Gecko-G125-MVX0605L1X_2x03_P1.25mm_Vertical -Harwin Gecko Connector, 6 pins, dual row male, vertical entry, with latches, PN:G125-MVX0605L1X -connector harwin gecko -0 -6 -6 -Connector_Harwin -Harwin_Gecko-G125-MVX1005L0X_2x05_P1.25mm_Vertical -Harwin Gecko Connector, 10 pins, dual row male, vertical entry, no latches, PN:G125-MVX1005L0X -connector harwin gecko -0 -10 -10 -Connector_Harwin -Harwin_Gecko-G125-MVX1005L1X_2x05_P1.25mm_Vertical -Harwin Gecko Connector, 10 pins, dual row male, vertical entry, with latches, PN:G125-MVX1005L1X -connector harwin gecko -0 -10 -10 -Connector_Harwin -Harwin_Gecko-G125-MVX1205L0X_2x06_P1.25mm_Vertical -Harwin Gecko Connector, 12 pins, dual row male, vertical entry, no latches, PN:G125-MVX1205L0X -connector harwin gecko -0 -12 -12 -Connector_Harwin -Harwin_Gecko-G125-MVX1205L1X_2x06_P1.25mm_Vertical -Harwin Gecko Connector, 12 pins, dual row male, vertical entry, with latches, PN:G125-MVX1205L1X -connector harwin gecko -0 -12 -12 -Connector_Harwin -Harwin_Gecko-G125-MVX1605L0X_2x08_P1.25mm_Vertical -Harwin Gecko Connector, 16 pins, dual row male, vertical entry, no latches, PN:G125-MVX1605L0X -connector harwin gecko -0 -16 -16 -Connector_Harwin -Harwin_Gecko-G125-MVX1605L1X_2x08_P1.25mm_Vertical -Harwin Gecko Connector, 16 pins, dual row male, vertical entry, with latches, PN:G125-MVX1605L1X -connector harwin gecko -0 -16 -16 -Connector_Harwin -Harwin_Gecko-G125-MVX2005L0X_2x10_P1.25mm_Vertical -Harwin Gecko Connector, 20 pins, dual row male, vertical entry, no latches, PN:G125-MVX2005L0X -connector harwin gecko -0 -20 -20 -Connector_Harwin -Harwin_Gecko-G125-MVX2005L1X_2x10_P1.25mm_Vertical -Harwin Gecko Connector, 20 pins, dual row male, vertical entry, with latches, PN:G125-MVX2005L1X -connector harwin gecko -0 -20 -20 -Connector_Harwin -Harwin_Gecko-G125-MVX2605L0X_2x13_P1.25mm_Vertical -Harwin Gecko Connector, 26 pins, dual row male, vertical entry, no latches, PN:G125-MVX2605L0X -connector harwin gecko -0 -26 -26 -Connector_Harwin -Harwin_Gecko-G125-MVX2605L1X_2x13_P1.25mm_Vertical -Harwin Gecko Connector, 26 pins, dual row male, vertical entry, with latches, PN:G125-MVX2605L1X -connector harwin gecko -0 -26 -26 -Connector_Harwin -Harwin_Gecko-G125-MVX3405L0X_2x17_P1.25mm_Vertical -Harwin Gecko Connector, 34 pins, dual row male, vertical entry, no latches, PN:G125-MVX3405L0X -connector harwin gecko -0 -34 -34 -Connector_Harwin -Harwin_Gecko-G125-MVX3405L1X_2x17_P1.25mm_Vertical -Harwin Gecko Connector, 34 pins, dual row male, vertical entry, with latches, PN:G125-MVX3405L1X -connector harwin gecko -0 -34 -34 -Connector_Harwin -Harwin_Gecko-G125-MVX5005L0X_2x25_P1.25mm_Vertical -Harwin Gecko Connector, 50 pins, dual row male, vertical entry, no latches, PN:G125-MVX5005L0X -connector harwin gecko -0 -50 -50 -Connector_Harwin -Harwin_Gecko-G125-MVX5005L1X_2x25_P1.25mm_Vertical -Harwin Gecko Connector, 50 pins, dual row male, vertical entry, with latches, PN:G125-MVX5005L1X -connector harwin gecko -0 -50 -50 -Connector_Harwin -Harwin_LTek-Male_02_P2.00mm_Vertical -Harwin LTek Connector, 2 pins, single row male, vertical entry -connector harwin ltek M80 -0 -2 -2 -Connector_Harwin -Harwin_LTek-Male_02_P2.00mm_Vertical_StrainRelief -Harwin LTek Connector, 2 pins, single row male, vertical entry, strain relief clip -connector harwin ltek M80 -0 -6 -2 -Connector_Harwin -Harwin_LTek-Male_2x02_P2.00mm_Vertical -Harwin LTek Connector, 4 pins, single row male, vertical entry -connector harwin ltek M80 -0 -4 -4 -Connector_Harwin -Harwin_LTek-Male_2x02_P2.00mm_Vertical_StrainRelief -Harwin LTek Connector, 4 pins, single row male, vertical entry, strain relief clip -connector harwin ltek M80 -0 -8 -4 -Connector_Harwin -Harwin_LTek-Male_2x03_P2.00mm_Vertical -Harwin LTek Connector, 6 pins, single row male, vertical entry -connector harwin ltek M80 -0 -6 -6 -Connector_Harwin -Harwin_LTek-Male_2x03_P2.00mm_Vertical_StrainRelief -Harwin LTek Connector, 6 pins, single row male, vertical entry, strain relief clip -connector harwin ltek M80 -0 -10 -6 -Connector_Harwin -Harwin_LTek-Male_2x04_P2.00mm_Vertical -Harwin LTek Connector, 8 pins, single row male, vertical entry -connector harwin ltek M80 -0 -8 -8 -Connector_Harwin -Harwin_LTek-Male_2x04_P2.00mm_Vertical_StrainRelief -Harwin LTek Connector, 8 pins, single row male, vertical entry, strain relief clip -connector harwin ltek M80 -0 -12 -8 -Connector_Harwin -Harwin_LTek-Male_2x05_P2.00mm_Vertical -Harwin LTek Connector, 10 pins, single row male, vertical entry -connector harwin ltek M80 -0 -10 -10 -Connector_Harwin -Harwin_LTek-Male_2x05_P2.00mm_Vertical_StrainRelief -Harwin LTek Connector, 10 pins, single row male, vertical entry, strain relief clip -connector harwin ltek M80 -0 -14 -10 -Connector_Harwin -Harwin_LTek-Male_2x06_P2.00mm_Vertical -Harwin LTek Connector, 12 pins, single row male, vertical entry -connector harwin ltek M80 -0 -12 -12 -Connector_Harwin -Harwin_LTek-Male_2x06_P2.00mm_Vertical_StrainRelief -Harwin LTek Connector, 12 pins, single row male, vertical entry, strain relief clip -connector harwin ltek M80 -0 -16 -12 -Connector_Harwin -Harwin_LTek-Male_2x07_P2.00mm_Vertical -Harwin LTek Connector, 14 pins, single row male, vertical entry -connector harwin ltek M80 -0 -14 -14 -Connector_Harwin -Harwin_LTek-Male_2x07_P2.00mm_Vertical_StrainRelief -Harwin LTek Connector, 14 pins, single row male, vertical entry, strain relief clip -connector harwin ltek M80 -0 -18 -14 -Connector_Harwin -Harwin_LTek-Male_2x08_P2.00mm_Vertical -Harwin LTek Connector, 16 pins, single row male, vertical entry -connector harwin ltek M80 -0 -16 -16 -Connector_Harwin -Harwin_LTek-Male_2x08_P2.00mm_Vertical_StrainRelief -Harwin LTek Connector, 16 pins, single row male, vertical entry, strain relief clip -connector harwin ltek M80 -0 -20 -16 -Connector_Harwin -Harwin_LTek-Male_2x09_P2.00mm_Vertical -Harwin LTek Connector, 18 pins, single row male, vertical entry -connector harwin ltek M80 -0 -18 -18 -Connector_Harwin -Harwin_LTek-Male_2x09_P2.00mm_Vertical_StrainRelief -Harwin LTek Connector, 18 pins, single row male, vertical entry, strain relief clip -connector harwin ltek M80 -0 -22 -18 -Connector_Harwin -Harwin_LTek-Male_2x10_P2.00mm_Vertical -Harwin LTek Connector, 20 pins, single row male, vertical entry -connector harwin ltek M80 -0 -20 -20 -Connector_Harwin -Harwin_LTek-Male_2x10_P2.00mm_Vertical_StrainRelief -Harwin LTek Connector, 20 pins, single row male, vertical entry, strain relief clip -connector harwin ltek M80 -0 -24 -20 -Connector_Harwin -Harwin_LTek-Male_2x13_P2.00mm_Vertical -Harwin LTek Connector, 26 pins, single row male, vertical entry -connector harwin ltek M80 -0 -26 -26 -Connector_Harwin -Harwin_LTek-Male_2x13_P2.00mm_Vertical_StrainRelief -Harwin LTek Connector, 26 pins, single row male, vertical entry, strain relief clip -connector harwin ltek M80 -0 -30 -26 -Connector_Harwin -Harwin_LTek-Male_2x17_P2.00mm_Vertical -Harwin LTek Connector, 34 pins, single row male, vertical entry -connector harwin ltek M80 -0 -34 -34 -Connector_Harwin -Harwin_LTek-Male_2x17_P2.00mm_Vertical_StrainRelief -Harwin LTek Connector, 34 pins, single row male, vertical entry, strain relief clip -connector harwin ltek M80 -0 -38 -34 -Connector_Harwin -Harwin_LTek-Male_2x22_P2.00mm_Vertical -Harwin LTek Connector, 44 pins, single row male, vertical entry -connector harwin ltek M80 -0 -44 -44 -Connector_Harwin -Harwin_LTek-Male_2x22_P2.00mm_Vertical_StrainRelief -Harwin LTek Connector, 44 pins, single row male, vertical entry, strain relief clip -connector harwin ltek M80 -0 -48 -44 -Connector_Harwin -Harwin_LTek-Male_03_P2.00mm_Vertical -Harwin LTek Connector, 3 pins, single row male, vertical entry -connector harwin ltek M80 -0 -3 -3 -Connector_Harwin -Harwin_LTek-Male_03_P2.00mm_Vertical_StrainRelief -Harwin LTek Connector, 3 pins, single row male, vertical entry, strain relief clip -connector harwin ltek M80 -0 -7 -3 -Connector_Harwin -Harwin_LTek-Male_04_P2.00mm_Vertical -Harwin LTek Connector, 4 pins, single row male, vertical entry -connector harwin ltek M80 -0 -4 -4 -Connector_Harwin -Harwin_LTek-Male_04_P2.00mm_Vertical_StrainRelief -Harwin LTek Connector, 4 pins, single row male, vertical entry, strain relief clip -connector harwin ltek M80 -0 -8 -4 -Connector_Harwin -Harwin_LTek-Male_05_P2.00mm_Vertical -Harwin LTek Connector, 5 pins, single row male, vertical entry -connector harwin ltek M80 -0 -5 -5 -Connector_Harwin -Harwin_LTek-Male_05_P2.00mm_Vertical_StrainRelief -Harwin LTek Connector, 5 pins, single row male, vertical entry, strain relief clip -connector harwin ltek M80 -0 -9 -5 -Connector_Harwin -Harwin_LTek-Male_06_P2.00mm_Vertical -Harwin LTek Connector, 6 pins, single row male, vertical entry -connector harwin ltek M80 -0 -6 -6 -Connector_Harwin -Harwin_LTek-Male_06_P2.00mm_Vertical_StrainRelief -Harwin LTek Connector, 6 pins, single row male, vertical entry, strain relief clip -connector harwin ltek M80 -0 -10 -6 -Connector_Harwin -Harwin_LTek-Male_07_P2.00mm_Vertical -Harwin LTek Connector, 7 pins, single row male, vertical entry -connector harwin ltek M80 -0 -7 -7 -Connector_Harwin -Harwin_LTek-Male_07_P2.00mm_Vertical_StrainRelief -Harwin LTek Connector, 7 pins, single row male, vertical entry, strain relief clip -connector harwin ltek M80 -0 -11 -7 -Connector_Harwin -Harwin_LTek-Male_17_P2.00mm_Vertical -Harwin LTek Connector, 17 pins, single row male, vertical entry -connector harwin ltek M80 -0 -17 -17 -Connector_Harwin -Harwin_LTek-Male_17_P2.00mm_Vertical_StrainRelief -Harwin LTek Connector, 17 pins, single row male, vertical entry, strain relief clip -connector harwin ltek M80 -0 -21 -17 -Connector_Harwin -Harwin_LTek-Male_22_P2.00mm_Vertical -Harwin LTek Connector, 22 pins, single row male, vertical entry -connector harwin ltek M80 -0 -22 -22 -Connector_Harwin -Harwin_LTek-Male_22_P2.00mm_Vertical_StrainRelief -Harwin LTek Connector, 22 pins, single row male, vertical entry, strain relief clip -connector harwin ltek M80 -0 -26 -22 -Connector_Harwin -Harwin_M20-89003xx_1x03_P2.54mm_Horizontal -Harwin Male Horizontal Surface Mount Single Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-89003xx, 3 Pins per row (https://cdn.harwin.com/pdfs/M20-890.pdf), generated with kicad-footprint-generator -connector Harwin M20-890 horizontal -0 -4 -3 -Connector_Harwin -Harwin_M20-89004xx_1x04_P2.54mm_Horizontal -Harwin Male Horizontal Surface Mount Single Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-89004xx, 4 Pins per row (https://cdn.harwin.com/pdfs/M20-890.pdf), generated with kicad-footprint-generator -connector Harwin M20-890 horizontal -0 -5 -4 -Connector_Harwin -Harwin_M20-89005xx_1x05_P2.54mm_Horizontal -Harwin Male Horizontal Surface Mount Single Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-89005xx, 5 Pins per row (https://cdn.harwin.com/pdfs/M20-890.pdf), generated with kicad-footprint-generator -connector Harwin M20-890 horizontal -0 -6 -5 -Connector_Harwin -Harwin_M20-89006xx_1x06_P2.54mm_Horizontal -Harwin Male Horizontal Surface Mount Single Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-89006xx, 6 Pins per row (https://cdn.harwin.com/pdfs/M20-890.pdf), generated with kicad-footprint-generator -connector Harwin M20-890 horizontal -0 -7 -6 -Connector_Harwin -Harwin_M20-89007xx_1x07_P2.54mm_Horizontal -Harwin Male Horizontal Surface Mount Single Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-89007xx, 7 Pins per row (https://cdn.harwin.com/pdfs/M20-890.pdf), generated with kicad-footprint-generator -connector Harwin M20-890 horizontal -0 -8 -7 -Connector_Harwin -Harwin_M20-89008xx_1x08_P2.54mm_Horizontal -Harwin Male Horizontal Surface Mount Single Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-89008xx, 8 Pins per row (https://cdn.harwin.com/pdfs/M20-890.pdf), generated with kicad-footprint-generator -connector Harwin M20-890 horizontal -0 -9 -8 -Connector_Harwin -Harwin_M20-89009xx_1x09_P2.54mm_Horizontal -Harwin Male Horizontal Surface Mount Single Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-89009xx, 9 Pins per row (https://cdn.harwin.com/pdfs/M20-890.pdf), generated with kicad-footprint-generator -connector Harwin M20-890 horizontal -0 -10 -9 -Connector_Harwin -Harwin_M20-89010xx_1x10_P2.54mm_Horizontal -Harwin Male Horizontal Surface Mount Single Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-89010xx, 10 Pins per row (https://cdn.harwin.com/pdfs/M20-890.pdf), generated with kicad-footprint-generator -connector Harwin M20-890 horizontal -0 -11 -10 -Connector_Harwin -Harwin_M20-89011xx_1x11_P2.54mm_Horizontal -Harwin Male Horizontal Surface Mount Single Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-89011xx, 11 Pins per row (https://cdn.harwin.com/pdfs/M20-890.pdf), generated with kicad-footprint-generator -connector Harwin M20-890 horizontal -0 -12 -11 -Connector_Harwin -Harwin_M20-89012xx_1x12_P2.54mm_Horizontal -Harwin Male Horizontal Surface Mount Single Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-89012xx, 12 Pins per row (https://cdn.harwin.com/pdfs/M20-890.pdf), generated with kicad-footprint-generator -connector Harwin M20-890 horizontal -0 -13 -12 -Connector_Harwin -Harwin_M20-89013xx_1x13_P2.54mm_Horizontal -Harwin Male Horizontal Surface Mount Single Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-89013xx, 13 Pins per row (https://cdn.harwin.com/pdfs/M20-890.pdf), generated with kicad-footprint-generator -connector Harwin M20-890 horizontal -0 -14 -13 -Connector_Harwin -Harwin_M20-89014xx_1x14_P2.54mm_Horizontal -Harwin Male Horizontal Surface Mount Single Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-89014xx, 14 Pins per row (https://cdn.harwin.com/pdfs/M20-890.pdf), generated with kicad-footprint-generator -connector Harwin M20-890 horizontal -0 -15 -14 -Connector_Harwin -Harwin_M20-89015xx_1x15_P2.54mm_Horizontal -Harwin Male Horizontal Surface Mount Single Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-89015xx, 15 Pins per row (https://cdn.harwin.com/pdfs/M20-890.pdf), generated with kicad-footprint-generator -connector Harwin M20-890 horizontal -0 -16 -15 -Connector_Harwin -Harwin_M20-89016xx_1x16_P2.54mm_Horizontal -Harwin Male Horizontal Surface Mount Single Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-89016xx, 16 Pins per row (https://cdn.harwin.com/pdfs/M20-890.pdf), generated with kicad-footprint-generator -connector Harwin M20-890 horizontal -0 -17 -16 -Connector_Harwin -Harwin_M20-89017xx_1x17_P2.54mm_Horizontal -Harwin Male Horizontal Surface Mount Single Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-89017xx, 17 Pins per row (https://cdn.harwin.com/pdfs/M20-890.pdf), generated with kicad-footprint-generator -connector Harwin M20-890 horizontal -0 -18 -17 -Connector_Harwin -Harwin_M20-89018xx_1x18_P2.54mm_Horizontal -Harwin Male Horizontal Surface Mount Single Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-89018xx, 18 Pins per row (https://cdn.harwin.com/pdfs/M20-890.pdf), generated with kicad-footprint-generator -connector Harwin M20-890 horizontal -0 -19 -18 -Connector_Harwin -Harwin_M20-89019xx_1x19_P2.54mm_Horizontal -Harwin Male Horizontal Surface Mount Single Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-89019xx, 19 Pins per row (https://cdn.harwin.com/pdfs/M20-890.pdf), generated with kicad-footprint-generator -connector Harwin M20-890 horizontal -0 -20 -19 -Connector_Harwin -Harwin_M20-89020xx_1x20_P2.54mm_Horizontal -Harwin Male Horizontal Surface Mount Single Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-89020xx, 20 Pins per row (https://cdn.harwin.com/pdfs/M20-890.pdf), generated with kicad-footprint-generator -connector Harwin M20-890 horizontal -0 -21 -20 -Connector_Harwin -Harwin_M20-7810245_2x02_P2.54mm_Vertical -Harwin Female Vertical Surface Mount Double Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-7810245, 2 Pins per row (https://cdn.harwin.com/pdfs/M20-781.pdf), generated with kicad-footprint-generator -connector Harwin M20 side entry -0 -4 -4 -Connector_Harwin -Harwin_M20-7810345_2x03_P2.54mm_Vertical -Harwin Female Vertical Surface Mount Double Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-7810345, 3 Pins per row (https://cdn.harwin.com/pdfs/M20-781.pdf), generated with kicad-footprint-generator -connector Harwin M20 side entry -0 -6 -6 -Connector_Harwin -Harwin_M20-7810445_2x04_P2.54mm_Vertical -Harwin Female Vertical Surface Mount Double Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-7810445, 4 Pins per row (https://cdn.harwin.com/pdfs/M20-781.pdf), generated with kicad-footprint-generator -connector Harwin M20 side entry -0 -8 -8 -Connector_Harwin -Harwin_M20-7810545_2x05_P2.54mm_Vertical -Harwin Female Vertical Surface Mount Double Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-7810545, 5 Pins per row (https://cdn.harwin.com/pdfs/M20-781.pdf), generated with kicad-footprint-generator -connector Harwin M20 side entry -0 -10 -10 -Connector_Harwin -Harwin_M20-7810645_2x06_P2.54mm_Vertical -Harwin Female Vertical Surface Mount Double Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-7810645, 6 Pins per row (https://cdn.harwin.com/pdfs/M20-781.pdf), generated with kicad-footprint-generator -connector Harwin M20 side entry -0 -12 -12 -Connector_Harwin -Harwin_M20-7810745_2x07_P2.54mm_Vertical -Harwin Female Vertical Surface Mount Double Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-7810745, 7 Pins per row (https://cdn.harwin.com/pdfs/M20-781.pdf), generated with kicad-footprint-generator -connector Harwin M20 side entry -0 -14 -14 -Connector_Harwin -Harwin_M20-7810845_2x08_P2.54mm_Vertical -Harwin Female Vertical Surface Mount Double Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-7810845, 8 Pins per row (https://cdn.harwin.com/pdfs/M20-781.pdf), generated with kicad-footprint-generator -connector Harwin M20 side entry -0 -16 -16 -Connector_Harwin -Harwin_M20-7810945_2x09_P2.54mm_Vertical -Harwin Female Vertical Surface Mount Double Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-7810945, 9 Pins per row (https://cdn.harwin.com/pdfs/M20-781.pdf), generated with kicad-footprint-generator -connector Harwin M20 side entry -0 -18 -18 -Connector_Harwin -Harwin_M20-7811045_2x10_P2.54mm_Vertical -Harwin Female Vertical Surface Mount Double Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-7811045, 10 Pins per row (https://cdn.harwin.com/pdfs/M20-781.pdf), generated with kicad-footprint-generator -connector Harwin M20 side entry -0 -20 -20 -Connector_Harwin -Harwin_M20-7811245_2x12_P2.54mm_Vertical -Harwin Female Vertical Surface Mount Double Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-7811245, 12 Pins per row (https://cdn.harwin.com/pdfs/M20-781.pdf), generated with kicad-footprint-generator -connector Harwin M20 side entry -0 -24 -24 -Connector_Harwin -Harwin_M20-7811545_2x15_P2.54mm_Vertical -Harwin Female Vertical Surface Mount Double Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-7811545, 15 Pins per row (https://cdn.harwin.com/pdfs/M20-781.pdf), generated with kicad-footprint-generator -connector Harwin M20 side entry -0 -30 -30 -Connector_Harwin -Harwin_M20-7812045_2x20_P2.54mm_Vertical -Harwin Female Vertical Surface Mount Double Row 2.54mm (0.1 inch) Pitch PCB Connector, M20-7812045, 20 Pins per row (https://cdn.harwin.com/pdfs/M20-781.pdf), generated with kicad-footprint-generator -connector Harwin M20 side entry -0 -40 -40 -Connector_Hirose -Hirose_BM24_BM24-40DP-2-0.35V_2x20_P0.35mm_PowerPin2_Vertical -Hirose BM24 series connector, BM24-40DP/2-0.35V (https://www.hirose.com/product/en/download_file/key_name/BM24/category/Catalog/doc_file_id/47680/?file_category_id=4&item_id=50&is_series=1) -connector Hirose BM24 40pin header -0 -44 -42 -Connector_Hirose -Hirose_BM24_BM24-40DS-2-0.35V_2x20_P0.35mm_PowerPin2_Vertical -Hirose BM24 series connector, BM24-40DS/2-0.35V (https://www.hirose.com/product/en/download_file/key_name/BM24/category/Catalog/doc_file_id/47680/?file_category_id=4&item_id=50&is_series=1) -connector Hirose 40pin receptacle vertical -0 -42 -42 -Connector_Hirose -Hirose_DF3EA-02P-2H_1x02-1MP_P2.00mm_Horizontal -Hirose series connector, DF3EA-02P-2H (https://www.hirose.com/product/document?clcode=CL0543-0332-0-51&productname=DF3EA-5P-2H(51)&series=DF3&documenttype=2DDrawing&lang=en&documentid=0001163317), generated with kicad-footprint-generator -connector Hirose top entry -0 -4 -3 -Connector_Hirose -Hirose_DF3EA-03P-2H_1x03-1MP_P2.00mm_Horizontal -Hirose series connector, DF3EA-03P-2H (https://www.hirose.com/product/document?clcode=CL0543-0332-0-51&productname=DF3EA-5P-2H(51)&series=DF3&documenttype=2DDrawing&lang=en&documentid=0001163317), generated with kicad-footprint-generator -connector Hirose top entry -0 -5 -4 -Connector_Hirose -Hirose_DF3EA-04P-2H_1x04-1MP_P2.00mm_Horizontal -Hirose series connector, DF3EA-04P-2H (https://www.hirose.com/product/document?clcode=CL0543-0332-0-51&productname=DF3EA-5P-2H(51)&series=DF3&documenttype=2DDrawing&lang=en&documentid=0001163317), generated with kicad-footprint-generator -connector Hirose top entry -0 -6 -5 -Connector_Hirose -Hirose_DF3EA-05P-2H_1x05-1MP_P2.00mm_Horizontal -Hirose series connector, DF3EA-05P-2H (https://www.hirose.com/product/document?clcode=CL0543-0332-0-51&productname=DF3EA-5P-2H(51)&series=DF3&documenttype=2DDrawing&lang=en&documentid=0001163317), generated with kicad-footprint-generator -connector Hirose top entry -0 -7 -6 -Connector_Hirose -Hirose_DF3EA-06P-2H_1x06-1MP_P2.00mm_Horizontal -Hirose series connector, DF3EA-06P-2H (https://www.hirose.com/product/document?clcode=CL0543-0332-0-51&productname=DF3EA-5P-2H(51)&series=DF3&documenttype=2DDrawing&lang=en&documentid=0001163317), generated with kicad-footprint-generator -connector Hirose top entry -0 -8 -7 -Connector_Hirose -Hirose_DF3EA-07P-2H_1x07-1MP_P2.00mm_Horizontal -Hirose series connector, DF3EA-07P-2H (https://www.hirose.com/product/document?clcode=CL0543-0332-0-51&productname=DF3EA-5P-2H(51)&series=DF3&documenttype=2DDrawing&lang=en&documentid=0001163317), generated with kicad-footprint-generator -connector Hirose top entry -0 -9 -8 -Connector_Hirose -Hirose_DF3EA-08P-2H_1x08-1MP_P2.00mm_Horizontal -Hirose series connector, DF3EA-08P-2H (https://www.hirose.com/product/document?clcode=CL0543-0332-0-51&productname=DF3EA-5P-2H(51)&series=DF3&documenttype=2DDrawing&lang=en&documentid=0001163317), generated with kicad-footprint-generator -connector Hirose top entry -0 -10 -9 -Connector_Hirose -Hirose_DF3EA-09P-2H_1x09-1MP_P2.00mm_Horizontal -Hirose series connector, DF3EA-09P-2H (https://www.hirose.com/product/document?clcode=CL0543-0332-0-51&productname=DF3EA-5P-2H(51)&series=DF3&documenttype=2DDrawing&lang=en&documentid=0001163317), generated with kicad-footprint-generator -connector Hirose top entry -0 -11 -10 -Connector_Hirose -Hirose_DF3EA-10P-2H_1x10-1MP_P2.00mm_Horizontal -Hirose series connector, DF3EA-10P-2H (https://www.hirose.com/product/document?clcode=CL0543-0332-0-51&productname=DF3EA-5P-2H(51)&series=DF3&documenttype=2DDrawing&lang=en&documentid=0001163317), generated with kicad-footprint-generator -connector Hirose top entry -0 -12 -11 -Connector_Hirose -Hirose_DF3EA-11P-2H_1x11-1MP_P2.00mm_Horizontal -Hirose series connector, DF3EA-11P-2H (https://www.hirose.com/product/document?clcode=CL0543-0332-0-51&productname=DF3EA-5P-2H(51)&series=DF3&documenttype=2DDrawing&lang=en&documentid=0001163317), generated with kicad-footprint-generator -connector Hirose top entry -0 -13 -12 -Connector_Hirose -Hirose_DF3EA-12P-2H_1x12-1MP_P2.00mm_Horizontal -Hirose series connector, DF3EA-12P-2H (https://www.hirose.com/product/document?clcode=CL0543-0332-0-51&productname=DF3EA-5P-2H(51)&series=DF3&documenttype=2DDrawing&lang=en&documentid=0001163317), generated with kicad-footprint-generator -connector Hirose top entry -0 -14 -13 -Connector_Hirose -Hirose_DF3EA-13P-2H_1x13-1MP_P2.00mm_Horizontal -Hirose series connector, DF3EA-13P-2H (https://www.hirose.com/product/document?clcode=CL0543-0332-0-51&productname=DF3EA-5P-2H(51)&series=DF3&documenttype=2DDrawing&lang=en&documentid=0001163317), generated with kicad-footprint-generator -connector Hirose top entry -0 -15 -14 -Connector_Hirose -Hirose_DF3EA-14P-2H_1x14-1MP_P2.00mm_Horizontal -Hirose series connector, DF3EA-14P-2H (https://www.hirose.com/product/document?clcode=CL0543-0332-0-51&productname=DF3EA-5P-2H(51)&series=DF3&documenttype=2DDrawing&lang=en&documentid=0001163317), generated with kicad-footprint-generator -connector Hirose top entry -0 -16 -15 -Connector_Hirose -Hirose_DF3EA-15P-2H_1x15-1MP_P2.00mm_Horizontal -Hirose series connector, DF3EA-15P-2H (https://www.hirose.com/product/document?clcode=CL0543-0332-0-51&productname=DF3EA-5P-2H(51)&series=DF3&documenttype=2DDrawing&lang=en&documentid=0001163317), generated with kicad-footprint-generator -connector Hirose top entry -0 -17 -16 -Connector_Hirose -Hirose_DF11-4DP-2DSA_2x02_P2.00mm_Vertical -Hirose DF11 through hole, DF11-4DP-2DSA, 2 Pins per row (https://www.hirose.com/product/document?clcode=&productname=&series=DF11&documenttype=Catalog&lang=en&documentid=D31688_en), generated with kicad-footprint-generator -connector Hirose DF11 vertical -0 -4 -4 -Connector_Hirose -Hirose_DF11-6DP-2DSA_2x03_P2.00mm_Vertical -Hirose DF11 through hole, DF11-6DP-2DSA, 3 Pins per row (https://www.hirose.com/product/document?clcode=&productname=&series=DF11&documenttype=Catalog&lang=en&documentid=D31688_en), generated with kicad-footprint-generator -connector Hirose DF11 vertical -0 -6 -6 -Connector_Hirose -Hirose_DF11-8DP-2DSA_2x04_P2.00mm_Vertical -Hirose DF11 through hole, DF11-8DP-2DSA, 4 Pins per row (https://www.hirose.com/product/document?clcode=&productname=&series=DF11&documenttype=Catalog&lang=en&documentid=D31688_en), generated with kicad-footprint-generator -connector Hirose DF11 vertical -0 -8 -8 -Connector_Hirose -Hirose_DF11-10DP-2DSA_2x05_P2.00mm_Vertical -Hirose DF11 through hole, DF11-10DP-2DSA, 5 Pins per row (https://www.hirose.com/product/document?clcode=&productname=&series=DF11&documenttype=Catalog&lang=en&documentid=D31688_en), generated with kicad-footprint-generator -connector Hirose DF11 vertical -0 -10 -10 -Connector_Hirose -Hirose_DF11-12DP-2DSA_2x06_P2.00mm_Vertical -Hirose DF11 through hole, DF11-12DP-2DSA, 6 Pins per row (https://www.hirose.com/product/document?clcode=&productname=&series=DF11&documenttype=Catalog&lang=en&documentid=D31688_en), generated with kicad-footprint-generator -connector Hirose DF11 vertical -0 -12 -12 -Connector_Hirose -Hirose_DF11-14DP-2DSA_2x07_P2.00mm_Vertical -Hirose DF11 through hole, DF11-14DP-2DSA, 7 Pins per row (https://www.hirose.com/product/document?clcode=&productname=&series=DF11&documenttype=Catalog&lang=en&documentid=D31688_en), generated with kicad-footprint-generator -connector Hirose DF11 vertical -0 -14 -14 -Connector_Hirose -Hirose_DF11-16DP-2DSA_2x08_P2.00mm_Vertical -Hirose DF11 through hole, DF11-16DP-2DSA, 8 Pins per row (https://www.hirose.com/product/document?clcode=&productname=&series=DF11&documenttype=Catalog&lang=en&documentid=D31688_en), generated with kicad-footprint-generator -connector Hirose DF11 vertical -0 -16 -16 -Connector_Hirose -Hirose_DF11-18DP-2DSA_2x09_P2.00mm_Vertical -Hirose DF11 through hole, DF11-18DP-2DSA, 9 Pins per row (https://www.hirose.com/product/document?clcode=&productname=&series=DF11&documenttype=Catalog&lang=en&documentid=D31688_en), generated with kicad-footprint-generator -connector Hirose DF11 vertical -0 -18 -18 -Connector_Hirose -Hirose_DF11-20DP-2DSA_2x10_P2.00mm_Vertical -Hirose DF11 through hole, DF11-20DP-2DSA, 10 Pins per row (https://www.hirose.com/product/document?clcode=&productname=&series=DF11&documenttype=Catalog&lang=en&documentid=D31688_en), generated with kicad-footprint-generator -connector Hirose DF11 vertical -0 -20 -20 -Connector_Hirose -Hirose_DF11-22DP-2DSA_2x11_P2.00mm_Vertical -Hirose DF11 through hole, DF11-22DP-2DSA, 11 Pins per row (https://www.hirose.com/product/document?clcode=&productname=&series=DF11&documenttype=Catalog&lang=en&documentid=D31688_en), generated with kicad-footprint-generator -connector Hirose DF11 vertical -0 -22 -22 -Connector_Hirose -Hirose_DF11-24DP-2DSA_2x12_P2.00mm_Vertical -Hirose DF11 through hole, DF11-24DP-2DSA, 12 Pins per row (https://www.hirose.com/product/document?clcode=&productname=&series=DF11&documenttype=Catalog&lang=en&documentid=D31688_en), generated with kicad-footprint-generator -connector Hirose DF11 vertical -0 -24 -24 -Connector_Hirose -Hirose_DF11-26DP-2DSA_2x13_P2.00mm_Vertical -Hirose DF11 through hole, DF11-26DP-2DSA, 13 Pins per row (https://www.hirose.com/product/document?clcode=&productname=&series=DF11&documenttype=Catalog&lang=en&documentid=D31688_en), generated with kicad-footprint-generator -connector Hirose DF11 vertical -0 -26 -26 -Connector_Hirose -Hirose_DF11-28DP-2DSA_2x14_P2.00mm_Vertical -Hirose DF11 through hole, DF11-28DP-2DSA, 14 Pins per row (https://www.hirose.com/product/document?clcode=&productname=&series=DF11&documenttype=Catalog&lang=en&documentid=D31688_en), generated with kicad-footprint-generator -connector Hirose DF11 vertical -0 -28 -28 -Connector_Hirose -Hirose_DF11-30DP-2DSA_2x15_P2.00mm_Vertical -Hirose DF11 through hole, DF11-30DP-2DSA, 15 Pins per row (https://www.hirose.com/product/document?clcode=&productname=&series=DF11&documenttype=Catalog&lang=en&documentid=D31688_en), generated with kicad-footprint-generator -connector Hirose DF11 vertical -0 -30 -30 -Connector_Hirose -Hirose_DF11-32DP-2DSA_2x16_P2.00mm_Vertical -Hirose DF11 through hole, DF11-32DP-2DSA, 16 Pins per row (https://www.hirose.com/product/document?clcode=&productname=&series=DF11&documenttype=Catalog&lang=en&documentid=D31688_en), generated with kicad-footprint-generator -connector Hirose DF11 vertical -0 -32 -32 -Connector_Hirose -Hirose_DF12_DF12C3.0-10DS-0.5V_2x05_P0.50mm_Vertical -Hirose DF12C SMD, DF12C3.0-10DS-0.5V, 10 Pins per row (https://www.hirose.com/product/document?clcode=CL0537-0694-9-81&productname=DF12C(3.0)-50DS-0.5V(81)&series=DF12&documenttype=2DDrawing&lang=en&documentid=0000994748), generated with kicad-footprint-generator -connector Hirose DF12 vertical -0 -20 -10 -Connector_Hirose -Hirose_DF12_DF12C3.0-14DS-0.5V_2x07_P0.50mm_Vertical -Hirose DF12C SMD, DF12C3.0-14DS-0.5V, 14 Pins per row (https://www.hirose.com/product/document?clcode=CL0537-0694-9-81&productname=DF12C(3.0)-50DS-0.5V(81)&series=DF12&documenttype=2DDrawing&lang=en&documentid=0000994748), generated with kicad-footprint-generator -connector Hirose DF12 vertical -0 -28 -14 -Connector_Hirose -Hirose_DF12_DF12C3.0-20DS-0.5V_2x10_P0.50mm_Vertical -Hirose DF12C SMD, DF12C3.0-20DS-0.5V, 20 Pins per row (https://www.hirose.com/product/document?clcode=CL0537-0694-9-81&productname=DF12C(3.0)-50DS-0.5V(81)&series=DF12&documenttype=2DDrawing&lang=en&documentid=0000994748), generated with kicad-footprint-generator -connector Hirose DF12 vertical -0 -40 -20 -Connector_Hirose -Hirose_DF12_DF12C3.0-30DS-0.5V_2x15_P0.50mm_Vertical -Hirose DF12C SMD, DF12C3.0-30DS-0.5V, 30 Pins per row (https://www.hirose.com/product/document?clcode=CL0537-0694-9-81&productname=DF12C(3.0)-50DS-0.5V(81)&series=DF12&documenttype=2DDrawing&lang=en&documentid=0000994748), generated with kicad-footprint-generator -connector Hirose DF12 vertical -0 -60 -30 -Connector_Hirose -Hirose_DF12_DF12C3.0-32DS-0.5V_2x16_P0.50mm_Vertical -Hirose DF12C SMD, DF12C3.0-32DS-0.5V, 32 Pins per row (https://www.hirose.com/product/document?clcode=CL0537-0694-9-81&productname=DF12C(3.0)-50DS-0.5V(81)&series=DF12&documenttype=2DDrawing&lang=en&documentid=0000994748), generated with kicad-footprint-generator -connector Hirose DF12 vertical -0 -64 -32 -Connector_Hirose -Hirose_DF12_DF12C3.0-36DS-0.5V_2x18_P0.50mm_Vertical -Hirose DF12C SMD, DF12C3.0-36DS-0.5V, 36 Pins per row (https://www.hirose.com/product/document?clcode=CL0537-0694-9-81&productname=DF12C(3.0)-50DS-0.5V(81)&series=DF12&documenttype=2DDrawing&lang=en&documentid=0000994748), generated with kicad-footprint-generator -connector Hirose DF12 vertical -0 -72 -36 -Connector_Hirose -Hirose_DF12_DF12C3.0-40DS-0.5V_2x20_P0.50mm_Vertical -Hirose DF12C SMD, DF12C3.0-40DS-0.5V, 40 Pins per row (https://www.hirose.com/product/document?clcode=CL0537-0694-9-81&productname=DF12C(3.0)-50DS-0.5V(81)&series=DF12&documenttype=2DDrawing&lang=en&documentid=0000994748), generated with kicad-footprint-generator -connector Hirose DF12 vertical -0 -80 -40 -Connector_Hirose -Hirose_DF12_DF12C3.0-50DS-0.5V_2x25_P0.50mm_Vertical -Hirose DF12C SMD, DF12C3.0-50DS-0.5V, 50 Pins per row (https://www.hirose.com/product/document?clcode=CL0537-0694-9-81&productname=DF12C(3.0)-50DS-0.5V(81)&series=DF12&documenttype=2DDrawing&lang=en&documentid=0000994748), generated with kicad-footprint-generator -connector Hirose DF12 vertical -0 -100 -50 -Connector_Hirose -Hirose_DF12_DF12C3.0-60DS-0.5V_2x30_P0.50mm_Vertical -Hirose DF12C SMD, DF12C3.0-60DS-0.5V, 60 Pins per row (https://www.hirose.com/product/document?clcode=CL0537-0694-9-81&productname=DF12C(3.0)-50DS-0.5V(81)&series=DF12&documenttype=2DDrawing&lang=en&documentid=0000994748), generated with kicad-footprint-generator -connector Hirose DF12 vertical -0 -120 -60 -Connector_Hirose -Hirose_DF12_DF12E3.0-10DP-0.5V_2x05_P0.50mm_Vertical -Hirose DF12E SMD, DF12E3.0-10DP-0.5V, 10 Pins per row (https://www.hirose.com/product/document?clcode=CL0537-0834-6-81&productname=DF12E(3.0)-50DP-0.5V(81)&series=DF12&documenttype=2DDrawing&lang=en&documentid=0000992393), generated with kicad-footprint-generator -connector Hirose DF12 vertical -0 -20 -10 -Connector_Hirose -Hirose_DF12_DF12E3.0-14DP-0.5V_2x07_P0.50mm_Vertical -Hirose DF12E SMD, DF12E3.0-14DP-0.5V, 14 Pins per row (https://www.hirose.com/product/document?clcode=CL0537-0834-6-81&productname=DF12E(3.0)-50DP-0.5V(81)&series=DF12&documenttype=2DDrawing&lang=en&documentid=0000992393), generated with kicad-footprint-generator -connector Hirose DF12 vertical -0 -28 -14 -Connector_Hirose -Hirose_DF12_DF12E3.0-20DP-0.5V_2x10_P0.50mm_Vertical -Hirose DF12E SMD, DF12E3.0-20DP-0.5V, 20 Pins per row (https://www.hirose.com/product/document?clcode=CL0537-0834-6-81&productname=DF12E(3.0)-50DP-0.5V(81)&series=DF12&documenttype=2DDrawing&lang=en&documentid=0000992393), generated with kicad-footprint-generator -connector Hirose DF12 vertical -0 -40 -20 -Connector_Hirose -Hirose_DF12_DF12E3.0-30DP-0.5V_2x15_P0.50mm_Vertical -Hirose DF12E SMD, DF12E3.0-30DP-0.5V, 30 Pins per row (https://www.hirose.com/product/document?clcode=CL0537-0834-6-81&productname=DF12E(3.0)-50DP-0.5V(81)&series=DF12&documenttype=2DDrawing&lang=en&documentid=0000992393), generated with kicad-footprint-generator -connector Hirose DF12 vertical -0 -60 -30 -Connector_Hirose -Hirose_DF12_DF12E3.0-32DP-0.5V_2x16_P0.50mm_Vertical -Hirose DF12E SMD, DF12E3.0-32DP-0.5V, 32 Pins per row (https://www.hirose.com/product/document?clcode=CL0537-0834-6-81&productname=DF12E(3.0)-50DP-0.5V(81)&series=DF12&documenttype=2DDrawing&lang=en&documentid=0000992393), generated with kicad-footprint-generator -connector Hirose DF12 vertical -0 -64 -32 -Connector_Hirose -Hirose_DF12_DF12E3.0-36DP-0.5V_2x18_P0.50mm_Vertical -Hirose DF12E SMD, DF12E3.0-36DP-0.5V, 36 Pins per row (https://www.hirose.com/product/document?clcode=CL0537-0834-6-81&productname=DF12E(3.0)-50DP-0.5V(81)&series=DF12&documenttype=2DDrawing&lang=en&documentid=0000992393), generated with kicad-footprint-generator -connector Hirose DF12 vertical -0 -72 -36 -Connector_Hirose -Hirose_DF12_DF12E3.0-40DP-0.5V_2x20_P0.50mm_Vertical -Hirose DF12E SMD, DF12E3.0-40DP-0.5V, 40 Pins per row (https://www.hirose.com/product/document?clcode=CL0537-0834-6-81&productname=DF12E(3.0)-50DP-0.5V(81)&series=DF12&documenttype=2DDrawing&lang=en&documentid=0000992393), generated with kicad-footprint-generator -connector Hirose DF12 vertical -0 -80 -40 -Connector_Hirose -Hirose_DF12_DF12E3.0-50DP-0.5V_2x25_P0.50mm_Vertical -Hirose DF12E SMD, DF12E3.0-50DP-0.5V, 50 Pins per row (https://www.hirose.com/product/document?clcode=CL0537-0834-6-81&productname=DF12E(3.0)-50DP-0.5V(81)&series=DF12&documenttype=2DDrawing&lang=en&documentid=0000992393), generated with kicad-footprint-generator -connector Hirose DF12 vertical -0 -100 -50 -Connector_Hirose -Hirose_DF12_DF12E3.0-60DP-0.5V_2x30_P0.50mm_Vertical -Hirose DF12E SMD, DF12E3.0-60DP-0.5V, 60 Pins per row (https://www.hirose.com/product/document?clcode=CL0537-0834-6-81&productname=DF12E(3.0)-50DP-0.5V(81)&series=DF12&documenttype=2DDrawing&lang=en&documentid=0000992393), generated with kicad-footprint-generator -connector Hirose DF12 vertical -0 -120 -60 -Connector_Hirose -Hirose_DF12_DF12E3.0-80DP-0.5V_2x40_P0.50mm_Vertical -Hirose DF12E SMD, DF12E3.0-80DP-0.5V, 80 Pins per row (https://www.hirose.com/product/document?clcode=CL0537-0834-6-81&productname=DF12E(3.0)-50DP-0.5V(81)&series=DF12&documenttype=2DDrawing&lang=en&documentid=0000992393), generated with kicad-footprint-generator -connector Hirose DF12 vertical -0 -160 -80 -Connector_Hirose -Hirose_DF13-02P-1.25DSA_1x02_P1.25mm_Vertical -Hirose DF13 through hole, DF13-02P-1.25DSA, 2 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-2P-1.25DSA%2850%29/), generated with kicad-footprint-generator -connector Hirose DF13 vertical -0 -2 -2 -Connector_Hirose -Hirose_DF13-02P-1.25DS_1x02_P1.25mm_Horizontal -Hirose DF13 through hole, DF13-02P-1.25DS, 2 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-4P-1.25DS%2820%29/), generated with kicad-footprint-generator -connector Hirose DF13 horizontal -0 -2 -2 -Connector_Hirose -Hirose_DF13-03P-1.25DSA_1x03_P1.25mm_Vertical -Hirose DF13 through hole, DF13-03P-1.25DSA, 3 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-2P-1.25DSA%2850%29/), generated with kicad-footprint-generator -connector Hirose DF13 vertical -0 -3 -3 -Connector_Hirose -Hirose_DF13-03P-1.25DS_1x03_P1.25mm_Horizontal -Hirose DF13 through hole, DF13-03P-1.25DS, 3 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-4P-1.25DS%2820%29/), generated with kicad-footprint-generator -connector Hirose DF13 horizontal -0 -3 -3 -Connector_Hirose -Hirose_DF13-04P-1.25DSA_1x04_P1.25mm_Vertical -Hirose DF13 through hole, DF13-04P-1.25DSA, 4 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-2P-1.25DSA%2850%29/), generated with kicad-footprint-generator -connector Hirose DF13 vertical -0 -4 -4 -Connector_Hirose -Hirose_DF13-04P-1.25DS_1x04_P1.25mm_Horizontal -Hirose DF13 through hole, DF13-04P-1.25DS, 4 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-4P-1.25DS%2820%29/), generated with kicad-footprint-generator -connector Hirose DF13 horizontal -0 -4 -4 -Connector_Hirose -Hirose_DF13-05P-1.25DSA_1x05_P1.25mm_Vertical -Hirose DF13 through hole, DF13-05P-1.25DSA, 5 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-2P-1.25DSA%2850%29/), generated with kicad-footprint-generator -connector Hirose DF13 vertical -0 -5 -5 -Connector_Hirose -Hirose_DF13-05P-1.25DS_1x05_P1.25mm_Horizontal -Hirose DF13 through hole, DF13-05P-1.25DS, 5 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-4P-1.25DS%2820%29/), generated with kicad-footprint-generator -connector Hirose DF13 horizontal -0 -5 -5 -Connector_Hirose -Hirose_DF13-06P-1.25DSA_1x06_P1.25mm_Vertical -Hirose DF13 through hole, DF13-06P-1.25DSA, 6 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-2P-1.25DSA%2850%29/), generated with kicad-footprint-generator -connector Hirose DF13 vertical -0 -6 -6 -Connector_Hirose -Hirose_DF13-06P-1.25DS_1x06_P1.25mm_Horizontal -Hirose DF13 through hole, DF13-06P-1.25DS, 6 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-4P-1.25DS%2820%29/), generated with kicad-footprint-generator -connector Hirose DF13 horizontal -0 -6 -6 -Connector_Hirose -Hirose_DF13-07P-1.25DSA_1x07_P1.25mm_Vertical -Hirose DF13 through hole, DF13-07P-1.25DSA, 7 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-2P-1.25DSA%2850%29/), generated with kicad-footprint-generator -connector Hirose DF13 vertical -0 -7 -7 -Connector_Hirose -Hirose_DF13-07P-1.25DS_1x07_P1.25mm_Horizontal -Hirose DF13 through hole, DF13-07P-1.25DS, 7 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-4P-1.25DS%2820%29/), generated with kicad-footprint-generator -connector Hirose DF13 horizontal -0 -7 -7 -Connector_Hirose -Hirose_DF13-08P-1.25DSA_1x08_P1.25mm_Vertical -Hirose DF13 through hole, DF13-08P-1.25DSA, 8 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-2P-1.25DSA%2850%29/), generated with kicad-footprint-generator -connector Hirose DF13 vertical -0 -8 -8 -Connector_Hirose -Hirose_DF13-08P-1.25DS_1x08_P1.25mm_Horizontal -Hirose DF13 through hole, DF13-08P-1.25DS, 8 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-4P-1.25DS%2820%29/), generated with kicad-footprint-generator -connector Hirose DF13 horizontal -0 -8 -8 -Connector_Hirose -Hirose_DF13-09P-1.25DSA_1x09_P1.25mm_Vertical -Hirose DF13 through hole, DF13-09P-1.25DSA, 9 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-2P-1.25DSA%2850%29/), generated with kicad-footprint-generator -connector Hirose DF13 vertical -0 -9 -9 -Connector_Hirose -Hirose_DF13-09P-1.25DS_1x09_P1.25mm_Horizontal -Hirose DF13 through hole, DF13-09P-1.25DS, 9 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-4P-1.25DS%2820%29/), generated with kicad-footprint-generator -connector Hirose DF13 horizontal -0 -9 -9 -Connector_Hirose -Hirose_DF13-10P-1.25DSA_1x10_P1.25mm_Vertical -Hirose DF13 through hole, DF13-10P-1.25DSA, 10 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-2P-1.25DSA%2850%29/), generated with kicad-footprint-generator -connector Hirose DF13 vertical -0 -10 -10 -Connector_Hirose -Hirose_DF13-10P-1.25DS_1x10_P1.25mm_Horizontal -Hirose DF13 through hole, DF13-10P-1.25DS, 10 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-4P-1.25DS%2820%29/), generated with kicad-footprint-generator -connector Hirose DF13 horizontal -0 -10 -10 -Connector_Hirose -Hirose_DF13-11P-1.25DSA_1x11_P1.25mm_Vertical -Hirose DF13 through hole, DF13-11P-1.25DSA, 11 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-2P-1.25DSA%2850%29/), generated with kicad-footprint-generator -connector Hirose DF13 vertical -0 -11 -11 -Connector_Hirose -Hirose_DF13-11P-1.25DS_1x11_P1.25mm_Horizontal -Hirose DF13 through hole, DF13-11P-1.25DS, 11 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-4P-1.25DS%2820%29/), generated with kicad-footprint-generator -connector Hirose DF13 horizontal -0 -11 -11 -Connector_Hirose -Hirose_DF13-12P-1.25DSA_1x12_P1.25mm_Vertical -Hirose DF13 through hole, DF13-12P-1.25DSA, 12 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-2P-1.25DSA%2850%29/), generated with kicad-footprint-generator -connector Hirose DF13 vertical -0 -12 -12 -Connector_Hirose -Hirose_DF13-12P-1.25DS_1x12_P1.25mm_Horizontal -Hirose DF13 through hole, DF13-12P-1.25DS, 12 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-4P-1.25DS%2820%29/), generated with kicad-footprint-generator -connector Hirose DF13 horizontal -0 -12 -12 -Connector_Hirose -Hirose_DF13-13P-1.25DSA_1x13_P1.25mm_Vertical -Hirose DF13 through hole, DF13-13P-1.25DSA, 13 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-2P-1.25DSA%2850%29/), generated with kicad-footprint-generator -connector Hirose DF13 vertical -0 -13 -13 -Connector_Hirose -Hirose_DF13-14P-1.25DSA_1x14_P1.25mm_Vertical -Hirose DF13 through hole, DF13-14P-1.25DSA, 14 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-2P-1.25DSA%2850%29/), generated with kicad-footprint-generator -connector Hirose DF13 vertical -0 -14 -14 -Connector_Hirose -Hirose_DF13-14P-1.25DS_1x14_P1.25mm_Horizontal -Hirose DF13 through hole, DF13-14P-1.25DS, 14 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-4P-1.25DS%2820%29/), generated with kicad-footprint-generator -connector Hirose DF13 horizontal -0 -14 -14 -Connector_Hirose -Hirose_DF13-15P-1.25DSA_1x15_P1.25mm_Vertical -Hirose DF13 through hole, DF13-15P-1.25DSA, 15 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-2P-1.25DSA%2850%29/), generated with kicad-footprint-generator -connector Hirose DF13 vertical -0 -15 -15 -Connector_Hirose -Hirose_DF13-15P-1.25DS_1x15_P1.25mm_Horizontal -Hirose DF13 through hole, DF13-15P-1.25DS, 15 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13-4P-1.25DS%2820%29/), generated with kicad-footprint-generator -connector Hirose DF13 horizontal -0 -15 -15 -Connector_Hirose -Hirose_DF13C_CL535-0402-2-51_1x02-1MP_P1.25mm_Vertical -Hirose DF13C SMD, CL535-0402-2-51, 2 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13C-10P-1.25V%2851%29/), generated with kicad-footprint-generator -connector Hirose DF13C vertical -0 -4 -3 -Connector_Hirose -Hirose_DF13C_CL535-0403-5-51_1x03-1MP_P1.25mm_Vertical -Hirose DF13C SMD, CL535-0403-5-51, 3 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13C-10P-1.25V%2851%29/), generated with kicad-footprint-generator -connector Hirose DF13C vertical -0 -5 -4 -Connector_Hirose -Hirose_DF13C_CL535-0404-8-51_1x04-1MP_P1.25mm_Vertical -Hirose DF13C SMD, CL535-0404-8-51, 4 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13C-10P-1.25V%2851%29/), generated with kicad-footprint-generator -connector Hirose DF13C vertical -0 -6 -5 -Connector_Hirose -Hirose_DF13C_CL535-0405-0-51_1x05-1MP_P1.25mm_Vertical -Hirose DF13C SMD, CL535-0405-0-51, 5 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13C-10P-1.25V%2851%29/), generated with kicad-footprint-generator -connector Hirose DF13C vertical -0 -7 -6 -Connector_Hirose -Hirose_DF13C_CL535-0406-3-51_1x06-1MP_P1.25mm_Vertical -Hirose DF13C SMD, CL535-0406-3-51, 6 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13C-10P-1.25V%2851%29/), generated with kicad-footprint-generator -connector Hirose DF13C vertical -0 -8 -7 -Connector_Hirose -Hirose_DF13C_CL535-0407-6-51_1x07-1MP_P1.25mm_Vertical -Hirose DF13C SMD, CL535-0407-6-51, 7 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13C-10P-1.25V%2851%29/), generated with kicad-footprint-generator -connector Hirose DF13C vertical -0 -9 -8 -Connector_Hirose -Hirose_DF13C_CL535-0408-9-51_1x08-1MP_P1.25mm_Vertical -Hirose DF13C SMD, CL535-0408-9-51, 8 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13C-10P-1.25V%2851%29/), generated with kicad-footprint-generator -connector Hirose DF13C vertical -0 -10 -9 -Connector_Hirose -Hirose_DF13C_CL535-0409-1-51_1x09-1MP_P1.25mm_Vertical -Hirose DF13C SMD, CL535-0409-1-51, 9 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13C-10P-1.25V%2851%29/), generated with kicad-footprint-generator -connector Hirose DF13C vertical -0 -11 -10 -Connector_Hirose -Hirose_DF13C_CL535-0410-4-51_1x10-1MP_P1.25mm_Vertical -Hirose DF13C SMD, CL535-0410-4-51, 10 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13C-10P-1.25V%2851%29/), generated with kicad-footprint-generator -connector Hirose DF13C vertical -0 -12 -11 -Connector_Hirose -Hirose_DF13C_CL535-0411-3-51_1x11-1MP_P1.25mm_Vertical -Hirose DF13C SMD, CL535-0411-3-51, 11 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13C-10P-1.25V%2851%29/), generated with kicad-footprint-generator -connector Hirose DF13C vertical -0 -13 -12 -Connector_Hirose -Hirose_DF13C_CL535-0412-6-51_1x12-1MP_P1.25mm_Vertical -Hirose DF13C SMD, CL535-0412-6-51, 12 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13C-10P-1.25V%2851%29/), generated with kicad-footprint-generator -connector Hirose DF13C vertical -0 -14 -13 -Connector_Hirose -Hirose_DF13C_CL535-0414-1-51_1x14-1MP_P1.25mm_Vertical -Hirose DF13C SMD, CL535-0414-1-51, 14 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13C-10P-1.25V%2851%29/), generated with kicad-footprint-generator -connector Hirose DF13C vertical -0 -16 -15 -Connector_Hirose -Hirose_DF13C_CL535-0415-4-51_1x15-1MP_P1.25mm_Vertical -Hirose DF13C SMD, CL535-0415-4-51, 15 Pins per row (https://www.hirose.com/product/en/products/DF13/DF13C-10P-1.25V%2851%29/), generated with kicad-footprint-generator -connector Hirose DF13C vertical -0 -17 -16 -Connector_Hirose -Hirose_DF52-2S-0.8H_1x02-1MP_P0.80mm_Horizontal -Hirose series connector, DF52-2S-0.8H (https://www.hirose.com/product/en/products/DF52/DF52-3S-0.8H%2821%29/), generated with kicad-footprint-generator -connector Hirose top entry -0 -4 -3 -Connector_Hirose -Hirose_DF52-3S-0.8H_1x03-1MP_P0.80mm_Horizontal -Hirose series connector, DF52-3S-0.8H (https://www.hirose.com/product/en/products/DF52/DF52-3S-0.8H%2821%29/), generated with kicad-footprint-generator -connector Hirose top entry -0 -5 -4 -Connector_Hirose -Hirose_DF52-4S-0.8H_1x04-1MP_P0.80mm_Horizontal -Hirose series connector, DF52-4S-0.8H (https://www.hirose.com/product/en/products/DF52/DF52-3S-0.8H%2821%29/), generated with kicad-footprint-generator -connector Hirose top entry -0 -6 -5 -Connector_Hirose -Hirose_DF52-5S-0.8H_1x05-1MP_P0.80mm_Horizontal -Hirose series connector, DF52-5S-0.8H (https://www.hirose.com/product/en/products/DF52/DF52-3S-0.8H%2821%29/), generated with kicad-footprint-generator -connector Hirose top entry -0 -7 -6 -Connector_Hirose -Hirose_DF52-6S-0.8H_1x06-1MP_P0.80mm_Horizontal -Hirose series connector, DF52-6S-0.8H (https://www.hirose.com/product/en/products/DF52/DF52-3S-0.8H%2821%29/), generated with kicad-footprint-generator -connector Hirose top entry -0 -8 -7 -Connector_Hirose -Hirose_DF52-7S-0.8H_1x07-1MP_P0.80mm_Horizontal -Hirose series connector, DF52-7S-0.8H (https://www.hirose.com/product/en/products/DF52/DF52-3S-0.8H%2821%29/), generated with kicad-footprint-generator -connector Hirose top entry -0 -9 -8 -Connector_Hirose -Hirose_DF52-8S-0.8H_1x08-1MP_P0.80mm_Horizontal -Hirose series connector, DF52-8S-0.8H (https://www.hirose.com/product/en/products/DF52/DF52-3S-0.8H%2821%29/), generated with kicad-footprint-generator -connector Hirose top entry -0 -10 -9 -Connector_Hirose -Hirose_DF52-9S-0.8H_1x09-1MP_P0.80mm_Horizontal -Hirose series connector, DF52-9S-0.8H (https://www.hirose.com/product/en/products/DF52/DF52-3S-0.8H%2821%29/), generated with kicad-footprint-generator -connector Hirose top entry -0 -11 -10 -Connector_Hirose -Hirose_DF52-10S-0.8H_1x10-1MP_P0.80mm_Horizontal -Hirose series connector, DF52-10S-0.8H (https://www.hirose.com/product/en/products/DF52/DF52-3S-0.8H%2821%29/), generated with kicad-footprint-generator -connector Hirose top entry -0 -12 -11 -Connector_Hirose -Hirose_DF52-11S-0.8H_1x11-1MP_P0.80mm_Horizontal -Hirose series connector, DF52-11S-0.8H (https://www.hirose.com/product/en/products/DF52/DF52-3S-0.8H%2821%29/), generated with kicad-footprint-generator -connector Hirose top entry -0 -13 -12 -Connector_Hirose -Hirose_DF52-12S-0.8H_1x12-1MP_P0.80mm_Horizontal -Hirose series connector, DF52-12S-0.8H (https://www.hirose.com/product/en/products/DF52/DF52-3S-0.8H%2821%29/), generated with kicad-footprint-generator -connector Hirose top entry -0 -14 -13 -Connector_Hirose -Hirose_DF52-14S-0.8H_1x14-1MP_P0.80mm_Horizontal -Hirose series connector, DF52-14S-0.8H (https://www.hirose.com/product/en/products/DF52/DF52-3S-0.8H%2821%29/), generated with kicad-footprint-generator -connector Hirose top entry -0 -16 -15 -Connector_Hirose -Hirose_DF52-15S-0.8H_1x15-1MP_P0.80mm_Horizontal -Hirose series connector, DF52-15S-0.8H (https://www.hirose.com/product/en/products/DF52/DF52-3S-0.8H%2821%29/), generated with kicad-footprint-generator -connector Hirose top entry -0 -17 -16 -Connector_Hirose -Hirose_DF63-5P-3.96DSA_1x05_P3.96mm_Vertical -Hirose DF63 through hole, DF63-5P-3.96DSA, 5 Pins per row (https://www.hirose.com/product/en/products/DF63/), generated with kicad-footprint-generator -connector Hirose DF63 vertical -0 -5 -5 -Connector_Hirose -Hirose_DF63-6P-3.96DSA_1x06_P3.96mm_Vertical -Hirose DF63 through hole, DF63-6P-3.96DSA, 6 Pins per row (https://www.hirose.com/product/en/products/DF63/), generated with kicad-footprint-generator -connector Hirose DF63 vertical -0 -6 -6 -Connector_Hirose -Hirose_DF63M-1P-3.96DSA_1x01_P3.96mm_Vertical -Hirose DF63 through hole, DF63M-1P-3.96DSA, 1 Pins per row (https://www.hirose.com/product/en/products/DF63/), generated with kicad-footprint-generator -connector Hirose DF63 vertical -0 -1 -1 -Connector_Hirose -Hirose_DF63M-2P-3.96DSA_1x02_P3.96mm_Vertical -Hirose DF63 through hole, DF63M-2P-3.96DSA, 2 Pins per row (https://www.hirose.com/product/en/products/DF63/), generated with kicad-footprint-generator -connector Hirose DF63 vertical -0 -2 -2 -Connector_Hirose -Hirose_DF63M-3P-3.96DSA_1x03_P3.96mm_Vertical -Hirose DF63 through hole, DF63M-3P-3.96DSA, 3 Pins per row (https://www.hirose.com/product/en/products/DF63/), generated with kicad-footprint-generator -connector Hirose DF63 vertical -0 -3 -3 -Connector_Hirose -Hirose_DF63M-4P-3.96DSA_1x04_P3.96mm_Vertical -Hirose DF63 through hole, DF63M-4P-3.96DSA, 4 Pins per row (https://www.hirose.com/product/en/products/DF63/), generated with kicad-footprint-generator -connector Hirose DF63 vertical -0 -4 -4 -Connector_Hirose -Hirose_DF63R-1P-3.96DSA_1x01_P3.96mm_Vertical -Hirose DF63 through hole, DF63R-1P-3.96DSA, 1 Pins per row (https://www.hirose.com/product/en/products/DF63/), generated with kicad-footprint-generator -connector Hirose DF63 vertical -0 -1 -1 -Connector_Hirose -Hirose_DF63R-2P-3.96DSA_1x02_P3.96mm_Vertical -Hirose DF63 through hole, DF63R-2P-3.96DSA, 2 Pins per row (https://www.hirose.com/product/en/products/DF63/), generated with kicad-footprint-generator -connector Hirose DF63 vertical -0 -2 -2 -Connector_Hirose -Hirose_DF63R-3P-3.96DSA_1x03_P3.96mm_Vertical -Hirose DF63 through hole, DF63R-3P-3.96DSA, 3 Pins per row (https://www.hirose.com/product/en/products/DF63/), generated with kicad-footprint-generator -connector Hirose DF63 vertical -0 -3 -3 -Connector_Hirose -Hirose_DF63R-4P-3.96DSA_1x04_P3.96mm_Vertical -Hirose DF63 through hole, DF63R-4P-3.96DSA, 4 Pins per row (https://www.hirose.com/product/en/products/DF63/), generated with kicad-footprint-generator -connector Hirose DF63 vertical -0 -4 -4 -Connector_Hirose -Hirose_DF63R-5P-3.96DSA_1x05_P3.96mm_Vertical -Hirose DF63 through hole, DF63R-5P-3.96DSA, 5 Pins per row (https://www.hirose.com/product/en/products/DF63/), generated with kicad-footprint-generator -connector Hirose DF63 vertical -0 -5 -5 -Connector_IDC -IDC-Header_2x03_P2.54mm_Horizontal -Through hole IDC box header, 2x03, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole horizontal IDC box header THT 2x03 2.54mm double row -0 -6 -6 -Connector_IDC -IDC-Header_2x03_P2.54mm_Vertical -Through hole IDC box header, 2x03, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC box header THT 2x03 2.54mm double row -0 -6 -6 -Connector_IDC -IDC-Header_2x03_P2.54mm_Vertical_SMD -SMD IDC box header, 2x03, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://www.tme.eu/Document/4baa0e952ce73e37bc68cf730b541507/T821M114A1S100CEU-B.pdf -SMD vertical IDC box header 2x03 2.54mm double row -0 -6 -6 -Connector_IDC -IDC-Header_2x04_P2.54mm_Horizontal -Through hole IDC box header, 2x04, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole horizontal IDC box header THT 2x04 2.54mm double row -0 -8 -8 -Connector_IDC -IDC-Header_2x04_P2.54mm_Vertical -Through hole IDC box header, 2x04, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC box header THT 2x04 2.54mm double row -0 -8 -8 -Connector_IDC -IDC-Header_2x04_P2.54mm_Vertical_SMD -SMD IDC box header, 2x04, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://www.tme.eu/Document/4baa0e952ce73e37bc68cf730b541507/T821M114A1S100CEU-B.pdf -SMD vertical IDC box header 2x04 2.54mm double row -0 -8 -8 -Connector_IDC -IDC-Header_2x05-1MP_P2.54mm_Latch6.5mm_Vertical -Through hole IDC header, 2x05, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x05 2.54mm double row -0 -12 -11 -Connector_IDC -IDC-Header_2x05-1MP_P2.54mm_Latch9.5mm_Vertical -Through hole IDC header, 2x05, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x05 2.54mm double row -0 -12 -11 -Connector_IDC -IDC-Header_2x05-1MP_P2.54mm_Latch12.0mm_Vertical -Through hole IDC header, 2x05, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x05 2.54mm double row -0 -12 -11 -Connector_IDC -IDC-Header_2x05-1MP_P2.54mm_Latch_Horizontal -Through hole IDC header, 2x05, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole horizontal IDC header THT 2x05 2.54mm double row -0 -12 -11 -Connector_IDC -IDC-Header_2x05-1MP_P2.54mm_Latch_Vertical -Through hole IDC header, 2x05, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x05 2.54mm double row -0 -12 -11 -Connector_IDC -IDC-Header_2x05_P2.54mm_Horizontal -Through hole IDC box header, 2x05, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole horizontal IDC box header THT 2x05 2.54mm double row -0 -10 -10 -Connector_IDC -IDC-Header_2x05_P2.54mm_Latch6.5mm_Vertical -Through hole IDC header, 2x05, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x05 2.54mm double row -0 -10 -10 -Connector_IDC -IDC-Header_2x05_P2.54mm_Latch9.5mm_Vertical -Through hole IDC header, 2x05, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x05 2.54mm double row -0 -10 -10 -Connector_IDC -IDC-Header_2x05_P2.54mm_Latch12.0mm_Vertical -Through hole IDC header, 2x05, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x05 2.54mm double row -0 -10 -10 -Connector_IDC -IDC-Header_2x05_P2.54mm_Latch_Horizontal -Through hole IDC header, 2x05, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole horizontal IDC header THT 2x05 2.54mm double row -0 -10 -10 -Connector_IDC -IDC-Header_2x05_P2.54mm_Latch_Vertical -Through hole IDC header, 2x05, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x05 2.54mm double row -0 -10 -10 -Connector_IDC -IDC-Header_2x05_P2.54mm_Vertical -Through hole IDC box header, 2x05, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC box header THT 2x05 2.54mm double row -0 -10 -10 -Connector_IDC -IDC-Header_2x05_P2.54mm_Vertical_SMD -SMD IDC box header, 2x05, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://www.tme.eu/Document/4baa0e952ce73e37bc68cf730b541507/T821M114A1S100CEU-B.pdf -SMD vertical IDC box header 2x05 2.54mm double row -0 -10 -10 -Connector_IDC -IDC-Header_2x06-1MP_P2.54mm_Latch6.5mm_Vertical -Through hole IDC header, 2x06, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x06 2.54mm double row -0 -14 -13 -Connector_IDC -IDC-Header_2x06-1MP_P2.54mm_Latch9.5mm_Vertical -Through hole IDC header, 2x06, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x06 2.54mm double row -0 -14 -13 -Connector_IDC -IDC-Header_2x06-1MP_P2.54mm_Latch12.0mm_Vertical -Through hole IDC header, 2x06, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x06 2.54mm double row -0 -14 -13 -Connector_IDC -IDC-Header_2x06-1MP_P2.54mm_Latch_Horizontal -Through hole IDC header, 2x06, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole horizontal IDC header THT 2x06 2.54mm double row -0 -14 -13 -Connector_IDC -IDC-Header_2x06-1MP_P2.54mm_Latch_Vertical -Through hole IDC header, 2x06, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x06 2.54mm double row -0 -14 -13 -Connector_IDC -IDC-Header_2x06_P2.54mm_Horizontal -Through hole IDC box header, 2x06, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole horizontal IDC box header THT 2x06 2.54mm double row -0 -12 -12 -Connector_IDC -IDC-Header_2x06_P2.54mm_Latch6.5mm_Vertical -Through hole IDC header, 2x06, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x06 2.54mm double row -0 -12 -12 -Connector_IDC -IDC-Header_2x06_P2.54mm_Latch9.5mm_Vertical -Through hole IDC header, 2x06, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x06 2.54mm double row -0 -12 -12 -Connector_IDC -IDC-Header_2x06_P2.54mm_Latch12.0mm_Vertical -Through hole IDC header, 2x06, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x06 2.54mm double row -0 -12 -12 -Connector_IDC -IDC-Header_2x06_P2.54mm_Latch_Horizontal -Through hole IDC header, 2x06, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole horizontal IDC header THT 2x06 2.54mm double row -0 -12 -12 -Connector_IDC -IDC-Header_2x06_P2.54mm_Latch_Vertical -Through hole IDC header, 2x06, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x06 2.54mm double row -0 -12 -12 -Connector_IDC -IDC-Header_2x06_P2.54mm_Vertical -Through hole IDC box header, 2x06, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC box header THT 2x06 2.54mm double row -0 -12 -12 -Connector_IDC -IDC-Header_2x06_P2.54mm_Vertical_SMD -SMD IDC box header, 2x06, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://www.tme.eu/Document/4baa0e952ce73e37bc68cf730b541507/T821M114A1S100CEU-B.pdf -SMD vertical IDC box header 2x06 2.54mm double row -0 -12 -12 -Connector_IDC -IDC-Header_2x07-1MP_P2.54mm_Latch6.5mm_Vertical -Through hole IDC header, 2x07, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x07 2.54mm double row -0 -16 -15 -Connector_IDC -IDC-Header_2x07-1MP_P2.54mm_Latch9.5mm_Vertical -Through hole IDC header, 2x07, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x07 2.54mm double row -0 -16 -15 -Connector_IDC -IDC-Header_2x07-1MP_P2.54mm_Latch12.0mm_Vertical -Through hole IDC header, 2x07, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x07 2.54mm double row -0 -16 -15 -Connector_IDC -IDC-Header_2x07-1MP_P2.54mm_Latch_Horizontal -Through hole IDC header, 2x07, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole horizontal IDC header THT 2x07 2.54mm double row -0 -16 -15 -Connector_IDC -IDC-Header_2x07-1MP_P2.54mm_Latch_Vertical -Through hole IDC header, 2x07, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x07 2.54mm double row -0 -16 -15 -Connector_IDC -IDC-Header_2x07_P2.54mm_Horizontal -Through hole IDC box header, 2x07, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole horizontal IDC box header THT 2x07 2.54mm double row -0 -14 -14 -Connector_IDC -IDC-Header_2x07_P2.54mm_Horizontal_Lock -Connector IDC Locked, 10 contacts, compatible header: PANCON HE10 (Series 50, (https://www.reboul.fr/storage/00003af6.pdf) -connector idc locked -0 -16 -14 -Connector_IDC -IDC-Header_2x07_P2.54mm_Latch6.5mm_Vertical -Through hole IDC header, 2x07, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x07 2.54mm double row -0 -14 -14 -Connector_IDC -IDC-Header_2x07_P2.54mm_Latch9.5mm_Vertical -Through hole IDC header, 2x07, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x07 2.54mm double row -0 -14 -14 -Connector_IDC -IDC-Header_2x07_P2.54mm_Latch12.0mm_Vertical -Through hole IDC header, 2x07, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x07 2.54mm double row -0 -14 -14 -Connector_IDC -IDC-Header_2x07_P2.54mm_Latch_Horizontal -Through hole IDC header, 2x07, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole horizontal IDC header THT 2x07 2.54mm double row -0 -14 -14 -Connector_IDC -IDC-Header_2x07_P2.54mm_Latch_Vertical -Through hole IDC header, 2x07, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x07 2.54mm double row -0 -14 -14 -Connector_IDC -IDC-Header_2x07_P2.54mm_Vertical -Through hole IDC box header, 2x07, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC box header THT 2x07 2.54mm double row -0 -14 -14 -Connector_IDC -IDC-Header_2x07_P2.54mm_Vertical_SMD -SMD IDC box header, 2x07, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://www.tme.eu/Document/4baa0e952ce73e37bc68cf730b541507/T821M114A1S100CEU-B.pdf -SMD vertical IDC box header 2x07 2.54mm double row -0 -14 -14 -Connector_IDC -IDC-Header_2x08-1MP_P2.54mm_Latch6.5mm_Vertical -Through hole IDC header, 2x08, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x08 2.54mm double row -0 -18 -17 -Connector_IDC -IDC-Header_2x08-1MP_P2.54mm_Latch9.5mm_Vertical -Through hole IDC header, 2x08, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x08 2.54mm double row -0 -18 -17 -Connector_IDC -IDC-Header_2x08-1MP_P2.54mm_Latch12.0mm_Vertical -Through hole IDC header, 2x08, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x08 2.54mm double row -0 -18 -17 -Connector_IDC -IDC-Header_2x08-1MP_P2.54mm_Latch_Horizontal -Through hole IDC header, 2x08, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole horizontal IDC header THT 2x08 2.54mm double row -0 -18 -17 -Connector_IDC -IDC-Header_2x08-1MP_P2.54mm_Latch_Vertical -Through hole IDC header, 2x08, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x08 2.54mm double row -0 -18 -17 -Connector_IDC -IDC-Header_2x08_P2.54mm_Horizontal -Through hole IDC box header, 2x08, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole horizontal IDC box header THT 2x08 2.54mm double row -0 -16 -16 -Connector_IDC -IDC-Header_2x08_P2.54mm_Latch6.5mm_Vertical -Through hole IDC header, 2x08, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x08 2.54mm double row -0 -16 -16 -Connector_IDC -IDC-Header_2x08_P2.54mm_Latch9.5mm_Vertical -Through hole IDC header, 2x08, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x08 2.54mm double row -0 -16 -16 -Connector_IDC -IDC-Header_2x08_P2.54mm_Latch12.0mm_Vertical -Through hole IDC header, 2x08, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x08 2.54mm double row -0 -16 -16 -Connector_IDC -IDC-Header_2x08_P2.54mm_Latch_Horizontal -Through hole IDC header, 2x08, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole horizontal IDC header THT 2x08 2.54mm double row -0 -16 -16 -Connector_IDC -IDC-Header_2x08_P2.54mm_Latch_Vertical -Through hole IDC header, 2x08, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x08 2.54mm double row -0 -16 -16 -Connector_IDC -IDC-Header_2x08_P2.54mm_Vertical -Through hole IDC box header, 2x08, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC box header THT 2x08 2.54mm double row -0 -16 -16 -Connector_IDC -IDC-Header_2x08_P2.54mm_Vertical_SMD -SMD IDC box header, 2x08, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://www.tme.eu/Document/4baa0e952ce73e37bc68cf730b541507/T821M114A1S100CEU-B.pdf -SMD vertical IDC box header 2x08 2.54mm double row -0 -16 -16 -Connector_IDC -IDC-Header_2x10-1MP_P2.54mm_Latch6.5mm_Vertical -Through hole IDC header, 2x10, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x10 2.54mm double row -0 -22 -21 -Connector_IDC -IDC-Header_2x10-1MP_P2.54mm_Latch9.5mm_Vertical -Through hole IDC header, 2x10, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x10 2.54mm double row -0 -22 -21 -Connector_IDC -IDC-Header_2x10-1MP_P2.54mm_Latch12.0mm_Vertical -Through hole IDC header, 2x10, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x10 2.54mm double row -0 -22 -21 -Connector_IDC -IDC-Header_2x10-1MP_P2.54mm_Latch_Horizontal -Through hole IDC header, 2x10, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole horizontal IDC header THT 2x10 2.54mm double row -0 -22 -21 -Connector_IDC -IDC-Header_2x10-1MP_P2.54mm_Latch_Vertical -Through hole IDC header, 2x10, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x10 2.54mm double row -0 -22 -21 -Connector_IDC -IDC-Header_2x10_P2.54mm_Horizontal -Through hole IDC box header, 2x10, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole horizontal IDC box header THT 2x10 2.54mm double row -0 -20 -20 -Connector_IDC -IDC-Header_2x10_P2.54mm_Latch6.5mm_Vertical -Through hole IDC header, 2x10, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x10 2.54mm double row -0 -20 -20 -Connector_IDC -IDC-Header_2x10_P2.54mm_Latch9.5mm_Vertical -Through hole IDC header, 2x10, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x10 2.54mm double row -0 -20 -20 -Connector_IDC -IDC-Header_2x10_P2.54mm_Latch12.0mm_Vertical -Through hole IDC header, 2x10, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x10 2.54mm double row -0 -20 -20 -Connector_IDC -IDC-Header_2x10_P2.54mm_Latch_Horizontal -Through hole IDC header, 2x10, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole horizontal IDC header THT 2x10 2.54mm double row -0 -20 -20 -Connector_IDC -IDC-Header_2x10_P2.54mm_Latch_Vertical -Through hole IDC header, 2x10, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x10 2.54mm double row -0 -20 -20 -Connector_IDC -IDC-Header_2x10_P2.54mm_Vertical -Through hole IDC box header, 2x10, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC box header THT 2x10 2.54mm double row -0 -20 -20 -Connector_IDC -IDC-Header_2x10_P2.54mm_Vertical_SMD -SMD IDC box header, 2x10, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://www.tme.eu/Document/4baa0e952ce73e37bc68cf730b541507/T821M114A1S100CEU-B.pdf -SMD vertical IDC box header 2x10 2.54mm double row -0 -20 -20 -Connector_IDC -IDC-Header_2x12-1MP_P2.54mm_Latch6.5mm_Vertical -Through hole IDC header, 2x12, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x12 2.54mm double row -0 -26 -25 -Connector_IDC -IDC-Header_2x12-1MP_P2.54mm_Latch9.5mm_Vertical -Through hole IDC header, 2x12, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x12 2.54mm double row -0 -26 -25 -Connector_IDC -IDC-Header_2x12-1MP_P2.54mm_Latch12.0mm_Vertical -Through hole IDC header, 2x12, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x12 2.54mm double row -0 -26 -25 -Connector_IDC -IDC-Header_2x12-1MP_P2.54mm_Latch_Horizontal -Through hole IDC header, 2x12, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole horizontal IDC header THT 2x12 2.54mm double row -0 -26 -25 -Connector_IDC -IDC-Header_2x12-1MP_P2.54mm_Latch_Vertical -Through hole IDC header, 2x12, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x12 2.54mm double row -0 -26 -25 -Connector_IDC -IDC-Header_2x12_P2.54mm_Horizontal -Through hole IDC box header, 2x12, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole horizontal IDC box header THT 2x12 2.54mm double row -0 -24 -24 -Connector_IDC -IDC-Header_2x12_P2.54mm_Latch6.5mm_Vertical -Through hole IDC header, 2x12, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x12 2.54mm double row -0 -24 -24 -Connector_IDC -IDC-Header_2x12_P2.54mm_Latch9.5mm_Vertical -Through hole IDC header, 2x12, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x12 2.54mm double row -0 -24 -24 -Connector_IDC -IDC-Header_2x12_P2.54mm_Latch12.0mm_Vertical -Through hole IDC header, 2x12, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x12 2.54mm double row -0 -24 -24 -Connector_IDC -IDC-Header_2x12_P2.54mm_Latch_Horizontal -Through hole IDC header, 2x12, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole horizontal IDC header THT 2x12 2.54mm double row -0 -24 -24 -Connector_IDC -IDC-Header_2x12_P2.54mm_Latch_Vertical -Through hole IDC header, 2x12, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x12 2.54mm double row -0 -24 -24 -Connector_IDC -IDC-Header_2x12_P2.54mm_Vertical -Through hole IDC box header, 2x12, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC box header THT 2x12 2.54mm double row -0 -24 -24 -Connector_IDC -IDC-Header_2x12_P2.54mm_Vertical_SMD -SMD IDC box header, 2x12, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://www.tme.eu/Document/4baa0e952ce73e37bc68cf730b541507/T821M114A1S100CEU-B.pdf -SMD vertical IDC box header 2x12 2.54mm double row -0 -24 -24 -Connector_IDC -IDC-Header_2x13-1MP_P2.54mm_Latch6.5mm_Vertical -Through hole IDC header, 2x13, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x13 2.54mm double row -0 -28 -27 -Connector_IDC -IDC-Header_2x13-1MP_P2.54mm_Latch9.5mm_Vertical -Through hole IDC header, 2x13, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x13 2.54mm double row -0 -28 -27 -Connector_IDC -IDC-Header_2x13-1MP_P2.54mm_Latch12.0mm_Vertical -Through hole IDC header, 2x13, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x13 2.54mm double row -0 -28 -27 -Connector_IDC -IDC-Header_2x13-1MP_P2.54mm_Latch_Horizontal -Through hole IDC header, 2x13, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole horizontal IDC header THT 2x13 2.54mm double row -0 -28 -27 -Connector_IDC -IDC-Header_2x13-1MP_P2.54mm_Latch_Vertical -Through hole IDC header, 2x13, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x13 2.54mm double row -0 -28 -27 -Connector_IDC -IDC-Header_2x13_P2.54mm_Horizontal -Through hole IDC box header, 2x13, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole horizontal IDC box header THT 2x13 2.54mm double row -0 -26 -26 -Connector_IDC -IDC-Header_2x13_P2.54mm_Latch6.5mm_Vertical -Through hole IDC header, 2x13, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x13 2.54mm double row -0 -26 -26 -Connector_IDC -IDC-Header_2x13_P2.54mm_Latch9.5mm_Vertical -Through hole IDC header, 2x13, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x13 2.54mm double row -0 -26 -26 -Connector_IDC -IDC-Header_2x13_P2.54mm_Latch12.0mm_Vertical -Through hole IDC header, 2x13, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x13 2.54mm double row -0 -26 -26 -Connector_IDC -IDC-Header_2x13_P2.54mm_Latch_Horizontal -Through hole IDC header, 2x13, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole horizontal IDC header THT 2x13 2.54mm double row -0 -26 -26 -Connector_IDC -IDC-Header_2x13_P2.54mm_Latch_Vertical -Through hole IDC header, 2x13, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x13 2.54mm double row -0 -26 -26 -Connector_IDC -IDC-Header_2x13_P2.54mm_Vertical -Through hole IDC box header, 2x13, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC box header THT 2x13 2.54mm double row -0 -26 -26 -Connector_IDC -IDC-Header_2x13_P2.54mm_Vertical_SMD -SMD IDC box header, 2x13, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://www.tme.eu/Document/4baa0e952ce73e37bc68cf730b541507/T821M114A1S100CEU-B.pdf -SMD vertical IDC box header 2x13 2.54mm double row -0 -26 -26 -Connector_IDC -IDC-Header_2x15-1MP_P2.54mm_Latch6.5mm_Vertical -Through hole IDC header, 2x15, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x15 2.54mm double row -0 -32 -31 -Connector_IDC -IDC-Header_2x15-1MP_P2.54mm_Latch9.5mm_Vertical -Through hole IDC header, 2x15, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x15 2.54mm double row -0 -32 -31 -Connector_IDC -IDC-Header_2x15-1MP_P2.54mm_Latch12.0mm_Vertical -Through hole IDC header, 2x15, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x15 2.54mm double row -0 -32 -31 -Connector_IDC -IDC-Header_2x15-1MP_P2.54mm_Latch_Horizontal -Through hole IDC header, 2x15, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole horizontal IDC header THT 2x15 2.54mm double row -0 -32 -31 -Connector_IDC -IDC-Header_2x15-1MP_P2.54mm_Latch_Vertical -Through hole IDC header, 2x15, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x15 2.54mm double row -0 -32 -31 -Connector_IDC -IDC-Header_2x15_P2.54mm_Horizontal -Through hole IDC box header, 2x15, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole horizontal IDC box header THT 2x15 2.54mm double row -0 -30 -30 -Connector_IDC -IDC-Header_2x15_P2.54mm_Latch6.5mm_Vertical -Through hole IDC header, 2x15, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x15 2.54mm double row -0 -30 -30 -Connector_IDC -IDC-Header_2x15_P2.54mm_Latch9.5mm_Vertical -Through hole IDC header, 2x15, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x15 2.54mm double row -0 -30 -30 -Connector_IDC -IDC-Header_2x15_P2.54mm_Latch12.0mm_Vertical -Through hole IDC header, 2x15, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x15 2.54mm double row -0 -30 -30 -Connector_IDC -IDC-Header_2x15_P2.54mm_Latch_Horizontal -Through hole IDC header, 2x15, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole horizontal IDC header THT 2x15 2.54mm double row -0 -30 -30 -Connector_IDC -IDC-Header_2x15_P2.54mm_Latch_Vertical -Through hole IDC header, 2x15, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x15 2.54mm double row -0 -30 -30 -Connector_IDC -IDC-Header_2x15_P2.54mm_Vertical -Through hole IDC box header, 2x15, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC box header THT 2x15 2.54mm double row -0 -30 -30 -Connector_IDC -IDC-Header_2x17-1MP_P2.54mm_Latch6.5mm_Vertical -Through hole IDC header, 2x17, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x17 2.54mm double row -0 -36 -35 -Connector_IDC -IDC-Header_2x17-1MP_P2.54mm_Latch9.5mm_Vertical -Through hole IDC header, 2x17, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x17 2.54mm double row -0 -36 -35 -Connector_IDC -IDC-Header_2x17-1MP_P2.54mm_Latch12.0mm_Vertical -Through hole IDC header, 2x17, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x17 2.54mm double row -0 -36 -35 -Connector_IDC -IDC-Header_2x17-1MP_P2.54mm_Latch_Horizontal -Through hole IDC header, 2x17, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole horizontal IDC header THT 2x17 2.54mm double row -0 -36 -35 -Connector_IDC -IDC-Header_2x17-1MP_P2.54mm_Latch_Vertical -Through hole IDC header, 2x17, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x17 2.54mm double row -0 -36 -35 -Connector_IDC -IDC-Header_2x17_P2.54mm_Horizontal -Through hole IDC box header, 2x17, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole horizontal IDC box header THT 2x17 2.54mm double row -0 -34 -34 -Connector_IDC -IDC-Header_2x17_P2.54mm_Latch6.5mm_Vertical -Through hole IDC header, 2x17, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x17 2.54mm double row -0 -34 -34 -Connector_IDC -IDC-Header_2x17_P2.54mm_Latch9.5mm_Vertical -Through hole IDC header, 2x17, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x17 2.54mm double row -0 -34 -34 -Connector_IDC -IDC-Header_2x17_P2.54mm_Latch12.0mm_Vertical -Through hole IDC header, 2x17, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x17 2.54mm double row -0 -34 -34 -Connector_IDC -IDC-Header_2x17_P2.54mm_Latch_Horizontal -Through hole IDC header, 2x17, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole horizontal IDC header THT 2x17 2.54mm double row -0 -34 -34 -Connector_IDC -IDC-Header_2x17_P2.54mm_Latch_Vertical -Through hole IDC header, 2x17, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x17 2.54mm double row -0 -34 -34 -Connector_IDC -IDC-Header_2x17_P2.54mm_Vertical -Through hole IDC box header, 2x17, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC box header THT 2x17 2.54mm double row -0 -34 -34 -Connector_IDC -IDC-Header_2x20-1MP_P2.54mm_Latch6.5mm_Vertical -Through hole IDC header, 2x20, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x20 2.54mm double row -0 -42 -41 -Connector_IDC -IDC-Header_2x20-1MP_P2.54mm_Latch9.5mm_Vertical -Through hole IDC header, 2x20, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x20 2.54mm double row -0 -42 -41 -Connector_IDC -IDC-Header_2x20-1MP_P2.54mm_Latch12.0mm_Vertical -Through hole IDC header, 2x20, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x20 2.54mm double row -0 -42 -41 -Connector_IDC -IDC-Header_2x20-1MP_P2.54mm_Latch_Horizontal -Through hole IDC header, 2x20, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole horizontal IDC header THT 2x20 2.54mm double row -0 -42 -41 -Connector_IDC -IDC-Header_2x20-1MP_P2.54mm_Latch_Vertical -Through hole IDC header, 2x20, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x20 2.54mm double row -0 -42 -41 -Connector_IDC -IDC-Header_2x20_P2.54mm_Horizontal -Through hole IDC box header, 2x20, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole horizontal IDC box header THT 2x20 2.54mm double row -0 -40 -40 -Connector_IDC -IDC-Header_2x20_P2.54mm_Latch6.5mm_Vertical -Through hole IDC header, 2x20, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x20 2.54mm double row -0 -40 -40 -Connector_IDC -IDC-Header_2x20_P2.54mm_Latch9.5mm_Vertical -Through hole IDC header, 2x20, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x20 2.54mm double row -0 -40 -40 -Connector_IDC -IDC-Header_2x20_P2.54mm_Latch12.0mm_Vertical -Through hole IDC header, 2x20, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x20 2.54mm double row -0 -40 -40 -Connector_IDC -IDC-Header_2x20_P2.54mm_Latch_Horizontal -Through hole IDC header, 2x20, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole horizontal IDC header THT 2x20 2.54mm double row -0 -40 -40 -Connector_IDC -IDC-Header_2x20_P2.54mm_Latch_Vertical -Through hole IDC header, 2x20, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x20 2.54mm double row -0 -40 -40 -Connector_IDC -IDC-Header_2x20_P2.54mm_Vertical -Through hole IDC box header, 2x20, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC box header THT 2x20 2.54mm double row -0 -40 -40 -Connector_IDC -IDC-Header_2x20_P2.54mm_Vertical_SMD -SMD IDC box header, 2x20, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://www.tme.eu/Document/4baa0e952ce73e37bc68cf730b541507/T821M114A1S100CEU-B.pdf -SMD vertical IDC box header 2x20 2.54mm double row -0 -40 -40 -Connector_IDC -IDC-Header_2x25-1MP_P2.54mm_Latch6.5mm_Vertical -Through hole IDC header, 2x25, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x25 2.54mm double row -0 -52 -51 -Connector_IDC -IDC-Header_2x25-1MP_P2.54mm_Latch9.5mm_Vertical -Through hole IDC header, 2x25, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x25 2.54mm double row -0 -52 -51 -Connector_IDC -IDC-Header_2x25-1MP_P2.54mm_Latch12.0mm_Vertical -Through hole IDC header, 2x25, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x25 2.54mm double row -0 -52 -51 -Connector_IDC -IDC-Header_2x25-1MP_P2.54mm_Latch_Horizontal -Through hole IDC header, 2x25, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole horizontal IDC header THT 2x25 2.54mm double row -0 -52 -51 -Connector_IDC -IDC-Header_2x25-1MP_P2.54mm_Latch_Vertical -Through hole IDC header, 2x25, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x25 2.54mm double row -0 -52 -51 -Connector_IDC -IDC-Header_2x25_P2.54mm_Horizontal -Through hole IDC box header, 2x25, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole horizontal IDC box header THT 2x25 2.54mm double row -0 -50 -50 -Connector_IDC -IDC-Header_2x25_P2.54mm_Latch6.5mm_Vertical -Through hole IDC header, 2x25, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x25 2.54mm double row -0 -50 -50 -Connector_IDC -IDC-Header_2x25_P2.54mm_Latch9.5mm_Vertical -Through hole IDC header, 2x25, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x25 2.54mm double row -0 -50 -50 -Connector_IDC -IDC-Header_2x25_P2.54mm_Latch12.0mm_Vertical -Through hole IDC header, 2x25, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x25 2.54mm double row -0 -50 -50 -Connector_IDC -IDC-Header_2x25_P2.54mm_Latch_Horizontal -Through hole IDC header, 2x25, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole horizontal IDC header THT 2x25 2.54mm double row -0 -50 -50 -Connector_IDC -IDC-Header_2x25_P2.54mm_Latch_Vertical -Through hole IDC header, 2x25, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x25 2.54mm double row -0 -50 -50 -Connector_IDC -IDC-Header_2x25_P2.54mm_Vertical -Through hole IDC box header, 2x25, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC box header THT 2x25 2.54mm double row -0 -50 -50 -Connector_IDC -IDC-Header_2x25_P2.54mm_Vertical_SMD -SMD IDC box header, 2x25, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://www.tme.eu/Document/4baa0e952ce73e37bc68cf730b541507/T821M114A1S100CEU-B.pdf -SMD vertical IDC box header 2x25 2.54mm double row -0 -50 -50 -Connector_IDC -IDC-Header_2x30-1MP_P2.54mm_Latch6.5mm_Vertical -Through hole IDC header, 2x30, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x30 2.54mm double row -0 -62 -61 -Connector_IDC -IDC-Header_2x30-1MP_P2.54mm_Latch9.5mm_Vertical -Through hole IDC header, 2x30, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x30 2.54mm double row -0 -62 -61 -Connector_IDC -IDC-Header_2x30-1MP_P2.54mm_Latch12.0mm_Vertical -Through hole IDC header, 2x30, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x30 2.54mm double row -0 -62 -61 -Connector_IDC -IDC-Header_2x30-1MP_P2.54mm_Latch_Horizontal -Through hole IDC header, 2x30, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole horizontal IDC header THT 2x30 2.54mm double row -0 -62 -61 -Connector_IDC -IDC-Header_2x30-1MP_P2.54mm_Latch_Vertical -Through hole IDC header, 2x30, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x30 2.54mm double row -0 -62 -61 -Connector_IDC -IDC-Header_2x30_P2.54mm_Horizontal -Through hole IDC box header, 2x30, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole horizontal IDC box header THT 2x30 2.54mm double row -0 -60 -60 -Connector_IDC -IDC-Header_2x30_P2.54mm_Latch6.5mm_Vertical -Through hole IDC header, 2x30, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x30 2.54mm double row -0 -60 -60 -Connector_IDC -IDC-Header_2x30_P2.54mm_Latch9.5mm_Vertical -Through hole IDC header, 2x30, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x30 2.54mm double row -0 -60 -60 -Connector_IDC -IDC-Header_2x30_P2.54mm_Latch12.0mm_Vertical -Through hole IDC header, 2x30, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x30 2.54mm double row -0 -60 -60 -Connector_IDC -IDC-Header_2x30_P2.54mm_Latch_Horizontal -Through hole IDC header, 2x30, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole horizontal IDC header THT 2x30 2.54mm double row -0 -60 -60 -Connector_IDC -IDC-Header_2x30_P2.54mm_Latch_Vertical -Through hole IDC header, 2x30, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x30 2.54mm double row -0 -60 -60 -Connector_IDC -IDC-Header_2x30_P2.54mm_Vertical -Through hole IDC box header, 2x30, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC box header THT 2x30 2.54mm double row -0 -60 -60 -Connector_IDC -IDC-Header_2x30_P2.54mm_Vertical_SMD -SMD IDC box header, 2x30, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://www.tme.eu/Document/4baa0e952ce73e37bc68cf730b541507/T821M114A1S100CEU-B.pdf -SMD vertical IDC box header 2x30 2.54mm double row -0 -60 -60 -Connector_IDC -IDC-Header_2x32-1MP_P2.54mm_Latch6.5mm_Vertical -Through hole IDC header, 2x32, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x32 2.54mm double row -0 -66 -65 -Connector_IDC -IDC-Header_2x32-1MP_P2.54mm_Latch9.5mm_Vertical -Through hole IDC header, 2x32, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x32 2.54mm double row -0 -66 -65 -Connector_IDC -IDC-Header_2x32-1MP_P2.54mm_Latch12.0mm_Vertical -Through hole IDC header, 2x32, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x32 2.54mm double row -0 -66 -65 -Connector_IDC -IDC-Header_2x32-1MP_P2.54mm_Latch_Horizontal -Through hole IDC header, 2x32, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole horizontal IDC header THT 2x32 2.54mm double row -0 -66 -65 -Connector_IDC -IDC-Header_2x32-1MP_P2.54mm_Latch_Vertical -Through hole IDC header, 2x32, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, mounting holes, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x32 2.54mm double row -0 -66 -65 -Connector_IDC -IDC-Header_2x32_P2.54mm_Horizontal -Through hole IDC box header, 2x32, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole horizontal IDC box header THT 2x32 2.54mm double row -0 -64 -64 -Connector_IDC -IDC-Header_2x32_P2.54mm_Latch6.5mm_Vertical -Through hole IDC header, 2x32, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 6.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x32 2.54mm double row -0 -64 -64 -Connector_IDC -IDC-Header_2x32_P2.54mm_Latch9.5mm_Vertical -Through hole IDC header, 2x32, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 9.5mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x32 2.54mm double row -0 -64 -64 -Connector_IDC -IDC-Header_2x32_P2.54mm_Latch12.0mm_Vertical -Through hole IDC header, 2x32, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, 12.0mm latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x32 2.54mm double row -0 -64 -64 -Connector_IDC -IDC-Header_2x32_P2.54mm_Latch_Horizontal -Through hole IDC header, 2x32, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole horizontal IDC header THT 2x32 2.54mm double row -0 -64 -64 -Connector_IDC -IDC-Header_2x32_P2.54mm_Latch_Vertical -Through hole IDC header, 2x32, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows latches, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC header THT 2x32 2.54mm double row -0 -64 -64 -Connector_IDC -IDC-Header_2x32_P2.54mm_Vertical -Through hole IDC box header, 2x32, 2.54mm pitch, DIN 41651 / IEC 60603-13, double rows, https://docs.google.com/spreadsheets/d/16SsEcesNF15N3Lb4niX7dcUr-NY5_MFPQhobNuNppn4/edit#gid=0 -Through hole vertical IDC box header THT 2x32 2.54mm double row -0 -64 -64 -Connector_JAE -JAE_LY20-4P-DLT1_2x02_P2.00mm_Horizontal -Molex LY 20 series connector, LY20-4P-DLT1, 2 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ038187.pdf), generated with kicad-footprint-generator -connector JAE top entry -0 -4 -4 -Connector_JAE -JAE_LY20-4P-DT1_2x02_P2.00mm_Vertical -Molex LY 20 series connector, LY20-4P-DT1, 2 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ103130.pdf), generated with kicad-footprint-generator -connector JAE side entry -0 -4 -4 -Connector_JAE -JAE_LY20-6P-DLT1_2x03_P2.00mm_Horizontal -Molex LY 20 series connector, LY20-6P-DLT1, 3 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ038187.pdf), generated with kicad-footprint-generator -connector JAE top entry -0 -6 -6 -Connector_JAE -JAE_LY20-6P-DT1_2x03_P2.00mm_Vertical -Molex LY 20 series connector, LY20-6P-DT1, 3 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ103130.pdf), generated with kicad-footprint-generator -connector JAE side entry -0 -6 -6 -Connector_JAE -JAE_LY20-8P-DLT1_2x04_P2.00mm_Horizontal -Molex LY 20 series connector, LY20-8P-DLT1, 4 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ038187.pdf), generated with kicad-footprint-generator -connector JAE top entry -0 -8 -8 -Connector_JAE -JAE_LY20-8P-DT1_2x04_P2.00mm_Vertical -Molex LY 20 series connector, LY20-8P-DT1, 4 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ103130.pdf), generated with kicad-footprint-generator -connector JAE side entry -0 -8 -8 -Connector_JAE -JAE_LY20-10P-DLT1_2x05_P2.00mm_Horizontal -Molex LY 20 series connector, LY20-10P-DLT1, 5 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ038187.pdf), generated with kicad-footprint-generator -connector JAE top entry -0 -10 -10 -Connector_JAE -JAE_LY20-10P-DT1_2x05_P2.00mm_Vertical -Molex LY 20 series connector, LY20-10P-DT1, 5 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ103130.pdf), generated with kicad-footprint-generator -connector JAE side entry -0 -10 -10 -Connector_JAE -JAE_LY20-12P-DLT1_2x06_P2.00mm_Horizontal -Molex LY 20 series connector, LY20-12P-DLT1, 6 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ038187.pdf), generated with kicad-footprint-generator -connector JAE top entry -0 -12 -12 -Connector_JAE -JAE_LY20-12P-DT1_2x06_P2.00mm_Vertical -Molex LY 20 series connector, LY20-12P-DT1, 6 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ103130.pdf), generated with kicad-footprint-generator -connector JAE side entry -0 -12 -12 -Connector_JAE -JAE_LY20-14P-DLT1_2x07_P2.00mm_Horizontal -Molex LY 20 series connector, LY20-14P-DLT1, 7 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ038187.pdf), generated with kicad-footprint-generator -connector JAE top entry -0 -14 -14 -Connector_JAE -JAE_LY20-14P-DT1_2x07_P2.00mm_Vertical -Molex LY 20 series connector, LY20-14P-DT1, 7 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ103130.pdf), generated with kicad-footprint-generator -connector JAE side entry -0 -14 -14 -Connector_JAE -JAE_LY20-16P-DLT1_2x08_P2.00mm_Horizontal -Molex LY 20 series connector, LY20-16P-DLT1, 8 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ038187.pdf), generated with kicad-footprint-generator -connector JAE top entry -0 -16 -16 -Connector_JAE -JAE_LY20-16P-DT1_2x08_P2.00mm_Vertical -Molex LY 20 series connector, LY20-16P-DT1, 8 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ103130.pdf), generated with kicad-footprint-generator -connector JAE side entry -0 -16 -16 -Connector_JAE -JAE_LY20-18P-DLT1_2x09_P2.00mm_Horizontal -Molex LY 20 series connector, LY20-18P-DLT1, 9 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ038187.pdf), generated with kicad-footprint-generator -connector JAE top entry -0 -18 -18 -Connector_JAE -JAE_LY20-18P-DT1_2x09_P2.00mm_Vertical -Molex LY 20 series connector, LY20-18P-DT1, 9 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ103130.pdf), generated with kicad-footprint-generator -connector JAE side entry -0 -18 -18 -Connector_JAE -JAE_LY20-20P-DLT1_2x10_P2.00mm_Horizontal -Molex LY 20 series connector, LY20-20P-DLT1, 10 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ038187.pdf), generated with kicad-footprint-generator -connector JAE top entry -0 -20 -20 -Connector_JAE -JAE_LY20-20P-DT1_2x10_P2.00mm_Vertical -Molex LY 20 series connector, LY20-20P-DT1, 10 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ103130.pdf), generated with kicad-footprint-generator -connector JAE side entry -0 -20 -20 -Connector_JAE -JAE_LY20-22P-DLT1_2x11_P2.00mm_Horizontal -Molex LY 20 series connector, LY20-22P-DLT1, 11 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ038187.pdf), generated with kicad-footprint-generator -connector JAE top entry -0 -22 -22 -Connector_JAE -JAE_LY20-22P-DT1_2x11_P2.00mm_Vertical -Molex LY 20 series connector, LY20-22P-DT1, 11 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ103130.pdf), generated with kicad-footprint-generator -connector JAE side entry -0 -22 -22 -Connector_JAE -JAE_LY20-24P-DLT1_2x12_P2.00mm_Horizontal -Molex LY 20 series connector, LY20-24P-DLT1, 12 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ038187.pdf), generated with kicad-footprint-generator -connector JAE top entry -0 -24 -24 -Connector_JAE -JAE_LY20-24P-DT1_2x12_P2.00mm_Vertical -Molex LY 20 series connector, LY20-24P-DT1, 12 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ103130.pdf), generated with kicad-footprint-generator -connector JAE side entry -0 -24 -24 -Connector_JAE -JAE_LY20-26P-DLT1_2x13_P2.00mm_Horizontal -Molex LY 20 series connector, LY20-26P-DLT1, 13 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ038187.pdf), generated with kicad-footprint-generator -connector JAE top entry -0 -26 -26 -Connector_JAE -JAE_LY20-26P-DT1_2x13_P2.00mm_Vertical -Molex LY 20 series connector, LY20-26P-DT1, 13 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ103130.pdf), generated with kicad-footprint-generator -connector JAE side entry -0 -26 -26 -Connector_JAE -JAE_LY20-28P-DLT1_2x14_P2.00mm_Horizontal -Molex LY 20 series connector, LY20-28P-DLT1, 14 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ038187.pdf), generated with kicad-footprint-generator -connector JAE top entry -0 -28 -28 -Connector_JAE -JAE_LY20-28P-DT1_2x14_P2.00mm_Vertical -Molex LY 20 series connector, LY20-28P-DT1, 14 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ103130.pdf), generated with kicad-footprint-generator -connector JAE side entry -0 -28 -28 -Connector_JAE -JAE_LY20-30P-DLT1_2x15_P2.00mm_Horizontal -Molex LY 20 series connector, LY20-30P-DLT1, 15 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ038187.pdf), generated with kicad-footprint-generator -connector JAE top entry -0 -30 -30 -Connector_JAE -JAE_LY20-30P-DT1_2x15_P2.00mm_Vertical -Molex LY 20 series connector, LY20-30P-DT1, 15 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ103130.pdf), generated with kicad-footprint-generator -connector JAE side entry -0 -30 -30 -Connector_JAE -JAE_LY20-32P-DLT1_2x16_P2.00mm_Horizontal -Molex LY 20 series connector, LY20-32P-DLT1, 16 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ038187.pdf), generated with kicad-footprint-generator -connector JAE top entry -0 -32 -32 -Connector_JAE -JAE_LY20-32P-DT1_2x16_P2.00mm_Vertical -Molex LY 20 series connector, LY20-32P-DT1, 16 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ103130.pdf), generated with kicad-footprint-generator -connector JAE side entry -0 -32 -32 -Connector_JAE -JAE_LY20-34P-DLT1_2x17_P2.00mm_Horizontal -Molex LY 20 series connector, LY20-34P-DLT1, 17 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ038187.pdf), generated with kicad-footprint-generator -connector JAE top entry -0 -34 -34 -Connector_JAE -JAE_LY20-34P-DT1_2x17_P2.00mm_Vertical -Molex LY 20 series connector, LY20-34P-DT1, 17 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ103130.pdf), generated with kicad-footprint-generator -connector JAE side entry -0 -34 -34 -Connector_JAE -JAE_LY20-36P-DLT1_2x18_P2.00mm_Horizontal -Molex LY 20 series connector, LY20-36P-DLT1, 18 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ038187.pdf), generated with kicad-footprint-generator -connector JAE top entry -0 -36 -36 -Connector_JAE -JAE_LY20-36P-DT1_2x18_P2.00mm_Vertical -Molex LY 20 series connector, LY20-36P-DT1, 18 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ103130.pdf), generated with kicad-footprint-generator -connector JAE side entry -0 -36 -36 -Connector_JAE -JAE_LY20-38P-DLT1_2x19_P2.00mm_Horizontal -Molex LY 20 series connector, LY20-38P-DLT1, 19 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ038187.pdf), generated with kicad-footprint-generator -connector JAE top entry -0 -38 -38 -Connector_JAE -JAE_LY20-38P-DT1_2x19_P2.00mm_Vertical -Molex LY 20 series connector, LY20-38P-DT1, 19 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ103130.pdf), generated with kicad-footprint-generator -connector JAE side entry -0 -38 -38 -Connector_JAE -JAE_LY20-40P-DLT1_2x20_P2.00mm_Horizontal -Molex LY 20 series connector, LY20-40P-DLT1, 20 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ038187.pdf), generated with kicad-footprint-generator -connector JAE top entry -0 -40 -40 -Connector_JAE -JAE_LY20-40P-DT1_2x20_P2.00mm_Vertical -Molex LY 20 series connector, LY20-40P-DT1, 20 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ103130.pdf), generated with kicad-footprint-generator -connector JAE side entry -0 -40 -40 -Connector_JAE -JAE_LY20-42P-DLT1_2x21_P2.00mm_Horizontal -Molex LY 20 series connector, LY20-42P-DLT1, 21 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ038187.pdf), generated with kicad-footprint-generator -connector JAE top entry -0 -42 -42 -Connector_JAE -JAE_LY20-42P-DT1_2x21_P2.00mm_Vertical -Molex LY 20 series connector, LY20-42P-DT1, 21 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ103130.pdf), generated with kicad-footprint-generator -connector JAE side entry -0 -42 -42 -Connector_JAE -JAE_LY20-44P-DLT1_2x22_P2.00mm_Horizontal -Molex LY 20 series connector, LY20-44P-DLT1, 22 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ038187.pdf), generated with kicad-footprint-generator -connector JAE top entry -0 -44 -44 -Connector_JAE -JAE_LY20-44P-DT1_2x22_P2.00mm_Vertical -Molex LY 20 series connector, LY20-44P-DT1, 22 Circuits (http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ103130.pdf), generated with kicad-footprint-generator -connector JAE side entry -0 -44 -44 -Connector_JAE -JAE_MM70-314-310B1 -http://www.heilind.com/marketing/documents/jae/JAE_MM70.pdf -connector JAE MXM -0 -280 -279 -Connector_JAE -JAE_SIM_Card_SF72S006 -SIM Card, Push-Push, https://www.jae.com/direct/topics/topics_file_download/topics_id=68892&ext_no=06&index=0&_lang=en&v=202003111511468456809 -SIM Card with Detect Switch -0 -18 -9 -Connector_JST -JST_ACH_BM01B-ACHSS-A-GAN-ETF_1x01-1MP_P1.20mm_Vertical -JST ACH series connector, BM01B-ACHSS-A-GAN-ETF (http://www.jst-mfg.com/product/pdf/eng/eACH.pdf), generated with kicad-footprint-generator -connector JST ACH vertical -0 -3 -2 -Connector_JST -JST_ACH_BM02B-ACHSS-GAN-ETF_1x02-1MP_P1.20mm_Vertical -JST ACH series connector, BM02B-ACHSS-GAN-ETF (http://www.jst-mfg.com/product/pdf/eng/eACH.pdf), generated with kicad-footprint-generator -connector JST ACH vertical -0 -4 -3 -Connector_JST -JST_ACH_BM03B-ACHSS-GAN-ETF_1x03-1MP_P1.20mm_Vertical -JST ACH series connector, BM03B-ACHSS-GAN-ETF (http://www.jst-mfg.com/product/pdf/eng/eACH.pdf), generated with kicad-footprint-generator -connector JST ACH vertical -0 -5 -4 -Connector_JST -JST_ACH_BM04B-ACHSS-A-GAN-ETF_1x04-1MP_P1.20mm_Vertical -JST ACH series connector, BM04B-ACHSS-A-GAN-ETF (http://www.jst-mfg.com/product/pdf/eng/eACH.pdf), generated with kicad-footprint-generator -connector JST ACH vertical -0 -6 -5 -Connector_JST -JST_ACH_BM05B-ACHSS-A-GAN-ETF_1x05-1MP_P1.20mm_Vertical -JST ACH series connector, BM05B-ACHSS-A-GAN-ETF (http://www.jst-mfg.com/product/pdf/eng/eACH.pdf), generated with kicad-footprint-generator -connector JST ACH vertical -0 -7 -6 -Connector_JST -JST_AUH_BM03B-AUHKS-GA-TB_1x03-1MP_P1.50mm_Vertical -JST AUH series connector, BM03B-AUHKS-GA-TB (http://www.jst-mfg.com/product/pdf/eng/eAUH.pdf), generated with kicad-footprint-generator -connector JST AUH side entry -0 -5 -4 -Connector_JST -JST_AUH_BM05B-AUHKS-GA-TB_1x05-1MP_P1.50mm_Vertical -JST AUH series connector, BM05B-AUHKS-GA-TB (http://www.jst-mfg.com/product/pdf/eng/eAUH.pdf), generated with kicad-footprint-generator -connector JST AUH side entry -0 -7 -6 -Connector_JST -JST_EH_B2B-EH-A_1x02_P2.50mm_Vertical -JST EH series connector, B2B-EH-A (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator -connector JST EH vertical -0 -2 -2 -Connector_JST -JST_EH_B3B-EH-A_1x03_P2.50mm_Vertical -JST EH series connector, B3B-EH-A (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator -connector JST EH vertical -0 -3 -3 -Connector_JST -JST_EH_B4B-EH-A_1x04_P2.50mm_Vertical -JST EH series connector, B4B-EH-A (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator -connector JST EH vertical -0 -4 -4 -Connector_JST -JST_EH_B5B-EH-A_1x05_P2.50mm_Vertical -JST EH series connector, B5B-EH-A (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator -connector JST EH vertical -0 -5 -5 -Connector_JST -JST_EH_B6B-EH-A_1x06_P2.50mm_Vertical -JST EH series connector, B6B-EH-A (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator -connector JST EH vertical -0 -6 -6 -Connector_JST -JST_EH_B7B-EH-A_1x07_P2.50mm_Vertical -JST EH series connector, B7B-EH-A (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator -connector JST EH vertical -0 -7 -7 -Connector_JST -JST_EH_B8B-EH-A_1x08_P2.50mm_Vertical -JST EH series connector, B8B-EH-A (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator -connector JST EH vertical -0 -8 -8 -Connector_JST -JST_EH_B9B-EH-A_1x09_P2.50mm_Vertical -JST EH series connector, B9B-EH-A (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator -connector JST EH vertical -0 -9 -9 -Connector_JST -JST_EH_B10B-EH-A_1x10_P2.50mm_Vertical -JST EH series connector, B10B-EH-A (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator -connector JST EH side entry -0 -10 -10 -Connector_JST -JST_EH_B11B-EH-A_1x11_P2.50mm_Vertical -JST EH series connector, B11B-EH-A (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator -connector JST EH side entry -0 -11 -11 -Connector_JST -JST_EH_B12B-EH-A_1x12_P2.50mm_Vertical -JST EH series connector, B12B-EH-A (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator -connector JST EH side entry -0 -12 -12 -Connector_JST -JST_EH_B13B-EH-A_1x13_P2.50mm_Vertical -JST EH series connector, B13B-EH-A (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator -connector JST EH side entry -0 -13 -13 -Connector_JST -JST_EH_B14B-EH-A_1x14_P2.50mm_Vertical -JST EH series connector, B14B-EH-A (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator -connector JST EH side entry -0 -14 -14 -Connector_JST -JST_EH_B15B-EH-A_1x15_P2.50mm_Vertical -JST EH series connector, B15B-EH-A (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator -connector JST EH side entry -0 -15 -15 -Connector_JST -JST_EH_S2B-EH_1x02_P2.50mm_Horizontal -JST EH series connector, S2B-EH (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator -connector JST EH horizontal -0 -2 -2 -Connector_JST -JST_EH_S3B-EH_1x03_P2.50mm_Horizontal -JST EH series connector, S3B-EH (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator -connector JST EH horizontal -0 -3 -3 -Connector_JST -JST_EH_S4B-EH_1x04_P2.50mm_Horizontal -JST EH series connector, S4B-EH (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator -connector JST EH horizontal -0 -4 -4 -Connector_JST -JST_EH_S5B-EH_1x05_P2.50mm_Horizontal -JST EH series connector, S5B-EH (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator -connector JST EH horizontal -0 -5 -5 -Connector_JST -JST_EH_S6B-EH_1x06_P2.50mm_Horizontal -JST EH series connector, S6B-EH (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator -connector JST EH horizontal -0 -6 -6 -Connector_JST -JST_EH_S7B-EH_1x07_P2.50mm_Horizontal -JST EH series connector, S7B-EH (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator -connector JST EH horizontal -0 -7 -7 -Connector_JST -JST_EH_S8B-EH_1x08_P2.50mm_Horizontal -JST EH series connector, S8B-EH (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator -connector JST EH horizontal -0 -8 -8 -Connector_JST -JST_EH_S9B-EH_1x09_P2.50mm_Horizontal -JST EH series connector, S9B-EH (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator -connector JST EH horizontal -0 -9 -9 -Connector_JST -JST_EH_S10B-EH_1x10_P2.50mm_Horizontal -JST EH series connector, S10B-EH (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator -connector JST EH top entry -0 -10 -10 -Connector_JST -JST_EH_S11B-EH_1x11_P2.50mm_Horizontal -JST EH series connector, S11B-EH (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator -connector JST EH top entry -0 -11 -11 -Connector_JST -JST_EH_S12B-EH_1x12_P2.50mm_Horizontal -JST EH series connector, S12B-EH (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator -connector JST EH top entry -0 -12 -12 -Connector_JST -JST_EH_S13B-EH_1x13_P2.50mm_Horizontal -JST EH series connector, S13B-EH (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator -connector JST EH top entry -0 -13 -13 -Connector_JST -JST_EH_S14B-EH_1x14_P2.50mm_Horizontal -JST EH series connector, S14B-EH (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator -connector JST EH top entry -0 -14 -14 -Connector_JST -JST_EH_S15B-EH_1x15_P2.50mm_Horizontal -JST EH series connector, S15B-EH (http://www.jst-mfg.com/product/pdf/eng/eEH.pdf), generated with kicad-footprint-generator -connector JST EH top entry -0 -15 -15 -Connector_JST -JST_GH_BM02B-GHS-TBT_1x02-1MP_P1.25mm_Vertical -JST GH series connector, BM02B-GHS-TBT (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator -connector JST GH side entry -0 -4 -3 -Connector_JST -JST_GH_BM03B-GHS-TBT_1x03-1MP_P1.25mm_Vertical -JST GH series connector, BM03B-GHS-TBT (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator -connector JST GH side entry -0 -5 -4 -Connector_JST -JST_GH_BM04B-GHS-TBT_1x04-1MP_P1.25mm_Vertical -JST GH series connector, BM04B-GHS-TBT (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator -connector JST GH side entry -0 -6 -5 -Connector_JST -JST_GH_BM05B-GHS-TBT_1x05-1MP_P1.25mm_Vertical -JST GH series connector, BM05B-GHS-TBT (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator -connector JST GH side entry -0 -7 -6 -Connector_JST -JST_GH_BM06B-GHS-TBT_1x06-1MP_P1.25mm_Vertical -JST GH series connector, BM06B-GHS-TBT (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator -connector JST GH side entry -0 -8 -7 -Connector_JST -JST_GH_BM07B-GHS-TBT_1x07-1MP_P1.25mm_Vertical -JST GH series connector, BM07B-GHS-TBT (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator -connector JST GH side entry -0 -9 -8 -Connector_JST -JST_GH_BM08B-GHS-TBT_1x08-1MP_P1.25mm_Vertical -JST GH series connector, BM08B-GHS-TBT (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator -connector JST GH side entry -0 -10 -9 -Connector_JST -JST_GH_BM09B-GHS-TBT_1x09-1MP_P1.25mm_Vertical -JST GH series connector, BM09B-GHS-TBT (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator -connector JST GH side entry -0 -11 -10 -Connector_JST -JST_GH_BM10B-GHS-TBT_1x10-1MP_P1.25mm_Vertical -JST GH series connector, BM10B-GHS-TBT (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator -connector JST GH side entry -0 -12 -11 -Connector_JST -JST_GH_BM11B-GHS-TBT_1x11-1MP_P1.25mm_Vertical -JST GH series connector, BM11B-GHS-TBT (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator -connector JST GH side entry -0 -13 -12 -Connector_JST -JST_GH_BM12B-GHS-TBT_1x12-1MP_P1.25mm_Vertical -JST GH series connector, BM12B-GHS-TBT (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator -connector JST GH side entry -0 -14 -13 -Connector_JST -JST_GH_BM13B-GHS-TBT_1x13-1MP_P1.25mm_Vertical -JST GH series connector, BM13B-GHS-TBT (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator -connector JST GH side entry -0 -15 -14 -Connector_JST -JST_GH_BM14B-GHS-TBT_1x14-1MP_P1.25mm_Vertical -JST GH series connector, BM14B-GHS-TBT (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator -connector JST GH side entry -0 -16 -15 -Connector_JST -JST_GH_BM15B-GHS-TBT_1x15-1MP_P1.25mm_Vertical -JST GH series connector, BM15B-GHS-TBT (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator -connector JST GH side entry -0 -17 -16 -Connector_JST -JST_GH_SM02B-GHS-TB_1x02-1MP_P1.25mm_Horizontal -JST GH series connector, SM02B-GHS-TB (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator -connector JST GH top entry -0 -4 -3 -Connector_JST -JST_GH_SM03B-GHS-TB_1x03-1MP_P1.25mm_Horizontal -JST GH series connector, SM03B-GHS-TB (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator -connector JST GH top entry -0 -5 -4 -Connector_JST -JST_GH_SM04B-GHS-TB_1x04-1MP_P1.25mm_Horizontal -JST GH series connector, SM04B-GHS-TB (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator -connector JST GH top entry -0 -6 -5 -Connector_JST -JST_GH_SM05B-GHS-TB_1x05-1MP_P1.25mm_Horizontal -JST GH series connector, SM05B-GHS-TB (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator -connector JST GH top entry -0 -7 -6 -Connector_JST -JST_GH_SM06B-GHS-TB_1x06-1MP_P1.25mm_Horizontal -JST GH series connector, SM06B-GHS-TB (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator -connector JST GH top entry -0 -8 -7 -Connector_JST -JST_GH_SM07B-GHS-TB_1x07-1MP_P1.25mm_Horizontal -JST GH series connector, SM07B-GHS-TB (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator -connector JST GH top entry -0 -9 -8 -Connector_JST -JST_GH_SM08B-GHS-TB_1x08-1MP_P1.25mm_Horizontal -JST GH series connector, SM08B-GHS-TB (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator -connector JST GH top entry -0 -10 -9 -Connector_JST -JST_GH_SM09B-GHS-TB_1x09-1MP_P1.25mm_Horizontal -JST GH series connector, SM09B-GHS-TB (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator -connector JST GH top entry -0 -11 -10 -Connector_JST -JST_GH_SM10B-GHS-TB_1x10-1MP_P1.25mm_Horizontal -JST GH series connector, SM10B-GHS-TB (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator -connector JST GH top entry -0 -12 -11 -Connector_JST -JST_GH_SM11B-GHS-TB_1x11-1MP_P1.25mm_Horizontal -JST GH series connector, SM11B-GHS-TB (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator -connector JST GH top entry -0 -13 -12 -Connector_JST -JST_GH_SM12B-GHS-TB_1x12-1MP_P1.25mm_Horizontal -JST GH series connector, SM12B-GHS-TB (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator -connector JST GH top entry -0 -14 -13 -Connector_JST -JST_GH_SM13B-GHS-TB_1x13-1MP_P1.25mm_Horizontal -JST GH series connector, SM13B-GHS-TB (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator -connector JST GH top entry -0 -15 -14 -Connector_JST -JST_GH_SM14B-GHS-TB_1x14-1MP_P1.25mm_Horizontal -JST GH series connector, SM14B-GHS-TB (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator -connector JST GH top entry -0 -16 -15 -Connector_JST -JST_GH_SM15B-GHS-TB_1x15-1MP_P1.25mm_Horizontal -JST GH series connector, SM15B-GHS-TB (http://www.jst-mfg.com/product/pdf/eng/eGH.pdf), generated with kicad-footprint-generator -connector JST GH top entry -0 -17 -16 -Connector_JST -JST_J2100_B06B-J21DK-GGXR_2x03_P2.50x4.00mm_Vertical -JST J2100 series connector, B06B-J21DK-GGXR (http://www.jst-mfg.com/product/pdf/eng/eJFA-J2000.pdf), generated with kicad-footprint-generator -connector JST J2100 vertical -0 -8 -6 -Connector_JST -JST_J2100_B08B-J21DK-GGXR_2x04_P2.50x4.00mm_Vertical -JST J2100 series connector, B08B-J21DK-GGXR (http://www.jst-mfg.com/product/pdf/eng/eJFA-J2000.pdf), generated with kicad-footprint-generator -connector JST J2100 vertical -0 -10 -8 -Connector_JST -JST_J2100_B10B-J21DK-GGXR_2x05_P2.50x4.00mm_Vertical -JST J2100 series connector, B10B-J21DK-GGXR (http://www.jst-mfg.com/product/pdf/eng/eJFA-J2000.pdf), generated with kicad-footprint-generator -connector JST J2100 vertical -0 -12 -10 -Connector_JST -JST_J2100_B12B-J21DK-GGXR_2x06_P2.50x4.00mm_Vertical -JST J2100 series connector, B12B-J21DK-GGXR (http://www.jst-mfg.com/product/pdf/eng/eJFA-J2000.pdf), generated with kicad-footprint-generator -connector JST J2100 vertical -0 -14 -12 -Connector_JST -JST_J2100_B16B-J21DK-GGXR_2x08_P2.50x4.00mm_Vertical -JST J2100 series connector, B16B-J21DK-GGXR (http://www.jst-mfg.com/product/pdf/eng/eJFA-J2000.pdf), generated with kicad-footprint-generator -connector JST J2100 vertical -0 -18 -16 -Connector_JST -JST_J2100_B20B-J21DK-GGXR_2x10_P2.50x4.00mm_Vertical -JST J2100 series connector, B20B-J21DK-GGXR (http://www.jst-mfg.com/product/pdf/eng/eJFA-J2000.pdf), generated with kicad-footprint-generator -connector JST J2100 vertical -0 -22 -20 -Connector_JST -JST_J2100_S06B-J21DK-GGXR_2x03_P2.50mm_Horizontal -JST J2100 series connector, S06B-J21DK-GGXR (http://www.jst-mfg.com/product/pdf/eng/eJFA-J2000.pdf), generated with kicad-footprint-generator -connector JST J2100 horizontal -0 -7 -6 -Connector_JST -JST_J2100_S08B-J21DK-GGXR_2x04_P2.50mm_Horizontal -JST J2100 series connector, S08B-J21DK-GGXR (http://www.jst-mfg.com/product/pdf/eng/eJFA-J2000.pdf), generated with kicad-footprint-generator -connector JST J2100 horizontal -0 -10 -8 -Connector_JST -JST_J2100_S10B-J21DK-GGXR_2x05_P2.50mm_Horizontal -JST J2100 series connector, S10B-J21DK-GGXR (http://www.jst-mfg.com/product/pdf/eng/eJFA-J2000.pdf), generated with kicad-footprint-generator -connector JST J2100 horizontal -0 -12 -10 -Connector_JST -JST_J2100_S12B-J21DK-GGXR_2x06_P2.50mm_Horizontal -JST J2100 series connector, S12B-J21DK-GGXR (http://www.jst-mfg.com/product/pdf/eng/eJFA-J2000.pdf), generated with kicad-footprint-generator -connector JST J2100 horizontal -0 -14 -12 -Connector_JST -JST_J2100_S16B-J21DK-GGXR_2x08_P2.50mm_Horizontal -JST J2100 series connector, S16B-J21DK-GGXR (http://www.jst-mfg.com/product/pdf/eng/eJFA-J2000.pdf), generated with kicad-footprint-generator -connector JST J2100 horizontal -0 -18 -16 -Connector_JST -JST_J2100_S20B-J21DK-GGXR_2x10_P2.50mm_Horizontal -JST J2100 series connector, S20B-J21DK-GGXR (http://www.jst-mfg.com/product/pdf/eng/eJFA-J2000.pdf), generated with kicad-footprint-generator -connector JST J2100 horizontal -0 -22 -20 -Connector_JST -JST_JWPF_B02B-JWPF-SK-R_1x02_P2.00mm_Vertical -JST JWPF series connector, B02B-JWPF-SK-R (http://www.jst-mfg.com/product/pdf/eng/eJWPF1.pdf), generated with kicad-footprint-generator -connector JST JWPF side entry -0 -2 -2 -Connector_JST -JST_JWPF_B03B-JWPF-SK-R_1x03_P2.00mm_Vertical -JST JWPF series connector, B03B-JWPF-SK-R (http://www.jst-mfg.com/product/pdf/eng/eJWPF1.pdf), generated with kicad-footprint-generator -connector JST JWPF side entry -0 -3 -3 -Connector_JST -JST_JWPF_B04B-JWPF-SK-R_1x04_P2.00mm_Vertical -JST JWPF series connector, B04B-JWPF-SK-R (http://www.jst-mfg.com/product/pdf/eng/eJWPF1.pdf), generated with kicad-footprint-generator -connector JST JWPF side entry -0 -4 -4 -Connector_JST -JST_JWPF_B06B-JWPF-SK-R_2x03_P2.00mm_Vertical -JST JWPF series connector, B06B-JWPF-SK-R (http://www.jst-mfg.com/product/pdf/eng/eJWPF1.pdf), generated with kicad-footprint-generator -connector JST JWPF side entry -0 -6 -6 -Connector_JST -JST_JWPF_B08B-JWPF-SK-R_2x04_P2.00mm_Vertical -JST JWPF series connector, B08B-JWPF-SK-R (http://www.jst-mfg.com/product/pdf/eng/eJWPF1.pdf), generated with kicad-footprint-generator -connector JST JWPF side entry -0 -8 -8 -Connector_JST -JST_LEA_SM02B-LEASS-TF_1x02-1MP_P4.20mm_Horizontal -JST LEA series connector, SM02B-LEASS-TF (http://www.jst-mfg.com/product/pdf/eng/eLEA.pdf), generated with kicad-footprint-generator -connector JST LEA top entry -0 -4 -3 -Connector_JST -JST_NV_B02P-NV_1x02_P5.00mm_Vertical -JST NV series connector, B02P-NV (http://www.jst-mfg.com/product/pdf/eng/eNV.pdf), generated with kicad-footprint-generator -connector JST NV side entry -0 -2 -2 -Connector_JST -JST_NV_B03P-NV_1x03_P5.00mm_Vertical -JST NV series connector, B03P-NV (http://www.jst-mfg.com/product/pdf/eng/eNV.pdf), generated with kicad-footprint-generator -connector JST NV side entry -0 -3 -3 -Connector_JST -JST_NV_B04P-NV_1x04_P5.00mm_Vertical -JST NV series connector, B04P-NV (http://www.jst-mfg.com/product/pdf/eng/eNV.pdf), generated with kicad-footprint-generator -connector JST NV side entry -0 -4 -4 -Connector_JST -JST_PHD_B8B-PHDSS_2x04_P2.00mm_Vertical -JST PHD series connector, B8B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator -connector JST PHD vertical -0 -8 -8 -Connector_JST -JST_PHD_B10B-PHDSS_2x05_P2.00mm_Vertical -JST PHD series connector, B10B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator -connector JST PHD vertical -0 -10 -10 -Connector_JST -JST_PHD_B12B-PHDSS_2x06_P2.00mm_Vertical -JST PHD series connector, B12B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator -connector JST PHD vertical -0 -12 -12 -Connector_JST -JST_PHD_B14B-PHDSS_2x07_P2.00mm_Vertical -JST PHD series connector, B14B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator -connector JST PHD vertical -0 -14 -14 -Connector_JST -JST_PHD_B16B-PHDSS_2x08_P2.00mm_Vertical -JST PHD series connector, B16B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator -connector JST PHD vertical -0 -16 -16 -Connector_JST -JST_PHD_B18B-PHDSS_2x09_P2.00mm_Vertical -JST PHD series connector, B18B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator -connector JST PHD vertical -0 -18 -18 -Connector_JST -JST_PHD_B20B-PHDSS_2x10_P2.00mm_Vertical -JST PHD series connector, B20B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator -connector JST PHD vertical -0 -20 -20 -Connector_JST -JST_PHD_B22B-PHDSS_2x11_P2.00mm_Vertical -JST PHD series connector, B22B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator -connector JST PHD vertical -0 -22 -22 -Connector_JST -JST_PHD_B24B-PHDSS_2x12_P2.00mm_Vertical -JST PHD series connector, B24B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator -connector JST PHD vertical -0 -24 -24 -Connector_JST -JST_PHD_B26B-PHDSS_2x13_P2.00mm_Vertical -JST PHD series connector, B26B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator -connector JST PHD vertical -0 -26 -26 -Connector_JST -JST_PHD_B28B-PHDSS_2x14_P2.00mm_Vertical -JST PHD series connector, B28B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator -connector JST PHD vertical -0 -28 -28 -Connector_JST -JST_PHD_B30B-PHDSS_2x15_P2.00mm_Vertical -JST PHD series connector, B30B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator -connector JST PHD vertical -0 -30 -30 -Connector_JST -JST_PHD_B32B-PHDSS_2x16_P2.00mm_Vertical -JST PHD series connector, B32B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator -connector JST PHD vertical -0 -32 -32 -Connector_JST -JST_PHD_B34B-PHDSS_2x17_P2.00mm_Vertical -JST PHD series connector, B34B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator -connector JST PHD vertical -0 -34 -34 -Connector_JST -JST_PHD_S8B-PHDSS_2x04_P2.00mm_Horizontal -JST PHD series connector, S8B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator -connector JST PHD horizontal -0 -8 -8 -Connector_JST -JST_PHD_S10B-PHDSS_2x05_P2.00mm_Horizontal -JST PHD series connector, S10B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator -connector JST PHD horizontal -0 -10 -10 -Connector_JST -JST_PHD_S12B-PHDSS_2x06_P2.00mm_Horizontal -JST PHD series connector, S12B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator -connector JST PHD horizontal -0 -12 -12 -Connector_JST -JST_PHD_S14B-PHDSS_2x07_P2.00mm_Horizontal -JST PHD series connector, S14B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator -connector JST PHD horizontal -0 -14 -14 -Connector_JST -JST_PHD_S16B-PHDSS_2x08_P2.00mm_Horizontal -JST PHD series connector, S16B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator -connector JST PHD horizontal -0 -16 -16 -Connector_JST -JST_PHD_S18B-PHDSS_2x09_P2.00mm_Horizontal -JST PHD series connector, S18B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator -connector JST PHD horizontal -0 -18 -18 -Connector_JST -JST_PHD_S20B-PHDSS_2x10_P2.00mm_Horizontal -JST PHD series connector, S20B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator -connector JST PHD horizontal -0 -20 -20 -Connector_JST -JST_PHD_S22B-PHDSS_2x11_P2.00mm_Horizontal -JST PHD series connector, S22B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator -connector JST PHD horizontal -0 -22 -22 -Connector_JST -JST_PHD_S24B-PHDSS_2x12_P2.00mm_Horizontal -JST PHD series connector, S24B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator -connector JST PHD horizontal -0 -24 -24 -Connector_JST -JST_PHD_S26B-PHDSS_2x13_P2.00mm_Horizontal -JST PHD series connector, S26B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator -connector JST PHD horizontal -0 -26 -26 -Connector_JST -JST_PHD_S28B-PHDSS_2x14_P2.00mm_Horizontal -JST PHD series connector, S28B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator -connector JST PHD horizontal -0 -28 -28 -Connector_JST -JST_PHD_S30B-PHDSS_2x15_P2.00mm_Horizontal -JST PHD series connector, S30B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator -connector JST PHD horizontal -0 -30 -30 -Connector_JST -JST_PHD_S32B-PHDSS_2x16_P2.00mm_Horizontal -JST PHD series connector, S32B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator -connector JST PHD horizontal -0 -32 -32 -Connector_JST -JST_PHD_S34B-PHDSS_2x17_P2.00mm_Horizontal -JST PHD series connector, S34B-PHDSS (http://www.jst-mfg.com/product/pdf/eng/ePHD.pdf), generated with kicad-footprint-generator -connector JST PHD horizontal -0 -34 -34 -Connector_JST -JST_PH_B2B-PH-K_1x02_P2.00mm_Vertical -JST PH series connector, B2B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator -connector JST PH side entry -0 -2 -2 -Connector_JST -JST_PH_B2B-PH-SM4-TB_1x02-1MP_P2.00mm_Vertical -JST PH series connector, B2B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator -connector JST PH side entry -0 -4 -3 -Connector_JST -JST_PH_B3B-PH-K_1x03_P2.00mm_Vertical -JST PH series connector, B3B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator -connector JST PH side entry -0 -3 -3 -Connector_JST -JST_PH_B3B-PH-SM4-TB_1x03-1MP_P2.00mm_Vertical -JST PH series connector, B3B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator -connector JST PH side entry -0 -5 -4 -Connector_JST -JST_PH_B4B-PH-K_1x04_P2.00mm_Vertical -JST PH series connector, B4B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator -connector JST PH side entry -0 -4 -4 -Connector_JST -JST_PH_B4B-PH-SM4-TB_1x04-1MP_P2.00mm_Vertical -JST PH series connector, B4B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator -connector JST PH side entry -0 -6 -5 -Connector_JST -JST_PH_B5B-PH-K_1x05_P2.00mm_Vertical -JST PH series connector, B5B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator -connector JST PH side entry -0 -5 -5 -Connector_JST -JST_PH_B5B-PH-SM4-TB_1x05-1MP_P2.00mm_Vertical -JST PH series connector, B5B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator -connector JST PH side entry -0 -7 -6 -Connector_JST -JST_PH_B6B-PH-K_1x06_P2.00mm_Vertical -JST PH series connector, B6B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator -connector JST PH side entry -0 -6 -6 -Connector_JST -JST_PH_B6B-PH-SM4-TB_1x06-1MP_P2.00mm_Vertical -JST PH series connector, B6B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator -connector JST PH side entry -0 -8 -7 -Connector_JST -JST_PH_B7B-PH-K_1x07_P2.00mm_Vertical -JST PH series connector, B7B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator -connector JST PH side entry -0 -7 -7 -Connector_JST -JST_PH_B7B-PH-SM4-TB_1x07-1MP_P2.00mm_Vertical -JST PH series connector, B7B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator -connector JST PH side entry -0 -9 -8 -Connector_JST -JST_PH_B8B-PH-K_1x08_P2.00mm_Vertical -JST PH series connector, B8B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator -connector JST PH side entry -0 -8 -8 -Connector_JST -JST_PH_B8B-PH-SM4-TB_1x08-1MP_P2.00mm_Vertical -JST PH series connector, B8B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator -connector JST PH side entry -0 -10 -9 -Connector_JST -JST_PH_B9B-PH-K_1x09_P2.00mm_Vertical -JST PH series connector, B9B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator -connector JST PH side entry -0 -9 -9 -Connector_JST -JST_PH_B9B-PH-SM4-TB_1x09-1MP_P2.00mm_Vertical -JST PH series connector, B9B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator -connector JST PH side entry -0 -11 -10 -Connector_JST -JST_PH_B10B-PH-K_1x10_P2.00mm_Vertical -JST PH series connector, B10B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator -connector JST PH side entry -0 -10 -10 -Connector_JST -JST_PH_B10B-PH-SM4-TB_1x10-1MP_P2.00mm_Vertical -JST PH series connector, B10B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator -connector JST PH side entry -0 -12 -11 -Connector_JST -JST_PH_B11B-PH-K_1x11_P2.00mm_Vertical -JST PH series connector, B11B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator -connector JST PH side entry -0 -11 -11 -Connector_JST -JST_PH_B11B-PH-SM4-TB_1x11-1MP_P2.00mm_Vertical -JST PH series connector, B11B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator -connector JST PH side entry -0 -13 -12 -Connector_JST -JST_PH_B12B-PH-K_1x12_P2.00mm_Vertical -JST PH series connector, B12B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator -connector JST PH side entry -0 -12 -12 -Connector_JST -JST_PH_B12B-PH-SM4-TB_1x12-1MP_P2.00mm_Vertical -JST PH series connector, B12B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator -connector JST PH side entry -0 -14 -13 -Connector_JST -JST_PH_B13B-PH-K_1x13_P2.00mm_Vertical -JST PH series connector, B13B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator -connector JST PH side entry -0 -13 -13 -Connector_JST -JST_PH_B13B-PH-SM4-TB_1x13-1MP_P2.00mm_Vertical -JST PH series connector, B13B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator -connector JST PH side entry -0 -15 -14 -Connector_JST -JST_PH_B14B-PH-K_1x14_P2.00mm_Vertical -JST PH series connector, B14B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator -connector JST PH side entry -0 -14 -14 -Connector_JST -JST_PH_B14B-PH-SM4-TB_1x14-1MP_P2.00mm_Vertical -JST PH series connector, B14B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator -connector JST PH side entry -0 -16 -15 -Connector_JST -JST_PH_B15B-PH-K_1x15_P2.00mm_Vertical -JST PH series connector, B15B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator -connector JST PH side entry -0 -15 -15 -Connector_JST -JST_PH_B15B-PH-SM4-TB_1x15-1MP_P2.00mm_Vertical -JST PH series connector, B15B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator -connector JST PH side entry -0 -17 -16 -Connector_JST -JST_PH_B16B-PH-K_1x16_P2.00mm_Vertical -JST PH series connector, B16B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator -connector JST PH side entry -0 -16 -16 -Connector_JST -JST_PH_B16B-PH-SM4-TB_1x16-1MP_P2.00mm_Vertical -JST PH series connector, B16B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator -connector JST PH side entry -0 -18 -17 -Connector_JST -JST_PH_S2B-PH-K_1x02_P2.00mm_Horizontal -JST PH series connector, S2B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator -connector JST PH top entry -0 -2 -2 -Connector_JST -JST_PH_S2B-PH-SM4-TB_1x02-1MP_P2.00mm_Horizontal -JST PH series connector, S2B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator -connector JST PH top entry -0 -4 -3 -Connector_JST -JST_PH_S3B-PH-K_1x03_P2.00mm_Horizontal -JST PH series connector, S3B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator -connector JST PH top entry -0 -3 -3 -Connector_JST -JST_PH_S3B-PH-SM4-TB_1x03-1MP_P2.00mm_Horizontal -JST PH series connector, S3B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator -connector JST PH top entry -0 -5 -4 -Connector_JST -JST_PH_S4B-PH-K_1x04_P2.00mm_Horizontal -JST PH series connector, S4B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator -connector JST PH top entry -0 -4 -4 -Connector_JST -JST_PH_S4B-PH-SM4-TB_1x04-1MP_P2.00mm_Horizontal -JST PH series connector, S4B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator -connector JST PH top entry -0 -6 -5 -Connector_JST -JST_PH_S5B-PH-K_1x05_P2.00mm_Horizontal -JST PH series connector, S5B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator -connector JST PH top entry -0 -5 -5 -Connector_JST -JST_PH_S5B-PH-SM4-TB_1x05-1MP_P2.00mm_Horizontal -JST PH series connector, S5B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator -connector JST PH top entry -0 -7 -6 -Connector_JST -JST_PH_S6B-PH-K_1x06_P2.00mm_Horizontal -JST PH series connector, S6B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator -connector JST PH top entry -0 -6 -6 -Connector_JST -JST_PH_S6B-PH-SM4-TB_1x06-1MP_P2.00mm_Horizontal -JST PH series connector, S6B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator -connector JST PH top entry -0 -8 -7 -Connector_JST -JST_PH_S7B-PH-K_1x07_P2.00mm_Horizontal -JST PH series connector, S7B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator -connector JST PH top entry -0 -7 -7 -Connector_JST -JST_PH_S7B-PH-SM4-TB_1x07-1MP_P2.00mm_Horizontal -JST PH series connector, S7B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator -connector JST PH top entry -0 -9 -8 -Connector_JST -JST_PH_S8B-PH-K_1x08_P2.00mm_Horizontal -JST PH series connector, S8B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator -connector JST PH top entry -0 -8 -8 -Connector_JST -JST_PH_S8B-PH-SM4-TB_1x08-1MP_P2.00mm_Horizontal -JST PH series connector, S8B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator -connector JST PH top entry -0 -10 -9 -Connector_JST -JST_PH_S9B-PH-K_1x09_P2.00mm_Horizontal -JST PH series connector, S9B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator -connector JST PH top entry -0 -9 -9 -Connector_JST -JST_PH_S9B-PH-SM4-TB_1x09-1MP_P2.00mm_Horizontal -JST PH series connector, S9B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator -connector JST PH top entry -0 -11 -10 -Connector_JST -JST_PH_S10B-PH-K_1x10_P2.00mm_Horizontal -JST PH series connector, S10B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator -connector JST PH top entry -0 -10 -10 -Connector_JST -JST_PH_S10B-PH-SM4-TB_1x10-1MP_P2.00mm_Horizontal -JST PH series connector, S10B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator -connector JST PH top entry -0 -12 -11 -Connector_JST -JST_PH_S11B-PH-K_1x11_P2.00mm_Horizontal -JST PH series connector, S11B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator -connector JST PH top entry -0 -11 -11 -Connector_JST -JST_PH_S11B-PH-SM4-TB_1x11-1MP_P2.00mm_Horizontal -JST PH series connector, S11B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator -connector JST PH top entry -0 -13 -12 -Connector_JST -JST_PH_S12B-PH-K_1x12_P2.00mm_Horizontal -JST PH series connector, S12B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator -connector JST PH top entry -0 -12 -12 -Connector_JST -JST_PH_S12B-PH-SM4-TB_1x12-1MP_P2.00mm_Horizontal -JST PH series connector, S12B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator -connector JST PH top entry -0 -14 -13 -Connector_JST -JST_PH_S13B-PH-K_1x13_P2.00mm_Horizontal -JST PH series connector, S13B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator -connector JST PH top entry -0 -13 -13 -Connector_JST -JST_PH_S13B-PH-SM4-TB_1x13-1MP_P2.00mm_Horizontal -JST PH series connector, S13B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator -connector JST PH top entry -0 -15 -14 -Connector_JST -JST_PH_S14B-PH-K_1x14_P2.00mm_Horizontal -JST PH series connector, S14B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator -connector JST PH top entry -0 -14 -14 -Connector_JST -JST_PH_S14B-PH-SM4-TB_1x14-1MP_P2.00mm_Horizontal -JST PH series connector, S14B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator -connector JST PH top entry -0 -16 -15 -Connector_JST -JST_PH_S15B-PH-K_1x15_P2.00mm_Horizontal -JST PH series connector, S15B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator -connector JST PH top entry -0 -15 -15 -Connector_JST -JST_PH_S15B-PH-SM4-TB_1x15-1MP_P2.00mm_Horizontal -JST PH series connector, S15B-PH-SM4-TB (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator -connector JST PH top entry -0 -17 -16 -Connector_JST -JST_PH_S16B-PH-K_1x16_P2.00mm_Horizontal -JST PH series connector, S16B-PH-K (http://www.jst-mfg.com/product/pdf/eng/ePH.pdf), generated with kicad-footprint-generator -connector JST PH top entry -0 -16 -16 -Connector_JST -JST_PUD_B08B-PUDSS_2x04_P2.00mm_Vertical -JST PUD series connector, B08B-PUDSS (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator -connector JST PUD side entry -0 -8 -8 -Connector_JST -JST_PUD_B10B-PUDSS_2x05_P2.00mm_Vertical -JST PUD series connector, B10B-PUDSS (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator -connector JST PUD side entry -0 -10 -10 -Connector_JST -JST_PUD_B12B-PUDSS_2x06_P2.00mm_Vertical -JST PUD series connector, B12B-PUDSS (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator -connector JST PUD side entry -0 -12 -12 -Connector_JST -JST_PUD_B14B-PUDSS_2x07_P2.00mm_Vertical -JST PUD series connector, B14B-PUDSS (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator -connector JST PUD side entry -0 -14 -14 -Connector_JST -JST_PUD_B16B-PUDSS_2x08_P2.00mm_Vertical -JST PUD series connector, B16B-PUDSS (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator -connector JST PUD side entry -0 -16 -16 -Connector_JST -JST_PUD_B18B-PUDSS_2x09_P2.00mm_Vertical -JST PUD series connector, B18B-PUDSS (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator -connector JST PUD side entry -0 -18 -18 -Connector_JST -JST_PUD_B20B-PUDSS_2x10_P2.00mm_Vertical -JST PUD series connector, B20B-PUDSS (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator -connector JST PUD side entry -0 -20 -20 -Connector_JST -JST_PUD_B22B-PUDSS_2x11_P2.00mm_Vertical -JST PUD series connector, B22B-PUDSS (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator -connector JST PUD side entry -0 -22 -22 -Connector_JST -JST_PUD_B24B-PUDSS_2x12_P2.00mm_Vertical -JST PUD series connector, B24B-PUDSS (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator -connector JST PUD side entry -0 -24 -24 -Connector_JST -JST_PUD_B26B-PUDSS_2x13_P2.00mm_Vertical -JST PUD series connector, B26B-PUDSS (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator -connector JST PUD side entry -0 -26 -26 -Connector_JST -JST_PUD_B28B-PUDSS_2x14_P2.00mm_Vertical -JST PUD series connector, B28B-PUDSS (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator -connector JST PUD side entry -0 -28 -28 -Connector_JST -JST_PUD_B30B-PUDSS_2x15_P2.00mm_Vertical -JST PUD series connector, B30B-PUDSS (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator -connector JST PUD side entry -0 -30 -30 -Connector_JST -JST_PUD_B32B-PUDSS_2x16_P2.00mm_Vertical -JST PUD series connector, B32B-PUDSS (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator -connector JST PUD side entry -0 -32 -32 -Connector_JST -JST_PUD_B34B-PUDSS_2x17_P2.00mm_Vertical -JST PUD series connector, B34B-PUDSS (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator -connector JST PUD side entry -0 -34 -34 -Connector_JST -JST_PUD_B36B-PUDSS_2x18_P2.00mm_Vertical -JST PUD series connector, B36B-PUDSS (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator -connector JST PUD side entry -0 -36 -36 -Connector_JST -JST_PUD_B38B-PUDSS_2x19_P2.00mm_Vertical -JST PUD series connector, B38B-PUDSS (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator -connector JST PUD side entry -0 -38 -38 -Connector_JST -JST_PUD_B40B-PUDSS_2x20_P2.00mm_Vertical -JST PUD series connector, B40B-PUDSS (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator -connector JST PUD side entry -0 -40 -40 -Connector_JST -JST_PUD_S08B-PUDSS-1_2x04_P2.00mm_Horizontal -JST PUD series connector, S08B-PUDSS-1 (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator -connector JST PUD top entry -0 -8 -8 -Connector_JST -JST_PUD_S10B-PUDSS-1_2x05_P2.00mm_Horizontal -JST PUD series connector, S10B-PUDSS-1 (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator -connector JST PUD top entry -0 -10 -10 -Connector_JST -JST_PUD_S12B-PUDSS-1_2x06_P2.00mm_Horizontal -JST PUD series connector, S12B-PUDSS-1 (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator -connector JST PUD top entry -0 -12 -12 -Connector_JST -JST_PUD_S14B-PUDSS-1_2x07_P2.00mm_Horizontal -JST PUD series connector, S14B-PUDSS-1 (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator -connector JST PUD top entry -0 -14 -14 -Connector_JST -JST_PUD_S16B-PUDSS-1_2x08_P2.00mm_Horizontal -JST PUD series connector, S16B-PUDSS-1 (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator -connector JST PUD top entry -0 -16 -16 -Connector_JST -JST_PUD_S18B-PUDSS-1_2x09_P2.00mm_Horizontal -JST PUD series connector, S18B-PUDSS-1 (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator -connector JST PUD top entry -0 -18 -18 -Connector_JST -JST_PUD_S20B-PUDSS-1_2x10_P2.00mm_Horizontal -JST PUD series connector, S20B-PUDSS-1 (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator -connector JST PUD top entry -0 -20 -20 -Connector_JST -JST_PUD_S22B-PUDSS-1_2x11_P2.00mm_Horizontal -JST PUD series connector, S22B-PUDSS-1 (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator -connector JST PUD top entry -0 -22 -22 -Connector_JST -JST_PUD_S24B-PUDSS-1_2x12_P2.00mm_Horizontal -JST PUD series connector, S24B-PUDSS-1 (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator -connector JST PUD top entry -0 -24 -24 -Connector_JST -JST_PUD_S26B-PUDSS-1_2x13_P2.00mm_Horizontal -JST PUD series connector, S26B-PUDSS-1 (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator -connector JST PUD top entry -0 -26 -26 -Connector_JST -JST_PUD_S28B-PUDSS-1_2x14_P2.00mm_Horizontal -JST PUD series connector, S28B-PUDSS-1 (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator -connector JST PUD top entry -0 -28 -28 -Connector_JST -JST_PUD_S30B-PUDSS-1_2x15_P2.00mm_Horizontal -JST PUD series connector, S30B-PUDSS-1 (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator -connector JST PUD top entry -0 -30 -30 -Connector_JST -JST_PUD_S32B-PUDSS-1_2x16_P2.00mm_Horizontal -JST PUD series connector, S32B-PUDSS-1 (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator -connector JST PUD top entry -0 -32 -32 -Connector_JST -JST_PUD_S34B-PUDSS-1_2x17_P2.00mm_Horizontal -JST PUD series connector, S34B-PUDSS-1 (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator -connector JST PUD top entry -0 -34 -34 -Connector_JST -JST_PUD_S36B-PUDSS-1_2x18_P2.00mm_Horizontal -JST PUD series connector, S36B-PUDSS-1 (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator -connector JST PUD top entry -0 -36 -36 -Connector_JST -JST_PUD_S38B-PUDSS-1_2x19_P2.00mm_Horizontal -JST PUD series connector, S38B-PUDSS-1 (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator -connector JST PUD top entry -0 -38 -38 -Connector_JST -JST_PUD_S40B-PUDSS-1_2x20_P2.00mm_Horizontal -JST PUD series connector, S40B-PUDSS-1 (http://www.jst-mfg.com/product/pdf/eng/ePUD.pdf), generated with kicad-footprint-generator -connector JST PUD top entry -0 -40 -40 -Connector_JST -JST_SFH_SM02B-SFHRS-TF_1x02-1MP_P4.20mm_Horizontal -JST SFH series connector, SM02B-SFHRS-TF (http://www.jst-mfg.com/product/pdf/eng/eSFH.pdf), generated with kicad-footprint-generator -connector JST SFH horizontal -0 -4 -3 -Connector_JST -JST_SHL_SM02B-SHLS-TF_1x02-1MP_P1.00mm_Horizontal -JST SHL series connector, SM02B-SHLS-TF (http://www.jst-mfg.com/product/pdf/eng/eSHL.pdf), generated with kicad-footprint-generator -connector JST SHL top entry -0 -4 -3 -Connector_JST -JST_SHL_SM05B-SHLS-TF_1x05-1MP_P1.00mm_Horizontal -JST SHL series connector, SM05B-SHLS-TF (http://www.jst-mfg.com/product/pdf/eng/eSHL.pdf), generated with kicad-footprint-generator -connector JST SHL top entry -0 -7 -6 -Connector_JST -JST_SHL_SM06B-SHLS-TF_1x06-1MP_P1.00mm_Horizontal -JST SHL series connector, SM06B-SHLS-TF (http://www.jst-mfg.com/product/pdf/eng/eSHL.pdf), generated with kicad-footprint-generator -connector JST SHL top entry -0 -8 -7 -Connector_JST -JST_SHL_SM07B-SHLS-TF_1x07-1MP_P1.00mm_Horizontal -JST SHL series connector, SM07B-SHLS-TF (http://www.jst-mfg.com/product/pdf/eng/eSHL.pdf), generated with kicad-footprint-generator -connector JST SHL top entry -0 -9 -8 -Connector_JST -JST_SHL_SM08B-SHLS-TF_1x08-1MP_P1.00mm_Horizontal -JST SHL series connector, SM08B-SHLS-TF (http://www.jst-mfg.com/product/pdf/eng/eSHL.pdf), generated with kicad-footprint-generator -connector JST SHL top entry -0 -10 -9 -Connector_JST -JST_SHL_SM10B-SHLS-TF_1x10-1MP_P1.00mm_Horizontal -JST SHL series connector, SM10B-SHLS-TF (http://www.jst-mfg.com/product/pdf/eng/eSHL.pdf), generated with kicad-footprint-generator -connector JST SHL top entry -0 -12 -11 -Connector_JST -JST_SHL_SM11B-SHLS-TF_1x11-1MP_P1.00mm_Horizontal -JST SHL series connector, SM11B-SHLS-TF (http://www.jst-mfg.com/product/pdf/eng/eSHL.pdf), generated with kicad-footprint-generator -connector JST SHL top entry -0 -13 -12 -Connector_JST -JST_SHL_SM12B-SHLS-TF_1x12-1MP_P1.00mm_Horizontal -JST SHL series connector, SM12B-SHLS-TF (http://www.jst-mfg.com/product/pdf/eng/eSHL.pdf), generated with kicad-footprint-generator -connector JST SHL top entry -0 -14 -13 -Connector_JST -JST_SHL_SM14B-SHLS-TF_1x14-1MP_P1.00mm_Horizontal -JST SHL series connector, SM14B-SHLS-TF (http://www.jst-mfg.com/product/pdf/eng/eSHL.pdf), generated with kicad-footprint-generator -connector JST SHL top entry -0 -16 -15 -Connector_JST -JST_SHL_SM16B-SHLS-TF_1x16-1MP_P1.00mm_Horizontal -JST SHL series connector, SM16B-SHLS-TF (http://www.jst-mfg.com/product/pdf/eng/eSHL.pdf), generated with kicad-footprint-generator -connector JST SHL top entry -0 -18 -17 -Connector_JST -JST_SHL_SM20B-SHLS-TF_1x20-1MP_P1.00mm_Horizontal -JST SHL series connector, SM20B-SHLS-TF (http://www.jst-mfg.com/product/pdf/eng/eSHL.pdf), generated with kicad-footprint-generator -connector JST SHL top entry -0 -22 -21 -Connector_JST -JST_SHL_SM22B-SHLS-TF_1x22-1MP_P1.00mm_Horizontal -JST SHL series connector, SM22B-SHLS-TF (http://www.jst-mfg.com/product/pdf/eng/eSHL.pdf), generated with kicad-footprint-generator -connector JST SHL top entry -0 -24 -23 -Connector_JST -JST_SHL_SM26B-SHLS-TF_1x26-1MP_P1.00mm_Horizontal -JST SHL series connector, SM26B-SHLS-TF (http://www.jst-mfg.com/product/pdf/eng/eSHL.pdf), generated with kicad-footprint-generator -connector JST SHL top entry -0 -28 -27 -Connector_JST -JST_SHL_SM30B-SHLS-TF_1x30-1MP_P1.00mm_Horizontal -JST SHL series connector, SM30B-SHLS-TF (http://www.jst-mfg.com/product/pdf/eng/eSHL.pdf), generated with kicad-footprint-generator -connector JST SHL top entry -0 -32 -31 -Connector_JST -JST_SH_BM02B-SRSS-TB_1x02-1MP_P1.00mm_Vertical -JST SH series connector, BM02B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator -connector JST SH side entry -0 -4 -3 -Connector_JST -JST_SH_BM03B-SRSS-TB_1x03-1MP_P1.00mm_Vertical -JST SH series connector, BM03B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator -connector JST SH side entry -0 -5 -4 -Connector_JST -JST_SH_BM04B-SRSS-TB_1x04-1MP_P1.00mm_Vertical -JST SH series connector, BM04B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator -connector JST SH side entry -0 -6 -5 -Connector_JST -JST_SH_BM05B-SRSS-TB_1x05-1MP_P1.00mm_Vertical -JST SH series connector, BM05B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator -connector JST SH side entry -0 -7 -6 -Connector_JST -JST_SH_BM06B-SRSS-TB_1x06-1MP_P1.00mm_Vertical -JST SH series connector, BM06B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator -connector JST SH side entry -0 -8 -7 -Connector_JST -JST_SH_BM07B-SRSS-TB_1x07-1MP_P1.00mm_Vertical -JST SH series connector, BM07B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator -connector JST SH side entry -0 -9 -8 -Connector_JST -JST_SH_BM08B-SRSS-TB_1x08-1MP_P1.00mm_Vertical -JST SH series connector, BM08B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator -connector JST SH side entry -0 -10 -9 -Connector_JST -JST_SH_BM09B-SRSS-TB_1x09-1MP_P1.00mm_Vertical -JST SH series connector, BM09B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator -connector JST SH side entry -0 -11 -10 -Connector_JST -JST_SH_BM10B-SRSS-TB_1x10-1MP_P1.00mm_Vertical -JST SH series connector, BM10B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator -connector JST SH side entry -0 -12 -11 -Connector_JST -JST_SH_BM11B-SRSS-TB_1x11-1MP_P1.00mm_Vertical -JST SH series connector, BM11B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator -connector JST SH side entry -0 -13 -12 -Connector_JST -JST_SH_BM12B-SRSS-TB_1x12-1MP_P1.00mm_Vertical -JST SH series connector, BM12B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator -connector JST SH side entry -0 -14 -13 -Connector_JST -JST_SH_BM13B-SRSS-TB_1x13-1MP_P1.00mm_Vertical -JST SH series connector, BM13B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator -connector JST SH side entry -0 -15 -14 -Connector_JST -JST_SH_BM14B-SRSS-TB_1x14-1MP_P1.00mm_Vertical -JST SH series connector, BM14B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator -connector JST SH side entry -0 -16 -15 -Connector_JST -JST_SH_BM15B-SRSS-TB_1x15-1MP_P1.00mm_Vertical -JST SH series connector, BM15B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator -connector JST SH side entry -0 -17 -16 -Connector_JST -JST_SH_SM02B-SRSS-TB_1x02-1MP_P1.00mm_Horizontal -JST SH series connector, SM02B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator -connector JST SH top entry -0 -4 -3 -Connector_JST -JST_SH_SM03B-SRSS-TB_1x03-1MP_P1.00mm_Horizontal -JST SH series connector, SM03B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator -connector JST SH top entry -0 -5 -4 -Connector_JST -JST_SH_SM04B-SRSS-TB_1x04-1MP_P1.00mm_Horizontal -JST SH series connector, SM04B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator -connector JST SH top entry -0 -6 -5 -Connector_JST -JST_SH_SM05B-SRSS-TB_1x05-1MP_P1.00mm_Horizontal -JST SH series connector, SM05B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator -connector JST SH top entry -0 -7 -6 -Connector_JST -JST_SH_SM06B-SRSS-TB_1x06-1MP_P1.00mm_Horizontal -JST SH series connector, SM06B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator -connector JST SH top entry -0 -8 -7 -Connector_JST -JST_SH_SM07B-SRSS-TB_1x07-1MP_P1.00mm_Horizontal -JST SH series connector, SM07B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator -connector JST SH top entry -0 -9 -8 -Connector_JST -JST_SH_SM08B-SRSS-TB_1x08-1MP_P1.00mm_Horizontal -JST SH series connector, SM08B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator -connector JST SH top entry -0 -10 -9 -Connector_JST -JST_SH_SM09B-SRSS-TB_1x09-1MP_P1.00mm_Horizontal -JST SH series connector, SM09B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator -connector JST SH top entry -0 -11 -10 -Connector_JST -JST_SH_SM10B-SRSS-TB_1x10-1MP_P1.00mm_Horizontal -JST SH series connector, SM10B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator -connector JST SH top entry -0 -12 -11 -Connector_JST -JST_SH_SM11B-SRSS-TB_1x11-1MP_P1.00mm_Horizontal -JST SH series connector, SM11B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator -connector JST SH top entry -0 -13 -12 -Connector_JST -JST_SH_SM12B-SRSS-TB_1x12-1MP_P1.00mm_Horizontal -JST SH series connector, SM12B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator -connector JST SH top entry -0 -14 -13 -Connector_JST -JST_SH_SM13B-SRSS-TB_1x13-1MP_P1.00mm_Horizontal -JST SH series connector, SM13B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator -connector JST SH top entry -0 -15 -14 -Connector_JST -JST_SH_SM14B-SRSS-TB_1x14-1MP_P1.00mm_Horizontal -JST SH series connector, SM14B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator -connector JST SH top entry -0 -16 -15 -Connector_JST -JST_SH_SM15B-SRSS-TB_1x15-1MP_P1.00mm_Horizontal -JST SH series connector, SM15B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator -connector JST SH top entry -0 -17 -16 -Connector_JST -JST_SH_SM20B-SRSS-TB_1x20-1MP_P1.00mm_Horizontal -JST SH series connector, SM20B-SRSS-TB (http://www.jst-mfg.com/product/pdf/eng/eSH.pdf), generated with kicad-footprint-generator -connector JST SH top entry -0 -22 -21 -Connector_JST -JST_SUR_BM02B-SURS-TF_1x02-1MP_P0.80mm_Vertical -JST SUR series connector, BM02B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator -connector JST SUR side entry -0 -4 -3 -Connector_JST -JST_SUR_BM03B-SURS-TF_1x03-1MP_P0.80mm_Vertical -JST SUR series connector, BM03B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator -connector JST SUR side entry -0 -5 -4 -Connector_JST -JST_SUR_BM04B-SURS-TF_1x04-1MP_P0.80mm_Vertical -JST SUR series connector, BM04B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator -connector JST SUR side entry -0 -6 -5 -Connector_JST -JST_SUR_BM05B-SURS-TF_1x05-1MP_P0.80mm_Vertical -JST SUR series connector, BM05B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator -connector JST SUR side entry -0 -7 -6 -Connector_JST -JST_SUR_BM06B-SURS-TF_1x06-1MP_P0.80mm_Vertical -JST SUR series connector, BM06B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator -connector JST SUR side entry -0 -8 -7 -Connector_JST -JST_SUR_BM08B-SURS-TF_1x08-1MP_P0.80mm_Vertical -JST SUR series connector, BM08B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator -connector JST SUR side entry -0 -10 -9 -Connector_JST -JST_SUR_BM10B-SURS-TF_1x10-1MP_P0.80mm_Vertical -JST SUR series connector, BM10B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator -connector JST SUR side entry -0 -12 -11 -Connector_JST -JST_SUR_BM12B-SURS-TF_1x12-1MP_P0.80mm_Vertical -JST SUR series connector, BM12B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator -connector JST SUR side entry -0 -14 -13 -Connector_JST -JST_SUR_BM14B-SURS-TF_1x14-1MP_P0.80mm_Vertical -JST SUR series connector, BM14B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator -connector JST SUR side entry -0 -16 -15 -Connector_JST -JST_SUR_BM15B-SURS-TF_1x15-1MP_P0.80mm_Vertical -JST SUR series connector, BM15B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator -connector JST SUR side entry -0 -17 -16 -Connector_JST -JST_SUR_BM16B-SURS-TF_1x16-1MP_P0.80mm_Vertical -JST SUR series connector, BM16B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator -connector JST SUR side entry -0 -18 -17 -Connector_JST -JST_SUR_BM17B-SURS-TF_1x17-1MP_P0.80mm_Vertical -JST SUR series connector, BM17B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator -connector JST SUR side entry -0 -19 -18 -Connector_JST -JST_SUR_BM20B-SURS-TF_1x20-1MP_P0.80mm_Vertical -JST SUR series connector, BM20B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator -connector JST SUR side entry -0 -22 -21 -Connector_JST -JST_SUR_SM02B-SURS-TF_1x02-1MP_P0.80mm_Horizontal -JST SUR series connector, SM02B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator -connector JST SUR top entry -0 -4 -3 -Connector_JST -JST_SUR_SM03B-SURS-TF_1x03-1MP_P0.80mm_Horizontal -JST SUR series connector, SM03B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator -connector JST SUR top entry -0 -5 -4 -Connector_JST -JST_SUR_SM04B-SURS-TF_1x04-1MP_P0.80mm_Horizontal -JST SUR series connector, SM04B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator -connector JST SUR top entry -0 -6 -5 -Connector_JST -JST_SUR_SM05B-SURS-TF_1x05-1MP_P0.80mm_Horizontal -JST SUR series connector, SM05B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator -connector JST SUR top entry -0 -7 -6 -Connector_JST -JST_SUR_SM06B-SURS-TF_1x06-1MP_P0.80mm_Horizontal -JST SUR series connector, SM06B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator -connector JST SUR top entry -0 -8 -7 -Connector_JST -JST_SUR_SM08B-SURS-TF_1x08-1MP_P0.80mm_Horizontal -JST SUR series connector, SM08B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator -connector JST SUR top entry -0 -10 -9 -Connector_JST -JST_SUR_SM10B-SURS-TF_1x10-1MP_P0.80mm_Horizontal -JST SUR series connector, SM10B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator -connector JST SUR top entry -0 -12 -11 -Connector_JST -JST_SUR_SM12B-SURS-TF_1x12-1MP_P0.80mm_Horizontal -JST SUR series connector, SM12B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator -connector JST SUR top entry -0 -14 -13 -Connector_JST -JST_SUR_SM14B-SURS-TF_1x14-1MP_P0.80mm_Horizontal -JST SUR series connector, SM14B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator -connector JST SUR top entry -0 -16 -15 -Connector_JST -JST_SUR_SM15B-SURS-TF_1x15-1MP_P0.80mm_Horizontal -JST SUR series connector, SM15B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator -connector JST SUR top entry -0 -17 -16 -Connector_JST -JST_SUR_SM16B-SURS-TF_1x16-1MP_P0.80mm_Horizontal -JST SUR series connector, SM16B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator -connector JST SUR top entry -0 -18 -17 -Connector_JST -JST_SUR_SM17B-SURS-TF_1x17-1MP_P0.80mm_Horizontal -JST SUR series connector, SM17B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator -connector JST SUR top entry -0 -19 -18 -Connector_JST -JST_SUR_SM20B-SURS-TF_1x20-1MP_P0.80mm_Horizontal -JST SUR series connector, SM20B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator -connector JST SUR top entry -0 -22 -21 -Connector_JST -JST_SUR_SM22B-SURS-TF_1x22-1MP_P0.80mm_Horizontal -JST SUR series connector, SM22B-SURS-TF (http://www.jst-mfg.com/product/pdf/eng/eSUR.pdf), generated with kicad-footprint-generator -connector JST SUR top entry -0 -24 -23 -Connector_JST -JST_VH_B2P-VH-B_1x02_P3.96mm_Vertical -JST VH PBT series connector, B2P-VH-B (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator -connector JST VH vertical -0 -2 -2 -Connector_JST -JST_VH_B2P-VH-FB-B_1x02_P3.96mm_Vertical -JST VH series connector, B2P-VH-FB-B, shrouded (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator -connector JST VH side entry -0 -2 -2 -Connector_JST -JST_VH_B2P-VH_1x02_P3.96mm_Vertical -JST VH series connector, B2P-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator -connector JST VH vertical -0 -2 -2 -Connector_JST -JST_VH_B2P3-VH_1x02_P7.92mm_Vertical -JST VH series connector, B2P3-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator -connector JST VH vertical -0 -2 -2 -Connector_JST -JST_VH_B2PS-VH_1x02_P3.96mm_Horizontal -JST VH series connector, B2PS-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator -connector JST VH top entry -0 -2 -2 -Connector_JST -JST_VH_B3P-VH-B_1x03_P3.96mm_Vertical -JST VH PBT series connector, B3P-VH-B (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator -connector JST VH vertical -0 -3 -3 -Connector_JST -JST_VH_B3P-VH-FB-B_1x03_P3.96mm_Vertical -JST VH series connector, B3P-VH-FB-B, shrouded (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator -connector JST VH side entry -0 -3 -3 -Connector_JST -JST_VH_B3P-VH_1x03_P3.96mm_Vertical -JST VH series connector, B3P-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator -connector JST VH vertical -0 -3 -3 -Connector_JST -JST_VH_B3PS-VH_1x03_P3.96mm_Horizontal -JST VH series connector, B3PS-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator -connector JST VH top entry -0 -3 -3 -Connector_JST -JST_VH_B4P-VH-B_1x04_P3.96mm_Vertical -JST VH PBT series connector, B4P-VH-B (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator -connector JST VH vertical -0 -4 -4 -Connector_JST -JST_VH_B4P-VH-FB-B_1x04_P3.96mm_Vertical -JST VH series connector, B4P-VH-FB-B, shrouded (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator -connector JST VH side entry -0 -4 -4 -Connector_JST -JST_VH_B4P-VH_1x04_P3.96mm_Vertical -JST VH series connector, B4P-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator -connector JST VH vertical -0 -4 -4 -Connector_JST -JST_VH_B4PS-VH_1x04_P3.96mm_Horizontal -JST VH series connector, B4PS-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator -connector JST VH top entry -0 -4 -4 -Connector_JST -JST_VH_B5P-VH-B_1x05_P3.96mm_Vertical -JST VH PBT series connector, B5P-VH-B (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator -connector JST VH vertical -0 -5 -5 -Connector_JST -JST_VH_B5P-VH-FB-B_1x05_P3.96mm_Vertical -JST VH series connector, B5P-VH-FB-B, shrouded (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator -connector JST VH side entry -0 -5 -5 -Connector_JST -JST_VH_B5P-VH_1x05_P3.96mm_Vertical -JST VH series connector, B5P-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator -connector JST VH vertical -0 -5 -5 -Connector_JST -JST_VH_B5PS-VH_1x05_P3.96mm_Horizontal -JST VH series connector, B5PS-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator -connector JST VH top entry -0 -5 -5 -Connector_JST -JST_VH_B6P-VH-B_1x06_P3.96mm_Vertical -JST VH PBT series connector, B6P-VH-B (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator -connector JST VH vertical -0 -6 -6 -Connector_JST -JST_VH_B6P-VH-FB-B_1x06_P3.96mm_Vertical -JST VH series connector, B6P-VH-FB-B, shrouded (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator -connector JST VH side entry -0 -6 -6 -Connector_JST -JST_VH_B6P-VH_1x06_P3.96mm_Vertical -JST VH series connector, B6P-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator -connector JST VH vertical -0 -6 -6 -Connector_JST -JST_VH_B6PS-VH_1x06_P3.96mm_Horizontal -JST VH series connector, B6PS-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator -connector JST VH top entry -0 -6 -6 -Connector_JST -JST_VH_B7P-VH-B_1x07_P3.96mm_Vertical -JST VH PBT series connector, B7P-VH-B (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator -connector JST VH vertical -0 -7 -7 -Connector_JST -JST_VH_B7P-VH-FB-B_1x07_P3.96mm_Vertical -JST VH series connector, B7P-VH-FB-B, shrouded (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator -connector JST VH side entry -0 -7 -7 -Connector_JST -JST_VH_B7P-VH_1x07_P3.96mm_Vertical -JST VH series connector, B7P-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator -connector JST VH vertical -0 -7 -7 -Connector_JST -JST_VH_B7PS-VH_1x07_P3.96mm_Horizontal -JST VH series connector, B7PS-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator -connector JST VH top entry -0 -7 -7 -Connector_JST -JST_VH_B8P-VH-B_1x08_P3.96mm_Vertical -JST VH PBT series connector, B8P-VH-B (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator -connector JST VH vertical -0 -8 -8 -Connector_JST -JST_VH_B8P-VH-FB-B_1x08_P3.96mm_Vertical -JST VH series connector, B8P-VH-FB-B, shrouded (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator -connector JST VH side entry -0 -8 -8 -Connector_JST -JST_VH_B8P-VH_1x08_P3.96mm_Vertical -JST VH series connector, B8P-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator -connector JST VH vertical -0 -8 -8 -Connector_JST -JST_VH_B8PS-VH_1x08_P3.96mm_Horizontal -JST VH series connector, B8PS-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator -connector JST VH top entry -0 -8 -8 -Connector_JST -JST_VH_B9P-VH-B_1x09_P3.96mm_Vertical -JST VH PBT series connector, B9P-VH-B (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator -connector JST VH vertical -0 -9 -9 -Connector_JST -JST_VH_B9P-VH-FB-B_1x09_P3.96mm_Vertical -JST VH series connector, B9P-VH-FB-B, shrouded (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator -connector JST VH side entry -0 -9 -9 -Connector_JST -JST_VH_B9P-VH_1x09_P3.96mm_Vertical -JST VH series connector, B9P-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator -connector JST VH vertical -0 -9 -9 -Connector_JST -JST_VH_B9PS-VH_1x09_P3.96mm_Horizontal -JST VH series connector, B9PS-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator -connector JST VH top entry -0 -9 -9 -Connector_JST -JST_VH_B10P-VH-B_1x10_P3.96mm_Vertical -JST VH PBT series connector, B10P-VH-B (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator -connector JST VH vertical -0 -10 -10 -Connector_JST -JST_VH_B10P-VH-FB-B_1x10_P3.96mm_Vertical -JST VH series connector, B10P-VH-FB-B, shrouded (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator -connector JST VH side entry -0 -10 -10 -Connector_JST -JST_VH_B10P-VH_1x10_P3.96mm_Vertical -JST VH series connector, B10P-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator -connector JST VH vertical -0 -10 -10 -Connector_JST -JST_VH_B10PS-VH_1x10_P3.96mm_Horizontal -JST VH series connector, B10PS-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator -connector JST VH top entry -0 -10 -10 -Connector_JST -JST_VH_B11P-VH-B_1x11_P3.96mm_Vertical -JST VH PBT series connector, B11P-VH-B (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator -connector JST VH vertical -0 -11 -11 -Connector_JST -JST_VH_S2P-VH_1x02_P3.96mm_Horizontal -JST VH series connector, S2P-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator -connector JST VH top entry -0 -2 -2 -Connector_JST -JST_VH_S3P-VH_1x03_P3.96mm_Horizontal -JST VH series connector, S3P-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator -connector JST VH top entry -0 -3 -3 -Connector_JST -JST_VH_S4P-VH_1x04_P3.96mm_Horizontal -JST VH series connector, S4P-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator -connector JST VH top entry -0 -4 -4 -Connector_JST -JST_VH_S5P-VH_1x05_P3.96mm_Horizontal -JST VH series connector, S5P-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator -connector JST VH top entry -0 -5 -5 -Connector_JST -JST_VH_S6P-VH_1x06_P3.96mm_Horizontal -JST VH series connector, S6P-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator -connector JST VH top entry -0 -6 -6 -Connector_JST -JST_VH_S7P-VH_1x07_P3.96mm_Horizontal -JST VH series connector, S7P-VH (http://www.jst-mfg.com/product/pdf/eng/eVH.pdf), generated with kicad-footprint-generator -connector JST VH top entry -0 -7 -7 -Connector_JST -JST_XAG_SM05B-XAGKS-BN-TB_1x05-1MP_P2.50mm_Horizontal -JST XAG series connector, SM05B-XAGKS-BN-TB (http://www.jst-mfg.com/product/pdf/eng/eXAG.pdf), generated with kicad-footprint-generator -connector JST XAG top entry -0 -7 -6 -Connector_JST -JST_XA_B02B-XASK-1-A_1x02_P2.50mm_Vertical -JST XA series connector, B02B-XASK-1-A (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator -connector JST XA vertical boss -0 -2 -2 -Connector_JST -JST_XA_B02B-XASK-1_1x02_P2.50mm_Vertical -JST XA series connector, B02B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator -connector JST XA vertical -0 -2 -2 -Connector_JST -JST_XA_B03B-XASK-1-A_1x03_P2.50mm_Vertical -JST XA series connector, B03B-XASK-1-A (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator -connector JST XA vertical boss -0 -3 -3 -Connector_JST -JST_XA_B03B-XASK-1_1x03_P2.50mm_Vertical -JST XA series connector, B03B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator -connector JST XA vertical -0 -3 -3 -Connector_JST -JST_XA_B04B-XASK-1-A_1x04_P2.50mm_Vertical -JST XA series connector, B04B-XASK-1-A (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator -connector JST XA vertical boss -0 -4 -4 -Connector_JST -JST_XA_B04B-XASK-1_1x04_P2.50mm_Vertical -JST XA series connector, B04B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator -connector JST XA vertical -0 -4 -4 -Connector_JST -JST_XA_B05B-XASK-1-A_1x05_P2.50mm_Vertical -JST XA series connector, B05B-XASK-1-A (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator -connector JST XA vertical boss -0 -5 -5 -Connector_JST -JST_XA_B05B-XASK-1_1x05_P2.50mm_Vertical -JST XA series connector, B05B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator -connector JST XA vertical -0 -5 -5 -Connector_JST -JST_XA_B06B-XASK-1-A_1x06_P2.50mm_Vertical -JST XA series connector, B06B-XASK-1-A (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator -connector JST XA vertical boss -0 -6 -6 -Connector_JST -JST_XA_B06B-XASK-1_1x06_P2.50mm_Vertical -JST XA series connector, B06B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator -connector JST XA vertical -0 -6 -6 -Connector_JST -JST_XA_B07B-XASK-1-A_1x07_P2.50mm_Vertical -JST XA series connector, B07B-XASK-1-A (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator -connector JST XA vertical boss -0 -7 -7 -Connector_JST -JST_XA_B07B-XASK-1_1x07_P2.50mm_Vertical -JST XA series connector, B07B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator -connector JST XA vertical -0 -7 -7 -Connector_JST -JST_XA_B08B-XASK-1-A_1x08_P2.50mm_Vertical -JST XA series connector, B08B-XASK-1-A (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator -connector JST XA vertical boss -0 -8 -8 -Connector_JST -JST_XA_B08B-XASK-1_1x08_P2.50mm_Vertical -JST XA series connector, B08B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator -connector JST XA vertical -0 -8 -8 -Connector_JST -JST_XA_B09B-XASK-1-A_1x09_P2.50mm_Vertical -JST XA series connector, B09B-XASK-1-A (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator -connector JST XA vertical boss -0 -9 -9 -Connector_JST -JST_XA_B09B-XASK-1_1x09_P2.50mm_Vertical -JST XA series connector, B09B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator -connector JST XA vertical -0 -9 -9 -Connector_JST -JST_XA_B10B-XASK-1-A_1x10_P2.50mm_Vertical -JST XA series connector, B10B-XASK-1-A (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator -connector JST XA vertical boss -0 -10 -10 -Connector_JST -JST_XA_B10B-XASK-1_1x10_P2.50mm_Vertical -JST XA series connector, B10B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator -connector JST XA vertical -0 -10 -10 -Connector_JST -JST_XA_B11B-XASK-1-A_1x11_P2.50mm_Vertical -JST XA series connector, B11B-XASK-1-A (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator -connector JST XA vertical boss -0 -11 -11 -Connector_JST -JST_XA_B11B-XASK-1_1x11_P2.50mm_Vertical -JST XA series connector, B11B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator -connector JST XA vertical -0 -11 -11 -Connector_JST -JST_XA_B12B-XASK-1-A_1x12_P2.50mm_Vertical -JST XA series connector, B12B-XASK-1-A (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator -connector JST XA vertical boss -0 -12 -12 -Connector_JST -JST_XA_B12B-XASK-1_1x12_P2.50mm_Vertical -JST XA series connector, B12B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator -connector JST XA vertical -0 -12 -12 -Connector_JST -JST_XA_B13B-XASK-1-A_1x13_P2.50mm_Vertical -JST XA series connector, B13B-XASK-1-A (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator -connector JST XA vertical boss -0 -13 -13 -Connector_JST -JST_XA_B13B-XASK-1_1x13_P2.50mm_Vertical -JST XA series connector, B13B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator -connector JST XA vertical -0 -13 -13 -Connector_JST -JST_XA_B14B-XASK-1-A_1x14_P2.50mm_Vertical -JST XA series connector, B14B-XASK-1-A (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator -connector JST XA vertical boss -0 -14 -14 -Connector_JST -JST_XA_B14B-XASK-1_1x14_P2.50mm_Vertical -JST XA series connector, B14B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator -connector JST XA vertical -0 -14 -14 -Connector_JST -JST_XA_B15B-XASK-1-A_1x15_P2.50mm_Vertical -JST XA series connector, B15B-XASK-1-A (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator -connector JST XA vertical boss -0 -15 -15 -Connector_JST -JST_XA_B15B-XASK-1_1x15_P2.50mm_Vertical -JST XA series connector, B15B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator -connector JST XA vertical -0 -15 -15 -Connector_JST -JST_XA_B18B-XASK-1_1x18_P2.50mm_Vertical -JST XA series connector, B18B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator -connector JST XA vertical -0 -18 -18 -Connector_JST -JST_XA_B20B-XASK-1-A_1x20_P2.50mm_Vertical -JST XA series connector, B20B-XASK-1-A (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator -connector JST XA vertical boss -0 -20 -20 -Connector_JST -JST_XA_B20B-XASK-1_1x20_P2.50mm_Vertical -JST XA series connector, B20B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator -connector JST XA vertical -0 -20 -20 -Connector_JST -JST_XA_S02B-XASK-1N-BN_1x02_P2.50mm_Horizontal -JST XA series connector, S02B-XASK-1N-BN (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator -connector JST XA horizontal -0 -2 -2 -Connector_JST -JST_XA_S02B-XASK-1_1x02_P2.50mm_Horizontal -JST XA series connector, S02B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator -connector JST XA horizontal hook -0 -2 -2 -Connector_JST -JST_XA_S03B-XASK-1N-BN_1x03_P2.50mm_Horizontal -JST XA series connector, S03B-XASK-1N-BN (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator -connector JST XA horizontal -0 -3 -3 -Connector_JST -JST_XA_S03B-XASK-1_1x03_P2.50mm_Horizontal -JST XA series connector, S03B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator -connector JST XA horizontal hook -0 -3 -3 -Connector_JST -JST_XA_S04B-XASK-1N-BN_1x04_P2.50mm_Horizontal -JST XA series connector, S04B-XASK-1N-BN (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator -connector JST XA horizontal -0 -4 -4 -Connector_JST -JST_XA_S04B-XASK-1_1x04_P2.50mm_Horizontal -JST XA series connector, S04B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator -connector JST XA horizontal hook -0 -4 -4 -Connector_JST -JST_XA_S05B-XASK-1N-BN_1x05_P2.50mm_Horizontal -JST XA series connector, S05B-XASK-1N-BN (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator -connector JST XA horizontal -0 -5 -5 -Connector_JST -JST_XA_S05B-XASK-1_1x05_P2.50mm_Horizontal -JST XA series connector, S05B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator -connector JST XA horizontal hook -0 -5 -5 -Connector_JST -JST_XA_S06B-XASK-1N-BN_1x06_P2.50mm_Horizontal -JST XA series connector, S06B-XASK-1N-BN (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator -connector JST XA horizontal -0 -6 -6 -Connector_JST -JST_XA_S06B-XASK-1_1x06_P2.50mm_Horizontal -JST XA series connector, S06B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator -connector JST XA horizontal hook -0 -6 -6 -Connector_JST -JST_XA_S07B-XASK-1N-BN_1x07_P2.50mm_Horizontal -JST XA series connector, S07B-XASK-1N-BN (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator -connector JST XA horizontal -0 -7 -7 -Connector_JST -JST_XA_S07B-XASK-1_1x07_P2.50mm_Horizontal -JST XA series connector, S07B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator -connector JST XA horizontal hook -0 -7 -7 -Connector_JST -JST_XA_S08B-XASK-1N-BN_1x08_P2.50mm_Horizontal -JST XA series connector, S08B-XASK-1N-BN (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator -connector JST XA horizontal -0 -8 -8 -Connector_JST -JST_XA_S08B-XASK-1_1x08_P2.50mm_Horizontal -JST XA series connector, S08B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator -connector JST XA horizontal hook -0 -8 -8 -Connector_JST -JST_XA_S09B-XASK-1N-BN_1x09_P2.50mm_Horizontal -JST XA series connector, S09B-XASK-1N-BN (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator -connector JST XA horizontal -0 -9 -9 -Connector_JST -JST_XA_S09B-XASK-1_1x09_P2.50mm_Horizontal -JST XA series connector, S09B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator -connector JST XA horizontal hook -0 -9 -9 -Connector_JST -JST_XA_S10B-XASK-1N-BN_1x10_P2.50mm_Horizontal -JST XA series connector, S10B-XASK-1N-BN (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator -connector JST XA horizontal -0 -10 -10 -Connector_JST -JST_XA_S10B-XASK-1_1x10_P2.50mm_Horizontal -JST XA series connector, S10B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator -connector JST XA horizontal hook -0 -10 -10 -Connector_JST -JST_XA_S11B-XASK-1N-BN_1x11_P2.50mm_Horizontal -JST XA series connector, S11B-XASK-1N-BN (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator -connector JST XA horizontal -0 -11 -11 -Connector_JST -JST_XA_S11B-XASK-1_1x11_P2.50mm_Horizontal -JST XA series connector, S11B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator -connector JST XA horizontal hook -0 -11 -11 -Connector_JST -JST_XA_S12B-XASK-1N-BN_1x12_P2.50mm_Horizontal -JST XA series connector, S12B-XASK-1N-BN (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator -connector JST XA horizontal -0 -12 -12 -Connector_JST -JST_XA_S12B-XASK-1_1x12_P2.50mm_Horizontal -JST XA series connector, S12B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator -connector JST XA horizontal hook -0 -12 -12 -Connector_JST -JST_XA_S13B-XASK-1N-BN_1x13_P2.50mm_Horizontal -JST XA series connector, S13B-XASK-1N-BN (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator -connector JST XA horizontal -0 -13 -13 -Connector_JST -JST_XA_S13B-XASK-1_1x13_P2.50mm_Horizontal -JST XA series connector, S13B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator -connector JST XA horizontal hook -0 -13 -13 -Connector_JST -JST_XA_S14B-XASK-1N-BN_1x14_P2.50mm_Horizontal -JST XA series connector, S14B-XASK-1N-BN (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator -connector JST XA horizontal -0 -14 -14 -Connector_JST -JST_XA_S14B-XASK-1_1x14_P2.50mm_Horizontal -JST XA series connector, S14B-XASK-1 (http://www.jst-mfg.com/product/pdf/eng/eXA1.pdf), generated with kicad-footprint-generator -connector JST XA horizontal hook -0 -14 -14 -Connector_JST -JST_XH_B1B-XH-AM_1x01_P2.50mm_Vertical -JST XH series connector, B1B-XH-AM, with boss (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator -connector JST XH vertical boss -0 -1 -1 -Connector_JST -JST_XH_B2B-XH-AM_1x02_P2.50mm_Vertical -JST XH series connector, B2B-XH-AM, with boss (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator -connector JST XH vertical boss -0 -2 -2 -Connector_JST -JST_XH_B2B-XH-A_1x02_P2.50mm_Vertical -JST XH series connector, B2B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator -connector JST XH vertical -0 -2 -2 -Connector_JST -JST_XH_B3B-XH-AM_1x03_P2.50mm_Vertical -JST XH series connector, B3B-XH-AM, with boss (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator -connector JST XH vertical boss -0 -3 -3 -Connector_JST -JST_XH_B3B-XH-A_1x03_P2.50mm_Vertical -JST XH series connector, B3B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator -connector JST XH vertical -0 -3 -3 -Connector_JST -JST_XH_B4B-XH-AM_1x04_P2.50mm_Vertical -JST XH series connector, B4B-XH-AM, with boss (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator -connector JST XH vertical boss -0 -4 -4 -Connector_JST -JST_XH_B4B-XH-A_1x04_P2.50mm_Vertical -JST XH series connector, B4B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator -connector JST XH vertical -0 -4 -4 -Connector_JST -JST_XH_B5B-XH-AM_1x05_P2.50mm_Vertical -JST XH series connector, B5B-XH-AM, with boss (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator -connector JST XH vertical boss -0 -5 -5 -Connector_JST -JST_XH_B5B-XH-A_1x05_P2.50mm_Vertical -JST XH series connector, B5B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator -connector JST XH vertical -0 -5 -5 -Connector_JST -JST_XH_B6B-XH-AM_1x06_P2.50mm_Vertical -JST XH series connector, B6B-XH-AM, with boss (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator -connector JST XH vertical boss -0 -6 -6 -Connector_JST -JST_XH_B6B-XH-A_1x06_P2.50mm_Vertical -JST XH series connector, B6B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator -connector JST XH vertical -0 -6 -6 -Connector_JST -JST_XH_B7B-XH-AM_1x07_P2.50mm_Vertical -JST XH series connector, B7B-XH-AM, with boss (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator -connector JST XH vertical boss -0 -7 -7 -Connector_JST -JST_XH_B7B-XH-A_1x07_P2.50mm_Vertical -JST XH series connector, B7B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator -connector JST XH vertical -0 -7 -7 -Connector_JST -JST_XH_B8B-XH-AM_1x08_P2.50mm_Vertical -JST XH series connector, B8B-XH-AM, with boss (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator -connector JST XH vertical boss -0 -8 -8 -Connector_JST -JST_XH_B8B-XH-A_1x08_P2.50mm_Vertical -JST XH series connector, B8B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator -connector JST XH vertical -0 -8 -8 -Connector_JST -JST_XH_B9B-XH-AM_1x09_P2.50mm_Vertical -JST XH series connector, B9B-XH-AM, with boss (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator -connector JST XH vertical boss -0 -9 -9 -Connector_JST -JST_XH_B9B-XH-A_1x09_P2.50mm_Vertical -JST XH series connector, B9B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator -connector JST XH vertical -0 -9 -9 -Connector_JST -JST_XH_B10B-XH-AM_1x10_P2.50mm_Vertical -JST XH series connector, B10B-XH-AM, with boss (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator -connector JST XH side entry boss -0 -10 -10 -Connector_JST -JST_XH_B10B-XH-A_1x10_P2.50mm_Vertical -JST XH series connector, B10B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator -connector JST XH side entry -0 -10 -10 -Connector_JST -JST_XH_B11B-XH-A_1x11_P2.50mm_Vertical -JST XH series connector, B11B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator -connector JST XH side entry -0 -11 -11 -Connector_JST -JST_XH_B12B-XH-AM_1x12_P2.50mm_Vertical -JST XH series connector, B12B-XH-AM, with boss (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator -connector JST XH side entry boss -0 -12 -12 -Connector_JST -JST_XH_B12B-XH-A_1x12_P2.50mm_Vertical -JST XH series connector, B12B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator -connector JST XH side entry -0 -12 -12 -Connector_JST -JST_XH_B13B-XH-A_1x13_P2.50mm_Vertical -JST XH series connector, B13B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator -connector JST XH side entry -0 -13 -13 -Connector_JST -JST_XH_B14B-XH-A_1x14_P2.50mm_Vertical -JST XH series connector, B14B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator -connector JST XH side entry -0 -14 -14 -Connector_JST -JST_XH_B15B-XH-A_1x15_P2.50mm_Vertical -JST XH series connector, B15B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator -connector JST XH side entry -0 -15 -15 -Connector_JST -JST_XH_B16B-XH-A_1x16_P2.50mm_Vertical -JST XH series connector, B16B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator -connector JST XH side entry -0 -16 -16 -Connector_JST -JST_XH_B20B-XH-A_1x20_P2.50mm_Vertical -JST XH series connector, B20B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator -connector JST XH side entry -0 -20 -20 -Connector_JST -JST_XH_S2B-XH-A-1_1x02_P2.50mm_Horizontal -JST XH series connector, S2B-XH-A-1 (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator -connector JST XH horizontal -0 -2 -2 -Connector_JST -JST_XH_S2B-XH-A_1x02_P2.50mm_Horizontal -JST XH series connector, S2B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator -connector JST XH horizontal -0 -2 -2 -Connector_JST -JST_XH_S3B-XH-A-1_1x03_P2.50mm_Horizontal -JST XH series connector, S3B-XH-A-1 (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator -connector JST XH horizontal -0 -3 -3 -Connector_JST -JST_XH_S3B-XH-A_1x03_P2.50mm_Horizontal -JST XH series connector, S3B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator -connector JST XH horizontal -0 -3 -3 -Connector_JST -JST_XH_S4B-XH-A-1_1x04_P2.50mm_Horizontal -JST XH series connector, S4B-XH-A-1 (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator -connector JST XH horizontal -0 -4 -4 -Connector_JST -JST_XH_S4B-XH-A_1x04_P2.50mm_Horizontal -JST XH series connector, S4B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator -connector JST XH horizontal -0 -4 -4 -Connector_JST -JST_XH_S5B-XH-A-1_1x05_P2.50mm_Horizontal -JST XH series connector, S5B-XH-A-1 (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator -connector JST XH horizontal -0 -5 -5 -Connector_JST -JST_XH_S5B-XH-A_1x05_P2.50mm_Horizontal -JST XH series connector, S5B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator -connector JST XH horizontal -0 -5 -5 -Connector_JST -JST_XH_S6B-XH-A-1_1x06_P2.50mm_Horizontal -JST XH series connector, S6B-XH-A-1 (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator -connector JST XH horizontal -0 -6 -6 -Connector_JST -JST_XH_S6B-XH-A_1x06_P2.50mm_Horizontal -JST XH series connector, S6B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator -connector JST XH horizontal -0 -6 -6 -Connector_JST -JST_XH_S7B-XH-A-1_1x07_P2.50mm_Horizontal -JST XH series connector, S7B-XH-A-1 (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator -connector JST XH horizontal -0 -7 -7 -Connector_JST -JST_XH_S7B-XH-A_1x07_P2.50mm_Horizontal -JST XH series connector, S7B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator -connector JST XH horizontal -0 -7 -7 -Connector_JST -JST_XH_S8B-XH-A-1_1x08_P2.50mm_Horizontal -JST XH series connector, S8B-XH-A-1 (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator -connector JST XH horizontal -0 -8 -8 -Connector_JST -JST_XH_S8B-XH-A_1x08_P2.50mm_Horizontal -JST XH series connector, S8B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator -connector JST XH horizontal -0 -8 -8 -Connector_JST -JST_XH_S9B-XH-A-1_1x09_P2.50mm_Horizontal -JST XH series connector, S9B-XH-A-1 (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator -connector JST XH horizontal -0 -9 -9 -Connector_JST -JST_XH_S9B-XH-A_1x09_P2.50mm_Horizontal -JST XH series connector, S9B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator -connector JST XH horizontal -0 -9 -9 -Connector_JST -JST_XH_S10B-XH-A-1_1x10_P2.50mm_Horizontal -JST XH series connector, S10B-XH-A-1 (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator -connector JST XH top entry -0 -10 -10 -Connector_JST -JST_XH_S10B-XH-A_1x10_P2.50mm_Horizontal -JST XH series connector, S10B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator -connector JST XH top entry -0 -10 -10 -Connector_JST -JST_XH_S11B-XH-A-1_1x11_P2.50mm_Horizontal -JST XH series connector, S11B-XH-A-1 (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator -connector JST XH top entry -0 -11 -11 -Connector_JST -JST_XH_S11B-XH-A_1x11_P2.50mm_Horizontal -JST XH series connector, S11B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator -connector JST XH top entry -0 -11 -11 -Connector_JST -JST_XH_S12B-XH-A-1_1x12_P2.50mm_Horizontal -JST XH series connector, S12B-XH-A-1 (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator -connector JST XH top entry -0 -12 -12 -Connector_JST -JST_XH_S12B-XH-A_1x12_P2.50mm_Horizontal -JST XH series connector, S12B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator -connector JST XH top entry -0 -12 -12 -Connector_JST -JST_XH_S13B-XH-A-1_1x13_P2.50mm_Horizontal -JST XH series connector, S13B-XH-A-1 (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator -connector JST XH top entry -0 -13 -13 -Connector_JST -JST_XH_S13B-XH-A_1x13_P2.50mm_Horizontal -JST XH series connector, S13B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator -connector JST XH top entry -0 -13 -13 -Connector_JST -JST_XH_S14B-XH-A-1_1x14_P2.50mm_Horizontal -JST XH series connector, S14B-XH-A-1 (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator -connector JST XH top entry -0 -14 -14 -Connector_JST -JST_XH_S14B-XH-A_1x14_P2.50mm_Horizontal -JST XH series connector, S14B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator -connector JST XH top entry -0 -14 -14 -Connector_JST -JST_XH_S15B-XH-A-1_1x15_P2.50mm_Horizontal -JST XH series connector, S15B-XH-A-1 (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator -connector JST XH top entry -0 -15 -15 -Connector_JST -JST_XH_S15B-XH-A_1x15_P2.50mm_Horizontal -JST XH series connector, S15B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator -connector JST XH top entry -0 -15 -15 -Connector_JST -JST_XH_S16B-XH-A_1x16_P2.50mm_Horizontal -JST XH series connector, S16B-XH-A (http://www.jst-mfg.com/product/pdf/eng/eXH.pdf), generated with kicad-footprint-generator -connector JST XH top entry -0 -16 -16 -Connector_JST -JST_ZE_B02B-ZESK-1D_1x02_P1.50mm_Vertical -JST ZE series connector, B02B-ZESK-1D, with boss (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator -connector JST ZE side entry boss -0 -2 -2 -Connector_JST -JST_ZE_B03B-ZESK-1D_1x03_P1.50mm_Vertical -JST ZE series connector, B03B-ZESK-1D, with boss (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator -connector JST ZE side entry boss -0 -3 -3 -Connector_JST -JST_ZE_B03B-ZESK-D_1x03_P1.50mm_Vertical -JST ZE series connector, B03B-ZESK-D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator -connector JST ZE side entry -0 -3 -3 -Connector_JST -JST_ZE_B04B-ZESK-1D_1x04_P1.50mm_Vertical -JST ZE series connector, B04B-ZESK-1D, with boss (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator -connector JST ZE side entry boss -0 -4 -4 -Connector_JST -JST_ZE_B04B-ZESK-D_1x04_P1.50mm_Vertical -JST ZE series connector, B04B-ZESK-D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator -connector JST ZE side entry -0 -4 -4 -Connector_JST -JST_ZE_B05B-ZESK-1D_1x05_P1.50mm_Vertical -JST ZE series connector, B05B-ZESK-1D, with boss (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator -connector JST ZE side entry boss -0 -5 -5 -Connector_JST -JST_ZE_B05B-ZESK-D_1x05_P1.50mm_Vertical -JST ZE series connector, B05B-ZESK-D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator -connector JST ZE side entry -0 -5 -5 -Connector_JST -JST_ZE_B06B-ZESK-1D_1x06_P1.50mm_Vertical -JST ZE series connector, B06B-ZESK-1D, with boss (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator -connector JST ZE side entry boss -0 -6 -6 -Connector_JST -JST_ZE_B06B-ZESK-D_1x06_P1.50mm_Vertical -JST ZE series connector, B06B-ZESK-D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator -connector JST ZE side entry -0 -6 -6 -Connector_JST -JST_ZE_B07B-ZESK-1D_1x07_P1.50mm_Vertical -JST ZE series connector, B07B-ZESK-1D, with boss (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator -connector JST ZE side entry boss -0 -7 -7 -Connector_JST -JST_ZE_B07B-ZESK-D_1x07_P1.50mm_Vertical -JST ZE series connector, B07B-ZESK-D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator -connector JST ZE side entry -0 -7 -7 -Connector_JST -JST_ZE_B08B-ZESK-1D_1x08_P1.50mm_Vertical -JST ZE series connector, B08B-ZESK-1D, with boss (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator -connector JST ZE side entry boss -0 -8 -8 -Connector_JST -JST_ZE_B08B-ZESK-D_1x08_P1.50mm_Vertical -JST ZE series connector, B08B-ZESK-D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator -connector JST ZE side entry -0 -8 -8 -Connector_JST -JST_ZE_B09B-ZESK-1D_1x09_P1.50mm_Vertical -JST ZE series connector, B09B-ZESK-1D, with boss (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator -connector JST ZE side entry boss -0 -9 -9 -Connector_JST -JST_ZE_B09B-ZESK-D_1x09_P1.50mm_Vertical -JST ZE series connector, B09B-ZESK-D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator -connector JST ZE side entry -0 -9 -9 -Connector_JST -JST_ZE_B10B-ZESK-1D_1x10_P1.50mm_Vertical -JST ZE series connector, B10B-ZESK-1D, with boss (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator -connector JST ZE side entry boss -0 -10 -10 -Connector_JST -JST_ZE_B10B-ZESK-D_1x10_P1.50mm_Vertical -JST ZE series connector, B10B-ZESK-D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator -connector JST ZE side entry -0 -10 -10 -Connector_JST -JST_ZE_B11B-ZESK-1D_1x11_P1.50mm_Vertical -JST ZE series connector, B11B-ZESK-1D, with boss (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator -connector JST ZE side entry boss -0 -11 -11 -Connector_JST -JST_ZE_B11B-ZESK-D_1x11_P1.50mm_Vertical -JST ZE series connector, B11B-ZESK-D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator -connector JST ZE side entry -0 -11 -11 -Connector_JST -JST_ZE_B12B-ZESK-1D_1x12_P1.50mm_Vertical -JST ZE series connector, B12B-ZESK-1D, with boss (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator -connector JST ZE side entry boss -0 -12 -12 -Connector_JST -JST_ZE_B12B-ZESK-D_1x12_P1.50mm_Vertical -JST ZE series connector, B12B-ZESK-D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator -connector JST ZE side entry -0 -12 -12 -Connector_JST -JST_ZE_B13B-ZESK-1D_1x13_P1.50mm_Vertical -JST ZE series connector, B13B-ZESK-1D, with boss (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator -connector JST ZE side entry boss -0 -13 -13 -Connector_JST -JST_ZE_B13B-ZESK-D_1x13_P1.50mm_Vertical -JST ZE series connector, B13B-ZESK-D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator -connector JST ZE side entry -0 -13 -13 -Connector_JST -JST_ZE_B14B-ZESK-1D_1x14_P1.50mm_Vertical -JST ZE series connector, B14B-ZESK-1D, with boss (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator -connector JST ZE side entry boss -0 -14 -14 -Connector_JST -JST_ZE_B14B-ZESK-D_1x14_P1.50mm_Vertical -JST ZE series connector, B14B-ZESK-D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator -connector JST ZE side entry -0 -14 -14 -Connector_JST -JST_ZE_B15B-ZESK-1D_1x15_P1.50mm_Vertical -JST ZE series connector, B15B-ZESK-1D, with boss (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator -connector JST ZE side entry boss -0 -15 -15 -Connector_JST -JST_ZE_B15B-ZESK-D_1x15_P1.50mm_Vertical -JST ZE series connector, B15B-ZESK-D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator -connector JST ZE side entry -0 -15 -15 -Connector_JST -JST_ZE_B16B-ZESK-1D_1x16_P1.50mm_Vertical -JST ZE series connector, B16B-ZESK-1D, with boss (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator -connector JST ZE side entry boss -0 -16 -16 -Connector_JST -JST_ZE_B16B-ZESK-D_1x16_P1.50mm_Vertical -JST ZE series connector, B16B-ZESK-D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator -connector JST ZE side entry -0 -16 -16 -Connector_JST -JST_ZE_BM02B-ZESS-TBT_1x02-1MP_P1.50mm_Vertical -JST ZE series connector, BM02B-ZESS-TBT (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator -connector JST ZE vertical -0 -4 -3 -Connector_JST -JST_ZE_BM03B-ZESS-TBT_1x03-1MP_P1.50mm_Vertical -JST ZE series connector, BM03B-ZESS-TBT (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator -connector JST ZE vertical -0 -5 -4 -Connector_JST -JST_ZE_BM04B-ZESS-TBT_1x04-1MP_P1.50mm_Vertical -JST ZE series connector, BM04B-ZESS-TBT (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator -connector JST ZE vertical -0 -6 -5 -Connector_JST -JST_ZE_BM05B-ZESS-TBT_1x05-1MP_P1.50mm_Vertical -JST ZE series connector, BM05B-ZESS-TBT (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator -connector JST ZE vertical -0 -7 -6 -Connector_JST -JST_ZE_BM06B-ZESS-TBT_1x06-1MP_P1.50mm_Vertical -JST ZE series connector, BM06B-ZESS-TBT (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator -connector JST ZE vertical -0 -8 -7 -Connector_JST -JST_ZE_BM07B-ZESS-TBT_1x07-1MP_P1.50mm_Vertical -JST ZE series connector, BM07B-ZESS-TBT (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator -connector JST ZE vertical -0 -9 -8 -Connector_JST -JST_ZE_BM08B-ZESS-TBT_1x08-1MP_P1.50mm_Vertical -JST ZE series connector, BM08B-ZESS-TBT (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator -connector JST ZE vertical -0 -10 -9 -Connector_JST -JST_ZE_BM09B-ZESS-TBT_1x09-1MP_P1.50mm_Vertical -JST ZE series connector, BM09B-ZESS-TBT (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator -connector JST ZE vertical -0 -11 -10 -Connector_JST -JST_ZE_BM10B-ZESS-TBT_1x10-1MP_P1.50mm_Vertical -JST ZE series connector, BM10B-ZESS-TBT (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator -connector JST ZE vertical -0 -12 -11 -Connector_JST -JST_ZE_BM11B-ZESS-TBT_1x11-1MP_P1.50mm_Vertical -JST ZE series connector, BM11B-ZESS-TBT (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator -connector JST ZE vertical -0 -13 -12 -Connector_JST -JST_ZE_BM12B-ZESS-TBT_1x12-1MP_P1.50mm_Vertical -JST ZE series connector, BM12B-ZESS-TBT (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator -connector JST ZE vertical -0 -14 -13 -Connector_JST -JST_ZE_BM13B-ZESS-TBT_1x13-1MP_P1.50mm_Vertical -JST ZE series connector, BM13B-ZESS-TBT (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator -connector JST ZE vertical -0 -15 -14 -Connector_JST -JST_ZE_BM14B-ZESS-TBT_1x14-1MP_P1.50mm_Vertical -JST ZE series connector, BM14B-ZESS-TBT (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator -connector JST ZE vertical -0 -16 -15 -Connector_JST -JST_ZE_BM15B-ZESS-TBT_1x15-1MP_P1.50mm_Vertical -JST ZE series connector, BM15B-ZESS-TBT (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator -connector JST ZE vertical -0 -17 -16 -Connector_JST -JST_ZE_BM16B-ZESS-TBT_1x16-1MP_P1.50mm_Vertical -JST ZE series connector, BM16B-ZESS-TBT (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator -connector JST ZE vertical -0 -18 -17 -Connector_JST -JST_ZE_S02B-ZESK-2D_1x02_P1.50mm_Horizontal -JST ZE series connector, S02B-ZESK-2D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator -connector JST ZE top entry -0 -2 -2 -Connector_JST -JST_ZE_S03B-ZESK-2D_1x03_P1.50mm_Horizontal -JST ZE series connector, S03B-ZESK-2D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator -connector JST ZE top entry -0 -3 -3 -Connector_JST -JST_ZE_S04B-ZESK-2D_1x04_P1.50mm_Horizontal -JST ZE series connector, S04B-ZESK-2D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator -connector JST ZE top entry -0 -4 -4 -Connector_JST -JST_ZE_S05B-ZESK-2D_1x05_P1.50mm_Horizontal -JST ZE series connector, S05B-ZESK-2D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator -connector JST ZE top entry -0 -5 -5 -Connector_JST -JST_ZE_S06B-ZESK-2D_1x06_P1.50mm_Horizontal -JST ZE series connector, S06B-ZESK-2D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator -connector JST ZE top entry -0 -6 -6 -Connector_JST -JST_ZE_S07B-ZESK-2D_1x07_P1.50mm_Horizontal -JST ZE series connector, S07B-ZESK-2D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator -connector JST ZE top entry -0 -7 -7 -Connector_JST -JST_ZE_S08B-ZESK-2D_1x08_P1.50mm_Horizontal -JST ZE series connector, S08B-ZESK-2D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator -connector JST ZE top entry -0 -8 -8 -Connector_JST -JST_ZE_S09B-ZESK-2D_1x09_P1.50mm_Horizontal -JST ZE series connector, S09B-ZESK-2D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator -connector JST ZE top entry -0 -9 -9 -Connector_JST -JST_ZE_S10B-ZESK-2D_1x10_P1.50mm_Horizontal -JST ZE series connector, S10B-ZESK-2D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator -connector JST ZE top entry -0 -10 -10 -Connector_JST -JST_ZE_S11B-ZESK-2D_1x11_P1.50mm_Horizontal -JST ZE series connector, S11B-ZESK-2D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator -connector JST ZE top entry -0 -11 -11 -Connector_JST -JST_ZE_S12B-ZESK-2D_1x12_P1.50mm_Horizontal -JST ZE series connector, S12B-ZESK-2D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator -connector JST ZE top entry -0 -12 -12 -Connector_JST -JST_ZE_S13B-ZESK-2D_1x13_P1.50mm_Horizontal -JST ZE series connector, S13B-ZESK-2D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator -connector JST ZE top entry -0 -13 -13 -Connector_JST -JST_ZE_S14B-ZESK-2D_1x14_P1.50mm_Horizontal -JST ZE series connector, S14B-ZESK-2D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator -connector JST ZE top entry -0 -14 -14 -Connector_JST -JST_ZE_S15B-ZESK-2D_1x15_P1.50mm_Horizontal -JST ZE series connector, S15B-ZESK-2D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator -connector JST ZE top entry -0 -15 -15 -Connector_JST -JST_ZE_S16B-ZESK-2D_1x16_P1.50mm_Horizontal -JST ZE series connector, S16B-ZESK-2D (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator -connector JST ZE top entry -0 -16 -16 -Connector_JST -JST_ZE_SM02B-ZESS-TB_1x02-1MP_P1.50mm_Horizontal -JST ZE series connector, SM02B-ZESS-TB (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator -connector JST ZE horizontal -0 -4 -3 -Connector_JST -JST_ZE_SM03B-ZESS-TB_1x03-1MP_P1.50mm_Horizontal -JST ZE series connector, SM03B-ZESS-TB (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator -connector JST ZE horizontal -0 -5 -4 -Connector_JST -JST_ZE_SM04B-ZESS-TB_1x04-1MP_P1.50mm_Horizontal -JST ZE series connector, SM04B-ZESS-TB (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator -connector JST ZE horizontal -0 -6 -5 -Connector_JST -JST_ZE_SM05B-ZESS-TB_1x05-1MP_P1.50mm_Horizontal -JST ZE series connector, SM05B-ZESS-TB (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator -connector JST ZE horizontal -0 -7 -6 -Connector_JST -JST_ZE_SM06B-ZESS-TB_1x06-1MP_P1.50mm_Horizontal -JST ZE series connector, SM06B-ZESS-TB (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator -connector JST ZE horizontal -0 -8 -7 -Connector_JST -JST_ZE_SM07B-ZESS-TB_1x07-1MP_P1.50mm_Horizontal -JST ZE series connector, SM07B-ZESS-TB (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator -connector JST ZE horizontal -0 -9 -8 -Connector_JST -JST_ZE_SM08B-ZESS-TB_1x08-1MP_P1.50mm_Horizontal -JST ZE series connector, SM08B-ZESS-TB (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator -connector JST ZE horizontal -0 -10 -9 -Connector_JST -JST_ZE_SM09B-ZESS-TB_1x09-1MP_P1.50mm_Horizontal -JST ZE series connector, SM09B-ZESS-TB (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator -connector JST ZE horizontal -0 -11 -10 -Connector_JST -JST_ZE_SM10B-ZESS-TB_1x10-1MP_P1.50mm_Horizontal -JST ZE series connector, SM10B-ZESS-TB (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator -connector JST ZE horizontal -0 -12 -11 -Connector_JST -JST_ZE_SM11B-ZESS-TB_1x11-1MP_P1.50mm_Horizontal -JST ZE series connector, SM11B-ZESS-TB (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator -connector JST ZE horizontal -0 -13 -12 -Connector_JST -JST_ZE_SM12B-ZESS-TB_1x12-1MP_P1.50mm_Horizontal -JST ZE series connector, SM12B-ZESS-TB (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator -connector JST ZE horizontal -0 -14 -13 -Connector_JST -JST_ZE_SM13B-ZESS-TB_1x13-1MP_P1.50mm_Horizontal -JST ZE series connector, SM13B-ZESS-TB (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator -connector JST ZE horizontal -0 -15 -14 -Connector_JST -JST_ZE_SM14B-ZESS-TB_1x14-1MP_P1.50mm_Horizontal -JST ZE series connector, SM14B-ZESS-TB (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator -connector JST ZE horizontal -0 -16 -15 -Connector_JST -JST_ZE_SM15B-ZESS-TB_1x15-1MP_P1.50mm_Horizontal -JST ZE series connector, SM15B-ZESS-TB (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator -connector JST ZE horizontal -0 -17 -16 -Connector_JST -JST_ZE_SM16B-ZESS-TB_1x16-1MP_P1.50mm_Horizontal -JST ZE series connector, SM16B-ZESS-TB (http://www.jst-mfg.com/product/pdf/eng/eZE.pdf), generated with kicad-footprint-generator -connector JST ZE horizontal -0 -18 -17 -Connector_Molex -Molex_CLIK-Mate_502382-0270_1x02-1MP_P1.25mm_Vertical -Molex CLIK-Mate series connector, 502382-0270 (http://www.molex.com/pdm_docs/sd/5023820270_sd.pdf), generated with kicad-footprint-generator -connector Molex CLIK-Mate side entry -0 -4 -3 -Connector_Molex -Molex_CLIK-Mate_502382-0370_1x03-1MP_P1.25mm_Vertical -Molex CLIK-Mate series connector, 502382-0370 (http://www.molex.com/pdm_docs/sd/5023820270_sd.pdf), generated with kicad-footprint-generator -connector Molex CLIK-Mate side entry -0 -5 -4 -Connector_Molex -Molex_CLIK-Mate_502382-0470_1x04-1MP_P1.25mm_Vertical -Molex CLIK-Mate series connector, 502382-0470 (http://www.molex.com/pdm_docs/sd/5023820270_sd.pdf), generated with kicad-footprint-generator -connector Molex CLIK-Mate side entry -0 -6 -5 -Connector_Molex -Molex_CLIK-Mate_502382-0570_1x05-1MP_P1.25mm_Vertical -Molex CLIK-Mate series connector, 502382-0570 (http://www.molex.com/pdm_docs/sd/5023820270_sd.pdf), generated with kicad-footprint-generator -connector Molex CLIK-Mate side entry -0 -7 -6 -Connector_Molex -Molex_CLIK-Mate_502382-0670_1x06-1MP_P1.25mm_Vertical -Molex CLIK-Mate series connector, 502382-0670 (http://www.molex.com/pdm_docs/sd/5023820270_sd.pdf), generated with kicad-footprint-generator -connector Molex CLIK-Mate side entry -0 -8 -7 -Connector_Molex -Molex_CLIK-Mate_502382-0770_1x07-1MP_P1.25mm_Vertical -Molex CLIK-Mate series connector, 502382-0770 (http://www.molex.com/pdm_docs/sd/5023820270_sd.pdf), generated with kicad-footprint-generator -connector Molex CLIK-Mate side entry -0 -9 -8 -Connector_Molex -Molex_CLIK-Mate_502382-0870_1x08-1MP_P1.25mm_Vertical -Molex CLIK-Mate series connector, 502382-0870 (http://www.molex.com/pdm_docs/sd/5023820270_sd.pdf), generated with kicad-footprint-generator -connector Molex CLIK-Mate side entry -0 -10 -9 -Connector_Molex -Molex_CLIK-Mate_502382-0970_1x09-1MP_P1.25mm_Vertical -Molex CLIK-Mate series connector, 502382-0970 (http://www.molex.com/pdm_docs/sd/5023820270_sd.pdf), generated with kicad-footprint-generator -connector Molex CLIK-Mate side entry -0 -11 -10 -Connector_Molex -Molex_CLIK-Mate_502382-1070_1x10-1MP_P1.25mm_Vertical -Molex CLIK-Mate series connector, 502382-1070 (http://www.molex.com/pdm_docs/sd/5023820270_sd.pdf), generated with kicad-footprint-generator -connector Molex CLIK-Mate side entry -0 -12 -11 -Connector_Molex -Molex_CLIK-Mate_502382-1170_1x11-1MP_P1.25mm_Vertical -Molex CLIK-Mate series connector, 502382-1170 (http://www.molex.com/pdm_docs/sd/5023820270_sd.pdf), generated with kicad-footprint-generator -connector Molex CLIK-Mate side entry -0 -13 -12 -Connector_Molex -Molex_CLIK-Mate_502382-1270_1x12-1MP_P1.25mm_Vertical -Molex CLIK-Mate series connector, 502382-1270 (http://www.molex.com/pdm_docs/sd/5023820270_sd.pdf), generated with kicad-footprint-generator -connector Molex CLIK-Mate side entry -0 -14 -13 -Connector_Molex -Molex_CLIK-Mate_502382-1370_1x13-1MP_P1.25mm_Vertical -Molex CLIK-Mate series connector, 502382-1370 (http://www.molex.com/pdm_docs/sd/5023820270_sd.pdf), generated with kicad-footprint-generator -connector Molex CLIK-Mate side entry -0 -15 -14 -Connector_Molex -Molex_CLIK-Mate_502382-1470_1x14-1MP_P1.25mm_Vertical -Molex CLIK-Mate series connector, 502382-1470 (http://www.molex.com/pdm_docs/sd/5023820270_sd.pdf), generated with kicad-footprint-generator -connector Molex CLIK-Mate side entry -0 -16 -15 -Connector_Molex -Molex_CLIK-Mate_502382-1570_1x15-1MP_P1.25mm_Vertical -Molex CLIK-Mate series connector, 502382-1570 (http://www.molex.com/pdm_docs/sd/5023820270_sd.pdf), generated with kicad-footprint-generator -connector Molex CLIK-Mate side entry -0 -17 -16 -Connector_Molex -Molex_CLIK-Mate_502386-0270_1x02-1MP_P1.25mm_Horizontal -Molex CLIK-Mate series connector, 502386-0270 (http://www.molex.com/pdm_docs/sd/5023860270_sd.pdf), generated with kicad-footprint-generator -connector Molex CLIK-Mate top entry -0 -4 -3 -Connector_Molex -Molex_CLIK-Mate_502386-0370_1x03-1MP_P1.25mm_Horizontal -Molex CLIK-Mate series connector, 502386-0370 (http://www.molex.com/pdm_docs/sd/5023860270_sd.pdf), generated with kicad-footprint-generator -connector Molex CLIK-Mate top entry -0 -5 -4 -Connector_Molex -Molex_CLIK-Mate_502386-0470_1x04-1MP_P1.25mm_Horizontal -Molex CLIK-Mate series connector, 502386-0470 (http://www.molex.com/pdm_docs/sd/5023860270_sd.pdf), generated with kicad-footprint-generator -connector Molex CLIK-Mate top entry -0 -6 -5 -Connector_Molex -Molex_CLIK-Mate_502386-0570_1x05-1MP_P1.25mm_Horizontal -Molex CLIK-Mate series connector, 502386-0570 (http://www.molex.com/pdm_docs/sd/5023860270_sd.pdf), generated with kicad-footprint-generator -connector Molex CLIK-Mate top entry -0 -7 -6 -Connector_Molex -Molex_CLIK-Mate_502386-0670_1x06-1MP_P1.25mm_Horizontal -Molex CLIK-Mate series connector, 502386-0670 (http://www.molex.com/pdm_docs/sd/5023860270_sd.pdf), generated with kicad-footprint-generator -connector Molex CLIK-Mate top entry -0 -8 -7 -Connector_Molex -Molex_CLIK-Mate_502386-0770_1x07-1MP_P1.25mm_Horizontal -Molex CLIK-Mate series connector, 502386-0770 (http://www.molex.com/pdm_docs/sd/5023860270_sd.pdf), generated with kicad-footprint-generator -connector Molex CLIK-Mate top entry -0 -9 -8 -Connector_Molex -Molex_CLIK-Mate_502386-0870_1x08-1MP_P1.25mm_Horizontal -Molex CLIK-Mate series connector, 502386-0870 (http://www.molex.com/pdm_docs/sd/5023860270_sd.pdf), generated with kicad-footprint-generator -connector Molex CLIK-Mate top entry -0 -10 -9 -Connector_Molex -Molex_CLIK-Mate_502386-0970_1x09-1MP_P1.25mm_Horizontal -Molex CLIK-Mate series connector, 502386-0970 (http://www.molex.com/pdm_docs/sd/5023860270_sd.pdf), generated with kicad-footprint-generator -connector Molex CLIK-Mate top entry -0 -11 -10 -Connector_Molex -Molex_CLIK-Mate_502386-1070_1x10-1MP_P1.25mm_Horizontal -Molex CLIK-Mate series connector, 502386-1070 (http://www.molex.com/pdm_docs/sd/5023860270_sd.pdf), generated with kicad-footprint-generator -connector Molex CLIK-Mate top entry -0 -12 -11 -Connector_Molex -Molex_CLIK-Mate_502386-1170_1x11-1MP_P1.25mm_Horizontal -Molex CLIK-Mate series connector, 502386-1170 (http://www.molex.com/pdm_docs/sd/5023860270_sd.pdf), generated with kicad-footprint-generator -connector Molex CLIK-Mate top entry -0 -13 -12 -Connector_Molex -Molex_CLIK-Mate_502386-1270_1x12-1MP_P1.25mm_Horizontal -Molex CLIK-Mate series connector, 502386-1270 (http://www.molex.com/pdm_docs/sd/5023860270_sd.pdf), generated with kicad-footprint-generator -connector Molex CLIK-Mate top entry -0 -14 -13 -Connector_Molex -Molex_CLIK-Mate_502386-1370_1x13-1MP_P1.25mm_Horizontal -Molex CLIK-Mate series connector, 502386-1370 (http://www.molex.com/pdm_docs/sd/5023860270_sd.pdf), generated with kicad-footprint-generator -connector Molex CLIK-Mate top entry -0 -15 -14 -Connector_Molex -Molex_CLIK-Mate_502386-1470_1x14-1MP_P1.25mm_Horizontal -Molex CLIK-Mate series connector, 502386-1470 (http://www.molex.com/pdm_docs/sd/5023860270_sd.pdf), generated with kicad-footprint-generator -connector Molex CLIK-Mate top entry -0 -16 -15 -Connector_Molex -Molex_CLIK-Mate_502386-1570_1x15-1MP_P1.25mm_Horizontal -Molex CLIK-Mate series connector, 502386-1570 (http://www.molex.com/pdm_docs/sd/5023860270_sd.pdf), generated with kicad-footprint-generator -connector Molex CLIK-Mate top entry -0 -17 -16 -Connector_Molex -Molex_CLIK-Mate_502443-0270_1x02-1MP_P2.00mm_Vertical -Molex CLIK-Mate series connector, 502443-0270 (http://www.molex.com/pdm_docs/sd/5024430270_sd.pdf), generated with kicad-footprint-generator -connector Molex CLIK-Mate side entry -0 -4 -3 -Connector_Molex -Molex_CLIK-Mate_502443-0370_1x03-1MP_P2.00mm_Vertical -Molex CLIK-Mate series connector, 502443-0370 (http://www.molex.com/pdm_docs/sd/5024430270_sd.pdf), generated with kicad-footprint-generator -connector Molex CLIK-Mate side entry -0 -5 -4 -Connector_Molex -Molex_CLIK-Mate_502443-0470_1x04-1MP_P2.00mm_Vertical -Molex CLIK-Mate series connector, 502443-0470 (http://www.molex.com/pdm_docs/sd/5024430270_sd.pdf), generated with kicad-footprint-generator -connector Molex CLIK-Mate side entry -0 -6 -5 -Connector_Molex -Molex_CLIK-Mate_502443-0570_1x05-1MP_P2.00mm_Vertical -Molex CLIK-Mate series connector, 502443-0570 (http://www.molex.com/pdm_docs/sd/5024430270_sd.pdf), generated with kicad-footprint-generator -connector Molex CLIK-Mate side entry -0 -7 -6 -Connector_Molex -Molex_CLIK-Mate_502443-0670_1x06-1MP_P2.00mm_Vertical -Molex CLIK-Mate series connector, 502443-0670 (http://www.molex.com/pdm_docs/sd/5024430270_sd.pdf), generated with kicad-footprint-generator -connector Molex CLIK-Mate side entry -0 -8 -7 -Connector_Molex -Molex_CLIK-Mate_502443-0770_1x07-1MP_P2.00mm_Vertical -Molex CLIK-Mate series connector, 502443-0770 (http://www.molex.com/pdm_docs/sd/5024430270_sd.pdf), generated with kicad-footprint-generator -connector Molex CLIK-Mate side entry -0 -9 -8 -Connector_Molex -Molex_CLIK-Mate_502443-0870_1x08-1MP_P2.00mm_Vertical -Molex CLIK-Mate series connector, 502443-0870 (http://www.molex.com/pdm_docs/sd/5024430270_sd.pdf), generated with kicad-footprint-generator -connector Molex CLIK-Mate side entry -0 -10 -9 -Connector_Molex -Molex_CLIK-Mate_502443-0970_1x09-1MP_P2.00mm_Vertical -Molex CLIK-Mate series connector, 502443-0970 (http://www.molex.com/pdm_docs/sd/5024430270_sd.pdf), generated with kicad-footprint-generator -connector Molex CLIK-Mate side entry -0 -11 -10 -Connector_Molex -Molex_CLIK-Mate_502443-1270_1x12-1MP_P2.00mm_Vertical -Molex CLIK-Mate series connector, 502443-1270 (http://www.molex.com/pdm_docs/sd/5024430270_sd.pdf), generated with kicad-footprint-generator -connector Molex CLIK-Mate side entry -0 -14 -13 -Connector_Molex -Molex_CLIK-Mate_502443-1370_1x13-1MP_P2.00mm_Vertical -Molex CLIK-Mate series connector, 502443-1370 (http://www.molex.com/pdm_docs/sd/5024430270_sd.pdf), generated with kicad-footprint-generator -connector Molex CLIK-Mate side entry -0 -15 -14 -Connector_Molex -Molex_CLIK-Mate_502443-1470_1x14-1MP_P2.00mm_Vertical -Molex CLIK-Mate series connector, 502443-1470 (http://www.molex.com/pdm_docs/sd/5024430270_sd.pdf), generated with kicad-footprint-generator -connector Molex CLIK-Mate side entry -0 -16 -15 -Connector_Molex -Molex_CLIK-Mate_502443-1570_1x15-1MP_P2.00mm_Vertical -Molex CLIK-Mate series connector, 502443-1570 (http://www.molex.com/pdm_docs/sd/5024430270_sd.pdf), generated with kicad-footprint-generator -connector Molex CLIK-Mate side entry -0 -17 -16 -Connector_Molex -Molex_CLIK-Mate_502494-0270_1x02-1MP_P2.00mm_Horizontal -Molex CLIK-Mate series connector, 502494-0270 (http://www.molex.com/pdm_docs/sd/5024940270_sd.pdf), generated with kicad-footprint-generator -connector Molex CLIK-Mate top entry -0 -4 -3 -Connector_Molex -Molex_CLIK-Mate_502494-0370_1x03-1MP_P2.00mm_Horizontal -Molex CLIK-Mate series connector, 502494-0370 (http://www.molex.com/pdm_docs/sd/5024940270_sd.pdf), generated with kicad-footprint-generator -connector Molex CLIK-Mate top entry -0 -5 -4 -Connector_Molex -Molex_CLIK-Mate_502494-0470_1x04-1MP_P2.00mm_Horizontal -Molex CLIK-Mate series connector, 502494-0470 (http://www.molex.com/pdm_docs/sd/5024940270_sd.pdf), generated with kicad-footprint-generator -connector Molex CLIK-Mate top entry -0 -6 -5 -Connector_Molex -Molex_CLIK-Mate_502494-0670_1x06-1MP_P2.00mm_Horizontal -Molex CLIK-Mate series connector, 502494-0670 (http://www.molex.com/pdm_docs/sd/5024940270_sd.pdf), generated with kicad-footprint-generator -connector Molex CLIK-Mate top entry -0 -8 -7 -Connector_Molex -Molex_CLIK-Mate_502494-0870_1x08-1MP_P2.00mm_Horizontal -Molex CLIK-Mate series connector, 502494-0870 (http://www.molex.com/pdm_docs/sd/5024940270_sd.pdf), generated with kicad-footprint-generator -connector Molex CLIK-Mate top entry -0 -10 -9 -Connector_Molex -Molex_CLIK-Mate_502494-1070_1x10-1MP_P2.00mm_Horizontal -Molex CLIK-Mate series connector, 502494-1070 (http://www.molex.com/pdm_docs/sd/5024940270_sd.pdf), generated with kicad-footprint-generator -connector Molex CLIK-Mate top entry -0 -12 -11 -Connector_Molex -Molex_CLIK-Mate_502494-1270_1x12-1MP_P2.00mm_Horizontal -Molex CLIK-Mate series connector, 502494-1270 (http://www.molex.com/pdm_docs/sd/5024940270_sd.pdf), generated with kicad-footprint-generator -connector Molex CLIK-Mate top entry -0 -14 -13 -Connector_Molex -Molex_CLIK-Mate_502494-1370_1x13-1MP_P2.00mm_Horizontal -Molex CLIK-Mate series connector, 502494-1370 (http://www.molex.com/pdm_docs/sd/5024940270_sd.pdf), generated with kicad-footprint-generator -connector Molex CLIK-Mate top entry -0 -15 -14 -Connector_Molex -Molex_CLIK-Mate_502494-1470_1x14-1MP_P2.00mm_Horizontal -Molex CLIK-Mate series connector, 502494-1470 (http://www.molex.com/pdm_docs/sd/5024940270_sd.pdf), generated with kicad-footprint-generator -connector Molex CLIK-Mate top entry -0 -16 -15 -Connector_Molex -Molex_CLIK-Mate_502494-1570_1x15-1MP_P2.00mm_Horizontal -Molex CLIK-Mate series connector, 502494-1570 (http://www.molex.com/pdm_docs/sd/5024940270_sd.pdf), generated with kicad-footprint-generator -connector Molex CLIK-Mate top entry -0 -17 -16 -Connector_Molex -Molex_CLIK-Mate_502585-0270_1x02-1MP_P1.50mm_Horizontal -Molex CLIK-Mate series connector, 502585-0270 (http://www.molex.com/pdm_docs/sd/5025850270_sd.pdf), generated with kicad-footprint-generator -connector Molex CLIK-Mate top entry -0 -4 -3 -Connector_Molex -Molex_CLIK-Mate_502585-0370_1x03-1MP_P1.50mm_Horizontal -Molex CLIK-Mate series connector, 502585-0370 (http://www.molex.com/pdm_docs/sd/5025850270_sd.pdf), generated with kicad-footprint-generator -connector Molex CLIK-Mate top entry -0 -5 -4 -Connector_Molex -Molex_CLIK-Mate_502585-0470_1x04-1MP_P1.50mm_Horizontal -Molex CLIK-Mate series connector, 502585-0470 (http://www.molex.com/pdm_docs/sd/5025850270_sd.pdf), generated with kicad-footprint-generator -connector Molex CLIK-Mate top entry -0 -6 -5 -Connector_Molex -Molex_CLIK-Mate_502585-0570_1x05-1MP_P1.50mm_Horizontal -Molex CLIK-Mate series connector, 502585-0570 (http://www.molex.com/pdm_docs/sd/5025850270_sd.pdf), generated with kicad-footprint-generator -connector Molex CLIK-Mate top entry -0 -7 -6 -Connector_Molex -Molex_CLIK-Mate_502585-0670_1x06-1MP_P1.50mm_Horizontal -Molex CLIK-Mate series connector, 502585-0670 (http://www.molex.com/pdm_docs/sd/5025850270_sd.pdf), generated with kicad-footprint-generator -connector Molex CLIK-Mate top entry -0 -8 -7 -Connector_Molex -Molex_CLIK-Mate_502585-0770_1x07-1MP_P1.50mm_Horizontal -Molex CLIK-Mate series connector, 502585-0770 (http://www.molex.com/pdm_docs/sd/5025850270_sd.pdf), generated with kicad-footprint-generator -connector Molex CLIK-Mate top entry -0 -9 -8 -Connector_Molex -Molex_CLIK-Mate_502585-0870_1x08-1MP_P1.50mm_Horizontal -Molex CLIK-Mate series connector, 502585-0870 (http://www.molex.com/pdm_docs/sd/5025850270_sd.pdf), generated with kicad-footprint-generator -connector Molex CLIK-Mate top entry -0 -10 -9 -Connector_Molex -Molex_CLIK-Mate_502585-0970_1x09-1MP_P1.50mm_Horizontal -Molex CLIK-Mate series connector, 502585-0970 (http://www.molex.com/pdm_docs/sd/5025850270_sd.pdf), generated with kicad-footprint-generator -connector Molex CLIK-Mate top entry -0 -11 -10 -Connector_Molex -Molex_CLIK-Mate_502585-1070_1x10-1MP_P1.50mm_Horizontal -Molex CLIK-Mate series connector, 502585-1070 (http://www.molex.com/pdm_docs/sd/5025850270_sd.pdf), generated with kicad-footprint-generator -connector Molex CLIK-Mate top entry -0 -12 -11 -Connector_Molex -Molex_CLIK-Mate_502585-1170_1x11-1MP_P1.50mm_Horizontal -Molex CLIK-Mate series connector, 502585-1170 (http://www.molex.com/pdm_docs/sd/5025850270_sd.pdf), generated with kicad-footprint-generator -connector Molex CLIK-Mate top entry -0 -13 -12 -Connector_Molex -Molex_CLIK-Mate_502585-1270_1x12-1MP_P1.50mm_Horizontal -Molex CLIK-Mate series connector, 502585-1270 (http://www.molex.com/pdm_docs/sd/5025850270_sd.pdf), generated with kicad-footprint-generator -connector Molex CLIK-Mate top entry -0 -14 -13 -Connector_Molex -Molex_CLIK-Mate_502585-1370_1x13-1MP_P1.50mm_Horizontal -Molex CLIK-Mate series connector, 502585-1370 (http://www.molex.com/pdm_docs/sd/5025850270_sd.pdf), generated with kicad-footprint-generator -connector Molex CLIK-Mate top entry -0 -15 -14 -Connector_Molex -Molex_CLIK-Mate_502585-1470_1x14-1MP_P1.50mm_Horizontal -Molex CLIK-Mate series connector, 502585-1470 (http://www.molex.com/pdm_docs/sd/5025850270_sd.pdf), generated with kicad-footprint-generator -connector Molex CLIK-Mate top entry -0 -16 -15 -Connector_Molex -Molex_CLIK-Mate_502585-1570_1x15-1MP_P1.50mm_Horizontal -Molex CLIK-Mate series connector, 502585-1570 (http://www.molex.com/pdm_docs/sd/5025850270_sd.pdf), generated with kicad-footprint-generator -connector Molex CLIK-Mate top entry -0 -17 -16 -Connector_Molex -Molex_CLIK-Mate_505405-0270_1x02-1MP_P1.50mm_Vertical -Molex CLIK-Mate series connector, 505405-0270 (http://www.molex.com/pdm_docs/sd/5054050270_sd.pdf), generated with kicad-footprint-generator -connector Molex CLIK-Mate side entry -0 -4 -3 -Connector_Molex -Molex_CLIK-Mate_505405-0370_1x03-1MP_P1.50mm_Vertical -Molex CLIK-Mate series connector, 505405-0370 (http://www.molex.com/pdm_docs/sd/5054050270_sd.pdf), generated with kicad-footprint-generator -connector Molex CLIK-Mate side entry -0 -5 -4 -Connector_Molex -Molex_CLIK-Mate_505405-0470_1x04-1MP_P1.50mm_Vertical -Molex CLIK-Mate series connector, 505405-0470 (http://www.molex.com/pdm_docs/sd/5054050270_sd.pdf), generated with kicad-footprint-generator -connector Molex CLIK-Mate side entry -0 -6 -5 -Connector_Molex -Molex_CLIK-Mate_505405-0570_1x05-1MP_P1.50mm_Vertical -Molex CLIK-Mate series connector, 505405-0570 (http://www.molex.com/pdm_docs/sd/5054050270_sd.pdf), generated with kicad-footprint-generator -connector Molex CLIK-Mate side entry -0 -7 -6 -Connector_Molex -Molex_CLIK-Mate_505405-0670_1x06-1MP_P1.50mm_Vertical -Molex CLIK-Mate series connector, 505405-0670 (http://www.molex.com/pdm_docs/sd/5054050270_sd.pdf), generated with kicad-footprint-generator -connector Molex CLIK-Mate side entry -0 -8 -7 -Connector_Molex -Molex_CLIK-Mate_505405-0770_1x07-1MP_P1.50mm_Vertical -Molex CLIK-Mate series connector, 505405-0770 (http://www.molex.com/pdm_docs/sd/5054050270_sd.pdf), generated with kicad-footprint-generator -connector Molex CLIK-Mate side entry -0 -9 -8 -Connector_Molex -Molex_CLIK-Mate_505405-0870_1x08-1MP_P1.50mm_Vertical -Molex CLIK-Mate series connector, 505405-0870 (http://www.molex.com/pdm_docs/sd/5054050270_sd.pdf), generated with kicad-footprint-generator -connector Molex CLIK-Mate side entry -0 -10 -9 -Connector_Molex -Molex_CLIK-Mate_505405-0970_1x09-1MP_P1.50mm_Vertical -Molex CLIK-Mate series connector, 505405-0970 (http://www.molex.com/pdm_docs/sd/5054050270_sd.pdf), generated with kicad-footprint-generator -connector Molex CLIK-Mate side entry -0 -11 -10 -Connector_Molex -Molex_CLIK-Mate_505405-1070_1x10-1MP_P1.50mm_Vertical -Molex CLIK-Mate series connector, 505405-1070 (http://www.molex.com/pdm_docs/sd/5054050270_sd.pdf), generated with kicad-footprint-generator -connector Molex CLIK-Mate side entry -0 -12 -11 -Connector_Molex -Molex_CLIK-Mate_505405-1170_1x11-1MP_P1.50mm_Vertical -Molex CLIK-Mate series connector, 505405-1170 (http://www.molex.com/pdm_docs/sd/5054050270_sd.pdf), generated with kicad-footprint-generator -connector Molex CLIK-Mate side entry -0 -13 -12 -Connector_Molex -Molex_CLIK-Mate_505405-1270_1x12-1MP_P1.50mm_Vertical -Molex CLIK-Mate series connector, 505405-1270 (http://www.molex.com/pdm_docs/sd/5054050270_sd.pdf), generated with kicad-footprint-generator -connector Molex CLIK-Mate side entry -0 -14 -13 -Connector_Molex -Molex_CLIK-Mate_505405-1370_1x13-1MP_P1.50mm_Vertical -Molex CLIK-Mate series connector, 505405-1370 (http://www.molex.com/pdm_docs/sd/5054050270_sd.pdf), generated with kicad-footprint-generator -connector Molex CLIK-Mate side entry -0 -15 -14 -Connector_Molex -Molex_CLIK-Mate_505405-1470_1x14-1MP_P1.50mm_Vertical -Molex CLIK-Mate series connector, 505405-1470 (http://www.molex.com/pdm_docs/sd/5054050270_sd.pdf), generated with kicad-footprint-generator -connector Molex CLIK-Mate side entry -0 -16 -15 -Connector_Molex -Molex_CLIK-Mate_505405-1570_1x15-1MP_P1.50mm_Vertical -Molex CLIK-Mate series connector, 505405-1570 (http://www.molex.com/pdm_docs/sd/5054050270_sd.pdf), generated with kicad-footprint-generator -connector Molex CLIK-Mate side entry -0 -17 -16 -Connector_Molex -Molex_KK-254_AE-6410-02A_1x02_P2.54mm_Vertical -Molex KK-254 Interconnect System, old/engineering part number: AE-6410-02A example for new part number: 22-27-2021, 2 Pins (http://www.molex.com/pdm_docs/sd/022272021_sd.pdf), generated with kicad-footprint-generator -connector Molex KK-254 vertical -0 -2 -2 -Connector_Molex -Molex_KK-254_AE-6410-03A_1x03_P2.54mm_Vertical -Molex KK-254 Interconnect System, old/engineering part number: AE-6410-03A example for new part number: 22-27-2031, 3 Pins (http://www.molex.com/pdm_docs/sd/022272021_sd.pdf), generated with kicad-footprint-generator -connector Molex KK-254 vertical -0 -3 -3 -Connector_Molex -Molex_KK-254_AE-6410-04A_1x04_P2.54mm_Vertical -Molex KK-254 Interconnect System, old/engineering part number: AE-6410-04A example for new part number: 22-27-2041, 4 Pins (http://www.molex.com/pdm_docs/sd/022272021_sd.pdf), generated with kicad-footprint-generator -connector Molex KK-254 vertical -0 -4 -4 -Connector_Molex -Molex_KK-254_AE-6410-05A_1x05_P2.54mm_Vertical -Molex KK-254 Interconnect System, old/engineering part number: AE-6410-05A example for new part number: 22-27-2051, 5 Pins (http://www.molex.com/pdm_docs/sd/022272021_sd.pdf), generated with kicad-footprint-generator -connector Molex KK-254 vertical -0 -5 -5 -Connector_Molex -Molex_KK-254_AE-6410-06A_1x06_P2.54mm_Vertical -Molex KK-254 Interconnect System, old/engineering part number: AE-6410-06A example for new part number: 22-27-2061, 6 Pins (http://www.molex.com/pdm_docs/sd/022272021_sd.pdf), generated with kicad-footprint-generator -connector Molex KK-254 vertical -0 -6 -6 -Connector_Molex -Molex_KK-254_AE-6410-07A_1x07_P2.54mm_Vertical -Molex KK-254 Interconnect System, old/engineering part number: AE-6410-07A example for new part number: 22-27-2071, 7 Pins (http://www.molex.com/pdm_docs/sd/022272021_sd.pdf), generated with kicad-footprint-generator -connector Molex KK-254 vertical -0 -7 -7 -Connector_Molex -Molex_KK-254_AE-6410-08A_1x08_P2.54mm_Vertical -Molex KK-254 Interconnect System, old/engineering part number: AE-6410-08A example for new part number: 22-27-2081, 8 Pins (http://www.molex.com/pdm_docs/sd/022272021_sd.pdf), generated with kicad-footprint-generator -connector Molex KK-254 vertical -0 -8 -8 -Connector_Molex -Molex_KK-254_AE-6410-09A_1x09_P2.54mm_Vertical -Molex KK-254 Interconnect System, old/engineering part number: AE-6410-09A example for new part number: 22-27-2091, 9 Pins (http://www.molex.com/pdm_docs/sd/022272021_sd.pdf), generated with kicad-footprint-generator -connector Molex KK-254 vertical -0 -9 -9 -Connector_Molex -Molex_KK-254_AE-6410-10A_1x10_P2.54mm_Vertical -Molex KK-254 Interconnect System, old/engineering part number: AE-6410-10A example for new part number: 22-27-2101, 10 Pins (http://www.molex.com/pdm_docs/sd/022272021_sd.pdf), generated with kicad-footprint-generator -connector Molex KK-254 vertical -0 -10 -10 -Connector_Molex -Molex_KK-254_AE-6410-11A_1x11_P2.54mm_Vertical -Molex KK-254 Interconnect System, old/engineering part number: AE-6410-11A example for new part number: 22-27-2111, 11 Pins (http://www.molex.com/pdm_docs/sd/022272021_sd.pdf), generated with kicad-footprint-generator -connector Molex KK-254 vertical -0 -11 -11 -Connector_Molex -Molex_KK-254_AE-6410-12A_1x12_P2.54mm_Vertical -Molex KK-254 Interconnect System, old/engineering part number: AE-6410-12A example for new part number: 22-27-2121, 12 Pins (http://www.molex.com/pdm_docs/sd/022272021_sd.pdf), generated with kicad-footprint-generator -connector Molex KK-254 vertical -0 -12 -12 -Connector_Molex -Molex_KK-254_AE-6410-13A_1x13_P2.54mm_Vertical -Molex KK-254 Interconnect System, old/engineering part number: AE-6410-13A example for new part number: 22-27-2131, 13 Pins (http://www.molex.com/pdm_docs/sd/022272021_sd.pdf), generated with kicad-footprint-generator -connector Molex KK-254 vertical -0 -13 -13 -Connector_Molex -Molex_KK-254_AE-6410-14A_1x14_P2.54mm_Vertical -Molex KK-254 Interconnect System, old/engineering part number: AE-6410-14A example for new part number: 22-27-2141, 14 Pins (http://www.molex.com/pdm_docs/sd/022272021_sd.pdf), generated with kicad-footprint-generator -connector Molex KK-254 vertical -0 -14 -14 -Connector_Molex -Molex_KK-254_AE-6410-15A_1x15_P2.54mm_Vertical -Molex KK-254 Interconnect System, old/engineering part number: AE-6410-15A example for new part number: 22-27-2151, 15 Pins (http://www.molex.com/pdm_docs/sd/022272021_sd.pdf), generated with kicad-footprint-generator -connector Molex KK-254 vertical -0 -15 -15 -Connector_Molex -Molex_KK-254_AE-6410-16A_1x16_P2.54mm_Vertical -Molex KK-254 Interconnect System, old/engineering part number: AE-6410-16A example for new part number: 22-27-2161, 16 Pins (http://www.molex.com/pdm_docs/sd/022272021_sd.pdf), generated with kicad-footprint-generator -connector Molex KK-254 vertical -0 -16 -16 -Connector_Molex -Molex_KK-396_5273-02A_1x02_P3.96mm_Vertical -Molex KK 396 Interconnect System, old/engineering part number: 5273-02A example for new part number: 09-65-2028, 2 Pins (https://www.molex.com/pdm_docs/sd/009652028_sd.pdf), generated with kicad-footprint-generator -connector Molex KK-396 vertical -0 -2 -2 -Connector_Molex -Molex_KK-396_5273-03A_1x03_P3.96mm_Vertical -Molex KK 396 Interconnect System, old/engineering part number: 5273-03A example for new part number: 09-65-2038, 3 Pins (https://www.molex.com/pdm_docs/sd/009652028_sd.pdf), generated with kicad-footprint-generator -connector Molex KK-396 vertical -0 -3 -3 -Connector_Molex -Molex_KK-396_5273-04A_1x04_P3.96mm_Vertical -Molex KK 396 Interconnect System, old/engineering part number: 5273-04A example for new part number: 09-65-2048, 4 Pins (https://www.molex.com/pdm_docs/sd/009652028_sd.pdf), generated with kicad-footprint-generator -connector Molex KK-396 vertical -0 -4 -4 -Connector_Molex -Molex_KK-396_5273-05A_1x05_P3.96mm_Vertical -Molex KK 396 Interconnect System, old/engineering part number: 5273-05A example for new part number: 09-65-2058, 5 Pins (https://www.molex.com/pdm_docs/sd/009652028_sd.pdf), generated with kicad-footprint-generator -connector Molex KK-396 vertical -0 -5 -5 -Connector_Molex -Molex_KK-396_5273-06A_1x06_P3.96mm_Vertical -Molex KK 396 Interconnect System, old/engineering part number: 5273-06A example for new part number: 09-65-2068, 6 Pins (https://www.molex.com/pdm_docs/sd/009652028_sd.pdf), generated with kicad-footprint-generator -connector Molex KK-396 vertical -0 -6 -6 -Connector_Molex -Molex_KK-396_5273-07A_1x07_P3.96mm_Vertical -Molex KK 396 Interconnect System, old/engineering part number: 5273-07A example for new part number: 09-65-2078, 7 Pins (https://www.molex.com/pdm_docs/sd/009652028_sd.pdf), generated with kicad-footprint-generator -connector Molex KK-396 vertical -0 -7 -7 -Connector_Molex -Molex_KK-396_5273-08A_1x08_P3.96mm_Vertical -Molex KK 396 Interconnect System, old/engineering part number: 5273-08A example for new part number: 09-65-2088, 8 Pins (https://www.molex.com/pdm_docs/sd/009652028_sd.pdf), generated with kicad-footprint-generator -connector Molex KK-396 vertical -0 -8 -8 -Connector_Molex -Molex_KK-396_5273-09A_1x09_P3.96mm_Vertical -Molex KK 396 Interconnect System, old/engineering part number: 5273-09A example for new part number: 09-65-2098, 9 Pins (https://www.molex.com/pdm_docs/sd/009652028_sd.pdf), generated with kicad-footprint-generator -connector Molex KK-396 vertical -0 -9 -9 -Connector_Molex -Molex_KK-396_5273-10A_1x10_P3.96mm_Vertical -Molex KK 396 Interconnect System, old/engineering part number: 5273-10A example for new part number: 09-65-2108, 10 Pins (https://www.molex.com/pdm_docs/sd/009652028_sd.pdf), generated with kicad-footprint-generator -connector Molex KK-396 vertical -0 -10 -10 -Connector_Molex -Molex_KK-396_5273-11A_1x11_P3.96mm_Vertical -Molex KK 396 Interconnect System, old/engineering part number: 5273-11A example for new part number: 09-65-2118, 11 Pins (https://www.molex.com/pdm_docs/sd/009652028_sd.pdf), generated with kicad-footprint-generator -connector Molex KK-396 vertical -0 -11 -11 -Connector_Molex -Molex_KK-396_5273-12A_1x12_P3.96mm_Vertical -Molex KK 396 Interconnect System, old/engineering part number: 5273-12A example for new part number: 09-65-2128, 12 Pins (https://www.molex.com/pdm_docs/sd/009652028_sd.pdf), generated with kicad-footprint-generator -connector Molex KK-396 vertical -0 -12 -12 -Connector_Molex -Molex_KK-396_A-41791-0002_1x02_P3.96mm_Vertical -Molex KK 396 Interconnect System, old/engineering part number: A-41791-0002 example for new part number: 26-60-4020, 2 Pins (https://www.molex.com/pdm_docs/sd/026604020_sd.pdf), generated with kicad-footprint-generator -connector Molex KK-396 vertical -0 -2 -2 -Connector_Molex -Molex_KK-396_A-41791-0003_1x03_P3.96mm_Vertical -Molex KK 396 Interconnect System, old/engineering part number: A-41791-0003 example for new part number: 26-60-4030, 3 Pins (https://www.molex.com/pdm_docs/sd/026604020_sd.pdf), generated with kicad-footprint-generator -connector Molex KK-396 vertical -0 -3 -3 -Connector_Molex -Molex_KK-396_A-41791-0004_1x04_P3.96mm_Vertical -Molex KK 396 Interconnect System, old/engineering part number: A-41791-0004 example for new part number: 26-60-4040, 4 Pins (https://www.molex.com/pdm_docs/sd/026604020_sd.pdf), generated with kicad-footprint-generator -connector Molex KK-396 vertical -0 -4 -4 -Connector_Molex -Molex_KK-396_A-41791-0005_1x05_P3.96mm_Vertical -Molex KK 396 Interconnect System, old/engineering part number: A-41791-0005 example for new part number: 26-60-4050, 5 Pins (https://www.molex.com/pdm_docs/sd/026604020_sd.pdf), generated with kicad-footprint-generator -connector Molex KK-396 vertical -0 -5 -5 -Connector_Molex -Molex_KK-396_A-41791-0006_1x06_P3.96mm_Vertical -Molex KK 396 Interconnect System, old/engineering part number: A-41791-0006 example for new part number: 26-60-4060, 6 Pins (https://www.molex.com/pdm_docs/sd/026604020_sd.pdf), generated with kicad-footprint-generator -connector Molex KK-396 vertical -0 -6 -6 -Connector_Molex -Molex_KK-396_A-41791-0007_1x07_P3.96mm_Vertical -Molex KK 396 Interconnect System, old/engineering part number: A-41791-0007 example for new part number: 26-60-4070, 7 Pins (https://www.molex.com/pdm_docs/sd/026604020_sd.pdf), generated with kicad-footprint-generator -connector Molex KK-396 vertical -0 -7 -7 -Connector_Molex -Molex_KK-396_A-41791-0008_1x08_P3.96mm_Vertical -Molex KK 396 Interconnect System, old/engineering part number: A-41791-0008 example for new part number: 26-60-4080, 8 Pins (https://www.molex.com/pdm_docs/sd/026604020_sd.pdf), generated with kicad-footprint-generator -connector Molex KK-396 vertical -0 -8 -8 -Connector_Molex -Molex_KK-396_A-41791-0009_1x09_P3.96mm_Vertical -Molex KK 396 Interconnect System, old/engineering part number: A-41791-0009 example for new part number: 26-60-4090, 9 Pins (https://www.molex.com/pdm_docs/sd/026604020_sd.pdf), generated with kicad-footprint-generator -connector Molex KK-396 vertical -0 -9 -9 -Connector_Molex -Molex_KK-396_A-41791-0010_1x10_P3.96mm_Vertical -Molex KK 396 Interconnect System, old/engineering part number: A-41791-0010 example for new part number: 26-60-4100, 10 Pins (https://www.molex.com/pdm_docs/sd/026604020_sd.pdf), generated with kicad-footprint-generator -connector Molex KK-396 vertical -0 -10 -10 -Connector_Molex -Molex_KK-396_A-41791-0011_1x11_P3.96mm_Vertical -Molex KK 396 Interconnect System, old/engineering part number: A-41791-0011 example for new part number: 26-60-4110, 11 Pins (https://www.molex.com/pdm_docs/sd/026604020_sd.pdf), generated with kicad-footprint-generator -connector Molex KK-396 vertical -0 -11 -11 -Connector_Molex -Molex_KK-396_A-41791-0012_1x12_P3.96mm_Vertical -Molex KK 396 Interconnect System, old/engineering part number: A-41791-0012 example for new part number: 26-60-4120, 12 Pins (https://www.molex.com/pdm_docs/sd/026604020_sd.pdf), generated with kicad-footprint-generator -connector Molex KK-396 vertical -0 -12 -12 -Connector_Molex -Molex_KK-396_A-41791-0013_1x13_P3.96mm_Vertical -Molex KK 396 Interconnect System, old/engineering part number: A-41791-0013 example for new part number: 26-60-4130, 13 Pins (https://www.molex.com/pdm_docs/sd/026604020_sd.pdf), generated with kicad-footprint-generator -connector Molex KK-396 vertical -0 -13 -13 -Connector_Molex -Molex_KK-396_A-41791-0014_1x14_P3.96mm_Vertical -Molex KK 396 Interconnect System, old/engineering part number: A-41791-0014 example for new part number: 26-60-4140, 14 Pins (https://www.molex.com/pdm_docs/sd/026604020_sd.pdf), generated with kicad-footprint-generator -connector Molex KK-396 vertical -0 -14 -14 -Connector_Molex -Molex_KK-396_A-41791-0015_1x15_P3.96mm_Vertical -Molex KK 396 Interconnect System, old/engineering part number: A-41791-0015 example for new part number: 26-60-4150, 15 Pins (https://www.molex.com/pdm_docs/sd/026604020_sd.pdf), generated with kicad-footprint-generator -connector Molex KK-396 vertical -0 -15 -15 -Connector_Molex -Molex_KK-396_A-41791-0016_1x16_P3.96mm_Vertical -Molex KK 396 Interconnect System, old/engineering part number: A-41791-0016 example for new part number: 26-60-4160, 16 Pins (https://www.molex.com/pdm_docs/sd/026604020_sd.pdf), generated with kicad-footprint-generator -connector Molex KK-396 vertical -0 -16 -16 -Connector_Molex -Molex_KK-396_A-41791-0017_1x17_P3.96mm_Vertical -Molex KK 396 Interconnect System, old/engineering part number: A-41791-0017 example for new part number: 26-60-4170, 17 Pins (https://www.molex.com/pdm_docs/sd/026604020_sd.pdf), generated with kicad-footprint-generator -connector Molex KK-396 vertical -0 -17 -17 -Connector_Molex -Molex_KK-396_A-41791-0018_1x18_P3.96mm_Vertical -Molex KK 396 Interconnect System, old/engineering part number: A-41791-0018 example for new part number: 26-60-4180, 18 Pins (https://www.molex.com/pdm_docs/sd/026604020_sd.pdf), generated with kicad-footprint-generator -connector Molex KK-396 vertical -0 -18 -18 -Connector_Molex -Molex_KK-396_A-41792-0002_1x02_P3.96mm_Horizontal -Molex KK 396 Interconnect System, old/engineering part number: A-41792-0002 example for new part number: 26-60-5020, 2 Pins (https://www.molex.com/pdm_docs/sd/026605050_sd.pdf), generated with kicad-footprint-generator -connector Molex KK-396 horizontal -0 -2 -2 -Connector_Molex -Molex_KK-396_A-41792-0003_1x03_P3.96mm_Horizontal -Molex KK 396 Interconnect System, old/engineering part number: A-41792-0003 example for new part number: 26-60-5030, 3 Pins (https://www.molex.com/pdm_docs/sd/026605050_sd.pdf), generated with kicad-footprint-generator -connector Molex KK-396 horizontal -0 -3 -3 -Connector_Molex -Molex_KK-396_A-41792-0004_1x04_P3.96mm_Horizontal -Molex KK 396 Interconnect System, old/engineering part number: A-41792-0004 example for new part number: 26-60-5040, 4 Pins (https://www.molex.com/pdm_docs/sd/026605050_sd.pdf), generated with kicad-footprint-generator -connector Molex KK-396 horizontal -0 -4 -4 -Connector_Molex -Molex_KK-396_A-41792-0005_1x05_P3.96mm_Horizontal -Molex KK 396 Interconnect System, old/engineering part number: A-41792-0005 example for new part number: 26-60-5050, 5 Pins (https://www.molex.com/pdm_docs/sd/026605050_sd.pdf), generated with kicad-footprint-generator -connector Molex KK-396 horizontal -0 -5 -5 -Connector_Molex -Molex_KK-396_A-41792-0006_1x06_P3.96mm_Horizontal -Molex KK 396 Interconnect System, old/engineering part number: A-41792-0006 example for new part number: 26-60-5060, 6 Pins (https://www.molex.com/pdm_docs/sd/026605050_sd.pdf), generated with kicad-footprint-generator -connector Molex KK-396 horizontal -0 -6 -6 -Connector_Molex -Molex_KK-396_A-41792-0007_1x07_P3.96mm_Horizontal -Molex KK 396 Interconnect System, old/engineering part number: A-41792-0007 example for new part number: 26-60-5070, 7 Pins (https://www.molex.com/pdm_docs/sd/026605050_sd.pdf), generated with kicad-footprint-generator -connector Molex KK-396 horizontal -0 -7 -7 -Connector_Molex -Molex_KK-396_A-41792-0008_1x08_P3.96mm_Horizontal -Molex KK 396 Interconnect System, old/engineering part number: A-41792-0008 example for new part number: 26-60-5080, 8 Pins (https://www.molex.com/pdm_docs/sd/026605050_sd.pdf), generated with kicad-footprint-generator -connector Molex KK-396 horizontal -0 -8 -8 -Connector_Molex -Molex_KK-396_A-41792-0009_1x09_P3.96mm_Horizontal -Molex KK 396 Interconnect System, old/engineering part number: A-41792-0009 example for new part number: 26-60-5090, 9 Pins (https://www.molex.com/pdm_docs/sd/026605050_sd.pdf), generated with kicad-footprint-generator -connector Molex KK-396 horizontal -0 -9 -9 -Connector_Molex -Molex_KK-396_A-41792-0010_1x10_P3.96mm_Horizontal -Molex KK 396 Interconnect System, old/engineering part number: A-41792-0010 example for new part number: 26-60-5100, 10 Pins (https://www.molex.com/pdm_docs/sd/026605050_sd.pdf), generated with kicad-footprint-generator -connector Molex KK-396 horizontal -0 -10 -10 -Connector_Molex -Molex_KK-396_A-41792-0011_1x11_P3.96mm_Horizontal -Molex KK 396 Interconnect System, old/engineering part number: A-41792-0011 example for new part number: 26-60-5110, 11 Pins (https://www.molex.com/pdm_docs/sd/026605050_sd.pdf), generated with kicad-footprint-generator -connector Molex KK-396 horizontal -0 -11 -11 -Connector_Molex -Molex_KK-396_A-41792-0012_1x12_P3.96mm_Horizontal -Molex KK 396 Interconnect System, old/engineering part number: A-41792-0012 example for new part number: 26-60-5120, 12 Pins (https://www.molex.com/pdm_docs/sd/026605050_sd.pdf), generated with kicad-footprint-generator -connector Molex KK-396 horizontal -0 -12 -12 -Connector_Molex -Molex_KK-396_A-41792-0013_1x13_P3.96mm_Horizontal -Molex KK 396 Interconnect System, old/engineering part number: A-41792-0013 example for new part number: 26-60-5130, 13 Pins (https://www.molex.com/pdm_docs/sd/026605050_sd.pdf), generated with kicad-footprint-generator -connector Molex KK-396 horizontal -0 -13 -13 -Connector_Molex -Molex_KK-396_A-41792-0014_1x14_P3.96mm_Horizontal -Molex KK 396 Interconnect System, old/engineering part number: A-41792-0014 example for new part number: 26-60-5140, 14 Pins (https://www.molex.com/pdm_docs/sd/026605050_sd.pdf), generated with kicad-footprint-generator -connector Molex KK-396 horizontal -0 -14 -14 -Connector_Molex -Molex_KK-396_A-41792-0015_1x15_P3.96mm_Horizontal -Molex KK 396 Interconnect System, old/engineering part number: A-41792-0015 example for new part number: 26-60-5150, 15 Pins (https://www.molex.com/pdm_docs/sd/026605050_sd.pdf), generated with kicad-footprint-generator -connector Molex KK-396 horizontal -0 -15 -15 -Connector_Molex -Molex_KK-396_A-41792-0016_1x16_P3.96mm_Horizontal -Molex KK 396 Interconnect System, old/engineering part number: A-41792-0016 example for new part number: 26-60-5160, 16 Pins (https://www.molex.com/pdm_docs/sd/026605050_sd.pdf), generated with kicad-footprint-generator -connector Molex KK-396 horizontal -0 -16 -16 -Connector_Molex -Molex_KK-396_A-41792-0017_1x17_P3.96mm_Horizontal -Molex KK 396 Interconnect System, old/engineering part number: A-41792-0017 example for new part number: 26-60-5170, 17 Pins (https://www.molex.com/pdm_docs/sd/026605050_sd.pdf), generated with kicad-footprint-generator -connector Molex KK-396 horizontal -0 -17 -17 -Connector_Molex -Molex_KK-396_A-41792-0018_1x18_P3.96mm_Horizontal -Molex KK 396 Interconnect System, old/engineering part number: A-41792-0018 example for new part number: 26-60-5180, 18 Pins (https://www.molex.com/pdm_docs/sd/026605050_sd.pdf), generated with kicad-footprint-generator -connector Molex KK-396 horizontal -0 -18 -18 -Connector_Molex -Molex_Mega-Fit_76825-0002_2x01_P5.70mm_Horizontal -Molex Mega-Fit Power Connectors, 76825-0002 (compatible alternatives: 172064-0002, 172064-1002), 1 Pins per row (http://www.molex.com/pdm_docs/sd/1720640002_sd.pdf), generated with kicad-footprint-generator -connector Molex Mega-Fit top entry -0 -2 -2 -Connector_Molex -Molex_Mega-Fit_76825-0004_2x02_P5.70mm_Horizontal -Molex Mega-Fit Power Connectors, 76825-0004 (compatible alternatives: 172064-0004, 172064-1004), 2 Pins per row (http://www.molex.com/pdm_docs/sd/1720640002_sd.pdf), generated with kicad-footprint-generator -connector Molex Mega-Fit top entry -0 -4 -4 -Connector_Molex -Molex_Mega-Fit_76825-0006_2x03_P5.70mm_Horizontal -Molex Mega-Fit Power Connectors, 76825-0006 (compatible alternatives: 172064-0006, 172064-1006), 3 Pins per row (http://www.molex.com/pdm_docs/sd/1720640002_sd.pdf), generated with kicad-footprint-generator -connector Molex Mega-Fit top entry -0 -6 -6 -Connector_Molex -Molex_Mega-Fit_76825-0008_2x04_P5.70mm_Horizontal -Molex Mega-Fit Power Connectors, 76825-0008 (compatible alternatives: 172064-0008, 172064-1008), 4 Pins per row (http://www.molex.com/pdm_docs/sd/1720640002_sd.pdf), generated with kicad-footprint-generator -connector Molex Mega-Fit top entry -0 -8 -8 -Connector_Molex -Molex_Mega-Fit_76825-0010_2x05_P5.70mm_Horizontal -Molex Mega-Fit Power Connectors, 76825-0010 (compatible alternatives: 172064-0010, 172064-1010), 5 Pins per row (http://www.molex.com/pdm_docs/sd/1720640002_sd.pdf), generated with kicad-footprint-generator -connector Molex Mega-Fit top entry -0 -10 -10 -Connector_Molex -Molex_Mega-Fit_76825-0012_2x06_P5.70mm_Horizontal -Molex Mega-Fit Power Connectors, 76825-0012 (compatible alternatives: 172064-0012, 172064-1012), 6 Pins per row (http://www.molex.com/pdm_docs/sd/1720640002_sd.pdf), generated with kicad-footprint-generator -connector Molex Mega-Fit top entry -0 -12 -12 -Connector_Molex -Molex_Mega-Fit_76829-0002_2x01_P5.70mm_Vertical -Molex Mega-Fit Power Connectors, 76829-0002 (compatible alternatives: 172065-0002, 172065-1002), 1 Pins per row (http://www.molex.com/pdm_docs/sd/768290004_sd.pdf), generated with kicad-footprint-generator -connector Molex Mega-Fit side entry -0 -2 -2 -Connector_Molex -Molex_Mega-Fit_76829-0004_2x02_P5.70mm_Vertical -Molex Mega-Fit Power Connectors, 76829-0004 (compatible alternatives: 172065-0004, 172065-1004), 2 Pins per row (http://www.molex.com/pdm_docs/sd/768290004_sd.pdf), generated with kicad-footprint-generator -connector Molex Mega-Fit side entry -0 -4 -4 -Connector_Molex -Molex_Mega-Fit_76829-0006_2x03_P5.70mm_Vertical -Molex Mega-Fit Power Connectors, 76829-0006 (compatible alternatives: 172065-0006, 172065-1006), 3 Pins per row (http://www.molex.com/pdm_docs/sd/768290004_sd.pdf), generated with kicad-footprint-generator -connector Molex Mega-Fit side entry -0 -6 -6 -Connector_Molex -Molex_Mega-Fit_76829-0008_2x04_P5.70mm_Vertical -Molex Mega-Fit Power Connectors, 76829-0008 (compatible alternatives: 172065-0008, 172065-1008), 4 Pins per row (http://www.molex.com/pdm_docs/sd/768290004_sd.pdf), generated with kicad-footprint-generator -connector Molex Mega-Fit side entry -0 -8 -8 -Connector_Molex -Molex_Mega-Fit_76829-0010_2x05_P5.70mm_Vertical -Molex Mega-Fit Power Connectors, 76829-0010 (compatible alternatives: 172065-0010, 172065-1010), 5 Pins per row (http://www.molex.com/pdm_docs/sd/768290004_sd.pdf), generated with kicad-footprint-generator -connector Molex Mega-Fit side entry -0 -10 -10 -Connector_Molex -Molex_Mega-Fit_76829-0012_2x06_P5.70mm_Vertical -Molex Mega-Fit Power Connectors, 76829-0012 (compatible alternatives: 172065-0012, 172065-1012), 6 Pins per row (http://www.molex.com/pdm_docs/sd/768290004_sd.pdf), generated with kicad-footprint-generator -connector Molex Mega-Fit side entry -0 -12 -12 -Connector_Molex -Molex_Mega-Fit_76829-0102_2x01_P5.70mm_Vertical -Molex Mega-Fit Power Connectors, 76829-0102 (compatible alternatives: 172065-0202, 172065-0302), 1 Pins per row (http://www.molex.com/pdm_docs/sd/768290102_sd.pdf), generated with kicad-footprint-generator -connector Molex Mega-Fit side entry -0 -2 -2 -Connector_Molex -Molex_Mega-Fit_76829-0104_2x02_P5.70mm_Vertical -Molex Mega-Fit Power Connectors, 76829-0104 (compatible alternatives: 172065-0204, 172065-0304), 2 Pins per row (http://www.molex.com/pdm_docs/sd/768290102_sd.pdf), generated with kicad-footprint-generator -connector Molex Mega-Fit side entry -0 -4 -4 -Connector_Molex -Molex_Mega-Fit_76829-0106_2x03_P5.70mm_Vertical -Molex Mega-Fit Power Connectors, 76829-0106 (compatible alternatives: 172065-0206, 172065-0306), 3 Pins per row (http://www.molex.com/pdm_docs/sd/768290102_sd.pdf), generated with kicad-footprint-generator -connector Molex Mega-Fit side entry -0 -6 -6 -Connector_Molex -Molex_Mega-Fit_76829-0108_2x04_P5.70mm_Vertical -Molex Mega-Fit Power Connectors, 76829-0108 (compatible alternatives: 172065-0208, 172065-0308), 4 Pins per row (http://www.molex.com/pdm_docs/sd/768290102_sd.pdf), generated with kicad-footprint-generator -connector Molex Mega-Fit side entry -0 -8 -8 -Connector_Molex -Molex_Mega-Fit_76829-0110_2x05_P5.70mm_Vertical -Molex Mega-Fit Power Connectors, 76829-0110 (compatible alternatives: 172065-0210, 172065-0310), 5 Pins per row (http://www.molex.com/pdm_docs/sd/768290102_sd.pdf), generated with kicad-footprint-generator -connector Molex Mega-Fit side entry -0 -10 -10 -Connector_Molex -Molex_Mega-Fit_76829-0112_2x06_P5.70mm_Vertical -Molex Mega-Fit Power Connectors, 76829-0112 (compatible alternatives: 172065-0212, 172065-0312), 6 Pins per row (http://www.molex.com/pdm_docs/sd/768290102_sd.pdf), generated with kicad-footprint-generator -connector Molex Mega-Fit side entry -0 -12 -12 -Connector_Molex -Molex_Micro-Fit_3.0_43045-0200_2x01_P3.00mm_Horizontal -Molex Micro-Fit 3.0 Connector System, 43045-0200 (alternative finishes: 43045-020x), 1 Pins per row (https://www.molex.com/pdm_docs/sd/430450201_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 horizontal -0 -2 -2 -Connector_Molex -Molex_Micro-Fit_3.0_43045-0210_2x01-1MP_P3.00mm_Horizontal -Molex Micro-Fit 3.0 Connector System, 43045-0210 (compatible alternatives: 43045-0211, 43045-0209), 1 Pins per row (http://www.molex.com/pdm_docs/sd/430450210_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 top entry -0 -4 -3 -Connector_Molex -Molex_Micro-Fit_3.0_43045-0212_2x01_P3.00mm_Vertical -Molex Micro-Fit 3.0 Connector System, 43045-0212 (compatible alternatives: 43045-0213, 43045-0224), 1 Pins per row (http://www.molex.com/pdm_docs/sd/430450212_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 side entry -0 -2 -2 -Connector_Molex -Molex_Micro-Fit_3.0_43045-0215_2x01_P3.00mm_Vertical -Molex Micro-Fit 3.0 Connector System, 43045-0215 (compatible alternatives: 43045-0216, 43045-0217), 1 Pins per row (http://www.molex.com/pdm_docs/sd/430450217_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 side entry -0 -2 -2 -Connector_Molex -Molex_Micro-Fit_3.0_43045-0218_2x01-1MP_P3.00mm_Vertical -Molex Micro-Fit 3.0 Connector System, 43045-0218 (compatible alternatives: 43045-0219, 43045-0220), 1 Pins per row (http://www.molex.com/pdm_docs/sd/430450218_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 side entry -0 -4 -3 -Connector_Molex -Molex_Micro-Fit_3.0_43045-0221_2x01-1MP_P3.00mm_Horizontal -Molex Micro-Fit 3.0 Connector System, 43045-0221 (alternative finishes: 43045-022x), 1 Pins per row (https://www.molex.com/pdm_docs/sd/430450221_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 horizontal -0 -4 -3 -Connector_Molex -Molex_Micro-Fit_3.0_43045-0400_2x02_P3.00mm_Horizontal -Molex Micro-Fit 3.0 Connector System, 43045-0400 (alternative finishes: 43045-040x), 2 Pins per row (https://www.molex.com/pdm_docs/sd/430450201_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 horizontal -0 -4 -4 -Connector_Molex -Molex_Micro-Fit_3.0_43045-0410_2x02-1MP_P3.00mm_Horizontal -Molex Micro-Fit 3.0 Connector System, 43045-0410 (compatible alternatives: 43045-0411, 43045-0409), 2 Pins per row (http://www.molex.com/pdm_docs/sd/430450210_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 top entry -0 -6 -5 -Connector_Molex -Molex_Micro-Fit_3.0_43045-0412_2x02_P3.00mm_Vertical -Molex Micro-Fit 3.0 Connector System, 43045-0412 (compatible alternatives: 43045-0413, 43045-0424), 2 Pins per row (http://www.molex.com/pdm_docs/sd/430450212_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 side entry -0 -4 -4 -Connector_Molex -Molex_Micro-Fit_3.0_43045-0415_2x02_P3.00mm_Vertical -Molex Micro-Fit 3.0 Connector System, 43045-0415 (compatible alternatives: 43045-0416, 43045-0417), 2 Pins per row (http://www.molex.com/pdm_docs/sd/430450217_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 side entry -0 -4 -4 -Connector_Molex -Molex_Micro-Fit_3.0_43045-0418_2x02-1MP_P3.00mm_Vertical -Molex Micro-Fit 3.0 Connector System, 43045-0418 (compatible alternatives: 43045-0419, 43045-0420), 2 Pins per row (http://www.molex.com/pdm_docs/sd/430450218_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 side entry -0 -6 -5 -Connector_Molex -Molex_Micro-Fit_3.0_43045-0421_2x02-1MP_P3.00mm_Horizontal -Molex Micro-Fit 3.0 Connector System, 43045-0421 (alternative finishes: 43045-042x), 2 Pins per row (https://www.molex.com/pdm_docs/sd/430450221_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 horizontal -0 -6 -5 -Connector_Molex -Molex_Micro-Fit_3.0_43045-0600_2x03_P3.00mm_Horizontal -Molex Micro-Fit 3.0 Connector System, 43045-0600 (alternative finishes: 43045-060x), 3 Pins per row (https://www.molex.com/pdm_docs/sd/430450201_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 horizontal -0 -6 -6 -Connector_Molex -Molex_Micro-Fit_3.0_43045-0610_2x03-1MP_P3.00mm_Horizontal -Molex Micro-Fit 3.0 Connector System, 43045-0610 (compatible alternatives: 43045-0611, 43045-0609), 3 Pins per row (http://www.molex.com/pdm_docs/sd/430450210_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 top entry -0 -8 -7 -Connector_Molex -Molex_Micro-Fit_3.0_43045-0612_2x03_P3.00mm_Vertical -Molex Micro-Fit 3.0 Connector System, 43045-0612 (compatible alternatives: 43045-0613, 43045-0624), 3 Pins per row (http://www.molex.com/pdm_docs/sd/430450212_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 side entry -0 -6 -6 -Connector_Molex -Molex_Micro-Fit_3.0_43045-0615_2x03_P3.00mm_Vertical -Molex Micro-Fit 3.0 Connector System, 43045-0615 (compatible alternatives: 43045-0616, 43045-0617), 3 Pins per row (http://www.molex.com/pdm_docs/sd/430450217_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 side entry -0 -6 -6 -Connector_Molex -Molex_Micro-Fit_3.0_43045-0618_2x03-1MP_P3.00mm_Vertical -Molex Micro-Fit 3.0 Connector System, 43045-0618 (compatible alternatives: 43045-0619, 43045-0620), 3 Pins per row (http://www.molex.com/pdm_docs/sd/430450218_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 side entry -0 -8 -7 -Connector_Molex -Molex_Micro-Fit_3.0_43045-0621_2x03-1MP_P3.00mm_Horizontal -Molex Micro-Fit 3.0 Connector System, 43045-0621 (alternative finishes: 43045-062x), 3 Pins per row (https://www.molex.com/pdm_docs/sd/430450221_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 horizontal -0 -8 -7 -Connector_Molex -Molex_Micro-Fit_3.0_43045-0800_2x04_P3.00mm_Horizontal -Molex Micro-Fit 3.0 Connector System, 43045-0800 (alternative finishes: 43045-080x), 4 Pins per row (https://www.molex.com/pdm_docs/sd/430450201_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 horizontal -0 -8 -8 -Connector_Molex -Molex_Micro-Fit_3.0_43045-0810_2x04-1MP_P3.00mm_Horizontal -Molex Micro-Fit 3.0 Connector System, 43045-0810 (compatible alternatives: 43045-0811, 43045-0809), 4 Pins per row (http://www.molex.com/pdm_docs/sd/430450210_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 top entry -0 -10 -9 -Connector_Molex -Molex_Micro-Fit_3.0_43045-0812_2x04_P3.00mm_Vertical -Molex Micro-Fit 3.0 Connector System, 43045-0812 (compatible alternatives: 43045-0813, 43045-0824), 4 Pins per row (http://www.molex.com/pdm_docs/sd/430450212_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 side entry -0 -8 -8 -Connector_Molex -Molex_Micro-Fit_3.0_43045-0815_2x04_P3.00mm_Vertical -Molex Micro-Fit 3.0 Connector System, 43045-0815 (compatible alternatives: 43045-0816, 43045-0817), 4 Pins per row (http://www.molex.com/pdm_docs/sd/430450217_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 side entry -0 -8 -8 -Connector_Molex -Molex_Micro-Fit_3.0_43045-0818_2x04-1MP_P3.00mm_Vertical -Molex Micro-Fit 3.0 Connector System, 43045-0818 (compatible alternatives: 43045-0819, 43045-0820), 4 Pins per row (http://www.molex.com/pdm_docs/sd/430450218_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 side entry -0 -10 -9 -Connector_Molex -Molex_Micro-Fit_3.0_43045-0821_2x04-1MP_P3.00mm_Horizontal -Molex Micro-Fit 3.0 Connector System, 43045-0821 (alternative finishes: 43045-082x), 4 Pins per row (https://www.molex.com/pdm_docs/sd/430450221_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 horizontal -0 -10 -9 -Connector_Molex -Molex_Micro-Fit_3.0_43045-1000_2x05_P3.00mm_Horizontal -Molex Micro-Fit 3.0 Connector System, 43045-1000 (alternative finishes: 43045-100x), 5 Pins per row (https://www.molex.com/pdm_docs/sd/430450201_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 horizontal -0 -10 -10 -Connector_Molex -Molex_Micro-Fit_3.0_43045-1010_2x05-1MP_P3.00mm_Horizontal -Molex Micro-Fit 3.0 Connector System, 43045-1010 (compatible alternatives: 43045-1011, 43045-1009), 5 Pins per row (http://www.molex.com/pdm_docs/sd/430450210_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 top entry -0 -12 -11 -Connector_Molex -Molex_Micro-Fit_3.0_43045-1012_2x05_P3.00mm_Vertical -Molex Micro-Fit 3.0 Connector System, 43045-1012 (compatible alternatives: 43045-1013, 43045-1024), 5 Pins per row (http://www.molex.com/pdm_docs/sd/430450212_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 side entry -0 -10 -10 -Connector_Molex -Molex_Micro-Fit_3.0_43045-1015_2x05_P3.00mm_Vertical -Molex Micro-Fit 3.0 Connector System, 43045-1015 (compatible alternatives: 43045-1016, 43045-1017), 5 Pins per row (http://www.molex.com/pdm_docs/sd/430450217_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 side entry -0 -10 -10 -Connector_Molex -Molex_Micro-Fit_3.0_43045-1018_2x05-1MP_P3.00mm_Vertical -Molex Micro-Fit 3.0 Connector System, 43045-1018 (compatible alternatives: 43045-1019, 43045-1020), 5 Pins per row (http://www.molex.com/pdm_docs/sd/430450218_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 side entry -0 -12 -11 -Connector_Molex -Molex_Micro-Fit_3.0_43045-1021_2x05-1MP_P3.00mm_Horizontal -Molex Micro-Fit 3.0 Connector System, 43045-1021 (alternative finishes: 43045-102x), 5 Pins per row (https://www.molex.com/pdm_docs/sd/430450221_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 horizontal -0 -12 -11 -Connector_Molex -Molex_Micro-Fit_3.0_43045-1200_2x06_P3.00mm_Horizontal -Molex Micro-Fit 3.0 Connector System, 43045-1200 (alternative finishes: 43045-120x), 6 Pins per row (https://www.molex.com/pdm_docs/sd/430450201_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 horizontal -0 -12 -12 -Connector_Molex -Molex_Micro-Fit_3.0_43045-1210_2x06-1MP_P3.00mm_Horizontal -Molex Micro-Fit 3.0 Connector System, 43045-1210 (compatible alternatives: 43045-1211, 43045-1209), 6 Pins per row (http://www.molex.com/pdm_docs/sd/430450210_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 top entry -0 -14 -13 -Connector_Molex -Molex_Micro-Fit_3.0_43045-1212_2x06_P3.00mm_Vertical -Molex Micro-Fit 3.0 Connector System, 43045-1212 (compatible alternatives: 43045-1213, 43045-1224), 6 Pins per row (http://www.molex.com/pdm_docs/sd/430450212_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 side entry -0 -12 -12 -Connector_Molex -Molex_Micro-Fit_3.0_43045-1215_2x06_P3.00mm_Vertical -Molex Micro-Fit 3.0 Connector System, 43045-1215 (compatible alternatives: 43045-1216, 43045-1217), 6 Pins per row (http://www.molex.com/pdm_docs/sd/430450217_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 side entry -0 -12 -12 -Connector_Molex -Molex_Micro-Fit_3.0_43045-1218_2x06-1MP_P3.00mm_Vertical -Molex Micro-Fit 3.0 Connector System, 43045-1218 (compatible alternatives: 43045-1219, 43045-1220), 6 Pins per row (http://www.molex.com/pdm_docs/sd/430450218_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 side entry -0 -14 -13 -Connector_Molex -Molex_Micro-Fit_3.0_43045-1221_2x06-1MP_P3.00mm_Horizontal -Molex Micro-Fit 3.0 Connector System, 43045-1221 (alternative finishes: 43045-122x), 6 Pins per row (https://www.molex.com/pdm_docs/sd/430450221_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 horizontal -0 -14 -13 -Connector_Molex -Molex_Micro-Fit_3.0_43045-1400_2x07_P3.00mm_Horizontal -Molex Micro-Fit 3.0 Connector System, 43045-1400 (alternative finishes: 43045-140x), 7 Pins per row (https://www.molex.com/pdm_docs/sd/430450201_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 horizontal -0 -14 -14 -Connector_Molex -Molex_Micro-Fit_3.0_43045-1410_2x07-1MP_P3.00mm_Horizontal -Molex Micro-Fit 3.0 Connector System, 43045-1410 (compatible alternatives: 43045-1411, 43045-1409), 7 Pins per row (http://www.molex.com/pdm_docs/sd/430450210_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 top entry -0 -16 -15 -Connector_Molex -Molex_Micro-Fit_3.0_43045-1412_2x07_P3.00mm_Vertical -Molex Micro-Fit 3.0 Connector System, 43045-1412 (compatible alternatives: 43045-1413, 43045-1424), 7 Pins per row (http://www.molex.com/pdm_docs/sd/430450212_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 side entry -0 -14 -14 -Connector_Molex -Molex_Micro-Fit_3.0_43045-1415_2x07_P3.00mm_Vertical -Molex Micro-Fit 3.0 Connector System, 43045-1415 (compatible alternatives: 43045-1416, 43045-1417), 7 Pins per row (http://www.molex.com/pdm_docs/sd/430450217_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 side entry -0 -14 -14 -Connector_Molex -Molex_Micro-Fit_3.0_43045-1418_2x07-1MP_P3.00mm_Vertical -Molex Micro-Fit 3.0 Connector System, 43045-1418 (compatible alternatives: 43045-1419, 43045-1420), 7 Pins per row (http://www.molex.com/pdm_docs/sd/430450218_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 side entry -0 -16 -15 -Connector_Molex -Molex_Micro-Fit_3.0_43045-1421_2x07-1MP_P3.00mm_Horizontal -Molex Micro-Fit 3.0 Connector System, 43045-1421 (alternative finishes: 43045-142x), 7 Pins per row (https://www.molex.com/pdm_docs/sd/430450221_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 horizontal -0 -16 -15 -Connector_Molex -Molex_Micro-Fit_3.0_43045-1600_2x08_P3.00mm_Horizontal -Molex Micro-Fit 3.0 Connector System, 43045-1600 (alternative finishes: 43045-160x), 8 Pins per row (https://www.molex.com/pdm_docs/sd/430450201_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 horizontal -0 -16 -16 -Connector_Molex -Molex_Micro-Fit_3.0_43045-1610_2x08-1MP_P3.00mm_Horizontal -Molex Micro-Fit 3.0 Connector System, 43045-1610 (compatible alternatives: 43045-1611, 43045-1609), 8 Pins per row (http://www.molex.com/pdm_docs/sd/430450210_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 top entry -0 -18 -17 -Connector_Molex -Molex_Micro-Fit_3.0_43045-1612_2x08_P3.00mm_Vertical -Molex Micro-Fit 3.0 Connector System, 43045-1612 (compatible alternatives: 43045-1613, 43045-1624), 8 Pins per row (http://www.molex.com/pdm_docs/sd/430450212_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 side entry -0 -16 -16 -Connector_Molex -Molex_Micro-Fit_3.0_43045-1615_2x08_P3.00mm_Vertical -Molex Micro-Fit 3.0 Connector System, 43045-1615 (compatible alternatives: 43045-1616, 43045-1617), 8 Pins per row (http://www.molex.com/pdm_docs/sd/430450217_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 side entry -0 -16 -16 -Connector_Molex -Molex_Micro-Fit_3.0_43045-1618_2x08-1MP_P3.00mm_Vertical -Molex Micro-Fit 3.0 Connector System, 43045-1618 (compatible alternatives: 43045-1619, 43045-1620), 8 Pins per row (http://www.molex.com/pdm_docs/sd/430450218_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 side entry -0 -18 -17 -Connector_Molex -Molex_Micro-Fit_3.0_43045-1621_2x08-1MP_P3.00mm_Horizontal -Molex Micro-Fit 3.0 Connector System, 43045-1621 (alternative finishes: 43045-162x), 8 Pins per row (https://www.molex.com/pdm_docs/sd/430450221_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 horizontal -0 -18 -17 -Connector_Molex -Molex_Micro-Fit_3.0_43045-1800_2x09_P3.00mm_Horizontal -Molex Micro-Fit 3.0 Connector System, 43045-1800 (alternative finishes: 43045-180x), 9 Pins per row (https://www.molex.com/pdm_docs/sd/430450201_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 horizontal -0 -18 -18 -Connector_Molex -Molex_Micro-Fit_3.0_43045-1810_2x09-1MP_P3.00mm_Horizontal -Molex Micro-Fit 3.0 Connector System, 43045-1810 (compatible alternatives: 43045-1811, 43045-1809), 9 Pins per row (http://www.molex.com/pdm_docs/sd/430450210_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 top entry -0 -20 -19 -Connector_Molex -Molex_Micro-Fit_3.0_43045-1812_2x09_P3.00mm_Vertical -Molex Micro-Fit 3.0 Connector System, 43045-1812 (compatible alternatives: 43045-1813, 43045-1824), 9 Pins per row (http://www.molex.com/pdm_docs/sd/430450212_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 side entry -0 -18 -18 -Connector_Molex -Molex_Micro-Fit_3.0_43045-1815_2x09_P3.00mm_Vertical -Molex Micro-Fit 3.0 Connector System, 43045-1815 (compatible alternatives: 43045-1816, 43045-1817), 9 Pins per row (http://www.molex.com/pdm_docs/sd/430450217_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 side entry -0 -18 -18 -Connector_Molex -Molex_Micro-Fit_3.0_43045-1818_2x09-1MP_P3.00mm_Vertical -Molex Micro-Fit 3.0 Connector System, 43045-1818 (compatible alternatives: 43045-1819, 43045-1820), 9 Pins per row (http://www.molex.com/pdm_docs/sd/430450218_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 side entry -0 -20 -19 -Connector_Molex -Molex_Micro-Fit_3.0_43045-1821_2x09-1MP_P3.00mm_Horizontal -Molex Micro-Fit 3.0 Connector System, 43045-1821 (alternative finishes: 43045-182x), 9 Pins per row (https://www.molex.com/pdm_docs/sd/430450221_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 horizontal -0 -20 -19 -Connector_Molex -Molex_Micro-Fit_3.0_43045-2000_2x10_P3.00mm_Horizontal -Molex Micro-Fit 3.0 Connector System, 43045-2000 (alternative finishes: 43045-200x), 10 Pins per row (https://www.molex.com/pdm_docs/sd/430450201_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 horizontal -0 -20 -20 -Connector_Molex -Molex_Micro-Fit_3.0_43045-2010_2x10-1MP_P3.00mm_Horizontal -Molex Micro-Fit 3.0 Connector System, 43045-2010 (compatible alternatives: 43045-2011, 43045-2009), 10 Pins per row (http://www.molex.com/pdm_docs/sd/430450210_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 top entry -0 -22 -21 -Connector_Molex -Molex_Micro-Fit_3.0_43045-2012_2x10_P3.00mm_Vertical -Molex Micro-Fit 3.0 Connector System, 43045-2012 (compatible alternatives: 43045-2013, 43045-2024), 10 Pins per row (http://www.molex.com/pdm_docs/sd/430450212_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 side entry -0 -20 -20 -Connector_Molex -Molex_Micro-Fit_3.0_43045-2015_2x10_P3.00mm_Vertical -Molex Micro-Fit 3.0 Connector System, 43045-2015 (compatible alternatives: 43045-2016, 43045-2017), 10 Pins per row (http://www.molex.com/pdm_docs/sd/430450217_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 side entry -0 -20 -20 -Connector_Molex -Molex_Micro-Fit_3.0_43045-2018_2x10-1MP_P3.00mm_Vertical -Molex Micro-Fit 3.0 Connector System, 43045-2018 (compatible alternatives: 43045-2019, 43045-2020), 10 Pins per row (http://www.molex.com/pdm_docs/sd/430450218_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 side entry -0 -22 -21 -Connector_Molex -Molex_Micro-Fit_3.0_43045-2021_2x10-1MP_P3.00mm_Horizontal -Molex Micro-Fit 3.0 Connector System, 43045-2021 (alternative finishes: 43045-202x), 10 Pins per row (https://www.molex.com/pdm_docs/sd/430450221_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 horizontal -0 -22 -21 -Connector_Molex -Molex_Micro-Fit_3.0_43045-2200_2x11_P3.00mm_Horizontal -Molex Micro-Fit 3.0 Connector System, 43045-2200 (alternative finishes: 43045-220x), 11 Pins per row (https://www.molex.com/pdm_docs/sd/430450201_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 horizontal -0 -22 -22 -Connector_Molex -Molex_Micro-Fit_3.0_43045-2210_2x11-1MP_P3.00mm_Horizontal -Molex Micro-Fit 3.0 Connector System, 43045-2210 (compatible alternatives: 43045-2211, 43045-2209), 11 Pins per row (http://www.molex.com/pdm_docs/sd/430450210_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 top entry -0 -24 -23 -Connector_Molex -Molex_Micro-Fit_3.0_43045-2212_2x11_P3.00mm_Vertical -Molex Micro-Fit 3.0 Connector System, 43045-2212 (compatible alternatives: 43045-2213, 43045-2224), 11 Pins per row (http://www.molex.com/pdm_docs/sd/430450212_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 side entry -0 -22 -22 -Connector_Molex -Molex_Micro-Fit_3.0_43045-2215_2x11_P3.00mm_Vertical -Molex Micro-Fit 3.0 Connector System, 43045-2215 (compatible alternatives: 43045-2216, 43045-2217), 11 Pins per row (http://www.molex.com/pdm_docs/sd/430450217_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 side entry -0 -22 -22 -Connector_Molex -Molex_Micro-Fit_3.0_43045-2218_2x11-1MP_P3.00mm_Vertical -Molex Micro-Fit 3.0 Connector System, 43045-2218 (compatible alternatives: 43045-2219, 43045-2220), 11 Pins per row (http://www.molex.com/pdm_docs/sd/430450218_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 side entry -0 -24 -23 -Connector_Molex -Molex_Micro-Fit_3.0_43045-2221_2x11-1MP_P3.00mm_Horizontal -Molex Micro-Fit 3.0 Connector System, 43045-2221 (alternative finishes: 43045-222x), 11 Pins per row (https://www.molex.com/pdm_docs/sd/430450221_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 horizontal -0 -24 -23 -Connector_Molex -Molex_Micro-Fit_3.0_43045-2400_2x12_P3.00mm_Horizontal -Molex Micro-Fit 3.0 Connector System, 43045-2400 (alternative finishes: 43045-240x), 12 Pins per row (https://www.molex.com/pdm_docs/sd/430450201_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 horizontal -0 -24 -24 -Connector_Molex -Molex_Micro-Fit_3.0_43045-2410_2x12-1MP_P3.00mm_Horizontal -Molex Micro-Fit 3.0 Connector System, 43045-2410 (compatible alternatives: 43045-2411, 43045-2409), 12 Pins per row (http://www.molex.com/pdm_docs/sd/430450210_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 top entry -0 -26 -25 -Connector_Molex -Molex_Micro-Fit_3.0_43045-2412_2x12_P3.00mm_Vertical -Molex Micro-Fit 3.0 Connector System, 43045-2412 (compatible alternatives: 43045-2413, 43045-2424), 12 Pins per row (http://www.molex.com/pdm_docs/sd/430450212_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 side entry -0 -24 -24 -Connector_Molex -Molex_Micro-Fit_3.0_43045-2415_2x12_P3.00mm_Vertical -Molex Micro-Fit 3.0 Connector System, 43045-2415 (compatible alternatives: 43045-2416, 43045-2417), 12 Pins per row (http://www.molex.com/pdm_docs/sd/430450217_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 side entry -0 -24 -24 -Connector_Molex -Molex_Micro-Fit_3.0_43045-2418_2x12-1MP_P3.00mm_Vertical -Molex Micro-Fit 3.0 Connector System, 43045-2418 (compatible alternatives: 43045-2419, 43045-2420), 12 Pins per row (http://www.molex.com/pdm_docs/sd/430450218_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 side entry -0 -26 -25 -Connector_Molex -Molex_Micro-Fit_3.0_43045-2421_2x12-1MP_P3.00mm_Horizontal -Molex Micro-Fit 3.0 Connector System, 43045-2421 (alternative finishes: 43045-242x), 12 Pins per row (https://www.molex.com/pdm_docs/sd/430450221_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 horizontal -0 -26 -25 -Connector_Molex -Molex_Micro-Fit_3.0_43650-0200_1x02_P3.00mm_Horizontal -Molex Micro-Fit 3.0 Connector System, 43650-0200 (compatible alternatives: 43650-0201, 43650-0202), 2 Pins per row (https://www.molex.com/pdm_docs/sd/436500300_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 top entry -0 -2 -2 -Connector_Molex -Molex_Micro-Fit_3.0_43650-0210_1x02-1MP_P3.00mm_Horizontal -Molex Micro-Fit 3.0 Connector System, 43650-0210 (compatible alternatives: 43650-0211, 43650-0209), 2 Pins per row (https://www.molex.com/pdm_docs/sd/436500210_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 horizontal -0 -4 -3 -Connector_Molex -Molex_Micro-Fit_3.0_43650-0210_1x02-1MP_P3.00mm_Horizontal_PnP -Molex Micro-Fit 3.0 Connector System, 43650-0210 (compatible alternatives: 43650-0211, 43650-0209), 2 Pins per row (https://www.molex.com/pdm_docs/sd/436500210_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 horizontal -0 -4 -3 -Connector_Molex -Molex_Micro-Fit_3.0_43650-0215_1x02_P3.00mm_Vertical -Molex Micro-Fit 3.0 Connector System, 43650-0215 (compatible alternatives: 43650-0216, 43650-0217), 2 Pins per row (http://www.molex.com/pdm_docs/sd/436500215_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 vertical -0 -2 -2 -Connector_Molex -Molex_Micro-Fit_3.0_43650-0221_1x02_P3.00mm_Vertical -Molex Micro-Fit 3.0 Connector System, 43650-0221 (compatible alternatives: 43650-0222, 43650-0223), 2 Pins per row (https://www.molex.com/pdm_docs/sd/436500221_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 vertical -0 -2 -2 -Connector_Molex -Molex_Micro-Fit_3.0_43650-0224_1x02-1MP_P3.00mm_Vertical -Molex Micro-Fit 3.0 Connector System, 43650-0224 (compatible alternatives: 43650-0225, 43650-0226), 2 Pins per row (https://www.molex.com/pdm_docs/sd/436500224_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 vertical -0 -4 -3 -Connector_Molex -Molex_Micro-Fit_3.0_43650-0300_1x03_P3.00mm_Horizontal -Molex Micro-Fit 3.0 Connector System, 43650-0300 (compatible alternatives: 43650-0301, 43650-0302), 3 Pins per row (https://www.molex.com/pdm_docs/sd/436500300_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 top entry -0 -3 -3 -Connector_Molex -Molex_Micro-Fit_3.0_43650-0310_1x03-1MP_P3.00mm_Horizontal -Molex Micro-Fit 3.0 Connector System, 43650-0310 (compatible alternatives: 43650-0311, 43650-0309), 3 Pins per row (https://www.molex.com/pdm_docs/sd/436500210_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 horizontal -0 -5 -4 -Connector_Molex -Molex_Micro-Fit_3.0_43650-0310_1x03-1MP_P3.00mm_Horizontal_PnP -Molex Micro-Fit 3.0 Connector System, 43650-0310 (compatible alternatives: 43650-0311, 43650-0309), 3 Pins per row (https://www.molex.com/pdm_docs/sd/436500210_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 horizontal -0 -5 -4 -Connector_Molex -Molex_Micro-Fit_3.0_43650-0315_1x03_P3.00mm_Vertical -Molex Micro-Fit 3.0 Connector System, 43650-0315 (compatible alternatives: 43650-0316, 43650-0317), 3 Pins per row (http://www.molex.com/pdm_docs/sd/436500215_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 vertical -0 -3 -3 -Connector_Molex -Molex_Micro-Fit_3.0_43650-0321_1x03_P3.00mm_Vertical -Molex Micro-Fit 3.0 Connector System, 43650-0321 (compatible alternatives: 43650-0322, 43650-0323), 3 Pins per row (https://www.molex.com/pdm_docs/sd/436500221_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 vertical -0 -3 -3 -Connector_Molex -Molex_Micro-Fit_3.0_43650-0324_1x03-1MP_P3.00mm_Vertical -Molex Micro-Fit 3.0 Connector System, 43650-0324 (compatible alternatives: 43650-0325, 43650-0326), 3 Pins per row (https://www.molex.com/pdm_docs/sd/436500224_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 vertical -0 -5 -4 -Connector_Molex -Molex_Micro-Fit_3.0_43650-0400_1x04_P3.00mm_Horizontal -Molex Micro-Fit 3.0 Connector System, 43650-0400 (compatible alternatives: 43650-0401, 43650-0402), 4 Pins per row (https://www.molex.com/pdm_docs/sd/436500300_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 top entry -0 -4 -4 -Connector_Molex -Molex_Micro-Fit_3.0_43650-0410_1x04-1MP_P3.00mm_Horizontal -Molex Micro-Fit 3.0 Connector System, 43650-0410 (compatible alternatives: 43650-0411, 43650-0409), 4 Pins per row (https://www.molex.com/pdm_docs/sd/436500210_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 horizontal -0 -6 -5 -Connector_Molex -Molex_Micro-Fit_3.0_43650-0410_1x04-1MP_P3.00mm_Horizontal_PnP -Molex Micro-Fit 3.0 Connector System, 43650-0410 (compatible alternatives: 43650-0411, 43650-0409), 4 Pins per row (https://www.molex.com/pdm_docs/sd/436500210_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 horizontal -0 -6 -5 -Connector_Molex -Molex_Micro-Fit_3.0_43650-0415_1x04_P3.00mm_Vertical -Molex Micro-Fit 3.0 Connector System, 43650-0415 (compatible alternatives: 43650-0416, 43650-0417), 4 Pins per row (http://www.molex.com/pdm_docs/sd/436500215_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 vertical -0 -4 -4 -Connector_Molex -Molex_Micro-Fit_3.0_43650-0421_1x04_P3.00mm_Vertical -Molex Micro-Fit 3.0 Connector System, 43650-0421 (compatible alternatives: 43650-0422, 43650-0423), 4 Pins per row (https://www.molex.com/pdm_docs/sd/436500221_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 vertical -0 -4 -4 -Connector_Molex -Molex_Micro-Fit_3.0_43650-0424_1x04-1MP_P3.00mm_Vertical -Molex Micro-Fit 3.0 Connector System, 43650-0424 (compatible alternatives: 43650-0425, 43650-0426), 4 Pins per row (https://www.molex.com/pdm_docs/sd/436500224_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 vertical -0 -6 -5 -Connector_Molex -Molex_Micro-Fit_3.0_43650-0500_1x05_P3.00mm_Horizontal -Molex Micro-Fit 3.0 Connector System, 43650-0500 (compatible alternatives: 43650-0501, 43650-0502), 5 Pins per row (https://www.molex.com/pdm_docs/sd/436500300_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 top entry -0 -5 -5 -Connector_Molex -Molex_Micro-Fit_3.0_43650-0510_1x05-1MP_P3.00mm_Horizontal -Molex Micro-Fit 3.0 Connector System, 43650-0510 (compatible alternatives: 43650-0511, 43650-0509), 5 Pins per row (https://www.molex.com/pdm_docs/sd/436500210_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 horizontal -0 -7 -6 -Connector_Molex -Molex_Micro-Fit_3.0_43650-0510_1x05-1MP_P3.00mm_Horizontal_PnP -Molex Micro-Fit 3.0 Connector System, 43650-0510 (compatible alternatives: 43650-0511, 43650-0509), 5 Pins per row (https://www.molex.com/pdm_docs/sd/436500210_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 horizontal -0 -7 -6 -Connector_Molex -Molex_Micro-Fit_3.0_43650-0515_1x05_P3.00mm_Vertical -Molex Micro-Fit 3.0 Connector System, 43650-0515 (compatible alternatives: 43650-0516, 43650-0517), 5 Pins per row (http://www.molex.com/pdm_docs/sd/436500215_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 vertical -0 -5 -5 -Connector_Molex -Molex_Micro-Fit_3.0_43650-0521_1x05_P3.00mm_Vertical -Molex Micro-Fit 3.0 Connector System, 43650-0521 (compatible alternatives: 43650-0522, 43650-0523), 5 Pins per row (https://www.molex.com/pdm_docs/sd/436500221_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 vertical -0 -5 -5 -Connector_Molex -Molex_Micro-Fit_3.0_43650-0524_1x05-1MP_P3.00mm_Vertical -Molex Micro-Fit 3.0 Connector System, 43650-0524 (compatible alternatives: 43650-0525, 43650-0526), 5 Pins per row (https://www.molex.com/pdm_docs/sd/436500224_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 vertical -0 -7 -6 -Connector_Molex -Molex_Micro-Fit_3.0_43650-0600_1x06_P3.00mm_Horizontal -Molex Micro-Fit 3.0 Connector System, 43650-0600 (compatible alternatives: 43650-0601, 43650-0602), 6 Pins per row (https://www.molex.com/pdm_docs/sd/436500300_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 top entry -0 -6 -6 -Connector_Molex -Molex_Micro-Fit_3.0_43650-0610_1x06-1MP_P3.00mm_Horizontal -Molex Micro-Fit 3.0 Connector System, 43650-0610 (compatible alternatives: 43650-0611, 43650-0609), 6 Pins per row (https://www.molex.com/pdm_docs/sd/436500210_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 horizontal -0 -8 -7 -Connector_Molex -Molex_Micro-Fit_3.0_43650-0610_1x06-1MP_P3.00mm_Horizontal_PnP -Molex Micro-Fit 3.0 Connector System, 43650-0610 (compatible alternatives: 43650-0611, 43650-0609), 6 Pins per row (https://www.molex.com/pdm_docs/sd/436500210_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 horizontal -0 -8 -7 -Connector_Molex -Molex_Micro-Fit_3.0_43650-0615_1x06_P3.00mm_Vertical -Molex Micro-Fit 3.0 Connector System, 43650-0615 (compatible alternatives: 43650-0616, 43650-0617), 6 Pins per row (http://www.molex.com/pdm_docs/sd/436500215_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 vertical -0 -6 -6 -Connector_Molex -Molex_Micro-Fit_3.0_43650-0621_1x06_P3.00mm_Vertical -Molex Micro-Fit 3.0 Connector System, 43650-0621 (compatible alternatives: 43650-0622, 43650-0623), 6 Pins per row (https://www.molex.com/pdm_docs/sd/436500221_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 vertical -0 -6 -6 -Connector_Molex -Molex_Micro-Fit_3.0_43650-0624_1x06-1MP_P3.00mm_Vertical -Molex Micro-Fit 3.0 Connector System, 43650-0624 (compatible alternatives: 43650-0625, 43650-0626), 6 Pins per row (https://www.molex.com/pdm_docs/sd/436500224_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 vertical -0 -8 -7 -Connector_Molex -Molex_Micro-Fit_3.0_43650-0700_1x07_P3.00mm_Horizontal -Molex Micro-Fit 3.0 Connector System, 43650-0700 (compatible alternatives: 43650-0701, 43650-0702), 7 Pins per row (https://www.molex.com/pdm_docs/sd/436500300_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 top entry -0 -7 -7 -Connector_Molex -Molex_Micro-Fit_3.0_43650-0710_1x07-1MP_P3.00mm_Horizontal -Molex Micro-Fit 3.0 Connector System, 43650-0710 (compatible alternatives: 43650-0711, 43650-0709), 7 Pins per row (https://www.molex.com/pdm_docs/sd/436500210_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 horizontal -0 -9 -8 -Connector_Molex -Molex_Micro-Fit_3.0_43650-0710_1x07-1MP_P3.00mm_Horizontal_PnP -Molex Micro-Fit 3.0 Connector System, 43650-0710 (compatible alternatives: 43650-0711, 43650-0709), 7 Pins per row (https://www.molex.com/pdm_docs/sd/436500210_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 horizontal -0 -9 -8 -Connector_Molex -Molex_Micro-Fit_3.0_43650-0715_1x07_P3.00mm_Vertical -Molex Micro-Fit 3.0 Connector System, 43650-0715 (compatible alternatives: 43650-0716, 43650-0717), 7 Pins per row (http://www.molex.com/pdm_docs/sd/436500215_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 vertical -0 -7 -7 -Connector_Molex -Molex_Micro-Fit_3.0_43650-0721_1x07_P3.00mm_Vertical -Molex Micro-Fit 3.0 Connector System, 43650-0721 (compatible alternatives: 43650-0722, 43650-0723), 7 Pins per row (https://www.molex.com/pdm_docs/sd/436500221_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 vertical -0 -7 -7 -Connector_Molex -Molex_Micro-Fit_3.0_43650-0724_1x07-1MP_P3.00mm_Vertical -Molex Micro-Fit 3.0 Connector System, 43650-0724 (compatible alternatives: 43650-0725, 43650-0726), 7 Pins per row (https://www.molex.com/pdm_docs/sd/436500224_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 vertical -0 -9 -8 -Connector_Molex -Molex_Micro-Fit_3.0_43650-0800_1x08_P3.00mm_Horizontal -Molex Micro-Fit 3.0 Connector System, 43650-0800 (compatible alternatives: 43650-0801, 43650-0802), 8 Pins per row (https://www.molex.com/pdm_docs/sd/436500300_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 top entry -0 -8 -8 -Connector_Molex -Molex_Micro-Fit_3.0_43650-0810_1x08-1MP_P3.00mm_Horizontal -Molex Micro-Fit 3.0 Connector System, 43650-0810 (compatible alternatives: 43650-0811, 43650-0809), 8 Pins per row (https://www.molex.com/pdm_docs/sd/436500210_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 horizontal -0 -10 -9 -Connector_Molex -Molex_Micro-Fit_3.0_43650-0810_1x08-1MP_P3.00mm_Horizontal_PnP -Molex Micro-Fit 3.0 Connector System, 43650-0810 (compatible alternatives: 43650-0811, 43650-0809), 8 Pins per row (https://www.molex.com/pdm_docs/sd/436500210_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 horizontal -0 -10 -9 -Connector_Molex -Molex_Micro-Fit_3.0_43650-0815_1x08_P3.00mm_Vertical -Molex Micro-Fit 3.0 Connector System, 43650-0815 (compatible alternatives: 43650-0816, 43650-0817), 8 Pins per row (http://www.molex.com/pdm_docs/sd/436500215_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 vertical -0 -8 -8 -Connector_Molex -Molex_Micro-Fit_3.0_43650-0821_1x08_P3.00mm_Vertical -Molex Micro-Fit 3.0 Connector System, 43650-0821 (compatible alternatives: 43650-0822, 43650-0823), 8 Pins per row (https://www.molex.com/pdm_docs/sd/436500221_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 vertical -0 -8 -8 -Connector_Molex -Molex_Micro-Fit_3.0_43650-0824_1x08-1MP_P3.00mm_Vertical -Molex Micro-Fit 3.0 Connector System, 43650-0824 (compatible alternatives: 43650-0825, 43650-0826), 8 Pins per row (https://www.molex.com/pdm_docs/sd/436500224_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 vertical -0 -10 -9 -Connector_Molex -Molex_Micro-Fit_3.0_43650-0900_1x09_P3.00mm_Horizontal -Molex Micro-Fit 3.0 Connector System, 43650-0900 (compatible alternatives: 43650-0901, 43650-0902), 9 Pins per row (https://www.molex.com/pdm_docs/sd/436500300_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 top entry -0 -9 -9 -Connector_Molex -Molex_Micro-Fit_3.0_43650-0910_1x09-1MP_P3.00mm_Horizontal -Molex Micro-Fit 3.0 Connector System, 43650-0910 (compatible alternatives: 43650-0911, 43650-0909), 9 Pins per row (https://www.molex.com/pdm_docs/sd/436500210_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 horizontal -0 -11 -10 -Connector_Molex -Molex_Micro-Fit_3.0_43650-0910_1x09-1MP_P3.00mm_Horizontal_PnP -Molex Micro-Fit 3.0 Connector System, 43650-0910 (compatible alternatives: 43650-0911, 43650-0909), 9 Pins per row (https://www.molex.com/pdm_docs/sd/436500210_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 horizontal -0 -11 -10 -Connector_Molex -Molex_Micro-Fit_3.0_43650-0915_1x09_P3.00mm_Vertical -Molex Micro-Fit 3.0 Connector System, 43650-0915 (compatible alternatives: 43650-0916, 43650-0917), 9 Pins per row (http://www.molex.com/pdm_docs/sd/436500215_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 vertical -0 -9 -9 -Connector_Molex -Molex_Micro-Fit_3.0_43650-0921_1x09_P3.00mm_Vertical -Molex Micro-Fit 3.0 Connector System, 43650-0921 (compatible alternatives: 43650-0922, 43650-0923), 9 Pins per row (https://www.molex.com/pdm_docs/sd/436500221_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 vertical -0 -9 -9 -Connector_Molex -Molex_Micro-Fit_3.0_43650-0924_1x09-1MP_P3.00mm_Vertical -Molex Micro-Fit 3.0 Connector System, 43650-0924 (compatible alternatives: 43650-0925, 43650-0926), 9 Pins per row (https://www.molex.com/pdm_docs/sd/436500224_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 vertical -0 -11 -10 -Connector_Molex -Molex_Micro-Fit_3.0_43650-1000_1x10_P3.00mm_Horizontal -Molex Micro-Fit 3.0 Connector System, 43650-1000 (compatible alternatives: 43650-1001, 43650-1002), 10 Pins per row (https://www.molex.com/pdm_docs/sd/436500300_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 top entry -0 -10 -10 -Connector_Molex -Molex_Micro-Fit_3.0_43650-1010_1x10-1MP_P3.00mm_Horizontal -Molex Micro-Fit 3.0 Connector System, 43650-1010 (compatible alternatives: 43650-1011, 43650-1009), 10 Pins per row (https://www.molex.com/pdm_docs/sd/436500210_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 horizontal -0 -12 -11 -Connector_Molex -Molex_Micro-Fit_3.0_43650-1010_1x10-1MP_P3.00mm_Horizontal_PnP -Molex Micro-Fit 3.0 Connector System, 43650-1010 (compatible alternatives: 43650-1011, 43650-1009), 10 Pins per row (https://www.molex.com/pdm_docs/sd/436500210_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 horizontal -0 -12 -11 -Connector_Molex -Molex_Micro-Fit_3.0_43650-1015_1x10_P3.00mm_Vertical -Molex Micro-Fit 3.0 Connector System, 43650-1015 (compatible alternatives: 43650-1016, 43650-1017), 10 Pins per row (http://www.molex.com/pdm_docs/sd/436500215_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 vertical -0 -10 -10 -Connector_Molex -Molex_Micro-Fit_3.0_43650-1021_1x10_P3.00mm_Vertical -Molex Micro-Fit 3.0 Connector System, 43650-1021 (compatible alternatives: 43650-1022, 43650-1023), 10 Pins per row (https://www.molex.com/pdm_docs/sd/436500221_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 vertical -0 -10 -10 -Connector_Molex -Molex_Micro-Fit_3.0_43650-1024_1x10-1MP_P3.00mm_Vertical -Molex Micro-Fit 3.0 Connector System, 43650-1024 (compatible alternatives: 43650-1025, 43650-1026), 10 Pins per row (https://www.molex.com/pdm_docs/sd/436500224_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 vertical -0 -12 -11 -Connector_Molex -Molex_Micro-Fit_3.0_43650-1100_1x11_P3.00mm_Horizontal -Molex Micro-Fit 3.0 Connector System, 43650-1100 (compatible alternatives: 43650-1101, 43650-1102), 11 Pins per row (https://www.molex.com/pdm_docs/sd/436500300_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 top entry -0 -11 -11 -Connector_Molex -Molex_Micro-Fit_3.0_43650-1110_1x11-1MP_P3.00mm_Horizontal -Molex Micro-Fit 3.0 Connector System, 43650-1110 (compatible alternatives: 43650-1111, 43650-1109), 11 Pins per row (https://www.molex.com/pdm_docs/sd/436500210_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 horizontal -0 -13 -12 -Connector_Molex -Molex_Micro-Fit_3.0_43650-1110_1x11-1MP_P3.00mm_Horizontal_PnP -Molex Micro-Fit 3.0 Connector System, 43650-1110 (compatible alternatives: 43650-1111, 43650-1109), 11 Pins per row (https://www.molex.com/pdm_docs/sd/436500210_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 horizontal -0 -13 -12 -Connector_Molex -Molex_Micro-Fit_3.0_43650-1115_1x11_P3.00mm_Vertical -Molex Micro-Fit 3.0 Connector System, 43650-1115 (compatible alternatives: 43650-1116, 43650-1117), 11 Pins per row (http://www.molex.com/pdm_docs/sd/436500215_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 vertical -0 -11 -11 -Connector_Molex -Molex_Micro-Fit_3.0_43650-1121_1x11_P3.00mm_Vertical -Molex Micro-Fit 3.0 Connector System, 43650-1121 (compatible alternatives: 43650-1122, 43650-1123), 11 Pins per row (https://www.molex.com/pdm_docs/sd/436500221_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 vertical -0 -11 -11 -Connector_Molex -Molex_Micro-Fit_3.0_43650-1124_1x11-1MP_P3.00mm_Vertical -Molex Micro-Fit 3.0 Connector System, 43650-1124 (compatible alternatives: 43650-1125, 43650-1126), 11 Pins per row (https://www.molex.com/pdm_docs/sd/436500224_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 vertical -0 -13 -12 -Connector_Molex -Molex_Micro-Fit_3.0_43650-1200_1x12_P3.00mm_Horizontal -Molex Micro-Fit 3.0 Connector System, 43650-1200 (compatible alternatives: 43650-1201, 43650-1202), 12 Pins per row (https://www.molex.com/pdm_docs/sd/436500300_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 top entry -0 -12 -12 -Connector_Molex -Molex_Micro-Fit_3.0_43650-1210_1x12-1MP_P3.00mm_Horizontal -Molex Micro-Fit 3.0 Connector System, 43650-1210 (compatible alternatives: 43650-1211, 43650-1209), 12 Pins per row (https://www.molex.com/pdm_docs/sd/436500210_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 horizontal -0 -14 -13 -Connector_Molex -Molex_Micro-Fit_3.0_43650-1210_1x12-1MP_P3.00mm_Horizontal_PnP -Molex Micro-Fit 3.0 Connector System, 43650-1210 (compatible alternatives: 43650-1211, 43650-1209), 12 Pins per row (https://www.molex.com/pdm_docs/sd/436500210_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 horizontal -0 -14 -13 -Connector_Molex -Molex_Micro-Fit_3.0_43650-1215_1x12_P3.00mm_Vertical -Molex Micro-Fit 3.0 Connector System, 43650-1215 (compatible alternatives: 43650-1216, 43650-1217), 12 Pins per row (http://www.molex.com/pdm_docs/sd/436500215_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 vertical -0 -12 -12 -Connector_Molex -Molex_Micro-Fit_3.0_43650-1221_1x12_P3.00mm_Vertical -Molex Micro-Fit 3.0 Connector System, 43650-1221 (compatible alternatives: 43650-1222, 43650-1223), 12 Pins per row (https://www.molex.com/pdm_docs/sd/436500221_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 vertical -0 -12 -12 -Connector_Molex -Molex_Micro-Fit_3.0_43650-1224_1x12-1MP_P3.00mm_Vertical -Molex Micro-Fit 3.0 Connector System, 43650-1224 (compatible alternatives: 43650-1225, 43650-1226), 12 Pins per row (https://www.molex.com/pdm_docs/sd/436500224_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Fit_3.0 vertical -0 -14 -13 -Connector_Molex -Molex_Micro-Latch_53253-0270_1x02_P2.00mm_Vertical -Molex Micro-Latch Wire-to-Board Connector System, 53253-0270 (compatible alternatives: 53253-0250), 2 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Latch side entry -0 -2 -2 -Connector_Molex -Molex_Micro-Latch_53253-0370_1x03_P2.00mm_Vertical -Molex Micro-Latch Wire-to-Board Connector System, 53253-0370 (compatible alternatives: 53253-0350), 3 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Latch side entry -0 -3 -3 -Connector_Molex -Molex_Micro-Latch_53253-0470_1x04_P2.00mm_Vertical -Molex Micro-Latch Wire-to-Board Connector System, 53253-0470 (compatible alternatives: 53253-0450), 4 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Latch side entry -0 -4 -4 -Connector_Molex -Molex_Micro-Latch_53253-0570_1x05_P2.00mm_Vertical -Molex Micro-Latch Wire-to-Board Connector System, 53253-0570 (compatible alternatives: 53253-0550), 5 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Latch side entry -0 -5 -5 -Connector_Molex -Molex_Micro-Latch_53253-0670_1x06_P2.00mm_Vertical -Molex Micro-Latch Wire-to-Board Connector System, 53253-0670 (compatible alternatives: 53253-0650), 6 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Latch side entry -0 -6 -6 -Connector_Molex -Molex_Micro-Latch_53253-0770_1x07_P2.00mm_Vertical -Molex Micro-Latch Wire-to-Board Connector System, 53253-0770 (compatible alternatives: 53253-0750), 7 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Latch side entry -0 -7 -7 -Connector_Molex -Molex_Micro-Latch_53253-0870_1x08_P2.00mm_Vertical -Molex Micro-Latch Wire-to-Board Connector System, 53253-0870 (compatible alternatives: 53253-0850), 8 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Latch side entry -0 -8 -8 -Connector_Molex -Molex_Micro-Latch_53253-0970_1x09_P2.00mm_Vertical -Molex Micro-Latch Wire-to-Board Connector System, 53253-0970 (compatible alternatives: 53253-0950), 9 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Latch side entry -0 -9 -9 -Connector_Molex -Molex_Micro-Latch_53253-1070_1x10_P2.00mm_Vertical -Molex Micro-Latch Wire-to-Board Connector System, 53253-1070 (compatible alternatives: 53253-1050), 10 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Latch side entry -0 -10 -10 -Connector_Molex -Molex_Micro-Latch_53253-1170_1x11_P2.00mm_Vertical -Molex Micro-Latch Wire-to-Board Connector System, 53253-1170 (compatible alternatives: 53253-1150), 11 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Latch side entry -0 -11 -11 -Connector_Molex -Molex_Micro-Latch_53253-1270_1x12_P2.00mm_Vertical -Molex Micro-Latch Wire-to-Board Connector System, 53253-1270 (compatible alternatives: 53253-1250), 12 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Latch side entry -0 -12 -12 -Connector_Molex -Molex_Micro-Latch_53253-1370_1x13_P2.00mm_Vertical -Molex Micro-Latch Wire-to-Board Connector System, 53253-1370 (compatible alternatives: 53253-1350), 13 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Latch side entry -0 -13 -13 -Connector_Molex -Molex_Micro-Latch_53253-1470_1x14_P2.00mm_Vertical -Molex Micro-Latch Wire-to-Board Connector System, 53253-1470 (compatible alternatives: 53253-1450), 14 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Latch side entry -0 -14 -14 -Connector_Molex -Molex_Micro-Latch_53253-1570_1x15_P2.00mm_Vertical -Molex Micro-Latch Wire-to-Board Connector System, 53253-1570 (compatible alternatives: 53253-1550), 15 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Latch side entry -0 -15 -15 -Connector_Molex -Molex_Micro-Latch_53254-0270_1x02_P2.00mm_Horizontal -Molex Micro-Latch Wire-to-Board Connector System, 53254-0270 (compatible alternatives: 53254-0250), 2 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Latch top entry -0 -2 -2 -Connector_Molex -Molex_Micro-Latch_53254-0370_1x03_P2.00mm_Horizontal -Molex Micro-Latch Wire-to-Board Connector System, 53254-0370 (compatible alternatives: 53254-0350), 3 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Latch top entry -0 -3 -3 -Connector_Molex -Molex_Micro-Latch_53254-0470_1x04_P2.00mm_Horizontal -Molex Micro-Latch Wire-to-Board Connector System, 53254-0470 (compatible alternatives: 53254-0450), 4 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Latch top entry -0 -4 -4 -Connector_Molex -Molex_Micro-Latch_53254-0570_1x05_P2.00mm_Horizontal -Molex Micro-Latch Wire-to-Board Connector System, 53254-0570 (compatible alternatives: 53254-0550), 5 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Latch top entry -0 -5 -5 -Connector_Molex -Molex_Micro-Latch_53254-0670_1x06_P2.00mm_Horizontal -Molex Micro-Latch Wire-to-Board Connector System, 53254-0670 (compatible alternatives: 53254-0650), 6 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Latch top entry -0 -6 -6 -Connector_Molex -Molex_Micro-Latch_53254-0770_1x07_P2.00mm_Horizontal -Molex Micro-Latch Wire-to-Board Connector System, 53254-0770 (compatible alternatives: 53254-0750), 7 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Latch top entry -0 -7 -7 -Connector_Molex -Molex_Micro-Latch_53254-0870_1x08_P2.00mm_Horizontal -Molex Micro-Latch Wire-to-Board Connector System, 53254-0870 (compatible alternatives: 53254-0850), 8 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Latch top entry -0 -8 -8 -Connector_Molex -Molex_Micro-Latch_53254-0970_1x09_P2.00mm_Horizontal -Molex Micro-Latch Wire-to-Board Connector System, 53254-0970 (compatible alternatives: 53254-0950), 9 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Latch top entry -0 -9 -9 -Connector_Molex -Molex_Micro-Latch_53254-1070_1x10_P2.00mm_Horizontal -Molex Micro-Latch Wire-to-Board Connector System, 53254-1070 (compatible alternatives: 53254-1050), 10 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Latch top entry -0 -10 -10 -Connector_Molex -Molex_Micro-Latch_53254-1170_1x11_P2.00mm_Horizontal -Molex Micro-Latch Wire-to-Board Connector System, 53254-1170 (compatible alternatives: 53254-1150), 11 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Latch top entry -0 -11 -11 -Connector_Molex -Molex_Micro-Latch_53254-1270_1x12_P2.00mm_Horizontal -Molex Micro-Latch Wire-to-Board Connector System, 53254-1270 (compatible alternatives: 53254-1250), 12 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Latch top entry -0 -12 -12 -Connector_Molex -Molex_Micro-Latch_53254-1370_1x13_P2.00mm_Horizontal -Molex Micro-Latch Wire-to-Board Connector System, 53254-1370 (compatible alternatives: 53254-1350), 13 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Latch top entry -0 -13 -13 -Connector_Molex -Molex_Micro-Latch_53254-1470_1x14_P2.00mm_Horizontal -Molex Micro-Latch Wire-to-Board Connector System, 53254-1470 (compatible alternatives: 53254-1450), 14 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Latch top entry -0 -14 -14 -Connector_Molex -Molex_Micro-Latch_53254-1570_1x15_P2.00mm_Horizontal -Molex Micro-Latch Wire-to-Board Connector System, 53254-1570 (compatible alternatives: 53254-1550), 15 Pins per row (http://www.molex.com/pdm_docs/sd/532530770_sd.pdf), generated with kicad-footprint-generator -connector Molex Micro-Latch top entry -0 -15 -15 -Connector_Molex -Molex_MicroClasp_55932-0210_1x02_P2.00mm_Vertical -Molex MicroClasp Wire-to-Board System, 55932-0210, with PCB locator, 2 Pins (http://www.molex.com/pdm_docs/sd/559320210_sd.pdf), generated with kicad-footprint-generator -connector Molex MicroClasp side entry -0 -2 -2 -Connector_Molex -Molex_MicroClasp_55932-0230_1x02_P2.00mm_Vertical -Molex MicroClasp Wire-to-Board System, 55932-0230, 2 Pins (http://www.molex.com/pdm_docs/sd/559320530_sd.pdf), generated with kicad-footprint-generator -connector Molex MicroClasp side entry -0 -2 -2 -Connector_Molex -Molex_MicroClasp_55932-0310_1x03_P2.00mm_Vertical -Molex MicroClasp Wire-to-Board System, 55932-0310, with PCB locator, 3 Pins (http://www.molex.com/pdm_docs/sd/559320210_sd.pdf), generated with kicad-footprint-generator -connector Molex MicroClasp side entry -0 -3 -3 -Connector_Molex -Molex_MicroClasp_55932-0330_1x03_P2.00mm_Vertical -Molex MicroClasp Wire-to-Board System, 55932-0330, 3 Pins (http://www.molex.com/pdm_docs/sd/559320530_sd.pdf), generated with kicad-footprint-generator -connector Molex MicroClasp side entry -0 -3 -3 -Connector_Molex -Molex_MicroClasp_55932-0410_1x04_P2.00mm_Vertical -Molex MicroClasp Wire-to-Board System, 55932-0410, with PCB locator, 4 Pins (http://www.molex.com/pdm_docs/sd/559320210_sd.pdf), generated with kicad-footprint-generator -connector Molex MicroClasp side entry -0 -4 -4 -Connector_Molex -Molex_MicroClasp_55932-0430_1x04_P2.00mm_Vertical -Molex MicroClasp Wire-to-Board System, 55932-0430, 4 Pins (http://www.molex.com/pdm_docs/sd/559320530_sd.pdf), generated with kicad-footprint-generator -connector Molex MicroClasp side entry -0 -4 -4 -Connector_Molex -Molex_MicroClasp_55932-0510_1x05_P2.00mm_Vertical -Molex MicroClasp Wire-to-Board System, 55932-0510, with PCB locator, 5 Pins (http://www.molex.com/pdm_docs/sd/559320210_sd.pdf), generated with kicad-footprint-generator -connector Molex MicroClasp side entry -0 -5 -5 -Connector_Molex -Molex_MicroClasp_55932-0530_1x05_P2.00mm_Vertical -Molex MicroClasp Wire-to-Board System, 55932-0530, 5 Pins (http://www.molex.com/pdm_docs/sd/559320530_sd.pdf), generated with kicad-footprint-generator -connector Molex MicroClasp side entry -0 -5 -5 -Connector_Molex -Molex_MicroClasp_55932-0610_1x06_P2.00mm_Vertical -Molex MicroClasp Wire-to-Board System, 55932-0610, with PCB locator, 6 Pins (http://www.molex.com/pdm_docs/sd/559320210_sd.pdf), generated with kicad-footprint-generator -connector Molex MicroClasp side entry -0 -6 -6 -Connector_Molex -Molex_MicroClasp_55932-0630_1x06_P2.00mm_Vertical -Molex MicroClasp Wire-to-Board System, 55932-0630, 6 Pins (http://www.molex.com/pdm_docs/sd/559320530_sd.pdf), generated with kicad-footprint-generator -connector Molex MicroClasp side entry -0 -6 -6 -Connector_Molex -Molex_MicroClasp_55932-0710_1x07_P2.00mm_Vertical -Molex MicroClasp Wire-to-Board System, 55932-0710, with PCB locator, 7 Pins (http://www.molex.com/pdm_docs/sd/559320210_sd.pdf), generated with kicad-footprint-generator -connector Molex MicroClasp side entry -0 -7 -7 -Connector_Molex -Molex_MicroClasp_55932-0730_1x07_P2.00mm_Vertical -Molex MicroClasp Wire-to-Board System, 55932-0730, 7 Pins (http://www.molex.com/pdm_docs/sd/559320530_sd.pdf), generated with kicad-footprint-generator -connector Molex MicroClasp side entry -0 -7 -7 -Connector_Molex -Molex_MicroClasp_55932-0810_1x08_P2.00mm_Vertical -Molex MicroClasp Wire-to-Board System, 55932-0810, with PCB locator, 8 Pins (http://www.molex.com/pdm_docs/sd/559320210_sd.pdf), generated with kicad-footprint-generator -connector Molex MicroClasp side entry -0 -8 -8 -Connector_Molex -Molex_MicroClasp_55932-0830_1x08_P2.00mm_Vertical -Molex MicroClasp Wire-to-Board System, 55932-0830, 8 Pins (http://www.molex.com/pdm_docs/sd/559320530_sd.pdf), generated with kicad-footprint-generator -connector Molex MicroClasp side entry -0 -8 -8 -Connector_Molex -Molex_MicroClasp_55932-0910_1x09_P2.00mm_Vertical -Molex MicroClasp Wire-to-Board System, 55932-0910, with PCB locator, 9 Pins (http://www.molex.com/pdm_docs/sd/559320210_sd.pdf), generated with kicad-footprint-generator -connector Molex MicroClasp side entry -0 -9 -9 -Connector_Molex -Molex_MicroClasp_55932-0930_1x09_P2.00mm_Vertical -Molex MicroClasp Wire-to-Board System, 55932-0930, 9 Pins (http://www.molex.com/pdm_docs/sd/559320530_sd.pdf), generated with kicad-footprint-generator -connector Molex MicroClasp side entry -0 -9 -9 -Connector_Molex -Molex_MicroClasp_55932-1010_1x10_P2.00mm_Vertical -Molex MicroClasp Wire-to-Board System, 55932-1010, with PCB locator, 10 Pins (http://www.molex.com/pdm_docs/sd/559320210_sd.pdf), generated with kicad-footprint-generator -connector Molex MicroClasp side entry -0 -10 -10 -Connector_Molex -Molex_MicroClasp_55932-1030_1x10_P2.00mm_Vertical -Molex MicroClasp Wire-to-Board System, 55932-1030, 10 Pins (http://www.molex.com/pdm_docs/sd/559320530_sd.pdf), generated with kicad-footprint-generator -connector Molex MicroClasp side entry -0 -10 -10 -Connector_Molex -Molex_MicroClasp_55932-1110_1x11_P2.00mm_Vertical -Molex MicroClasp Wire-to-Board System, 55932-1110, with PCB locator, 11 Pins (http://www.molex.com/pdm_docs/sd/559320210_sd.pdf), generated with kicad-footprint-generator -connector Molex MicroClasp side entry -0 -11 -11 -Connector_Molex -Molex_MicroClasp_55932-1130_1x11_P2.00mm_Vertical -Molex MicroClasp Wire-to-Board System, 55932-1130, 11 Pins (http://www.molex.com/pdm_docs/sd/559320530_sd.pdf), generated with kicad-footprint-generator -connector Molex MicroClasp side entry -0 -11 -11 -Connector_Molex -Molex_MicroClasp_55932-1210_1x12_P2.00mm_Vertical -Molex MicroClasp Wire-to-Board System, 55932-1210, with PCB locator, 12 Pins (http://www.molex.com/pdm_docs/sd/559320210_sd.pdf), generated with kicad-footprint-generator -connector Molex MicroClasp side entry -0 -12 -12 -Connector_Molex -Molex_MicroClasp_55932-1230_1x12_P2.00mm_Vertical -Molex MicroClasp Wire-to-Board System, 55932-1230, 12 Pins (http://www.molex.com/pdm_docs/sd/559320530_sd.pdf), generated with kicad-footprint-generator -connector Molex MicroClasp side entry -0 -12 -12 -Connector_Molex -Molex_MicroClasp_55932-1310_1x13_P2.00mm_Vertical -Molex MicroClasp Wire-to-Board System, 55932-1310, with PCB locator, 13 Pins (http://www.molex.com/pdm_docs/sd/559320210_sd.pdf), generated with kicad-footprint-generator -connector Molex MicroClasp side entry -0 -13 -13 -Connector_Molex -Molex_MicroClasp_55932-1330_1x13_P2.00mm_Vertical -Molex MicroClasp Wire-to-Board System, 55932-1330, 13 Pins (http://www.molex.com/pdm_docs/sd/559320530_sd.pdf), generated with kicad-footprint-generator -connector Molex MicroClasp side entry -0 -13 -13 -Connector_Molex -Molex_MicroClasp_55932-1410_1x14_P2.00mm_Vertical -Molex MicroClasp Wire-to-Board System, 55932-1410, with PCB locator, 14 Pins (http://www.molex.com/pdm_docs/sd/559320210_sd.pdf), generated with kicad-footprint-generator -connector Molex MicroClasp side entry -0 -14 -14 -Connector_Molex -Molex_MicroClasp_55932-1430_1x14_P2.00mm_Vertical -Molex MicroClasp Wire-to-Board System, 55932-1430, 14 Pins (http://www.molex.com/pdm_docs/sd/559320530_sd.pdf), generated with kicad-footprint-generator -connector Molex MicroClasp side entry -0 -14 -14 -Connector_Molex -Molex_MicroClasp_55932-1510_1x15_P2.00mm_Vertical -Molex MicroClasp Wire-to-Board System, 55932-1510, with PCB locator, 15 Pins (http://www.molex.com/pdm_docs/sd/559320210_sd.pdf), generated with kicad-footprint-generator -connector Molex MicroClasp side entry -0 -15 -15 -Connector_Molex -Molex_MicroClasp_55932-1530_1x15_P2.00mm_Vertical -Molex MicroClasp Wire-to-Board System, 55932-1530, 15 Pins (http://www.molex.com/pdm_docs/sd/559320530_sd.pdf), generated with kicad-footprint-generator -connector Molex MicroClasp side entry -0 -15 -15 -Connector_Molex -Molex_MicroClasp_55935-0210_1x02_P2.00mm_Horizontal -Molex MicroClasp Wire-to-Board System, 55935-0210, with PCB locator, 2 Pins (http://www.molex.com/pdm_docs/sd/559350210_sd.pdf), generated with kicad-footprint-generator -connector Molex MicroClasp horizontal -0 -2 -2 -Connector_Molex -Molex_MicroClasp_55935-0230_1x02_P2.00mm_Horizontal -Molex MicroClasp Wire-to-Board System, 55935-0230, 2 Pins (http://www.molex.com/pdm_docs/sd/559350530_sd.pdf), generated with kicad-footprint-generator -connector Molex MicroClasp horizontal -0 -2 -2 -Connector_Molex -Molex_MicroClasp_55935-0310_1x03_P2.00mm_Horizontal -Molex MicroClasp Wire-to-Board System, 55935-0310, with PCB locator, 3 Pins (http://www.molex.com/pdm_docs/sd/559350210_sd.pdf), generated with kicad-footprint-generator -connector Molex MicroClasp horizontal -0 -3 -3 -Connector_Molex -Molex_MicroClasp_55935-0330_1x03_P2.00mm_Horizontal -Molex MicroClasp Wire-to-Board System, 55935-0330, 3 Pins (http://www.molex.com/pdm_docs/sd/559350530_sd.pdf), generated with kicad-footprint-generator -connector Molex MicroClasp horizontal -0 -3 -3 -Connector_Molex -Molex_MicroClasp_55935-0410_1x04_P2.00mm_Horizontal -Molex MicroClasp Wire-to-Board System, 55935-0410, with PCB locator, 4 Pins (http://www.molex.com/pdm_docs/sd/559350210_sd.pdf), generated with kicad-footprint-generator -connector Molex MicroClasp horizontal -0 -4 -4 -Connector_Molex -Molex_MicroClasp_55935-0430_1x04_P2.00mm_Horizontal -Molex MicroClasp Wire-to-Board System, 55935-0430, 4 Pins (http://www.molex.com/pdm_docs/sd/559350530_sd.pdf), generated with kicad-footprint-generator -connector Molex MicroClasp horizontal -0 -4 -4 -Connector_Molex -Molex_MicroClasp_55935-0510_1x05_P2.00mm_Horizontal -Molex MicroClasp Wire-to-Board System, 55935-0510, with PCB locator, 5 Pins (http://www.molex.com/pdm_docs/sd/559350210_sd.pdf), generated with kicad-footprint-generator -connector Molex MicroClasp horizontal -0 -5 -5 -Connector_Molex -Molex_MicroClasp_55935-0530_1x05_P2.00mm_Horizontal -Molex MicroClasp Wire-to-Board System, 55935-0530, 5 Pins (http://www.molex.com/pdm_docs/sd/559350530_sd.pdf), generated with kicad-footprint-generator -connector Molex MicroClasp horizontal -0 -5 -5 -Connector_Molex -Molex_MicroClasp_55935-0610_1x06_P2.00mm_Horizontal -Molex MicroClasp Wire-to-Board System, 55935-0610, with PCB locator, 6 Pins (http://www.molex.com/pdm_docs/sd/559350210_sd.pdf), generated with kicad-footprint-generator -connector Molex MicroClasp horizontal -0 -6 -6 -Connector_Molex -Molex_MicroClasp_55935-0630_1x06_P2.00mm_Horizontal -Molex MicroClasp Wire-to-Board System, 55935-0630, 6 Pins (http://www.molex.com/pdm_docs/sd/559350530_sd.pdf), generated with kicad-footprint-generator -connector Molex MicroClasp horizontal -0 -6 -6 -Connector_Molex -Molex_MicroClasp_55935-0710_1x07_P2.00mm_Horizontal -Molex MicroClasp Wire-to-Board System, 55935-0710, with PCB locator, 7 Pins (http://www.molex.com/pdm_docs/sd/559350210_sd.pdf), generated with kicad-footprint-generator -connector Molex MicroClasp horizontal -0 -7 -7 -Connector_Molex -Molex_MicroClasp_55935-0730_1x07_P2.00mm_Horizontal -Molex MicroClasp Wire-to-Board System, 55935-0730, 7 Pins (http://www.molex.com/pdm_docs/sd/559350530_sd.pdf), generated with kicad-footprint-generator -connector Molex MicroClasp horizontal -0 -7 -7 -Connector_Molex -Molex_MicroClasp_55935-0810_1x08_P2.00mm_Horizontal -Molex MicroClasp Wire-to-Board System, 55935-0810, with PCB locator, 8 Pins (http://www.molex.com/pdm_docs/sd/559350210_sd.pdf), generated with kicad-footprint-generator -connector Molex MicroClasp horizontal -0 -8 -8 -Connector_Molex -Molex_MicroClasp_55935-0830_1x08_P2.00mm_Horizontal -Molex MicroClasp Wire-to-Board System, 55935-0830, 8 Pins (http://www.molex.com/pdm_docs/sd/559350530_sd.pdf), generated with kicad-footprint-generator -connector Molex MicroClasp horizontal -0 -8 -8 -Connector_Molex -Molex_MicroClasp_55935-0910_1x09_P2.00mm_Horizontal -Molex MicroClasp Wire-to-Board System, 55935-0910, with PCB locator, 9 Pins (http://www.molex.com/pdm_docs/sd/559350210_sd.pdf), generated with kicad-footprint-generator -connector Molex MicroClasp horizontal -0 -9 -9 -Connector_Molex -Molex_MicroClasp_55935-0930_1x09_P2.00mm_Horizontal -Molex MicroClasp Wire-to-Board System, 55935-0930, 9 Pins (http://www.molex.com/pdm_docs/sd/559350530_sd.pdf), generated with kicad-footprint-generator -connector Molex MicroClasp horizontal -0 -9 -9 -Connector_Molex -Molex_MicroClasp_55935-1010_1x10_P2.00mm_Horizontal -Molex MicroClasp Wire-to-Board System, 55935-1010, with PCB locator, 10 Pins (http://www.molex.com/pdm_docs/sd/559350210_sd.pdf), generated with kicad-footprint-generator -connector Molex MicroClasp horizontal -0 -10 -10 -Connector_Molex -Molex_MicroClasp_55935-1030_1x10_P2.00mm_Horizontal -Molex MicroClasp Wire-to-Board System, 55935-1030, 10 Pins (http://www.molex.com/pdm_docs/sd/559350530_sd.pdf), generated with kicad-footprint-generator -connector Molex MicroClasp horizontal -0 -10 -10 -Connector_Molex -Molex_MicroClasp_55935-1110_1x11_P2.00mm_Horizontal -Molex MicroClasp Wire-to-Board System, 55935-1110, with PCB locator, 11 Pins (http://www.molex.com/pdm_docs/sd/559350210_sd.pdf), generated with kicad-footprint-generator -connector Molex MicroClasp horizontal -0 -11 -11 -Connector_Molex -Molex_MicroClasp_55935-1130_1x11_P2.00mm_Horizontal -Molex MicroClasp Wire-to-Board System, 55935-1130, 11 Pins (http://www.molex.com/pdm_docs/sd/559350530_sd.pdf), generated with kicad-footprint-generator -connector Molex MicroClasp horizontal -0 -11 -11 -Connector_Molex -Molex_MicroClasp_55935-1210_1x12_P2.00mm_Horizontal -Molex MicroClasp Wire-to-Board System, 55935-1210, with PCB locator, 12 Pins (http://www.molex.com/pdm_docs/sd/559350210_sd.pdf), generated with kicad-footprint-generator -connector Molex MicroClasp horizontal -0 -12 -12 -Connector_Molex -Molex_MicroClasp_55935-1230_1x12_P2.00mm_Horizontal -Molex MicroClasp Wire-to-Board System, 55935-1230, 12 Pins (http://www.molex.com/pdm_docs/sd/559350530_sd.pdf), generated with kicad-footprint-generator -connector Molex MicroClasp horizontal -0 -12 -12 -Connector_Molex -Molex_MicroClasp_55935-1310_1x13_P2.00mm_Horizontal -Molex MicroClasp Wire-to-Board System, 55935-1310, with PCB locator, 13 Pins (http://www.molex.com/pdm_docs/sd/559350210_sd.pdf), generated with kicad-footprint-generator -connector Molex MicroClasp horizontal -0 -13 -13 -Connector_Molex -Molex_MicroClasp_55935-1330_1x13_P2.00mm_Horizontal -Molex MicroClasp Wire-to-Board System, 55935-1330, 13 Pins (http://www.molex.com/pdm_docs/sd/559350530_sd.pdf), generated with kicad-footprint-generator -connector Molex MicroClasp horizontal -0 -13 -13 -Connector_Molex -Molex_MicroClasp_55935-1410_1x14_P2.00mm_Horizontal -Molex MicroClasp Wire-to-Board System, 55935-1410, with PCB locator, 14 Pins (http://www.molex.com/pdm_docs/sd/559350210_sd.pdf), generated with kicad-footprint-generator -connector Molex MicroClasp horizontal -0 -14 -14 -Connector_Molex -Molex_MicroClasp_55935-1430_1x14_P2.00mm_Horizontal -Molex MicroClasp Wire-to-Board System, 55935-1430, 14 Pins (http://www.molex.com/pdm_docs/sd/559350530_sd.pdf), generated with kicad-footprint-generator -connector Molex MicroClasp horizontal -0 -14 -14 -Connector_Molex -Molex_MicroClasp_55935-1510_1x15_P2.00mm_Horizontal -Molex MicroClasp Wire-to-Board System, 55935-1510, with PCB locator, 15 Pins (http://www.molex.com/pdm_docs/sd/559350210_sd.pdf), generated with kicad-footprint-generator -connector Molex MicroClasp horizontal -0 -15 -15 -Connector_Molex -Molex_MicroClasp_55935-1530_1x15_P2.00mm_Horizontal -Molex MicroClasp Wire-to-Board System, 55935-1530, 15 Pins (http://www.molex.com/pdm_docs/sd/559350530_sd.pdf), generated with kicad-footprint-generator -connector Molex MicroClasp horizontal -0 -15 -15 -Connector_Molex -Molex_Mini-Fit_Jr_5566-02A2_2x01_P4.20mm_Vertical -Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-02A2, example for new mpn: 39-28-902x, 1 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039289068_sd.pdf), generated with kicad-footprint-generator -connector Molex Mini-Fit_Jr side entryplastic_peg -0 -2 -2 -Connector_Molex -Molex_Mini-Fit_Jr_5566-02A_2x01_P4.20mm_Vertical -Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-02A, example for new mpn: 39-28-x02x, 1 Pins per row, Mounting: (http://www.molex.com/pdm_docs/sd/039281043_sd.pdf), generated with kicad-footprint-generator -connector Molex Mini-Fit_Jr side entry -0 -2 -2 -Connector_Molex -Molex_Mini-Fit_Jr_5566-04A2_2x02_P4.20mm_Vertical -Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-04A2, example for new mpn: 39-28-904x, 2 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039289068_sd.pdf), generated with kicad-footprint-generator -connector Molex Mini-Fit_Jr side entryplastic_peg -0 -4 -4 -Connector_Molex -Molex_Mini-Fit_Jr_5566-04A_2x02_P4.20mm_Vertical -Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-04A, example for new mpn: 39-28-x04x, 2 Pins per row, Mounting: (http://www.molex.com/pdm_docs/sd/039281043_sd.pdf), generated with kicad-footprint-generator -connector Molex Mini-Fit_Jr side entry -0 -4 -4 -Connector_Molex -Molex_Mini-Fit_Jr_5566-06A2_2x03_P4.20mm_Vertical -Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-06A2, example for new mpn: 39-28-906x, 3 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039289068_sd.pdf), generated with kicad-footprint-generator -connector Molex Mini-Fit_Jr side entryplastic_peg -0 -6 -6 -Connector_Molex -Molex_Mini-Fit_Jr_5566-06A_2x03_P4.20mm_Vertical -Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-06A, example for new mpn: 39-28-x06x, 3 Pins per row, Mounting: (http://www.molex.com/pdm_docs/sd/039281043_sd.pdf), generated with kicad-footprint-generator -connector Molex Mini-Fit_Jr side entry -0 -6 -6 -Connector_Molex -Molex_Mini-Fit_Jr_5566-08A2_2x04_P4.20mm_Vertical -Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-08A2, example for new mpn: 39-28-908x, 4 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039289068_sd.pdf), generated with kicad-footprint-generator -connector Molex Mini-Fit_Jr side entryplastic_peg -0 -8 -8 -Connector_Molex -Molex_Mini-Fit_Jr_5566-08A_2x04_P4.20mm_Vertical -Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-08A, example for new mpn: 39-28-x08x, 4 Pins per row, Mounting: (http://www.molex.com/pdm_docs/sd/039281043_sd.pdf), generated with kicad-footprint-generator -connector Molex Mini-Fit_Jr side entry -0 -8 -8 -Connector_Molex -Molex_Mini-Fit_Jr_5566-10A2_2x05_P4.20mm_Vertical -Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-10A2, example for new mpn: 39-28-910x, 5 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039289068_sd.pdf), generated with kicad-footprint-generator -connector Molex Mini-Fit_Jr side entryplastic_peg -0 -10 -10 -Connector_Molex -Molex_Mini-Fit_Jr_5566-10A_2x05_P4.20mm_Vertical -Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-10A, example for new mpn: 39-28-x10x, 5 Pins per row, Mounting: (http://www.molex.com/pdm_docs/sd/039281043_sd.pdf), generated with kicad-footprint-generator -connector Molex Mini-Fit_Jr side entry -0 -10 -10 -Connector_Molex -Molex_Mini-Fit_Jr_5566-12A2_2x06_P4.20mm_Vertical -Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-12A2, example for new mpn: 39-28-912x, 6 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039289068_sd.pdf), generated with kicad-footprint-generator -connector Molex Mini-Fit_Jr side entryplastic_peg -0 -12 -12 -Connector_Molex -Molex_Mini-Fit_Jr_5566-12A_2x06_P4.20mm_Vertical -Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-12A, example for new mpn: 39-28-x12x, 6 Pins per row, Mounting: (http://www.molex.com/pdm_docs/sd/039281043_sd.pdf), generated with kicad-footprint-generator -connector Molex Mini-Fit_Jr side entry -0 -12 -12 -Connector_Molex -Molex_Mini-Fit_Jr_5566-14A2_2x07_P4.20mm_Vertical -Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-14A2, example for new mpn: 39-28-914x, 7 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039289068_sd.pdf), generated with kicad-footprint-generator -connector Molex Mini-Fit_Jr side entryplastic_peg -0 -14 -14 -Connector_Molex -Molex_Mini-Fit_Jr_5566-14A_2x07_P4.20mm_Vertical -Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-14A, example for new mpn: 39-28-x14x, 7 Pins per row, Mounting: (http://www.molex.com/pdm_docs/sd/039281043_sd.pdf), generated with kicad-footprint-generator -connector Molex Mini-Fit_Jr side entry -0 -14 -14 -Connector_Molex -Molex_Mini-Fit_Jr_5566-16A2_2x08_P4.20mm_Vertical -Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-16A2, example for new mpn: 39-28-916x, 8 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039289068_sd.pdf), generated with kicad-footprint-generator -connector Molex Mini-Fit_Jr side entryplastic_peg -0 -16 -16 -Connector_Molex -Molex_Mini-Fit_Jr_5566-16A_2x08_P4.20mm_Vertical -Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-16A, example for new mpn: 39-28-x16x, 8 Pins per row, Mounting: (http://www.molex.com/pdm_docs/sd/039281043_sd.pdf), generated with kicad-footprint-generator -connector Molex Mini-Fit_Jr side entry -0 -16 -16 -Connector_Molex -Molex_Mini-Fit_Jr_5566-18A2_2x09_P4.20mm_Vertical -Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-18A2, example for new mpn: 39-28-918x, 9 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039289068_sd.pdf), generated with kicad-footprint-generator -connector Molex Mini-Fit_Jr side entryplastic_peg -0 -18 -18 -Connector_Molex -Molex_Mini-Fit_Jr_5566-18A_2x09_P4.20mm_Vertical -Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-18A, example for new mpn: 39-28-x18x, 9 Pins per row, Mounting: (http://www.molex.com/pdm_docs/sd/039281043_sd.pdf), generated with kicad-footprint-generator -connector Molex Mini-Fit_Jr side entry -0 -18 -18 -Connector_Molex -Molex_Mini-Fit_Jr_5566-20A2_2x10_P4.20mm_Vertical -Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-20A2, example for new mpn: 39-28-920x, 10 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039289068_sd.pdf), generated with kicad-footprint-generator -connector Molex Mini-Fit_Jr side entryplastic_peg -0 -20 -20 -Connector_Molex -Molex_Mini-Fit_Jr_5566-20A_2x10_P4.20mm_Vertical -Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-20A, example for new mpn: 39-28-x20x, 10 Pins per row, Mounting: (http://www.molex.com/pdm_docs/sd/039281043_sd.pdf), generated with kicad-footprint-generator -connector Molex Mini-Fit_Jr side entry -0 -20 -20 -Connector_Molex -Molex_Mini-Fit_Jr_5566-22A2_2x11_P4.20mm_Vertical -Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-22A2, example for new mpn: 39-28-922x, 11 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039289068_sd.pdf), generated with kicad-footprint-generator -connector Molex Mini-Fit_Jr side entryplastic_peg -0 -22 -22 -Connector_Molex -Molex_Mini-Fit_Jr_5566-22A_2x11_P4.20mm_Vertical -Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-22A, example for new mpn: 39-28-x22x, 11 Pins per row, Mounting: (http://www.molex.com/pdm_docs/sd/039281043_sd.pdf), generated with kicad-footprint-generator -connector Molex Mini-Fit_Jr side entry -0 -22 -22 -Connector_Molex -Molex_Mini-Fit_Jr_5566-24A2_2x12_P4.20mm_Vertical -Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-24A2, example for new mpn: 39-28-924x, 12 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039289068_sd.pdf), generated with kicad-footprint-generator -connector Molex Mini-Fit_Jr side entryplastic_peg -0 -24 -24 -Connector_Molex -Molex_Mini-Fit_Jr_5566-24A_2x12_P4.20mm_Vertical -Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5566-24A, example for new mpn: 39-28-x24x, 12 Pins per row, Mounting: (http://www.molex.com/pdm_docs/sd/039281043_sd.pdf), generated with kicad-footprint-generator -connector Molex Mini-Fit_Jr side entry -0 -24 -24 -Connector_Molex -Molex_Mini-Fit_Jr_5569-02A1_2x01_P4.20mm_Horizontal -Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-02A1, example for new mpn: 39-29-4029, 1 Pins per row, Mounting: PCB Mounting Flange (http://www.molex.com/pdm_docs/sd/039291047_sd.pdf), generated with kicad-footprint-generator -connector Molex Mini-Fit_Jr top entryscrew_flange -0 -2 -2 -Connector_Molex -Molex_Mini-Fit_Jr_5569-02A2_2x01_P4.20mm_Horizontal -Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-02A2, example for new mpn: 39-30-0020, 1 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039300020_sd.pdf), generated with kicad-footprint-generator -connector Molex Mini-Fit_Jr top entryplastic_peg -0 -2 -2 -Connector_Molex -Molex_Mini-Fit_Jr_5569-04A1_2x02_P4.20mm_Horizontal -Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-04A1, example for new mpn: 39-29-4049, 2 Pins per row, Mounting: PCB Mounting Flange (http://www.molex.com/pdm_docs/sd/039291047_sd.pdf), generated with kicad-footprint-generator -connector Molex Mini-Fit_Jr top entryscrew_flange -0 -4 -4 -Connector_Molex -Molex_Mini-Fit_Jr_5569-04A2_2x02_P4.20mm_Horizontal -Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-04A2, example for new mpn: 39-30-0040, 2 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039300020_sd.pdf), generated with kicad-footprint-generator -connector Molex Mini-Fit_Jr top entryplastic_peg -0 -4 -4 -Connector_Molex -Molex_Mini-Fit_Jr_5569-06A1_2x03_P4.20mm_Horizontal -Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-06A1, example for new mpn: 39-29-4069, 3 Pins per row, Mounting: PCB Mounting Flange (http://www.molex.com/pdm_docs/sd/039291047_sd.pdf), generated with kicad-footprint-generator -connector Molex Mini-Fit_Jr top entryscrew_flange -0 -6 -6 -Connector_Molex -Molex_Mini-Fit_Jr_5569-06A2_2x03_P4.20mm_Horizontal -Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-06A2, example for new mpn: 39-30-0060, 3 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039300020_sd.pdf), generated with kicad-footprint-generator -connector Molex Mini-Fit_Jr top entryplastic_peg -0 -6 -6 -Connector_Molex -Molex_Mini-Fit_Jr_5569-08A1_2x04_P4.20mm_Horizontal -Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-08A1, example for new mpn: 39-29-4089, 4 Pins per row, Mounting: PCB Mounting Flange (http://www.molex.com/pdm_docs/sd/039291047_sd.pdf), generated with kicad-footprint-generator -connector Molex Mini-Fit_Jr top entryscrew_flange -0 -8 -8 -Connector_Molex -Molex_Mini-Fit_Jr_5569-08A2_2x04_P4.20mm_Horizontal -Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-08A2, example for new mpn: 39-30-0080, 4 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039300020_sd.pdf), generated with kicad-footprint-generator -connector Molex Mini-Fit_Jr top entryplastic_peg -0 -8 -8 -Connector_Molex -Molex_Mini-Fit_Jr_5569-10A1_2x05_P4.20mm_Horizontal -Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-10A1, example for new mpn: 39-29-4109, 5 Pins per row, Mounting: PCB Mounting Flange (http://www.molex.com/pdm_docs/sd/039291047_sd.pdf), generated with kicad-footprint-generator -connector Molex Mini-Fit_Jr top entryscrew_flange -0 -10 -10 -Connector_Molex -Molex_Mini-Fit_Jr_5569-10A2_2x05_P4.20mm_Horizontal -Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-10A2, example for new mpn: 39-30-0100, 5 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039300020_sd.pdf), generated with kicad-footprint-generator -connector Molex Mini-Fit_Jr top entryplastic_peg -0 -10 -10 -Connector_Molex -Molex_Mini-Fit_Jr_5569-12A1_2x06_P4.20mm_Horizontal -Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-12A1, example for new mpn: 39-29-4129, 6 Pins per row, Mounting: PCB Mounting Flange (http://www.molex.com/pdm_docs/sd/039291047_sd.pdf), generated with kicad-footprint-generator -connector Molex Mini-Fit_Jr top entryscrew_flange -0 -12 -12 -Connector_Molex -Molex_Mini-Fit_Jr_5569-12A2_2x06_P4.20mm_Horizontal -Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-12A2, example for new mpn: 39-30-0120, 6 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039300020_sd.pdf), generated with kicad-footprint-generator -connector Molex Mini-Fit_Jr top entryplastic_peg -0 -12 -12 -Connector_Molex -Molex_Mini-Fit_Jr_5569-14A1_2x07_P4.20mm_Horizontal -Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-14A1, example for new mpn: 39-29-4149, 7 Pins per row, Mounting: PCB Mounting Flange (http://www.molex.com/pdm_docs/sd/039291047_sd.pdf), generated with kicad-footprint-generator -connector Molex Mini-Fit_Jr top entryscrew_flange -0 -14 -14 -Connector_Molex -Molex_Mini-Fit_Jr_5569-14A2_2x07_P4.20mm_Horizontal -Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-14A2, example for new mpn: 39-30-0140, 7 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039300020_sd.pdf), generated with kicad-footprint-generator -connector Molex Mini-Fit_Jr top entryplastic_peg -0 -14 -14 -Connector_Molex -Molex_Mini-Fit_Jr_5569-16A1_2x08_P4.20mm_Horizontal -Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-16A1, example for new mpn: 39-29-4169, 8 Pins per row, Mounting: PCB Mounting Flange (http://www.molex.com/pdm_docs/sd/039291047_sd.pdf), generated with kicad-footprint-generator -connector Molex Mini-Fit_Jr top entryscrew_flange -0 -16 -16 -Connector_Molex -Molex_Mini-Fit_Jr_5569-16A2_2x08_P4.20mm_Horizontal -Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-16A2, example for new mpn: 39-30-0160, 8 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039300020_sd.pdf), generated with kicad-footprint-generator -connector Molex Mini-Fit_Jr top entryplastic_peg -0 -16 -16 -Connector_Molex -Molex_Mini-Fit_Jr_5569-18A1_2x09_P4.20mm_Horizontal -Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-18A1, example for new mpn: 39-29-4189, 9 Pins per row, Mounting: PCB Mounting Flange (http://www.molex.com/pdm_docs/sd/039291047_sd.pdf), generated with kicad-footprint-generator -connector Molex Mini-Fit_Jr top entryscrew_flange -0 -18 -18 -Connector_Molex -Molex_Mini-Fit_Jr_5569-18A2_2x09_P4.20mm_Horizontal -Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-18A2, example for new mpn: 39-30-0180, 9 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039300020_sd.pdf), generated with kicad-footprint-generator -connector Molex Mini-Fit_Jr top entryplastic_peg -0 -18 -18 -Connector_Molex -Molex_Mini-Fit_Jr_5569-20A1_2x10_P4.20mm_Horizontal -Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-20A1, example for new mpn: 39-29-4209, 10 Pins per row, Mounting: PCB Mounting Flange (http://www.molex.com/pdm_docs/sd/039291047_sd.pdf), generated with kicad-footprint-generator -connector Molex Mini-Fit_Jr top entryscrew_flange -0 -20 -20 -Connector_Molex -Molex_Mini-Fit_Jr_5569-20A2_2x10_P4.20mm_Horizontal -Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-20A2, example for new mpn: 39-30-0200, 10 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039300020_sd.pdf), generated with kicad-footprint-generator -connector Molex Mini-Fit_Jr top entryplastic_peg -0 -20 -20 -Connector_Molex -Molex_Mini-Fit_Jr_5569-22A1_2x11_P4.20mm_Horizontal -Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-22A1, example for new mpn: 39-29-4229, 11 Pins per row, Mounting: PCB Mounting Flange (http://www.molex.com/pdm_docs/sd/039291047_sd.pdf), generated with kicad-footprint-generator -connector Molex Mini-Fit_Jr top entryscrew_flange -0 -22 -22 -Connector_Molex -Molex_Mini-Fit_Jr_5569-22A2_2x11_P4.20mm_Horizontal -Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-22A2, example for new mpn: 39-30-0220, 11 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039300020_sd.pdf), generated with kicad-footprint-generator -connector Molex Mini-Fit_Jr top entryplastic_peg -0 -22 -22 -Connector_Molex -Molex_Mini-Fit_Jr_5569-24A1_2x12_P4.20mm_Horizontal -Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-24A1, example for new mpn: 39-29-4249, 12 Pins per row, Mounting: PCB Mounting Flange (http://www.molex.com/pdm_docs/sd/039291047_sd.pdf), generated with kicad-footprint-generator -connector Molex Mini-Fit_Jr top entryscrew_flange -0 -24 -24 -Connector_Molex -Molex_Mini-Fit_Jr_5569-24A2_2x12_P4.20mm_Horizontal -Molex Mini-Fit Jr. Power Connectors, old mpn/engineering number: 5569-24A2, example for new mpn: 39-30-0240, 12 Pins per row, Mounting: Snap-in Plastic Peg PCB Lock (http://www.molex.com/pdm_docs/sd/039300020_sd.pdf), generated with kicad-footprint-generator -connector Molex Mini-Fit_Jr top entryplastic_peg -0 -24 -24 -Connector_Molex -Molex_Mini-Fit_Sr_42819-22XX_1x02_P10.00mm_Vertical -Molex Mini-Fit Sr. Power Connectors, 42819-22XX, 2 Pins per row (http://www.molex.com/pdm_docs/sd/428192214_sd.pdf), generated with kicad-footprint-generator -connector Molex Mini-Fit_Sr side entry -0 -6 -2 -Connector_Molex -Molex_Mini-Fit_Sr_42819-22XX_1x02_P10.00mm_Vertical_ThermalVias -Molex Mini-Fit Sr. Power Connectors, 42819-22XX, With thermal vias in pads, 2 Pins per row (http://www.molex.com/pdm_docs/sd/428192214_sd.pdf), generated with kicad-footprint-generator -connector Molex Mini-Fit_Sr side entry -0 -32 -2 -Connector_Molex -Molex_Mini-Fit_Sr_42819-32XX_1x03_P10.00mm_Vertical -Molex Mini-Fit Sr. Power Connectors, 42819-32XX, 3 Pins per row (http://www.molex.com/pdm_docs/sd/428192214_sd.pdf), generated with kicad-footprint-generator -connector Molex Mini-Fit_Sr side entry -0 -8 -3 -Connector_Molex -Molex_Mini-Fit_Sr_42819-32XX_1x03_P10.00mm_Vertical_ThermalVias -Molex Mini-Fit Sr. Power Connectors, 42819-32XX, With thermal vias in pads, 3 Pins per row (http://www.molex.com/pdm_docs/sd/428192214_sd.pdf), generated with kicad-footprint-generator -connector Molex Mini-Fit_Sr side entry -0 -47 -3 -Connector_Molex -Molex_Mini-Fit_Sr_42819-42XX_1x04_P10.00mm_Vertical -Molex Mini-Fit Sr. Power Connectors, 42819-42XX, 4 Pins per row (http://www.molex.com/pdm_docs/sd/428192214_sd.pdf), generated with kicad-footprint-generator -connector Molex Mini-Fit_Sr side entry -0 -10 -4 -Connector_Molex -Molex_Mini-Fit_Sr_42819-42XX_1x04_P10.00mm_Vertical_ThermalVias -Molex Mini-Fit Sr. Power Connectors, 42819-42XX, With thermal vias in pads, 4 Pins per row (http://www.molex.com/pdm_docs/sd/428192214_sd.pdf), generated with kicad-footprint-generator -connector Molex Mini-Fit_Sr side entry -0 -62 -4 -Connector_Molex -Molex_Mini-Fit_Sr_42819-52XX_1x05_P10.00mm_Vertical -Molex Mini-Fit Sr. Power Connectors, 42819-52XX, 5 Pins per row (http://www.molex.com/pdm_docs/sd/428192214_sd.pdf), generated with kicad-footprint-generator -connector Molex Mini-Fit_Sr side entry -0 -12 -5 -Connector_Molex -Molex_Mini-Fit_Sr_42819-52XX_1x05_P10.00mm_Vertical_ThermalVias -Molex Mini-Fit Sr. Power Connectors, 42819-52XX, With thermal vias in pads, 5 Pins per row (http://www.molex.com/pdm_docs/sd/428192214_sd.pdf), generated with kicad-footprint-generator -connector Molex Mini-Fit_Sr side entry -0 -77 -5 -Connector_Molex -Molex_Mini-Fit_Sr_42819-62XX_1x06_P10.00mm_Vertical -Molex Mini-Fit Sr. Power Connectors, 42819-62XX, 6 Pins per row (http://www.molex.com/pdm_docs/sd/428192214_sd.pdf), generated with kicad-footprint-generator -connector Molex Mini-Fit_Sr side entry -0 -14 -6 -Connector_Molex -Molex_Mini-Fit_Sr_42819-62XX_1x06_P10.00mm_Vertical_ThermalVias -Molex Mini-Fit Sr. Power Connectors, 42819-62XX, With thermal vias in pads, 6 Pins per row (http://www.molex.com/pdm_docs/sd/428192214_sd.pdf), generated with kicad-footprint-generator -connector Molex Mini-Fit_Sr side entry -0 -92 -6 -Connector_Molex -Molex_Mini-Fit_Sr_42820-22XX_1x02_P10.00mm_Horizontal -Molex Mini-Fit Sr. Power Connectors, 42820-22XX, 2 Pins per row (http://www.molex.com/pdm_docs/sd/428202214_sd.pdf), generated with kicad-footprint-generator -connector Molex Mini-Fit_Sr top entry -0 -6 -2 -Connector_Molex -Molex_Mini-Fit_Sr_42820-22XX_1x02_P10.00mm_Horizontal_ThermalVias -Molex Mini-Fit Sr. Power Connectors, 42820-22XX, With thermal vias in pads, 2 Pins per row (http://www.molex.com/pdm_docs/sd/428202214_sd.pdf), generated with kicad-footprint-generator -connector Molex Mini-Fit_Sr top entry -0 -32 -2 -Connector_Molex -Molex_Mini-Fit_Sr_42820-32XX_1x03_P10.00mm_Horizontal -Molex Mini-Fit Sr. Power Connectors, 42820-32XX, 3 Pins per row (http://www.molex.com/pdm_docs/sd/428202214_sd.pdf), generated with kicad-footprint-generator -connector Molex Mini-Fit_Sr top entry -0 -8 -3 -Connector_Molex -Molex_Mini-Fit_Sr_42820-32XX_1x03_P10.00mm_Horizontal_ThermalVias -Molex Mini-Fit Sr. Power Connectors, 42820-32XX, With thermal vias in pads, 3 Pins per row (http://www.molex.com/pdm_docs/sd/428202214_sd.pdf), generated with kicad-footprint-generator -connector Molex Mini-Fit_Sr top entry -0 -47 -3 -Connector_Molex -Molex_Mini-Fit_Sr_42820-42XX_1x04_P10.00mm_Horizontal -Molex Mini-Fit Sr. Power Connectors, 42820-42XX, 4 Pins per row (http://www.molex.com/pdm_docs/sd/428202214_sd.pdf), generated with kicad-footprint-generator -connector Molex Mini-Fit_Sr top entry -0 -10 -4 -Connector_Molex -Molex_Mini-Fit_Sr_42820-42XX_1x04_P10.00mm_Horizontal_ThermalVias -Molex Mini-Fit Sr. Power Connectors, 42820-42XX, With thermal vias in pads, 4 Pins per row (http://www.molex.com/pdm_docs/sd/428202214_sd.pdf), generated with kicad-footprint-generator -connector Molex Mini-Fit_Sr top entry -0 -62 -4 -Connector_Molex -Molex_Mini-Fit_Sr_42820-52XX_1x05_P10.00mm_Horizontal -Molex Mini-Fit Sr. Power Connectors, 42820-52XX, 5 Pins per row (http://www.molex.com/pdm_docs/sd/428202214_sd.pdf), generated with kicad-footprint-generator -connector Molex Mini-Fit_Sr top entry -0 -12 -5 -Connector_Molex -Molex_Mini-Fit_Sr_42820-52XX_1x05_P10.00mm_Horizontal_ThermalVias -Molex Mini-Fit Sr. Power Connectors, 42820-52XX, With thermal vias in pads, 5 Pins per row (http://www.molex.com/pdm_docs/sd/428202214_sd.pdf), generated with kicad-footprint-generator -connector Molex Mini-Fit_Sr top entry -0 -77 -5 -Connector_Molex -Molex_Mini-Fit_Sr_42820-62XX_1x06_P10.00mm_Horizontal -Molex Mini-Fit Sr. Power Connectors, 42820-62XX, 6 Pins per row (http://www.molex.com/pdm_docs/sd/428202214_sd.pdf), generated with kicad-footprint-generator -connector Molex Mini-Fit_Sr top entry -0 -14 -6 -Connector_Molex -Molex_Mini-Fit_Sr_42820-62XX_1x06_P10.00mm_Horizontal_ThermalVias -Molex Mini-Fit Sr. Power Connectors, 42820-62XX, With thermal vias in pads, 6 Pins per row (http://www.molex.com/pdm_docs/sd/428202214_sd.pdf), generated with kicad-footprint-generator -connector Molex Mini-Fit_Sr top entry -0 -92 -6 -Connector_Molex -Molex_Mini-Fit_Sr_43915-xx06_2x03_P10.00mm_Vertical -Molex Mini-Fit Sr. Power Connectors, 43915-xx06, 3 Pins per row (http://www.molex.com/pdm_docs/sd/439151404_sd.pdf), generated with kicad-footprint-generator -connector Molex Mini-Fit_Sr side entry -0 -14 -6 -Connector_Molex -Molex_Mini-Fit_Sr_43915-xx06_2x03_P10.00mm_Vertical_ThermalVias -Molex Mini-Fit Sr. Power Connectors, 43915-xx06, With thermal vias in pads, 3 Pins per row (http://www.molex.com/pdm_docs/sd/439151404_sd.pdf), generated with kicad-footprint-generator -connector Molex Mini-Fit_Sr side entry -0 -92 -6 -Connector_Molex -Molex_Mini-Fit_Sr_43915-xx08_2x04_P10.00mm_Vertical -Molex Mini-Fit Sr. Power Connectors, 43915-xx08, 4 Pins per row (http://www.molex.com/pdm_docs/sd/439151404_sd.pdf), generated with kicad-footprint-generator -connector Molex Mini-Fit_Sr side entry -0 -18 -8 -Connector_Molex -Molex_Mini-Fit_Sr_43915-xx08_2x04_P10.00mm_Vertical_ThermalVias -Molex Mini-Fit Sr. Power Connectors, 43915-xx08, With thermal vias in pads, 4 Pins per row (http://www.molex.com/pdm_docs/sd/439151404_sd.pdf), generated with kicad-footprint-generator -connector Molex Mini-Fit_Sr side entry -0 -122 -8 -Connector_Molex -Molex_Mini-Fit_Sr_43915-xx10_2x05_P10.00mm_Vertical -Molex Mini-Fit Sr. Power Connectors, 43915-xx10, 5 Pins per row (http://www.molex.com/pdm_docs/sd/439151404_sd.pdf), generated with kicad-footprint-generator -connector Molex Mini-Fit_Sr side entry -0 -22 -10 -Connector_Molex -Molex_Mini-Fit_Sr_43915-xx10_2x05_P10.00mm_Vertical_ThermalVias -Molex Mini-Fit Sr. Power Connectors, 43915-xx10, With thermal vias in pads, 5 Pins per row (http://www.molex.com/pdm_docs/sd/439151404_sd.pdf), generated with kicad-footprint-generator -connector Molex Mini-Fit_Sr side entry -0 -152 -10 -Connector_Molex -Molex_Mini-Fit_Sr_43915-xx12_2x06_P10.00mm_Vertical -Molex Mini-Fit Sr. Power Connectors, 43915-xx12, 6 Pins per row (http://www.molex.com/pdm_docs/sd/439151404_sd.pdf), generated with kicad-footprint-generator -connector Molex Mini-Fit_Sr side entry -0 -26 -12 -Connector_Molex -Molex_Mini-Fit_Sr_43915-xx12_2x06_P10.00mm_Vertical_ThermalVias -Molex Mini-Fit Sr. Power Connectors, 43915-xx12, With thermal vias in pads, 6 Pins per row (http://www.molex.com/pdm_docs/sd/439151404_sd.pdf), generated with kicad-footprint-generator -connector Molex Mini-Fit_Sr side entry -0 -182 -12 -Connector_Molex -Molex_Mini-Fit_Sr_43915-xx14_2x07_P10.00mm_Vertical -Molex Mini-Fit Sr. Power Connectors, 43915-xx14, 7 Pins per row (http://www.molex.com/pdm_docs/sd/439151404_sd.pdf), generated with kicad-footprint-generator -connector Molex Mini-Fit_Sr side entry -0 -30 -14 -Connector_Molex -Molex_Mini-Fit_Sr_43915-xx14_2x07_P10.00mm_Vertical_ThermalVias -Molex Mini-Fit Sr. Power Connectors, 43915-xx14, With thermal vias in pads, 7 Pins per row (http://www.molex.com/pdm_docs/sd/439151404_sd.pdf), generated with kicad-footprint-generator -connector Molex Mini-Fit_Sr side entry -0 -212 -14 -Connector_Molex -Molex_Nano-Fit_105309-xx02_1x02_P2.50mm_Vertical -Molex Nano-Fit Power Connectors, 105309-xx02, 2 Pins per row (http://www.molex.com/pdm_docs/sd/1053091203_sd.pdf), generated with kicad-footprint-generator -connector Molex Nano-Fit side entry -0 -2 -2 -Connector_Molex -Molex_Nano-Fit_105309-xx03_1x03_P2.50mm_Vertical -Molex Nano-Fit Power Connectors, 105309-xx03, 3 Pins per row (http://www.molex.com/pdm_docs/sd/1053091203_sd.pdf), generated with kicad-footprint-generator -connector Molex Nano-Fit side entry -0 -3 -3 -Connector_Molex -Molex_Nano-Fit_105309-xx04_1x04_P2.50mm_Vertical -Molex Nano-Fit Power Connectors, 105309-xx04, 4 Pins per row (http://www.molex.com/pdm_docs/sd/1053091203_sd.pdf), generated with kicad-footprint-generator -connector Molex Nano-Fit side entry -0 -4 -4 -Connector_Molex -Molex_Nano-Fit_105309-xx05_1x05_P2.50mm_Vertical -Molex Nano-Fit Power Connectors, 105309-xx05, 5 Pins per row (http://www.molex.com/pdm_docs/sd/1053091203_sd.pdf), generated with kicad-footprint-generator -connector Molex Nano-Fit side entry -0 -5 -5 -Connector_Molex -Molex_Nano-Fit_105309-xx06_1x06_P2.50mm_Vertical -Molex Nano-Fit Power Connectors, 105309-xx06, 6 Pins per row (http://www.molex.com/pdm_docs/sd/1053091203_sd.pdf), generated with kicad-footprint-generator -connector Molex Nano-Fit side entry -0 -6 -6 -Connector_Molex -Molex_Nano-Fit_105309-xx07_1x07_P2.50mm_Vertical -Molex Nano-Fit Power Connectors, 105309-xx07, 7 Pins per row (http://www.molex.com/pdm_docs/sd/1053091203_sd.pdf), generated with kicad-footprint-generator -connector Molex Nano-Fit side entry -0 -7 -7 -Connector_Molex -Molex_Nano-Fit_105309-xx08_1x08_P2.50mm_Vertical -Molex Nano-Fit Power Connectors, 105309-xx08, 8 Pins per row (http://www.molex.com/pdm_docs/sd/1053091203_sd.pdf), generated with kicad-footprint-generator -connector Molex Nano-Fit side entry -0 -8 -8 -Connector_Molex -Molex_Nano-Fit_105310-xx04_2x02_P2.50mm_Vertical -Molex Nano-Fit Power Connectors, 105310-xx04, 2 Pins per row (http://www.molex.com/pdm_docs/sd/1053101208_sd.pdf), generated with kicad-footprint-generator -connector Molex Nano-Fit side entry -0 -4 -4 -Connector_Molex -Molex_Nano-Fit_105310-xx06_2x03_P2.50mm_Vertical -Molex Nano-Fit Power Connectors, 105310-xx06, 3 Pins per row (http://www.molex.com/pdm_docs/sd/1053101208_sd.pdf), generated with kicad-footprint-generator -connector Molex Nano-Fit side entry -0 -6 -6 -Connector_Molex -Molex_Nano-Fit_105310-xx08_2x04_P2.50mm_Vertical -Molex Nano-Fit Power Connectors, 105310-xx08, 4 Pins per row (http://www.molex.com/pdm_docs/sd/1053101208_sd.pdf), generated with kicad-footprint-generator -connector Molex Nano-Fit side entry -0 -8 -8 -Connector_Molex -Molex_Nano-Fit_105310-xx10_2x05_P2.50mm_Vertical -Molex Nano-Fit Power Connectors, 105310-xx10, 5 Pins per row (http://www.molex.com/pdm_docs/sd/1053101208_sd.pdf), generated with kicad-footprint-generator -connector Molex Nano-Fit side entry -0 -10 -10 -Connector_Molex -Molex_Nano-Fit_105310-xx12_2x06_P2.50mm_Vertical -Molex Nano-Fit Power Connectors, 105310-xx12, 6 Pins per row (http://www.molex.com/pdm_docs/sd/1053101208_sd.pdf), generated with kicad-footprint-generator -connector Molex Nano-Fit side entry -0 -12 -12 -Connector_Molex -Molex_Nano-Fit_105310-xx14_2x07_P2.50mm_Vertical -Molex Nano-Fit Power Connectors, 105310-xx14, 7 Pins per row (http://www.molex.com/pdm_docs/sd/1053101208_sd.pdf), generated with kicad-footprint-generator -connector Molex Nano-Fit side entry -0 -14 -14 -Connector_Molex -Molex_Nano-Fit_105310-xx16_2x08_P2.50mm_Vertical -Molex Nano-Fit Power Connectors, 105310-xx16, 8 Pins per row (http://www.molex.com/pdm_docs/sd/1053101208_sd.pdf), generated with kicad-footprint-generator -connector Molex Nano-Fit side entry -0 -16 -16 -Connector_Molex -Molex_Nano-Fit_105313-xx02_1x02_P2.50mm_Horizontal -Molex Nano-Fit Power Connectors, 105313-xx02, 2 Pins per row (http://www.molex.com/pdm_docs/sd/1053131208_sd.pdf), generated with kicad-footprint-generator -connector Molex Nano-Fit top entry -0 -2 -2 -Connector_Molex -Molex_Nano-Fit_105313-xx03_1x03_P2.50mm_Horizontal -Molex Nano-Fit Power Connectors, 105313-xx03, 3 Pins per row (http://www.molex.com/pdm_docs/sd/1053131208_sd.pdf), generated with kicad-footprint-generator -connector Molex Nano-Fit top entry -0 -3 -3 -Connector_Molex -Molex_Nano-Fit_105313-xx04_1x04_P2.50mm_Horizontal -Molex Nano-Fit Power Connectors, 105313-xx04, 4 Pins per row (http://www.molex.com/pdm_docs/sd/1053131208_sd.pdf), generated with kicad-footprint-generator -connector Molex Nano-Fit top entry -0 -4 -4 -Connector_Molex -Molex_Nano-Fit_105313-xx05_1x05_P2.50mm_Horizontal -Molex Nano-Fit Power Connectors, 105313-xx05, 5 Pins per row (http://www.molex.com/pdm_docs/sd/1053131208_sd.pdf), generated with kicad-footprint-generator -connector Molex Nano-Fit top entry -0 -5 -5 -Connector_Molex -Molex_Nano-Fit_105313-xx06_1x06_P2.50mm_Horizontal -Molex Nano-Fit Power Connectors, 105313-xx06, 6 Pins per row (http://www.molex.com/pdm_docs/sd/1053131208_sd.pdf), generated with kicad-footprint-generator -connector Molex Nano-Fit top entry -0 -6 -6 -Connector_Molex -Molex_Nano-Fit_105313-xx07_1x07_P2.50mm_Horizontal -Molex Nano-Fit Power Connectors, 105313-xx07, 7 Pins per row (http://www.molex.com/pdm_docs/sd/1053131208_sd.pdf), generated with kicad-footprint-generator -connector Molex Nano-Fit top entry -0 -7 -7 -Connector_Molex -Molex_Nano-Fit_105313-xx08_1x08_P2.50mm_Horizontal -Molex Nano-Fit Power Connectors, 105313-xx08, 8 Pins per row (http://www.molex.com/pdm_docs/sd/1053131208_sd.pdf), generated with kicad-footprint-generator -connector Molex Nano-Fit top entry -0 -8 -8 -Connector_Molex -Molex_Nano-Fit_105314-xx04_2x02_P2.50mm_Horizontal -Molex Nano-Fit Power Connectors, 105314-xx04, 2 Pins per row (http://www.molex.com/pdm_docs/sd/1053141208_sd.pdf), generated with kicad-footprint-generator -connector Molex Nano-Fit top entry -0 -4 -4 -Connector_Molex -Molex_Nano-Fit_105314-xx06_2x03_P2.50mm_Horizontal -Molex Nano-Fit Power Connectors, 105314-xx06, 3 Pins per row (http://www.molex.com/pdm_docs/sd/1053141208_sd.pdf), generated with kicad-footprint-generator -connector Molex Nano-Fit top entry -0 -6 -6 -Connector_Molex -Molex_Nano-Fit_105314-xx08_2x04_P2.50mm_Horizontal -Molex Nano-Fit Power Connectors, 105314-xx08, 4 Pins per row (http://www.molex.com/pdm_docs/sd/1053141208_sd.pdf), generated with kicad-footprint-generator -connector Molex Nano-Fit top entry -0 -8 -8 -Connector_Molex -Molex_Nano-Fit_105314-xx10_2x05_P2.50mm_Horizontal -Molex Nano-Fit Power Connectors, 105314-xx10, 5 Pins per row (http://www.molex.com/pdm_docs/sd/1053141208_sd.pdf), generated with kicad-footprint-generator -connector Molex Nano-Fit top entry -0 -10 -10 -Connector_Molex -Molex_Nano-Fit_105314-xx12_2x06_P2.50mm_Horizontal -Molex Nano-Fit Power Connectors, 105314-xx12, 6 Pins per row (http://www.molex.com/pdm_docs/sd/1053141208_sd.pdf), generated with kicad-footprint-generator -connector Molex Nano-Fit top entry -0 -12 -12 -Connector_Molex -Molex_Nano-Fit_105314-xx14_2x07_P2.50mm_Horizontal -Molex Nano-Fit Power Connectors, 105314-xx14, 7 Pins per row (http://www.molex.com/pdm_docs/sd/1053141208_sd.pdf), generated with kicad-footprint-generator -connector Molex Nano-Fit top entry -0 -14 -14 -Connector_Molex -Molex_Nano-Fit_105314-xx16_2x08_P2.50mm_Horizontal -Molex Nano-Fit Power Connectors, 105314-xx16, 8 Pins per row (http://www.molex.com/pdm_docs/sd/1053141208_sd.pdf), generated with kicad-footprint-generator -connector Molex Nano-Fit top entry -0 -16 -16 -Connector_Molex -Molex_Panelmate_53780-0270_1x02-1MP_P1.25mm_Horizontal -Molex Panelmate series connector, 53780-0270 (), generated with kicad-footprint-generator -connector Molex Panelmate top entry -0 -4 -3 -Connector_Molex -Molex_Panelmate_53780-0370_1x03-1MP_P1.25mm_Horizontal -Molex Panelmate series connector, 53780-0370 (), generated with kicad-footprint-generator -connector Molex Panelmate top entry -0 -5 -4 -Connector_Molex -Molex_Panelmate_53780-0470_1x04-1MP_P1.25mm_Horizontal -Molex Panelmate series connector, 53780-0470 (), generated with kicad-footprint-generator -connector Molex Panelmate top entry -0 -6 -5 -Connector_Molex -Molex_Panelmate_53780-0570_1x05-1MP_P1.25mm_Horizontal -Molex Panelmate series connector, 53780-0570 (), generated with kicad-footprint-generator -connector Molex Panelmate top entry -0 -7 -6 -Connector_Molex -Molex_Panelmate_53780-0670_1x06-1MP_P1.25mm_Horizontal -Molex Panelmate series connector, 53780-0670 (), generated with kicad-footprint-generator -connector Molex Panelmate top entry -0 -8 -7 -Connector_Molex -Molex_Panelmate_53780-0770_1x07-1MP_P1.25mm_Horizontal -Molex Panelmate series connector, 53780-0770 (), generated with kicad-footprint-generator -connector Molex Panelmate top entry -0 -9 -8 -Connector_Molex -Molex_Panelmate_53780-0870_1x08-1MP_P1.25mm_Horizontal -Molex Panelmate series connector, 53780-0870 (), generated with kicad-footprint-generator -connector Molex Panelmate top entry -0 -10 -9 -Connector_Molex -Molex_Panelmate_53780-0970_1x09-1MP_P1.25mm_Horizontal -Molex Panelmate series connector, 53780-0970 (), generated with kicad-footprint-generator -connector Molex Panelmate top entry -0 -11 -10 -Connector_Molex -Molex_Panelmate_53780-1070_1x10-1MP_P1.25mm_Horizontal -Molex Panelmate series connector, 53780-1070 (), generated with kicad-footprint-generator -connector Molex Panelmate top entry -0 -12 -11 -Connector_Molex -Molex_Panelmate_53780-1270_1x12-1MP_P1.25mm_Horizontal -Molex Panelmate series connector, 53780-1270 (), generated with kicad-footprint-generator -connector Molex Panelmate top entry -0 -14 -13 -Connector_Molex -Molex_Panelmate_53780-1470_1x14-1MP_P1.25mm_Horizontal -Molex Panelmate series connector, 53780-1470 (), generated with kicad-footprint-generator -connector Molex Panelmate top entry -0 -16 -15 -Connector_Molex -Molex_Panelmate_53780-1570_1x15-1MP_P1.25mm_Horizontal -Molex Panelmate series connector, 53780-1570 (), generated with kicad-footprint-generator -connector Molex Panelmate top entry -0 -17 -16 -Connector_Molex -Molex_Panelmate_53780-1870_1x18-1MP_P1.25mm_Horizontal -Molex Panelmate series connector, 53780-1870 (), generated with kicad-footprint-generator -connector Molex Panelmate top entry -0 -20 -19 -Connector_Molex -Molex_Panelmate_53780-3070_1x30-1MP_P1.25mm_Horizontal -Molex Panelmate series connector, 53780-3070 (), generated with kicad-footprint-generator -connector Molex Panelmate top entry -0 -32 -31 -Connector_Molex -Molex_Pico-Clasp_202396-0207_1x02-1MP_P1.00mm_Horizontal -Molex Pico-Clasp series connector, 202396-0207 (http://www.molex.com/pdm_docs/sd/2023960207_sd.pdf), generated with kicad-footprint-generator -connector Molex Pico-Clasp top entry -0 -4 -3 -Connector_Molex -Molex_Pico-Clasp_202396-0307_1x03-1MP_P1.00mm_Horizontal -Molex Pico-Clasp series connector, 202396-0307 (http://www.molex.com/pdm_docs/sd/2023960207_sd.pdf), generated with kicad-footprint-generator -connector Molex Pico-Clasp top entry -0 -5 -4 -Connector_Molex -Molex_Pico-Clasp_202396-0407_1x04-1MP_P1.00mm_Horizontal -Molex Pico-Clasp series connector, 202396-0407 (http://www.molex.com/pdm_docs/sd/2023960207_sd.pdf), generated with kicad-footprint-generator -connector Molex Pico-Clasp top entry -0 -6 -5 -Connector_Molex -Molex_Pico-Clasp_202396-0507_1x05-1MP_P1.00mm_Horizontal -Molex Pico-Clasp series connector, 202396-0507 (http://www.molex.com/pdm_docs/sd/2023960207_sd.pdf), generated with kicad-footprint-generator -connector Molex Pico-Clasp top entry -0 -7 -6 -Connector_Molex -Molex_Pico-Clasp_202396-0607_1x06-1MP_P1.00mm_Horizontal -Molex Pico-Clasp series connector, 202396-0607 (http://www.molex.com/pdm_docs/sd/2023960207_sd.pdf), generated with kicad-footprint-generator -connector Molex Pico-Clasp top entry -0 -8 -7 -Connector_Molex -Molex_Pico-Clasp_202396-0707_1x07-1MP_P1.00mm_Horizontal -Molex Pico-Clasp series connector, 202396-0707 (http://www.molex.com/pdm_docs/sd/2023960207_sd.pdf), generated with kicad-footprint-generator -connector Molex Pico-Clasp top entry -0 -9 -8 -Connector_Molex -Molex_Pico-Clasp_202396-0807_1x08-1MP_P1.00mm_Horizontal -Molex Pico-Clasp series connector, 202396-0807 (http://www.molex.com/pdm_docs/sd/2023960207_sd.pdf), generated with kicad-footprint-generator -connector Molex Pico-Clasp top entry -0 -10 -9 -Connector_Molex -Molex_Pico-Clasp_202396-0907_1x09-1MP_P1.00mm_Horizontal -Molex Pico-Clasp series connector, 202396-0907 (http://www.molex.com/pdm_docs/sd/2023960207_sd.pdf), generated with kicad-footprint-generator -connector Molex Pico-Clasp top entry -0 -11 -10 -Connector_Molex -Molex_Pico-Clasp_202396-1007_1x10-1MP_P1.00mm_Horizontal -Molex Pico-Clasp series connector, 202396-1007 (http://www.molex.com/pdm_docs/sd/2023960207_sd.pdf), generated with kicad-footprint-generator -connector Molex Pico-Clasp top entry -0 -12 -11 -Connector_Molex -Molex_Pico-Clasp_202396-1107_1x11-1MP_P1.00mm_Horizontal -Molex Pico-Clasp series connector, 202396-1107 (http://www.molex.com/pdm_docs/sd/2023960207_sd.pdf), generated with kicad-footprint-generator -connector Molex Pico-Clasp top entry -0 -13 -12 -Connector_Molex -Molex_Pico-Clasp_202396-1207_1x12-1MP_P1.00mm_Horizontal -Molex Pico-Clasp series connector, 202396-1207 (http://www.molex.com/pdm_docs/sd/2023960207_sd.pdf), generated with kicad-footprint-generator -connector Molex Pico-Clasp top entry -0 -14 -13 -Connector_Molex -Molex_Pico-Clasp_202396-1307_1x13-1MP_P1.00mm_Horizontal -Molex Pico-Clasp series connector, 202396-1307 (http://www.molex.com/pdm_docs/sd/2023960207_sd.pdf), generated with kicad-footprint-generator -connector Molex Pico-Clasp top entry -0 -15 -14 -Connector_Molex -Molex_Pico-Clasp_202396-1407_1x14-1MP_P1.00mm_Horizontal -Molex Pico-Clasp series connector, 202396-1407 (http://www.molex.com/pdm_docs/sd/2023960207_sd.pdf), generated with kicad-footprint-generator -connector Molex Pico-Clasp top entry -0 -16 -15 -Connector_Molex -Molex_Pico-Clasp_202396-1507_1x15-1MP_P1.00mm_Horizontal -Molex Pico-Clasp series connector, 202396-1507 (http://www.molex.com/pdm_docs/sd/2023960207_sd.pdf), generated with kicad-footprint-generator -connector Molex Pico-Clasp top entry -0 -17 -16 -Connector_Molex -Molex_Pico-Clasp_501331-0207_1x02-1MP_P1.00mm_Vertical -Molex Pico-Clasp series connector, 501331-0207 (http://www.molex.com/pdm_docs/sd/5013310207_sd.pdf), generated with kicad-footprint-generator -connector Molex Pico-Clasp side entry -0 -4 -3 -Connector_Molex -Molex_Pico-Clasp_501331-0307_1x03-1MP_P1.00mm_Vertical -Molex Pico-Clasp series connector, 501331-0307 (http://www.molex.com/pdm_docs/sd/5013310207_sd.pdf), generated with kicad-footprint-generator -connector Molex Pico-Clasp side entry -0 -5 -4 -Connector_Molex -Molex_Pico-Clasp_501331-0407_1x04-1MP_P1.00mm_Vertical -Molex Pico-Clasp series connector, 501331-0407 (http://www.molex.com/pdm_docs/sd/5013310207_sd.pdf), generated with kicad-footprint-generator -connector Molex Pico-Clasp side entry -0 -6 -5 -Connector_Molex -Molex_Pico-Clasp_501331-0507_1x05-1MP_P1.00mm_Vertical -Molex Pico-Clasp series connector, 501331-0507 (http://www.molex.com/pdm_docs/sd/5013310207_sd.pdf), generated with kicad-footprint-generator -connector Molex Pico-Clasp side entry -0 -7 -6 -Connector_Molex -Molex_Pico-Clasp_501331-0607_1x06-1MP_P1.00mm_Vertical -Molex Pico-Clasp series connector, 501331-0607 (http://www.molex.com/pdm_docs/sd/5013310207_sd.pdf), generated with kicad-footprint-generator -connector Molex Pico-Clasp side entry -0 -8 -7 -Connector_Molex -Molex_Pico-Clasp_501331-0707_1x07-1MP_P1.00mm_Vertical -Molex Pico-Clasp series connector, 501331-0707 (http://www.molex.com/pdm_docs/sd/5013310207_sd.pdf), generated with kicad-footprint-generator -connector Molex Pico-Clasp side entry -0 -9 -8 -Connector_Molex -Molex_Pico-Clasp_501331-0807_1x08-1MP_P1.00mm_Vertical -Molex Pico-Clasp series connector, 501331-0807 (http://www.molex.com/pdm_docs/sd/5013310207_sd.pdf), generated with kicad-footprint-generator -connector Molex Pico-Clasp side entry -0 -10 -9 -Connector_Molex -Molex_Pico-Clasp_501331-0907_1x09-1MP_P1.00mm_Vertical -Molex Pico-Clasp series connector, 501331-0907 (http://www.molex.com/pdm_docs/sd/5013310207_sd.pdf), generated with kicad-footprint-generator -connector Molex Pico-Clasp side entry -0 -11 -10 -Connector_Molex -Molex_Pico-Clasp_501331-1007_1x10-1MP_P1.00mm_Vertical -Molex Pico-Clasp series connector, 501331-1007 (http://www.molex.com/pdm_docs/sd/5013310207_sd.pdf), generated with kicad-footprint-generator -connector Molex Pico-Clasp side entry -0 -12 -11 -Connector_Molex -Molex_Pico-Clasp_501331-1107_1x11-1MP_P1.00mm_Vertical -Molex Pico-Clasp series connector, 501331-1107 (http://www.molex.com/pdm_docs/sd/5013310207_sd.pdf), generated with kicad-footprint-generator -connector Molex Pico-Clasp side entry -0 -13 -12 -Connector_Molex -Molex_Pico-Clasp_501331-1207_1x12-1MP_P1.00mm_Vertical -Molex Pico-Clasp series connector, 501331-1207 (http://www.molex.com/pdm_docs/sd/5013310207_sd.pdf), generated with kicad-footprint-generator -connector Molex Pico-Clasp side entry -0 -14 -13 -Connector_Molex -Molex_Pico-Clasp_501331-1307_1x13-1MP_P1.00mm_Vertical -Molex Pico-Clasp series connector, 501331-1307 (http://www.molex.com/pdm_docs/sd/5013310207_sd.pdf), generated with kicad-footprint-generator -connector Molex Pico-Clasp side entry -0 -15 -14 -Connector_Molex -Molex_Pico-Clasp_501331-1407_1x14-1MP_P1.00mm_Vertical -Molex Pico-Clasp series connector, 501331-1407 (http://www.molex.com/pdm_docs/sd/5013310207_sd.pdf), generated with kicad-footprint-generator -connector Molex Pico-Clasp side entry -0 -16 -15 -Connector_Molex -Molex_Pico-Clasp_501331-1507_1x15-1MP_P1.00mm_Vertical -Molex Pico-Clasp series connector, 501331-1507 (http://www.molex.com/pdm_docs/sd/5013310207_sd.pdf), generated with kicad-footprint-generator -connector Molex Pico-Clasp side entry -0 -17 -16 -Connector_Molex -Molex_Pico-EZmate_78171-0002_1x02-1MP_P1.20mm_Vertical -Molex Pico-EZmate series connector, 78171-0002 (http://www.molex.com/pdm_docs/sd/781710002_sd.pdf), generated with kicad-footprint-generator -connector Molex Pico-EZmate side entry -0 -4 -3 -Connector_Molex -Molex_Pico-EZmate_78171-0003_1x03-1MP_P1.20mm_Vertical -Molex Pico-EZmate series connector, 78171-0003 (http://www.molex.com/pdm_docs/sd/781710002_sd.pdf), generated with kicad-footprint-generator -connector Molex Pico-EZmate side entry -0 -5 -4 -Connector_Molex -Molex_Pico-EZmate_78171-0004_1x04-1MP_P1.20mm_Vertical -Molex Pico-EZmate series connector, 78171-0004 (http://www.molex.com/pdm_docs/sd/781710002_sd.pdf), generated with kicad-footprint-generator -connector Molex Pico-EZmate side entry -0 -6 -5 -Connector_Molex -Molex_Pico-EZmate_78171-0005_1x05-1MP_P1.20mm_Vertical -Molex Pico-EZmate series connector, 78171-0005 (http://www.molex.com/pdm_docs/sd/781710002_sd.pdf), generated with kicad-footprint-generator -connector Molex Pico-EZmate side entry -0 -7 -6 -Connector_Molex -Molex_Pico-EZmate_Slim_202656-0021_1x02-1MP_P1.20mm_Vertical -Molex Pico-EZmate_Slim series connector, 202656-0021 (http://www.molex.com/pdm_docs/sd/2026560021_sd.pdf), generated with kicad-footprint-generator -connector Molex Pico-EZmate_Slim side entry -0 -4 -3 -Connector_Molex -Molex_Pico-Lock_504050-0491_1x04-1MP_P1.50mm_Horizontal -Molex Pico-Lock series connector, 504050-0491 (http://www.molex.com/pdm_docs/sd/5040500891_sd.pdf), generated with kicad-footprint-generator -connector Molex Pico-Lock horizontal -0 -6 -5 -Connector_Molex -Molex_Pico-Lock_504050-0591_1x05-1MP_P1.50mm_Horizontal -Molex Pico-Lock series connector, 504050-0591 (http://www.molex.com/pdm_docs/sd/5040500891_sd.pdf), generated with kicad-footprint-generator -connector Molex Pico-Lock horizontal -0 -7 -6 -Connector_Molex -Molex_Pico-Lock_504050-0691_1x06-1MP_P1.50mm_Horizontal -Molex Pico-Lock series connector, 504050-0691 (http://www.molex.com/pdm_docs/sd/5040500891_sd.pdf), generated with kicad-footprint-generator -connector Molex Pico-Lock horizontal -0 -8 -7 -Connector_Molex -Molex_Pico-Lock_504050-0791_1x07-1MP_P1.50mm_Horizontal -Molex Pico-Lock series connector, 504050-0791 (http://www.molex.com/pdm_docs/sd/5040500891_sd.pdf), generated with kicad-footprint-generator -connector Molex Pico-Lock horizontal -0 -9 -8 -Connector_Molex -Molex_Pico-Lock_504050-0891_1x08-1MP_P1.50mm_Horizontal -Molex Pico-Lock series connector, 504050-0891 (http://www.molex.com/pdm_docs/sd/5040500891_sd.pdf), generated with kicad-footprint-generator -connector Molex Pico-Lock horizontal -0 -10 -9 -Connector_Molex -Molex_Pico-Lock_504050-1091_1x10-1MP_P1.50mm_Horizontal -Molex Pico-Lock series connector, 504050-1091 (http://www.molex.com/pdm_docs/sd/5040500891_sd.pdf), generated with kicad-footprint-generator -connector Molex Pico-Lock horizontal -0 -12 -11 -Connector_Molex -Molex_Pico-Lock_504050-1291_1x12-1MP_P1.50mm_Horizontal -Molex Pico-Lock series connector, 504050-1291 (http://www.molex.com/pdm_docs/sd/5040500891_sd.pdf), generated with kicad-footprint-generator -connector Molex Pico-Lock horizontal -0 -14 -13 -Connector_Molex -Molex_Pico-SPOX_87437-1443_1x14-P1.5mm_Vertical -Molex Pico-SPOX Connector System, 87437-1443, 14 Pins per row (https://www.molex.com/pdm_docs/sd/874371443_sd.pdf#page=2) -molex pico spox 14 -0 -28 -14 -Connector_Molex -Molex_PicoBlade_53047-0210_1x02_P1.25mm_Vertical -Molex PicoBlade Connector System, 53047-0210, 2 Pins per row (http://www.molex.com/pdm_docs/sd/530470610_sd.pdf), generated with kicad-footprint-generator -connector Molex PicoBlade side entry -0 -2 -2 -Connector_Molex -Molex_PicoBlade_53047-0310_1x03_P1.25mm_Vertical -Molex PicoBlade Connector System, 53047-0310, 3 Pins per row (http://www.molex.com/pdm_docs/sd/530470610_sd.pdf), generated with kicad-footprint-generator -connector Molex PicoBlade side entry -0 -3 -3 -Connector_Molex -Molex_PicoBlade_53047-0410_1x04_P1.25mm_Vertical -Molex PicoBlade Connector System, 53047-0410, 4 Pins per row (http://www.molex.com/pdm_docs/sd/530470610_sd.pdf), generated with kicad-footprint-generator -connector Molex PicoBlade side entry -0 -4 -4 -Connector_Molex -Molex_PicoBlade_53047-0510_1x05_P1.25mm_Vertical -Molex PicoBlade Connector System, 53047-0510, 5 Pins per row (http://www.molex.com/pdm_docs/sd/530470610_sd.pdf), generated with kicad-footprint-generator -connector Molex PicoBlade side entry -0 -5 -5 -Connector_Molex -Molex_PicoBlade_53047-0610_1x06_P1.25mm_Vertical -Molex PicoBlade Connector System, 53047-0610, 6 Pins per row (http://www.molex.com/pdm_docs/sd/530470610_sd.pdf), generated with kicad-footprint-generator -connector Molex PicoBlade side entry -0 -6 -6 -Connector_Molex -Molex_PicoBlade_53047-0710_1x07_P1.25mm_Vertical -Molex PicoBlade Connector System, 53047-0710, 7 Pins per row (http://www.molex.com/pdm_docs/sd/530470610_sd.pdf), generated with kicad-footprint-generator -connector Molex PicoBlade side entry -0 -7 -7 -Connector_Molex -Molex_PicoBlade_53047-0810_1x08_P1.25mm_Vertical -Molex PicoBlade Connector System, 53047-0810, 8 Pins per row (http://www.molex.com/pdm_docs/sd/530470610_sd.pdf), generated with kicad-footprint-generator -connector Molex PicoBlade side entry -0 -8 -8 -Connector_Molex -Molex_PicoBlade_53047-0910_1x09_P1.25mm_Vertical -Molex PicoBlade Connector System, 53047-0910, 9 Pins per row (http://www.molex.com/pdm_docs/sd/530470610_sd.pdf), generated with kicad-footprint-generator -connector Molex PicoBlade side entry -0 -9 -9 -Connector_Molex -Molex_PicoBlade_53047-1010_1x10_P1.25mm_Vertical -Molex PicoBlade Connector System, 53047-1010, 10 Pins per row (http://www.molex.com/pdm_docs/sd/530470610_sd.pdf), generated with kicad-footprint-generator -connector Molex PicoBlade side entry -0 -10 -10 -Connector_Molex -Molex_PicoBlade_53047-1110_1x11_P1.25mm_Vertical -Molex PicoBlade Connector System, 53047-1110, 11 Pins per row (http://www.molex.com/pdm_docs/sd/530470610_sd.pdf), generated with kicad-footprint-generator -connector Molex PicoBlade side entry -0 -11 -11 -Connector_Molex -Molex_PicoBlade_53047-1210_1x12_P1.25mm_Vertical -Molex PicoBlade Connector System, 53047-1210, 12 Pins per row (http://www.molex.com/pdm_docs/sd/530470610_sd.pdf), generated with kicad-footprint-generator -connector Molex PicoBlade side entry -0 -12 -12 -Connector_Molex -Molex_PicoBlade_53047-1310_1x13_P1.25mm_Vertical -Molex PicoBlade Connector System, 53047-1310, 13 Pins per row (http://www.molex.com/pdm_docs/sd/530470610_sd.pdf), generated with kicad-footprint-generator -connector Molex PicoBlade side entry -0 -13 -13 -Connector_Molex -Molex_PicoBlade_53047-1410_1x14_P1.25mm_Vertical -Molex PicoBlade Connector System, 53047-1410, 14 Pins per row (http://www.molex.com/pdm_docs/sd/530470610_sd.pdf), generated with kicad-footprint-generator -connector Molex PicoBlade side entry -0 -14 -14 -Connector_Molex -Molex_PicoBlade_53047-1510_1x15_P1.25mm_Vertical -Molex PicoBlade Connector System, 53047-1510, 15 Pins per row (http://www.molex.com/pdm_docs/sd/530470610_sd.pdf), generated with kicad-footprint-generator -connector Molex PicoBlade side entry -0 -15 -15 -Connector_Molex -Molex_PicoBlade_53048-0210_1x02_P1.25mm_Horizontal -Molex PicoBlade Connector System, 53048-0210, 2 Pins per row (http://www.molex.com/pdm_docs/sd/530480210_sd.pdf), generated with kicad-footprint-generator -connector Molex PicoBlade top entry -0 -2 -2 -Connector_Molex -Molex_PicoBlade_53048-0310_1x03_P1.25mm_Horizontal -Molex PicoBlade Connector System, 53048-0310, 3 Pins per row (http://www.molex.com/pdm_docs/sd/530480210_sd.pdf), generated with kicad-footprint-generator -connector Molex PicoBlade top entry -0 -3 -3 -Connector_Molex -Molex_PicoBlade_53048-0410_1x04_P1.25mm_Horizontal -Molex PicoBlade Connector System, 53048-0410, 4 Pins per row (http://www.molex.com/pdm_docs/sd/530480210_sd.pdf), generated with kicad-footprint-generator -connector Molex PicoBlade top entry -0 -4 -4 -Connector_Molex -Molex_PicoBlade_53048-0510_1x05_P1.25mm_Horizontal -Molex PicoBlade Connector System, 53048-0510, 5 Pins per row (http://www.molex.com/pdm_docs/sd/530480210_sd.pdf), generated with kicad-footprint-generator -connector Molex PicoBlade top entry -0 -5 -5 -Connector_Molex -Molex_PicoBlade_53048-0610_1x06_P1.25mm_Horizontal -Molex PicoBlade Connector System, 53048-0610, 6 Pins per row (http://www.molex.com/pdm_docs/sd/530480210_sd.pdf), generated with kicad-footprint-generator -connector Molex PicoBlade top entry -0 -6 -6 -Connector_Molex -Molex_PicoBlade_53048-0710_1x07_P1.25mm_Horizontal -Molex PicoBlade Connector System, 53048-0710, 7 Pins per row (http://www.molex.com/pdm_docs/sd/530480210_sd.pdf), generated with kicad-footprint-generator -connector Molex PicoBlade top entry -0 -7 -7 -Connector_Molex -Molex_PicoBlade_53048-0810_1x08_P1.25mm_Horizontal -Molex PicoBlade Connector System, 53048-0810, 8 Pins per row (http://www.molex.com/pdm_docs/sd/530480210_sd.pdf), generated with kicad-footprint-generator -connector Molex PicoBlade top entry -0 -8 -8 -Connector_Molex -Molex_PicoBlade_53048-0910_1x09_P1.25mm_Horizontal -Molex PicoBlade Connector System, 53048-0910, 9 Pins per row (http://www.molex.com/pdm_docs/sd/530480210_sd.pdf), generated with kicad-footprint-generator -connector Molex PicoBlade top entry -0 -9 -9 -Connector_Molex -Molex_PicoBlade_53048-1010_1x10_P1.25mm_Horizontal -Molex PicoBlade Connector System, 53048-1010, 10 Pins per row (http://www.molex.com/pdm_docs/sd/530480210_sd.pdf), generated with kicad-footprint-generator -connector Molex PicoBlade top entry -0 -10 -10 -Connector_Molex -Molex_PicoBlade_53048-1110_1x11_P1.25mm_Horizontal -Molex PicoBlade Connector System, 53048-1110, 11 Pins per row (http://www.molex.com/pdm_docs/sd/530480210_sd.pdf), generated with kicad-footprint-generator -connector Molex PicoBlade top entry -0 -11 -11 -Connector_Molex -Molex_PicoBlade_53048-1210_1x12_P1.25mm_Horizontal -Molex PicoBlade Connector System, 53048-1210, 12 Pins per row (http://www.molex.com/pdm_docs/sd/530480210_sd.pdf), generated with kicad-footprint-generator -connector Molex PicoBlade top entry -0 -12 -12 -Connector_Molex -Molex_PicoBlade_53048-1310_1x13_P1.25mm_Horizontal -Molex PicoBlade Connector System, 53048-1310, 13 Pins per row (http://www.molex.com/pdm_docs/sd/530480210_sd.pdf), generated with kicad-footprint-generator -connector Molex PicoBlade top entry -0 -13 -13 -Connector_Molex -Molex_PicoBlade_53048-1410_1x14_P1.25mm_Horizontal -Molex PicoBlade Connector System, 53048-1410, 14 Pins per row (http://www.molex.com/pdm_docs/sd/530480210_sd.pdf), generated with kicad-footprint-generator -connector Molex PicoBlade top entry -0 -14 -14 -Connector_Molex -Molex_PicoBlade_53048-1510_1x15_P1.25mm_Horizontal -Molex PicoBlade Connector System, 53048-1510, 15 Pins per row (http://www.molex.com/pdm_docs/sd/530480210_sd.pdf), generated with kicad-footprint-generator -connector Molex PicoBlade top entry -0 -15 -15 -Connector_Molex -Molex_PicoBlade_53261-0271_1x02-1MP_P1.25mm_Horizontal -Molex PicoBlade series connector, 53261-0271 (http://www.molex.com/pdm_docs/sd/532610271_sd.pdf), generated with kicad-footprint-generator -connector Molex PicoBlade top entry -0 -4 -3 -Connector_Molex -Molex_PicoBlade_53261-0371_1x03-1MP_P1.25mm_Horizontal -Molex PicoBlade series connector, 53261-0371 (http://www.molex.com/pdm_docs/sd/532610271_sd.pdf), generated with kicad-footprint-generator -connector Molex PicoBlade top entry -0 -5 -4 -Connector_Molex -Molex_PicoBlade_53261-0471_1x04-1MP_P1.25mm_Horizontal -Molex PicoBlade series connector, 53261-0471 (http://www.molex.com/pdm_docs/sd/532610271_sd.pdf), generated with kicad-footprint-generator -connector Molex PicoBlade top entry -0 -6 -5 -Connector_Molex -Molex_PicoBlade_53261-0571_1x05-1MP_P1.25mm_Horizontal -Molex PicoBlade series connector, 53261-0571 (http://www.molex.com/pdm_docs/sd/532610271_sd.pdf), generated with kicad-footprint-generator -connector Molex PicoBlade top entry -0 -7 -6 -Connector_Molex -Molex_PicoBlade_53261-0671_1x06-1MP_P1.25mm_Horizontal -Molex PicoBlade series connector, 53261-0671 (http://www.molex.com/pdm_docs/sd/532610271_sd.pdf), generated with kicad-footprint-generator -connector Molex PicoBlade top entry -0 -8 -7 -Connector_Molex -Molex_PicoBlade_53261-0771_1x07-1MP_P1.25mm_Horizontal -Molex PicoBlade series connector, 53261-0771 (http://www.molex.com/pdm_docs/sd/532610271_sd.pdf), generated with kicad-footprint-generator -connector Molex PicoBlade top entry -0 -9 -8 -Connector_Molex -Molex_PicoBlade_53261-0871_1x08-1MP_P1.25mm_Horizontal -Molex PicoBlade series connector, 53261-0871 (http://www.molex.com/pdm_docs/sd/532610271_sd.pdf), generated with kicad-footprint-generator -connector Molex PicoBlade top entry -0 -10 -9 -Connector_Molex -Molex_PicoBlade_53261-0971_1x09-1MP_P1.25mm_Horizontal -Molex PicoBlade series connector, 53261-0971 (http://www.molex.com/pdm_docs/sd/532610271_sd.pdf), generated with kicad-footprint-generator -connector Molex PicoBlade top entry -0 -11 -10 -Connector_Molex -Molex_PicoBlade_53261-1071_1x10-1MP_P1.25mm_Horizontal -Molex PicoBlade series connector, 53261-1071 (http://www.molex.com/pdm_docs/sd/532610271_sd.pdf), generated with kicad-footprint-generator -connector Molex PicoBlade top entry -0 -12 -11 -Connector_Molex -Molex_PicoBlade_53261-1171_1x11-1MP_P1.25mm_Horizontal -Molex PicoBlade series connector, 53261-1171 (http://www.molex.com/pdm_docs/sd/532610271_sd.pdf), generated with kicad-footprint-generator -connector Molex PicoBlade top entry -0 -13 -12 -Connector_Molex -Molex_PicoBlade_53261-1271_1x12-1MP_P1.25mm_Horizontal -Molex PicoBlade series connector, 53261-1271 (http://www.molex.com/pdm_docs/sd/532610271_sd.pdf), generated with kicad-footprint-generator -connector Molex PicoBlade top entry -0 -14 -13 -Connector_Molex -Molex_PicoBlade_53261-1371_1x13-1MP_P1.25mm_Horizontal -Molex PicoBlade series connector, 53261-1371 (http://www.molex.com/pdm_docs/sd/532610271_sd.pdf), generated with kicad-footprint-generator -connector Molex PicoBlade top entry -0 -15 -14 -Connector_Molex -Molex_PicoBlade_53261-1471_1x14-1MP_P1.25mm_Horizontal -Molex PicoBlade series connector, 53261-1471 (http://www.molex.com/pdm_docs/sd/532610271_sd.pdf), generated with kicad-footprint-generator -connector Molex PicoBlade top entry -0 -16 -15 -Connector_Molex -Molex_PicoBlade_53261-1571_1x15-1MP_P1.25mm_Horizontal -Molex PicoBlade series connector, 53261-1571 (http://www.molex.com/pdm_docs/sd/532610271_sd.pdf), generated with kicad-footprint-generator -connector Molex PicoBlade top entry -0 -17 -16 -Connector_Molex -Molex_PicoBlade_53261-1771_1x17-1MP_P1.25mm_Horizontal -Molex PicoBlade series connector, 53261-1771 (http://www.molex.com/pdm_docs/sd/532610271_sd.pdf), generated with kicad-footprint-generator -connector Molex PicoBlade top entry -0 -19 -18 -Connector_Molex -Molex_PicoBlade_53398-0271_1x02-1MP_P1.25mm_Vertical -Molex PicoBlade series connector, 53398-0271 (http://www.molex.com/pdm_docs/sd/533980271_sd.pdf), generated with kicad-footprint-generator -connector Molex PicoBlade side entry -0 -4 -3 -Connector_Molex -Molex_PicoBlade_53398-0371_1x03-1MP_P1.25mm_Vertical -Molex PicoBlade series connector, 53398-0371 (http://www.molex.com/pdm_docs/sd/533980271_sd.pdf), generated with kicad-footprint-generator -connector Molex PicoBlade side entry -0 -5 -4 -Connector_Molex -Molex_PicoBlade_53398-0471_1x04-1MP_P1.25mm_Vertical -Molex PicoBlade series connector, 53398-0471 (http://www.molex.com/pdm_docs/sd/533980271_sd.pdf), generated with kicad-footprint-generator -connector Molex PicoBlade side entry -0 -6 -5 -Connector_Molex -Molex_PicoBlade_53398-0571_1x05-1MP_P1.25mm_Vertical -Molex PicoBlade series connector, 53398-0571 (http://www.molex.com/pdm_docs/sd/533980271_sd.pdf), generated with kicad-footprint-generator -connector Molex PicoBlade side entry -0 -7 -6 -Connector_Molex -Molex_PicoBlade_53398-0671_1x06-1MP_P1.25mm_Vertical -Molex PicoBlade series connector, 53398-0671 (http://www.molex.com/pdm_docs/sd/533980271_sd.pdf), generated with kicad-footprint-generator -connector Molex PicoBlade side entry -0 -8 -7 -Connector_Molex -Molex_PicoBlade_53398-0771_1x07-1MP_P1.25mm_Vertical -Molex PicoBlade series connector, 53398-0771 (http://www.molex.com/pdm_docs/sd/533980271_sd.pdf), generated with kicad-footprint-generator -connector Molex PicoBlade side entry -0 -9 -8 -Connector_Molex -Molex_PicoBlade_53398-0871_1x08-1MP_P1.25mm_Vertical -Molex PicoBlade series connector, 53398-0871 (http://www.molex.com/pdm_docs/sd/533980271_sd.pdf), generated with kicad-footprint-generator -connector Molex PicoBlade side entry -0 -10 -9 -Connector_Molex -Molex_PicoBlade_53398-0971_1x09-1MP_P1.25mm_Vertical -Molex PicoBlade series connector, 53398-0971 (http://www.molex.com/pdm_docs/sd/533980271_sd.pdf), generated with kicad-footprint-generator -connector Molex PicoBlade side entry -0 -11 -10 -Connector_Molex -Molex_PicoBlade_53398-1071_1x10-1MP_P1.25mm_Vertical -Molex PicoBlade series connector, 53398-1071 (http://www.molex.com/pdm_docs/sd/533980271_sd.pdf), generated with kicad-footprint-generator -connector Molex PicoBlade side entry -0 -12 -11 -Connector_Molex -Molex_PicoBlade_53398-1171_1x11-1MP_P1.25mm_Vertical -Molex PicoBlade series connector, 53398-1171 (http://www.molex.com/pdm_docs/sd/533980271_sd.pdf), generated with kicad-footprint-generator -connector Molex PicoBlade side entry -0 -13 -12 -Connector_Molex -Molex_PicoBlade_53398-1271_1x12-1MP_P1.25mm_Vertical -Molex PicoBlade series connector, 53398-1271 (http://www.molex.com/pdm_docs/sd/533980271_sd.pdf), generated with kicad-footprint-generator -connector Molex PicoBlade side entry -0 -14 -13 -Connector_Molex -Molex_PicoBlade_53398-1371_1x13-1MP_P1.25mm_Vertical -Molex PicoBlade series connector, 53398-1371 (http://www.molex.com/pdm_docs/sd/533980271_sd.pdf), generated with kicad-footprint-generator -connector Molex PicoBlade side entry -0 -15 -14 -Connector_Molex -Molex_PicoBlade_53398-1471_1x14-1MP_P1.25mm_Vertical -Molex PicoBlade series connector, 53398-1471 (http://www.molex.com/pdm_docs/sd/533980271_sd.pdf), generated with kicad-footprint-generator -connector Molex PicoBlade side entry -0 -16 -15 -Connector_Molex -Molex_PicoBlade_53398-1571_1x15-1MP_P1.25mm_Vertical -Molex PicoBlade series connector, 53398-1571 (http://www.molex.com/pdm_docs/sd/533980271_sd.pdf), generated with kicad-footprint-generator -connector Molex PicoBlade side entry -0 -17 -16 -Connector_Molex -Molex_Picoflex_90325-0004_2x02_P1.27mm_Vertical -Molex Picoflex Ribbon-Cable Connectors, 90325-0004, 4 Pins (http://www.molex.com/pdm_docs/sd/903250004_sd.pdf), generated with kicad-footprint-generator -connector Molex Picoflex side entry -0 -4 -4 -Connector_Molex -Molex_Picoflex_90325-0006_2x03_P1.27mm_Vertical -Molex Picoflex Ribbon-Cable Connectors, 90325-0006, 6 Pins (http://www.molex.com/pdm_docs/sd/903250004_sd.pdf), generated with kicad-footprint-generator -connector Molex Picoflex side entry -0 -6 -6 -Connector_Molex -Molex_Picoflex_90325-0008_2x04_P1.27mm_Vertical -Molex Picoflex Ribbon-Cable Connectors, 90325-0008, 8 Pins (http://www.molex.com/pdm_docs/sd/903250004_sd.pdf), generated with kicad-footprint-generator -connector Molex Picoflex side entry -0 -8 -8 -Connector_Molex -Molex_Picoflex_90325-0010_2x05_P1.27mm_Vertical -Molex Picoflex Ribbon-Cable Connectors, 90325-0010, 10 Pins (http://www.molex.com/pdm_docs/sd/903250004_sd.pdf), generated with kicad-footprint-generator -connector Molex Picoflex side entry -0 -10 -10 -Connector_Molex -Molex_Picoflex_90325-0012_2x06_P1.27mm_Vertical -Molex Picoflex Ribbon-Cable Connectors, 90325-0012, 12 Pins (http://www.molex.com/pdm_docs/sd/903250004_sd.pdf), generated with kicad-footprint-generator -connector Molex Picoflex side entry -0 -12 -12 -Connector_Molex -Molex_Picoflex_90325-0014_2x07_P1.27mm_Vertical -Molex Picoflex Ribbon-Cable Connectors, 90325-0014, 14 Pins (http://www.molex.com/pdm_docs/sd/903250004_sd.pdf), generated with kicad-footprint-generator -connector Molex Picoflex side entry -0 -14 -14 -Connector_Molex -Molex_Picoflex_90325-0016_2x08_P1.27mm_Vertical -Molex Picoflex Ribbon-Cable Connectors, 90325-0016, 16 Pins (http://www.molex.com/pdm_docs/sd/903250004_sd.pdf), generated with kicad-footprint-generator -connector Molex Picoflex side entry -0 -16 -16 -Connector_Molex -Molex_Picoflex_90325-0018_2x09_P1.27mm_Vertical -Molex Picoflex Ribbon-Cable Connectors, 90325-0018, 18 Pins (http://www.molex.com/pdm_docs/sd/903250004_sd.pdf), generated with kicad-footprint-generator -connector Molex Picoflex side entry -0 -18 -18 -Connector_Molex -Molex_Picoflex_90325-0020_2x10_P1.27mm_Vertical -Molex Picoflex Ribbon-Cable Connectors, 90325-0020, 20 Pins (http://www.molex.com/pdm_docs/sd/903250004_sd.pdf), generated with kicad-footprint-generator -connector Molex Picoflex side entry -0 -20 -20 -Connector_Molex -Molex_Picoflex_90325-0022_2x11_P1.27mm_Vertical -Molex Picoflex Ribbon-Cable Connectors, 90325-0022, 22 Pins (http://www.molex.com/pdm_docs/sd/903250004_sd.pdf), generated with kicad-footprint-generator -connector Molex Picoflex side entry -0 -22 -22 -Connector_Molex -Molex_Picoflex_90325-0024_2x12_P1.27mm_Vertical -Molex Picoflex Ribbon-Cable Connectors, 90325-0024, 24 Pins (http://www.molex.com/pdm_docs/sd/903250004_sd.pdf), generated with kicad-footprint-generator -connector Molex Picoflex side entry -0 -24 -24 -Connector_Molex -Molex_Picoflex_90325-0026_2x13_P1.27mm_Vertical -Molex Picoflex Ribbon-Cable Connectors, 90325-0026, 26 Pins (http://www.molex.com/pdm_docs/sd/903250004_sd.pdf), generated with kicad-footprint-generator -connector Molex Picoflex side entry -0 -26 -26 -Connector_Molex -Molex_Picoflex_90814-0004_2x02_P1.27mm_Vertical -Molex Picoflex Ribbon-Cable Connectors, 90814-0004, 4 Pins (http://www.molex.com/pdm_docs/sd/908140004_sd.pdf), generated with kicad-footprint-generator -connector Molex Picoflex side entry -0 -4 -4 -Connector_Molex -Molex_Picoflex_90814-0006_2x03_P1.27mm_Vertical -Molex Picoflex Ribbon-Cable Connectors, 90814-0006, 6 Pins (http://www.molex.com/pdm_docs/sd/908140004_sd.pdf), generated with kicad-footprint-generator -connector Molex Picoflex side entry -0 -6 -6 -Connector_Molex -Molex_Picoflex_90814-0008_2x04_P1.27mm_Vertical -Molex Picoflex Ribbon-Cable Connectors, 90814-0008, 8 Pins (http://www.molex.com/pdm_docs/sd/908140004_sd.pdf), generated with kicad-footprint-generator -connector Molex Picoflex side entry -0 -8 -8 -Connector_Molex -Molex_Picoflex_90814-0010_2x05_P1.27mm_Vertical -Molex Picoflex Ribbon-Cable Connectors, 90814-0010, 10 Pins (http://www.molex.com/pdm_docs/sd/908140004_sd.pdf), generated with kicad-footprint-generator -connector Molex Picoflex side entry -0 -10 -10 -Connector_Molex -Molex_Picoflex_90814-0012_2x06_P1.27mm_Vertical -Molex Picoflex Ribbon-Cable Connectors, 90814-0012, 12 Pins (http://www.molex.com/pdm_docs/sd/908140004_sd.pdf), generated with kicad-footprint-generator -connector Molex Picoflex side entry -0 -12 -12 -Connector_Molex -Molex_Picoflex_90814-0014_2x07_P1.27mm_Vertical -Molex Picoflex Ribbon-Cable Connectors, 90814-0014, 14 Pins (http://www.molex.com/pdm_docs/sd/908140004_sd.pdf), generated with kicad-footprint-generator -connector Molex Picoflex side entry -0 -14 -14 -Connector_Molex -Molex_Picoflex_90814-0016_2x08_P1.27mm_Vertical -Molex Picoflex Ribbon-Cable Connectors, 90814-0016, 16 Pins (http://www.molex.com/pdm_docs/sd/908140004_sd.pdf), generated with kicad-footprint-generator -connector Molex Picoflex side entry -0 -16 -16 -Connector_Molex -Molex_Picoflex_90814-0018_2x09_P1.27mm_Vertical -Molex Picoflex Ribbon-Cable Connectors, 90814-0018, 18 Pins (http://www.molex.com/pdm_docs/sd/908140004_sd.pdf), generated with kicad-footprint-generator -connector Molex Picoflex side entry -0 -18 -18 -Connector_Molex -Molex_Picoflex_90814-0020_2x10_P1.27mm_Vertical -Molex Picoflex Ribbon-Cable Connectors, 90814-0020, 20 Pins (http://www.molex.com/pdm_docs/sd/908140004_sd.pdf), generated with kicad-footprint-generator -connector Molex Picoflex side entry -0 -20 -20 -Connector_Molex -Molex_Picoflex_90814-0022_2x11_P1.27mm_Vertical -Molex Picoflex Ribbon-Cable Connectors, 90814-0022, 22 Pins (http://www.molex.com/pdm_docs/sd/908140004_sd.pdf), generated with kicad-footprint-generator -connector Molex Picoflex side entry -0 -22 -22 -Connector_Molex -Molex_Picoflex_90814-0024_2x12_P1.27mm_Vertical -Molex Picoflex Ribbon-Cable Connectors, 90814-0024, 24 Pins (http://www.molex.com/pdm_docs/sd/908140004_sd.pdf), generated with kicad-footprint-generator -connector Molex Picoflex side entry -0 -24 -24 -Connector_Molex -Molex_Picoflex_90814-0026_2x13_P1.27mm_Vertical -Molex Picoflex Ribbon-Cable Connectors, 90814-0026, 26 Pins (http://www.molex.com/pdm_docs/sd/908140004_sd.pdf), generated with kicad-footprint-generator -connector Molex Picoflex side entry -0 -26 -26 -Connector_Molex -Molex_SL_171971-0002_1x02_P2.54mm_Vertical -Molex Stackable Linear Connector, 171971-0002 (compatible alternatives: 171971-0102, 171971-0202), 2 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator -connector Molex SL vertical -0 -2 -2 -Connector_Molex -Molex_SL_171971-0003_1x03_P2.54mm_Vertical -Molex Stackable Linear Connector, 171971-0003 (compatible alternatives: 171971-0103, 171971-0203), 3 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator -connector Molex SL vertical -0 -3 -3 -Connector_Molex -Molex_SL_171971-0004_1x04_P2.54mm_Vertical -Molex Stackable Linear Connector, 171971-0004 (compatible alternatives: 171971-0104, 171971-0204), 4 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator -connector Molex SL vertical -0 -4 -4 -Connector_Molex -Molex_SL_171971-0005_1x05_P2.54mm_Vertical -Molex Stackable Linear Connector, 171971-0005 (compatible alternatives: 171971-0105, 171971-0205), 5 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator -connector Molex SL vertical -0 -5 -5 -Connector_Molex -Molex_SL_171971-0006_1x06_P2.54mm_Vertical -Molex Stackable Linear Connector, 171971-0006 (compatible alternatives: 171971-0106, 171971-0206), 6 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator -connector Molex SL vertical -0 -6 -6 -Connector_Molex -Molex_SL_171971-0007_1x07_P2.54mm_Vertical -Molex Stackable Linear Connector, 171971-0007 (compatible alternatives: 171971-0107, 171971-0207), 7 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator -connector Molex SL vertical -0 -7 -7 -Connector_Molex -Molex_SL_171971-0008_1x08_P2.54mm_Vertical -Molex Stackable Linear Connector, 171971-0008 (compatible alternatives: 171971-0108, 171971-0208), 8 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator -connector Molex SL vertical -0 -8 -8 -Connector_Molex -Molex_SL_171971-0009_1x09_P2.54mm_Vertical -Molex Stackable Linear Connector, 171971-0009 (compatible alternatives: 171971-0109, 171971-0209), 9 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator -connector Molex SL vertical -0 -9 -9 -Connector_Molex -Molex_SL_171971-0010_1x10_P2.54mm_Vertical -Molex Stackable Linear Connector, 171971-0010 (compatible alternatives: 171971-0110, 171971-0210), 10 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator -connector Molex SL vertical -0 -10 -10 -Connector_Molex -Molex_SL_171971-0011_1x11_P2.54mm_Vertical -Molex Stackable Linear Connector, 171971-0011 (compatible alternatives: 171971-0111, 171971-0211), 11 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator -connector Molex SL vertical -0 -11 -11 -Connector_Molex -Molex_SL_171971-0012_1x12_P2.54mm_Vertical -Molex Stackable Linear Connector, 171971-0012 (compatible alternatives: 171971-0112, 171971-0212), 12 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator -connector Molex SL vertical -0 -12 -12 -Connector_Molex -Molex_SL_171971-0013_1x13_P2.54mm_Vertical -Molex Stackable Linear Connector, 171971-0013 (compatible alternatives: 171971-0113, 171971-0213), 13 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator -connector Molex SL vertical -0 -13 -13 -Connector_Molex -Molex_SL_171971-0014_1x14_P2.54mm_Vertical -Molex Stackable Linear Connector, 171971-0014 (compatible alternatives: 171971-0114, 171971-0214), 14 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator -connector Molex SL vertical -0 -14 -14 -Connector_Molex -Molex_SL_171971-0015_1x15_P2.54mm_Vertical -Molex Stackable Linear Connector, 171971-0015 (compatible alternatives: 171971-0115, 171971-0215), 15 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator -connector Molex SL vertical -0 -15 -15 -Connector_Molex -Molex_SL_171971-0016_1x16_P2.54mm_Vertical -Molex Stackable Linear Connector, 171971-0016 (compatible alternatives: 171971-0116, 171971-0216), 16 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator -connector Molex SL vertical -0 -16 -16 -Connector_Molex -Molex_SL_171971-0017_1x17_P2.54mm_Vertical -Molex Stackable Linear Connector, 171971-0017 (compatible alternatives: 171971-0117, 171971-0217), 17 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator -connector Molex SL vertical -0 -17 -17 -Connector_Molex -Molex_SL_171971-0018_1x18_P2.54mm_Vertical -Molex Stackable Linear Connector, 171971-0018 (compatible alternatives: 171971-0118, 171971-0218), 18 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator -connector Molex SL vertical -0 -18 -18 -Connector_Molex -Molex_SL_171971-0019_1x19_P2.54mm_Vertical -Molex Stackable Linear Connector, 171971-0019 (compatible alternatives: 171971-0119, 171971-0219), 19 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator -connector Molex SL vertical -0 -19 -19 -Connector_Molex -Molex_SL_171971-0020_1x20_P2.54mm_Vertical -Molex Stackable Linear Connector, 171971-0020 (compatible alternatives: 171971-0120, 171971-0220), 20 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator -connector Molex SL vertical -0 -20 -20 -Connector_Molex -Molex_SL_171971-0021_1x21_P2.54mm_Vertical -Molex Stackable Linear Connector, 171971-0021 (compatible alternatives: 171971-0121, 171971-0221), 21 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator -connector Molex SL vertical -0 -21 -21 -Connector_Molex -Molex_SL_171971-0022_1x22_P2.54mm_Vertical -Molex Stackable Linear Connector, 171971-0022 (compatible alternatives: 171971-0122, 171971-0222), 22 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator -connector Molex SL vertical -0 -22 -22 -Connector_Molex -Molex_SL_171971-0023_1x23_P2.54mm_Vertical -Molex Stackable Linear Connector, 171971-0023 (compatible alternatives: 171971-0123, 171971-0223), 23 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator -connector Molex SL vertical -0 -23 -23 -Connector_Molex -Molex_SL_171971-0024_1x24_P2.54mm_Vertical -Molex Stackable Linear Connector, 171971-0024 (compatible alternatives: 171971-0124, 171971-0224), 24 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator -connector Molex SL vertical -0 -24 -24 -Connector_Molex -Molex_SL_171971-0025_1x25_P2.54mm_Vertical -Molex Stackable Linear Connector, 171971-0025 (compatible alternatives: 171971-0125, 171971-0225), 25 Pins per row (https://www.molex.com/pdm_docs/sd/1719710002_sd.pdf), generated with kicad-footprint-generator -connector Molex SL vertical -0 -25 -25 -Connector_Molex -Molex_SPOX_5267-02A_1x02_P2.50mm_Vertical -Molex SPOX Connector System, 5267-02A, 2 Pins per row (http://www.molex.com/pdm_docs/sd/022035035_sd.pdf), generated with kicad-footprint-generator -connector Molex SPOX side entry -0 -2 -2 -Connector_Molex -Molex_SPOX_5267-03A_1x03_P2.50mm_Vertical -Molex SPOX Connector System, 5267-03A, 3 Pins per row (http://www.molex.com/pdm_docs/sd/022035035_sd.pdf), generated with kicad-footprint-generator -connector Molex SPOX side entry -0 -3 -3 -Connector_Molex -Molex_SPOX_5267-04A_1x04_P2.50mm_Vertical -Molex SPOX Connector System, 5267-04A, 4 Pins per row (http://www.molex.com/pdm_docs/sd/022035035_sd.pdf), generated with kicad-footprint-generator -connector Molex SPOX side entry -0 -4 -4 -Connector_Molex -Molex_SPOX_5267-05A_1x05_P2.50mm_Vertical -Molex SPOX Connector System, 5267-05A, 5 Pins per row (http://www.molex.com/pdm_docs/sd/022035035_sd.pdf), generated with kicad-footprint-generator -connector Molex SPOX side entry -0 -5 -5 -Connector_Molex -Molex_SPOX_5267-06A_1x06_P2.50mm_Vertical -Molex SPOX Connector System, 5267-06A, 6 Pins per row (http://www.molex.com/pdm_docs/sd/022035035_sd.pdf), generated with kicad-footprint-generator -connector Molex SPOX side entry -0 -6 -6 -Connector_Molex -Molex_SPOX_5267-07A_1x07_P2.50mm_Vertical -Molex SPOX Connector System, 5267-07A, 7 Pins per row (http://www.molex.com/pdm_docs/sd/022035035_sd.pdf), generated with kicad-footprint-generator -connector Molex SPOX side entry -0 -7 -7 -Connector_Molex -Molex_SPOX_5267-08A_1x08_P2.50mm_Vertical -Molex SPOX Connector System, 5267-08A, 8 Pins per row (http://www.molex.com/pdm_docs/sd/022035035_sd.pdf), generated with kicad-footprint-generator -connector Molex SPOX side entry -0 -8 -8 -Connector_Molex -Molex_SPOX_5267-09A_1x09_P2.50mm_Vertical -Molex SPOX Connector System, 5267-09A, 9 Pins per row (http://www.molex.com/pdm_docs/sd/022035035_sd.pdf), generated with kicad-footprint-generator -connector Molex SPOX side entry -0 -9 -9 -Connector_Molex -Molex_SPOX_5267-10A_1x10_P2.50mm_Vertical -Molex SPOX Connector System, 5267-10A, 10 Pins per row (http://www.molex.com/pdm_docs/sd/022035035_sd.pdf), generated with kicad-footprint-generator -connector Molex SPOX side entry -0 -10 -10 -Connector_Molex -Molex_SPOX_5267-11A_1x11_P2.50mm_Vertical -Molex SPOX Connector System, 5267-11A, 11 Pins per row (http://www.molex.com/pdm_docs/sd/022035035_sd.pdf), generated with kicad-footprint-generator -connector Molex SPOX side entry -0 -11 -11 -Connector_Molex -Molex_SPOX_5267-12A_1x12_P2.50mm_Vertical -Molex SPOX Connector System, 5267-12A, 12 Pins per row (http://www.molex.com/pdm_docs/sd/022035035_sd.pdf), generated with kicad-footprint-generator -connector Molex SPOX side entry -0 -12 -12 -Connector_Molex -Molex_SPOX_5267-13A_1x13_P2.50mm_Vertical -Molex SPOX Connector System, 5267-13A, 13 Pins per row (http://www.molex.com/pdm_docs/sd/022035035_sd.pdf), generated with kicad-footprint-generator -connector Molex SPOX side entry -0 -13 -13 -Connector_Molex -Molex_SPOX_5267-14A_1x14_P2.50mm_Vertical -Molex SPOX Connector System, 5267-14A, 14 Pins per row (http://www.molex.com/pdm_docs/sd/022035035_sd.pdf), generated with kicad-footprint-generator -connector Molex SPOX side entry -0 -14 -14 -Connector_Molex -Molex_SPOX_5267-15A_1x15_P2.50mm_Vertical -Molex SPOX Connector System, 5267-15A, 15 Pins per row (http://www.molex.com/pdm_docs/sd/022035035_sd.pdf), generated with kicad-footprint-generator -connector Molex SPOX side entry -0 -15 -15 -Connector_Molex -Molex_SPOX_5268-02A_1x02_P2.50mm_Horizontal -Molex SPOX Connector System, 5268-02A, 2 Pins per row (https://www.molex.com/pdm_docs/sd/022057045_sd.pdf), generated with kicad-footprint-generator -connector Molex SPOX horizontal -0 -2 -2 -Connector_Molex -Molex_SPOX_5268-03A_1x03_P2.50mm_Horizontal -Molex SPOX Connector System, 5268-03A, 3 Pins per row (https://www.molex.com/pdm_docs/sd/022057045_sd.pdf), generated with kicad-footprint-generator -connector Molex SPOX horizontal -0 -3 -3 -Connector_Molex -Molex_SPOX_5268-04A_1x04_P2.50mm_Horizontal -Molex SPOX Connector System, 5268-04A, 4 Pins per row (https://www.molex.com/pdm_docs/sd/022057045_sd.pdf), generated with kicad-footprint-generator -connector Molex SPOX horizontal -0 -4 -4 -Connector_Molex -Molex_SPOX_5268-05A_1x05_P2.50mm_Horizontal -Molex SPOX Connector System, 5268-05A, 5 Pins per row (https://www.molex.com/pdm_docs/sd/022057045_sd.pdf), generated with kicad-footprint-generator -connector Molex SPOX horizontal -0 -5 -5 -Connector_Molex -Molex_SPOX_5268-06A_1x06_P2.50mm_Horizontal -Molex SPOX Connector System, 5268-06A, 6 Pins per row (https://www.molex.com/pdm_docs/sd/022057045_sd.pdf), generated with kicad-footprint-generator -connector Molex SPOX horizontal -0 -6 -6 -Connector_Molex -Molex_SPOX_5268-07A_1x07_P2.50mm_Horizontal -Molex SPOX Connector System, 5268-07A, 7 Pins per row (https://www.molex.com/pdm_docs/sd/022057045_sd.pdf), generated with kicad-footprint-generator -connector Molex SPOX horizontal -0 -7 -7 -Connector_Molex -Molex_SPOX_5268-08A_1x08_P2.50mm_Horizontal -Molex SPOX Connector System, 5268-08A, 8 Pins per row (https://www.molex.com/pdm_docs/sd/022057045_sd.pdf), generated with kicad-footprint-generator -connector Molex SPOX horizontal -0 -8 -8 -Connector_Molex -Molex_SPOX_5268-09A_1x09_P2.50mm_Horizontal -Molex SPOX Connector System, 5268-09A, 9 Pins per row (https://www.molex.com/pdm_docs/sd/022057045_sd.pdf), generated with kicad-footprint-generator -connector Molex SPOX horizontal -0 -9 -9 -Connector_Molex -Molex_SPOX_5268-10A_1x10_P2.50mm_Horizontal -Molex SPOX Connector System, 5268-10A, 10 Pins per row (https://www.molex.com/pdm_docs/sd/022057045_sd.pdf), generated with kicad-footprint-generator -connector Molex SPOX horizontal -0 -10 -10 -Connector_Molex -Molex_SPOX_5268-11A_1x11_P2.50mm_Horizontal -Molex SPOX Connector System, 5268-11A, 11 Pins per row (https://www.molex.com/pdm_docs/sd/022057045_sd.pdf), generated with kicad-footprint-generator -connector Molex SPOX horizontal -0 -11 -11 -Connector_Molex -Molex_SPOX_5268-12A_1x12_P2.50mm_Horizontal -Molex SPOX Connector System, 5268-12A, 12 Pins per row (https://www.molex.com/pdm_docs/sd/022057045_sd.pdf), generated with kicad-footprint-generator -connector Molex SPOX horizontal -0 -12 -12 -Connector_Molex -Molex_SPOX_5268-13A_1x13_P2.50mm_Horizontal -Molex SPOX Connector System, 5268-13A, 13 Pins per row (https://www.molex.com/pdm_docs/sd/022057045_sd.pdf), generated with kicad-footprint-generator -connector Molex SPOX horizontal -0 -13 -13 -Connector_Molex -Molex_SPOX_5268-14A_1x14_P2.50mm_Horizontal -Molex SPOX Connector System, 5268-14A, 14 Pins per row (https://www.molex.com/pdm_docs/sd/022057045_sd.pdf), generated with kicad-footprint-generator -connector Molex SPOX horizontal -0 -14 -14 -Connector_Molex -Molex_SPOX_5268-15A_1x15_P2.50mm_Horizontal -Molex SPOX Connector System, 5268-15A, 15 Pins per row (https://www.molex.com/pdm_docs/sd/022057045_sd.pdf), generated with kicad-footprint-generator -connector Molex SPOX horizontal -0 -15 -15 -Connector_Molex -Molex_Sabre_43160-0102_1x02_P7.49mm_Vertical -Molex Sabre Power Connector, 43160-0102, 2 Pins per row (http://www.molex.com/pdm_docs/sd/431600105_sd.pdf), generated with kicad-footprint-generator -connector Molex Sabre side entry -0 -4 -2 -Connector_Molex -Molex_Sabre_43160-0102_1x02_P7.49mm_Vertical_ThermalVias -Molex Sabre Power Connector, 43160-0102, With thermal vias in pads, 2 Pins per row (http://www.molex.com/pdm_docs/sd/431600105_sd.pdf), generated with kicad-footprint-generator -connector Molex Sabre side entry -0 -30 -2 -Connector_Molex -Molex_Sabre_43160-0103_1x03_P7.49mm_Vertical -Molex Sabre Power Connector, 43160-0103, 3 Pins per row (http://www.molex.com/pdm_docs/sd/431600105_sd.pdf), generated with kicad-footprint-generator -connector Molex Sabre side entry -0 -6 -3 -Connector_Molex -Molex_Sabre_43160-0103_1x03_P7.49mm_Vertical_ThermalVias -Molex Sabre Power Connector, 43160-0103, With thermal vias in pads, 3 Pins per row (http://www.molex.com/pdm_docs/sd/431600105_sd.pdf), generated with kicad-footprint-generator -connector Molex Sabre side entry -0 -45 -3 -Connector_Molex -Molex_Sabre_43160-0104_1x04_P7.49mm_Vertical -Molex Sabre Power Connector, 43160-0104, 4 Pins per row (http://www.molex.com/pdm_docs/sd/431600105_sd.pdf), generated with kicad-footprint-generator -connector Molex Sabre side entry -0 -8 -4 -Connector_Molex -Molex_Sabre_43160-0104_1x04_P7.49mm_Vertical_ThermalVias -Molex Sabre Power Connector, 43160-0104, With thermal vias in pads, 4 Pins per row (http://www.molex.com/pdm_docs/sd/431600105_sd.pdf), generated with kicad-footprint-generator -connector Molex Sabre side entry -0 -60 -4 -Connector_Molex -Molex_Sabre_43160-0105_1x05_P7.49mm_Vertical -Molex Sabre Power Connector, 43160-0105, 5 Pins per row (http://www.molex.com/pdm_docs/sd/431600105_sd.pdf), generated with kicad-footprint-generator -connector Molex Sabre side entry -0 -10 -5 -Connector_Molex -Molex_Sabre_43160-0105_1x05_P7.49mm_Vertical_ThermalVias -Molex Sabre Power Connector, 43160-0105, With thermal vias in pads, 5 Pins per row (http://www.molex.com/pdm_docs/sd/431600105_sd.pdf), generated with kicad-footprint-generator -connector Molex Sabre side entry -0 -75 -5 -Connector_Molex -Molex_Sabre_43160-0106_1x06_P7.49mm_Vertical -Molex Sabre Power Connector, 43160-0106, 6 Pins per row (http://www.molex.com/pdm_docs/sd/431600105_sd.pdf), generated with kicad-footprint-generator -connector Molex Sabre side entry -0 -12 -6 -Connector_Molex -Molex_Sabre_43160-0106_1x06_P7.49mm_Vertical_ThermalVias -Molex Sabre Power Connector, 43160-0106, With thermal vias in pads, 6 Pins per row (http://www.molex.com/pdm_docs/sd/431600105_sd.pdf), generated with kicad-footprint-generator -connector Molex Sabre side entry -0 -90 -6 -Connector_Molex -Molex_Sabre_43160-1102_1x02_P7.49mm_Horizontal -Molex Sabre Power Connector, 43160-1102, 2 Pins per row (http://www.molex.com/pdm_docs/sd/431605304_sd.pdf), generated with kicad-footprint-generator -connector Molex Sabre top entry -0 -6 -2 -Connector_Molex -Molex_Sabre_43160-1102_1x02_P7.49mm_Horizontal_ThermalVias -Molex Sabre Power Connector, 43160-1102, With thermal vias in pads, 2 Pins per row (http://www.molex.com/pdm_docs/sd/431605304_sd.pdf), generated with kicad-footprint-generator -connector Molex Sabre top entry -0 -32 -2 -Connector_Molex -Molex_Sabre_43160-1103_1x03_P7.49mm_Horizontal -Molex Sabre Power Connector, 43160-1103, 3 Pins per row (http://www.molex.com/pdm_docs/sd/431605304_sd.pdf), generated with kicad-footprint-generator -connector Molex Sabre top entry -0 -8 -3 -Connector_Molex -Molex_Sabre_43160-1103_1x03_P7.49mm_Horizontal_ThermalVias -Molex Sabre Power Connector, 43160-1103, With thermal vias in pads, 3 Pins per row (http://www.molex.com/pdm_docs/sd/431605304_sd.pdf), generated with kicad-footprint-generator -connector Molex Sabre top entry -0 -47 -3 -Connector_Molex -Molex_Sabre_43160-1104_1x04_P7.49mm_Horizontal -Molex Sabre Power Connector, 43160-1104, 4 Pins per row (http://www.molex.com/pdm_docs/sd/431605304_sd.pdf), generated with kicad-footprint-generator -connector Molex Sabre top entry -0 -10 -4 -Connector_Molex -Molex_Sabre_43160-1104_1x04_P7.49mm_Horizontal_ThermalVias -Molex Sabre Power Connector, 43160-1104, With thermal vias in pads, 4 Pins per row (http://www.molex.com/pdm_docs/sd/431605304_sd.pdf), generated with kicad-footprint-generator -connector Molex Sabre top entry -0 -62 -4 -Connector_Molex -Molex_Sabre_43160-1105_1x05_P7.49mm_Horizontal -Molex Sabre Power Connector, 43160-1105, 5 Pins per row (http://www.molex.com/pdm_docs/sd/431605304_sd.pdf), generated with kicad-footprint-generator -connector Molex Sabre top entry -0 -12 -5 -Connector_Molex -Molex_Sabre_43160-1105_1x05_P7.49mm_Horizontal_ThermalVias -Molex Sabre Power Connector, 43160-1105, With thermal vias in pads, 5 Pins per row (http://www.molex.com/pdm_docs/sd/431605304_sd.pdf), generated with kicad-footprint-generator -connector Molex Sabre top entry -0 -77 -5 -Connector_Molex -Molex_Sabre_43160-1106_1x06_P7.49mm_Horizontal -Molex Sabre Power Connector, 43160-1106, 6 Pins per row (http://www.molex.com/pdm_docs/sd/431605304_sd.pdf), generated with kicad-footprint-generator -connector Molex Sabre top entry -0 -14 -6 -Connector_Molex -Molex_Sabre_43160-1106_1x06_P7.49mm_Horizontal_ThermalVias -Molex Sabre Power Connector, 43160-1106, With thermal vias in pads, 6 Pins per row (http://www.molex.com/pdm_docs/sd/431605304_sd.pdf), generated with kicad-footprint-generator -connector Molex Sabre top entry -0 -92 -6 -Connector_Molex -Molex_Sabre_43160-2102_1x02_P7.49mm_Vertical -Molex Sabre Power Connector, 43160-2102, 2 Pins per row (http://www.molex.com/pdm_docs/sd/431602102_sd.pdf), generated with kicad-footprint-generator -connector Molex Sabre side entry -0 -6 -2 -Connector_Molex -Molex_Sabre_43160-2102_1x02_P7.49mm_Vertical_ThermalVias -Molex Sabre Power Connector, 43160-2102, With thermal vias in pads, 2 Pins per row (http://www.molex.com/pdm_docs/sd/431602102_sd.pdf), generated with kicad-footprint-generator -connector Molex Sabre side entry -0 -32 -2 -Connector_Molex -Molex_Sabre_43160-2103_1x03_P7.49mm_Vertical -Molex Sabre Power Connector, 43160-2103, 3 Pins per row (http://www.molex.com/pdm_docs/sd/431602102_sd.pdf), generated with kicad-footprint-generator -connector Molex Sabre side entry -0 -8 -3 -Connector_Molex -Molex_Sabre_43160-2103_1x03_P7.49mm_Vertical_ThermalVias -Molex Sabre Power Connector, 43160-2103, With thermal vias in pads, 3 Pins per row (http://www.molex.com/pdm_docs/sd/431602102_sd.pdf), generated with kicad-footprint-generator -connector Molex Sabre side entry -0 -47 -3 -Connector_Molex -Molex_Sabre_43160-2104_1x04_P7.49mm_Vertical -Molex Sabre Power Connector, 43160-2104, 4 Pins per row (http://www.molex.com/pdm_docs/sd/431602102_sd.pdf), generated with kicad-footprint-generator -connector Molex Sabre side entry -0 -10 -4 -Connector_Molex -Molex_Sabre_43160-2104_1x04_P7.49mm_Vertical_ThermalVias -Molex Sabre Power Connector, 43160-2104, With thermal vias in pads, 4 Pins per row (http://www.molex.com/pdm_docs/sd/431602102_sd.pdf), generated with kicad-footprint-generator -connector Molex Sabre side entry -0 -62 -4 -Connector_Molex -Molex_Sabre_43160-2105_1x05_P7.49mm_Vertical -Molex Sabre Power Connector, 43160-2105, 5 Pins per row (http://www.molex.com/pdm_docs/sd/431602102_sd.pdf), generated with kicad-footprint-generator -connector Molex Sabre side entry -0 -12 -5 -Connector_Molex -Molex_Sabre_43160-2105_1x05_P7.49mm_Vertical_ThermalVias -Molex Sabre Power Connector, 43160-2105, With thermal vias in pads, 5 Pins per row (http://www.molex.com/pdm_docs/sd/431602102_sd.pdf), generated with kicad-footprint-generator -connector Molex Sabre side entry -0 -77 -5 -Connector_Molex -Molex_Sabre_43160-2106_1x06_P7.49mm_Vertical -Molex Sabre Power Connector, 43160-2106, 6 Pins per row (http://www.molex.com/pdm_docs/sd/431602102_sd.pdf), generated with kicad-footprint-generator -connector Molex Sabre side entry -0 -14 -6 -Connector_Molex -Molex_Sabre_43160-2106_1x06_P7.49mm_Vertical_ThermalVias -Molex Sabre Power Connector, 43160-2106, With thermal vias in pads, 6 Pins per row (http://www.molex.com/pdm_docs/sd/431602102_sd.pdf), generated with kicad-footprint-generator -connector Molex Sabre side entry -0 -92 -6 -Connector_Molex -Molex_Sabre_46007-1102_1x02_P7.49mm_Horizontal -Molex Sabre Power Connector, 46007-1102, 2 Pins per row (http://www.molex.com/pdm_docs/sd/460071105_sd.pdf), generated with kicad-footprint-generator -connector Molex Sabre top entry -0 -4 -2 -Connector_Molex -Molex_Sabre_46007-1102_1x02_P7.49mm_Horizontal_ThermalVias -Molex Sabre Power Connector, 46007-1102, With thermal vias in pads, 2 Pins per row (http://www.molex.com/pdm_docs/sd/460071105_sd.pdf), generated with kicad-footprint-generator -connector Molex Sabre top entry -0 -30 -2 -Connector_Molex -Molex_Sabre_46007-1103_1x03_P7.49mm_Horizontal -Molex Sabre Power Connector, 46007-1103, 3 Pins per row (http://www.molex.com/pdm_docs/sd/460071105_sd.pdf), generated with kicad-footprint-generator -connector Molex Sabre top entry -0 -6 -3 -Connector_Molex -Molex_Sabre_46007-1103_1x03_P7.49mm_Horizontal_ThermalVias -Molex Sabre Power Connector, 46007-1103, With thermal vias in pads, 3 Pins per row (http://www.molex.com/pdm_docs/sd/460071105_sd.pdf), generated with kicad-footprint-generator -connector Molex Sabre top entry -0 -45 -3 -Connector_Molex -Molex_Sabre_46007-1104_1x04_P7.49mm_Horizontal -Molex Sabre Power Connector, 46007-1104, 4 Pins per row (http://www.molex.com/pdm_docs/sd/460071105_sd.pdf), generated with kicad-footprint-generator -connector Molex Sabre top entry -0 -8 -4 -Connector_Molex -Molex_Sabre_46007-1104_1x04_P7.49mm_Horizontal_ThermalVias -Molex Sabre Power Connector, 46007-1104, With thermal vias in pads, 4 Pins per row (http://www.molex.com/pdm_docs/sd/460071105_sd.pdf), generated with kicad-footprint-generator -connector Molex Sabre top entry -0 -60 -4 -Connector_Molex -Molex_Sabre_46007-1105_1x05_P7.49mm_Horizontal -Molex Sabre Power Connector, 46007-1105, 5 Pins per row (http://www.molex.com/pdm_docs/sd/460071105_sd.pdf), generated with kicad-footprint-generator -connector Molex Sabre top entry -0 -10 -5 -Connector_Molex -Molex_Sabre_46007-1105_1x05_P7.49mm_Horizontal_ThermalVias -Molex Sabre Power Connector, 46007-1105, With thermal vias in pads, 5 Pins per row (http://www.molex.com/pdm_docs/sd/460071105_sd.pdf), generated with kicad-footprint-generator -connector Molex Sabre top entry -0 -75 -5 -Connector_Molex -Molex_Sabre_46007-1106_1x06_P7.49mm_Horizontal -Molex Sabre Power Connector, 46007-1106, 6 Pins per row (http://www.molex.com/pdm_docs/sd/460071105_sd.pdf), generated with kicad-footprint-generator -connector Molex Sabre top entry -0 -12 -6 -Connector_Molex -Molex_Sabre_46007-1106_1x06_P7.49mm_Horizontal_ThermalVias -Molex Sabre Power Connector, 46007-1106, With thermal vias in pads, 6 Pins per row (http://www.molex.com/pdm_docs/sd/460071105_sd.pdf), generated with kicad-footprint-generator -connector Molex Sabre top entry -0 -90 -6 -Connector_Molex -Molex_SlimStack_52991-0208_2x10_P0.50mm_Vertical -Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 52991-0208, 20 Pins (http://www.molex.com/pdm_docs/sd/529910308_sd.pdf), generated with kicad-footprint-generator -connector Molex SlimStack vertical -0 -20 -20 -Connector_Molex -Molex_SlimStack_52991-0308_2x15_P0.50mm_Vertical -Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 52991-0308, 30 Pins (http://www.molex.com/pdm_docs/sd/529910308_sd.pdf), generated with kicad-footprint-generator -connector Molex SlimStack vertical -0 -30 -30 -Connector_Molex -Molex_SlimStack_52991-0408_2x20_P0.50mm_Vertical -Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 52991-0408, 40 Pins (http://www.molex.com/pdm_docs/sd/529910308_sd.pdf), generated with kicad-footprint-generator -connector Molex SlimStack vertical -0 -40 -40 -Connector_Molex -Molex_SlimStack_52991-0508_2x25_P0.50mm_Vertical -Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 52991-0508, 50 Pins (http://www.molex.com/pdm_docs/sd/529910308_sd.pdf), generated with kicad-footprint-generator -connector Molex SlimStack vertical -0 -50 -50 -Connector_Molex -Molex_SlimStack_52991-0608_2x30_P0.50mm_Vertical -Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 52991-0608, 60 Pins (http://www.molex.com/pdm_docs/sd/529910308_sd.pdf), generated with kicad-footprint-generator -connector Molex SlimStack vertical -0 -60 -60 -Connector_Molex -Molex_SlimStack_52991-0708_2x35_P0.50mm_Vertical -Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 52991-0708, 70 Pins (http://www.molex.com/pdm_docs/sd/529910308_sd.pdf), generated with kicad-footprint-generator -connector Molex SlimStack vertical -0 -70 -70 -Connector_Molex -Molex_SlimStack_52991-0808_2x40_P0.50mm_Vertical -Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 52991-0808, 80 Pins (http://www.molex.com/pdm_docs/sd/529910308_sd.pdf), generated with kicad-footprint-generator -connector Molex SlimStack vertical -0 -80 -80 -Connector_Molex -Molex_SlimStack_53748-0208_2x10_P0.50mm_Vertical -Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 53748-0208, 20 Pins (https://www.molex.com/pdm_docs/sd/537480308_sd.pdf), generated with kicad-footprint-generator -connector Molex SlimStack vertical -0 -20 -20 -Connector_Molex -Molex_SlimStack_53748-0308_2x15_P0.50mm_Vertical -Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 53748-0308, 30 Pins (https://www.molex.com/pdm_docs/sd/537480308_sd.pdf), generated with kicad-footprint-generator -connector Molex SlimStack vertical -0 -30 -30 -Connector_Molex -Molex_SlimStack_53748-0408_2x20_P0.50mm_Vertical -Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 53748-0408, 40 Pins (https://www.molex.com/pdm_docs/sd/537480308_sd.pdf), generated with kicad-footprint-generator -connector Molex SlimStack vertical -0 -40 -40 -Connector_Molex -Molex_SlimStack_53748-0608_2x30_P0.50mm_Vertical -Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 53748-0608, 60 Pins (https://www.molex.com/pdm_docs/sd/537480308_sd.pdf), generated with kicad-footprint-generator -connector Molex SlimStack vertical -0 -60 -60 -Connector_Molex -Molex_SlimStack_53748-0708_2x35_P0.50mm_Vertical -Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 53748-0708, 70 Pins (https://www.molex.com/pdm_docs/sd/537480308_sd.pdf), generated with kicad-footprint-generator -connector Molex SlimStack vertical -0 -70 -70 -Connector_Molex -Molex_SlimStack_53748-0808_2x40_P0.50mm_Vertical -Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 53748-0808, 80 Pins (https://www.molex.com/pdm_docs/sd/537480308_sd.pdf), generated with kicad-footprint-generator -connector Molex SlimStack vertical -0 -80 -80 -Connector_Molex -Molex_SlimStack_54722-0164_2x08_P0.50mm_Vertical -Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 54722-0164, 16 Pins (http://www.molex.com/pdm_docs/sd/547220804_sd.pdf), generated with kicad-footprint-generator -connector Molex SlimStack side entry -0 -16 -16 -Connector_Molex -Molex_SlimStack_54722-0204_2x10_P0.50mm_Vertical -Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 54722-0204, 20 Pins (http://www.molex.com/pdm_docs/sd/547220804_sd.pdf), generated with kicad-footprint-generator -connector Molex SlimStack side entry -0 -20 -20 -Connector_Molex -Molex_SlimStack_54722-0224_2x11_P0.50mm_Vertical -Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 54722-0224, 22 Pins (http://www.molex.com/pdm_docs/sd/547220804_sd.pdf), generated with kicad-footprint-generator -connector Molex SlimStack side entry -0 -22 -22 -Connector_Molex -Molex_SlimStack_54722-0244_2x12_P0.50mm_Vertical -Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 54722-0244, 24 Pins (http://www.molex.com/pdm_docs/sd/547220804_sd.pdf), generated with kicad-footprint-generator -connector Molex SlimStack side entry -0 -24 -24 -Connector_Molex -Molex_SlimStack_54722-0304_2x15_P0.50mm_Vertical -Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 54722-0304, 30 Pins (http://www.molex.com/pdm_docs/sd/547220804_sd.pdf), generated with kicad-footprint-generator -connector Molex SlimStack side entry -0 -30 -30 -Connector_Molex -Molex_SlimStack_54722-0344_2x17_P0.50mm_Vertical -Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 54722-0344, 34 Pins (http://www.molex.com/pdm_docs/sd/547220804_sd.pdf), generated with kicad-footprint-generator -connector Molex SlimStack side entry -0 -34 -34 -Connector_Molex -Molex_SlimStack_54722-0404_2x20_P0.50mm_Vertical -Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 54722-0404, 40 Pins (http://www.molex.com/pdm_docs/sd/547220804_sd.pdf), generated with kicad-footprint-generator -connector Molex SlimStack side entry -0 -40 -40 -Connector_Molex -Molex_SlimStack_54722-0504_2x25_P0.50mm_Vertical -Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 54722-0504, 50 Pins (http://www.molex.com/pdm_docs/sd/547220804_sd.pdf), generated with kicad-footprint-generator -connector Molex SlimStack side entry -0 -50 -50 -Connector_Molex -Molex_SlimStack_54722-0604_2x30_P0.50mm_Vertical -Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 54722-0604, 60 Pins (http://www.molex.com/pdm_docs/sd/547220804_sd.pdf), generated with kicad-footprint-generator -connector Molex SlimStack side entry -0 -60 -60 -Connector_Molex -Molex_SlimStack_54722-0804_2x40_P0.50mm_Vertical -Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 54722-0804, 80 Pins (http://www.molex.com/pdm_docs/sd/547220804_sd.pdf), generated with kicad-footprint-generator -connector Molex SlimStack side entry -0 -80 -80 -Connector_Molex -Molex_SlimStack_55560-0161_2x08_P0.50mm_Vertical -Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 55560-0161, 16 Pins (http://www.molex.com/pdm_docs/sd/555600207_sd.pdf), generated with kicad-footprint-generator -connector Molex SlimStack side entry -0 -16 -16 -Connector_Molex -Molex_SlimStack_55560-0201_2x10_P0.50mm_Vertical -Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 55560-0201, 20 Pins (http://www.molex.com/pdm_docs/sd/555600207_sd.pdf), generated with kicad-footprint-generator -connector Molex SlimStack side entry -0 -20 -20 -Connector_Molex -Molex_SlimStack_55560-0221_2x11_P0.50mm_Vertical -Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 55560-0221, 22 Pins (http://www.molex.com/pdm_docs/sd/555600207_sd.pdf), generated with kicad-footprint-generator -connector Molex SlimStack side entry -0 -22 -22 -Connector_Molex -Molex_SlimStack_55560-0241_2x12_P0.50mm_Vertical -Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 55560-0241, 24 Pins (http://www.molex.com/pdm_docs/sd/555600207_sd.pdf), generated with kicad-footprint-generator -connector Molex SlimStack side entry -0 -24 -24 -Connector_Molex -Molex_SlimStack_55560-0301_2x15_P0.50mm_Vertical -Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 55560-0301, 30 Pins (http://www.molex.com/pdm_docs/sd/555600207_sd.pdf), generated with kicad-footprint-generator -connector Molex SlimStack side entry -0 -30 -30 -Connector_Molex -Molex_SlimStack_55560-0341_2x17_P0.50mm_Vertical -Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 55560-0341, 34 Pins (http://www.molex.com/pdm_docs/sd/555600207_sd.pdf), generated with kicad-footprint-generator -connector Molex SlimStack side entry -0 -34 -34 -Connector_Molex -Molex_SlimStack_55560-0401_2x20_P0.50mm_Vertical -Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 55560-0401, 40 Pins (http://www.molex.com/pdm_docs/sd/555600207_sd.pdf), generated with kicad-footprint-generator -connector Molex SlimStack side entry -0 -40 -40 -Connector_Molex -Molex_SlimStack_55560-0501_2x25_P0.50mm_Vertical -Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 55560-0501, 50 Pins (http://www.molex.com/pdm_docs/sd/555600207_sd.pdf), generated with kicad-footprint-generator -connector Molex SlimStack side entry -0 -50 -50 -Connector_Molex -Molex_SlimStack_55560-0601_2x30_P0.50mm_Vertical -Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 55560-0601, 60 Pins (http://www.molex.com/pdm_docs/sd/555600207_sd.pdf), generated with kicad-footprint-generator -connector Molex SlimStack side entry -0 -60 -60 -Connector_Molex -Molex_SlimStack_55560-0801_2x40_P0.50mm_Vertical -Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 55560-0801, 80 Pins (http://www.molex.com/pdm_docs/sd/555600207_sd.pdf), generated with kicad-footprint-generator -connector Molex SlimStack side entry -0 -80 -80 -Connector_Molex -Molex_SlimStack_501920-3001_2x15_P0.50mm_Vertical -Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 501920-3001, 30 Pins (http://www.molex.com/pdm_docs/sd/5019204001_sd.pdf), generated with kicad-footprint-generator -connector Molex SlimStack side entry -0 -30 -30 -Connector_Molex -Molex_SlimStack_501920-4001_2x20_P0.50mm_Vertical -Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 501920-4001, 40 Pins (http://www.molex.com/pdm_docs/sd/5019204001_sd.pdf), generated with kicad-footprint-generator -connector Molex SlimStack side entry -0 -40 -40 -Connector_Molex -Molex_SlimStack_501920-5001_2x25_P0.50mm_Vertical -Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 501920-5001, 50 Pins (http://www.molex.com/pdm_docs/sd/5019204001_sd.pdf), generated with kicad-footprint-generator -connector Molex SlimStack side entry -0 -50 -50 -Connector_Molex -Molex_SlimStack_502426-0810_2x04_P0.40mm_Vertical -Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502426-0810, 8 Pins (http://www.molex.com/pdm_docs/sd/5024260810_sd.pdf), generated with kicad-footprint-generator -connector Molex SlimStack side entry -0 -8 -8 -Connector_Molex -Molex_SlimStack_502426-1410_2x07_P0.40mm_Vertical -Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502426-1410, 14 Pins (http://www.molex.com/pdm_docs/sd/5024260810_sd.pdf), generated with kicad-footprint-generator -connector Molex SlimStack side entry -0 -14 -14 -Connector_Molex -Molex_SlimStack_502426-2010_2x10_P0.40mm_Vertical -Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502426-2010, 20 Pins (http://www.molex.com/pdm_docs/sd/5024260810_sd.pdf), generated with kicad-footprint-generator -connector Molex SlimStack side entry -0 -20 -20 -Connector_Molex -Molex_SlimStack_502426-2210_2x11_P0.40mm_Vertical -Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502426-2210, 22 Pins (http://www.molex.com/pdm_docs/sd/5024260810_sd.pdf), generated with kicad-footprint-generator -connector Molex SlimStack side entry -0 -22 -22 -Connector_Molex -Molex_SlimStack_502426-2410_2x12_P0.40mm_Vertical -Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502426-2410, 24 Pins (http://www.molex.com/pdm_docs/sd/5024260810_sd.pdf), generated with kicad-footprint-generator -connector Molex SlimStack side entry -0 -24 -24 -Connector_Molex -Molex_SlimStack_502426-2610_2x13_P0.40mm_Vertical -Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502426-2610, 26 Pins (http://www.molex.com/pdm_docs/sd/5024260810_sd.pdf), generated with kicad-footprint-generator -connector Molex SlimStack side entry -0 -26 -26 -Connector_Molex -Molex_SlimStack_502426-3010_2x15_P0.40mm_Vertical -Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502426-3010, 30 Pins (http://www.molex.com/pdm_docs/sd/5024260810_sd.pdf), generated with kicad-footprint-generator -connector Molex SlimStack side entry -0 -30 -30 -Connector_Molex -Molex_SlimStack_502426-3210_2x16_P0.40mm_Vertical -Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502426-3210, 32 Pins (http://www.molex.com/pdm_docs/sd/5024260810_sd.pdf), generated with kicad-footprint-generator -connector Molex SlimStack side entry -0 -32 -32 -Connector_Molex -Molex_SlimStack_502426-3410_2x17_P0.40mm_Vertical -Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502426-3410, 34 Pins (http://www.molex.com/pdm_docs/sd/5024260810_sd.pdf), generated with kicad-footprint-generator -connector Molex SlimStack side entry -0 -34 -34 -Connector_Molex -Molex_SlimStack_502426-4010_2x20_P0.40mm_Vertical -Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502426-4010, 40 Pins (http://www.molex.com/pdm_docs/sd/5024260810_sd.pdf), generated with kicad-footprint-generator -connector Molex SlimStack side entry -0 -40 -40 -Connector_Molex -Molex_SlimStack_502426-4410_2x22_P0.40mm_Vertical -Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502426-4410, 44 Pins (http://www.molex.com/pdm_docs/sd/5024260810_sd.pdf), generated with kicad-footprint-generator -connector Molex SlimStack side entry -0 -44 -44 -Connector_Molex -Molex_SlimStack_502426-5010_2x25_P0.40mm_Vertical -Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502426-5010, 50 Pins (http://www.molex.com/pdm_docs/sd/5024260810_sd.pdf), generated with kicad-footprint-generator -connector Molex SlimStack side entry -0 -50 -50 -Connector_Molex -Molex_SlimStack_502426-6010_2x30_P0.40mm_Vertical -Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502426-6010, 60 Pins (http://www.molex.com/pdm_docs/sd/5024260810_sd.pdf), generated with kicad-footprint-generator -connector Molex SlimStack side entry -0 -60 -60 -Connector_Molex -Molex_SlimStack_502426-6410_2x32_P0.40mm_Vertical -Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502426-6410, 64 Pins (http://www.molex.com/pdm_docs/sd/5024260810_sd.pdf), generated with kicad-footprint-generator -connector Molex SlimStack side entry -0 -64 -64 -Connector_Molex -Molex_SlimStack_502426-8010_2x40_P0.40mm_Vertical -Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502426-8010, 80 Pins (http://www.molex.com/pdm_docs/sd/5024260810_sd.pdf), generated with kicad-footprint-generator -connector Molex SlimStack side entry -0 -80 -80 -Connector_Molex -Molex_SlimStack_502430-0820_2x04_P0.40mm_Vertical -Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502430-0820, 8 Pins (http://www.molex.com/pdm_docs/sd/5024300820_sd.pdf), generated with kicad-footprint-generator -connector Molex SlimStack side entry -0 -8 -8 -Connector_Molex -Molex_SlimStack_502430-1410_2x07_P0.40mm_Vertical -Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502430-1410, 14 Pins (http://www.molex.com/pdm_docs/sd/5024301410_sd.pdf), generated with kicad-footprint-generator -connector Molex SlimStack side entry -0 -14 -14 -Connector_Molex -Molex_SlimStack_502430-2010_2x10_P0.40mm_Vertical -Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502430-2010, 20 Pins (http://www.molex.com/pdm_docs/sd/5024301410_sd.pdf), generated with kicad-footprint-generator -connector Molex SlimStack side entry -0 -20 -20 -Connector_Molex -Molex_SlimStack_502430-2210_2x11_P0.40mm_Vertical -Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502430-2210, 22 Pins (http://www.molex.com/pdm_docs/sd/5024301410_sd.pdf), generated with kicad-footprint-generator -connector Molex SlimStack side entry -0 -22 -22 -Connector_Molex -Molex_SlimStack_502430-2410_2x12_P0.40mm_Vertical -Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502430-2410, 24 Pins (http://www.molex.com/pdm_docs/sd/5024301410_sd.pdf), generated with kicad-footprint-generator -connector Molex SlimStack side entry -0 -24 -24 -Connector_Molex -Molex_SlimStack_502430-2610_2x13_P0.40mm_Vertical -Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502430-2610, 26 Pins (http://www.molex.com/pdm_docs/sd/5024301410_sd.pdf), generated with kicad-footprint-generator -connector Molex SlimStack side entry -0 -26 -26 -Connector_Molex -Molex_SlimStack_502430-3010_2x15_P0.40mm_Vertical -Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502430-3010, 30 Pins (http://www.molex.com/pdm_docs/sd/5024301410_sd.pdf), generated with kicad-footprint-generator -connector Molex SlimStack side entry -0 -30 -30 -Connector_Molex -Molex_SlimStack_502430-3210_2x16_P0.40mm_Vertical -Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502430-3210, 32 Pins (http://www.molex.com/pdm_docs/sd/5024301410_sd.pdf), generated with kicad-footprint-generator -connector Molex SlimStack side entry -0 -32 -32 -Connector_Molex -Molex_SlimStack_502430-3410_2x17_P0.40mm_Vertical -Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502430-3410, 34 Pins (http://www.molex.com/pdm_docs/sd/5024301410_sd.pdf), generated with kicad-footprint-generator -connector Molex SlimStack side entry -0 -34 -34 -Connector_Molex -Molex_SlimStack_502430-4010_2x20_P0.40mm_Vertical -Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502430-4010, 40 Pins (http://www.molex.com/pdm_docs/sd/5024301410_sd.pdf), generated with kicad-footprint-generator -connector Molex SlimStack side entry -0 -40 -40 -Connector_Molex -Molex_SlimStack_502430-4410_2x22_P0.40mm_Vertical -Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502430-4410, 44 Pins (http://www.molex.com/pdm_docs/sd/5024301410_sd.pdf), generated with kicad-footprint-generator -connector Molex SlimStack side entry -0 -44 -44 -Connector_Molex -Molex_SlimStack_502430-5010_2x25_P0.40mm_Vertical -Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502430-5010, 50 Pins (http://www.molex.com/pdm_docs/sd/5024301410_sd.pdf), generated with kicad-footprint-generator -connector Molex SlimStack side entry -0 -50 -50 -Connector_Molex -Molex_SlimStack_502430-6010_2x30_P0.40mm_Vertical -Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502430-6010, 60 Pins (http://www.molex.com/pdm_docs/sd/5024301410_sd.pdf), generated with kicad-footprint-generator -connector Molex SlimStack side entry -0 -60 -60 -Connector_Molex -Molex_SlimStack_502430-6410_2x32_P0.40mm_Vertical -Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502430-6410, 64 Pins (http://www.molex.com/pdm_docs/sd/5024301410_sd.pdf), generated with kicad-footprint-generator -connector Molex SlimStack side entry -0 -64 -64 -Connector_Molex -Molex_SlimStack_502430-8010_2x40_P0.40mm_Vertical -Molex SlimStack Fine-Pitch SMT Board-to-Board Connectors, 502430-8010, 80 Pins (http://www.molex.com/pdm_docs/sd/5024301410_sd.pdf), generated with kicad-footprint-generator -connector Molex SlimStack side entry -0 -80 -80 -Connector_PCBEdge -4UCON_10156_2x40_P1.27mm_Socket_Horizontal -4UCON 10156 Card edge socket with 80 contacts (40 each side), through-hole, http://www.4uconnector.com/online/object/4udrawing/10156.pdf -4UCON 10156 Card edge socket with 80 contacts -0 -80 -80 -Connector_PCBEdge -BUS_AT -AT ISA 16 bits Bus Edge Connector -BUS ISA AT Edge connector -0 -98 -98 -Connector_PCBEdge -BUS_PCI -PCI bus Edge Connector -PCI bus Edge Connector -0 -240 -120 -Connector_PCBEdge -BUS_PCI_Express_Mini -Mini-PCI Express bus connector (https://s3.amazonaws.com/fit-iot/download/facet-cards/documents/PCI_Express_miniCard_Electromechanical_specs_rev1.2.pdf#page=11) -mini pcie -0 -54 -53 -Connector_PCBEdge -BUS_PCI_Express_Mini_Dual -Mini-PCI Express bus connector full size with dual clips (https://s3.amazonaws.com/fit-iot/download/facet-cards/documents/PCI_Express_miniCard_Electromechanical_specs_rev1.2.pdf#page=28) -mini pcie -0 -54 -53 -Connector_PCBEdge -BUS_PCI_Express_Mini_Full -Mini-PCI Express bus connector full size with clips (https://s3.amazonaws.com/fit-iot/download/facet-cards/documents/PCI_Express_miniCard_Electromechanical_specs_rev1.2.pdf#page=24) -mini pcie -0 -54 -53 -Connector_PCBEdge -BUS_PCI_Express_Mini_Half -Mini-PCI Express bus connector half size with clips (https://s3.amazonaws.com/fit-iot/download/facet-cards/documents/PCI_Express_miniCard_Electromechanical_specs_rev1.2.pdf#page=25) -mini pcie -0 -54 -53 -Connector_PCBEdge -BUS_PCIexpress_x1 -PCIexpress Bus Edge Connector x1 http://www.ritrontek.com/uploadfile/2016/1026/20161026105231124.pdf#page=70 -PCIe -0 -36 -36 -Connector_PCBEdge -BUS_PCIexpress_x4 -PCIexpress Bus Edge Connector x1 http://www.ritrontek.com/uploadfile/2016/1026/20161026105231124.pdf#page=70 -PCIe -0 -64 -64 -Connector_PCBEdge -BUS_PCIexpress_x8 -PCIexpress Bus Edge Connector x1 http://www.ritrontek.com/uploadfile/2016/1026/20161026105231124.pdf#page=70 -PCIe -0 -98 -98 -Connector_PCBEdge -BUS_PCIexpress_x16 -PCIexpress Bus Edge Connector x1 http://www.ritrontek.com/uploadfile/2016/1026/20161026105231124.pdf#page=70 -PCIe -0 -164 -164 -Connector_PCBEdge -Samtec_MECF-05-0_-L-DV_2x05_P1.27mm_Polarized_Edge -Highspeed card edge connector for PCB's with 05 contacts (polarized) -conn samtec card-edge high-speed -0 -8 -8 -Connector_PCBEdge -Samtec_MECF-05-0_-NP-L-DV_2x05_P1.27mm_Edge -Highspeed card edge connector for PCB's with 05 contacts (not polarized) -conn samtec card-edge high-speed -0 -10 -10 -Connector_PCBEdge -Samtec_MECF-05-01-L-DV-WT_2x05_P1.27mm_Polarized_Socket_Horizontal -Highspeed card edge connector for 1.6mm PCB's with 05 contacts (polarized) -conn samtec card-edge high-speed -0 -10 -8 -Connector_PCBEdge -Samtec_MECF-05-01-L-DV_2x05_P1.27mm_Polarized_Socket_Horizontal -Highspeed card edge connector for 1.6mm PCB's with 05 contacts (polarized) -conn samtec card-edge high-speed -0 -8 -8 -Connector_PCBEdge -Samtec_MECF-05-01-NP-L-DV-WT_2x05_P1.27mm_Socket_Horizontal -Highspeed card edge connector for 1.6mm PCB's with 05 contacts (not polarized) -conn samtec card-edge high-speed -0 -12 -10 -Connector_PCBEdge -Samtec_MECF-05-01-NP-L-DV_2x05_P1.27mm_Socket_Horizontal -Highspeed card edge connector for 1.6mm PCB's with 05 contacts (not polarized) -conn samtec card-edge high-speed -0 -10 -10 -Connector_PCBEdge -Samtec_MECF-05-02-L-DV-WT_2x05_P1.27mm_Polarized_Socket_Horizontal -Highspeed card edge connector for 2.4mm PCB's with 05 contacts (polarized) -conn samtec card-edge high-speed -0 -10 -8 -Connector_PCBEdge -Samtec_MECF-05-02-L-DV_2x05_P1.27mm_Polarized_Socket_Horizontal -Highspeed card edge connector for 2.4mm PCB's with 05 contacts (polarized) -conn samtec card-edge high-speed -0 -8 -8 -Connector_PCBEdge -Samtec_MECF-05-02-NP-L-DV-WT_2x05_P1.27mm_Socket_Horizontal -Highspeed card edge connector for 2.4mm PCB's with 05 contacts (not polarized) -conn samtec card-edge high-speed -0 -12 -10 -Connector_PCBEdge -Samtec_MECF-05-02-NP-L-DV_2x05_P1.27mm_Socket_Horizontal -Highspeed card edge connector for 2.4mm PCB's with 05 contacts (not polarized) -conn samtec card-edge high-speed -0 -10 -10 -Connector_PCBEdge -Samtec_MECF-08-0_-L-DV_2x08_P1.27mm_Polarized_Edge -Highspeed card edge connector for PCB's with 08 contacts (polarized) -conn samtec card-edge high-speed -0 -14 -14 -Connector_PCBEdge -Samtec_MECF-08-0_-NP-L-DV_2x08_P1.27mm_Edge -Highspeed card edge connector for PCB's with 08 contacts (not polarized) -conn samtec card-edge high-speed -0 -16 -16 -Connector_PCBEdge -Samtec_MECF-08-01-L-DV-WT_2x08_P1.27mm_Polarized_Socket_Horizontal -Highspeed card edge connector for 1.6mm PCB's with 08 contacts (polarized) -conn samtec card-edge high-speed -0 -16 -14 -Connector_PCBEdge -Samtec_MECF-08-01-L-DV_2x08_P1.27mm_Polarized_Socket_Horizontal -Highspeed card edge connector for 1.6mm PCB's with 08 contacts (polarized) -conn samtec card-edge high-speed -0 -14 -14 -Connector_PCBEdge -Samtec_MECF-08-01-NP-L-DV-WT_2x08_P1.27mm_Socket_Horizontal -Highspeed card edge connector for 1.6mm PCB's with 08 contacts (not polarized) -conn samtec card-edge high-speed -0 -18 -16 -Connector_PCBEdge -Samtec_MECF-08-01-NP-L-DV_2x08_P1.27mm_Socket_Horizontal -Highspeed card edge connector for 1.6mm PCB's with 08 contacts (not polarized) -conn samtec card-edge high-speed -0 -16 -16 -Connector_PCBEdge -Samtec_MECF-08-02-L-DV-WT_2x08_P1.27mm_Polarized_Socket_Horizontal -Highspeed card edge connector for 2.4mm PCB's with 08 contacts (polarized) -conn samtec card-edge high-speed -0 -16 -14 -Connector_PCBEdge -Samtec_MECF-08-02-L-DV_2x08_P1.27mm_Polarized_Socket_Horizontal -Highspeed card edge connector for 2.4mm PCB's with 08 contacts (polarized) -conn samtec card-edge high-speed -0 -14 -14 -Connector_PCBEdge -Samtec_MECF-08-02-NP-L-DV-WT_2x08_P1.27mm_Socket_Horizontal -Highspeed card edge connector for 2.4mm PCB's with 08 contacts (not polarized) -conn samtec card-edge high-speed -0 -18 -16 -Connector_PCBEdge -Samtec_MECF-08-02-NP-L-DV_2x08_P1.27mm_Socket_Horizontal -Highspeed card edge connector for 2.4mm PCB's with 08 contacts (not polarized) -conn samtec card-edge high-speed -0 -16 -16 -Connector_PCBEdge -Samtec_MECF-20-0_-L-DV_2x20_P1.27mm_Polarized_Edge -Highspeed card edge connector for PCB's with 20 contacts (polarized) -conn samtec card-edge high-speed -0 -38 -38 -Connector_PCBEdge -Samtec_MECF-20-0_-NP-L-DV_2x20_P1.27mm_Edge -Highspeed card edge connector for PCB's with 20 contacts (not polarized) -conn samtec card-edge high-speed -0 -40 -40 -Connector_PCBEdge -Samtec_MECF-20-01-L-DV-WT_2x20_P1.27mm_Polarized_Socket_Horizontal -Highspeed card edge connector for 1.6mm PCB's with 20 contacts (polarized) -conn samtec card-edge high-speed -0 -40 -38 -Connector_PCBEdge -Samtec_MECF-20-01-L-DV_2x20_P1.27mm_Polarized_Socket_Horizontal -Highspeed card edge connector for 1.6mm PCB's with 20 contacts (polarized) -conn samtec card-edge high-speed -0 -38 -38 -Connector_PCBEdge -Samtec_MECF-20-01-NP-L-DV-WT_2x20_P1.27mm_Socket_Horizontal -Highspeed card edge connector for 1.6mm PCB's with 20 contacts (not polarized) -conn samtec card-edge high-speed -0 -42 -40 -Connector_PCBEdge -Samtec_MECF-20-01-NP-L-DV_2x20_P1.27mm_Socket_Horizontal -Highspeed card edge connector for 1.6mm PCB's with 20 contacts (not polarized) -conn samtec card-edge high-speed -0 -40 -40 -Connector_PCBEdge -Samtec_MECF-20-02-L-DV-WT_2x20_P1.27mm_Polarized_Socket_Horizontal -Highspeed card edge connector for 2.4mm PCB's with 20 contacts (polarized) -conn samtec card-edge high-speed -0 -40 -38 -Connector_PCBEdge -Samtec_MECF-20-02-L-DV_2x20_P1.27mm_Polarized_Socket_Horizontal -Highspeed card edge connector for 2.4mm PCB's with 20 contacts (polarized) -conn samtec card-edge high-speed -0 -38 -38 -Connector_PCBEdge -Samtec_MECF-20-02-NP-L-DV-WT_2x20_P1.27mm_Socket_Horizontal -Highspeed card edge connector for 2.4mm PCB's with 20 contacts (not polarized) -conn samtec card-edge high-speed -0 -42 -40 -Connector_PCBEdge -Samtec_MECF-20-02-NP-L-DV_2x20_P1.27mm_Socket_Horizontal -Highspeed card edge connector for 2.4mm PCB's with 20 contacts (not polarized) -conn samtec card-edge high-speed -0 -40 -40 -Connector_PCBEdge -Samtec_MECF-30-0_-L-DV_2x30_P1.27mm_Polarized_Edge -Highspeed card edge connector for PCB's with 30 contacts (polarized) -conn samtec card-edge high-speed -0 -58 -58 -Connector_PCBEdge -Samtec_MECF-30-0_-NP-L-DV_2x30_P1.27mm_Edge -Highspeed card edge connector for PCB's with 30 contacts (not polarized) -conn samtec card-edge high-speed -0 -60 -60 -Connector_PCBEdge -Samtec_MECF-30-01-L-DV-WT_2x30_P1.27mm_Polarized_Socket_Horizontal -Highspeed card edge connector for 1.6mm PCB's with 30 contacts (polarized) -conn samtec card-edge high-speed -0 -60 -58 -Connector_PCBEdge -Samtec_MECF-30-01-L-DV_2x30_P1.27mm_Polarized_Socket_Horizontal -Highspeed card edge connector for 1.6mm PCB's with 30 contacts (polarized) -conn samtec card-edge high-speed -0 -58 -58 -Connector_PCBEdge -Samtec_MECF-30-01-NP-L-DV-WT_2x30_P1.27mm_Socket_Horizontal -Highspeed card edge connector for 1.6mm PCB's with 30 contacts (not polarized) -conn samtec card-edge high-speed -0 -62 -60 -Connector_PCBEdge -Samtec_MECF-30-01-NP-L-DV_2x30_P1.27mm_Socket_Horizontal -Highspeed card edge connector for 1.6mm PCB's with 30 contacts (not polarized) -conn samtec card-edge high-speed -0 -60 -60 -Connector_PCBEdge -Samtec_MECF-30-02-L-DV-WT_2x30_P1.27mm_Polarized_Socket_Horizontal -Highspeed card edge connector for 2.4mm PCB's with 30 contacts (polarized) -conn samtec card-edge high-speed -0 -60 -58 -Connector_PCBEdge -Samtec_MECF-30-02-L-DV_2x30_P1.27mm_Polarized_Socket_Horizontal -Highspeed card edge connector for 2.4mm PCB's with 30 contacts (polarized) -conn samtec card-edge high-speed -0 -58 -58 -Connector_PCBEdge -Samtec_MECF-30-02-NP-L-DV-WT_2x30_P1.27mm_Socket_Horizontal -Highspeed card edge connector for 2.4mm PCB's with 30 contacts (not polarized) -conn samtec card-edge high-speed -0 -62 -60 -Connector_PCBEdge -Samtec_MECF-30-02-NP-L-DV_2x30_P1.27mm_Socket_Horizontal -Highspeed card edge connector for 2.4mm PCB's with 30 contacts (not polarized) -conn samtec card-edge high-speed -0 -60 -60 -Connector_PCBEdge -Samtec_MECF-40-0_-L-DV_2x40_P1.27mm_Polarized_Edge -Highspeed card edge connector for PCB's with 40 contacts (polarized) -conn samtec card-edge high-speed -0 -78 -78 -Connector_PCBEdge -Samtec_MECF-40-0_-NP-L-DV_2x40_P1.27mm_Edge -Highspeed card edge connector for PCB's with 40 contacts (not polarized) -conn samtec card-edge high-speed -0 -80 -80 -Connector_PCBEdge -Samtec_MECF-40-01-L-DV-WT_2x40_P1.27mm_Polarized_Socket_Horizontal -Highspeed card edge connector for 1.6mm PCB's with 40 contacts (polarized) -conn samtec card-edge high-speed -0 -80 -78 -Connector_PCBEdge -Samtec_MECF-40-01-L-DV_2x40_P1.27mm_Polarized_Socket_Horizontal -Highspeed card edge connector for 1.6mm PCB's with 40 contacts (polarized) -conn samtec card-edge high-speed -0 -78 -78 -Connector_PCBEdge -Samtec_MECF-40-01-NP-L-DV-WT_2x40_P1.27mm_Socket_Horizontal -Highspeed card edge connector for 1.6mm PCB's with 40 contacts (not polarized) -conn samtec card-edge high-speed -0 -82 -80 -Connector_PCBEdge -Samtec_MECF-40-01-NP-L-DV_2x40_P1.27mm_Socket_Horizontal -Highspeed card edge connector for 1.6mm PCB's with 40 contacts (not polarized) -conn samtec card-edge high-speed -0 -80 -80 -Connector_PCBEdge -Samtec_MECF-40-02-L-DV-WT_2x40_P1.27mm_Polarized_Socket_Horizontal -Highspeed card edge connector for 2.4mm PCB's with 40 contacts (polarized) -conn samtec card-edge high-speed -0 -80 -78 -Connector_PCBEdge -Samtec_MECF-40-02-L-DV_2x40_P1.27mm_Polarized_Socket_Horizontal -Highspeed card edge connector for 2.4mm PCB's with 40 contacts (polarized) -conn samtec card-edge high-speed -0 -78 -78 -Connector_PCBEdge -Samtec_MECF-40-02-NP-L-DV-WT_2x40_P1.27mm_Socket_Horizontal -Highspeed card edge connector for 2.4mm PCB's with 40 contacts (not polarized) -conn samtec card-edge high-speed -0 -82 -80 -Connector_PCBEdge -Samtec_MECF-40-02-NP-L-DV_2x40_P1.27mm_Socket_Horizontal -Highspeed card edge connector for 2.4mm PCB's with 40 contacts (not polarized) -conn samtec card-edge high-speed -0 -80 -80 -Connector_PCBEdge -Samtec_MECF-50-0_-L-DV_2x50_P1.27mm_Polarized_Edge -Highspeed card edge connector for PCB's with 50 contacts (polarized) -conn samtec card-edge high-speed -0 -98 -98 -Connector_PCBEdge -Samtec_MECF-50-0_-NP-L-DV_2x50_P1.27mm_Edge -Highspeed card edge connector for PCB's with 50 contacts (not polarized) -conn samtec card-edge high-speed -0 -100 -100 -Connector_PCBEdge -Samtec_MECF-50-01-L-DV-WT_2x50_P1.27mm_Polarized_Socket_Horizontal -Highspeed card edge connector for 1.6mm PCB's with 50 contacts (polarized) -conn samtec card-edge high-speed -0 -100 -98 -Connector_PCBEdge -Samtec_MECF-50-01-L-DV_2x50_P1.27mm_Polarized_Socket_Horizontal -Highspeed card edge connector for 1.6mm PCB's with 50 contacts (polarized) -conn samtec card-edge high-speed -0 -98 -98 -Connector_PCBEdge -Samtec_MECF-50-01-NP-L-DV-WT_2x50_P1.27mm_Socket_Horizontal -Highspeed card edge connector for 1.6mm PCB's with 50 contacts (not polarized) -conn samtec card-edge high-speed -0 -102 -100 -Connector_PCBEdge -Samtec_MECF-50-01-NP-L-DV_2x50_P1.27mm_Socket_Horizontal -Highspeed card edge connector for 1.6mm PCB's with 50 contacts (not polarized) -conn samtec card-edge high-speed -0 -100 -100 -Connector_PCBEdge -Samtec_MECF-50-02-L-DV-WT_2x50_P1.27mm_Polarized_Socket_Horizontal -Highspeed card edge connector for 2.4mm PCB's with 50 contacts (polarized) -conn samtec card-edge high-speed -0 -100 -98 -Connector_PCBEdge -Samtec_MECF-50-02-L-DV_2x50_P1.27mm_Polarized_Socket_Horizontal -Highspeed card edge connector for 2.4mm PCB's with 50 contacts (polarized) -conn samtec card-edge high-speed -0 -98 -98 -Connector_PCBEdge -Samtec_MECF-50-02-NP-L-DV-WT_2x50_P1.27mm_Socket_Horizontal -Highspeed card edge connector for 2.4mm PCB's with 50 contacts (not polarized) -conn samtec card-edge high-speed -0 -102 -100 -Connector_PCBEdge -Samtec_MECF-50-02-NP-L-DV_2x50_P1.27mm_Socket_Horizontal -Highspeed card edge connector for 2.4mm PCB's with 50 contacts (not polarized) -conn samtec card-edge high-speed -0 -100 -100 -Connector_PCBEdge -Samtec_MECF-60-0_-L-DV_2x60_P1.27mm_Polarized_Edge -Highspeed card edge connector for PCB's with 60 contacts (polarized) -conn samtec card-edge high-speed -0 -116 -116 -Connector_PCBEdge -Samtec_MECF-60-0_-NP-L-DV_2x60_P1.27mm_Edge -Highspeed card edge connector for PCB's with 60 contacts (not polarized) -conn samtec card-edge high-speed -0 -120 -120 -Connector_PCBEdge -Samtec_MECF-60-01-L-DV-WT_2x60_P1.27mm_Polarized_Socket_Horizontal -Highspeed card edge connector for 1.6mm PCB's with 60 contacts (polarized) -conn samtec card-edge high-speed -0 -118 -116 -Connector_PCBEdge -Samtec_MECF-60-01-L-DV_2x60_P1.27mm_Polarized_Socket_Horizontal -Highspeed card edge connector for 1.6mm PCB's with 60 contacts (polarized) -conn samtec card-edge high-speed -0 -116 -116 -Connector_PCBEdge -Samtec_MECF-60-01-NP-L-DV-WT_2x60_P1.27mm_Socket_Horizontal -Highspeed card edge connector for 1.6mm PCB's with 60 contacts (not polarized) -conn samtec card-edge high-speed -0 -122 -120 -Connector_PCBEdge -Samtec_MECF-60-01-NP-L-DV_2x60_P1.27mm_Socket_Horizontal -Highspeed card edge connector for 1.6mm PCB's with 60 contacts (not polarized) -conn samtec card-edge high-speed -0 -120 -120 -Connector_PCBEdge -Samtec_MECF-60-02-L-DV-WT_2x60_P1.27mm_Polarized_Socket_Horizontal -Highspeed card edge connector for 2.4mm PCB's with 60 contacts (polarized) -conn samtec card-edge high-speed -0 -118 -116 -Connector_PCBEdge -Samtec_MECF-60-02-L-DV_2x60_P1.27mm_Polarized_Socket_Horizontal -Highspeed card edge connector for 2.4mm PCB's with 60 contacts (polarized) -conn samtec card-edge high-speed -0 -116 -116 -Connector_PCBEdge -Samtec_MECF-60-02-NP-L-DV-WT_2x60_P1.27mm_Socket_Horizontal -Highspeed card edge connector for 2.4mm PCB's with 60 contacts (not polarized) -conn samtec card-edge high-speed -0 -122 -120 -Connector_PCBEdge -Samtec_MECF-60-02-NP-L-DV_2x60_P1.27mm_Socket_Horizontal -Highspeed card edge connector for 2.4mm PCB's with 60 contacts (not polarized) -conn samtec card-edge high-speed -0 -120 -120 -Connector_PCBEdge -Samtec_MECF-70-0_-L-DV_2x70_P1.27mm_Polarized_Edge -Highspeed card edge connector for PCB's with 70 contacts (polarized) -conn samtec card-edge high-speed -0 -136 -136 -Connector_PCBEdge -Samtec_MECF-70-0_-NP-L-DV_2x70_P1.27mm_Edge -Highspeed card edge connector for PCB's with 70 contacts (not polarized) -conn samtec card-edge high-speed -0 -140 -140 -Connector_PCBEdge -Samtec_MECF-70-01-L-DV-WT_2x70_P1.27mm_Polarized_Socket_Horizontal -Highspeed card edge connector for 1.6mm PCB's with 70 contacts (polarized) -conn samtec card-edge high-speed -0 -138 -136 -Connector_PCBEdge -Samtec_MECF-70-01-L-DV_2x70_P1.27mm_Polarized_Socket_Horizontal -Highspeed card edge connector for 1.6mm PCB's with 70 contacts (polarized) -conn samtec card-edge high-speed -0 -136 -136 -Connector_PCBEdge -Samtec_MECF-70-01-NP-L-DV-WT_2x70_P1.27mm_Socket_Horizontal -Highspeed card edge connector for 1.6mm PCB's with 70 contacts (not polarized) -conn samtec card-edge high-speed -0 -142 -140 -Connector_PCBEdge -Samtec_MECF-70-01-NP-L-DV_2x70_P1.27mm_Socket_Horizontal -Highspeed card edge connector for 1.6mm PCB's with 70 contacts (not polarized) -conn samtec card-edge high-speed -0 -140 -140 -Connector_PCBEdge -Samtec_MECF-70-02-L-DV-WT_2x70_P1.27mm_Polarized_Socket_Horizontal -Highspeed card edge connector for 2.4mm PCB's with 70 contacts (polarized) -conn samtec card-edge high-speed -0 -138 -136 -Connector_PCBEdge -Samtec_MECF-70-02-L-DV_2x70_P1.27mm_Polarized_Socket_Horizontal -Highspeed card edge connector for 2.4mm PCB's with 70 contacts (polarized) -conn samtec card-edge high-speed -0 -136 -136 -Connector_PCBEdge -Samtec_MECF-70-02-NP-L-DV-WT_2x70_P1.27mm_Socket_Horizontal -Highspeed card edge connector for 2.4mm PCB's with 70 contacts (not polarized) -conn samtec card-edge high-speed -0 -142 -140 -Connector_PCBEdge -Samtec_MECF-70-02-NP-L-DV_2x70_P1.27mm_Socket_Horizontal -Highspeed card edge connector for 2.4mm PCB's with 70 contacts (not polarized) -conn samtec card-edge high-speed -0 -140 -140 -Connector_PCBEdge -molex_EDGELOCK_2-CKT -https://www.molex.com/pdm_docs/sd/2008900106_sd.pdf -Connector PCBEdge molex EDGELOCK -0 -2 -2 -Connector_PCBEdge -molex_EDGELOCK_4-CKT -https://www.molex.com/pdm_docs/sd/2008900106_sd.pdf -Connector PCBEdge molex EDGELOCK -0 -4 -4 -Connector_PCBEdge -molex_EDGELOCK_6-CKT -https://www.molex.com/pdm_docs/sd/2008900106_sd.pdf -Connector PCBEdge molex EDGELOCK -0 -6 -6 -Connector_PCBEdge -molex_EDGELOCK_8-CKT -https://www.molex.com/pdm_docs/sd/2008900106_sd.pdf -Connector PCBEdge molex EDGELOCK -0 -8 -8 -Connector_Phoenix_GMSTB -PhoenixContact_GMSTBA_2,5_2-G-7,62_1x02_P7.62mm_Horizontal -Generic Phoenix Contact connector footprint for: GMSTBA_2,5/2-G-7,62; number of pins: 02; pin pitch: 7.62mm; Angled || order number: 1766233 12A 630V -phoenix_contact connector GMSTBA_01x02_G_7.62mm -0 -2 -2 -Connector_Phoenix_GMSTB -PhoenixContact_GMSTBA_2,5_2-G_1x02_P7.50mm_Horizontal -Generic Phoenix Contact connector footprint for: GMSTBA_2,5/2-G; number of pins: 02; pin pitch: 7.50mm; Angled || order number: 1766343 12A 630V -phoenix_contact connector GMSTBA_01x02_G_7.50mm -0 -2 -2 -Connector_Phoenix_GMSTB -PhoenixContact_GMSTBA_2,5_3-G-7,62_1x03_P7.62mm_Horizontal -Generic Phoenix Contact connector footprint for: GMSTBA_2,5/3-G-7,62; number of pins: 03; pin pitch: 7.62mm; Angled || order number: 1766246 12A 630V -phoenix_contact connector GMSTBA_01x03_G_7.62mm -0 -3 -3 -Connector_Phoenix_GMSTB -PhoenixContact_GMSTBA_2,5_3-G_1x03_P7.50mm_Horizontal -Generic Phoenix Contact connector footprint for: GMSTBA_2,5/3-G; number of pins: 03; pin pitch: 7.50mm; Angled || order number: 1766356 12A 630V -phoenix_contact connector GMSTBA_01x03_G_7.50mm -0 -3 -3 -Connector_Phoenix_GMSTB -PhoenixContact_GMSTBA_2,5_4-G-7,62_1x04_P7.62mm_Horizontal -Generic Phoenix Contact connector footprint for: GMSTBA_2,5/4-G-7,62; number of pins: 04; pin pitch: 7.62mm; Angled || order number: 1766259 12A 630V -phoenix_contact connector GMSTBA_01x04_G_7.62mm -0 -4 -4 -Connector_Phoenix_GMSTB -PhoenixContact_GMSTBA_2,5_4-G_1x04_P7.50mm_Horizontal -Generic Phoenix Contact connector footprint for: GMSTBA_2,5/4-G; number of pins: 04; pin pitch: 7.50mm; Angled || order number: 1766369 12A 630V -phoenix_contact connector GMSTBA_01x04_G_7.50mm -0 -4 -4 -Connector_Phoenix_GMSTB -PhoenixContact_GMSTBA_2,5_5-G-7,62_1x05_P7.62mm_Horizontal -Generic Phoenix Contact connector footprint for: GMSTBA_2,5/5-G-7,62; number of pins: 05; pin pitch: 7.62mm; Angled || order number: 1766262 12A 630V -phoenix_contact connector GMSTBA_01x05_G_7.62mm -0 -5 -5 -Connector_Phoenix_GMSTB -PhoenixContact_GMSTBA_2,5_5-G_1x05_P7.50mm_Horizontal -Generic Phoenix Contact connector footprint for: GMSTBA_2,5/5-G; number of pins: 05; pin pitch: 7.50mm; Angled || order number: 1766372 12A 630V -phoenix_contact connector GMSTBA_01x05_G_7.50mm -0 -5 -5 -Connector_Phoenix_GMSTB -PhoenixContact_GMSTBA_2,5_6-G-7,62_1x06_P7.62mm_Horizontal -Generic Phoenix Contact connector footprint for: GMSTBA_2,5/6-G-7,62; number of pins: 06; pin pitch: 7.62mm; Angled || order number: 1766275 12A 630V -phoenix_contact connector GMSTBA_01x06_G_7.62mm -0 -6 -6 -Connector_Phoenix_GMSTB -PhoenixContact_GMSTBA_2,5_6-G_1x06_P7.50mm_Horizontal -Generic Phoenix Contact connector footprint for: GMSTBA_2,5/6-G; number of pins: 06; pin pitch: 7.50mm; Angled || order number: 1766385 12A 630V -phoenix_contact connector GMSTBA_01x06_G_7.50mm -0 -6 -6 -Connector_Phoenix_GMSTB -PhoenixContact_GMSTBA_2,5_7-G-7,62_1x07_P7.62mm_Horizontal -Generic Phoenix Contact connector footprint for: GMSTBA_2,5/7-G-7,62; number of pins: 07; pin pitch: 7.62mm; Angled || order number: 1766288 12A 630V -phoenix_contact connector GMSTBA_01x07_G_7.62mm -0 -7 -7 -Connector_Phoenix_GMSTB -PhoenixContact_GMSTBA_2,5_7-G_1x07_P7.50mm_Horizontal -Generic Phoenix Contact connector footprint for: GMSTBA_2,5/7-G; number of pins: 07; pin pitch: 7.50mm; Angled || order number: 1766398 12A 630V -phoenix_contact connector GMSTBA_01x07_G_7.50mm -0 -7 -7 -Connector_Phoenix_GMSTB -PhoenixContact_GMSTBA_2,5_8-G-7,62_1x08_P7.62mm_Horizontal -Generic Phoenix Contact connector footprint for: GMSTBA_2,5/8-G-7,62; number of pins: 08; pin pitch: 7.62mm; Angled || order number: 1766291 12A 630V -phoenix_contact connector GMSTBA_01x08_G_7.62mm -0 -8 -8 -Connector_Phoenix_GMSTB -PhoenixContact_GMSTBA_2,5_8-G_1x08_P7.50mm_Horizontal -Generic Phoenix Contact connector footprint for: GMSTBA_2,5/8-G; number of pins: 08; pin pitch: 7.50mm; Angled || order number: 1766408 12A 630V -phoenix_contact connector GMSTBA_01x08_G_7.50mm -0 -8 -8 -Connector_Phoenix_GMSTB -PhoenixContact_GMSTBA_2,5_9-G-7,62_1x09_P7.62mm_Horizontal -Generic Phoenix Contact connector footprint for: GMSTBA_2,5/9-G-7,62; number of pins: 09; pin pitch: 7.62mm; Angled || order number: 1766301 12A 630V -phoenix_contact connector GMSTBA_01x09_G_7.62mm -0 -9 -9 -Connector_Phoenix_GMSTB -PhoenixContact_GMSTBA_2,5_9-G_1x09_P7.50mm_Horizontal -Generic Phoenix Contact connector footprint for: GMSTBA_2,5/9-G; number of pins: 09; pin pitch: 7.50mm; Angled || order number: 1766411 12A 630V -phoenix_contact connector GMSTBA_01x09_G_7.50mm -0 -9 -9 -Connector_Phoenix_GMSTB -PhoenixContact_GMSTBA_2,5_10-G-7,62_1x10_P7.62mm_Horizontal -Generic Phoenix Contact connector footprint for: GMSTBA_2,5/10-G-7,62; number of pins: 10; pin pitch: 7.62mm; Angled || order number: 1766314 12A 630V -phoenix_contact connector GMSTBA_01x10_G_7.62mm -0 -10 -10 -Connector_Phoenix_GMSTB -PhoenixContact_GMSTBA_2,5_10-G_1x10_P7.50mm_Horizontal -Generic Phoenix Contact connector footprint for: GMSTBA_2,5/10-G; number of pins: 10; pin pitch: 7.50mm; Angled || order number: 1766424 12A 630V -phoenix_contact connector GMSTBA_01x10_G_7.50mm -0 -10 -10 -Connector_Phoenix_GMSTB -PhoenixContact_GMSTBA_2,5_11-G-7,62_1x11_P7.62mm_Horizontal -Generic Phoenix Contact connector footprint for: GMSTBA_2,5/11-G-7,62; number of pins: 11; pin pitch: 7.62mm; Angled || order number: 1766327 12A 630V -phoenix_contact connector GMSTBA_01x11_G_7.62mm -0 -11 -11 -Connector_Phoenix_GMSTB -PhoenixContact_GMSTBA_2,5_11-G_1x11_P7.50mm_Horizontal -Generic Phoenix Contact connector footprint for: GMSTBA_2,5/11-G; number of pins: 11; pin pitch: 7.50mm; Angled || order number: 1766437 12A 630V -phoenix_contact connector GMSTBA_01x11_G_7.50mm -0 -11 -11 -Connector_Phoenix_GMSTB -PhoenixContact_GMSTBA_2,5_12-G-7,62_1x12_P7.62mm_Horizontal -Generic Phoenix Contact connector footprint for: GMSTBA_2,5/12-G-7,62; number of pins: 12; pin pitch: 7.62mm; Angled || order number: 1766330 12A 630V -phoenix_contact connector GMSTBA_01x12_G_7.62mm -0 -12 -12 -Connector_Phoenix_GMSTB -PhoenixContact_GMSTBA_2,5_12-G_1x12_P7.50mm_Horizontal -Generic Phoenix Contact connector footprint for: GMSTBA_2,5/12-G; number of pins: 12; pin pitch: 7.50mm; Angled || order number: 1766440 12A 630V -phoenix_contact connector GMSTBA_01x12_G_7.50mm -0 -12 -12 -Connector_Phoenix_GMSTB -PhoenixContact_GMSTBVA_2,5_2-G-7,62_1x02_P7.62mm_Vertical -Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/2-G-7,62; number of pins: 02; pin pitch: 7.62mm; Vertical || order number: 1766770 12A 630V -phoenix_contact connector GMSTBVA_01x02_G_7.62mm -0 -2 -2 -Connector_Phoenix_GMSTB -PhoenixContact_GMSTBVA_2,5_2-G_1x02_P7.50mm_Vertical -Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/2-G; number of pins: 02; pin pitch: 7.50mm; Vertical || order number: 1766660 12A 630V -phoenix_contact connector GMSTBVA_01x02_G_7.50mm -0 -2 -2 -Connector_Phoenix_GMSTB -PhoenixContact_GMSTBVA_2,5_3-G-7,62_1x03_P7.62mm_Vertical -Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/3-G-7,62; number of pins: 03; pin pitch: 7.62mm; Vertical || order number: 1766783 12A 630V -phoenix_contact connector GMSTBVA_01x03_G_7.62mm -0 -3 -3 -Connector_Phoenix_GMSTB -PhoenixContact_GMSTBVA_2,5_3-G_1x03_P7.50mm_Vertical -Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/3-G; number of pins: 03; pin pitch: 7.50mm; Vertical || order number: 1766673 12A 630V -phoenix_contact connector GMSTBVA_01x03_G_7.50mm -0 -3 -3 -Connector_Phoenix_GMSTB -PhoenixContact_GMSTBVA_2,5_4-G-7,62_1x04_P7.62mm_Vertical -Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/4-G-7,62; number of pins: 04; pin pitch: 7.62mm; Vertical || order number: 1766796 12A 630V -phoenix_contact connector GMSTBVA_01x04_G_7.62mm -0 -4 -4 -Connector_Phoenix_GMSTB -PhoenixContact_GMSTBVA_2,5_4-G_1x04_P7.50mm_Vertical -Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/4-G; number of pins: 04; pin pitch: 7.50mm; Vertical || order number: 1766686 12A 630V -phoenix_contact connector GMSTBVA_01x04_G_7.50mm -0 -4 -4 -Connector_Phoenix_GMSTB -PhoenixContact_GMSTBVA_2,5_5-G-7,62_1x05_P7.62mm_Vertical -Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/5-G-7,62; number of pins: 05; pin pitch: 7.62mm; Vertical || order number: 1766806 12A 630V -phoenix_contact connector GMSTBVA_01x05_G_7.62mm -0 -5 -5 -Connector_Phoenix_GMSTB -PhoenixContact_GMSTBVA_2,5_5-G_1x05_P7.50mm_Vertical -Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/5-G; number of pins: 05; pin pitch: 7.50mm; Vertical || order number: 1766699 12A 630V -phoenix_contact connector GMSTBVA_01x05_G_7.50mm -0 -5 -5 -Connector_Phoenix_GMSTB -PhoenixContact_GMSTBVA_2,5_6-G-7,62_1x06_P7.62mm_Vertical -Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/6-G-7,62; number of pins: 06; pin pitch: 7.62mm; Vertical || order number: 1766819 12A 630V -phoenix_contact connector GMSTBVA_01x06_G_7.62mm -0 -6 -6 -Connector_Phoenix_GMSTB -PhoenixContact_GMSTBVA_2,5_6-G_1x06_P7.50mm_Vertical -Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/6-G; number of pins: 06; pin pitch: 7.50mm; Vertical || order number: 1766709 12A 630V -phoenix_contact connector GMSTBVA_01x06_G_7.50mm -0 -6 -6 -Connector_Phoenix_GMSTB -PhoenixContact_GMSTBVA_2,5_7-G-7,62_1x07_P7.62mm_Vertical -Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/7-G-7,62; number of pins: 07; pin pitch: 7.62mm; Vertical || order number: 1766822 12A 630V -phoenix_contact connector GMSTBVA_01x07_G_7.62mm -0 -7 -7 -Connector_Phoenix_GMSTB -PhoenixContact_GMSTBVA_2,5_7-G_1x07_P7.50mm_Vertical -Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/7-G; number of pins: 07; pin pitch: 7.50mm; Vertical || order number: 1766712 12A 630V -phoenix_contact connector GMSTBVA_01x07_G_7.50mm -0 -7 -7 -Connector_Phoenix_GMSTB -PhoenixContact_GMSTBVA_2,5_8-G-7,62_1x08_P7.62mm_Vertical -Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/8-G-7,62; number of pins: 08; pin pitch: 7.62mm; Vertical || order number: 1766835 12A 630V -phoenix_contact connector GMSTBVA_01x08_G_7.62mm -0 -8 -8 -Connector_Phoenix_GMSTB -PhoenixContact_GMSTBVA_2,5_8-G_1x08_P7.50mm_Vertical -Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/8-G; number of pins: 08; pin pitch: 7.50mm; Vertical || order number: 1766725 12A 630V -phoenix_contact connector GMSTBVA_01x08_G_7.50mm -0 -8 -8 -Connector_Phoenix_GMSTB -PhoenixContact_GMSTBVA_2,5_9-G-7,62_1x09_P7.62mm_Vertical -Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/9-G-7,62; number of pins: 09; pin pitch: 7.62mm; Vertical || order number: 1766848 12A 630V -phoenix_contact connector GMSTBVA_01x09_G_7.62mm -0 -9 -9 -Connector_Phoenix_GMSTB -PhoenixContact_GMSTBVA_2,5_9-G_1x09_P7.50mm_Vertical -Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/9-G; number of pins: 09; pin pitch: 7.50mm; Vertical || order number: 1766738 12A 630V -phoenix_contact connector GMSTBVA_01x09_G_7.50mm -0 -9 -9 -Connector_Phoenix_GMSTB -PhoenixContact_GMSTBVA_2,5_10-G-7,62_1x10_P7.62mm_Vertical -Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/10-G-7,62; number of pins: 10; pin pitch: 7.62mm; Vertical || order number: 1766851 12A 630V -phoenix_contact connector GMSTBVA_01x10_G_7.62mm -0 -10 -10 -Connector_Phoenix_GMSTB -PhoenixContact_GMSTBVA_2,5_10-G_1x10_P7.50mm_Vertical -Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/10-G; number of pins: 10; pin pitch: 7.50mm; Vertical || order number: 1766741 12A 630V -phoenix_contact connector GMSTBVA_01x10_G_7.50mm -0 -10 -10 -Connector_Phoenix_GMSTB -PhoenixContact_GMSTBVA_2,5_11-G-7,62_1x11_P7.62mm_Vertical -Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/11-G-7,62; number of pins: 11; pin pitch: 7.62mm; Vertical || order number: 1766864 12A 630V -phoenix_contact connector GMSTBVA_01x11_G_7.62mm -0 -11 -11 -Connector_Phoenix_GMSTB -PhoenixContact_GMSTBVA_2,5_11-G_1x11_P7.50mm_Vertical -Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/11-G; number of pins: 11; pin pitch: 7.50mm; Vertical || order number: 1766754 12A 630V -phoenix_contact connector GMSTBVA_01x11_G_7.50mm -0 -11 -11 -Connector_Phoenix_GMSTB -PhoenixContact_GMSTBVA_2,5_12-G-7,62_1x12_P7.62mm_Vertical -Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/12-G-7,62; number of pins: 12; pin pitch: 7.62mm; Vertical || order number: 1766877 12A 630V -phoenix_contact connector GMSTBVA_01x12_G_7.62mm -0 -12 -12 -Connector_Phoenix_GMSTB -PhoenixContact_GMSTBVA_2,5_12-G_1x12_P7.50mm_Vertical -Generic Phoenix Contact connector footprint for: GMSTBVA_2,5/12-G; number of pins: 12; pin pitch: 7.50mm; Vertical || order number: 1766767 12A 630V -phoenix_contact connector GMSTBVA_01x12_G_7.50mm -0 -12 -12 -Connector_Phoenix_GMSTB -PhoenixContact_GMSTBV_2,5_2-GF-7,62_1x02_P7.62mm_Vertical_ThreadedFlange -Generic Phoenix Contact connector footprint for: GMSTBV_2,5/2-GF-7,62; number of pins: 02; pin pitch: 7.62mm; Vertical; threaded flange || order number: 1829154 12A 630V -phoenix_contact connector GMSTBV_01x02_GF_7.62mm -0 -2 -2 -Connector_Phoenix_GMSTB -PhoenixContact_GMSTBV_2,5_2-GF-7,62_1x02_P7.62mm_Vertical_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: GMSTBV_2,5/2-GF-7,62; number of pins: 02; pin pitch: 7.62mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1829154 12A 630V -phoenix_contact connector GMSTBV_01x02_GF_7.62mm_MH -0 -2 -2 -Connector_Phoenix_GMSTB -PhoenixContact_GMSTBV_2,5_3-GF-7,62_1x03_P7.62mm_Vertical_ThreadedFlange -Generic Phoenix Contact connector footprint for: GMSTBV_2,5/3-GF-7,62; number of pins: 03; pin pitch: 7.62mm; Vertical; threaded flange || order number: 1829167 12A 630V -phoenix_contact connector GMSTBV_01x03_GF_7.62mm -0 -3 -3 -Connector_Phoenix_GMSTB -PhoenixContact_GMSTBV_2,5_3-GF-7,62_1x03_P7.62mm_Vertical_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: GMSTBV_2,5/3-GF-7,62; number of pins: 03; pin pitch: 7.62mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1829167 12A 630V -phoenix_contact connector GMSTBV_01x03_GF_7.62mm_MH -0 -3 -3 -Connector_Phoenix_GMSTB -PhoenixContact_GMSTBV_2,5_4-GF-7,62_1x04_P7.62mm_Vertical_ThreadedFlange -Generic Phoenix Contact connector footprint for: GMSTBV_2,5/4-GF-7,62; number of pins: 04; pin pitch: 7.62mm; Vertical; threaded flange || order number: 1829170 12A 630V -phoenix_contact connector GMSTBV_01x04_GF_7.62mm -0 -4 -4 -Connector_Phoenix_GMSTB -PhoenixContact_GMSTBV_2,5_4-GF-7,62_1x04_P7.62mm_Vertical_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: GMSTBV_2,5/4-GF-7,62; number of pins: 04; pin pitch: 7.62mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1829170 12A 630V -phoenix_contact connector GMSTBV_01x04_GF_7.62mm_MH -0 -4 -4 -Connector_Phoenix_GMSTB -PhoenixContact_GMSTBV_2,5_5-GF-7,62_1x05_P7.62mm_Vertical_ThreadedFlange -Generic Phoenix Contact connector footprint for: GMSTBV_2,5/5-GF-7,62; number of pins: 05; pin pitch: 7.62mm; Vertical; threaded flange || order number: 1829183 12A 630V -phoenix_contact connector GMSTBV_01x05_GF_7.62mm -0 -5 -5 -Connector_Phoenix_GMSTB -PhoenixContact_GMSTBV_2,5_5-GF-7,62_1x05_P7.62mm_Vertical_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: GMSTBV_2,5/5-GF-7,62; number of pins: 05; pin pitch: 7.62mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1829183 12A 630V -phoenix_contact connector GMSTBV_01x05_GF_7.62mm_MH -0 -5 -5 -Connector_Phoenix_GMSTB -PhoenixContact_GMSTBV_2,5_6-GF-7,62_1x06_P7.62mm_Vertical_ThreadedFlange -Generic Phoenix Contact connector footprint for: GMSTBV_2,5/6-GF-7,62; number of pins: 06; pin pitch: 7.62mm; Vertical; threaded flange || order number: 1829196 12A 630V -phoenix_contact connector GMSTBV_01x06_GF_7.62mm -0 -6 -6 -Connector_Phoenix_GMSTB -PhoenixContact_GMSTBV_2,5_6-GF-7,62_1x06_P7.62mm_Vertical_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: GMSTBV_2,5/6-GF-7,62; number of pins: 06; pin pitch: 7.62mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1829196 12A 630V -phoenix_contact connector GMSTBV_01x06_GF_7.62mm_MH -0 -6 -6 -Connector_Phoenix_GMSTB -PhoenixContact_GMSTBV_2,5_7-GF-7,62_1x07_P7.62mm_Vertical_ThreadedFlange -Generic Phoenix Contact connector footprint for: GMSTBV_2,5/7-GF-7,62; number of pins: 07; pin pitch: 7.62mm; Vertical; threaded flange || order number: 1829206 12A 630V -phoenix_contact connector GMSTBV_01x07_GF_7.62mm -0 -7 -7 -Connector_Phoenix_GMSTB -PhoenixContact_GMSTBV_2,5_7-GF-7,62_1x07_P7.62mm_Vertical_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: GMSTBV_2,5/7-GF-7,62; number of pins: 07; pin pitch: 7.62mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1829206 12A 630V -phoenix_contact connector GMSTBV_01x07_GF_7.62mm_MH -0 -7 -7 -Connector_Phoenix_GMSTB -PhoenixContact_GMSTBV_2,5_8-GF-7,62_1x08_P7.62mm_Vertical_ThreadedFlange -Generic Phoenix Contact connector footprint for: GMSTBV_2,5/8-GF-7,62; number of pins: 08; pin pitch: 7.62mm; Vertical; threaded flange || order number: 1829219 12A 630V -phoenix_contact connector GMSTBV_01x08_GF_7.62mm -0 -8 -8 -Connector_Phoenix_GMSTB -PhoenixContact_GMSTBV_2,5_8-GF-7,62_1x08_P7.62mm_Vertical_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: GMSTBV_2,5/8-GF-7,62; number of pins: 08; pin pitch: 7.62mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1829219 12A 630V -phoenix_contact connector GMSTBV_01x08_GF_7.62mm_MH -0 -8 -8 -Connector_Phoenix_GMSTB -PhoenixContact_GMSTBV_2,5_9-GF-7,62_1x09_P7.62mm_Vertical_ThreadedFlange -Generic Phoenix Contact connector footprint for: GMSTBV_2,5/9-GF-7,62; number of pins: 09; pin pitch: 7.62mm; Vertical; threaded flange || order number: 1829222 12A 630V -phoenix_contact connector GMSTBV_01x09_GF_7.62mm -0 -9 -9 -Connector_Phoenix_GMSTB -PhoenixContact_GMSTBV_2,5_9-GF-7,62_1x09_P7.62mm_Vertical_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: GMSTBV_2,5/9-GF-7,62; number of pins: 09; pin pitch: 7.62mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1829222 12A 630V -phoenix_contact connector GMSTBV_01x09_GF_7.62mm_MH -0 -9 -9 -Connector_Phoenix_GMSTB -PhoenixContact_GMSTBV_2,5_10-GF-7,62_1x10_P7.62mm_Vertical_ThreadedFlange -Generic Phoenix Contact connector footprint for: GMSTBV_2,5/10-GF-7,62; number of pins: 10; pin pitch: 7.62mm; Vertical; threaded flange || order number: 1829235 12A 630V -phoenix_contact connector GMSTBV_01x10_GF_7.62mm -0 -10 -10 -Connector_Phoenix_GMSTB -PhoenixContact_GMSTBV_2,5_10-GF-7,62_1x10_P7.62mm_Vertical_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: GMSTBV_2,5/10-GF-7,62; number of pins: 10; pin pitch: 7.62mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1829235 12A 630V -phoenix_contact connector GMSTBV_01x10_GF_7.62mm_MH -0 -10 -10 -Connector_Phoenix_GMSTB -PhoenixContact_GMSTBV_2,5_11-GF-7,62_1x11_P7.62mm_Vertical_ThreadedFlange -Generic Phoenix Contact connector footprint for: GMSTBV_2,5/11-GF-7,62; number of pins: 11; pin pitch: 7.62mm; Vertical; threaded flange || order number: 1829248 12A 630V -phoenix_contact connector GMSTBV_01x11_GF_7.62mm -0 -11 -11 -Connector_Phoenix_GMSTB -PhoenixContact_GMSTBV_2,5_11-GF-7,62_1x11_P7.62mm_Vertical_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: GMSTBV_2,5/11-GF-7,62; number of pins: 11; pin pitch: 7.62mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1829248 12A 630V -phoenix_contact connector GMSTBV_01x11_GF_7.62mm_MH -0 -11 -11 -Connector_Phoenix_GMSTB -PhoenixContact_GMSTBV_2,5_12-GF-7,62_1x12_P7.62mm_Vertical_ThreadedFlange -Generic Phoenix Contact connector footprint for: GMSTBV_2,5/12-GF-7,62; number of pins: 12; pin pitch: 7.62mm; Vertical; threaded flange || order number: 1829251 12A 630V -phoenix_contact connector GMSTBV_01x12_GF_7.62mm -0 -12 -12 -Connector_Phoenix_GMSTB -PhoenixContact_GMSTBV_2,5_12-GF-7,62_1x12_P7.62mm_Vertical_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: GMSTBV_2,5/12-GF-7,62; number of pins: 12; pin pitch: 7.62mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1829251 12A 630V -phoenix_contact connector GMSTBV_01x12_GF_7.62mm_MH -0 -12 -12 -Connector_Phoenix_GMSTB -PhoenixContact_GMSTB_2,5_2-GF-7,62_1x02_P7.62mm_Horizontal_ThreadedFlange -Generic Phoenix Contact connector footprint for: GMSTB_2,5/2-GF-7,62; number of pins: 02; pin pitch: 7.62mm; Angled; threaded flange || order number: 1806229 12A 630V -phoenix_contact connector GMSTB_01x02_GF_7.62mm -0 -2 -2 -Connector_Phoenix_GMSTB -PhoenixContact_GMSTB_2,5_2-GF-7,62_1x02_P7.62mm_Horizontal_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: GMSTB_2,5/2-GF-7,62; number of pins: 02; pin pitch: 7.62mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1806229 12A 630V -phoenix_contact connector GMSTB_01x02_GF_7.62mm_MH -0 -2 -2 -Connector_Phoenix_GMSTB -PhoenixContact_GMSTB_2,5_3-GF-7,62_1x03_P7.62mm_Horizontal_ThreadedFlange -Generic Phoenix Contact connector footprint for: GMSTB_2,5/3-GF-7,62; number of pins: 03; pin pitch: 7.62mm; Angled; threaded flange || order number: 1806232 12A 630V -phoenix_contact connector GMSTB_01x03_GF_7.62mm -0 -3 -3 -Connector_Phoenix_GMSTB -PhoenixContact_GMSTB_2,5_3-GF-7,62_1x03_P7.62mm_Horizontal_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: GMSTB_2,5/3-GF-7,62; number of pins: 03; pin pitch: 7.62mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1806232 12A 630V -phoenix_contact connector GMSTB_01x03_GF_7.62mm_MH -0 -3 -3 -Connector_Phoenix_GMSTB -PhoenixContact_GMSTB_2,5_4-GF-7,62_1x04_P7.62mm_Horizontal_ThreadedFlange -Generic Phoenix Contact connector footprint for: GMSTB_2,5/4-GF-7,62; number of pins: 04; pin pitch: 7.62mm; Angled; threaded flange || order number: 1806245 12A 630V -phoenix_contact connector GMSTB_01x04_GF_7.62mm -0 -4 -4 -Connector_Phoenix_GMSTB -PhoenixContact_GMSTB_2,5_4-GF-7,62_1x04_P7.62mm_Horizontal_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: GMSTB_2,5/4-GF-7,62; number of pins: 04; pin pitch: 7.62mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1806245 12A 630V -phoenix_contact connector GMSTB_01x04_GF_7.62mm_MH -0 -4 -4 -Connector_Phoenix_GMSTB -PhoenixContact_GMSTB_2,5_5-GF-7,62_1x05_P7.62mm_Horizontal_ThreadedFlange -Generic Phoenix Contact connector footprint for: GMSTB_2,5/5-GF-7,62; number of pins: 05; pin pitch: 7.62mm; Angled; threaded flange || order number: 1806258 12A 630V -phoenix_contact connector GMSTB_01x05_GF_7.62mm -0 -5 -5 -Connector_Phoenix_GMSTB -PhoenixContact_GMSTB_2,5_5-GF-7,62_1x05_P7.62mm_Horizontal_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: GMSTB_2,5/5-GF-7,62; number of pins: 05; pin pitch: 7.62mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1806258 12A 630V -phoenix_contact connector GMSTB_01x05_GF_7.62mm_MH -0 -5 -5 -Connector_Phoenix_GMSTB -PhoenixContact_GMSTB_2,5_6-GF-7,62_1x06_P7.62mm_Horizontal_ThreadedFlange -Generic Phoenix Contact connector footprint for: GMSTB_2,5/6-GF-7,62; number of pins: 06; pin pitch: 7.62mm; Angled; threaded flange || order number: 1806261 12A 630V -phoenix_contact connector GMSTB_01x06_GF_7.62mm -0 -6 -6 -Connector_Phoenix_GMSTB -PhoenixContact_GMSTB_2,5_6-GF-7,62_1x06_P7.62mm_Horizontal_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: GMSTB_2,5/6-GF-7,62; number of pins: 06; pin pitch: 7.62mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1806261 12A 630V -phoenix_contact connector GMSTB_01x06_GF_7.62mm_MH -0 -6 -6 -Connector_Phoenix_GMSTB -PhoenixContact_GMSTB_2,5_7-GF-7,62_1x07_P7.62mm_Horizontal_ThreadedFlange -Generic Phoenix Contact connector footprint for: GMSTB_2,5/7-GF-7,62; number of pins: 07; pin pitch: 7.62mm; Angled; threaded flange || order number: 1806274 12A 630V -phoenix_contact connector GMSTB_01x07_GF_7.62mm -0 -7 -7 -Connector_Phoenix_GMSTB -PhoenixContact_GMSTB_2,5_7-GF-7,62_1x07_P7.62mm_Horizontal_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: GMSTB_2,5/7-GF-7,62; number of pins: 07; pin pitch: 7.62mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1806274 12A 630V -phoenix_contact connector GMSTB_01x07_GF_7.62mm_MH -0 -7 -7 -Connector_Phoenix_GMSTB -PhoenixContact_GMSTB_2,5_8-GF-7,62_1x08_P7.62mm_Horizontal_ThreadedFlange -Generic Phoenix Contact connector footprint for: GMSTB_2,5/8-GF-7,62; number of pins: 08; pin pitch: 7.62mm; Angled; threaded flange || order number: 1806287 12A 630V -phoenix_contact connector GMSTB_01x08_GF_7.62mm -0 -8 -8 -Connector_Phoenix_GMSTB -PhoenixContact_GMSTB_2,5_8-GF-7,62_1x08_P7.62mm_Horizontal_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: GMSTB_2,5/8-GF-7,62; number of pins: 08; pin pitch: 7.62mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1806287 12A 630V -phoenix_contact connector GMSTB_01x08_GF_7.62mm_MH -0 -8 -8 -Connector_Phoenix_GMSTB -PhoenixContact_GMSTB_2,5_9-GF-7,62_1x09_P7.62mm_Horizontal_ThreadedFlange -Generic Phoenix Contact connector footprint for: GMSTB_2,5/9-GF-7,62; number of pins: 09; pin pitch: 7.62mm; Angled; threaded flange || order number: 1806290 12A 630V -phoenix_contact connector GMSTB_01x09_GF_7.62mm -0 -9 -9 -Connector_Phoenix_GMSTB -PhoenixContact_GMSTB_2,5_9-GF-7,62_1x09_P7.62mm_Horizontal_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: GMSTB_2,5/9-GF-7,62; number of pins: 09; pin pitch: 7.62mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1806290 12A 630V -phoenix_contact connector GMSTB_01x09_GF_7.62mm_MH -0 -9 -9 -Connector_Phoenix_GMSTB -PhoenixContact_GMSTB_2,5_10-GF-7,62_1x10_P7.62mm_Horizontal_ThreadedFlange -Generic Phoenix Contact connector footprint for: GMSTB_2,5/10-GF-7,62; number of pins: 10; pin pitch: 7.62mm; Angled; threaded flange || order number: 1806300 12A 630V -phoenix_contact connector GMSTB_01x10_GF_7.62mm -0 -10 -10 -Connector_Phoenix_GMSTB -PhoenixContact_GMSTB_2,5_10-GF-7,62_1x10_P7.62mm_Horizontal_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: GMSTB_2,5/10-GF-7,62; number of pins: 10; pin pitch: 7.62mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1806300 12A 630V -phoenix_contact connector GMSTB_01x10_GF_7.62mm_MH -0 -10 -10 -Connector_Phoenix_GMSTB -PhoenixContact_GMSTB_2,5_11-GF-7,62_1x11_P7.62mm_Horizontal_ThreadedFlange -Generic Phoenix Contact connector footprint for: GMSTB_2,5/11-GF-7,62; number of pins: 11; pin pitch: 7.62mm; Angled; threaded flange || order number: 1806313 12A 630V -phoenix_contact connector GMSTB_01x11_GF_7.62mm -0 -11 -11 -Connector_Phoenix_GMSTB -PhoenixContact_GMSTB_2,5_11-GF-7,62_1x11_P7.62mm_Horizontal_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: GMSTB_2,5/11-GF-7,62; number of pins: 11; pin pitch: 7.62mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1806313 12A 630V -phoenix_contact connector GMSTB_01x11_GF_7.62mm_MH -0 -11 -11 -Connector_Phoenix_GMSTB -PhoenixContact_GMSTB_2,5_12-GF-7,62_1x12_P7.62mm_Horizontal_ThreadedFlange -Generic Phoenix Contact connector footprint for: GMSTB_2,5/12-GF-7,62; number of pins: 12; pin pitch: 7.62mm; Angled; threaded flange || order number: 1806326 12A 630V -phoenix_contact connector GMSTB_01x12_GF_7.62mm -0 -12 -12 -Connector_Phoenix_GMSTB -PhoenixContact_GMSTB_2,5_12-GF-7,62_1x12_P7.62mm_Horizontal_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: GMSTB_2,5/12-GF-7,62; number of pins: 12; pin pitch: 7.62mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1806326 12A 630V -phoenix_contact connector GMSTB_01x12_GF_7.62mm_MH -0 -12 -12 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_2-G-3.5_1x02_P3.50mm_Vertical -Generic Phoenix Contact connector footprint for: MCV_1,5/2-G-3.5; number of pins: 02; pin pitch: 3.50mm; Vertical || order number: 1843606 8A 160V -phoenix_contact connector MCV_01x02_G_3.5mm -0 -2 -2 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_2-G-3.81_1x02_P3.81mm_Vertical -Generic Phoenix Contact connector footprint for: MCV_1,5/2-G-3.81; number of pins: 02; pin pitch: 3.81mm; Vertical || order number: 1803426 8A 160V -phoenix_contact connector MCV_01x02_G_3.81mm -0 -2 -2 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_2-GF-3.5_1x02_P3.50mm_Vertical_ThreadedFlange -Generic Phoenix Contact connector footprint for: MCV_1,5/2-GF-3.5; number of pins: 02; pin pitch: 3.50mm; Vertical; threaded flange || order number: 1843224 8A 160V -phoenix_contact connector MCV_01x02_GF_3.5mm -0 -2 -2 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_2-GF-3.5_1x02_P3.50mm_Vertical_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MCV_1,5/2-GF-3.5; number of pins: 02; pin pitch: 3.50mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843224 8A 160V -phoenix_contact connector MCV_01x02_GF_3.5mm_MH -0 -2 -2 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_2-GF-3.81_1x02_P3.81mm_Vertical_ThreadedFlange -Generic Phoenix Contact connector footprint for: MCV_1,5/2-GF-3.81; number of pins: 02; pin pitch: 3.81mm; Vertical; threaded flange || order number: 1830596 8A 160V -phoenix_contact connector MCV_01x02_GF_3.81mm -0 -2 -2 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_2-GF-3.81_1x02_P3.81mm_Vertical_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MCV_1,5/2-GF-3.81; number of pins: 02; pin pitch: 3.81mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1830596 8A 160V -phoenix_contact connector MCV_01x02_GF_3.81mm_MH -0 -2 -2 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_3-G-3.5_1x03_P3.50mm_Vertical -Generic Phoenix Contact connector footprint for: MCV_1,5/3-G-3.5; number of pins: 03; pin pitch: 3.50mm; Vertical || order number: 1843619 8A 160V -phoenix_contact connector MCV_01x03_G_3.5mm -0 -3 -3 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_3-G-3.81_1x03_P3.81mm_Vertical -Generic Phoenix Contact connector footprint for: MCV_1,5/3-G-3.81; number of pins: 03; pin pitch: 3.81mm; Vertical || order number: 1803439 8A 160V -phoenix_contact connector MCV_01x03_G_3.81mm -0 -3 -3 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_3-GF-3.5_1x03_P3.50mm_Vertical_ThreadedFlange -Generic Phoenix Contact connector footprint for: MCV_1,5/3-GF-3.5; number of pins: 03; pin pitch: 3.50mm; Vertical; threaded flange || order number: 1843237 8A 160V -phoenix_contact connector MCV_01x03_GF_3.5mm -0 -3 -3 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_3-GF-3.5_1x03_P3.50mm_Vertical_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MCV_1,5/3-GF-3.5; number of pins: 03; pin pitch: 3.50mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843237 8A 160V -phoenix_contact connector MCV_01x03_GF_3.5mm_MH -0 -3 -3 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_3-GF-3.81_1x03_P3.81mm_Vertical_ThreadedFlange -Generic Phoenix Contact connector footprint for: MCV_1,5/3-GF-3.81; number of pins: 03; pin pitch: 3.81mm; Vertical; threaded flange || order number: 1830606 8A 160V -phoenix_contact connector MCV_01x03_GF_3.81mm -0 -3 -3 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_3-GF-3.81_1x03_P3.81mm_Vertical_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MCV_1,5/3-GF-3.81; number of pins: 03; pin pitch: 3.81mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1830606 8A 160V -phoenix_contact connector MCV_01x03_GF_3.81mm_MH -0 -3 -3 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_4-G-3.5_1x04_P3.50mm_Vertical -Generic Phoenix Contact connector footprint for: MCV_1,5/4-G-3.5; number of pins: 04; pin pitch: 3.50mm; Vertical || order number: 1843622 8A 160V -phoenix_contact connector MCV_01x04_G_3.5mm -0 -4 -4 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_4-G-3.81_1x04_P3.81mm_Vertical -Generic Phoenix Contact connector footprint for: MCV_1,5/4-G-3.81; number of pins: 04; pin pitch: 3.81mm; Vertical || order number: 1803442 8A 160V -phoenix_contact connector MCV_01x04_G_3.81mm -0 -4 -4 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_4-GF-3.5_1x04_P3.50mm_Vertical_ThreadedFlange -Generic Phoenix Contact connector footprint for: MCV_1,5/4-GF-3.5; number of pins: 04; pin pitch: 3.50mm; Vertical; threaded flange || order number: 1843240 8A 160V -phoenix_contact connector MCV_01x04_GF_3.5mm -0 -4 -4 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_4-GF-3.5_1x04_P3.50mm_Vertical_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MCV_1,5/4-GF-3.5; number of pins: 04; pin pitch: 3.50mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843240 8A 160V -phoenix_contact connector MCV_01x04_GF_3.5mm_MH -0 -4 -4 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_4-GF-3.81_1x04_P3.81mm_Vertical_ThreadedFlange -Generic Phoenix Contact connector footprint for: MCV_1,5/4-GF-3.81; number of pins: 04; pin pitch: 3.81mm; Vertical; threaded flange || order number: 1830619 8A 160V -phoenix_contact connector MCV_01x04_GF_3.81mm -0 -4 -4 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_4-GF-3.81_1x04_P3.81mm_Vertical_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MCV_1,5/4-GF-3.81; number of pins: 04; pin pitch: 3.81mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1830619 8A 160V -phoenix_contact connector MCV_01x04_GF_3.81mm_MH -0 -4 -4 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_5-G-3.5_1x05_P3.50mm_Vertical -Generic Phoenix Contact connector footprint for: MCV_1,5/5-G-3.5; number of pins: 05; pin pitch: 3.50mm; Vertical || order number: 1843635 8A 160V -phoenix_contact connector MCV_01x05_G_3.5mm -0 -5 -5 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_5-G-3.81_1x05_P3.81mm_Vertical -Generic Phoenix Contact connector footprint for: MCV_1,5/5-G-3.81; number of pins: 05; pin pitch: 3.81mm; Vertical || order number: 1803455 8A 160V -phoenix_contact connector MCV_01x05_G_3.81mm -0 -5 -5 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_5-GF-3.5_1x05_P3.50mm_Vertical_ThreadedFlange -Generic Phoenix Contact connector footprint for: MCV_1,5/5-GF-3.5; number of pins: 05; pin pitch: 3.50mm; Vertical; threaded flange || order number: 1843253 8A 160V -phoenix_contact connector MCV_01x05_GF_3.5mm -0 -5 -5 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_5-GF-3.5_1x05_P3.50mm_Vertical_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MCV_1,5/5-GF-3.5; number of pins: 05; pin pitch: 3.50mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843253 8A 160V -phoenix_contact connector MCV_01x05_GF_3.5mm_MH -0 -5 -5 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_5-GF-3.81_1x05_P3.81mm_Vertical_ThreadedFlange -Generic Phoenix Contact connector footprint for: MCV_1,5/5-GF-3.81; number of pins: 05; pin pitch: 3.81mm; Vertical; threaded flange || order number: 1830622 8A 160V -phoenix_contact connector MCV_01x05_GF_3.81mm -0 -5 -5 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_5-GF-3.81_1x05_P3.81mm_Vertical_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MCV_1,5/5-GF-3.81; number of pins: 05; pin pitch: 3.81mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1830622 8A 160V -phoenix_contact connector MCV_01x05_GF_3.81mm_MH -0 -5 -5 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_6-G-3.5_1x06_P3.50mm_Vertical -Generic Phoenix Contact connector footprint for: MCV_1,5/6-G-3.5; number of pins: 06; pin pitch: 3.50mm; Vertical || order number: 1843648 8A 160V -phoenix_contact connector MCV_01x06_G_3.5mm -0 -6 -6 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_6-G-3.81_1x06_P3.81mm_Vertical -Generic Phoenix Contact connector footprint for: MCV_1,5/6-G-3.81; number of pins: 06; pin pitch: 3.81mm; Vertical || order number: 1803468 8A 160V -phoenix_contact connector MCV_01x06_G_3.81mm -0 -6 -6 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_6-GF-3.5_1x06_P3.50mm_Vertical_ThreadedFlange -Generic Phoenix Contact connector footprint for: MCV_1,5/6-GF-3.5; number of pins: 06; pin pitch: 3.50mm; Vertical; threaded flange || order number: 1843266 8A 160V -phoenix_contact connector MCV_01x06_GF_3.5mm -0 -6 -6 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_6-GF-3.5_1x06_P3.50mm_Vertical_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MCV_1,5/6-GF-3.5; number of pins: 06; pin pitch: 3.50mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843266 8A 160V -phoenix_contact connector MCV_01x06_GF_3.5mm_MH -0 -6 -6 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_6-GF-3.81_1x06_P3.81mm_Vertical_ThreadedFlange -Generic Phoenix Contact connector footprint for: MCV_1,5/6-GF-3.81; number of pins: 06; pin pitch: 3.81mm; Vertical; threaded flange || order number: 1830635 8A 160V -phoenix_contact connector MCV_01x06_GF_3.81mm -0 -6 -6 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_6-GF-3.81_1x06_P3.81mm_Vertical_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MCV_1,5/6-GF-3.81; number of pins: 06; pin pitch: 3.81mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1830635 8A 160V -phoenix_contact connector MCV_01x06_GF_3.81mm_MH -0 -6 -6 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_7-G-3.5_1x07_P3.50mm_Vertical -Generic Phoenix Contact connector footprint for: MCV_1,5/7-G-3.5; number of pins: 07; pin pitch: 3.50mm; Vertical || order number: 1843651 8A 160V -phoenix_contact connector MCV_01x07_G_3.5mm -0 -7 -7 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_7-G-3.81_1x07_P3.81mm_Vertical -Generic Phoenix Contact connector footprint for: MCV_1,5/7-G-3.81; number of pins: 07; pin pitch: 3.81mm; Vertical || order number: 1803471 8A 160V -phoenix_contact connector MCV_01x07_G_3.81mm -0 -7 -7 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_7-GF-3.5_1x07_P3.50mm_Vertical_ThreadedFlange -Generic Phoenix Contact connector footprint for: MCV_1,5/7-GF-3.5; number of pins: 07; pin pitch: 3.50mm; Vertical; threaded flange || order number: 1843279 8A 160V -phoenix_contact connector MCV_01x07_GF_3.5mm -0 -7 -7 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_7-GF-3.5_1x07_P3.50mm_Vertical_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MCV_1,5/7-GF-3.5; number of pins: 07; pin pitch: 3.50mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843279 8A 160V -phoenix_contact connector MCV_01x07_GF_3.5mm_MH -0 -7 -7 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_7-GF-3.81_1x07_P3.81mm_Vertical_ThreadedFlange -Generic Phoenix Contact connector footprint for: MCV_1,5/7-GF-3.81; number of pins: 07; pin pitch: 3.81mm; Vertical; threaded flange || order number: 1830648 8A 160V -phoenix_contact connector MCV_01x07_GF_3.81mm -0 -7 -7 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_7-GF-3.81_1x07_P3.81mm_Vertical_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MCV_1,5/7-GF-3.81; number of pins: 07; pin pitch: 3.81mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1830648 8A 160V -phoenix_contact connector MCV_01x07_GF_3.81mm_MH -0 -7 -7 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_8-G-3.5_1x08_P3.50mm_Vertical -Generic Phoenix Contact connector footprint for: MCV_1,5/8-G-3.5; number of pins: 08; pin pitch: 3.50mm; Vertical || order number: 1843664 8A 160V -phoenix_contact connector MCV_01x08_G_3.5mm -0 -8 -8 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_8-G-3.81_1x08_P3.81mm_Vertical -Generic Phoenix Contact connector footprint for: MCV_1,5/8-G-3.81; number of pins: 08; pin pitch: 3.81mm; Vertical || order number: 1803484 8A 160V -phoenix_contact connector MCV_01x08_G_3.81mm -0 -8 -8 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_8-GF-3.5_1x08_P3.50mm_Vertical_ThreadedFlange -Generic Phoenix Contact connector footprint for: MCV_1,5/8-GF-3.5; number of pins: 08; pin pitch: 3.50mm; Vertical; threaded flange || order number: 1843282 8A 160V -phoenix_contact connector MCV_01x08_GF_3.5mm -0 -8 -8 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_8-GF-3.5_1x08_P3.50mm_Vertical_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MCV_1,5/8-GF-3.5; number of pins: 08; pin pitch: 3.50mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843282 8A 160V -phoenix_contact connector MCV_01x08_GF_3.5mm_MH -0 -8 -8 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_8-GF-3.81_1x08_P3.81mm_Vertical_ThreadedFlange -Generic Phoenix Contact connector footprint for: MCV_1,5/8-GF-3.81; number of pins: 08; pin pitch: 3.81mm; Vertical; threaded flange || order number: 1830651 8A 160V -phoenix_contact connector MCV_01x08_GF_3.81mm -0 -8 -8 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_8-GF-3.81_1x08_P3.81mm_Vertical_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MCV_1,5/8-GF-3.81; number of pins: 08; pin pitch: 3.81mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1830651 8A 160V -phoenix_contact connector MCV_01x08_GF_3.81mm_MH -0 -8 -8 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_9-G-3.5_1x09_P3.50mm_Vertical -Generic Phoenix Contact connector footprint for: MCV_1,5/9-G-3.5; number of pins: 09; pin pitch: 3.50mm; Vertical || order number: 1843677 8A 160V -phoenix_contact connector MCV_01x09_G_3.5mm -0 -9 -9 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_9-G-3.81_1x09_P3.81mm_Vertical -Generic Phoenix Contact connector footprint for: MCV_1,5/9-G-3.81; number of pins: 09; pin pitch: 3.81mm; Vertical || order number: 1803497 8A 160V -phoenix_contact connector MCV_01x09_G_3.81mm -0 -9 -9 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_9-GF-3.5_1x09_P3.50mm_Vertical_ThreadedFlange -Generic Phoenix Contact connector footprint for: MCV_1,5/9-GF-3.5; number of pins: 09; pin pitch: 3.50mm; Vertical; threaded flange || order number: 1843295 8A 160V -phoenix_contact connector MCV_01x09_GF_3.5mm -0 -9 -9 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_9-GF-3.5_1x09_P3.50mm_Vertical_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MCV_1,5/9-GF-3.5; number of pins: 09; pin pitch: 3.50mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843295 8A 160V -phoenix_contact connector MCV_01x09_GF_3.5mm_MH -0 -9 -9 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_9-GF-3.81_1x09_P3.81mm_Vertical_ThreadedFlange -Generic Phoenix Contact connector footprint for: MCV_1,5/9-GF-3.81; number of pins: 09; pin pitch: 3.81mm; Vertical; threaded flange || order number: 1830664 8A 160V -phoenix_contact connector MCV_01x09_GF_3.81mm -0 -9 -9 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_9-GF-3.81_1x09_P3.81mm_Vertical_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MCV_1,5/9-GF-3.81; number of pins: 09; pin pitch: 3.81mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1830664 8A 160V -phoenix_contact connector MCV_01x09_GF_3.81mm_MH -0 -9 -9 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_10-G-3.5_1x10_P3.50mm_Vertical -Generic Phoenix Contact connector footprint for: MCV_1,5/10-G-3.5; number of pins: 10; pin pitch: 3.50mm; Vertical || order number: 1843680 8A 160V -phoenix_contact connector MCV_01x10_G_3.5mm -0 -10 -10 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_10-G-3.81_1x10_P3.81mm_Vertical -Generic Phoenix Contact connector footprint for: MCV_1,5/10-G-3.81; number of pins: 10; pin pitch: 3.81mm; Vertical || order number: 1803507 8A 160V -phoenix_contact connector MCV_01x10_G_3.81mm -0 -10 -10 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_10-GF-3.5_1x10_P3.50mm_Vertical_ThreadedFlange -Generic Phoenix Contact connector footprint for: MCV_1,5/10-GF-3.5; number of pins: 10; pin pitch: 3.50mm; Vertical; threaded flange || order number: 1843305 8A 160V -phoenix_contact connector MCV_01x10_GF_3.5mm -0 -10 -10 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_10-GF-3.5_1x10_P3.50mm_Vertical_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MCV_1,5/10-GF-3.5; number of pins: 10; pin pitch: 3.50mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843305 8A 160V -phoenix_contact connector MCV_01x10_GF_3.5mm_MH -0 -10 -10 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_10-GF-3.81_1x10_P3.81mm_Vertical_ThreadedFlange -Generic Phoenix Contact connector footprint for: MCV_1,5/10-GF-3.81; number of pins: 10; pin pitch: 3.81mm; Vertical; threaded flange || order number: 1830677 8A 160V -phoenix_contact connector MCV_01x10_GF_3.81mm -0 -10 -10 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_10-GF-3.81_1x10_P3.81mm_Vertical_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MCV_1,5/10-GF-3.81; number of pins: 10; pin pitch: 3.81mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1830677 8A 160V -phoenix_contact connector MCV_01x10_GF_3.81mm_MH -0 -10 -10 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_11-G-3.5_1x11_P3.50mm_Vertical -Generic Phoenix Contact connector footprint for: MCV_1,5/11-G-3.5; number of pins: 11; pin pitch: 3.50mm; Vertical || order number: 1843693 8A 160V -phoenix_contact connector MCV_01x11_G_3.5mm -0 -11 -11 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_11-G-3.81_1x11_P3.81mm_Vertical -Generic Phoenix Contact connector footprint for: MCV_1,5/11-G-3.81; number of pins: 11; pin pitch: 3.81mm; Vertical || order number: 1803510 8A 160V -phoenix_contact connector MCV_01x11_G_3.81mm -0 -11 -11 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_11-GF-3.5_1x11_P3.50mm_Vertical_ThreadedFlange -Generic Phoenix Contact connector footprint for: MCV_1,5/11-GF-3.5; number of pins: 11; pin pitch: 3.50mm; Vertical; threaded flange || order number: 1843318 8A 160V -phoenix_contact connector MCV_01x11_GF_3.5mm -0 -11 -11 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_11-GF-3.5_1x11_P3.50mm_Vertical_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MCV_1,5/11-GF-3.5; number of pins: 11; pin pitch: 3.50mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843318 8A 160V -phoenix_contact connector MCV_01x11_GF_3.5mm_MH -0 -11 -11 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_11-GF-3.81_1x11_P3.81mm_Vertical_ThreadedFlange -Generic Phoenix Contact connector footprint for: MCV_1,5/11-GF-3.81; number of pins: 11; pin pitch: 3.81mm; Vertical; threaded flange || order number: 1830680 8A 160V -phoenix_contact connector MCV_01x11_GF_3.81mm -0 -11 -11 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_11-GF-3.81_1x11_P3.81mm_Vertical_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MCV_1,5/11-GF-3.81; number of pins: 11; pin pitch: 3.81mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1830680 8A 160V -phoenix_contact connector MCV_01x11_GF_3.81mm_MH -0 -11 -11 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_12-G-3.5_1x12_P3.50mm_Vertical -Generic Phoenix Contact connector footprint for: MCV_1,5/12-G-3.5; number of pins: 12; pin pitch: 3.50mm; Vertical || order number: 1843703 8A 160V -phoenix_contact connector MCV_01x12_G_3.5mm -0 -12 -12 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_12-G-3.81_1x12_P3.81mm_Vertical -Generic Phoenix Contact connector footprint for: MCV_1,5/12-G-3.81; number of pins: 12; pin pitch: 3.81mm; Vertical || order number: 1803523 8A 160V -phoenix_contact connector MCV_01x12_G_3.81mm -0 -12 -12 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_12-GF-3.5_1x12_P3.50mm_Vertical_ThreadedFlange -Generic Phoenix Contact connector footprint for: MCV_1,5/12-GF-3.5; number of pins: 12; pin pitch: 3.50mm; Vertical; threaded flange || order number: 1843321 8A 160V -phoenix_contact connector MCV_01x12_GF_3.5mm -0 -12 -12 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_12-GF-3.5_1x12_P3.50mm_Vertical_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MCV_1,5/12-GF-3.5; number of pins: 12; pin pitch: 3.50mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843321 8A 160V -phoenix_contact connector MCV_01x12_GF_3.5mm_MH -0 -12 -12 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_12-GF-3.81_1x12_P3.81mm_Vertical_ThreadedFlange -Generic Phoenix Contact connector footprint for: MCV_1,5/12-GF-3.81; number of pins: 12; pin pitch: 3.81mm; Vertical; threaded flange || order number: 1830693 8A 160V -phoenix_contact connector MCV_01x12_GF_3.81mm -0 -12 -12 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_12-GF-3.81_1x12_P3.81mm_Vertical_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MCV_1,5/12-GF-3.81; number of pins: 12; pin pitch: 3.81mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1830693 8A 160V -phoenix_contact connector MCV_01x12_GF_3.81mm_MH -0 -12 -12 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_13-G-3.5_1x13_P3.50mm_Vertical -Generic Phoenix Contact connector footprint for: MCV_1,5/13-G-3.5; number of pins: 13; pin pitch: 3.50mm; Vertical || order number: 1843716 8A 160V -phoenix_contact connector MCV_01x13_G_3.5mm -0 -13 -13 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_13-G-3.81_1x13_P3.81mm_Vertical -Generic Phoenix Contact connector footprint for: MCV_1,5/13-G-3.81; number of pins: 13; pin pitch: 3.81mm; Vertical || order number: 1803536 8A 160V -phoenix_contact connector MCV_01x13_G_3.81mm -0 -13 -13 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_13-GF-3.5_1x13_P3.50mm_Vertical_ThreadedFlange -Generic Phoenix Contact connector footprint for: MCV_1,5/13-GF-3.5; number of pins: 13; pin pitch: 3.50mm; Vertical; threaded flange || order number: 1843334 8A 160V -phoenix_contact connector MCV_01x13_GF_3.5mm -0 -13 -13 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_13-GF-3.5_1x13_P3.50mm_Vertical_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MCV_1,5/13-GF-3.5; number of pins: 13; pin pitch: 3.50mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843334 8A 160V -phoenix_contact connector MCV_01x13_GF_3.5mm_MH -0 -13 -13 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_13-GF-3.81_1x13_P3.81mm_Vertical_ThreadedFlange -Generic Phoenix Contact connector footprint for: MCV_1,5/13-GF-3.81; number of pins: 13; pin pitch: 3.81mm; Vertical; threaded flange || order number: 1830703 8A 160V -phoenix_contact connector MCV_01x13_GF_3.81mm -0 -13 -13 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_13-GF-3.81_1x13_P3.81mm_Vertical_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MCV_1,5/13-GF-3.81; number of pins: 13; pin pitch: 3.81mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1830703 8A 160V -phoenix_contact connector MCV_01x13_GF_3.81mm_MH -0 -13 -13 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_14-G-3.5_1x14_P3.50mm_Vertical -Generic Phoenix Contact connector footprint for: MCV_1,5/14-G-3.5; number of pins: 14; pin pitch: 3.50mm; Vertical || order number: 1843729 8A 160V -phoenix_contact connector MCV_01x14_G_3.5mm -0 -14 -14 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_14-G-3.81_1x14_P3.81mm_Vertical -Generic Phoenix Contact connector footprint for: MCV_1,5/14-G-3.81; number of pins: 14; pin pitch: 3.81mm; Vertical || order number: 1803549 8A 160V -phoenix_contact connector MCV_01x14_G_3.81mm -0 -14 -14 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_14-GF-3.5_1x14_P3.50mm_Vertical_ThreadedFlange -Generic Phoenix Contact connector footprint for: MCV_1,5/14-GF-3.5; number of pins: 14; pin pitch: 3.50mm; Vertical; threaded flange || order number: 1843347 8A 160V -phoenix_contact connector MCV_01x14_GF_3.5mm -0 -14 -14 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_14-GF-3.5_1x14_P3.50mm_Vertical_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MCV_1,5/14-GF-3.5; number of pins: 14; pin pitch: 3.50mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843347 8A 160V -phoenix_contact connector MCV_01x14_GF_3.5mm_MH -0 -14 -14 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_14-GF-3.81_1x14_P3.81mm_Vertical_ThreadedFlange -Generic Phoenix Contact connector footprint for: MCV_1,5/14-GF-3.81; number of pins: 14; pin pitch: 3.81mm; Vertical; threaded flange || order number: 1830716 8A 160V -phoenix_contact connector MCV_01x14_GF_3.81mm -0 -14 -14 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_14-GF-3.81_1x14_P3.81mm_Vertical_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MCV_1,5/14-GF-3.81; number of pins: 14; pin pitch: 3.81mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1830716 8A 160V -phoenix_contact connector MCV_01x14_GF_3.81mm_MH -0 -14 -14 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_15-G-3.5_1x15_P3.50mm_Vertical -Generic Phoenix Contact connector footprint for: MCV_1,5/15-G-3.5; number of pins: 15; pin pitch: 3.50mm; Vertical || order number: 1843732 8A 160V -phoenix_contact connector MCV_01x15_G_3.5mm -0 -15 -15 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_15-G-3.81_1x15_P3.81mm_Vertical -Generic Phoenix Contact connector footprint for: MCV_1,5/15-G-3.81; number of pins: 15; pin pitch: 3.81mm; Vertical || order number: 1803552 8A 160V -phoenix_contact connector MCV_01x15_G_3.81mm -0 -15 -15 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_15-GF-3.5_1x15_P3.50mm_Vertical_ThreadedFlange -Generic Phoenix Contact connector footprint for: MCV_1,5/15-GF-3.5; number of pins: 15; pin pitch: 3.50mm; Vertical; threaded flange || order number: 1843350 8A 160V -phoenix_contact connector MCV_01x15_GF_3.5mm -0 -15 -15 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_15-GF-3.5_1x15_P3.50mm_Vertical_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MCV_1,5/15-GF-3.5; number of pins: 15; pin pitch: 3.50mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843350 8A 160V -phoenix_contact connector MCV_01x15_GF_3.5mm_MH -0 -15 -15 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_15-GF-3.81_1x15_P3.81mm_Vertical_ThreadedFlange -Generic Phoenix Contact connector footprint for: MCV_1,5/15-GF-3.81; number of pins: 15; pin pitch: 3.81mm; Vertical; threaded flange || order number: 1830729 8A 160V -phoenix_contact connector MCV_01x15_GF_3.81mm -0 -15 -15 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_15-GF-3.81_1x15_P3.81mm_Vertical_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MCV_1,5/15-GF-3.81; number of pins: 15; pin pitch: 3.81mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1830729 8A 160V -phoenix_contact connector MCV_01x15_GF_3.81mm_MH -0 -15 -15 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_16-G-3.5_1x16_P3.50mm_Vertical -Generic Phoenix Contact connector footprint for: MCV_1,5/16-G-3.5; number of pins: 16; pin pitch: 3.50mm; Vertical || order number: 1843745 8A 160V -phoenix_contact connector MCV_01x16_G_3.5mm -0 -16 -16 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_16-G-3.81_1x16_P3.81mm_Vertical -Generic Phoenix Contact connector footprint for: MCV_1,5/16-G-3.81; number of pins: 16; pin pitch: 3.81mm; Vertical || order number: 1803565 8A 160V -phoenix_contact connector MCV_01x16_G_3.81mm -0 -16 -16 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_16-GF-3.5_1x16_P3.50mm_Vertical_ThreadedFlange -Generic Phoenix Contact connector footprint for: MCV_1,5/16-GF-3.5; number of pins: 16; pin pitch: 3.50mm; Vertical; threaded flange || order number: 1843363 8A 160V -phoenix_contact connector MCV_01x16_GF_3.5mm -0 -16 -16 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_16-GF-3.5_1x16_P3.50mm_Vertical_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MCV_1,5/16-GF-3.5; number of pins: 16; pin pitch: 3.50mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843363 8A 160V -phoenix_contact connector MCV_01x16_GF_3.5mm_MH -0 -16 -16 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_16-GF-3.81_1x16_P3.81mm_Vertical_ThreadedFlange -Generic Phoenix Contact connector footprint for: MCV_1,5/16-GF-3.81; number of pins: 16; pin pitch: 3.81mm; Vertical; threaded flange || order number: 1830732 8A 160V -phoenix_contact connector MCV_01x16_GF_3.81mm -0 -16 -16 -Connector_Phoenix_MC -PhoenixContact_MCV_1,5_16-GF-3.81_1x16_P3.81mm_Vertical_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MCV_1,5/16-GF-3.81; number of pins: 16; pin pitch: 3.81mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1830732 8A 160V -phoenix_contact connector MCV_01x16_GF_3.81mm_MH -0 -16 -16 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_2-G-3.5_1x02_P3.50mm_Horizontal -Generic Phoenix Contact connector footprint for: MC_1,5/2-G-3.5; number of pins: 02; pin pitch: 3.50mm; Angled || order number: 1844210 8A 160V -phoenix_contact connector MC_01x02_G_3.5mm -0 -2 -2 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_2-G-3.81_1x02_P3.81mm_Horizontal -Generic Phoenix Contact connector footprint for: MC_1,5/2-G-3.81; number of pins: 02; pin pitch: 3.81mm; Angled || order number: 1803277 8A 160V -phoenix_contact connector MC_01x02_G_3.81mm -0 -2 -2 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_2-GF-3.5_1x02_P3.50mm_Horizontal_ThreadedFlange -Generic Phoenix Contact connector footprint for: MC_1,5/2-GF-3.5; number of pins: 02; pin pitch: 3.50mm; Angled; threaded flange || order number: 1843790 8A 160V -phoenix_contact connector MC_01x02_GF_3.5mm -0 -2 -2 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_2-GF-3.5_1x02_P3.50mm_Horizontal_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MC_1,5/2-GF-3.5; number of pins: 02; pin pitch: 3.50mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843790 8A 160V -phoenix_contact connector MC_01x02_GF_3.5mm_MH -0 -2 -2 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_2-GF-3.81_1x02_P3.81mm_Horizontal_ThreadedFlange -Generic Phoenix Contact connector footprint for: MC_1,5/2-GF-3.81; number of pins: 02; pin pitch: 3.81mm; Angled; threaded flange || order number: 1827868 8A 160V -phoenix_contact connector MC_01x02_GF_3.81mm -0 -2 -2 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_2-GF-3.81_1x02_P3.81mm_Horizontal_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MC_1,5/2-GF-3.81; number of pins: 02; pin pitch: 3.81mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1827868 8A 160V -phoenix_contact connector MC_01x02_GF_3.81mm_MH -0 -2 -2 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_3-G-3.5_1x03_P3.50mm_Horizontal -Generic Phoenix Contact connector footprint for: MC_1,5/3-G-3.5; number of pins: 03; pin pitch: 3.50mm; Angled || order number: 1844223 8A 160V -phoenix_contact connector MC_01x03_G_3.5mm -0 -3 -3 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_3-G-3.81_1x03_P3.81mm_Horizontal -Generic Phoenix Contact connector footprint for: MC_1,5/3-G-3.81; number of pins: 03; pin pitch: 3.81mm; Angled || order number: 1803280 8A 160V -phoenix_contact connector MC_01x03_G_3.81mm -0 -3 -3 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_3-GF-3.5_1x03_P3.50mm_Horizontal_ThreadedFlange -Generic Phoenix Contact connector footprint for: MC_1,5/3-GF-3.5; number of pins: 03; pin pitch: 3.50mm; Angled; threaded flange || order number: 1843800 8A 160V -phoenix_contact connector MC_01x03_GF_3.5mm -0 -3 -3 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_3-GF-3.5_1x03_P3.50mm_Horizontal_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MC_1,5/3-GF-3.5; number of pins: 03; pin pitch: 3.50mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843800 8A 160V -phoenix_contact connector MC_01x03_GF_3.5mm_MH -0 -3 -3 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_3-GF-3.81_1x03_P3.81mm_Horizontal_ThreadedFlange -Generic Phoenix Contact connector footprint for: MC_1,5/3-GF-3.81; number of pins: 03; pin pitch: 3.81mm; Angled; threaded flange || order number: 1827871 8A 160V -phoenix_contact connector MC_01x03_GF_3.81mm -0 -3 -3 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_3-GF-3.81_1x03_P3.81mm_Horizontal_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MC_1,5/3-GF-3.81; number of pins: 03; pin pitch: 3.81mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1827871 8A 160V -phoenix_contact connector MC_01x03_GF_3.81mm_MH -0 -3 -3 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_4-G-3.5_1x04_P3.50mm_Horizontal -Generic Phoenix Contact connector footprint for: MC_1,5/4-G-3.5; number of pins: 04; pin pitch: 3.50mm; Angled || order number: 1844236 8A 160V -phoenix_contact connector MC_01x04_G_3.5mm -0 -4 -4 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_4-G-3.81_1x04_P3.81mm_Horizontal -Generic Phoenix Contact connector footprint for: MC_1,5/4-G-3.81; number of pins: 04; pin pitch: 3.81mm; Angled || order number: 1803293 8A 160V -phoenix_contact connector MC_01x04_G_3.81mm -0 -4 -4 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_4-GF-3.5_1x04_P3.50mm_Horizontal_ThreadedFlange -Generic Phoenix Contact connector footprint for: MC_1,5/4-GF-3.5; number of pins: 04; pin pitch: 3.50mm; Angled; threaded flange || order number: 1843813 8A 160V -phoenix_contact connector MC_01x04_GF_3.5mm -0 -4 -4 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_4-GF-3.5_1x04_P3.50mm_Horizontal_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MC_1,5/4-GF-3.5; number of pins: 04; pin pitch: 3.50mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843813 8A 160V -phoenix_contact connector MC_01x04_GF_3.5mm_MH -0 -4 -4 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_4-GF-3.81_1x04_P3.81mm_Horizontal_ThreadedFlange -Generic Phoenix Contact connector footprint for: MC_1,5/4-GF-3.81; number of pins: 04; pin pitch: 3.81mm; Angled; threaded flange || order number: 1827884 8A 160V -phoenix_contact connector MC_01x04_GF_3.81mm -0 -4 -4 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_4-GF-3.81_1x04_P3.81mm_Horizontal_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MC_1,5/4-GF-3.81; number of pins: 04; pin pitch: 3.81mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1827884 8A 160V -phoenix_contact connector MC_01x04_GF_3.81mm_MH -0 -4 -4 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_5-G-3.5_1x05_P3.50mm_Horizontal -Generic Phoenix Contact connector footprint for: MC_1,5/5-G-3.5; number of pins: 05; pin pitch: 3.50mm; Angled || order number: 1844249 8A 160V -phoenix_contact connector MC_01x05_G_3.5mm -0 -5 -5 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_5-G-3.81_1x05_P3.81mm_Horizontal -Generic Phoenix Contact connector footprint for: MC_1,5/5-G-3.81; number of pins: 05; pin pitch: 3.81mm; Angled || order number: 1803303 8A 160V -phoenix_contact connector MC_01x05_G_3.81mm -0 -5 -5 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_5-GF-3.5_1x05_P3.50mm_Horizontal_ThreadedFlange -Generic Phoenix Contact connector footprint for: MC_1,5/5-GF-3.5; number of pins: 05; pin pitch: 3.50mm; Angled; threaded flange || order number: 1843826 8A 160V -phoenix_contact connector MC_01x05_GF_3.5mm -0 -5 -5 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_5-GF-3.5_1x05_P3.50mm_Horizontal_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MC_1,5/5-GF-3.5; number of pins: 05; pin pitch: 3.50mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843826 8A 160V -phoenix_contact connector MC_01x05_GF_3.5mm_MH -0 -5 -5 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_5-GF-3.81_1x05_P3.81mm_Horizontal_ThreadedFlange -Generic Phoenix Contact connector footprint for: MC_1,5/5-GF-3.81; number of pins: 05; pin pitch: 3.81mm; Angled; threaded flange || order number: 1827897 8A 160V -phoenix_contact connector MC_01x05_GF_3.81mm -0 -5 -5 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_5-GF-3.81_1x05_P3.81mm_Horizontal_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MC_1,5/5-GF-3.81; number of pins: 05; pin pitch: 3.81mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1827897 8A 160V -phoenix_contact connector MC_01x05_GF_3.81mm_MH -0 -5 -5 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_6-G-3.5_1x06_P3.50mm_Horizontal -Generic Phoenix Contact connector footprint for: MC_1,5/6-G-3.5; number of pins: 06; pin pitch: 3.50mm; Angled || order number: 1844252 8A 160V -phoenix_contact connector MC_01x06_G_3.5mm -0 -6 -6 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_6-G-3.81_1x06_P3.81mm_Horizontal -Generic Phoenix Contact connector footprint for: MC_1,5/6-G-3.81; number of pins: 06; pin pitch: 3.81mm; Angled || order number: 1803316 8A 160V -phoenix_contact connector MC_01x06_G_3.81mm -0 -6 -6 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_6-GF-3.5_1x06_P3.50mm_Horizontal_ThreadedFlange -Generic Phoenix Contact connector footprint for: MC_1,5/6-GF-3.5; number of pins: 06; pin pitch: 3.50mm; Angled; threaded flange || order number: 1843839 8A 160V -phoenix_contact connector MC_01x06_GF_3.5mm -0 -6 -6 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_6-GF-3.5_1x06_P3.50mm_Horizontal_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MC_1,5/6-GF-3.5; number of pins: 06; pin pitch: 3.50mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843839 8A 160V -phoenix_contact connector MC_01x06_GF_3.5mm_MH -0 -6 -6 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_6-GF-3.81_1x06_P3.81mm_Horizontal_ThreadedFlange -Generic Phoenix Contact connector footprint for: MC_1,5/6-GF-3.81; number of pins: 06; pin pitch: 3.81mm; Angled; threaded flange || order number: 1827907 8A 160V -phoenix_contact connector MC_01x06_GF_3.81mm -0 -6 -6 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_6-GF-3.81_1x06_P3.81mm_Horizontal_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MC_1,5/6-GF-3.81; number of pins: 06; pin pitch: 3.81mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1827907 8A 160V -phoenix_contact connector MC_01x06_GF_3.81mm_MH -0 -6 -6 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_7-G-3.5_1x07_P3.50mm_Horizontal -Generic Phoenix Contact connector footprint for: MC_1,5/7-G-3.5; number of pins: 07; pin pitch: 3.50mm; Angled || order number: 1844265 8A 160V -phoenix_contact connector MC_01x07_G_3.5mm -0 -7 -7 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_7-G-3.81_1x07_P3.81mm_Horizontal -Generic Phoenix Contact connector footprint for: MC_1,5/7-G-3.81; number of pins: 07; pin pitch: 3.81mm; Angled || order number: 1803329 8A 160V -phoenix_contact connector MC_01x07_G_3.81mm -0 -7 -7 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_7-GF-3.5_1x07_P3.50mm_Horizontal_ThreadedFlange -Generic Phoenix Contact connector footprint for: MC_1,5/7-GF-3.5; number of pins: 07; pin pitch: 3.50mm; Angled; threaded flange || order number: 1843842 8A 160V -phoenix_contact connector MC_01x07_GF_3.5mm -0 -7 -7 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_7-GF-3.5_1x07_P3.50mm_Horizontal_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MC_1,5/7-GF-3.5; number of pins: 07; pin pitch: 3.50mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843842 8A 160V -phoenix_contact connector MC_01x07_GF_3.5mm_MH -0 -7 -7 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_7-GF-3.81_1x07_P3.81mm_Horizontal_ThreadedFlange -Generic Phoenix Contact connector footprint for: MC_1,5/7-GF-3.81; number of pins: 07; pin pitch: 3.81mm; Angled; threaded flange || order number: 1827910 8A 160V -phoenix_contact connector MC_01x07_GF_3.81mm -0 -7 -7 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_7-GF-3.81_1x07_P3.81mm_Horizontal_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MC_1,5/7-GF-3.81; number of pins: 07; pin pitch: 3.81mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1827910 8A 160V -phoenix_contact connector MC_01x07_GF_3.81mm_MH -0 -7 -7 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_8-G-3.5_1x08_P3.50mm_Horizontal -Generic Phoenix Contact connector footprint for: MC_1,5/8-G-3.5; number of pins: 08; pin pitch: 3.50mm; Angled || order number: 1844278 8A 160V -phoenix_contact connector MC_01x08_G_3.5mm -0 -8 -8 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_8-G-3.81_1x08_P3.81mm_Horizontal -Generic Phoenix Contact connector footprint for: MC_1,5/8-G-3.81; number of pins: 08; pin pitch: 3.81mm; Angled || order number: 1803332 8A 160V -phoenix_contact connector MC_01x08_G_3.81mm -0 -8 -8 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_8-GF-3.5_1x08_P3.50mm_Horizontal_ThreadedFlange -Generic Phoenix Contact connector footprint for: MC_1,5/8-GF-3.5; number of pins: 08; pin pitch: 3.50mm; Angled; threaded flange || order number: 1843855 8A 160V -phoenix_contact connector MC_01x08_GF_3.5mm -0 -8 -8 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_8-GF-3.5_1x08_P3.50mm_Horizontal_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MC_1,5/8-GF-3.5; number of pins: 08; pin pitch: 3.50mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843855 8A 160V -phoenix_contact connector MC_01x08_GF_3.5mm_MH -0 -8 -8 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_8-GF-3.81_1x08_P3.81mm_Horizontal_ThreadedFlange -Generic Phoenix Contact connector footprint for: MC_1,5/8-GF-3.81; number of pins: 08; pin pitch: 3.81mm; Angled; threaded flange || order number: 1827923 8A 160V -phoenix_contact connector MC_01x08_GF_3.81mm -0 -8 -8 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_8-GF-3.81_1x08_P3.81mm_Horizontal_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MC_1,5/8-GF-3.81; number of pins: 08; pin pitch: 3.81mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1827923 8A 160V -phoenix_contact connector MC_01x08_GF_3.81mm_MH -0 -8 -8 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_9-G-3.5_1x09_P3.50mm_Horizontal -Generic Phoenix Contact connector footprint for: MC_1,5/9-G-3.5; number of pins: 09; pin pitch: 3.50mm; Angled || order number: 1844281 8A 160V -phoenix_contact connector MC_01x09_G_3.5mm -0 -9 -9 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_9-G-3.81_1x09_P3.81mm_Horizontal -Generic Phoenix Contact connector footprint for: MC_1,5/9-G-3.81; number of pins: 09; pin pitch: 3.81mm; Angled || order number: 1803345 8A 160V -phoenix_contact connector MC_01x09_G_3.81mm -0 -9 -9 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_9-GF-3.5_1x09_P3.50mm_Horizontal_ThreadedFlange -Generic Phoenix Contact connector footprint for: MC_1,5/9-GF-3.5; number of pins: 09; pin pitch: 3.50mm; Angled; threaded flange || order number: 1843868 8A 160V -phoenix_contact connector MC_01x09_GF_3.5mm -0 -9 -9 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_9-GF-3.5_1x09_P3.50mm_Horizontal_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MC_1,5/9-GF-3.5; number of pins: 09; pin pitch: 3.50mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843868 8A 160V -phoenix_contact connector MC_01x09_GF_3.5mm_MH -0 -9 -9 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_9-GF-3.81_1x09_P3.81mm_Horizontal_ThreadedFlange -Generic Phoenix Contact connector footprint for: MC_1,5/9-GF-3.81; number of pins: 09; pin pitch: 3.81mm; Angled; threaded flange || order number: 1827936 8A 160V -phoenix_contact connector MC_01x09_GF_3.81mm -0 -9 -9 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_9-GF-3.81_1x09_P3.81mm_Horizontal_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MC_1,5/9-GF-3.81; number of pins: 09; pin pitch: 3.81mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1827936 8A 160V -phoenix_contact connector MC_01x09_GF_3.81mm_MH -0 -9 -9 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_10-G-3.5_1x10_P3.50mm_Horizontal -Generic Phoenix Contact connector footprint for: MC_1,5/10-G-3.5; number of pins: 10; pin pitch: 3.50mm; Angled || order number: 1844294 8A 160V -phoenix_contact connector MC_01x10_G_3.5mm -0 -10 -10 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_10-G-3.81_1x10_P3.81mm_Horizontal -Generic Phoenix Contact connector footprint for: MC_1,5/10-G-3.81; number of pins: 10; pin pitch: 3.81mm; Angled || order number: 1803358 8A 160V -phoenix_contact connector MC_01x10_G_3.81mm -0 -10 -10 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_10-GF-3.5_1x10_P3.50mm_Horizontal_ThreadedFlange -Generic Phoenix Contact connector footprint for: MC_1,5/10-GF-3.5; number of pins: 10; pin pitch: 3.50mm; Angled; threaded flange || order number: 1843871 8A 160V -phoenix_contact connector MC_01x10_GF_3.5mm -0 -10 -10 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_10-GF-3.5_1x10_P3.50mm_Horizontal_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MC_1,5/10-GF-3.5; number of pins: 10; pin pitch: 3.50mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843871 8A 160V -phoenix_contact connector MC_01x10_GF_3.5mm_MH -0 -10 -10 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_10-GF-3.81_1x10_P3.81mm_Horizontal_ThreadedFlange -Generic Phoenix Contact connector footprint for: MC_1,5/10-GF-3.81; number of pins: 10; pin pitch: 3.81mm; Angled; threaded flange || order number: 1827949 8A 160V -phoenix_contact connector MC_01x10_GF_3.81mm -0 -10 -10 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_10-GF-3.81_1x10_P3.81mm_Horizontal_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MC_1,5/10-GF-3.81; number of pins: 10; pin pitch: 3.81mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1827949 8A 160V -phoenix_contact connector MC_01x10_GF_3.81mm_MH -0 -10 -10 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_11-G-3.5_1x11_P3.50mm_Horizontal -Generic Phoenix Contact connector footprint for: MC_1,5/11-G-3.5; number of pins: 11; pin pitch: 3.50mm; Angled || order number: 1844304 8A 160V -phoenix_contact connector MC_01x11_G_3.5mm -0 -11 -11 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_11-G-3.81_1x11_P3.81mm_Horizontal -Generic Phoenix Contact connector footprint for: MC_1,5/11-G-3.81; number of pins: 11; pin pitch: 3.81mm; Angled || order number: 1803361 8A 160V -phoenix_contact connector MC_01x11_G_3.81mm -0 -11 -11 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_11-GF-3.5_1x11_P3.50mm_Horizontal_ThreadedFlange -Generic Phoenix Contact connector footprint for: MC_1,5/11-GF-3.5; number of pins: 11; pin pitch: 3.50mm; Angled; threaded flange || order number: 1843884 8A 160V -phoenix_contact connector MC_01x11_GF_3.5mm -0 -11 -11 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_11-GF-3.5_1x11_P3.50mm_Horizontal_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MC_1,5/11-GF-3.5; number of pins: 11; pin pitch: 3.50mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843884 8A 160V -phoenix_contact connector MC_01x11_GF_3.5mm_MH -0 -11 -11 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_11-GF-3.81_1x11_P3.81mm_Horizontal_ThreadedFlange -Generic Phoenix Contact connector footprint for: MC_1,5/11-GF-3.81; number of pins: 11; pin pitch: 3.81mm; Angled; threaded flange || order number: 1827952 8A 160V -phoenix_contact connector MC_01x11_GF_3.81mm -0 -11 -11 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_11-GF-3.81_1x11_P3.81mm_Horizontal_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MC_1,5/11-GF-3.81; number of pins: 11; pin pitch: 3.81mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1827952 8A 160V -phoenix_contact connector MC_01x11_GF_3.81mm_MH -0 -11 -11 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_12-G-3.5_1x12_P3.50mm_Horizontal -Generic Phoenix Contact connector footprint for: MC_1,5/12-G-3.5; number of pins: 12; pin pitch: 3.50mm; Angled || order number: 1844317 8A 160V -phoenix_contact connector MC_01x12_G_3.5mm -0 -12 -12 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_12-G-3.81_1x12_P3.81mm_Horizontal -Generic Phoenix Contact connector footprint for: MC_1,5/12-G-3.81; number of pins: 12; pin pitch: 3.81mm; Angled || order number: 1803374 8A 160V -phoenix_contact connector MC_01x12_G_3.81mm -0 -12 -12 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_12-GF-3.5_1x12_P3.50mm_Horizontal_ThreadedFlange -Generic Phoenix Contact connector footprint for: MC_1,5/12-GF-3.5; number of pins: 12; pin pitch: 3.50mm; Angled; threaded flange || order number: 1843897 8A 160V -phoenix_contact connector MC_01x12_GF_3.5mm -0 -12 -12 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_12-GF-3.5_1x12_P3.50mm_Horizontal_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MC_1,5/12-GF-3.5; number of pins: 12; pin pitch: 3.50mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843897 8A 160V -phoenix_contact connector MC_01x12_GF_3.5mm_MH -0 -12 -12 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_12-GF-3.81_1x12_P3.81mm_Horizontal_ThreadedFlange -Generic Phoenix Contact connector footprint for: MC_1,5/12-GF-3.81; number of pins: 12; pin pitch: 3.81mm; Angled; threaded flange || order number: 1827965 8A 160V -phoenix_contact connector MC_01x12_GF_3.81mm -0 -12 -12 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_12-GF-3.81_1x12_P3.81mm_Horizontal_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MC_1,5/12-GF-3.81; number of pins: 12; pin pitch: 3.81mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1827965 8A 160V -phoenix_contact connector MC_01x12_GF_3.81mm_MH -0 -12 -12 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_13-G-3.5_1x13_P3.50mm_Horizontal -Generic Phoenix Contact connector footprint for: MC_1,5/13-G-3.5; number of pins: 13; pin pitch: 3.50mm; Angled || order number: 1844320 8A 160V -phoenix_contact connector MC_01x13_G_3.5mm -0 -13 -13 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_13-G-3.81_1x13_P3.81mm_Horizontal -Generic Phoenix Contact connector footprint for: MC_1,5/13-G-3.81; number of pins: 13; pin pitch: 3.81mm; Angled || order number: 1803387 8A 160V -phoenix_contact connector MC_01x13_G_3.81mm -0 -13 -13 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_13-GF-3.5_1x13_P3.50mm_Horizontal_ThreadedFlange -Generic Phoenix Contact connector footprint for: MC_1,5/13-GF-3.5; number of pins: 13; pin pitch: 3.50mm; Angled; threaded flange || order number: 1843907 8A 160V -phoenix_contact connector MC_01x13_GF_3.5mm -0 -13 -13 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_13-GF-3.5_1x13_P3.50mm_Horizontal_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MC_1,5/13-GF-3.5; number of pins: 13; pin pitch: 3.50mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843907 8A 160V -phoenix_contact connector MC_01x13_GF_3.5mm_MH -0 -13 -13 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_13-GF-3.81_1x13_P3.81mm_Horizontal_ThreadedFlange -Generic Phoenix Contact connector footprint for: MC_1,5/13-GF-3.81; number of pins: 13; pin pitch: 3.81mm; Angled; threaded flange || order number: 1827978 8A 160V -phoenix_contact connector MC_01x13_GF_3.81mm -0 -13 -13 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_13-GF-3.81_1x13_P3.81mm_Horizontal_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MC_1,5/13-GF-3.81; number of pins: 13; pin pitch: 3.81mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1827978 8A 160V -phoenix_contact connector MC_01x13_GF_3.81mm_MH -0 -13 -13 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_14-G-3.5_1x14_P3.50mm_Horizontal -Generic Phoenix Contact connector footprint for: MC_1,5/14-G-3.5; number of pins: 14; pin pitch: 3.50mm; Angled || order number: 1844333 8A 160V -phoenix_contact connector MC_01x14_G_3.5mm -0 -14 -14 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_14-G-3.81_1x14_P3.81mm_Horizontal -Generic Phoenix Contact connector footprint for: MC_1,5/14-G-3.81; number of pins: 14; pin pitch: 3.81mm; Angled || order number: 1803390 8A 160V -phoenix_contact connector MC_01x14_G_3.81mm -0 -14 -14 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_14-GF-3.5_1x14_P3.50mm_Horizontal_ThreadedFlange -Generic Phoenix Contact connector footprint for: MC_1,5/14-GF-3.5; number of pins: 14; pin pitch: 3.50mm; Angled; threaded flange || order number: 1843910 8A 160V -phoenix_contact connector MC_01x14_GF_3.5mm -0 -14 -14 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_14-GF-3.5_1x14_P3.50mm_Horizontal_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MC_1,5/14-GF-3.5; number of pins: 14; pin pitch: 3.50mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843910 8A 160V -phoenix_contact connector MC_01x14_GF_3.5mm_MH -0 -14 -14 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_14-GF-3.81_1x14_P3.81mm_Horizontal_ThreadedFlange -Generic Phoenix Contact connector footprint for: MC_1,5/14-GF-3.81; number of pins: 14; pin pitch: 3.81mm; Angled; threaded flange || order number: 1827981 8A 160V -phoenix_contact connector MC_01x14_GF_3.81mm -0 -14 -14 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_14-GF-3.81_1x14_P3.81mm_Horizontal_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MC_1,5/14-GF-3.81; number of pins: 14; pin pitch: 3.81mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1827981 8A 160V -phoenix_contact connector MC_01x14_GF_3.81mm_MH -0 -14 -14 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_15-G-3.5_1x15_P3.50mm_Horizontal -Generic Phoenix Contact connector footprint for: MC_1,5/15-G-3.5; number of pins: 15; pin pitch: 3.50mm; Angled || order number: 1844346 8A 160V -phoenix_contact connector MC_01x15_G_3.5mm -0 -15 -15 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_15-G-3.81_1x15_P3.81mm_Horizontal -Generic Phoenix Contact connector footprint for: MC_1,5/15-G-3.81; number of pins: 15; pin pitch: 3.81mm; Angled || order number: 1803400 8A 160V -phoenix_contact connector MC_01x15_G_3.81mm -0 -15 -15 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_15-GF-3.5_1x15_P3.50mm_Horizontal_ThreadedFlange -Generic Phoenix Contact connector footprint for: MC_1,5/15-GF-3.5; number of pins: 15; pin pitch: 3.50mm; Angled; threaded flange || order number: 1843923 8A 160V -phoenix_contact connector MC_01x15_GF_3.5mm -0 -15 -15 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_15-GF-3.5_1x15_P3.50mm_Horizontal_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MC_1,5/15-GF-3.5; number of pins: 15; pin pitch: 3.50mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843923 8A 160V -phoenix_contact connector MC_01x15_GF_3.5mm_MH -0 -15 -15 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_15-GF-3.81_1x15_P3.81mm_Horizontal_ThreadedFlange -Generic Phoenix Contact connector footprint for: MC_1,5/15-GF-3.81; number of pins: 15; pin pitch: 3.81mm; Angled; threaded flange || order number: 1827994 8A 160V -phoenix_contact connector MC_01x15_GF_3.81mm -0 -15 -15 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_15-GF-3.81_1x15_P3.81mm_Horizontal_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MC_1,5/15-GF-3.81; number of pins: 15; pin pitch: 3.81mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1827994 8A 160V -phoenix_contact connector MC_01x15_GF_3.81mm_MH -0 -15 -15 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_16-G-3.5_1x16_P3.50mm_Horizontal -Generic Phoenix Contact connector footprint for: MC_1,5/16-G-3.5; number of pins: 16; pin pitch: 3.50mm; Angled || order number: 1844359 8A 160V -phoenix_contact connector MC_01x16_G_3.5mm -0 -16 -16 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_16-G-3.81_1x16_P3.81mm_Horizontal -Generic Phoenix Contact connector footprint for: MC_1,5/16-G-3.81; number of pins: 16; pin pitch: 3.81mm; Angled || order number: 1803413 8A 160V -phoenix_contact connector MC_01x16_G_3.81mm -0 -16 -16 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_16-GF-3.5_1x16_P3.50mm_Horizontal_ThreadedFlange -Generic Phoenix Contact connector footprint for: MC_1,5/16-GF-3.5; number of pins: 16; pin pitch: 3.50mm; Angled; threaded flange || order number: 1843936 8A 160V -phoenix_contact connector MC_01x16_GF_3.5mm -0 -16 -16 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_16-GF-3.5_1x16_P3.50mm_Horizontal_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MC_1,5/16-GF-3.5; number of pins: 16; pin pitch: 3.50mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1843936 8A 160V -phoenix_contact connector MC_01x16_GF_3.5mm_MH -0 -16 -16 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_16-GF-3.81_1x16_P3.81mm_Horizontal_ThreadedFlange -Generic Phoenix Contact connector footprint for: MC_1,5/16-GF-3.81; number of pins: 16; pin pitch: 3.81mm; Angled; threaded flange || order number: 1828003 8A 160V -phoenix_contact connector MC_01x16_GF_3.81mm -0 -16 -16 -Connector_Phoenix_MC -PhoenixContact_MC_1,5_16-GF-3.81_1x16_P3.81mm_Horizontal_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MC_1,5/16-GF-3.81; number of pins: 16; pin pitch: 3.81mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1828003 8A 160V -phoenix_contact connector MC_01x16_GF_3.81mm_MH -0 -16 -16 -Connector_Phoenix_MC_HighVoltage -PhoenixContact_MCV_1,5_2-G-5.08_1x02_P5.08mm_Vertical -Generic Phoenix Contact connector footprint for: MCV_1,5/2-G-5.08; number of pins: 02; pin pitch: 5.08mm; Vertical || order number: 1836299 8A 320V -phoenix_contact connector MCV_01x02_G_5.08mm -0 -2 -2 -Connector_Phoenix_MC_HighVoltage -PhoenixContact_MCV_1,5_2-GF-5.08_1x02_P5.08mm_Vertical_ThreadedFlange -Generic Phoenix Contact connector footprint for: MCV_1,5/2-GF-5.08; number of pins: 02; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1847615 8A 320V -phoenix_contact connector MCV_01x02_GF_5.08mm -0 -2 -2 -Connector_Phoenix_MC_HighVoltage -PhoenixContact_MCV_1,5_2-GF-5.08_1x02_P5.08mm_Vertical_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MCV_1,5/2-GF-5.08; number of pins: 02; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847615 8A 320V -phoenix_contact connector MCV_01x02_GF_5.08mm_MH -0 -2 -2 -Connector_Phoenix_MC_HighVoltage -PhoenixContact_MCV_1,5_3-G-5.08_1x03_P5.08mm_Vertical -Generic Phoenix Contact connector footprint for: MCV_1,5/3-G-5.08; number of pins: 03; pin pitch: 5.08mm; Vertical || order number: 1836309 8A 320V -phoenix_contact connector MCV_01x03_G_5.08mm -0 -3 -3 -Connector_Phoenix_MC_HighVoltage -PhoenixContact_MCV_1,5_3-GF-5.08_1x03_P5.08mm_Vertical_ThreadedFlange -Generic Phoenix Contact connector footprint for: MCV_1,5/3-GF-5.08; number of pins: 03; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1847628 8A 320V -phoenix_contact connector MCV_01x03_GF_5.08mm -0 -3 -3 -Connector_Phoenix_MC_HighVoltage -PhoenixContact_MCV_1,5_3-GF-5.08_1x03_P5.08mm_Vertical_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MCV_1,5/3-GF-5.08; number of pins: 03; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847628 8A 320V -phoenix_contact connector MCV_01x03_GF_5.08mm_MH -0 -3 -3 -Connector_Phoenix_MC_HighVoltage -PhoenixContact_MCV_1,5_4-G-5.08_1x04_P5.08mm_Vertical -Generic Phoenix Contact connector footprint for: MCV_1,5/4-G-5.08; number of pins: 04; pin pitch: 5.08mm; Vertical || order number: 1836312 8A 320V -phoenix_contact connector MCV_01x04_G_5.08mm -0 -4 -4 -Connector_Phoenix_MC_HighVoltage -PhoenixContact_MCV_1,5_4-GF-5.08_1x04_P5.08mm_Vertical_ThreadedFlange -Generic Phoenix Contact connector footprint for: MCV_1,5/4-GF-5.08; number of pins: 04; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1847631 8A 320V -phoenix_contact connector MCV_01x04_GF_5.08mm -0 -4 -4 -Connector_Phoenix_MC_HighVoltage -PhoenixContact_MCV_1,5_4-GF-5.08_1x04_P5.08mm_Vertical_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MCV_1,5/4-GF-5.08; number of pins: 04; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847631 8A 320V -phoenix_contact connector MCV_01x04_GF_5.08mm_MH -0 -4 -4 -Connector_Phoenix_MC_HighVoltage -PhoenixContact_MCV_1,5_5-G-5.08_1x05_P5.08mm_Vertical -Generic Phoenix Contact connector footprint for: MCV_1,5/5-G-5.08; number of pins: 05; pin pitch: 5.08mm; Vertical || order number: 1836325 8A 320V -phoenix_contact connector MCV_01x05_G_5.08mm -0 -5 -5 -Connector_Phoenix_MC_HighVoltage -PhoenixContact_MCV_1,5_5-GF-5.08_1x05_P5.08mm_Vertical_ThreadedFlange -Generic Phoenix Contact connector footprint for: MCV_1,5/5-GF-5.08; number of pins: 05; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1847644 8A 320V -phoenix_contact connector MCV_01x05_GF_5.08mm -0 -5 -5 -Connector_Phoenix_MC_HighVoltage -PhoenixContact_MCV_1,5_5-GF-5.08_1x05_P5.08mm_Vertical_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MCV_1,5/5-GF-5.08; number of pins: 05; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847644 8A 320V -phoenix_contact connector MCV_01x05_GF_5.08mm_MH -0 -5 -5 -Connector_Phoenix_MC_HighVoltage -PhoenixContact_MCV_1,5_6-G-5.08_1x06_P5.08mm_Vertical -Generic Phoenix Contact connector footprint for: MCV_1,5/6-G-5.08; number of pins: 06; pin pitch: 5.08mm; Vertical || order number: 1836338 8A 320V -phoenix_contact connector MCV_01x06_G_5.08mm -0 -6 -6 -Connector_Phoenix_MC_HighVoltage -PhoenixContact_MCV_1,5_6-GF-5.08_1x06_P5.08mm_Vertical_ThreadedFlange -Generic Phoenix Contact connector footprint for: MCV_1,5/6-GF-5.08; number of pins: 06; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1847657 8A 320V -phoenix_contact connector MCV_01x06_GF_5.08mm -0 -6 -6 -Connector_Phoenix_MC_HighVoltage -PhoenixContact_MCV_1,5_6-GF-5.08_1x06_P5.08mm_Vertical_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MCV_1,5/6-GF-5.08; number of pins: 06; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847657 8A 320V -phoenix_contact connector MCV_01x06_GF_5.08mm_MH -0 -6 -6 -Connector_Phoenix_MC_HighVoltage -PhoenixContact_MCV_1,5_7-G-5.08_1x07_P5.08mm_Vertical -Generic Phoenix Contact connector footprint for: MCV_1,5/7-G-5.08; number of pins: 07; pin pitch: 5.08mm; Vertical || order number: 1836341 8A 320V -phoenix_contact connector MCV_01x07_G_5.08mm -0 -7 -7 -Connector_Phoenix_MC_HighVoltage -PhoenixContact_MCV_1,5_7-GF-5.08_1x07_P5.08mm_Vertical_ThreadedFlange -Generic Phoenix Contact connector footprint for: MCV_1,5/7-GF-5.08; number of pins: 07; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1847660 8A 320V -phoenix_contact connector MCV_01x07_GF_5.08mm -0 -7 -7 -Connector_Phoenix_MC_HighVoltage -PhoenixContact_MCV_1,5_7-GF-5.08_1x07_P5.08mm_Vertical_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MCV_1,5/7-GF-5.08; number of pins: 07; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847660 8A 320V -phoenix_contact connector MCV_01x07_GF_5.08mm_MH -0 -7 -7 -Connector_Phoenix_MC_HighVoltage -PhoenixContact_MCV_1,5_8-G-5.08_1x08_P5.08mm_Vertical -Generic Phoenix Contact connector footprint for: MCV_1,5/8-G-5.08; number of pins: 08; pin pitch: 5.08mm; Vertical || order number: 1836354 8A 320V -phoenix_contact connector MCV_01x08_G_5.08mm -0 -8 -8 -Connector_Phoenix_MC_HighVoltage -PhoenixContact_MCV_1,5_8-GF-5.08_1x08_P5.08mm_Vertical_ThreadedFlange -Generic Phoenix Contact connector footprint for: MCV_1,5/8-GF-5.08; number of pins: 08; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1847673 8A 320V -phoenix_contact connector MCV_01x08_GF_5.08mm -0 -8 -8 -Connector_Phoenix_MC_HighVoltage -PhoenixContact_MCV_1,5_8-GF-5.08_1x08_P5.08mm_Vertical_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MCV_1,5/8-GF-5.08; number of pins: 08; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847673 8A 320V -phoenix_contact connector MCV_01x08_GF_5.08mm_MH -0 -8 -8 -Connector_Phoenix_MC_HighVoltage -PhoenixContact_MCV_1,5_9-G-5.08_1x09_P5.08mm_Vertical -Generic Phoenix Contact connector footprint for: MCV_1,5/9-G-5.08; number of pins: 09; pin pitch: 5.08mm; Vertical || order number: 1836367 8A 320V -phoenix_contact connector MCV_01x09_G_5.08mm -0 -9 -9 -Connector_Phoenix_MC_HighVoltage -PhoenixContact_MCV_1,5_9-GF-5.08_1x09_P5.08mm_Vertical_ThreadedFlange -Generic Phoenix Contact connector footprint for: MCV_1,5/9-GF-5.08; number of pins: 09; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1847686 8A 320V -phoenix_contact connector MCV_01x09_GF_5.08mm -0 -9 -9 -Connector_Phoenix_MC_HighVoltage -PhoenixContact_MCV_1,5_9-GF-5.08_1x09_P5.08mm_Vertical_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MCV_1,5/9-GF-5.08; number of pins: 09; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847686 8A 320V -phoenix_contact connector MCV_01x09_GF_5.08mm_MH -0 -9 -9 -Connector_Phoenix_MC_HighVoltage -PhoenixContact_MCV_1,5_10-G-5.08_1x10_P5.08mm_Vertical -Generic Phoenix Contact connector footprint for: MCV_1,5/10-G-5.08; number of pins: 10; pin pitch: 5.08mm; Vertical || order number: 1836370 8A 320V -phoenix_contact connector MCV_01x10_G_5.08mm -0 -10 -10 -Connector_Phoenix_MC_HighVoltage -PhoenixContact_MCV_1,5_10-GF-5.08_1x10_P5.08mm_Vertical_ThreadedFlange -Generic Phoenix Contact connector footprint for: MCV_1,5/10-GF-5.08; number of pins: 10; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1847699 8A 320V -phoenix_contact connector MCV_01x10_GF_5.08mm -0 -10 -10 -Connector_Phoenix_MC_HighVoltage -PhoenixContact_MCV_1,5_10-GF-5.08_1x10_P5.08mm_Vertical_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MCV_1,5/10-GF-5.08; number of pins: 10; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847699 8A 320V -phoenix_contact connector MCV_01x10_GF_5.08mm_MH -0 -10 -10 -Connector_Phoenix_MC_HighVoltage -PhoenixContact_MCV_1,5_11-G-5.08_1x11_P5.08mm_Vertical -Generic Phoenix Contact connector footprint for: MCV_1,5/11-G-5.08; number of pins: 11; pin pitch: 5.08mm; Vertical || order number: 1836383 8A 320V -phoenix_contact connector MCV_01x11_G_5.08mm -0 -11 -11 -Connector_Phoenix_MC_HighVoltage -PhoenixContact_MCV_1,5_11-GF-5.08_1x11_P5.08mm_Vertical_ThreadedFlange -Generic Phoenix Contact connector footprint for: MCV_1,5/11-GF-5.08; number of pins: 11; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1847709 8A 320V -phoenix_contact connector MCV_01x11_GF_5.08mm -0 -11 -11 -Connector_Phoenix_MC_HighVoltage -PhoenixContact_MCV_1,5_11-GF-5.08_1x11_P5.08mm_Vertical_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MCV_1,5/11-GF-5.08; number of pins: 11; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847709 8A 320V -phoenix_contact connector MCV_01x11_GF_5.08mm_MH -0 -11 -11 -Connector_Phoenix_MC_HighVoltage -PhoenixContact_MCV_1,5_12-G-5.08_1x12_P5.08mm_Vertical -Generic Phoenix Contact connector footprint for: MCV_1,5/12-G-5.08; number of pins: 12; pin pitch: 5.08mm; Vertical || order number: 1836396 8A 320V -phoenix_contact connector MCV_01x12_G_5.08mm -0 -12 -12 -Connector_Phoenix_MC_HighVoltage -PhoenixContact_MCV_1,5_12-GF-5.08_1x12_P5.08mm_Vertical_ThreadedFlange -Generic Phoenix Contact connector footprint for: MCV_1,5/12-GF-5.08; number of pins: 12; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1847712 8A 320V -phoenix_contact connector MCV_01x12_GF_5.08mm -0 -12 -12 -Connector_Phoenix_MC_HighVoltage -PhoenixContact_MCV_1,5_12-GF-5.08_1x12_P5.08mm_Vertical_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MCV_1,5/12-GF-5.08; number of pins: 12; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847712 8A 320V -phoenix_contact connector MCV_01x12_GF_5.08mm_MH -0 -12 -12 -Connector_Phoenix_MC_HighVoltage -PhoenixContact_MC_1,5_2-G-5.08_1x02_P5.08mm_Horizontal -Generic Phoenix Contact connector footprint for: MC_1,5/2-G-5.08; number of pins: 02; pin pitch: 5.08mm; Angled || order number: 1836189 8A 320V -phoenix_contact connector MC_01x02_G_5.08mm -0 -2 -2 -Connector_Phoenix_MC_HighVoltage -PhoenixContact_MC_1,5_2-GF-5.08_1x02_P5.08mm_Horizontal_ThreadedFlange -Generic Phoenix Contact connector footprint for: MC_1,5/2-GF-5.08; number of pins: 02; pin pitch: 5.08mm; Angled; threaded flange || order number: 1847466 8A 320V -phoenix_contact connector MC_01x02_GF_5.08mm -0 -2 -2 -Connector_Phoenix_MC_HighVoltage -PhoenixContact_MC_1,5_2-GF-5.08_1x02_P5.08mm_Horizontal_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MC_1,5/2-GF-5.08; number of pins: 02; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847466 8A 320V -phoenix_contact connector MC_01x02_GF_5.08mm_MH -0 -2 -2 -Connector_Phoenix_MC_HighVoltage -PhoenixContact_MC_1,5_3-G-5.08_1x03_P5.08mm_Horizontal -Generic Phoenix Contact connector footprint for: MC_1,5/3-G-5.08; number of pins: 03; pin pitch: 5.08mm; Angled || order number: 1836192 8A 320V -phoenix_contact connector MC_01x03_G_5.08mm -0 -3 -3 -Connector_Phoenix_MC_HighVoltage -PhoenixContact_MC_1,5_3-GF-5.08_1x03_P5.08mm_Horizontal_ThreadedFlange -Generic Phoenix Contact connector footprint for: MC_1,5/3-GF-5.08; number of pins: 03; pin pitch: 5.08mm; Angled; threaded flange || order number: 1847479 8A 320V -phoenix_contact connector MC_01x03_GF_5.08mm -0 -3 -3 -Connector_Phoenix_MC_HighVoltage -PhoenixContact_MC_1,5_3-GF-5.08_1x03_P5.08mm_Horizontal_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MC_1,5/3-GF-5.08; number of pins: 03; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847479 8A 320V -phoenix_contact connector MC_01x03_GF_5.08mm_MH -0 -3 -3 -Connector_Phoenix_MC_HighVoltage -PhoenixContact_MC_1,5_4-G-5.08_1x04_P5.08mm_Horizontal -Generic Phoenix Contact connector footprint for: MC_1,5/4-G-5.08; number of pins: 04; pin pitch: 5.08mm; Angled || order number: 1836202 8A 320V -phoenix_contact connector MC_01x04_G_5.08mm -0 -4 -4 -Connector_Phoenix_MC_HighVoltage -PhoenixContact_MC_1,5_4-GF-5.08_1x04_P5.08mm_Horizontal_ThreadedFlange -Generic Phoenix Contact connector footprint for: MC_1,5/4-GF-5.08; number of pins: 04; pin pitch: 5.08mm; Angled; threaded flange || order number: 1847482 8A 320V -phoenix_contact connector MC_01x04_GF_5.08mm -0 -4 -4 -Connector_Phoenix_MC_HighVoltage -PhoenixContact_MC_1,5_4-GF-5.08_1x04_P5.08mm_Horizontal_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MC_1,5/4-GF-5.08; number of pins: 04; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847482 8A 320V -phoenix_contact connector MC_01x04_GF_5.08mm_MH -0 -4 -4 -Connector_Phoenix_MC_HighVoltage -PhoenixContact_MC_1,5_5-G-5.08_1x05_P5.08mm_Horizontal -Generic Phoenix Contact connector footprint for: MC_1,5/5-G-5.08; number of pins: 05; pin pitch: 5.08mm; Angled || order number: 1836215 8A 320V -phoenix_contact connector MC_01x05_G_5.08mm -0 -5 -5 -Connector_Phoenix_MC_HighVoltage -PhoenixContact_MC_1,5_5-GF-5.08_1x05_P5.08mm_Horizontal_ThreadedFlange -Generic Phoenix Contact connector footprint for: MC_1,5/5-GF-5.08; number of pins: 05; pin pitch: 5.08mm; Angled; threaded flange || order number: 1847495 8A 320V -phoenix_contact connector MC_01x05_GF_5.08mm -0 -5 -5 -Connector_Phoenix_MC_HighVoltage -PhoenixContact_MC_1,5_5-GF-5.08_1x05_P5.08mm_Horizontal_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MC_1,5/5-GF-5.08; number of pins: 05; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847495 8A 320V -phoenix_contact connector MC_01x05_GF_5.08mm_MH -0 -5 -5 -Connector_Phoenix_MC_HighVoltage -PhoenixContact_MC_1,5_6-G-5.08_1x06_P5.08mm_Horizontal -Generic Phoenix Contact connector footprint for: MC_1,5/6-G-5.08; number of pins: 06; pin pitch: 5.08mm; Angled || order number: 1836228 8A 320V -phoenix_contact connector MC_01x06_G_5.08mm -0 -6 -6 -Connector_Phoenix_MC_HighVoltage -PhoenixContact_MC_1,5_6-GF-5.08_1x06_P5.08mm_Horizontal_ThreadedFlange -Generic Phoenix Contact connector footprint for: MC_1,5/6-GF-5.08; number of pins: 06; pin pitch: 5.08mm; Angled; threaded flange || order number: 1847505 8A 320V -phoenix_contact connector MC_01x06_GF_5.08mm -0 -6 -6 -Connector_Phoenix_MC_HighVoltage -PhoenixContact_MC_1,5_6-GF-5.08_1x06_P5.08mm_Horizontal_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MC_1,5/6-GF-5.08; number of pins: 06; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847505 8A 320V -phoenix_contact connector MC_01x06_GF_5.08mm_MH -0 -6 -6 -Connector_Phoenix_MC_HighVoltage -PhoenixContact_MC_1,5_7-G-5.08_1x07_P5.08mm_Horizontal -Generic Phoenix Contact connector footprint for: MC_1,5/7-G-5.08; number of pins: 07; pin pitch: 5.08mm; Angled || order number: 1836231 8A 320V -phoenix_contact connector MC_01x07_G_5.08mm -0 -7 -7 -Connector_Phoenix_MC_HighVoltage -PhoenixContact_MC_1,5_7-GF-5.08_1x07_P5.08mm_Horizontal_ThreadedFlange -Generic Phoenix Contact connector footprint for: MC_1,5/7-GF-5.08; number of pins: 07; pin pitch: 5.08mm; Angled; threaded flange || order number: 1847518 8A 320V -phoenix_contact connector MC_01x07_GF_5.08mm -0 -7 -7 -Connector_Phoenix_MC_HighVoltage -PhoenixContact_MC_1,5_7-GF-5.08_1x07_P5.08mm_Horizontal_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MC_1,5/7-GF-5.08; number of pins: 07; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847518 8A 320V -phoenix_contact connector MC_01x07_GF_5.08mm_MH -0 -7 -7 -Connector_Phoenix_MC_HighVoltage -PhoenixContact_MC_1,5_8-G-5.08_1x08_P5.08mm_Horizontal -Generic Phoenix Contact connector footprint for: MC_1,5/8-G-5.08; number of pins: 08; pin pitch: 5.08mm; Angled || order number: 1836244 8A 320V -phoenix_contact connector MC_01x08_G_5.08mm -0 -8 -8 -Connector_Phoenix_MC_HighVoltage -PhoenixContact_MC_1,5_8-GF-5.08_1x08_P5.08mm_Horizontal_ThreadedFlange -Generic Phoenix Contact connector footprint for: MC_1,5/8-GF-5.08; number of pins: 08; pin pitch: 5.08mm; Angled; threaded flange || order number: 1847521 8A 320V -phoenix_contact connector MC_01x08_GF_5.08mm -0 -8 -8 -Connector_Phoenix_MC_HighVoltage -PhoenixContact_MC_1,5_8-GF-5.08_1x08_P5.08mm_Horizontal_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MC_1,5/8-GF-5.08; number of pins: 08; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847521 8A 320V -phoenix_contact connector MC_01x08_GF_5.08mm_MH -0 -8 -8 -Connector_Phoenix_MC_HighVoltage -PhoenixContact_MC_1,5_9-G-5.08_1x09_P5.08mm_Horizontal -Generic Phoenix Contact connector footprint for: MC_1,5/9-G-5.08; number of pins: 09; pin pitch: 5.08mm; Angled || order number: 1836257 8A 320V -phoenix_contact connector MC_01x09_G_5.08mm -0 -9 -9 -Connector_Phoenix_MC_HighVoltage -PhoenixContact_MC_1,5_9-GF-5.08_1x09_P5.08mm_Horizontal_ThreadedFlange -Generic Phoenix Contact connector footprint for: MC_1,5/9-GF-5.08; number of pins: 09; pin pitch: 5.08mm; Angled; threaded flange || order number: 1847534 8A 320V -phoenix_contact connector MC_01x09_GF_5.08mm -0 -9 -9 -Connector_Phoenix_MC_HighVoltage -PhoenixContact_MC_1,5_9-GF-5.08_1x09_P5.08mm_Horizontal_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MC_1,5/9-GF-5.08; number of pins: 09; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847534 8A 320V -phoenix_contact connector MC_01x09_GF_5.08mm_MH -0 -9 -9 -Connector_Phoenix_MC_HighVoltage -PhoenixContact_MC_1,5_10-G-5.08_1x10_P5.08mm_Horizontal -Generic Phoenix Contact connector footprint for: MC_1,5/10-G-5.08; number of pins: 10; pin pitch: 5.08mm; Angled || order number: 1836260 8A 320V -phoenix_contact connector MC_01x10_G_5.08mm -0 -10 -10 -Connector_Phoenix_MC_HighVoltage -PhoenixContact_MC_1,5_10-GF-5.08_1x10_P5.08mm_Horizontal_ThreadedFlange -Generic Phoenix Contact connector footprint for: MC_1,5/10-GF-5.08; number of pins: 10; pin pitch: 5.08mm; Angled; threaded flange || order number: 1847547 8A 320V -phoenix_contact connector MC_01x10_GF_5.08mm -0 -10 -10 -Connector_Phoenix_MC_HighVoltage -PhoenixContact_MC_1,5_10-GF-5.08_1x10_P5.08mm_Horizontal_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MC_1,5/10-GF-5.08; number of pins: 10; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847547 8A 320V -phoenix_contact connector MC_01x10_GF_5.08mm_MH -0 -10 -10 -Connector_Phoenix_MC_HighVoltage -PhoenixContact_MC_1,5_11-G-5.08_1x11_P5.08mm_Horizontal -Generic Phoenix Contact connector footprint for: MC_1,5/11-G-5.08; number of pins: 11; pin pitch: 5.08mm; Angled || order number: 1836273 8A 320V -phoenix_contact connector MC_01x11_G_5.08mm -0 -11 -11 -Connector_Phoenix_MC_HighVoltage -PhoenixContact_MC_1,5_11-GF-5.08_1x11_P5.08mm_Horizontal_ThreadedFlange -Generic Phoenix Contact connector footprint for: MC_1,5/11-GF-5.08; number of pins: 11; pin pitch: 5.08mm; Angled; threaded flange || order number: 1847550 8A 320V -phoenix_contact connector MC_01x11_GF_5.08mm -0 -11 -11 -Connector_Phoenix_MC_HighVoltage -PhoenixContact_MC_1,5_11-GF-5.08_1x11_P5.08mm_Horizontal_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MC_1,5/11-GF-5.08; number of pins: 11; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847550 8A 320V -phoenix_contact connector MC_01x11_GF_5.08mm_MH -0 -11 -11 -Connector_Phoenix_MC_HighVoltage -PhoenixContact_MC_1,5_12-G-5.08_1x12_P5.08mm_Horizontal -Generic Phoenix Contact connector footprint for: MC_1,5/12-G-5.08; number of pins: 12; pin pitch: 5.08mm; Angled || order number: 1836286 8A 320V -phoenix_contact connector MC_01x12_G_5.08mm -0 -12 -12 -Connector_Phoenix_MC_HighVoltage -PhoenixContact_MC_1,5_12-GF-5.08_1x12_P5.08mm_Horizontal_ThreadedFlange -Generic Phoenix Contact connector footprint for: MC_1,5/12-GF-5.08; number of pins: 12; pin pitch: 5.08mm; Angled; threaded flange || order number: 1847563 8A 320V -phoenix_contact connector MC_01x12_GF_5.08mm -0 -12 -12 -Connector_Phoenix_MC_HighVoltage -PhoenixContact_MC_1,5_12-GF-5.08_1x12_P5.08mm_Horizontal_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MC_1,5/12-GF-5.08; number of pins: 12; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x4.5 C or ISO 7049-ST 2.2x4.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1847563 8A 320V -phoenix_contact connector MC_01x12_GF_5.08mm_MH -0 -12 -12 -Connector_Phoenix_MSTB -PhoenixContact_MSTBA_2,5_2-G-5,08_1x02_P5.08mm_Horizontal -Generic Phoenix Contact connector footprint for: MSTBA_2,5/2-G-5,08; number of pins: 02; pin pitch: 5.08mm; Angled || order number: 1757242 12A || order number: 1923869 16A (HC) -phoenix_contact connector MSTBA_01x02_G_5.08mm -0 -2 -2 -Connector_Phoenix_MSTB -PhoenixContact_MSTBA_2,5_2-G_1x02_P5.00mm_Horizontal -Generic Phoenix Contact connector footprint for: MSTBA_2,5/2-G; number of pins: 02; pin pitch: 5.00mm; Angled || order number: 1757475 12A || order number: 1923759 16A (HC) -phoenix_contact connector MSTBA_01x02_G_5.00mm -0 -2 -2 -Connector_Phoenix_MSTB -PhoenixContact_MSTBA_2,5_3-G-5,08_1x03_P5.08mm_Horizontal -Generic Phoenix Contact connector footprint for: MSTBA_2,5/3-G-5,08; number of pins: 03; pin pitch: 5.08mm; Angled || order number: 1757255 12A || order number: 1923872 16A (HC) -phoenix_contact connector MSTBA_01x03_G_5.08mm -0 -3 -3 -Connector_Phoenix_MSTB -PhoenixContact_MSTBA_2,5_3-G_1x03_P5.00mm_Horizontal -Generic Phoenix Contact connector footprint for: MSTBA_2,5/3-G; number of pins: 03; pin pitch: 5.00mm; Angled || order number: 1757488 12A || order number: 1923762 16A (HC) -phoenix_contact connector MSTBA_01x03_G_5.00mm -0 -3 -3 -Connector_Phoenix_MSTB -PhoenixContact_MSTBA_2,5_4-G-5,08_1x04_P5.08mm_Horizontal -Generic Phoenix Contact connector footprint for: MSTBA_2,5/4-G-5,08; number of pins: 04; pin pitch: 5.08mm; Angled || order number: 1757268 12A || order number: 1923885 16A (HC) -phoenix_contact connector MSTBA_01x04_G_5.08mm -0 -4 -4 -Connector_Phoenix_MSTB -PhoenixContact_MSTBA_2,5_4-G_1x04_P5.00mm_Horizontal -Generic Phoenix Contact connector footprint for: MSTBA_2,5/4-G; number of pins: 04; pin pitch: 5.00mm; Angled || order number: 1757491 12A || order number: 1923775 16A (HC) -phoenix_contact connector MSTBA_01x04_G_5.00mm -0 -4 -4 -Connector_Phoenix_MSTB -PhoenixContact_MSTBA_2,5_5-G-5,08_1x05_P5.08mm_Horizontal -Generic Phoenix Contact connector footprint for: MSTBA_2,5/5-G-5,08; number of pins: 05; pin pitch: 5.08mm; Angled || order number: 1757271 12A || order number: 1923898 16A (HC) -phoenix_contact connector MSTBA_01x05_G_5.08mm -0 -5 -5 -Connector_Phoenix_MSTB -PhoenixContact_MSTBA_2,5_5-G_1x05_P5.00mm_Horizontal -Generic Phoenix Contact connector footprint for: MSTBA_2,5/5-G; number of pins: 05; pin pitch: 5.00mm; Angled || order number: 1757501 12A || order number: 1923788 16A (HC) -phoenix_contact connector MSTBA_01x05_G_5.00mm -0 -5 -5 -Connector_Phoenix_MSTB -PhoenixContact_MSTBA_2,5_6-G-5,08_1x06_P5.08mm_Horizontal -Generic Phoenix Contact connector footprint for: MSTBA_2,5/6-G-5,08; number of pins: 06; pin pitch: 5.08mm; Angled || order number: 1757284 12A || order number: 1923908 16A (HC) -phoenix_contact connector MSTBA_01x06_G_5.08mm -0 -6 -6 -Connector_Phoenix_MSTB -PhoenixContact_MSTBA_2,5_6-G_1x06_P5.00mm_Horizontal -Generic Phoenix Contact connector footprint for: MSTBA_2,5/6-G; number of pins: 06; pin pitch: 5.00mm; Angled || order number: 1757514 12A || order number: 1923791 16A (HC) -phoenix_contact connector MSTBA_01x06_G_5.00mm -0 -6 -6 -Connector_Phoenix_MSTB -PhoenixContact_MSTBA_2,5_7-G-5,08_1x07_P5.08mm_Horizontal -Generic Phoenix Contact connector footprint for: MSTBA_2,5/7-G-5,08; number of pins: 07; pin pitch: 5.08mm; Angled || order number: 1757297 12A || order number: 1923911 16A (HC) -phoenix_contact connector MSTBA_01x07_G_5.08mm -0 -7 -7 -Connector_Phoenix_MSTB -PhoenixContact_MSTBA_2,5_7-G_1x07_P5.00mm_Horizontal -Generic Phoenix Contact connector footprint for: MSTBA_2,5/7-G; number of pins: 07; pin pitch: 5.00mm; Angled || order number: 1757493 12A || order number: 1923801 16A (HC) -phoenix_contact connector MSTBA_01x07_G_5.00mm -0 -7 -7 -Connector_Phoenix_MSTB -PhoenixContact_MSTBA_2,5_8-G-5,08_1x08_P5.08mm_Horizontal -Generic Phoenix Contact connector footprint for: MSTBA_2,5/8-G-5,08; number of pins: 08; pin pitch: 5.08mm; Angled || order number: 1757307 12A || order number: 1923924 16A (HC) -phoenix_contact connector MSTBA_01x08_G_5.08mm -0 -8 -8 -Connector_Phoenix_MSTB -PhoenixContact_MSTBA_2,5_8-G_1x08_P5.00mm_Horizontal -Generic Phoenix Contact connector footprint for: MSTBA_2,5/8-G; number of pins: 08; pin pitch: 5.00mm; Angled || order number: 1757527 12A || order number: 1923814 16A (HC) -phoenix_contact connector MSTBA_01x08_G_5.00mm -0 -8 -8 -Connector_Phoenix_MSTB -PhoenixContact_MSTBA_2,5_9-G-5,08_1x09_P5.08mm_Horizontal -Generic Phoenix Contact connector footprint for: MSTBA_2,5/9-G-5,08; number of pins: 09; pin pitch: 5.08mm; Angled || order number: 1757310 12A || order number: 1923937 16A (HC) -phoenix_contact connector MSTBA_01x09_G_5.08mm -0 -9 -9 -Connector_Phoenix_MSTB -PhoenixContact_MSTBA_2,5_9-G_1x09_P5.00mm_Horizontal -Generic Phoenix Contact connector footprint for: MSTBA_2,5/9-G; number of pins: 09; pin pitch: 5.00mm; Angled || order number: 1757530 12A || order number: 1923827 16A (HC) -phoenix_contact connector MSTBA_01x09_G_5.00mm -0 -9 -9 -Connector_Phoenix_MSTB -PhoenixContact_MSTBA_2,5_10-G-5,08_1x10_P5.08mm_Horizontal -Generic Phoenix Contact connector footprint for: MSTBA_2,5/10-G-5,08; number of pins: 10; pin pitch: 5.08mm; Angled || order number: 1757323 12A || order number: 1923940 16A (HC) -phoenix_contact connector MSTBA_01x10_G_5.08mm -0 -10 -10 -Connector_Phoenix_MSTB -PhoenixContact_MSTBA_2,5_10-G_1x10_P5.00mm_Horizontal -Generic Phoenix Contact connector footprint for: MSTBA_2,5/10-G; number of pins: 10; pin pitch: 5.00mm; Angled || order number: 1757543 12A || order number: 1923830 16A (HC) -phoenix_contact connector MSTBA_01x10_G_5.00mm -0 -10 -10 -Connector_Phoenix_MSTB -PhoenixContact_MSTBA_2,5_11-G-5,08_1x11_P5.08mm_Horizontal -Generic Phoenix Contact connector footprint for: MSTBA_2,5/11-G-5,08; number of pins: 11; pin pitch: 5.08mm; Angled || order number: 1757336 12A || order number: 1923953 16A (HC) -phoenix_contact connector MSTBA_01x11_G_5.08mm -0 -11 -11 -Connector_Phoenix_MSTB -PhoenixContact_MSTBA_2,5_11-G_1x11_P5.00mm_Horizontal -Generic Phoenix Contact connector footprint for: MSTBA_2,5/11-G; number of pins: 11; pin pitch: 5.00mm; Angled || order number: 1757556 12A || order number: 1923843 16A (HC) -phoenix_contact connector MSTBA_01x11_G_5.00mm -0 -11 -11 -Connector_Phoenix_MSTB -PhoenixContact_MSTBA_2,5_12-G-5,08_1x12_P5.08mm_Horizontal -Generic Phoenix Contact connector footprint for: MSTBA_2,5/12-G-5,08; number of pins: 12; pin pitch: 5.08mm; Angled || order number: 1757349 12A || order number: 1923966 16A (HC) -phoenix_contact connector MSTBA_01x12_G_5.08mm -0 -12 -12 -Connector_Phoenix_MSTB -PhoenixContact_MSTBA_2,5_12-G_1x12_P5.00mm_Horizontal -Generic Phoenix Contact connector footprint for: MSTBA_2,5/12-G; number of pins: 12; pin pitch: 5.00mm; Angled || order number: 1757569 12A || order number: 1923856 16A (HC) -phoenix_contact connector MSTBA_01x12_G_5.00mm -0 -12 -12 -Connector_Phoenix_MSTB -PhoenixContact_MSTBA_2,5_13-G-5,08_1x13_P5.08mm_Horizontal -Generic Phoenix Contact connector footprint for: MSTBA_2,5/13-G-5,08; number of pins: 13; pin pitch: 5.08mm; Angled || order number: 1757352 12A -phoenix_contact connector MSTBA_01x13_G_5.08mm -0 -13 -13 -Connector_Phoenix_MSTB -PhoenixContact_MSTBA_2,5_13-G_1x13_P5.00mm_Horizontal -Generic Phoenix Contact connector footprint for: MSTBA_2,5/13-G; number of pins: 13; pin pitch: 5.00mm; Angled || order number: 1757572 12A -phoenix_contact connector MSTBA_01x13_G_5.00mm -0 -13 -13 -Connector_Phoenix_MSTB -PhoenixContact_MSTBA_2,5_14-G-5,08_1x14_P5.08mm_Horizontal -Generic Phoenix Contact connector footprint for: MSTBA_2,5/14-G-5,08; number of pins: 14; pin pitch: 5.08mm; Angled || order number: 1757365 12A -phoenix_contact connector MSTBA_01x14_G_5.08mm -0 -14 -14 -Connector_Phoenix_MSTB -PhoenixContact_MSTBA_2,5_14-G_1x14_P5.00mm_Horizontal -Generic Phoenix Contact connector footprint for: MSTBA_2,5/14-G; number of pins: 14; pin pitch: 5.00mm; Angled || order number: 1757585 12A -phoenix_contact connector MSTBA_01x14_G_5.00mm -0 -14 -14 -Connector_Phoenix_MSTB -PhoenixContact_MSTBA_2,5_15-G-5,08_1x15_P5.08mm_Horizontal -Generic Phoenix Contact connector footprint for: MSTBA_2,5/15-G-5,08; number of pins: 15; pin pitch: 5.08mm; Angled || order number: 1757378 12A -phoenix_contact connector MSTBA_01x15_G_5.08mm -0 -15 -15 -Connector_Phoenix_MSTB -PhoenixContact_MSTBA_2,5_15-G_1x15_P5.00mm_Horizontal -Generic Phoenix Contact connector footprint for: MSTBA_2,5/15-G; number of pins: 15; pin pitch: 5.00mm; Angled || order number: 1757598 12A -phoenix_contact connector MSTBA_01x15_G_5.00mm -0 -15 -15 -Connector_Phoenix_MSTB -PhoenixContact_MSTBA_2,5_16-G-5,08_1x16_P5.08mm_Horizontal -Generic Phoenix Contact connector footprint for: MSTBA_2,5/16-G-5,08; number of pins: 16; pin pitch: 5.08mm; Angled || order number: 1757381 12A -phoenix_contact connector MSTBA_01x16_G_5.08mm -0 -16 -16 -Connector_Phoenix_MSTB -PhoenixContact_MSTBA_2,5_16-G_1x16_P5.00mm_Horizontal -Generic Phoenix Contact connector footprint for: MSTBA_2,5/16-G; number of pins: 16; pin pitch: 5.00mm; Angled || order number: 1757608 12A -phoenix_contact connector MSTBA_01x16_G_5.00mm -0 -16 -16 -Connector_Phoenix_MSTB -PhoenixContact_MSTBVA_2,5_2-G-5,08_1x02_P5.08mm_Vertical -Generic Phoenix Contact connector footprint for: MSTBVA_2,5/2-G-5,08; number of pins: 02; pin pitch: 5.08mm; Vertical || order number: 1755736 12A || order number: 1924305 16A (HC) -phoenix_contact connector MSTBVA_01x02_G_5.08mm -0 -2 -2 -Connector_Phoenix_MSTB -PhoenixContact_MSTBVA_2,5_2-G_1x02_P5.00mm_Vertical -Generic Phoenix Contact connector footprint for: MSTBVA_2,5/2-G; number of pins: 02; pin pitch: 5.00mm; Vertical || order number: 1755516 12A || order number: 1924198 16A (HC) -phoenix_contact connector MSTBVA_01x02_G_5.00mm -0 -2 -2 -Connector_Phoenix_MSTB -PhoenixContact_MSTBVA_2,5_3-G-5,08_1x03_P5.08mm_Vertical -Generic Phoenix Contact connector footprint for: MSTBVA_2,5/3-G-5,08; number of pins: 03; pin pitch: 5.08mm; Vertical || order number: 1755749 12A || order number: 1924318 16A (HC) -phoenix_contact connector MSTBVA_01x03_G_5.08mm -0 -3 -3 -Connector_Phoenix_MSTB -PhoenixContact_MSTBVA_2,5_3-G_1x03_P5.00mm_Vertical -Generic Phoenix Contact connector footprint for: MSTBVA_2,5/3-G; number of pins: 03; pin pitch: 5.00mm; Vertical || order number: 1755529 12A || order number: 1924208 16A (HC) -phoenix_contact connector MSTBVA_01x03_G_5.00mm -0 -3 -3 -Connector_Phoenix_MSTB -PhoenixContact_MSTBVA_2,5_4-G-5,08_1x04_P5.08mm_Vertical -Generic Phoenix Contact connector footprint for: MSTBVA_2,5/4-G-5,08; number of pins: 04; pin pitch: 5.08mm; Vertical || order number: 1755752 12A || order number: 1924321 16A (HC) -phoenix_contact connector MSTBVA_01x04_G_5.08mm -0 -4 -4 -Connector_Phoenix_MSTB -PhoenixContact_MSTBVA_2,5_4-G_1x04_P5.00mm_Vertical -Generic Phoenix Contact connector footprint for: MSTBVA_2,5/4-G; number of pins: 04; pin pitch: 5.00mm; Vertical || order number: 1755532 12A || order number: 1924211 16A (HC) -phoenix_contact connector MSTBVA_01x04_G_5.00mm -0 -4 -4 -Connector_Phoenix_MSTB -PhoenixContact_MSTBVA_2,5_5-G-5,08_1x05_P5.08mm_Vertical -Generic Phoenix Contact connector footprint for: MSTBVA_2,5/5-G-5,08; number of pins: 05; pin pitch: 5.08mm; Vertical || order number: 1755765 12A || order number: 1924334 16A (HC) -phoenix_contact connector MSTBVA_01x05_G_5.08mm -0 -5 -5 -Connector_Phoenix_MSTB -PhoenixContact_MSTBVA_2,5_5-G_1x05_P5.00mm_Vertical -Generic Phoenix Contact connector footprint for: MSTBVA_2,5/5-G; number of pins: 05; pin pitch: 5.00mm; Vertical || order number: 1755545 12A || order number: 1924224 16A (HC) -phoenix_contact connector MSTBVA_01x05_G_5.00mm -0 -5 -5 -Connector_Phoenix_MSTB -PhoenixContact_MSTBVA_2,5_6-G-5,08_1x06_P5.08mm_Vertical -Generic Phoenix Contact connector footprint for: MSTBVA_2,5/6-G-5,08; number of pins: 06; pin pitch: 5.08mm; Vertical || order number: 1755778 12A || order number: 1924347 16A (HC) -phoenix_contact connector MSTBVA_01x06_G_5.08mm -0 -6 -6 -Connector_Phoenix_MSTB -PhoenixContact_MSTBVA_2,5_6-G_1x06_P5.00mm_Vertical -Generic Phoenix Contact connector footprint for: MSTBVA_2,5/6-G; number of pins: 06; pin pitch: 5.00mm; Vertical || order number: 1755558 12A || order number: 1924237 16A (HC) -phoenix_contact connector MSTBVA_01x06_G_5.00mm -0 -6 -6 -Connector_Phoenix_MSTB -PhoenixContact_MSTBVA_2,5_7-G-5,08_1x07_P5.08mm_Vertical -Generic Phoenix Contact connector footprint for: MSTBVA_2,5/7-G-5,08; number of pins: 07; pin pitch: 5.08mm; Vertical || order number: 1755781 12A || order number: 1924350 16A (HC) -phoenix_contact connector MSTBVA_01x07_G_5.08mm -0 -7 -7 -Connector_Phoenix_MSTB -PhoenixContact_MSTBVA_2,5_7-G_1x07_P5.00mm_Vertical -Generic Phoenix Contact connector footprint for: MSTBVA_2,5/7-G; number of pins: 07; pin pitch: 5.00mm; Vertical || order number: 1755561 12A || order number: 1924240 16A (HC) -phoenix_contact connector MSTBVA_01x07_G_5.00mm -0 -7 -7 -Connector_Phoenix_MSTB -PhoenixContact_MSTBVA_2,5_8-G-5,08_1x08_P5.08mm_Vertical -Generic Phoenix Contact connector footprint for: MSTBVA_2,5/8-G-5,08; number of pins: 08; pin pitch: 5.08mm; Vertical || order number: 1755794 12A || order number: 1924363 16A (HC) -phoenix_contact connector MSTBVA_01x08_G_5.08mm -0 -8 -8 -Connector_Phoenix_MSTB -PhoenixContact_MSTBVA_2,5_8-G_1x08_P5.00mm_Vertical -Generic Phoenix Contact connector footprint for: MSTBVA_2,5/8-G; number of pins: 08; pin pitch: 5.00mm; Vertical || order number: 1755574 12A || order number: 1924253 16A (HC) -phoenix_contact connector MSTBVA_01x08_G_5.00mm -0 -8 -8 -Connector_Phoenix_MSTB -PhoenixContact_MSTBVA_2,5_9-G-5,08_1x09_P5.08mm_Vertical -Generic Phoenix Contact connector footprint for: MSTBVA_2,5/9-G-5,08; number of pins: 09; pin pitch: 5.08mm; Vertical || order number: 1755804 12A || order number: 1924376 16A (HC) -phoenix_contact connector MSTBVA_01x09_G_5.08mm -0 -9 -9 -Connector_Phoenix_MSTB -PhoenixContact_MSTBVA_2,5_9-G_1x09_P5.00mm_Vertical -Generic Phoenix Contact connector footprint for: MSTBVA_2,5/9-G; number of pins: 09; pin pitch: 5.00mm; Vertical || order number: 1755587 12A || order number: 1924266 16A (HC) -phoenix_contact connector MSTBVA_01x09_G_5.00mm -0 -9 -9 -Connector_Phoenix_MSTB -PhoenixContact_MSTBVA_2,5_10-G-5,08_1x10_P5.08mm_Vertical -Generic Phoenix Contact connector footprint for: MSTBVA_2,5/10-G-5,08; number of pins: 10; pin pitch: 5.08mm; Vertical || order number: 1755817 12A || order number: 1924389 16A (HC) -phoenix_contact connector MSTBVA_01x10_G_5.08mm -0 -10 -10 -Connector_Phoenix_MSTB -PhoenixContact_MSTBVA_2,5_10-G_1x10_P5.00mm_Vertical -Generic Phoenix Contact connector footprint for: MSTBVA_2,5/10-G; number of pins: 10; pin pitch: 5.00mm; Vertical || order number: 1755503 12A || order number: 1924279 16A (HC) -phoenix_contact connector MSTBVA_01x10_G_5.00mm -0 -10 -10 -Connector_Phoenix_MSTB -PhoenixContact_MSTBVA_2,5_11-G-5,08_1x11_P5.08mm_Vertical -Generic Phoenix Contact connector footprint for: MSTBVA_2,5/11-G-5,08; number of pins: 11; pin pitch: 5.08mm; Vertical || order number: 1755820 12A || order number: 1924392 16A (HC) -phoenix_contact connector MSTBVA_01x11_G_5.08mm -0 -11 -11 -Connector_Phoenix_MSTB -PhoenixContact_MSTBVA_2,5_11-G_1x11_P5.00mm_Vertical -Generic Phoenix Contact connector footprint for: MSTBVA_2,5/11-G; number of pins: 11; pin pitch: 5.00mm; Vertical || order number: 1755590 12A || order number: 1924282 16A (HC) -phoenix_contact connector MSTBVA_01x11_G_5.00mm -0 -11 -11 -Connector_Phoenix_MSTB -PhoenixContact_MSTBVA_2,5_12-G-5,08_1x12_P5.08mm_Vertical -Generic Phoenix Contact connector footprint for: MSTBVA_2,5/12-G-5,08; number of pins: 12; pin pitch: 5.08mm; Vertical || order number: 1755833 12A || order number: 1924402 16A (HC) -phoenix_contact connector MSTBVA_01x12_G_5.08mm -0 -12 -12 -Connector_Phoenix_MSTB -PhoenixContact_MSTBVA_2,5_12-G_1x12_P5.00mm_Vertical -Generic Phoenix Contact connector footprint for: MSTBVA_2,5/12-G; number of pins: 12; pin pitch: 5.00mm; Vertical || order number: 1755600 12A || order number: 1924295 16A (HC) -phoenix_contact connector MSTBVA_01x12_G_5.00mm -0 -12 -12 -Connector_Phoenix_MSTB -PhoenixContact_MSTBVA_2,5_13-G-5,08_1x13_P5.08mm_Vertical -Generic Phoenix Contact connector footprint for: MSTBVA_2,5/13-G-5,08; number of pins: 13; pin pitch: 5.08mm; Vertical || order number: 1755846 12A -phoenix_contact connector MSTBVA_01x13_G_5.08mm -0 -13 -13 -Connector_Phoenix_MSTB -PhoenixContact_MSTBVA_2,5_13-G_1x13_P5.00mm_Vertical -Generic Phoenix Contact connector footprint for: MSTBVA_2,5/13-G; number of pins: 13; pin pitch: 5.00mm; Vertical || order number: 1755613 12A -phoenix_contact connector MSTBVA_01x13_G_5.00mm -0 -13 -13 -Connector_Phoenix_MSTB -PhoenixContact_MSTBVA_2,5_14-G-5,08_1x14_P5.08mm_Vertical -Generic Phoenix Contact connector footprint for: MSTBVA_2,5/14-G-5,08; number of pins: 14; pin pitch: 5.08mm; Vertical || order number: 1755859 12A -phoenix_contact connector MSTBVA_01x14_G_5.08mm -0 -14 -14 -Connector_Phoenix_MSTB -PhoenixContact_MSTBVA_2,5_14-G_1x14_P5.00mm_Vertical -Generic Phoenix Contact connector footprint for: MSTBVA_2,5/14-G; number of pins: 14; pin pitch: 5.00mm; Vertical || order number: 1755626 12A -phoenix_contact connector MSTBVA_01x14_G_5.00mm -0 -14 -14 -Connector_Phoenix_MSTB -PhoenixContact_MSTBVA_2,5_15-G-5,08_1x15_P5.08mm_Vertical -Generic Phoenix Contact connector footprint for: MSTBVA_2,5/15-G-5,08; number of pins: 15; pin pitch: 5.08mm; Vertical || order number: 1755862 12A -phoenix_contact connector MSTBVA_01x15_G_5.08mm -0 -15 -15 -Connector_Phoenix_MSTB -PhoenixContact_MSTBVA_2,5_15-G_1x15_P5.00mm_Vertical -Generic Phoenix Contact connector footprint for: MSTBVA_2,5/15-G; number of pins: 15; pin pitch: 5.00mm; Vertical || order number: 1755639 12A -phoenix_contact connector MSTBVA_01x15_G_5.00mm -0 -15 -15 -Connector_Phoenix_MSTB -PhoenixContact_MSTBVA_2,5_16-G-5,08_1x16_P5.08mm_Vertical -Generic Phoenix Contact connector footprint for: MSTBVA_2,5/16-G-5,08; number of pins: 16; pin pitch: 5.08mm; Vertical || order number: 1755875 12A -phoenix_contact connector MSTBVA_01x16_G_5.08mm -0 -16 -16 -Connector_Phoenix_MSTB -PhoenixContact_MSTBVA_2,5_16-G_1x16_P5.00mm_Vertical -Generic Phoenix Contact connector footprint for: MSTBVA_2,5/16-G; number of pins: 16; pin pitch: 5.00mm; Vertical || order number: 1755642 12A -phoenix_contact connector MSTBVA_01x16_G_5.00mm -0 -16 -16 -Connector_Phoenix_MSTB -PhoenixContact_MSTBV_2,5_2-GF-5,08_1x02_P5.08mm_Vertical_ThreadedFlange -Generic Phoenix Contact connector footprint for: MSTBV_2,5/2-GF-5,08; number of pins: 02; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1777073 12A || order number: 1924525 16A (HC) -phoenix_contact connector MSTBV_01x02_GF_5.08mm -0 -2 -2 -Connector_Phoenix_MSTB -PhoenixContact_MSTBV_2,5_2-GF-5,08_1x02_P5.08mm_Vertical_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MSTBV_2,5/2-GF-5,08; number of pins: 02; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1777073 12A || order number: 1924525 16A (HC) -phoenix_contact connector MSTBV_01x02_GF_5.08mm_MH -0 -2 -2 -Connector_Phoenix_MSTB -PhoenixContact_MSTBV_2,5_2-GF_1x02_P5.00mm_Vertical_ThreadedFlange -Generic Phoenix Contact connector footprint for: MSTBV_2,5/2-GF; number of pins: 02; pin pitch: 5.00mm; Vertical; threaded flange || order number: 1776883 12A || order number: 1924415 16A (HC) -phoenix_contact connector MSTBV_01x02_GF_5.00mm -0 -2 -2 -Connector_Phoenix_MSTB -PhoenixContact_MSTBV_2,5_2-GF_1x02_P5.00mm_Vertical_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MSTBV_2,5/2-GF; number of pins: 02; pin pitch: 5.00mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776883 12A || order number: 1924415 16A (HC) -phoenix_contact connector MSTBV_01x02_GF_5.00mm_MH -0 -2 -2 -Connector_Phoenix_MSTB -PhoenixContact_MSTBV_2,5_3-GF-5,08_1x03_P5.08mm_Vertical_ThreadedFlange -Generic Phoenix Contact connector footprint for: MSTBV_2,5/3-GF-5,08; number of pins: 03; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1777086 12A || order number: 1924538 16A (HC) -phoenix_contact connector MSTBV_01x03_GF_5.08mm -0 -3 -3 -Connector_Phoenix_MSTB -PhoenixContact_MSTBV_2,5_3-GF-5,08_1x03_P5.08mm_Vertical_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MSTBV_2,5/3-GF-5,08; number of pins: 03; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1777086 12A || order number: 1924538 16A (HC) -phoenix_contact connector MSTBV_01x03_GF_5.08mm_MH -0 -3 -3 -Connector_Phoenix_MSTB -PhoenixContact_MSTBV_2,5_3-GF_1x03_P5.00mm_Vertical_ThreadedFlange -Generic Phoenix Contact connector footprint for: MSTBV_2,5/3-GF; number of pins: 03; pin pitch: 5.00mm; Vertical; threaded flange || order number: 1776896 12A || order number: 1924428 16A (HC) -phoenix_contact connector MSTBV_01x03_GF_5.00mm -0 -3 -3 -Connector_Phoenix_MSTB -PhoenixContact_MSTBV_2,5_3-GF_1x03_P5.00mm_Vertical_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MSTBV_2,5/3-GF; number of pins: 03; pin pitch: 5.00mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776896 12A || order number: 1924428 16A (HC) -phoenix_contact connector MSTBV_01x03_GF_5.00mm_MH -0 -3 -3 -Connector_Phoenix_MSTB -PhoenixContact_MSTBV_2,5_4-GF-5,08_1x04_P5.08mm_Vertical_ThreadedFlange -Generic Phoenix Contact connector footprint for: MSTBV_2,5/4-GF-5,08; number of pins: 04; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1777099 12A || order number: 1924541 16A (HC) -phoenix_contact connector MSTBV_01x04_GF_5.08mm -0 -4 -4 -Connector_Phoenix_MSTB -PhoenixContact_MSTBV_2,5_4-GF-5,08_1x04_P5.08mm_Vertical_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MSTBV_2,5/4-GF-5,08; number of pins: 04; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1777099 12A || order number: 1924541 16A (HC) -phoenix_contact connector MSTBV_01x04_GF_5.08mm_MH -0 -4 -4 -Connector_Phoenix_MSTB -PhoenixContact_MSTBV_2,5_4-GF_1x04_P5.00mm_Vertical_ThreadedFlange -Generic Phoenix Contact connector footprint for: MSTBV_2,5/4-GF; number of pins: 04; pin pitch: 5.00mm; Vertical; threaded flange || order number: 1776906 12A || order number: 1924431 16A (HC) -phoenix_contact connector MSTBV_01x04_GF_5.00mm -0 -4 -4 -Connector_Phoenix_MSTB -PhoenixContact_MSTBV_2,5_4-GF_1x04_P5.00mm_Vertical_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MSTBV_2,5/4-GF; number of pins: 04; pin pitch: 5.00mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776906 12A || order number: 1924431 16A (HC) -phoenix_contact connector MSTBV_01x04_GF_5.00mm_MH -0 -4 -4 -Connector_Phoenix_MSTB -PhoenixContact_MSTBV_2,5_5-GF-5,08_1x05_P5.08mm_Vertical_ThreadedFlange -Generic Phoenix Contact connector footprint for: MSTBV_2,5/5-GF-5,08; number of pins: 05; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1777109 12A || order number: 1924554 16A (HC) -phoenix_contact connector MSTBV_01x05_GF_5.08mm -0 -5 -5 -Connector_Phoenix_MSTB -PhoenixContact_MSTBV_2,5_5-GF-5,08_1x05_P5.08mm_Vertical_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MSTBV_2,5/5-GF-5,08; number of pins: 05; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1777109 12A || order number: 1924554 16A (HC) -phoenix_contact connector MSTBV_01x05_GF_5.08mm_MH -0 -5 -5 -Connector_Phoenix_MSTB -PhoenixContact_MSTBV_2,5_5-GF_1x05_P5.00mm_Vertical_ThreadedFlange -Generic Phoenix Contact connector footprint for: MSTBV_2,5/5-GF; number of pins: 05; pin pitch: 5.00mm; Vertical; threaded flange || order number: 1776919 12A || order number: 1924444 16A (HC) -phoenix_contact connector MSTBV_01x05_GF_5.00mm -0 -5 -5 -Connector_Phoenix_MSTB -PhoenixContact_MSTBV_2,5_5-GF_1x05_P5.00mm_Vertical_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MSTBV_2,5/5-GF; number of pins: 05; pin pitch: 5.00mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776919 12A || order number: 1924444 16A (HC) -phoenix_contact connector MSTBV_01x05_GF_5.00mm_MH -0 -5 -5 -Connector_Phoenix_MSTB -PhoenixContact_MSTBV_2,5_6-GF-5,08_1x06_P5.08mm_Vertical_ThreadedFlange -Generic Phoenix Contact connector footprint for: MSTBV_2,5/6-GF-5,08; number of pins: 06; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1777112 12A || order number: 1924567 16A (HC) -phoenix_contact connector MSTBV_01x06_GF_5.08mm -0 -6 -6 -Connector_Phoenix_MSTB -PhoenixContact_MSTBV_2,5_6-GF-5,08_1x06_P5.08mm_Vertical_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MSTBV_2,5/6-GF-5,08; number of pins: 06; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1777112 12A || order number: 1924567 16A (HC) -phoenix_contact connector MSTBV_01x06_GF_5.08mm_MH -0 -6 -6 -Connector_Phoenix_MSTB -PhoenixContact_MSTBV_2,5_6-GF_1x06_P5.00mm_Vertical_ThreadedFlange -Generic Phoenix Contact connector footprint for: MSTBV_2,5/6-GF; number of pins: 06; pin pitch: 5.00mm; Vertical; threaded flange || order number: 1776922 12A || order number: 1924457 16A (HC) -phoenix_contact connector MSTBV_01x06_GF_5.00mm -0 -6 -6 -Connector_Phoenix_MSTB -PhoenixContact_MSTBV_2,5_6-GF_1x06_P5.00mm_Vertical_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MSTBV_2,5/6-GF; number of pins: 06; pin pitch: 5.00mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776922 12A || order number: 1924457 16A (HC) -phoenix_contact connector MSTBV_01x06_GF_5.00mm_MH -0 -6 -6 -Connector_Phoenix_MSTB -PhoenixContact_MSTBV_2,5_7-GF-5,08_1x07_P5.08mm_Vertical_ThreadedFlange -Generic Phoenix Contact connector footprint for: MSTBV_2,5/7-GF-5,08; number of pins: 07; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1777125 12A || order number: 1924570 16A (HC) -phoenix_contact connector MSTBV_01x07_GF_5.08mm -0 -7 -7 -Connector_Phoenix_MSTB -PhoenixContact_MSTBV_2,5_7-GF-5,08_1x07_P5.08mm_Vertical_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MSTBV_2,5/7-GF-5,08; number of pins: 07; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1777125 12A || order number: 1924570 16A (HC) -phoenix_contact connector MSTBV_01x07_GF_5.08mm_MH -0 -7 -7 -Connector_Phoenix_MSTB -PhoenixContact_MSTBV_2,5_7-GF_1x07_P5.00mm_Vertical_ThreadedFlange -Generic Phoenix Contact connector footprint for: MSTBV_2,5/7-GF; number of pins: 07; pin pitch: 5.00mm; Vertical; threaded flange || order number: 1776935 12A || order number: 1924460 16A (HC) -phoenix_contact connector MSTBV_01x07_GF_5.00mm -0 -7 -7 -Connector_Phoenix_MSTB -PhoenixContact_MSTBV_2,5_7-GF_1x07_P5.00mm_Vertical_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MSTBV_2,5/7-GF; number of pins: 07; pin pitch: 5.00mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776935 12A || order number: 1924460 16A (HC) -phoenix_contact connector MSTBV_01x07_GF_5.00mm_MH -0 -7 -7 -Connector_Phoenix_MSTB -PhoenixContact_MSTBV_2,5_8-GF-5,08_1x08_P5.08mm_Vertical_ThreadedFlange -Generic Phoenix Contact connector footprint for: MSTBV_2,5/8-GF-5,08; number of pins: 08; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1777138 12A || order number: 1924583 16A (HC) -phoenix_contact connector MSTBV_01x08_GF_5.08mm -0 -8 -8 -Connector_Phoenix_MSTB -PhoenixContact_MSTBV_2,5_8-GF-5,08_1x08_P5.08mm_Vertical_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MSTBV_2,5/8-GF-5,08; number of pins: 08; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1777138 12A || order number: 1924583 16A (HC) -phoenix_contact connector MSTBV_01x08_GF_5.08mm_MH -0 -8 -8 -Connector_Phoenix_MSTB -PhoenixContact_MSTBV_2,5_8-GF_1x08_P5.00mm_Vertical_ThreadedFlange -Generic Phoenix Contact connector footprint for: MSTBV_2,5/8-GF; number of pins: 08; pin pitch: 5.00mm; Vertical; threaded flange || order number: 1776948 12A || order number: 1924473 16A (HC) -phoenix_contact connector MSTBV_01x08_GF_5.00mm -0 -8 -8 -Connector_Phoenix_MSTB -PhoenixContact_MSTBV_2,5_8-GF_1x08_P5.00mm_Vertical_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MSTBV_2,5/8-GF; number of pins: 08; pin pitch: 5.00mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776948 12A || order number: 1924473 16A (HC) -phoenix_contact connector MSTBV_01x08_GF_5.00mm_MH -0 -8 -8 -Connector_Phoenix_MSTB -PhoenixContact_MSTBV_2,5_9-GF-5,08_1x09_P5.08mm_Vertical_ThreadedFlange -Generic Phoenix Contact connector footprint for: MSTBV_2,5/9-GF-5,08; number of pins: 09; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1777141 12A || order number: 1924596 16A (HC) -phoenix_contact connector MSTBV_01x09_GF_5.08mm -0 -9 -9 -Connector_Phoenix_MSTB -PhoenixContact_MSTBV_2,5_9-GF-5,08_1x09_P5.08mm_Vertical_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MSTBV_2,5/9-GF-5,08; number of pins: 09; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1777141 12A || order number: 1924596 16A (HC) -phoenix_contact connector MSTBV_01x09_GF_5.08mm_MH -0 -9 -9 -Connector_Phoenix_MSTB -PhoenixContact_MSTBV_2,5_9-GF_1x09_P5.00mm_Vertical_ThreadedFlange -Generic Phoenix Contact connector footprint for: MSTBV_2,5/9-GF; number of pins: 09; pin pitch: 5.00mm; Vertical; threaded flange || order number: 1776951 12A || order number: 1924486 16A (HC) -phoenix_contact connector MSTBV_01x09_GF_5.00mm -0 -9 -9 -Connector_Phoenix_MSTB -PhoenixContact_MSTBV_2,5_9-GF_1x09_P5.00mm_Vertical_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MSTBV_2,5/9-GF; number of pins: 09; pin pitch: 5.00mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776951 12A || order number: 1924486 16A (HC) -phoenix_contact connector MSTBV_01x09_GF_5.00mm_MH -0 -9 -9 -Connector_Phoenix_MSTB -PhoenixContact_MSTBV_2,5_10-GF-5,08_1x10_P5.08mm_Vertical_ThreadedFlange -Generic Phoenix Contact connector footprint for: MSTBV_2,5/10-GF-5,08; number of pins: 10; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1777154 12A || order number: 1924606 16A (HC) -phoenix_contact connector MSTBV_01x10_GF_5.08mm -0 -10 -10 -Connector_Phoenix_MSTB -PhoenixContact_MSTBV_2,5_10-GF-5,08_1x10_P5.08mm_Vertical_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MSTBV_2,5/10-GF-5,08; number of pins: 10; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1777154 12A || order number: 1924606 16A (HC) -phoenix_contact connector MSTBV_01x10_GF_5.08mm_MH -0 -10 -10 -Connector_Phoenix_MSTB -PhoenixContact_MSTBV_2,5_10-GF_1x10_P5.00mm_Vertical_ThreadedFlange -Generic Phoenix Contact connector footprint for: MSTBV_2,5/10-GF; number of pins: 10; pin pitch: 5.00mm; Vertical; threaded flange || order number: 1776964 12A || order number: 1924499 16A (HC) -phoenix_contact connector MSTBV_01x10_GF_5.00mm -0 -10 -10 -Connector_Phoenix_MSTB -PhoenixContact_MSTBV_2,5_10-GF_1x10_P5.00mm_Vertical_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MSTBV_2,5/10-GF; number of pins: 10; pin pitch: 5.00mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776964 12A || order number: 1924499 16A (HC) -phoenix_contact connector MSTBV_01x10_GF_5.00mm_MH -0 -10 -10 -Connector_Phoenix_MSTB -PhoenixContact_MSTBV_2,5_11-GF-5,08_1x11_P5.08mm_Vertical_ThreadedFlange -Generic Phoenix Contact connector footprint for: MSTBV_2,5/11-GF-5,08; number of pins: 11; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1777167 12A || order number: 1924619 16A (HC) -phoenix_contact connector MSTBV_01x11_GF_5.08mm -0 -11 -11 -Connector_Phoenix_MSTB -PhoenixContact_MSTBV_2,5_11-GF-5,08_1x11_P5.08mm_Vertical_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MSTBV_2,5/11-GF-5,08; number of pins: 11; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1777167 12A || order number: 1924619 16A (HC) -phoenix_contact connector MSTBV_01x11_GF_5.08mm_MH -0 -11 -11 -Connector_Phoenix_MSTB -PhoenixContact_MSTBV_2,5_11-GF_1x11_P5.00mm_Vertical_ThreadedFlange -Generic Phoenix Contact connector footprint for: MSTBV_2,5/11-GF; number of pins: 11; pin pitch: 5.00mm; Vertical; threaded flange || order number: 1776977 12A || order number: 1924509 16A (HC) -phoenix_contact connector MSTBV_01x11_GF_5.00mm -0 -11 -11 -Connector_Phoenix_MSTB -PhoenixContact_MSTBV_2,5_11-GF_1x11_P5.00mm_Vertical_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MSTBV_2,5/11-GF; number of pins: 11; pin pitch: 5.00mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776977 12A || order number: 1924509 16A (HC) -phoenix_contact connector MSTBV_01x11_GF_5.00mm_MH -0 -11 -11 -Connector_Phoenix_MSTB -PhoenixContact_MSTBV_2,5_12-GF-5,08_1x12_P5.08mm_Vertical_ThreadedFlange -Generic Phoenix Contact connector footprint for: MSTBV_2,5/12-GF-5,08; number of pins: 12; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1777170 12A || order number: 1924622 16A (HC) -phoenix_contact connector MSTBV_01x12_GF_5.08mm -0 -12 -12 -Connector_Phoenix_MSTB -PhoenixContact_MSTBV_2,5_12-GF-5,08_1x12_P5.08mm_Vertical_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MSTBV_2,5/12-GF-5,08; number of pins: 12; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1777170 12A || order number: 1924622 16A (HC) -phoenix_contact connector MSTBV_01x12_GF_5.08mm_MH -0 -12 -12 -Connector_Phoenix_MSTB -PhoenixContact_MSTBV_2,5_12-GF_1x12_P5.00mm_Vertical_ThreadedFlange -Generic Phoenix Contact connector footprint for: MSTBV_2,5/12-GF; number of pins: 12; pin pitch: 5.00mm; Vertical; threaded flange || order number: 1776980 12A || order number: 1924512 16A (HC) -phoenix_contact connector MSTBV_01x12_GF_5.00mm -0 -12 -12 -Connector_Phoenix_MSTB -PhoenixContact_MSTBV_2,5_12-GF_1x12_P5.00mm_Vertical_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MSTBV_2,5/12-GF; number of pins: 12; pin pitch: 5.00mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776980 12A || order number: 1924512 16A (HC) -phoenix_contact connector MSTBV_01x12_GF_5.00mm_MH -0 -12 -12 -Connector_Phoenix_MSTB -PhoenixContact_MSTBV_2,5_13-GF-5,08_1x13_P5.08mm_Vertical_ThreadedFlange -Generic Phoenix Contact connector footprint for: MSTBV_2,5/13-GF-5,08; number of pins: 13; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1777183 12A -phoenix_contact connector MSTBV_01x13_GF_5.08mm -0 -13 -13 -Connector_Phoenix_MSTB -PhoenixContact_MSTBV_2,5_13-GF-5,08_1x13_P5.08mm_Vertical_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MSTBV_2,5/13-GF-5,08; number of pins: 13; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1777183 12A -phoenix_contact connector MSTBV_01x13_GF_5.08mm_MH -0 -13 -13 -Connector_Phoenix_MSTB -PhoenixContact_MSTBV_2,5_13-GF_1x13_P5.00mm_Vertical_ThreadedFlange -Generic Phoenix Contact connector footprint for: MSTBV_2,5/13-GF; number of pins: 13; pin pitch: 5.00mm; Vertical; threaded flange || order number: 1776993 12A -phoenix_contact connector MSTBV_01x13_GF_5.00mm -0 -13 -13 -Connector_Phoenix_MSTB -PhoenixContact_MSTBV_2,5_13-GF_1x13_P5.00mm_Vertical_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MSTBV_2,5/13-GF; number of pins: 13; pin pitch: 5.00mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776993 12A -phoenix_contact connector MSTBV_01x13_GF_5.00mm_MH -0 -13 -13 -Connector_Phoenix_MSTB -PhoenixContact_MSTBV_2,5_14-GF-5,08_1x14_P5.08mm_Vertical_ThreadedFlange -Generic Phoenix Contact connector footprint for: MSTBV_2,5/14-GF-5,08; number of pins: 14; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1777196 12A -phoenix_contact connector MSTBV_01x14_GF_5.08mm -0 -14 -14 -Connector_Phoenix_MSTB -PhoenixContact_MSTBV_2,5_14-GF-5,08_1x14_P5.08mm_Vertical_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MSTBV_2,5/14-GF-5,08; number of pins: 14; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1777196 12A -phoenix_contact connector MSTBV_01x14_GF_5.08mm_MH -0 -14 -14 -Connector_Phoenix_MSTB -PhoenixContact_MSTBV_2,5_14-GF_1x14_P5.00mm_Vertical_ThreadedFlange -Generic Phoenix Contact connector footprint for: MSTBV_2,5/14-GF; number of pins: 14; pin pitch: 5.00mm; Vertical; threaded flange || order number: 1776002 12A -phoenix_contact connector MSTBV_01x14_GF_5.00mm -0 -14 -14 -Connector_Phoenix_MSTB -PhoenixContact_MSTBV_2,5_14-GF_1x14_P5.00mm_Vertical_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MSTBV_2,5/14-GF; number of pins: 14; pin pitch: 5.00mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776002 12A -phoenix_contact connector MSTBV_01x14_GF_5.00mm_MH -0 -14 -14 -Connector_Phoenix_MSTB -PhoenixContact_MSTBV_2,5_15-GF-5,08_1x15_P5.08mm_Vertical_ThreadedFlange -Generic Phoenix Contact connector footprint for: MSTBV_2,5/15-GF-5,08; number of pins: 15; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1777206 12A -phoenix_contact connector MSTBV_01x15_GF_5.08mm -0 -15 -15 -Connector_Phoenix_MSTB -PhoenixContact_MSTBV_2,5_15-GF-5,08_1x15_P5.08mm_Vertical_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MSTBV_2,5/15-GF-5,08; number of pins: 15; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1777206 12A -phoenix_contact connector MSTBV_01x15_GF_5.08mm_MH -0 -15 -15 -Connector_Phoenix_MSTB -PhoenixContact_MSTBV_2,5_15-GF_1x15_P5.00mm_Vertical_ThreadedFlange -Generic Phoenix Contact connector footprint for: MSTBV_2,5/15-GF; number of pins: 15; pin pitch: 5.00mm; Vertical; threaded flange || order number: 1776015 12A -phoenix_contact connector MSTBV_01x15_GF_5.00mm -0 -15 -15 -Connector_Phoenix_MSTB -PhoenixContact_MSTBV_2,5_15-GF_1x15_P5.00mm_Vertical_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MSTBV_2,5/15-GF; number of pins: 15; pin pitch: 5.00mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776015 12A -phoenix_contact connector MSTBV_01x15_GF_5.00mm_MH -0 -15 -15 -Connector_Phoenix_MSTB -PhoenixContact_MSTBV_2,5_16-GF-5,08_1x16_P5.08mm_Vertical_ThreadedFlange -Generic Phoenix Contact connector footprint for: MSTBV_2,5/16-GF-5,08; number of pins: 16; pin pitch: 5.08mm; Vertical; threaded flange || order number: 1777219 12A -phoenix_contact connector MSTBV_01x16_GF_5.08mm -0 -16 -16 -Connector_Phoenix_MSTB -PhoenixContact_MSTBV_2,5_16-GF-5,08_1x16_P5.08mm_Vertical_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MSTBV_2,5/16-GF-5,08; number of pins: 16; pin pitch: 5.08mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1777219 12A -phoenix_contact connector MSTBV_01x16_GF_5.08mm_MH -0 -16 -16 -Connector_Phoenix_MSTB -PhoenixContact_MSTBV_2,5_16-GF_1x16_P5.00mm_Vertical_ThreadedFlange -Generic Phoenix Contact connector footprint for: MSTBV_2,5/16-GF; number of pins: 16; pin pitch: 5.00mm; Vertical; threaded flange || order number: 1776028 12A -phoenix_contact connector MSTBV_01x16_GF_5.00mm -0 -16 -16 -Connector_Phoenix_MSTB -PhoenixContact_MSTBV_2,5_16-GF_1x16_P5.00mm_Vertical_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MSTBV_2,5/16-GF; number of pins: 16; pin pitch: 5.00mm; Vertical; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776028 12A -phoenix_contact connector MSTBV_01x16_GF_5.00mm_MH -0 -16 -16 -Connector_Phoenix_MSTB -PhoenixContact_MSTB_2,5_2-GF-5,08_1x02_P5.08mm_Horizontal_ThreadedFlange -Generic Phoenix Contact connector footprint for: MSTB_2,5/2-GF-5,08; number of pins: 02; pin pitch: 5.08mm; Angled; threaded flange || order number: 1776508 12A || order number: 1924088 16A (HC) -phoenix_contact connector MSTB_01x02_GF_5.08mm -0 -2 -2 -Connector_Phoenix_MSTB -PhoenixContact_MSTB_2,5_2-GF-5,08_1x02_P5.08mm_Horizontal_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MSTB_2,5/2-GF-5,08; number of pins: 02; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776508 12A || order number: 1924088 16A (HC) -phoenix_contact connector MSTB_01x02_GF_5.08mm_MH -0 -2 -2 -Connector_Phoenix_MSTB -PhoenixContact_MSTB_2,5_2-GF_1x02_P5.00mm_Horizontal_ThreadedFlange -Generic Phoenix Contact connector footprint for: MSTB_2,5/2-GF; number of pins: 02; pin pitch: 5.00mm; Angled; threaded flange || order number: 1776692 12A || order number: 1923979 16A (HC) -phoenix_contact connector MSTB_01x02_GF_5.00mm -0 -2 -2 -Connector_Phoenix_MSTB -PhoenixContact_MSTB_2,5_2-GF_1x02_P5.00mm_Horizontal_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MSTB_2,5/2-GF; number of pins: 02; pin pitch: 5.00mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776692 12A || order number: 1923979 16A (HC) -phoenix_contact connector MSTB_01x02_GF_5.00mm_MH -0 -2 -2 -Connector_Phoenix_MSTB -PhoenixContact_MSTB_2,5_3-GF-5,08_1x03_P5.08mm_Horizontal_ThreadedFlange -Generic Phoenix Contact connector footprint for: MSTB_2,5/3-GF-5,08; number of pins: 03; pin pitch: 5.08mm; Angled; threaded flange || order number: 1776511 12A || order number: 1924091 16A (HC) -phoenix_contact connector MSTB_01x03_GF_5.08mm -0 -3 -3 -Connector_Phoenix_MSTB -PhoenixContact_MSTB_2,5_3-GF-5,08_1x03_P5.08mm_Horizontal_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MSTB_2,5/3-GF-5,08; number of pins: 03; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776511 12A || order number: 1924091 16A (HC) -phoenix_contact connector MSTB_01x03_GF_5.08mm_MH -0 -3 -3 -Connector_Phoenix_MSTB -PhoenixContact_MSTB_2,5_3-GF_1x03_P5.00mm_Horizontal_ThreadedFlange -Generic Phoenix Contact connector footprint for: MSTB_2,5/3-GF; number of pins: 03; pin pitch: 5.00mm; Angled; threaded flange || order number: 1776702 12A || order number: 1923982 16A (HC) -phoenix_contact connector MSTB_01x03_GF_5.00mm -0 -3 -3 -Connector_Phoenix_MSTB -PhoenixContact_MSTB_2,5_3-GF_1x03_P5.00mm_Horizontal_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MSTB_2,5/3-GF; number of pins: 03; pin pitch: 5.00mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776702 12A || order number: 1923982 16A (HC) -phoenix_contact connector MSTB_01x03_GF_5.00mm_MH -0 -3 -3 -Connector_Phoenix_MSTB -PhoenixContact_MSTB_2,5_4-GF-5,08_1x04_P5.08mm_Horizontal_ThreadedFlange -Generic Phoenix Contact connector footprint for: MSTB_2,5/4-GF-5,08; number of pins: 04; pin pitch: 5.08mm; Angled; threaded flange || order number: 1776524 12A || order number: 1924101 16A (HC) -phoenix_contact connector MSTB_01x04_GF_5.08mm -0 -4 -4 -Connector_Phoenix_MSTB -PhoenixContact_MSTB_2,5_4-GF-5,08_1x04_P5.08mm_Horizontal_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MSTB_2,5/4-GF-5,08; number of pins: 04; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776524 12A || order number: 1924101 16A (HC) -phoenix_contact connector MSTB_01x04_GF_5.08mm_MH -0 -4 -4 -Connector_Phoenix_MSTB -PhoenixContact_MSTB_2,5_4-GF_1x04_P5.00mm_Horizontal_ThreadedFlange -Generic Phoenix Contact connector footprint for: MSTB_2,5/4-GF; number of pins: 04; pin pitch: 5.00mm; Angled; threaded flange || order number: 1776715 12A || order number: 1923995 16A (HC) -phoenix_contact connector MSTB_01x04_GF_5.00mm -0 -4 -4 -Connector_Phoenix_MSTB -PhoenixContact_MSTB_2,5_4-GF_1x04_P5.00mm_Horizontal_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MSTB_2,5/4-GF; number of pins: 04; pin pitch: 5.00mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776715 12A || order number: 1923995 16A (HC) -phoenix_contact connector MSTB_01x04_GF_5.00mm_MH -0 -4 -4 -Connector_Phoenix_MSTB -PhoenixContact_MSTB_2,5_5-GF-5,08_1x05_P5.08mm_Horizontal_ThreadedFlange -Generic Phoenix Contact connector footprint for: MSTB_2,5/5-GF-5,08; number of pins: 05; pin pitch: 5.08mm; Angled; threaded flange || order number: 1776537 12A || order number: 1924114 16A (HC) -phoenix_contact connector MSTB_01x05_GF_5.08mm -0 -5 -5 -Connector_Phoenix_MSTB -PhoenixContact_MSTB_2,5_5-GF-5,08_1x05_P5.08mm_Horizontal_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MSTB_2,5/5-GF-5,08; number of pins: 05; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776537 12A || order number: 1924114 16A (HC) -phoenix_contact connector MSTB_01x05_GF_5.08mm_MH -0 -5 -5 -Connector_Phoenix_MSTB -PhoenixContact_MSTB_2,5_5-GF_1x05_P5.00mm_Horizontal_ThreadedFlange -Generic Phoenix Contact connector footprint for: MSTB_2,5/5-GF; number of pins: 05; pin pitch: 5.00mm; Angled; threaded flange || order number: 1776728 12A || order number: 1924004 16A (HC) -phoenix_contact connector MSTB_01x05_GF_5.00mm -0 -5 -5 -Connector_Phoenix_MSTB -PhoenixContact_MSTB_2,5_5-GF_1x05_P5.00mm_Horizontal_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MSTB_2,5/5-GF; number of pins: 05; pin pitch: 5.00mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776728 12A || order number: 1924004 16A (HC) -phoenix_contact connector MSTB_01x05_GF_5.00mm_MH -0 -5 -5 -Connector_Phoenix_MSTB -PhoenixContact_MSTB_2,5_6-GF-5,08_1x06_P5.08mm_Horizontal_ThreadedFlange -Generic Phoenix Contact connector footprint for: MSTB_2,5/6-GF-5,08; number of pins: 06; pin pitch: 5.08mm; Angled; threaded flange || order number: 1776540 12A || order number: 1924127 16A (HC) -phoenix_contact connector MSTB_01x06_GF_5.08mm -0 -6 -6 -Connector_Phoenix_MSTB -PhoenixContact_MSTB_2,5_6-GF-5,08_1x06_P5.08mm_Horizontal_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MSTB_2,5/6-GF-5,08; number of pins: 06; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776540 12A || order number: 1924127 16A (HC) -phoenix_contact connector MSTB_01x06_GF_5.08mm_MH -0 -6 -6 -Connector_Phoenix_MSTB -PhoenixContact_MSTB_2,5_6-GF_1x06_P5.00mm_Horizontal_ThreadedFlange -Generic Phoenix Contact connector footprint for: MSTB_2,5/6-GF; number of pins: 06; pin pitch: 5.00mm; Angled; threaded flange || order number: 1776731 12A || order number: 1924017 16A (HC) -phoenix_contact connector MSTB_01x06_GF_5.00mm -0 -6 -6 -Connector_Phoenix_MSTB -PhoenixContact_MSTB_2,5_6-GF_1x06_P5.00mm_Horizontal_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MSTB_2,5/6-GF; number of pins: 06; pin pitch: 5.00mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776731 12A || order number: 1924017 16A (HC) -phoenix_contact connector MSTB_01x06_GF_5.00mm_MH -0 -6 -6 -Connector_Phoenix_MSTB -PhoenixContact_MSTB_2,5_7-GF-5,08_1x07_P5.08mm_Horizontal_ThreadedFlange -Generic Phoenix Contact connector footprint for: MSTB_2,5/7-GF-5,08; number of pins: 07; pin pitch: 5.08mm; Angled; threaded flange || order number: 1776553 12A || order number: 1924130 16A (HC) -phoenix_contact connector MSTB_01x07_GF_5.08mm -0 -7 -7 -Connector_Phoenix_MSTB -PhoenixContact_MSTB_2,5_7-GF-5,08_1x07_P5.08mm_Horizontal_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MSTB_2,5/7-GF-5,08; number of pins: 07; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776553 12A || order number: 1924130 16A (HC) -phoenix_contact connector MSTB_01x07_GF_5.08mm_MH -0 -7 -7 -Connector_Phoenix_MSTB -PhoenixContact_MSTB_2,5_7-GF_1x07_P5.00mm_Horizontal_ThreadedFlange -Generic Phoenix Contact connector footprint for: MSTB_2,5/7-GF; number of pins: 07; pin pitch: 5.00mm; Angled; threaded flange || order number: 1776744 12A || order number: 1924020 16A (HC) -phoenix_contact connector MSTB_01x07_GF_5.00mm -0 -7 -7 -Connector_Phoenix_MSTB -PhoenixContact_MSTB_2,5_7-GF_1x07_P5.00mm_Horizontal_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MSTB_2,5/7-GF; number of pins: 07; pin pitch: 5.00mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776744 12A || order number: 1924020 16A (HC) -phoenix_contact connector MSTB_01x07_GF_5.00mm_MH -0 -7 -7 -Connector_Phoenix_MSTB -PhoenixContact_MSTB_2,5_8-GF-5,08_1x08_P5.08mm_Horizontal_ThreadedFlange -Generic Phoenix Contact connector footprint for: MSTB_2,5/8-GF-5,08; number of pins: 08; pin pitch: 5.08mm; Angled; threaded flange || order number: 1776566 12A || order number: 1924143 16A (HC) -phoenix_contact connector MSTB_01x08_GF_5.08mm -0 -8 -8 -Connector_Phoenix_MSTB -PhoenixContact_MSTB_2,5_8-GF-5,08_1x08_P5.08mm_Horizontal_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MSTB_2,5/8-GF-5,08; number of pins: 08; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776566 12A || order number: 1924143 16A (HC) -phoenix_contact connector MSTB_01x08_GF_5.08mm_MH -0 -8 -8 -Connector_Phoenix_MSTB -PhoenixContact_MSTB_2,5_8-GF_1x08_P5.00mm_Horizontal_ThreadedFlange -Generic Phoenix Contact connector footprint for: MSTB_2,5/8-GF; number of pins: 08; pin pitch: 5.00mm; Angled; threaded flange || order number: 1776757 12A || order number: 1924033 16A (HC) -phoenix_contact connector MSTB_01x08_GF_5.00mm -0 -8 -8 -Connector_Phoenix_MSTB -PhoenixContact_MSTB_2,5_8-GF_1x08_P5.00mm_Horizontal_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MSTB_2,5/8-GF; number of pins: 08; pin pitch: 5.00mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776757 12A || order number: 1924033 16A (HC) -phoenix_contact connector MSTB_01x08_GF_5.00mm_MH -0 -8 -8 -Connector_Phoenix_MSTB -PhoenixContact_MSTB_2,5_9-GF-5,08_1x09_P5.08mm_Horizontal_ThreadedFlange -Generic Phoenix Contact connector footprint for: MSTB_2,5/9-GF-5,08; number of pins: 09; pin pitch: 5.08mm; Angled; threaded flange || order number: 1776579 12A || order number: 1924156 16A (HC) -phoenix_contact connector MSTB_01x09_GF_5.08mm -0 -9 -9 -Connector_Phoenix_MSTB -PhoenixContact_MSTB_2,5_9-GF-5,08_1x09_P5.08mm_Horizontal_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MSTB_2,5/9-GF-5,08; number of pins: 09; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776579 12A || order number: 1924156 16A (HC) -phoenix_contact connector MSTB_01x09_GF_5.08mm_MH -0 -9 -9 -Connector_Phoenix_MSTB -PhoenixContact_MSTB_2,5_9-GF_1x09_P5.00mm_Horizontal_ThreadedFlange -Generic Phoenix Contact connector footprint for: MSTB_2,5/9-GF; number of pins: 09; pin pitch: 5.00mm; Angled; threaded flange || order number: 1776760 12A || order number: 1924046 16A (HC) -phoenix_contact connector MSTB_01x09_GF_5.00mm -0 -9 -9 -Connector_Phoenix_MSTB -PhoenixContact_MSTB_2,5_9-GF_1x09_P5.00mm_Horizontal_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MSTB_2,5/9-GF; number of pins: 09; pin pitch: 5.00mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776760 12A || order number: 1924046 16A (HC) -phoenix_contact connector MSTB_01x09_GF_5.00mm_MH -0 -9 -9 -Connector_Phoenix_MSTB -PhoenixContact_MSTB_2,5_10-GF-5,08_1x10_P5.08mm_Horizontal_ThreadedFlange -Generic Phoenix Contact connector footprint for: MSTB_2,5/10-GF-5,08; number of pins: 10; pin pitch: 5.08mm; Angled; threaded flange || order number: 1776582 12A || order number: 1924169 16A (HC) -phoenix_contact connector MSTB_01x10_GF_5.08mm -0 -10 -10 -Connector_Phoenix_MSTB -PhoenixContact_MSTB_2,5_10-GF-5,08_1x10_P5.08mm_Horizontal_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MSTB_2,5/10-GF-5,08; number of pins: 10; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776582 12A || order number: 1924169 16A (HC) -phoenix_contact connector MSTB_01x10_GF_5.08mm_MH -0 -10 -10 -Connector_Phoenix_MSTB -PhoenixContact_MSTB_2,5_10-GF_1x10_P5.00mm_Horizontal_ThreadedFlange -Generic Phoenix Contact connector footprint for: MSTB_2,5/10-GF; number of pins: 10; pin pitch: 5.00mm; Angled; threaded flange || order number: 1776773 12A || order number: 1924059 16A (HC) -phoenix_contact connector MSTB_01x10_GF_5.00mm -0 -10 -10 -Connector_Phoenix_MSTB -PhoenixContact_MSTB_2,5_10-GF_1x10_P5.00mm_Horizontal_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MSTB_2,5/10-GF; number of pins: 10; pin pitch: 5.00mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776773 12A || order number: 1924059 16A (HC) -phoenix_contact connector MSTB_01x10_GF_5.00mm_MH -0 -10 -10 -Connector_Phoenix_MSTB -PhoenixContact_MSTB_2,5_11-GF-5,08_1x11_P5.08mm_Horizontal_ThreadedFlange -Generic Phoenix Contact connector footprint for: MSTB_2,5/11-GF-5,08; number of pins: 11; pin pitch: 5.08mm; Angled; threaded flange || order number: 1776595 12A || order number: 1924172 16A (HC) -phoenix_contact connector MSTB_01x11_GF_5.08mm -0 -11 -11 -Connector_Phoenix_MSTB -PhoenixContact_MSTB_2,5_11-GF-5,08_1x11_P5.08mm_Horizontal_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MSTB_2,5/11-GF-5,08; number of pins: 11; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776595 12A || order number: 1924172 16A (HC) -phoenix_contact connector MSTB_01x11_GF_5.08mm_MH -0 -11 -11 -Connector_Phoenix_MSTB -PhoenixContact_MSTB_2,5_11-GF_1x11_P5.00mm_Horizontal_ThreadedFlange -Generic Phoenix Contact connector footprint for: MSTB_2,5/11-GF; number of pins: 11; pin pitch: 5.00mm; Angled; threaded flange || order number: 1776786 12A || order number: 1924062 16A (HC) -phoenix_contact connector MSTB_01x11_GF_5.00mm -0 -11 -11 -Connector_Phoenix_MSTB -PhoenixContact_MSTB_2,5_11-GF_1x11_P5.00mm_Horizontal_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MSTB_2,5/11-GF; number of pins: 11; pin pitch: 5.00mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776786 12A || order number: 1924062 16A (HC) -phoenix_contact connector MSTB_01x11_GF_5.00mm_MH -0 -11 -11 -Connector_Phoenix_MSTB -PhoenixContact_MSTB_2,5_12-GF-5,08_1x12_P5.08mm_Horizontal_ThreadedFlange -Generic Phoenix Contact connector footprint for: MSTB_2,5/12-GF-5,08; number of pins: 12; pin pitch: 5.08mm; Angled; threaded flange || order number: 1776605 12A || order number: 1924185 16A (HC) -phoenix_contact connector MSTB_01x12_GF_5.08mm -0 -12 -12 -Connector_Phoenix_MSTB -PhoenixContact_MSTB_2,5_12-GF-5,08_1x12_P5.08mm_Horizontal_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MSTB_2,5/12-GF-5,08; number of pins: 12; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776605 12A || order number: 1924185 16A (HC) -phoenix_contact connector MSTB_01x12_GF_5.08mm_MH -0 -12 -12 -Connector_Phoenix_MSTB -PhoenixContact_MSTB_2,5_12-GF_1x12_P5.00mm_Horizontal_ThreadedFlange -Generic Phoenix Contact connector footprint for: MSTB_2,5/12-GF; number of pins: 12; pin pitch: 5.00mm; Angled; threaded flange || order number: 1776799 12A || order number: 1924075 16A (HC) -phoenix_contact connector MSTB_01x12_GF_5.00mm -0 -12 -12 -Connector_Phoenix_MSTB -PhoenixContact_MSTB_2,5_12-GF_1x12_P5.00mm_Horizontal_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MSTB_2,5/12-GF; number of pins: 12; pin pitch: 5.00mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776799 12A || order number: 1924075 16A (HC) -phoenix_contact connector MSTB_01x12_GF_5.00mm_MH -0 -12 -12 -Connector_Phoenix_MSTB -PhoenixContact_MSTB_2,5_13-GF-5,08_1x13_P5.08mm_Horizontal_ThreadedFlange -Generic Phoenix Contact connector footprint for: MSTB_2,5/13-GF-5,08; number of pins: 13; pin pitch: 5.08mm; Angled; threaded flange || order number: 1776618 12A -phoenix_contact connector MSTB_01x13_GF_5.08mm -0 -13 -13 -Connector_Phoenix_MSTB -PhoenixContact_MSTB_2,5_13-GF-5,08_1x13_P5.08mm_Horizontal_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MSTB_2,5/13-GF-5,08; number of pins: 13; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776618 12A -phoenix_contact connector MSTB_01x13_GF_5.08mm_MH -0 -13 -13 -Connector_Phoenix_MSTB -PhoenixContact_MSTB_2,5_13-GF_1x13_P5.00mm_Horizontal_ThreadedFlange -Generic Phoenix Contact connector footprint for: MSTB_2,5/13-GF; number of pins: 13; pin pitch: 5.00mm; Angled; threaded flange || order number: 1776809 12A -phoenix_contact connector MSTB_01x13_GF_5.00mm -0 -13 -13 -Connector_Phoenix_MSTB -PhoenixContact_MSTB_2,5_13-GF_1x13_P5.00mm_Horizontal_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MSTB_2,5/13-GF; number of pins: 13; pin pitch: 5.00mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776809 12A -phoenix_contact connector MSTB_01x13_GF_5.00mm_MH -0 -13 -13 -Connector_Phoenix_MSTB -PhoenixContact_MSTB_2,5_14-GF-5,08_1x14_P5.08mm_Horizontal_ThreadedFlange -Generic Phoenix Contact connector footprint for: MSTB_2,5/14-GF-5,08; number of pins: 14; pin pitch: 5.08mm; Angled; threaded flange || order number: 1776621 12A -phoenix_contact connector MSTB_01x14_GF_5.08mm -0 -14 -14 -Connector_Phoenix_MSTB -PhoenixContact_MSTB_2,5_14-GF-5,08_1x14_P5.08mm_Horizontal_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MSTB_2,5/14-GF-5,08; number of pins: 14; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776621 12A -phoenix_contact connector MSTB_01x14_GF_5.08mm_MH -0 -14 -14 -Connector_Phoenix_MSTB -PhoenixContact_MSTB_2,5_14-GF_1x14_P5.00mm_Horizontal_ThreadedFlange -Generic Phoenix Contact connector footprint for: MSTB_2,5/14-GF; number of pins: 14; pin pitch: 5.00mm; Angled; threaded flange || order number: 1776812 12A -phoenix_contact connector MSTB_01x14_GF_5.00mm -0 -14 -14 -Connector_Phoenix_MSTB -PhoenixContact_MSTB_2,5_14-GF_1x14_P5.00mm_Horizontal_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MSTB_2,5/14-GF; number of pins: 14; pin pitch: 5.00mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776812 12A -phoenix_contact connector MSTB_01x14_GF_5.00mm_MH -0 -14 -14 -Connector_Phoenix_MSTB -PhoenixContact_MSTB_2,5_15-GF-5,08_1x15_P5.08mm_Horizontal_ThreadedFlange -Generic Phoenix Contact connector footprint for: MSTB_2,5/15-GF-5,08; number of pins: 15; pin pitch: 5.08mm; Angled; threaded flange || order number: 1776634 12A -phoenix_contact connector MSTB_01x15_GF_5.08mm -0 -15 -15 -Connector_Phoenix_MSTB -PhoenixContact_MSTB_2,5_15-GF-5,08_1x15_P5.08mm_Horizontal_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MSTB_2,5/15-GF-5,08; number of pins: 15; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776634 12A -phoenix_contact connector MSTB_01x15_GF_5.08mm_MH -0 -15 -15 -Connector_Phoenix_MSTB -PhoenixContact_MSTB_2,5_15-GF_1x15_P5.00mm_Horizontal_ThreadedFlange -Generic Phoenix Contact connector footprint for: MSTB_2,5/15-GF; number of pins: 15; pin pitch: 5.00mm; Angled; threaded flange || order number: 1776825 12A -phoenix_contact connector MSTB_01x15_GF_5.00mm -0 -15 -15 -Connector_Phoenix_MSTB -PhoenixContact_MSTB_2,5_15-GF_1x15_P5.00mm_Horizontal_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MSTB_2,5/15-GF; number of pins: 15; pin pitch: 5.00mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776825 12A -phoenix_contact connector MSTB_01x15_GF_5.00mm_MH -0 -15 -15 -Connector_Phoenix_MSTB -PhoenixContact_MSTB_2,5_16-GF-5,08_1x16_P5.08mm_Horizontal_ThreadedFlange -Generic Phoenix Contact connector footprint for: MSTB_2,5/16-GF-5,08; number of pins: 16; pin pitch: 5.08mm; Angled; threaded flange || order number: 1776647 12A -phoenix_contact connector MSTB_01x16_GF_5.08mm -0 -16 -16 -Connector_Phoenix_MSTB -PhoenixContact_MSTB_2,5_16-GF-5,08_1x16_P5.08mm_Horizontal_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MSTB_2,5/16-GF-5,08; number of pins: 16; pin pitch: 5.08mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776647 12A -phoenix_contact connector MSTB_01x16_GF_5.08mm_MH -0 -16 -16 -Connector_Phoenix_MSTB -PhoenixContact_MSTB_2,5_16-GF_1x16_P5.00mm_Horizontal_ThreadedFlange -Generic Phoenix Contact connector footprint for: MSTB_2,5/16-GF; number of pins: 16; pin pitch: 5.00mm; Angled; threaded flange || order number: 1776838 12A -phoenix_contact connector MSTB_01x16_GF_5.00mm -0 -16 -16 -Connector_Phoenix_MSTB -PhoenixContact_MSTB_2,5_16-GF_1x16_P5.00mm_Horizontal_ThreadedFlange_MountHole -Generic Phoenix Contact connector footprint for: MSTB_2,5/16-GF; number of pins: 16; pin pitch: 5.00mm; Angled; threaded flange; footprint includes mount hole for mounting screw: ISO 1481-ST 2.2x6.5 C or ISO 7049-ST 2.2x6.5 C (http://www.fasteners.eu/standards/ISO/7049/) || order number: 1776838 12A -phoenix_contact connector MSTB_01x16_GF_5.00mm_MH -0 -16 -16 -Connector_Phoenix_SPT -PhoenixContact_SPT_1.5_2-H-3.5_1x02_P3.5mm_Horizontal -Connector Phoenix Contact, SPT 1.5/2-H-3.5 Terminal Block, 1990737 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1990737), generated with kicad-footprint-generator -Connector Phoenix Contact SPT 1.5/2-H-3.5 1990737 -0 -4 -2 -Connector_Phoenix_SPT -PhoenixContact_SPT_1.5_3-H-3.5_1x03_P3.5mm_Horizontal -Connector Phoenix Contact, SPT 1.5/3-H-3.5 Terminal Block, 1990740 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1990740), generated with kicad-footprint-generator -Connector Phoenix Contact SPT 1.5/3-H-3.5 1990740 -0 -6 -3 -Connector_Phoenix_SPT -PhoenixContact_SPT_1.5_4-H-3.5_1x04_P3.5mm_Horizontal -Connector Phoenix Contact, SPT 1.5/4-H-3.5 Terminal Block, 1990753 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1990753), generated with kicad-footprint-generator -Connector Phoenix Contact SPT 1.5/4-H-3.5 1990753 -0 -8 -4 -Connector_Phoenix_SPT -PhoenixContact_SPT_1.5_5-H-3.5_1x05_P3.5mm_Horizontal -Connector Phoenix Contact, SPT 1.5/5-H-3.5 Terminal Block, 1990766 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1990766), generated with kicad-footprint-generator -Connector Phoenix Contact SPT 1.5/5-H-3.5 1990766 -0 -10 -5 -Connector_Phoenix_SPT -PhoenixContact_SPT_1.5_6-H-3.5_1x06_P3.5mm_Horizontal -Connector Phoenix Contact, SPT 1.5/6-H-3.5 Terminal Block, 1990779 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1990779), generated with kicad-footprint-generator -Connector Phoenix Contact SPT 1.5/6-H-3.5 1990779 -0 -12 -6 -Connector_Phoenix_SPT -PhoenixContact_SPT_1.5_7-H-3.5_1x07_P3.5mm_Horizontal -Connector Phoenix Contact, SPT 1.5/7-H-3.5 Terminal Block, 1990782 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1990782), generated with kicad-footprint-generator -Connector Phoenix Contact SPT 1.5/7-H-3.5 1990782 -0 -14 -7 -Connector_Phoenix_SPT -PhoenixContact_SPT_1.5_8-H-3.5_1x08_P3.5mm_Horizontal -Connector Phoenix Contact, SPT 1.5/8-H-3.5 Terminal Block, 1990795 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1990795), generated with kicad-footprint-generator -Connector Phoenix Contact SPT 1.5/8-H-3.5 1990795 -0 -16 -8 -Connector_Phoenix_SPT -PhoenixContact_SPT_1.5_9-H-3.5_1x09_P3.5mm_Horizontal -Connector Phoenix Contact, SPT 1.5/9-H-3.5 Terminal Block, 1990805 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1990805), generated with kicad-footprint-generator -Connector Phoenix Contact SPT 1.5/9-H-3.5 1990805 -0 -18 -9 -Connector_Phoenix_SPT -PhoenixContact_SPT_1.5_10-H-3.5_1x10_P3.5mm_Horizontal -Connector Phoenix Contact, SPT 1.5/10-H-3.5 Terminal Block, 1990818 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1990818), generated with kicad-footprint-generator -Connector Phoenix Contact SPT 1.5/10-H-3.5 1990818 -0 -20 -10 -Connector_Phoenix_SPT -PhoenixContact_SPT_1.5_11-H-3.5_1x11_P3.5mm_Horizontal -Connector Phoenix Contact, SPT 1.5/11-H-3.5 Terminal Block, 1990821 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1990821), generated with kicad-footprint-generator -Connector Phoenix Contact SPT 1.5/11-H-3.5 1990821 -0 -22 -11 -Connector_Phoenix_SPT -PhoenixContact_SPT_1.5_12-H-3.5_1x12_P3.5mm_Horizontal -Connector Phoenix Contact, SPT 1.5/12-H-3.5 Terminal Block, 1990834 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1990834), generated with kicad-footprint-generator -Connector Phoenix Contact SPT 1.5/12-H-3.5 1990834 -0 -24 -12 -Connector_Phoenix_SPT -PhoenixContact_SPT_2.5_1-H-5.0_1x01_P5.0mm_Horizontal -Connector Phoenix Contact, SPT 2.5/1-H-5.0 Terminal Block, 1751066 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1751066), generated with kicad-footprint-generator -Connector Phoenix Contact SPT 2.5/1-H-5.0 1751066 -0 -2 -1 -Connector_Phoenix_SPT -PhoenixContact_SPT_2.5_2-H-5.0-EX_1x02_P5.0mm_Horizontal -Connector Phoenix Contact, SPT 2.5/2-H-5.0-EX Terminal Block, 1732386 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1732386), generated with kicad-footprint-generator -Connector Phoenix Contact SPT 2.5/2-H-5.0-EX 1732386 -0 -4 -2 -Connector_Phoenix_SPT -PhoenixContact_SPT_2.5_2-H-5.0_1x02_P5.0mm_Horizontal -Connector Phoenix Contact, SPT 2.5/2-H-5.0 Terminal Block, 1990973 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1990973), generated with kicad-footprint-generator -Connector Phoenix Contact SPT 2.5/2-H-5.0 1990973 -0 -4 -2 -Connector_Phoenix_SPT -PhoenixContact_SPT_2.5_2-V-5.0-EX_1x02_P5.0mm_Vertical -Connector Phoenix Contact, SPT 2.5/2-V-5.0-EX Terminal Block, 1732496 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1732496), generated with kicad-footprint-generator -Connector Phoenix Contact SPT 2.5/2-V-5.0-EX 1732496 -0 -4 -2 -Connector_Phoenix_SPT -PhoenixContact_SPT_2.5_3-H-5.0-EX_1x03_P5.0mm_Horizontal -Connector Phoenix Contact, SPT 2.5/3-H-5.0-EX Terminal Block, 1732399 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1732399), generated with kicad-footprint-generator -Connector Phoenix Contact SPT 2.5/3-H-5.0-EX 1732399 -0 -6 -3 -Connector_Phoenix_SPT -PhoenixContact_SPT_2.5_3-H-5.0_1x03_P5.0mm_Horizontal -Connector Phoenix Contact, SPT 2.5/3-H-5.0 Terminal Block, 1990986 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1990986), generated with kicad-footprint-generator -Connector Phoenix Contact SPT 2.5/3-H-5.0 1990986 -0 -6 -3 -Connector_Phoenix_SPT -PhoenixContact_SPT_2.5_3-V-5.0-EX_1x03_P5.0mm_Vertical -Connector Phoenix Contact, SPT 2.5/3-V-5.0-EX Terminal Block, 1732506 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1732506), generated with kicad-footprint-generator -Connector Phoenix Contact SPT 2.5/3-V-5.0-EX 1732506 -0 -6 -3 -Connector_Phoenix_SPT -PhoenixContact_SPT_2.5_4-H-5.0-EX_1x04_P5.0mm_Horizontal -Connector Phoenix Contact, SPT 2.5/4-H-5.0-EX Terminal Block, 1732409 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1732409), generated with kicad-footprint-generator -Connector Phoenix Contact SPT 2.5/4-H-5.0-EX 1732409 -0 -8 -4 -Connector_Phoenix_SPT -PhoenixContact_SPT_2.5_4-H-5.0_1x04_P5.0mm_Horizontal -Connector Phoenix Contact, SPT 2.5/4-H-5.0 Terminal Block, 1990999 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1990999), generated with kicad-footprint-generator -Connector Phoenix Contact SPT 2.5/4-H-5.0 1990999 -0 -8 -4 -Connector_Phoenix_SPT -PhoenixContact_SPT_2.5_4-V-5.0-EX_1x04_P5.0mm_Vertical -Connector Phoenix Contact, SPT 2.5/4-V-5.0-EX Terminal Block, 1732519 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1732519), generated with kicad-footprint-generator -Connector Phoenix Contact SPT 2.5/4-V-5.0-EX 1732519 -0 -8 -4 -Connector_Phoenix_SPT -PhoenixContact_SPT_2.5_5-H-5.0-EX_1x05_P5.0mm_Horizontal -Connector Phoenix Contact, SPT 2.5/5-H-5.0-EX Terminal Block, 1732412 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1732412), generated with kicad-footprint-generator -Connector Phoenix Contact SPT 2.5/5-H-5.0-EX 1732412 -0 -10 -5 -Connector_Phoenix_SPT -PhoenixContact_SPT_2.5_5-H-5.0_1x05_P5.0mm_Horizontal -Connector Phoenix Contact, SPT 2.5/5-H-5.0 Terminal Block, 1991008 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1991008), generated with kicad-footprint-generator -Connector Phoenix Contact SPT 2.5/5-H-5.0 1991008 -0 -10 -5 -Connector_Phoenix_SPT -PhoenixContact_SPT_2.5_5-V-5.0-EX_1x05_P5.0mm_Vertical -Connector Phoenix Contact, SPT 2.5/5-V-5.0-EX Terminal Block, 1732522 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1732522), generated with kicad-footprint-generator -Connector Phoenix Contact SPT 2.5/5-V-5.0-EX 1732522 -0 -10 -5 -Connector_Phoenix_SPT -PhoenixContact_SPT_2.5_6-H-5.0-EX_1x06_P5.0mm_Horizontal -Connector Phoenix Contact, SPT 2.5/6-H-5.0-EX Terminal Block, 1732425 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1732425), generated with kicad-footprint-generator -Connector Phoenix Contact SPT 2.5/6-H-5.0-EX 1732425 -0 -12 -6 -Connector_Phoenix_SPT -PhoenixContact_SPT_2.5_6-H-5.0_1x06_P5.0mm_Horizontal -Connector Phoenix Contact, SPT 2.5/6-H-5.0 Terminal Block, 1991011 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1991011), generated with kicad-footprint-generator -Connector Phoenix Contact SPT 2.5/6-H-5.0 1991011 -0 -12 -6 -Connector_Phoenix_SPT -PhoenixContact_SPT_2.5_6-V-5.0-EX_1x06_P5.0mm_Vertical -Connector Phoenix Contact, SPT 2.5/6-V-5.0-EX Terminal Block, 1732535 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1732535), generated with kicad-footprint-generator -Connector Phoenix Contact SPT 2.5/6-V-5.0-EX 1732535 -0 -12 -6 -Connector_Phoenix_SPT -PhoenixContact_SPT_2.5_7-H-5.0-EX_1x07_P5.0mm_Horizontal -Connector Phoenix Contact, SPT 2.5/7-H-5.0-EX Terminal Block, 1732438 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1732438), generated with kicad-footprint-generator -Connector Phoenix Contact SPT 2.5/7-H-5.0-EX 1732438 -0 -14 -7 -Connector_Phoenix_SPT -PhoenixContact_SPT_2.5_7-H-5.0_1x07_P5.0mm_Horizontal -Connector Phoenix Contact, SPT 2.5/7-H-5.0 Terminal Block, 1991024 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1991024), generated with kicad-footprint-generator -Connector Phoenix Contact SPT 2.5/7-H-5.0 1991024 -0 -14 -7 -Connector_Phoenix_SPT -PhoenixContact_SPT_2.5_7-V-5.0-EX_1x07_P5.0mm_Vertical -Connector Phoenix Contact, SPT 2.5/7-V-5.0-EX Terminal Block, 1732548 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1732548), generated with kicad-footprint-generator -Connector Phoenix Contact SPT 2.5/7-V-5.0-EX 1732548 -0 -14 -7 -Connector_Phoenix_SPT -PhoenixContact_SPT_2.5_8-H-5.0-EX_1x08_P5.0mm_Horizontal -Connector Phoenix Contact, SPT 2.5/8-H-5.0-EX Terminal Block, 1732441 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1732441), generated with kicad-footprint-generator -Connector Phoenix Contact SPT 2.5/8-H-5.0-EX 1732441 -0 -16 -8 -Connector_Phoenix_SPT -PhoenixContact_SPT_2.5_8-H-5.0_1x08_P5.0mm_Horizontal -Connector Phoenix Contact, SPT 2.5/8-H-5.0 Terminal Block, 1991037 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1991037), generated with kicad-footprint-generator -Connector Phoenix Contact SPT 2.5/8-H-5.0 1991037 -0 -16 -8 -Connector_Phoenix_SPT -PhoenixContact_SPT_2.5_8-V-5.0-EX_1x08_P5.0mm_Vertical -Connector Phoenix Contact, SPT 2.5/8-V-5.0-EX Terminal Block, 1732551 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1732551), generated with kicad-footprint-generator -Connector Phoenix Contact SPT 2.5/8-V-5.0-EX 1732551 -0 -16 -8 -Connector_Phoenix_SPT -PhoenixContact_SPT_2.5_9-H-5.0-EX_1x09_P5.0mm_Horizontal -Connector Phoenix Contact, SPT 2.5/9-H-5.0-EX Terminal Block, 1732454 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1732454), generated with kicad-footprint-generator -Connector Phoenix Contact SPT 2.5/9-H-5.0-EX 1732454 -0 -18 -9 -Connector_Phoenix_SPT -PhoenixContact_SPT_2.5_9-H-5.0_1x09_P5.0mm_Horizontal -Connector Phoenix Contact, SPT 2.5/9-H-5.0 Terminal Block, 1991040 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1991040), generated with kicad-footprint-generator -Connector Phoenix Contact SPT 2.5/9-H-5.0 1991040 -0 -18 -9 -Connector_Phoenix_SPT -PhoenixContact_SPT_2.5_9-V-5.0-EX_1x09_P5.0mm_Vertical -Connector Phoenix Contact, SPT 2.5/9-V-5.0-EX Terminal Block, 1732564 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1732564), generated with kicad-footprint-generator -Connector Phoenix Contact SPT 2.5/9-V-5.0-EX 1732564 -0 -18 -9 -Connector_Phoenix_SPT -PhoenixContact_SPT_2.5_10-H-5.0-EX_1x10_P5.0mm_Horizontal -Connector Phoenix Contact, SPT 2.5/10-H-5.0-EX Terminal Block, 1732467 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1732467), generated with kicad-footprint-generator -Connector Phoenix Contact SPT 2.5/10-H-5.0-EX 1732467 -0 -20 -10 -Connector_Phoenix_SPT -PhoenixContact_SPT_2.5_10-H-5.0_1x10_P5.0mm_Horizontal -Connector Phoenix Contact, SPT 2.5/10-H-5.0 Terminal Block, 1991053 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1991053), generated with kicad-footprint-generator -Connector Phoenix Contact SPT 2.5/10-H-5.0 1991053 -0 -20 -10 -Connector_Phoenix_SPT -PhoenixContact_SPT_2.5_10-V-5.0-EX_1x10_P5.0mm_Vertical -Connector Phoenix Contact, SPT 2.5/10-V-5.0-EX Terminal Block, 1732577 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1732577), generated with kicad-footprint-generator -Connector Phoenix Contact SPT 2.5/10-V-5.0-EX 1732577 -0 -20 -10 -Connector_Phoenix_SPT -PhoenixContact_SPT_2.5_11-H-5.0-EX_1x11_P5.0mm_Horizontal -Connector Phoenix Contact, SPT 2.5/11-H-5.0-EX Terminal Block, 1732470 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1732470), generated with kicad-footprint-generator -Connector Phoenix Contact SPT 2.5/11-H-5.0-EX 1732470 -0 -22 -11 -Connector_Phoenix_SPT -PhoenixContact_SPT_2.5_11-H-5.0_1x11_P5.0mm_Horizontal -Connector Phoenix Contact, SPT 2.5/11-H-5.0 Terminal Block, 1991066 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1991066), generated with kicad-footprint-generator -Connector Phoenix Contact SPT 2.5/11-H-5.0 1991066 -0 -22 -11 -Connector_Phoenix_SPT -PhoenixContact_SPT_2.5_11-V-5.0-EX_1x11_P5.0mm_Vertical -Connector Phoenix Contact, SPT 2.5/11-V-5.0-EX Terminal Block, 1732580 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1732580), generated with kicad-footprint-generator -Connector Phoenix Contact SPT 2.5/11-V-5.0-EX 1732580 -0 -22 -11 -Connector_Phoenix_SPT -PhoenixContact_SPT_2.5_12-H-5.0-EX_1x12_P5.0mm_Horizontal -Connector Phoenix Contact, SPT 2.5/12-H-5.0-EX Terminal Block, 1732483 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1732483), generated with kicad-footprint-generator -Connector Phoenix Contact SPT 2.5/12-H-5.0-EX 1732483 -0 -24 -12 -Connector_Phoenix_SPT -PhoenixContact_SPT_2.5_12-H-5.0_1x12_P5.0mm_Horizontal -Connector Phoenix Contact, SPT 2.5/12-H-5.0 Terminal Block, 1991079 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1991079), generated with kicad-footprint-generator -Connector Phoenix Contact SPT 2.5/12-H-5.0 1991079 -0 -24 -12 -Connector_Phoenix_SPT -PhoenixContact_SPT_2.5_12-V-5.0-EX_1x12_P5.0mm_Vertical -Connector Phoenix Contact, SPT 2.5/12-V-5.0-EX Terminal Block, 1732593 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1732593), generated with kicad-footprint-generator -Connector Phoenix Contact SPT 2.5/12-V-5.0-EX 1732593 -0 -24 -12 -Connector_Phoenix_SPT -PhoenixContact_SPT_5_1-H-7.5_1x01_P7.5mm_Horizontal -Connector Phoenix Contact, SPT 5/1-H-7.5 Terminal Block, 1719189 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1719189), generated with kicad-footprint-generator -Connector Phoenix Contact SPT 5/1-H-7.5 1719189 -0 -2 -1 -Connector_Phoenix_SPT -PhoenixContact_SPT_5_1-V-7.5_1x01_P7.5mm_Vertical -Connector Phoenix Contact, SPT 5/1-V-7.5 Terminal Block, 1719309 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1719309), generated with kicad-footprint-generator -Connector Phoenix Contact SPT 5/1-V-7.5 1719309 -0 -2 -1 -Connector_Phoenix_SPT -PhoenixContact_SPT_5_2-H-7.5-ZB_1x02_P7.5mm_Horizontal -Connector Phoenix Contact, SPT 5/2-H-7.5-ZB Terminal Block, 1719192 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1719192), generated with kicad-footprint-generator -Connector Phoenix Contact SPT 5/2-H-7.5-ZB 1719192 -0 -2 -2 -Connector_Phoenix_SPT -PhoenixContact_SPT_5_2-V-7.5_1x02_P7.5mm_Vertical -Connector Phoenix Contact, SPT 5/2-V-7.5 Terminal Block, 1738144 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1738144), generated with kicad-footprint-generator -Connector Phoenix Contact SPT 5/2-V-7.5 1738144 -0 -4 -2 -Connector_Phoenix_SPT -PhoenixContact_SPT_5_3-H-7.5-ZB_1x03_P7.5mm_Horizontal -Connector Phoenix Contact, SPT 5/3-H-7.5-ZB Terminal Block, 1719202 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1719202), generated with kicad-footprint-generator -Connector Phoenix Contact SPT 5/3-H-7.5-ZB 1719202 -0 -3 -3 -Connector_Phoenix_SPT -PhoenixContact_SPT_5_3-H-7.5_1x03_P7.5mm_Horizontal -Connector Phoenix Contact, SPT 5/3-H-7.5 Terminal Block, 1701361 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1701361), generated with kicad-footprint-generator -Connector Phoenix Contact SPT 5/3-H-7.5 1701361 -0 -6 -3 -Connector_Phoenix_SPT -PhoenixContact_SPT_5_3-V-7.5-ZB_1x03_P7.5mm_Vertical -Connector Phoenix Contact, SPT 5/3-V-7.5-ZB Terminal Block, 1719325 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1719325), generated with kicad-footprint-generator -Connector Phoenix Contact SPT 5/3-V-7.5-ZB 1719325 -0 -3 -3 -Connector_Phoenix_SPT -PhoenixContact_SPT_5_4-H-7.5-ZB_1x04_P7.5mm_Horizontal -Connector Phoenix Contact, SPT 5/4-H-7.5-ZB Terminal Block, 1719215 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1719215), generated with kicad-footprint-generator -Connector Phoenix Contact SPT 5/4-H-7.5-ZB 1719215 -0 -4 -4 -Connector_Phoenix_SPT -PhoenixContact_SPT_5_5-H-7.5-ZB_1x05_P7.5mm_Horizontal -Connector Phoenix Contact, SPT 5/5-H-7.5-ZB Terminal Block, 1719228 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1719228), generated with kicad-footprint-generator -Connector Phoenix Contact SPT 5/5-H-7.5-ZB 1719228 -0 -5 -5 -Connector_Phoenix_SPT -PhoenixContact_SPT_5_5-V-7.5-ZB_1x05_P7.5mm_Vertical -Connector Phoenix Contact, SPT 5/5-V-7.5-ZB Terminal Block, 1719341 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1719341), generated with kicad-footprint-generator -Connector Phoenix Contact SPT 5/5-V-7.5-ZB 1719341 -0 -5 -5 -Connector_Phoenix_SPT -PhoenixContact_SPT_5_6-H-7.5-ZB_1x06_P7.5mm_Horizontal -Connector Phoenix Contact, SPT 5/6-H-7.5-ZB Terminal Block, 1719231 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1719231), generated with kicad-footprint-generator -Connector Phoenix Contact SPT 5/6-H-7.5-ZB 1719231 -0 -6 -6 -Connector_Phoenix_SPT -PhoenixContact_SPT_5_6-V-7.5-ZB_1x06_P7.5mm_Vertical -Connector Phoenix Contact, SPT 5/6-V-7.5-ZB Terminal Block, 1719354 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1719354), generated with kicad-footprint-generator -Connector Phoenix Contact SPT 5/6-V-7.5-ZB 1719354 -0 -6 -6 -Connector_Phoenix_SPT -PhoenixContact_SPT_5_7-H-7.5-ZB_1x07_P7.5mm_Horizontal -Connector Phoenix Contact, SPT 5/7-H-7.5-ZB Terminal Block, 1719244 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1719244), generated with kicad-footprint-generator -Connector Phoenix Contact SPT 5/7-H-7.5-ZB 1719244 -0 -7 -7 -Connector_Phoenix_SPT -PhoenixContact_SPT_5_7-V-7.5-ZB_1x07_P7.5mm_Vertical -Connector Phoenix Contact, SPT 5/7-V-7.5-ZB Terminal Block, 1719367 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1719367), generated with kicad-footprint-generator -Connector Phoenix Contact SPT 5/7-V-7.5-ZB 1719367 -0 -7 -7 -Connector_Phoenix_SPT -PhoenixContact_SPT_5_8-H-7.5-ZB_1x08_P7.5mm_Horizontal -Connector Phoenix Contact, SPT 5/8-H-7.5-ZB Terminal Block, 1719257 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1719257), generated with kicad-footprint-generator -Connector Phoenix Contact SPT 5/8-H-7.5-ZB 1719257 -0 -8 -8 -Connector_Phoenix_SPT -PhoenixContact_SPT_5_8-V-7.5-ZB_1x08_P7.5mm_Vertical -Connector Phoenix Contact, SPT 5/8-V-7.5-ZB Terminal Block, 1719370 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1719370), generated with kicad-footprint-generator -Connector Phoenix Contact SPT 5/8-V-7.5-ZB 1719370 -0 -8 -8 -Connector_Phoenix_SPT -PhoenixContact_SPT_5_9-H-7.5-ZB_1x09_P7.5mm_Horizontal -Connector Phoenix Contact, SPT 5/9-H-7.5-ZB Terminal Block, 1719260 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1719260), generated with kicad-footprint-generator -Connector Phoenix Contact SPT 5/9-H-7.5-ZB 1719260 -0 -9 -9 -Connector_Phoenix_SPT -PhoenixContact_SPT_5_9-V-7.5-ZB_1x09_P7.5mm_Vertical -Connector Phoenix Contact, SPT 5/9-V-7.5-ZB Terminal Block, 1719383 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1719383), generated with kicad-footprint-generator -Connector Phoenix Contact SPT 5/9-V-7.5-ZB 1719383 -0 -9 -9 -Connector_Phoenix_SPT -PhoenixContact_SPT_5_10-H-7.5-ZB_1x10_P7.5mm_Horizontal -Connector Phoenix Contact, SPT 5/10-H-7.5-ZB Terminal Block, 1719273 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1719273), generated with kicad-footprint-generator -Connector Phoenix Contact SPT 5/10-H-7.5-ZB 1719273 -0 -10 -10 -Connector_Phoenix_SPT -PhoenixContact_SPT_5_10-V-7.5-ZB_1x10_P7.5mm_Vertical -Connector Phoenix Contact, SPT 5/10-V-7.5-ZB Terminal Block, 1719396 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1719396), generated with kicad-footprint-generator -Connector Phoenix Contact SPT 5/10-V-7.5-ZB 1719396 -0 -10 -10 -Connector_Phoenix_SPT -PhoenixContact_SPT_5_11-H-7.5-ZB_1x11_P7.5mm_Horizontal -Connector Phoenix Contact, SPT 5/11-H-7.5-ZB Terminal Block, 1719286 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1719286), generated with kicad-footprint-generator -Connector Phoenix Contact SPT 5/11-H-7.5-ZB 1719286 -0 -11 -11 -Connector_Phoenix_SPT -PhoenixContact_SPT_5_11-V-7.5-ZB_1x11_P7.5mm_Vertical -Connector Phoenix Contact, SPT 5/11-V-7.5-ZB Terminal Block, 1719406 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1719406), generated with kicad-footprint-generator -Connector Phoenix Contact SPT 5/11-V-7.5-ZB 1719406 -0 -11 -11 -Connector_Phoenix_SPT -PhoenixContact_SPT_5_12-H-7.5-ZB_1x12_P7.5mm_Horizontal -Connector Phoenix Contact, SPT 5/12-H-7.5-ZB Terminal Block, 1719299 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1719299), generated with kicad-footprint-generator -Connector Phoenix Contact SPT 5/12-H-7.5-ZB 1719299 -0 -12 -12 -Connector_Phoenix_SPT -PhoenixContact_SPT_5_12-V-7.5-ZB_1x12_P7.5mm_Vertical -Connector Phoenix Contact, SPT 5/12-V-7.5-ZB Terminal Block, 1719419 (https://www.phoenixcontact.com/online/portal/gb/?uri=pxc-oc-itemdetail:pid=1719419), generated with kicad-footprint-generator -Connector Phoenix Contact SPT 5/12-V-7.5-ZB 1719419 -0 -12 -12 -Connector_Pin -Pin_D0.7mm_L6.5mm_W1.8mm_FlatFork -solder Pin_ with flat fork, hole diameter 0.7mm, length 6.5mm, width 1.8mm -solder Pin_ with flat fork -0 -1 -1 -Connector_Pin -Pin_D0.9mm_L10.0mm_W2.4mm_FlatFork -solder Pin_ with flat fork, hole diameter 0.9mm, length 10.0mm, width 2.4mm -solder Pin_ with flat fork -0 -1 -1 -Connector_Pin -Pin_D1.0mm_L10.0mm -solder Pin_ diameter 1.0mm, hole diameter 1.0mm (press fit), length 10.0mm -solder Pin_ press fit -0 -1 -1 -Connector_Pin -Pin_D1.0mm_L10.0mm_LooseFit -solder Pin_ diameter 1.0mm, hole diameter 1.2mm (loose fit), length 10.0mm -solder Pin_ loose fit -0 -1 -1 -Connector_Pin -Pin_D1.1mm_L8.5mm_W2.5mm_FlatFork -solder Pin_ with flat fork, hole diameter 1.1mm, length 8.5mm, width 2.5mm -solder Pin_ with flat fork -0 -1 -1 -Connector_Pin -Pin_D1.1mm_L10.2mm_W3.5mm_Flat -solder Pin_ with flat with hole, hole diameter 1.1mm, length 10.2mm, width 3.5mm -solder Pin_ with flat fork -0 -1 -1 -Connector_Pin -Pin_D1.2mm_L10.2mm_W2.9mm_FlatFork -solder Pin_ with flat with fork, hole diameter 1.2mm, length 11.3mm, width 3.0mm -solder Pin_ with flat fork -0 -1 -1 -Connector_Pin -Pin_D1.2mm_L11.3mm_W3.0mm_Flat -solder Pin_ with flat with hole, hole diameter 1.2mm, length 11.3mm, width 3.0mm -solder Pin_ with flat fork -0 -1 -1 -Connector_Pin -Pin_D1.3mm_L10.0mm_W3.5mm_Flat -solder Pin_ with flat with hole, hole diameter 1.3mm, length 10.0mm, width 3.5mm, e.g. Ettinger 13.13.865, https://katalog.ettinger.de/#p=434 -solder Pin_ with flat fork -0 -1 -1 -Connector_Pin -Pin_D1.3mm_L11.0mm -solder Pin_ diameter 1.3mm, hole diameter 1.3mm, length 11.0mm -solder Pin_ pressfit -0 -1 -1 -Connector_Pin -Pin_D1.3mm_L11.0mm_LooseFit -solder Pin_ diameter 1.3mm, hole diameter 1.5mm (loose fit), length 11.0mm -solder Pin_ loose fit -0 -1 -1 -Connector_Pin -Pin_D1.3mm_L11.3mm_W2.8mm_Flat -solder Pin_ with flat with hole, hole diameter 1.3mm, length 11.3mm, width 2.8mm -solder Pin_ with flat fork -0 -1 -1 -Connector_Pin -Pin_D1.4mm_L8.5mm_W2.8mm_FlatFork -solder Pin_ with flat with fork, hole diameter 1.4mm, length 8.5mm, width 2.8mm, e.g. Ettinger 13.13.890, https://katalog.ettinger.de/#p=434 -solder Pin_ with flat fork -0 -1 -1 -Connector_PinHeader_1.00mm -PinHeader_1x01_P1.00mm_Horizontal -Through hole angled pin header, 1x01, 1.00mm pitch, 2.0mm pin length, single row -Through hole angled pin header THT 1x01 1.00mm single row -0 -1 -1 -Connector_PinHeader_1.00mm -PinHeader_1x01_P1.00mm_Vertical -Through hole straight pin header, 1x01, 1.00mm pitch, single row -Through hole pin header THT 1x01 1.00mm single row -0 -1 -1 -Connector_PinHeader_1.00mm -PinHeader_1x02_P1.00mm_Horizontal -Through hole angled pin header, 1x02, 1.00mm pitch, 2.0mm pin length, single row -Through hole angled pin header THT 1x02 1.00mm single row -0 -2 -2 -Connector_PinHeader_1.00mm -PinHeader_1x02_P1.00mm_Vertical -Through hole straight pin header, 1x02, 1.00mm pitch, single row -Through hole pin header THT 1x02 1.00mm single row -0 -2 -2 -Connector_PinHeader_1.00mm -PinHeader_1x02_P1.00mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x02, 1.00mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x02 1.00mm single row style1 pin1 left -0 -2 -2 -Connector_PinHeader_1.00mm -PinHeader_1x02_P1.00mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x02, 1.00mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x02 1.00mm single row style2 pin1 right -0 -2 -2 -Connector_PinHeader_1.00mm -PinHeader_1x03_P1.00mm_Horizontal -Through hole angled pin header, 1x03, 1.00mm pitch, 2.0mm pin length, single row -Through hole angled pin header THT 1x03 1.00mm single row -0 -3 -3 -Connector_PinHeader_1.00mm -PinHeader_1x03_P1.00mm_Vertical -Through hole straight pin header, 1x03, 1.00mm pitch, single row -Through hole pin header THT 1x03 1.00mm single row -0 -3 -3 -Connector_PinHeader_1.00mm -PinHeader_1x03_P1.00mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x03, 1.00mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x03 1.00mm single row style1 pin1 left -0 -3 -3 -Connector_PinHeader_1.00mm -PinHeader_1x03_P1.00mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x03, 1.00mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x03 1.00mm single row style2 pin1 right -0 -3 -3 -Connector_PinHeader_1.00mm -PinHeader_1x04_P1.00mm_Horizontal -Through hole angled pin header, 1x04, 1.00mm pitch, 2.0mm pin length, single row -Through hole angled pin header THT 1x04 1.00mm single row -0 -4 -4 -Connector_PinHeader_1.00mm -PinHeader_1x04_P1.00mm_Vertical -Through hole straight pin header, 1x04, 1.00mm pitch, single row -Through hole pin header THT 1x04 1.00mm single row -0 -4 -4 -Connector_PinHeader_1.00mm -PinHeader_1x04_P1.00mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x04, 1.00mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x04 1.00mm single row style1 pin1 left -0 -4 -4 -Connector_PinHeader_1.00mm -PinHeader_1x04_P1.00mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x04, 1.00mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x04 1.00mm single row style2 pin1 right -0 -4 -4 -Connector_PinHeader_1.00mm -PinHeader_1x05_P1.00mm_Horizontal -Through hole angled pin header, 1x05, 1.00mm pitch, 2.0mm pin length, single row -Through hole angled pin header THT 1x05 1.00mm single row -0 -5 -5 -Connector_PinHeader_1.00mm -PinHeader_1x05_P1.00mm_Vertical -Through hole straight pin header, 1x05, 1.00mm pitch, single row -Through hole pin header THT 1x05 1.00mm single row -0 -5 -5 -Connector_PinHeader_1.00mm -PinHeader_1x05_P1.00mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x05, 1.00mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x05 1.00mm single row style1 pin1 left -0 -5 -5 -Connector_PinHeader_1.00mm -PinHeader_1x05_P1.00mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x05, 1.00mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x05 1.00mm single row style2 pin1 right -0 -5 -5 -Connector_PinHeader_1.00mm -PinHeader_1x06_P1.00mm_Horizontal -Through hole angled pin header, 1x06, 1.00mm pitch, 2.0mm pin length, single row -Through hole angled pin header THT 1x06 1.00mm single row -0 -6 -6 -Connector_PinHeader_1.00mm -PinHeader_1x06_P1.00mm_Vertical -Through hole straight pin header, 1x06, 1.00mm pitch, single row -Through hole pin header THT 1x06 1.00mm single row -0 -6 -6 -Connector_PinHeader_1.00mm -PinHeader_1x06_P1.00mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x06, 1.00mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x06 1.00mm single row style1 pin1 left -0 -6 -6 -Connector_PinHeader_1.00mm -PinHeader_1x06_P1.00mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x06, 1.00mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x06 1.00mm single row style2 pin1 right -0 -6 -6 -Connector_PinHeader_1.00mm -PinHeader_1x07_P1.00mm_Horizontal -Through hole angled pin header, 1x07, 1.00mm pitch, 2.0mm pin length, single row -Through hole angled pin header THT 1x07 1.00mm single row -0 -7 -7 -Connector_PinHeader_1.00mm -PinHeader_1x07_P1.00mm_Vertical -Through hole straight pin header, 1x07, 1.00mm pitch, single row -Through hole pin header THT 1x07 1.00mm single row -0 -7 -7 -Connector_PinHeader_1.00mm -PinHeader_1x07_P1.00mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x07, 1.00mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x07 1.00mm single row style1 pin1 left -0 -7 -7 -Connector_PinHeader_1.00mm -PinHeader_1x07_P1.00mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x07, 1.00mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x07 1.00mm single row style2 pin1 right -0 -7 -7 -Connector_PinHeader_1.00mm -PinHeader_1x08_P1.00mm_Horizontal -Through hole angled pin header, 1x08, 1.00mm pitch, 2.0mm pin length, single row -Through hole angled pin header THT 1x08 1.00mm single row -0 -8 -8 -Connector_PinHeader_1.00mm -PinHeader_1x08_P1.00mm_Vertical -Through hole straight pin header, 1x08, 1.00mm pitch, single row -Through hole pin header THT 1x08 1.00mm single row -0 -8 -8 -Connector_PinHeader_1.00mm -PinHeader_1x08_P1.00mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x08, 1.00mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x08 1.00mm single row style1 pin1 left -0 -8 -8 -Connector_PinHeader_1.00mm -PinHeader_1x08_P1.00mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x08, 1.00mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x08 1.00mm single row style2 pin1 right -0 -8 -8 -Connector_PinHeader_1.00mm -PinHeader_1x09_P1.00mm_Horizontal -Through hole angled pin header, 1x09, 1.00mm pitch, 2.0mm pin length, single row -Through hole angled pin header THT 1x09 1.00mm single row -0 -9 -9 -Connector_PinHeader_1.00mm -PinHeader_1x09_P1.00mm_Vertical -Through hole straight pin header, 1x09, 1.00mm pitch, single row -Through hole pin header THT 1x09 1.00mm single row -0 -9 -9 -Connector_PinHeader_1.00mm -PinHeader_1x09_P1.00mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x09, 1.00mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x09 1.00mm single row style1 pin1 left -0 -9 -9 -Connector_PinHeader_1.00mm -PinHeader_1x09_P1.00mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x09, 1.00mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x09 1.00mm single row style2 pin1 right -0 -9 -9 -Connector_PinHeader_1.00mm -PinHeader_1x10_P1.00mm_Horizontal -Through hole angled pin header, 1x10, 1.00mm pitch, 2.0mm pin length, single row -Through hole angled pin header THT 1x10 1.00mm single row -0 -10 -10 -Connector_PinHeader_1.00mm -PinHeader_1x10_P1.00mm_Vertical -Through hole straight pin header, 1x10, 1.00mm pitch, single row -Through hole pin header THT 1x10 1.00mm single row -0 -10 -10 -Connector_PinHeader_1.00mm -PinHeader_1x10_P1.00mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x10, 1.00mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x10 1.00mm single row style1 pin1 left -0 -10 -10 -Connector_PinHeader_1.00mm -PinHeader_1x10_P1.00mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x10, 1.00mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x10 1.00mm single row style2 pin1 right -0 -10 -10 -Connector_PinHeader_1.00mm -PinHeader_1x11_P1.00mm_Horizontal -Through hole angled pin header, 1x11, 1.00mm pitch, 2.0mm pin length, single row -Through hole angled pin header THT 1x11 1.00mm single row -0 -11 -11 -Connector_PinHeader_1.00mm -PinHeader_1x11_P1.00mm_Vertical -Through hole straight pin header, 1x11, 1.00mm pitch, single row -Through hole pin header THT 1x11 1.00mm single row -0 -11 -11 -Connector_PinHeader_1.00mm -PinHeader_1x11_P1.00mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x11, 1.00mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x11 1.00mm single row style1 pin1 left -0 -11 -11 -Connector_PinHeader_1.00mm -PinHeader_1x11_P1.00mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x11, 1.00mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x11 1.00mm single row style2 pin1 right -0 -11 -11 -Connector_PinHeader_1.00mm -PinHeader_1x12_P1.00mm_Horizontal -Through hole angled pin header, 1x12, 1.00mm pitch, 2.0mm pin length, single row -Through hole angled pin header THT 1x12 1.00mm single row -0 -12 -12 -Connector_PinHeader_1.00mm -PinHeader_1x12_P1.00mm_Vertical -Through hole straight pin header, 1x12, 1.00mm pitch, single row -Through hole pin header THT 1x12 1.00mm single row -0 -12 -12 -Connector_PinHeader_1.00mm -PinHeader_1x12_P1.00mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x12, 1.00mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x12 1.00mm single row style1 pin1 left -0 -12 -12 -Connector_PinHeader_1.00mm -PinHeader_1x12_P1.00mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x12, 1.00mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x12 1.00mm single row style2 pin1 right -0 -12 -12 -Connector_PinHeader_1.00mm -PinHeader_1x13_P1.00mm_Horizontal -Through hole angled pin header, 1x13, 1.00mm pitch, 2.0mm pin length, single row -Through hole angled pin header THT 1x13 1.00mm single row -0 -13 -13 -Connector_PinHeader_1.00mm -PinHeader_1x13_P1.00mm_Vertical -Through hole straight pin header, 1x13, 1.00mm pitch, single row -Through hole pin header THT 1x13 1.00mm single row -0 -13 -13 -Connector_PinHeader_1.00mm -PinHeader_1x13_P1.00mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x13, 1.00mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x13 1.00mm single row style1 pin1 left -0 -13 -13 -Connector_PinHeader_1.00mm -PinHeader_1x13_P1.00mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x13, 1.00mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x13 1.00mm single row style2 pin1 right -0 -13 -13 -Connector_PinHeader_1.00mm -PinHeader_1x14_P1.00mm_Horizontal -Through hole angled pin header, 1x14, 1.00mm pitch, 2.0mm pin length, single row -Through hole angled pin header THT 1x14 1.00mm single row -0 -14 -14 -Connector_PinHeader_1.00mm -PinHeader_1x14_P1.00mm_Vertical -Through hole straight pin header, 1x14, 1.00mm pitch, single row -Through hole pin header THT 1x14 1.00mm single row -0 -14 -14 -Connector_PinHeader_1.00mm -PinHeader_1x14_P1.00mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x14, 1.00mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x14 1.00mm single row style1 pin1 left -0 -14 -14 -Connector_PinHeader_1.00mm -PinHeader_1x14_P1.00mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x14, 1.00mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x14 1.00mm single row style2 pin1 right -0 -14 -14 -Connector_PinHeader_1.00mm -PinHeader_1x15_P1.00mm_Horizontal -Through hole angled pin header, 1x15, 1.00mm pitch, 2.0mm pin length, single row -Through hole angled pin header THT 1x15 1.00mm single row -0 -15 -15 -Connector_PinHeader_1.00mm -PinHeader_1x15_P1.00mm_Vertical -Through hole straight pin header, 1x15, 1.00mm pitch, single row -Through hole pin header THT 1x15 1.00mm single row -0 -15 -15 -Connector_PinHeader_1.00mm -PinHeader_1x15_P1.00mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x15, 1.00mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x15 1.00mm single row style1 pin1 left -0 -15 -15 -Connector_PinHeader_1.00mm -PinHeader_1x15_P1.00mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x15, 1.00mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x15 1.00mm single row style2 pin1 right -0 -15 -15 -Connector_PinHeader_1.00mm -PinHeader_1x16_P1.00mm_Horizontal -Through hole angled pin header, 1x16, 1.00mm pitch, 2.0mm pin length, single row -Through hole angled pin header THT 1x16 1.00mm single row -0 -16 -16 -Connector_PinHeader_1.00mm -PinHeader_1x16_P1.00mm_Vertical -Through hole straight pin header, 1x16, 1.00mm pitch, single row -Through hole pin header THT 1x16 1.00mm single row -0 -16 -16 -Connector_PinHeader_1.00mm -PinHeader_1x16_P1.00mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x16, 1.00mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x16 1.00mm single row style1 pin1 left -0 -16 -16 -Connector_PinHeader_1.00mm -PinHeader_1x16_P1.00mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x16, 1.00mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x16 1.00mm single row style2 pin1 right -0 -16 -16 -Connector_PinHeader_1.00mm -PinHeader_1x17_P1.00mm_Horizontal -Through hole angled pin header, 1x17, 1.00mm pitch, 2.0mm pin length, single row -Through hole angled pin header THT 1x17 1.00mm single row -0 -17 -17 -Connector_PinHeader_1.00mm -PinHeader_1x17_P1.00mm_Vertical -Through hole straight pin header, 1x17, 1.00mm pitch, single row -Through hole pin header THT 1x17 1.00mm single row -0 -17 -17 -Connector_PinHeader_1.00mm -PinHeader_1x17_P1.00mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x17, 1.00mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x17 1.00mm single row style1 pin1 left -0 -17 -17 -Connector_PinHeader_1.00mm -PinHeader_1x17_P1.00mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x17, 1.00mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x17 1.00mm single row style2 pin1 right -0 -17 -17 -Connector_PinHeader_1.00mm -PinHeader_1x18_P1.00mm_Horizontal -Through hole angled pin header, 1x18, 1.00mm pitch, 2.0mm pin length, single row -Through hole angled pin header THT 1x18 1.00mm single row -0 -18 -18 -Connector_PinHeader_1.00mm -PinHeader_1x18_P1.00mm_Vertical -Through hole straight pin header, 1x18, 1.00mm pitch, single row -Through hole pin header THT 1x18 1.00mm single row -0 -18 -18 -Connector_PinHeader_1.00mm -PinHeader_1x18_P1.00mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x18, 1.00mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x18 1.00mm single row style1 pin1 left -0 -18 -18 -Connector_PinHeader_1.00mm -PinHeader_1x18_P1.00mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x18, 1.00mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x18 1.00mm single row style2 pin1 right -0 -18 -18 -Connector_PinHeader_1.00mm -PinHeader_1x19_P1.00mm_Horizontal -Through hole angled pin header, 1x19, 1.00mm pitch, 2.0mm pin length, single row -Through hole angled pin header THT 1x19 1.00mm single row -0 -19 -19 -Connector_PinHeader_1.00mm -PinHeader_1x19_P1.00mm_Vertical -Through hole straight pin header, 1x19, 1.00mm pitch, single row -Through hole pin header THT 1x19 1.00mm single row -0 -19 -19 -Connector_PinHeader_1.00mm -PinHeader_1x19_P1.00mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x19, 1.00mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x19 1.00mm single row style1 pin1 left -0 -19 -19 -Connector_PinHeader_1.00mm -PinHeader_1x19_P1.00mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x19, 1.00mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x19 1.00mm single row style2 pin1 right -0 -19 -19 -Connector_PinHeader_1.00mm -PinHeader_1x20_P1.00mm_Horizontal -Through hole angled pin header, 1x20, 1.00mm pitch, 2.0mm pin length, single row -Through hole angled pin header THT 1x20 1.00mm single row -0 -20 -20 -Connector_PinHeader_1.00mm -PinHeader_1x20_P1.00mm_Vertical -Through hole straight pin header, 1x20, 1.00mm pitch, single row -Through hole pin header THT 1x20 1.00mm single row -0 -20 -20 -Connector_PinHeader_1.00mm -PinHeader_1x20_P1.00mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x20, 1.00mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x20 1.00mm single row style1 pin1 left -0 -20 -20 -Connector_PinHeader_1.00mm -PinHeader_1x20_P1.00mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x20, 1.00mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x20 1.00mm single row style2 pin1 right -0 -20 -20 -Connector_PinHeader_1.00mm -PinHeader_1x21_P1.00mm_Horizontal -Through hole angled pin header, 1x21, 1.00mm pitch, 2.0mm pin length, single row -Through hole angled pin header THT 1x21 1.00mm single row -0 -21 -21 -Connector_PinHeader_1.00mm -PinHeader_1x21_P1.00mm_Vertical -Through hole straight pin header, 1x21, 1.00mm pitch, single row -Through hole pin header THT 1x21 1.00mm single row -0 -21 -21 -Connector_PinHeader_1.00mm -PinHeader_1x21_P1.00mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x21, 1.00mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x21 1.00mm single row style1 pin1 left -0 -21 -21 -Connector_PinHeader_1.00mm -PinHeader_1x21_P1.00mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x21, 1.00mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x21 1.00mm single row style2 pin1 right -0 -21 -21 -Connector_PinHeader_1.00mm -PinHeader_1x22_P1.00mm_Horizontal -Through hole angled pin header, 1x22, 1.00mm pitch, 2.0mm pin length, single row -Through hole angled pin header THT 1x22 1.00mm single row -0 -22 -22 -Connector_PinHeader_1.00mm -PinHeader_1x22_P1.00mm_Vertical -Through hole straight pin header, 1x22, 1.00mm pitch, single row -Through hole pin header THT 1x22 1.00mm single row -0 -22 -22 -Connector_PinHeader_1.00mm -PinHeader_1x22_P1.00mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x22, 1.00mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x22 1.00mm single row style1 pin1 left -0 -22 -22 -Connector_PinHeader_1.00mm -PinHeader_1x22_P1.00mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x22, 1.00mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x22 1.00mm single row style2 pin1 right -0 -22 -22 -Connector_PinHeader_1.00mm -PinHeader_1x23_P1.00mm_Horizontal -Through hole angled pin header, 1x23, 1.00mm pitch, 2.0mm pin length, single row -Through hole angled pin header THT 1x23 1.00mm single row -0 -23 -23 -Connector_PinHeader_1.00mm -PinHeader_1x23_P1.00mm_Vertical -Through hole straight pin header, 1x23, 1.00mm pitch, single row -Through hole pin header THT 1x23 1.00mm single row -0 -23 -23 -Connector_PinHeader_1.00mm -PinHeader_1x23_P1.00mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x23, 1.00mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x23 1.00mm single row style1 pin1 left -0 -23 -23 -Connector_PinHeader_1.00mm -PinHeader_1x23_P1.00mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x23, 1.00mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x23 1.00mm single row style2 pin1 right -0 -23 -23 -Connector_PinHeader_1.00mm -PinHeader_1x24_P1.00mm_Horizontal -Through hole angled pin header, 1x24, 1.00mm pitch, 2.0mm pin length, single row -Through hole angled pin header THT 1x24 1.00mm single row -0 -24 -24 -Connector_PinHeader_1.00mm -PinHeader_1x24_P1.00mm_Vertical -Through hole straight pin header, 1x24, 1.00mm pitch, single row -Through hole pin header THT 1x24 1.00mm single row -0 -24 -24 -Connector_PinHeader_1.00mm -PinHeader_1x24_P1.00mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x24, 1.00mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x24 1.00mm single row style1 pin1 left -0 -24 -24 -Connector_PinHeader_1.00mm -PinHeader_1x24_P1.00mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x24, 1.00mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x24 1.00mm single row style2 pin1 right -0 -24 -24 -Connector_PinHeader_1.00mm -PinHeader_1x25_P1.00mm_Horizontal -Through hole angled pin header, 1x25, 1.00mm pitch, 2.0mm pin length, single row -Through hole angled pin header THT 1x25 1.00mm single row -0 -25 -25 -Connector_PinHeader_1.00mm -PinHeader_1x25_P1.00mm_Vertical -Through hole straight pin header, 1x25, 1.00mm pitch, single row -Through hole pin header THT 1x25 1.00mm single row -0 -25 -25 -Connector_PinHeader_1.00mm -PinHeader_1x25_P1.00mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x25, 1.00mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x25 1.00mm single row style1 pin1 left -0 -25 -25 -Connector_PinHeader_1.00mm -PinHeader_1x25_P1.00mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x25, 1.00mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x25 1.00mm single row style2 pin1 right -0 -25 -25 -Connector_PinHeader_1.00mm -PinHeader_1x26_P1.00mm_Horizontal -Through hole angled pin header, 1x26, 1.00mm pitch, 2.0mm pin length, single row -Through hole angled pin header THT 1x26 1.00mm single row -0 -26 -26 -Connector_PinHeader_1.00mm -PinHeader_1x26_P1.00mm_Vertical -Through hole straight pin header, 1x26, 1.00mm pitch, single row -Through hole pin header THT 1x26 1.00mm single row -0 -26 -26 -Connector_PinHeader_1.00mm -PinHeader_1x26_P1.00mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x26, 1.00mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x26 1.00mm single row style1 pin1 left -0 -26 -26 -Connector_PinHeader_1.00mm -PinHeader_1x26_P1.00mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x26, 1.00mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x26 1.00mm single row style2 pin1 right -0 -26 -26 -Connector_PinHeader_1.00mm -PinHeader_1x27_P1.00mm_Horizontal -Through hole angled pin header, 1x27, 1.00mm pitch, 2.0mm pin length, single row -Through hole angled pin header THT 1x27 1.00mm single row -0 -27 -27 -Connector_PinHeader_1.00mm -PinHeader_1x27_P1.00mm_Vertical -Through hole straight pin header, 1x27, 1.00mm pitch, single row -Through hole pin header THT 1x27 1.00mm single row -0 -27 -27 -Connector_PinHeader_1.00mm -PinHeader_1x27_P1.00mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x27, 1.00mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x27 1.00mm single row style1 pin1 left -0 -27 -27 -Connector_PinHeader_1.00mm -PinHeader_1x27_P1.00mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x27, 1.00mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x27 1.00mm single row style2 pin1 right -0 -27 -27 -Connector_PinHeader_1.00mm -PinHeader_1x28_P1.00mm_Horizontal -Through hole angled pin header, 1x28, 1.00mm pitch, 2.0mm pin length, single row -Through hole angled pin header THT 1x28 1.00mm single row -0 -28 -28 -Connector_PinHeader_1.00mm -PinHeader_1x28_P1.00mm_Vertical -Through hole straight pin header, 1x28, 1.00mm pitch, single row -Through hole pin header THT 1x28 1.00mm single row -0 -28 -28 -Connector_PinHeader_1.00mm -PinHeader_1x28_P1.00mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x28, 1.00mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x28 1.00mm single row style1 pin1 left -0 -28 -28 -Connector_PinHeader_1.00mm -PinHeader_1x28_P1.00mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x28, 1.00mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x28 1.00mm single row style2 pin1 right -0 -28 -28 -Connector_PinHeader_1.00mm -PinHeader_1x29_P1.00mm_Horizontal -Through hole angled pin header, 1x29, 1.00mm pitch, 2.0mm pin length, single row -Through hole angled pin header THT 1x29 1.00mm single row -0 -29 -29 -Connector_PinHeader_1.00mm -PinHeader_1x29_P1.00mm_Vertical -Through hole straight pin header, 1x29, 1.00mm pitch, single row -Through hole pin header THT 1x29 1.00mm single row -0 -29 -29 -Connector_PinHeader_1.00mm -PinHeader_1x29_P1.00mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x29, 1.00mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x29 1.00mm single row style1 pin1 left -0 -29 -29 -Connector_PinHeader_1.00mm -PinHeader_1x29_P1.00mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x29, 1.00mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x29 1.00mm single row style2 pin1 right -0 -29 -29 -Connector_PinHeader_1.00mm -PinHeader_1x30_P1.00mm_Horizontal -Through hole angled pin header, 1x30, 1.00mm pitch, 2.0mm pin length, single row -Through hole angled pin header THT 1x30 1.00mm single row -0 -30 -30 -Connector_PinHeader_1.00mm -PinHeader_1x30_P1.00mm_Vertical -Through hole straight pin header, 1x30, 1.00mm pitch, single row -Through hole pin header THT 1x30 1.00mm single row -0 -30 -30 -Connector_PinHeader_1.00mm -PinHeader_1x30_P1.00mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x30, 1.00mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x30 1.00mm single row style1 pin1 left -0 -30 -30 -Connector_PinHeader_1.00mm -PinHeader_1x30_P1.00mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x30, 1.00mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x30 1.00mm single row style2 pin1 right -0 -30 -30 -Connector_PinHeader_1.00mm -PinHeader_1x31_P1.00mm_Horizontal -Through hole angled pin header, 1x31, 1.00mm pitch, 2.0mm pin length, single row -Through hole angled pin header THT 1x31 1.00mm single row -0 -31 -31 -Connector_PinHeader_1.00mm -PinHeader_1x31_P1.00mm_Vertical -Through hole straight pin header, 1x31, 1.00mm pitch, single row -Through hole pin header THT 1x31 1.00mm single row -0 -31 -31 -Connector_PinHeader_1.00mm -PinHeader_1x31_P1.00mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x31, 1.00mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x31 1.00mm single row style1 pin1 left -0 -31 -31 -Connector_PinHeader_1.00mm -PinHeader_1x31_P1.00mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x31, 1.00mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x31 1.00mm single row style2 pin1 right -0 -31 -31 -Connector_PinHeader_1.00mm -PinHeader_1x32_P1.00mm_Horizontal -Through hole angled pin header, 1x32, 1.00mm pitch, 2.0mm pin length, single row -Through hole angled pin header THT 1x32 1.00mm single row -0 -32 -32 -Connector_PinHeader_1.00mm -PinHeader_1x32_P1.00mm_Vertical -Through hole straight pin header, 1x32, 1.00mm pitch, single row -Through hole pin header THT 1x32 1.00mm single row -0 -32 -32 -Connector_PinHeader_1.00mm -PinHeader_1x32_P1.00mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x32, 1.00mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x32 1.00mm single row style1 pin1 left -0 -32 -32 -Connector_PinHeader_1.00mm -PinHeader_1x32_P1.00mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x32, 1.00mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x32 1.00mm single row style2 pin1 right -0 -32 -32 -Connector_PinHeader_1.00mm -PinHeader_1x33_P1.00mm_Horizontal -Through hole angled pin header, 1x33, 1.00mm pitch, 2.0mm pin length, single row -Through hole angled pin header THT 1x33 1.00mm single row -0 -33 -33 -Connector_PinHeader_1.00mm -PinHeader_1x33_P1.00mm_Vertical -Through hole straight pin header, 1x33, 1.00mm pitch, single row -Through hole pin header THT 1x33 1.00mm single row -0 -33 -33 -Connector_PinHeader_1.00mm -PinHeader_1x33_P1.00mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x33, 1.00mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x33 1.00mm single row style1 pin1 left -0 -33 -33 -Connector_PinHeader_1.00mm -PinHeader_1x33_P1.00mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x33, 1.00mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x33 1.00mm single row style2 pin1 right -0 -33 -33 -Connector_PinHeader_1.00mm -PinHeader_1x34_P1.00mm_Horizontal -Through hole angled pin header, 1x34, 1.00mm pitch, 2.0mm pin length, single row -Through hole angled pin header THT 1x34 1.00mm single row -0 -34 -34 -Connector_PinHeader_1.00mm -PinHeader_1x34_P1.00mm_Vertical -Through hole straight pin header, 1x34, 1.00mm pitch, single row -Through hole pin header THT 1x34 1.00mm single row -0 -34 -34 -Connector_PinHeader_1.00mm -PinHeader_1x34_P1.00mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x34, 1.00mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x34 1.00mm single row style1 pin1 left -0 -34 -34 -Connector_PinHeader_1.00mm -PinHeader_1x34_P1.00mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x34, 1.00mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x34 1.00mm single row style2 pin1 right -0 -34 -34 -Connector_PinHeader_1.00mm -PinHeader_1x35_P1.00mm_Horizontal -Through hole angled pin header, 1x35, 1.00mm pitch, 2.0mm pin length, single row -Through hole angled pin header THT 1x35 1.00mm single row -0 -35 -35 -Connector_PinHeader_1.00mm -PinHeader_1x35_P1.00mm_Vertical -Through hole straight pin header, 1x35, 1.00mm pitch, single row -Through hole pin header THT 1x35 1.00mm single row -0 -35 -35 -Connector_PinHeader_1.00mm -PinHeader_1x35_P1.00mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x35, 1.00mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x35 1.00mm single row style1 pin1 left -0 -35 -35 -Connector_PinHeader_1.00mm -PinHeader_1x35_P1.00mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x35, 1.00mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x35 1.00mm single row style2 pin1 right -0 -35 -35 -Connector_PinHeader_1.00mm -PinHeader_1x36_P1.00mm_Horizontal -Through hole angled pin header, 1x36, 1.00mm pitch, 2.0mm pin length, single row -Through hole angled pin header THT 1x36 1.00mm single row -0 -36 -36 -Connector_PinHeader_1.00mm -PinHeader_1x36_P1.00mm_Vertical -Through hole straight pin header, 1x36, 1.00mm pitch, single row -Through hole pin header THT 1x36 1.00mm single row -0 -36 -36 -Connector_PinHeader_1.00mm -PinHeader_1x36_P1.00mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x36, 1.00mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x36 1.00mm single row style1 pin1 left -0 -36 -36 -Connector_PinHeader_1.00mm -PinHeader_1x36_P1.00mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x36, 1.00mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x36 1.00mm single row style2 pin1 right -0 -36 -36 -Connector_PinHeader_1.00mm -PinHeader_1x37_P1.00mm_Horizontal -Through hole angled pin header, 1x37, 1.00mm pitch, 2.0mm pin length, single row -Through hole angled pin header THT 1x37 1.00mm single row -0 -37 -37 -Connector_PinHeader_1.00mm -PinHeader_1x37_P1.00mm_Vertical -Through hole straight pin header, 1x37, 1.00mm pitch, single row -Through hole pin header THT 1x37 1.00mm single row -0 -37 -37 -Connector_PinHeader_1.00mm -PinHeader_1x37_P1.00mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x37, 1.00mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x37 1.00mm single row style1 pin1 left -0 -37 -37 -Connector_PinHeader_1.00mm -PinHeader_1x37_P1.00mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x37, 1.00mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x37 1.00mm single row style2 pin1 right -0 -37 -37 -Connector_PinHeader_1.00mm -PinHeader_1x38_P1.00mm_Horizontal -Through hole angled pin header, 1x38, 1.00mm pitch, 2.0mm pin length, single row -Through hole angled pin header THT 1x38 1.00mm single row -0 -38 -38 -Connector_PinHeader_1.00mm -PinHeader_1x38_P1.00mm_Vertical -Through hole straight pin header, 1x38, 1.00mm pitch, single row -Through hole pin header THT 1x38 1.00mm single row -0 -38 -38 -Connector_PinHeader_1.00mm -PinHeader_1x38_P1.00mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x38, 1.00mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x38 1.00mm single row style1 pin1 left -0 -38 -38 -Connector_PinHeader_1.00mm -PinHeader_1x38_P1.00mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x38, 1.00mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x38 1.00mm single row style2 pin1 right -0 -38 -38 -Connector_PinHeader_1.00mm -PinHeader_1x39_P1.00mm_Horizontal -Through hole angled pin header, 1x39, 1.00mm pitch, 2.0mm pin length, single row -Through hole angled pin header THT 1x39 1.00mm single row -0 -39 -39 -Connector_PinHeader_1.00mm -PinHeader_1x39_P1.00mm_Vertical -Through hole straight pin header, 1x39, 1.00mm pitch, single row -Through hole pin header THT 1x39 1.00mm single row -0 -39 -39 -Connector_PinHeader_1.00mm -PinHeader_1x39_P1.00mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x39, 1.00mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x39 1.00mm single row style1 pin1 left -0 -39 -39 -Connector_PinHeader_1.00mm -PinHeader_1x39_P1.00mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x39, 1.00mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x39 1.00mm single row style2 pin1 right -0 -39 -39 -Connector_PinHeader_1.00mm -PinHeader_1x40_P1.00mm_Horizontal -Through hole angled pin header, 1x40, 1.00mm pitch, 2.0mm pin length, single row -Through hole angled pin header THT 1x40 1.00mm single row -0 -40 -40 -Connector_PinHeader_1.00mm -PinHeader_1x40_P1.00mm_Vertical -Through hole straight pin header, 1x40, 1.00mm pitch, single row -Through hole pin header THT 1x40 1.00mm single row -0 -40 -40 -Connector_PinHeader_1.00mm -PinHeader_1x40_P1.00mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x40, 1.00mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x40 1.00mm single row style1 pin1 left -0 -40 -40 -Connector_PinHeader_1.00mm -PinHeader_1x40_P1.00mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x40, 1.00mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x40 1.00mm single row style2 pin1 right -0 -40 -40 -Connector_PinHeader_1.00mm -PinHeader_2x01_P1.00mm_Horizontal -Through hole angled pin header, 2x01, 1.00mm pitch, 2.0mm pin length, double rows -Through hole angled pin header THT 2x01 1.00mm double row -0 -2 -2 -Connector_PinHeader_1.00mm -PinHeader_2x01_P1.00mm_Vertical -Through hole straight pin header, 2x01, 1.00mm pitch, double rows -Through hole pin header THT 2x01 1.00mm double row -0 -2 -2 -Connector_PinHeader_1.00mm -PinHeader_2x01_P1.00mm_Vertical_SMD -surface-mounted straight pin header, 2x01, 1.00mm pitch, double rows -Surface mounted pin header SMD 2x01 1.00mm double row -0 -2 -2 -Connector_PinHeader_1.00mm -PinHeader_2x02_P1.00mm_Horizontal -Through hole angled pin header, 2x02, 1.00mm pitch, 2.0mm pin length, double rows -Through hole angled pin header THT 2x02 1.00mm double row -0 -4 -4 -Connector_PinHeader_1.00mm -PinHeader_2x02_P1.00mm_Vertical -Through hole straight pin header, 2x02, 1.00mm pitch, double rows -Through hole pin header THT 2x02 1.00mm double row -0 -4 -4 -Connector_PinHeader_1.00mm -PinHeader_2x02_P1.00mm_Vertical_SMD -surface-mounted straight pin header, 2x02, 1.00mm pitch, double rows -Surface mounted pin header SMD 2x02 1.00mm double row -0 -4 -4 -Connector_PinHeader_1.00mm -PinHeader_2x03_P1.00mm_Horizontal -Through hole angled pin header, 2x03, 1.00mm pitch, 2.0mm pin length, double rows -Through hole angled pin header THT 2x03 1.00mm double row -0 -6 -6 -Connector_PinHeader_1.00mm -PinHeader_2x03_P1.00mm_Vertical -Through hole straight pin header, 2x03, 1.00mm pitch, double rows -Through hole pin header THT 2x03 1.00mm double row -0 -6 -6 -Connector_PinHeader_1.00mm -PinHeader_2x03_P1.00mm_Vertical_SMD -surface-mounted straight pin header, 2x03, 1.00mm pitch, double rows -Surface mounted pin header SMD 2x03 1.00mm double row -0 -6 -6 -Connector_PinHeader_1.00mm -PinHeader_2x04_P1.00mm_Horizontal -Through hole angled pin header, 2x04, 1.00mm pitch, 2.0mm pin length, double rows -Through hole angled pin header THT 2x04 1.00mm double row -0 -8 -8 -Connector_PinHeader_1.00mm -PinHeader_2x04_P1.00mm_Vertical -Through hole straight pin header, 2x04, 1.00mm pitch, double rows -Through hole pin header THT 2x04 1.00mm double row -0 -8 -8 -Connector_PinHeader_1.00mm -PinHeader_2x04_P1.00mm_Vertical_SMD -surface-mounted straight pin header, 2x04, 1.00mm pitch, double rows -Surface mounted pin header SMD 2x04 1.00mm double row -0 -8 -8 -Connector_PinHeader_1.00mm -PinHeader_2x05_P1.00mm_Horizontal -Through hole angled pin header, 2x05, 1.00mm pitch, 2.0mm pin length, double rows -Through hole angled pin header THT 2x05 1.00mm double row -0 -10 -10 -Connector_PinHeader_1.00mm -PinHeader_2x05_P1.00mm_Vertical -Through hole straight pin header, 2x05, 1.00mm pitch, double rows -Through hole pin header THT 2x05 1.00mm double row -0 -10 -10 -Connector_PinHeader_1.00mm -PinHeader_2x05_P1.00mm_Vertical_SMD -surface-mounted straight pin header, 2x05, 1.00mm pitch, double rows -Surface mounted pin header SMD 2x05 1.00mm double row -0 -10 -10 -Connector_PinHeader_1.00mm -PinHeader_2x06_P1.00mm_Horizontal -Through hole angled pin header, 2x06, 1.00mm pitch, 2.0mm pin length, double rows -Through hole angled pin header THT 2x06 1.00mm double row -0 -12 -12 -Connector_PinHeader_1.00mm -PinHeader_2x06_P1.00mm_Vertical -Through hole straight pin header, 2x06, 1.00mm pitch, double rows -Through hole pin header THT 2x06 1.00mm double row -0 -12 -12 -Connector_PinHeader_1.00mm -PinHeader_2x06_P1.00mm_Vertical_SMD -surface-mounted straight pin header, 2x06, 1.00mm pitch, double rows -Surface mounted pin header SMD 2x06 1.00mm double row -0 -12 -12 -Connector_PinHeader_1.00mm -PinHeader_2x07_P1.00mm_Horizontal -Through hole angled pin header, 2x07, 1.00mm pitch, 2.0mm pin length, double rows -Through hole angled pin header THT 2x07 1.00mm double row -0 -14 -14 -Connector_PinHeader_1.00mm -PinHeader_2x07_P1.00mm_Vertical -Through hole straight pin header, 2x07, 1.00mm pitch, double rows -Through hole pin header THT 2x07 1.00mm double row -0 -14 -14 -Connector_PinHeader_1.00mm -PinHeader_2x07_P1.00mm_Vertical_SMD -surface-mounted straight pin header, 2x07, 1.00mm pitch, double rows -Surface mounted pin header SMD 2x07 1.00mm double row -0 -14 -14 -Connector_PinHeader_1.00mm -PinHeader_2x08_P1.00mm_Horizontal -Through hole angled pin header, 2x08, 1.00mm pitch, 2.0mm pin length, double rows -Through hole angled pin header THT 2x08 1.00mm double row -0 -16 -16 -Connector_PinHeader_1.00mm -PinHeader_2x08_P1.00mm_Vertical -Through hole straight pin header, 2x08, 1.00mm pitch, double rows -Through hole pin header THT 2x08 1.00mm double row -0 -16 -16 -Connector_PinHeader_1.00mm -PinHeader_2x08_P1.00mm_Vertical_SMD -surface-mounted straight pin header, 2x08, 1.00mm pitch, double rows -Surface mounted pin header SMD 2x08 1.00mm double row -0 -16 -16 -Connector_PinHeader_1.00mm -PinHeader_2x09_P1.00mm_Horizontal -Through hole angled pin header, 2x09, 1.00mm pitch, 2.0mm pin length, double rows -Through hole angled pin header THT 2x09 1.00mm double row -0 -18 -18 -Connector_PinHeader_1.00mm -PinHeader_2x09_P1.00mm_Vertical -Through hole straight pin header, 2x09, 1.00mm pitch, double rows -Through hole pin header THT 2x09 1.00mm double row -0 -18 -18 -Connector_PinHeader_1.00mm -PinHeader_2x09_P1.00mm_Vertical_SMD -surface-mounted straight pin header, 2x09, 1.00mm pitch, double rows -Surface mounted pin header SMD 2x09 1.00mm double row -0 -18 -18 -Connector_PinHeader_1.00mm -PinHeader_2x10_P1.00mm_Horizontal -Through hole angled pin header, 2x10, 1.00mm pitch, 2.0mm pin length, double rows -Through hole angled pin header THT 2x10 1.00mm double row -0 -20 -20 -Connector_PinHeader_1.00mm -PinHeader_2x10_P1.00mm_Vertical -Through hole straight pin header, 2x10, 1.00mm pitch, double rows -Through hole pin header THT 2x10 1.00mm double row -0 -20 -20 -Connector_PinHeader_1.00mm -PinHeader_2x10_P1.00mm_Vertical_SMD -surface-mounted straight pin header, 2x10, 1.00mm pitch, double rows -Surface mounted pin header SMD 2x10 1.00mm double row -0 -20 -20 -Connector_PinHeader_1.00mm -PinHeader_2x11_P1.00mm_Horizontal -Through hole angled pin header, 2x11, 1.00mm pitch, 2.0mm pin length, double rows -Through hole angled pin header THT 2x11 1.00mm double row -0 -22 -22 -Connector_PinHeader_1.00mm -PinHeader_2x11_P1.00mm_Vertical -Through hole straight pin header, 2x11, 1.00mm pitch, double rows -Through hole pin header THT 2x11 1.00mm double row -0 -22 -22 -Connector_PinHeader_1.00mm -PinHeader_2x11_P1.00mm_Vertical_SMD -surface-mounted straight pin header, 2x11, 1.00mm pitch, double rows -Surface mounted pin header SMD 2x11 1.00mm double row -0 -22 -22 -Connector_PinHeader_1.00mm -PinHeader_2x12_P1.00mm_Horizontal -Through hole angled pin header, 2x12, 1.00mm pitch, 2.0mm pin length, double rows -Through hole angled pin header THT 2x12 1.00mm double row -0 -24 -24 -Connector_PinHeader_1.00mm -PinHeader_2x12_P1.00mm_Vertical -Through hole straight pin header, 2x12, 1.00mm pitch, double rows -Through hole pin header THT 2x12 1.00mm double row -0 -24 -24 -Connector_PinHeader_1.00mm -PinHeader_2x12_P1.00mm_Vertical_SMD -surface-mounted straight pin header, 2x12, 1.00mm pitch, double rows -Surface mounted pin header SMD 2x12 1.00mm double row -0 -24 -24 -Connector_PinHeader_1.00mm -PinHeader_2x13_P1.00mm_Horizontal -Through hole angled pin header, 2x13, 1.00mm pitch, 2.0mm pin length, double rows -Through hole angled pin header THT 2x13 1.00mm double row -0 -26 -26 -Connector_PinHeader_1.00mm -PinHeader_2x13_P1.00mm_Vertical -Through hole straight pin header, 2x13, 1.00mm pitch, double rows -Through hole pin header THT 2x13 1.00mm double row -0 -26 -26 -Connector_PinHeader_1.00mm -PinHeader_2x13_P1.00mm_Vertical_SMD -surface-mounted straight pin header, 2x13, 1.00mm pitch, double rows -Surface mounted pin header SMD 2x13 1.00mm double row -0 -26 -26 -Connector_PinHeader_1.00mm -PinHeader_2x14_P1.00mm_Horizontal -Through hole angled pin header, 2x14, 1.00mm pitch, 2.0mm pin length, double rows -Through hole angled pin header THT 2x14 1.00mm double row -0 -28 -28 -Connector_PinHeader_1.00mm -PinHeader_2x14_P1.00mm_Vertical -Through hole straight pin header, 2x14, 1.00mm pitch, double rows -Through hole pin header THT 2x14 1.00mm double row -0 -28 -28 -Connector_PinHeader_1.00mm -PinHeader_2x14_P1.00mm_Vertical_SMD -surface-mounted straight pin header, 2x14, 1.00mm pitch, double rows -Surface mounted pin header SMD 2x14 1.00mm double row -0 -28 -28 -Connector_PinHeader_1.00mm -PinHeader_2x15_P1.00mm_Horizontal -Through hole angled pin header, 2x15, 1.00mm pitch, 2.0mm pin length, double rows -Through hole angled pin header THT 2x15 1.00mm double row -0 -30 -30 -Connector_PinHeader_1.00mm -PinHeader_2x15_P1.00mm_Vertical -Through hole straight pin header, 2x15, 1.00mm pitch, double rows -Through hole pin header THT 2x15 1.00mm double row -0 -30 -30 -Connector_PinHeader_1.00mm -PinHeader_2x15_P1.00mm_Vertical_SMD -surface-mounted straight pin header, 2x15, 1.00mm pitch, double rows -Surface mounted pin header SMD 2x15 1.00mm double row -0 -30 -30 -Connector_PinHeader_1.00mm -PinHeader_2x16_P1.00mm_Horizontal -Through hole angled pin header, 2x16, 1.00mm pitch, 2.0mm pin length, double rows -Through hole angled pin header THT 2x16 1.00mm double row -0 -32 -32 -Connector_PinHeader_1.00mm -PinHeader_2x16_P1.00mm_Vertical -Through hole straight pin header, 2x16, 1.00mm pitch, double rows -Through hole pin header THT 2x16 1.00mm double row -0 -32 -32 -Connector_PinHeader_1.00mm -PinHeader_2x16_P1.00mm_Vertical_SMD -surface-mounted straight pin header, 2x16, 1.00mm pitch, double rows -Surface mounted pin header SMD 2x16 1.00mm double row -0 -32 -32 -Connector_PinHeader_1.00mm -PinHeader_2x17_P1.00mm_Horizontal -Through hole angled pin header, 2x17, 1.00mm pitch, 2.0mm pin length, double rows -Through hole angled pin header THT 2x17 1.00mm double row -0 -34 -34 -Connector_PinHeader_1.00mm -PinHeader_2x17_P1.00mm_Vertical -Through hole straight pin header, 2x17, 1.00mm pitch, double rows -Through hole pin header THT 2x17 1.00mm double row -0 -34 -34 -Connector_PinHeader_1.00mm -PinHeader_2x17_P1.00mm_Vertical_SMD -surface-mounted straight pin header, 2x17, 1.00mm pitch, double rows -Surface mounted pin header SMD 2x17 1.00mm double row -0 -34 -34 -Connector_PinHeader_1.00mm -PinHeader_2x18_P1.00mm_Horizontal -Through hole angled pin header, 2x18, 1.00mm pitch, 2.0mm pin length, double rows -Through hole angled pin header THT 2x18 1.00mm double row -0 -36 -36 -Connector_PinHeader_1.00mm -PinHeader_2x18_P1.00mm_Vertical -Through hole straight pin header, 2x18, 1.00mm pitch, double rows -Through hole pin header THT 2x18 1.00mm double row -0 -36 -36 -Connector_PinHeader_1.00mm -PinHeader_2x18_P1.00mm_Vertical_SMD -surface-mounted straight pin header, 2x18, 1.00mm pitch, double rows -Surface mounted pin header SMD 2x18 1.00mm double row -0 -36 -36 -Connector_PinHeader_1.00mm -PinHeader_2x19_P1.00mm_Horizontal -Through hole angled pin header, 2x19, 1.00mm pitch, 2.0mm pin length, double rows -Through hole angled pin header THT 2x19 1.00mm double row -0 -38 -38 -Connector_PinHeader_1.00mm -PinHeader_2x19_P1.00mm_Vertical -Through hole straight pin header, 2x19, 1.00mm pitch, double rows -Through hole pin header THT 2x19 1.00mm double row -0 -38 -38 -Connector_PinHeader_1.00mm -PinHeader_2x19_P1.00mm_Vertical_SMD -surface-mounted straight pin header, 2x19, 1.00mm pitch, double rows -Surface mounted pin header SMD 2x19 1.00mm double row -0 -38 -38 -Connector_PinHeader_1.00mm -PinHeader_2x20_P1.00mm_Horizontal -Through hole angled pin header, 2x20, 1.00mm pitch, 2.0mm pin length, double rows -Through hole angled pin header THT 2x20 1.00mm double row -0 -40 -40 -Connector_PinHeader_1.00mm -PinHeader_2x20_P1.00mm_Vertical -Through hole straight pin header, 2x20, 1.00mm pitch, double rows -Through hole pin header THT 2x20 1.00mm double row -0 -40 -40 -Connector_PinHeader_1.00mm -PinHeader_2x20_P1.00mm_Vertical_SMD -surface-mounted straight pin header, 2x20, 1.00mm pitch, double rows -Surface mounted pin header SMD 2x20 1.00mm double row -0 -40 -40 -Connector_PinHeader_1.00mm -PinHeader_2x21_P1.00mm_Horizontal -Through hole angled pin header, 2x21, 1.00mm pitch, 2.0mm pin length, double rows -Through hole angled pin header THT 2x21 1.00mm double row -0 -42 -42 -Connector_PinHeader_1.00mm -PinHeader_2x21_P1.00mm_Vertical -Through hole straight pin header, 2x21, 1.00mm pitch, double rows -Through hole pin header THT 2x21 1.00mm double row -0 -42 -42 -Connector_PinHeader_1.00mm -PinHeader_2x21_P1.00mm_Vertical_SMD -surface-mounted straight pin header, 2x21, 1.00mm pitch, double rows -Surface mounted pin header SMD 2x21 1.00mm double row -0 -42 -42 -Connector_PinHeader_1.00mm -PinHeader_2x22_P1.00mm_Horizontal -Through hole angled pin header, 2x22, 1.00mm pitch, 2.0mm pin length, double rows -Through hole angled pin header THT 2x22 1.00mm double row -0 -44 -44 -Connector_PinHeader_1.00mm -PinHeader_2x22_P1.00mm_Vertical -Through hole straight pin header, 2x22, 1.00mm pitch, double rows -Through hole pin header THT 2x22 1.00mm double row -0 -44 -44 -Connector_PinHeader_1.00mm -PinHeader_2x22_P1.00mm_Vertical_SMD -surface-mounted straight pin header, 2x22, 1.00mm pitch, double rows -Surface mounted pin header SMD 2x22 1.00mm double row -0 -44 -44 -Connector_PinHeader_1.00mm -PinHeader_2x23_P1.00mm_Horizontal -Through hole angled pin header, 2x23, 1.00mm pitch, 2.0mm pin length, double rows -Through hole angled pin header THT 2x23 1.00mm double row -0 -46 -46 -Connector_PinHeader_1.00mm -PinHeader_2x23_P1.00mm_Vertical -Through hole straight pin header, 2x23, 1.00mm pitch, double rows -Through hole pin header THT 2x23 1.00mm double row -0 -46 -46 -Connector_PinHeader_1.00mm -PinHeader_2x23_P1.00mm_Vertical_SMD -surface-mounted straight pin header, 2x23, 1.00mm pitch, double rows -Surface mounted pin header SMD 2x23 1.00mm double row -0 -46 -46 -Connector_PinHeader_1.00mm -PinHeader_2x24_P1.00mm_Horizontal -Through hole angled pin header, 2x24, 1.00mm pitch, 2.0mm pin length, double rows -Through hole angled pin header THT 2x24 1.00mm double row -0 -48 -48 -Connector_PinHeader_1.00mm -PinHeader_2x24_P1.00mm_Vertical -Through hole straight pin header, 2x24, 1.00mm pitch, double rows -Through hole pin header THT 2x24 1.00mm double row -0 -48 -48 -Connector_PinHeader_1.00mm -PinHeader_2x24_P1.00mm_Vertical_SMD -surface-mounted straight pin header, 2x24, 1.00mm pitch, double rows -Surface mounted pin header SMD 2x24 1.00mm double row -0 -48 -48 -Connector_PinHeader_1.00mm -PinHeader_2x25_P1.00mm_Horizontal -Through hole angled pin header, 2x25, 1.00mm pitch, 2.0mm pin length, double rows -Through hole angled pin header THT 2x25 1.00mm double row -0 -50 -50 -Connector_PinHeader_1.00mm -PinHeader_2x25_P1.00mm_Vertical -Through hole straight pin header, 2x25, 1.00mm pitch, double rows -Through hole pin header THT 2x25 1.00mm double row -0 -50 -50 -Connector_PinHeader_1.00mm -PinHeader_2x25_P1.00mm_Vertical_SMD -surface-mounted straight pin header, 2x25, 1.00mm pitch, double rows -Surface mounted pin header SMD 2x25 1.00mm double row -0 -50 -50 -Connector_PinHeader_1.00mm -PinHeader_2x26_P1.00mm_Horizontal -Through hole angled pin header, 2x26, 1.00mm pitch, 2.0mm pin length, double rows -Through hole angled pin header THT 2x26 1.00mm double row -0 -52 -52 -Connector_PinHeader_1.00mm -PinHeader_2x26_P1.00mm_Vertical -Through hole straight pin header, 2x26, 1.00mm pitch, double rows -Through hole pin header THT 2x26 1.00mm double row -0 -52 -52 -Connector_PinHeader_1.00mm -PinHeader_2x26_P1.00mm_Vertical_SMD -surface-mounted straight pin header, 2x26, 1.00mm pitch, double rows -Surface mounted pin header SMD 2x26 1.00mm double row -0 -52 -52 -Connector_PinHeader_1.00mm -PinHeader_2x27_P1.00mm_Horizontal -Through hole angled pin header, 2x27, 1.00mm pitch, 2.0mm pin length, double rows -Through hole angled pin header THT 2x27 1.00mm double row -0 -54 -54 -Connector_PinHeader_1.00mm -PinHeader_2x27_P1.00mm_Vertical -Through hole straight pin header, 2x27, 1.00mm pitch, double rows -Through hole pin header THT 2x27 1.00mm double row -0 -54 -54 -Connector_PinHeader_1.00mm -PinHeader_2x27_P1.00mm_Vertical_SMD -surface-mounted straight pin header, 2x27, 1.00mm pitch, double rows -Surface mounted pin header SMD 2x27 1.00mm double row -0 -54 -54 -Connector_PinHeader_1.00mm -PinHeader_2x28_P1.00mm_Horizontal -Through hole angled pin header, 2x28, 1.00mm pitch, 2.0mm pin length, double rows -Through hole angled pin header THT 2x28 1.00mm double row -0 -56 -56 -Connector_PinHeader_1.00mm -PinHeader_2x28_P1.00mm_Vertical -Through hole straight pin header, 2x28, 1.00mm pitch, double rows -Through hole pin header THT 2x28 1.00mm double row -0 -56 -56 -Connector_PinHeader_1.00mm -PinHeader_2x28_P1.00mm_Vertical_SMD -surface-mounted straight pin header, 2x28, 1.00mm pitch, double rows -Surface mounted pin header SMD 2x28 1.00mm double row -0 -56 -56 -Connector_PinHeader_1.00mm -PinHeader_2x29_P1.00mm_Horizontal -Through hole angled pin header, 2x29, 1.00mm pitch, 2.0mm pin length, double rows -Through hole angled pin header THT 2x29 1.00mm double row -0 -58 -58 -Connector_PinHeader_1.00mm -PinHeader_2x29_P1.00mm_Vertical -Through hole straight pin header, 2x29, 1.00mm pitch, double rows -Through hole pin header THT 2x29 1.00mm double row -0 -58 -58 -Connector_PinHeader_1.00mm -PinHeader_2x29_P1.00mm_Vertical_SMD -surface-mounted straight pin header, 2x29, 1.00mm pitch, double rows -Surface mounted pin header SMD 2x29 1.00mm double row -0 -58 -58 -Connector_PinHeader_1.00mm -PinHeader_2x30_P1.00mm_Horizontal -Through hole angled pin header, 2x30, 1.00mm pitch, 2.0mm pin length, double rows -Through hole angled pin header THT 2x30 1.00mm double row -0 -60 -60 -Connector_PinHeader_1.00mm -PinHeader_2x30_P1.00mm_Vertical -Through hole straight pin header, 2x30, 1.00mm pitch, double rows -Through hole pin header THT 2x30 1.00mm double row -0 -60 -60 -Connector_PinHeader_1.00mm -PinHeader_2x30_P1.00mm_Vertical_SMD -surface-mounted straight pin header, 2x30, 1.00mm pitch, double rows -Surface mounted pin header SMD 2x30 1.00mm double row -0 -60 -60 -Connector_PinHeader_1.00mm -PinHeader_2x31_P1.00mm_Horizontal -Through hole angled pin header, 2x31, 1.00mm pitch, 2.0mm pin length, double rows -Through hole angled pin header THT 2x31 1.00mm double row -0 -62 -62 -Connector_PinHeader_1.00mm -PinHeader_2x31_P1.00mm_Vertical -Through hole straight pin header, 2x31, 1.00mm pitch, double rows -Through hole pin header THT 2x31 1.00mm double row -0 -62 -62 -Connector_PinHeader_1.00mm -PinHeader_2x31_P1.00mm_Vertical_SMD -surface-mounted straight pin header, 2x31, 1.00mm pitch, double rows -Surface mounted pin header SMD 2x31 1.00mm double row -0 -62 -62 -Connector_PinHeader_1.00mm -PinHeader_2x32_P1.00mm_Horizontal -Through hole angled pin header, 2x32, 1.00mm pitch, 2.0mm pin length, double rows -Through hole angled pin header THT 2x32 1.00mm double row -0 -64 -64 -Connector_PinHeader_1.00mm -PinHeader_2x32_P1.00mm_Vertical -Through hole straight pin header, 2x32, 1.00mm pitch, double rows -Through hole pin header THT 2x32 1.00mm double row -0 -64 -64 -Connector_PinHeader_1.00mm -PinHeader_2x32_P1.00mm_Vertical_SMD -surface-mounted straight pin header, 2x32, 1.00mm pitch, double rows -Surface mounted pin header SMD 2x32 1.00mm double row -0 -64 -64 -Connector_PinHeader_1.00mm -PinHeader_2x33_P1.00mm_Horizontal -Through hole angled pin header, 2x33, 1.00mm pitch, 2.0mm pin length, double rows -Through hole angled pin header THT 2x33 1.00mm double row -0 -66 -66 -Connector_PinHeader_1.00mm -PinHeader_2x33_P1.00mm_Vertical -Through hole straight pin header, 2x33, 1.00mm pitch, double rows -Through hole pin header THT 2x33 1.00mm double row -0 -66 -66 -Connector_PinHeader_1.00mm -PinHeader_2x33_P1.00mm_Vertical_SMD -surface-mounted straight pin header, 2x33, 1.00mm pitch, double rows -Surface mounted pin header SMD 2x33 1.00mm double row -0 -66 -66 -Connector_PinHeader_1.00mm -PinHeader_2x34_P1.00mm_Horizontal -Through hole angled pin header, 2x34, 1.00mm pitch, 2.0mm pin length, double rows -Through hole angled pin header THT 2x34 1.00mm double row -0 -68 -68 -Connector_PinHeader_1.00mm -PinHeader_2x34_P1.00mm_Vertical -Through hole straight pin header, 2x34, 1.00mm pitch, double rows -Through hole pin header THT 2x34 1.00mm double row -0 -68 -68 -Connector_PinHeader_1.00mm -PinHeader_2x34_P1.00mm_Vertical_SMD -surface-mounted straight pin header, 2x34, 1.00mm pitch, double rows -Surface mounted pin header SMD 2x34 1.00mm double row -0 -68 -68 -Connector_PinHeader_1.00mm -PinHeader_2x35_P1.00mm_Horizontal -Through hole angled pin header, 2x35, 1.00mm pitch, 2.0mm pin length, double rows -Through hole angled pin header THT 2x35 1.00mm double row -0 -70 -70 -Connector_PinHeader_1.00mm -PinHeader_2x35_P1.00mm_Vertical -Through hole straight pin header, 2x35, 1.00mm pitch, double rows -Through hole pin header THT 2x35 1.00mm double row -0 -70 -70 -Connector_PinHeader_1.00mm -PinHeader_2x35_P1.00mm_Vertical_SMD -surface-mounted straight pin header, 2x35, 1.00mm pitch, double rows -Surface mounted pin header SMD 2x35 1.00mm double row -0 -70 -70 -Connector_PinHeader_1.00mm -PinHeader_2x36_P1.00mm_Horizontal -Through hole angled pin header, 2x36, 1.00mm pitch, 2.0mm pin length, double rows -Through hole angled pin header THT 2x36 1.00mm double row -0 -72 -72 -Connector_PinHeader_1.00mm -PinHeader_2x36_P1.00mm_Vertical -Through hole straight pin header, 2x36, 1.00mm pitch, double rows -Through hole pin header THT 2x36 1.00mm double row -0 -72 -72 -Connector_PinHeader_1.00mm -PinHeader_2x36_P1.00mm_Vertical_SMD -surface-mounted straight pin header, 2x36, 1.00mm pitch, double rows -Surface mounted pin header SMD 2x36 1.00mm double row -0 -72 -72 -Connector_PinHeader_1.00mm -PinHeader_2x37_P1.00mm_Horizontal -Through hole angled pin header, 2x37, 1.00mm pitch, 2.0mm pin length, double rows -Through hole angled pin header THT 2x37 1.00mm double row -0 -74 -74 -Connector_PinHeader_1.00mm -PinHeader_2x37_P1.00mm_Vertical -Through hole straight pin header, 2x37, 1.00mm pitch, double rows -Through hole pin header THT 2x37 1.00mm double row -0 -74 -74 -Connector_PinHeader_1.00mm -PinHeader_2x37_P1.00mm_Vertical_SMD -surface-mounted straight pin header, 2x37, 1.00mm pitch, double rows -Surface mounted pin header SMD 2x37 1.00mm double row -0 -74 -74 -Connector_PinHeader_1.00mm -PinHeader_2x38_P1.00mm_Horizontal -Through hole angled pin header, 2x38, 1.00mm pitch, 2.0mm pin length, double rows -Through hole angled pin header THT 2x38 1.00mm double row -0 -76 -76 -Connector_PinHeader_1.00mm -PinHeader_2x38_P1.00mm_Vertical -Through hole straight pin header, 2x38, 1.00mm pitch, double rows -Through hole pin header THT 2x38 1.00mm double row -0 -76 -76 -Connector_PinHeader_1.00mm -PinHeader_2x38_P1.00mm_Vertical_SMD -surface-mounted straight pin header, 2x38, 1.00mm pitch, double rows -Surface mounted pin header SMD 2x38 1.00mm double row -0 -76 -76 -Connector_PinHeader_1.00mm -PinHeader_2x39_P1.00mm_Horizontal -Through hole angled pin header, 2x39, 1.00mm pitch, 2.0mm pin length, double rows -Through hole angled pin header THT 2x39 1.00mm double row -0 -78 -78 -Connector_PinHeader_1.00mm -PinHeader_2x39_P1.00mm_Vertical -Through hole straight pin header, 2x39, 1.00mm pitch, double rows -Through hole pin header THT 2x39 1.00mm double row -0 -78 -78 -Connector_PinHeader_1.00mm -PinHeader_2x39_P1.00mm_Vertical_SMD -surface-mounted straight pin header, 2x39, 1.00mm pitch, double rows -Surface mounted pin header SMD 2x39 1.00mm double row -0 -78 -78 -Connector_PinHeader_1.00mm -PinHeader_2x40_P1.00mm_Horizontal -Through hole angled pin header, 2x40, 1.00mm pitch, 2.0mm pin length, double rows -Through hole angled pin header THT 2x40 1.00mm double row -0 -80 -80 -Connector_PinHeader_1.00mm -PinHeader_2x40_P1.00mm_Vertical -Through hole straight pin header, 2x40, 1.00mm pitch, double rows -Through hole pin header THT 2x40 1.00mm double row -0 -80 -80 -Connector_PinHeader_1.00mm -PinHeader_2x40_P1.00mm_Vertical_SMD -surface-mounted straight pin header, 2x40, 1.00mm pitch, double rows -Surface mounted pin header SMD 2x40 1.00mm double row -0 -80 -80 -Connector_PinHeader_1.27mm -PinHeader_1x01_P1.27mm_Horizontal -Through hole angled pin header, 1x01, 1.27mm pitch, 4.0mm pin length, single row -Through hole angled pin header THT 1x01 1.27mm single row -0 -1 -1 -Connector_PinHeader_1.27mm -PinHeader_1x01_P1.27mm_Vertical -Through hole straight pin header, 1x01, 1.27mm pitch, single row -Through hole pin header THT 1x01 1.27mm single row -0 -1 -1 -Connector_PinHeader_1.27mm -PinHeader_1x02_P1.27mm_Horizontal -Through hole angled pin header, 1x02, 1.27mm pitch, 4.0mm pin length, single row -Through hole angled pin header THT 1x02 1.27mm single row -0 -2 -2 -Connector_PinHeader_1.27mm -PinHeader_1x02_P1.27mm_Vertical -Through hole straight pin header, 1x02, 1.27mm pitch, single row -Through hole pin header THT 1x02 1.27mm single row -0 -2 -2 -Connector_PinHeader_1.27mm -PinHeader_1x02_P1.27mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x02, 1.27mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x02 1.27mm single row style1 pin1 left -0 -2 -2 -Connector_PinHeader_1.27mm -PinHeader_1x02_P1.27mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x02, 1.27mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x02 1.27mm single row style2 pin1 right -0 -2 -2 -Connector_PinHeader_1.27mm -PinHeader_1x03_P1.27mm_Horizontal -Through hole angled pin header, 1x03, 1.27mm pitch, 4.0mm pin length, single row -Through hole angled pin header THT 1x03 1.27mm single row -0 -3 -3 -Connector_PinHeader_1.27mm -PinHeader_1x03_P1.27mm_Vertical -Through hole straight pin header, 1x03, 1.27mm pitch, single row -Through hole pin header THT 1x03 1.27mm single row -0 -3 -3 -Connector_PinHeader_1.27mm -PinHeader_1x03_P1.27mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x03, 1.27mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x03 1.27mm single row style1 pin1 left -0 -3 -3 -Connector_PinHeader_1.27mm -PinHeader_1x03_P1.27mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x03, 1.27mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x03 1.27mm single row style2 pin1 right -0 -3 -3 -Connector_PinHeader_1.27mm -PinHeader_1x04_P1.27mm_Horizontal -Through hole angled pin header, 1x04, 1.27mm pitch, 4.0mm pin length, single row -Through hole angled pin header THT 1x04 1.27mm single row -0 -4 -4 -Connector_PinHeader_1.27mm -PinHeader_1x04_P1.27mm_Vertical -Through hole straight pin header, 1x04, 1.27mm pitch, single row -Through hole pin header THT 1x04 1.27mm single row -0 -4 -4 -Connector_PinHeader_1.27mm -PinHeader_1x04_P1.27mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x04, 1.27mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x04 1.27mm single row style1 pin1 left -0 -4 -4 -Connector_PinHeader_1.27mm -PinHeader_1x04_P1.27mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x04, 1.27mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x04 1.27mm single row style2 pin1 right -0 -4 -4 -Connector_PinHeader_1.27mm -PinHeader_1x05_P1.27mm_Horizontal -Through hole angled pin header, 1x05, 1.27mm pitch, 4.0mm pin length, single row -Through hole angled pin header THT 1x05 1.27mm single row -0 -5 -5 -Connector_PinHeader_1.27mm -PinHeader_1x05_P1.27mm_Vertical -Through hole straight pin header, 1x05, 1.27mm pitch, single row -Through hole pin header THT 1x05 1.27mm single row -0 -5 -5 -Connector_PinHeader_1.27mm -PinHeader_1x05_P1.27mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x05, 1.27mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x05 1.27mm single row style1 pin1 left -0 -5 -5 -Connector_PinHeader_1.27mm -PinHeader_1x05_P1.27mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x05, 1.27mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x05 1.27mm single row style2 pin1 right -0 -5 -5 -Connector_PinHeader_1.27mm -PinHeader_1x06_P1.27mm_Horizontal -Through hole angled pin header, 1x06, 1.27mm pitch, 4.0mm pin length, single row -Through hole angled pin header THT 1x06 1.27mm single row -0 -6 -6 -Connector_PinHeader_1.27mm -PinHeader_1x06_P1.27mm_Vertical -Through hole straight pin header, 1x06, 1.27mm pitch, single row -Through hole pin header THT 1x06 1.27mm single row -0 -6 -6 -Connector_PinHeader_1.27mm -PinHeader_1x06_P1.27mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x06, 1.27mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x06 1.27mm single row style1 pin1 left -0 -6 -6 -Connector_PinHeader_1.27mm -PinHeader_1x06_P1.27mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x06, 1.27mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x06 1.27mm single row style2 pin1 right -0 -6 -6 -Connector_PinHeader_1.27mm -PinHeader_1x07_P1.27mm_Horizontal -Through hole angled pin header, 1x07, 1.27mm pitch, 4.0mm pin length, single row -Through hole angled pin header THT 1x07 1.27mm single row -0 -7 -7 -Connector_PinHeader_1.27mm -PinHeader_1x07_P1.27mm_Vertical -Through hole straight pin header, 1x07, 1.27mm pitch, single row -Through hole pin header THT 1x07 1.27mm single row -0 -7 -7 -Connector_PinHeader_1.27mm -PinHeader_1x07_P1.27mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x07, 1.27mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x07 1.27mm single row style1 pin1 left -0 -7 -7 -Connector_PinHeader_1.27mm -PinHeader_1x07_P1.27mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x07, 1.27mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x07 1.27mm single row style2 pin1 right -0 -7 -7 -Connector_PinHeader_1.27mm -PinHeader_1x08_P1.27mm_Horizontal -Through hole angled pin header, 1x08, 1.27mm pitch, 4.0mm pin length, single row -Through hole angled pin header THT 1x08 1.27mm single row -0 -8 -8 -Connector_PinHeader_1.27mm -PinHeader_1x08_P1.27mm_Vertical -Through hole straight pin header, 1x08, 1.27mm pitch, single row -Through hole pin header THT 1x08 1.27mm single row -0 -8 -8 -Connector_PinHeader_1.27mm -PinHeader_1x08_P1.27mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x08, 1.27mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x08 1.27mm single row style1 pin1 left -0 -8 -8 -Connector_PinHeader_1.27mm -PinHeader_1x08_P1.27mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x08, 1.27mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x08 1.27mm single row style2 pin1 right -0 -8 -8 -Connector_PinHeader_1.27mm -PinHeader_1x09_P1.27mm_Horizontal -Through hole angled pin header, 1x09, 1.27mm pitch, 4.0mm pin length, single row -Through hole angled pin header THT 1x09 1.27mm single row -0 -9 -9 -Connector_PinHeader_1.27mm -PinHeader_1x09_P1.27mm_Vertical -Through hole straight pin header, 1x09, 1.27mm pitch, single row -Through hole pin header THT 1x09 1.27mm single row -0 -9 -9 -Connector_PinHeader_1.27mm -PinHeader_1x09_P1.27mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x09, 1.27mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x09 1.27mm single row style1 pin1 left -0 -9 -9 -Connector_PinHeader_1.27mm -PinHeader_1x09_P1.27mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x09, 1.27mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x09 1.27mm single row style2 pin1 right -0 -9 -9 -Connector_PinHeader_1.27mm -PinHeader_1x10_P1.27mm_Horizontal -Through hole angled pin header, 1x10, 1.27mm pitch, 4.0mm pin length, single row -Through hole angled pin header THT 1x10 1.27mm single row -0 -10 -10 -Connector_PinHeader_1.27mm -PinHeader_1x10_P1.27mm_Vertical -Through hole straight pin header, 1x10, 1.27mm pitch, single row -Through hole pin header THT 1x10 1.27mm single row -0 -10 -10 -Connector_PinHeader_1.27mm -PinHeader_1x10_P1.27mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x10, 1.27mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x10 1.27mm single row style1 pin1 left -0 -10 -10 -Connector_PinHeader_1.27mm -PinHeader_1x10_P1.27mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x10, 1.27mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x10 1.27mm single row style2 pin1 right -0 -10 -10 -Connector_PinHeader_1.27mm -PinHeader_1x11_P1.27mm_Horizontal -Through hole angled pin header, 1x11, 1.27mm pitch, 4.0mm pin length, single row -Through hole angled pin header THT 1x11 1.27mm single row -0 -11 -11 -Connector_PinHeader_1.27mm -PinHeader_1x11_P1.27mm_Vertical -Through hole straight pin header, 1x11, 1.27mm pitch, single row -Through hole pin header THT 1x11 1.27mm single row -0 -11 -11 -Connector_PinHeader_1.27mm -PinHeader_1x11_P1.27mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x11, 1.27mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x11 1.27mm single row style1 pin1 left -0 -11 -11 -Connector_PinHeader_1.27mm -PinHeader_1x11_P1.27mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x11, 1.27mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x11 1.27mm single row style2 pin1 right -0 -11 -11 -Connector_PinHeader_1.27mm -PinHeader_1x12_P1.27mm_Horizontal -Through hole angled pin header, 1x12, 1.27mm pitch, 4.0mm pin length, single row -Through hole angled pin header THT 1x12 1.27mm single row -0 -12 -12 -Connector_PinHeader_1.27mm -PinHeader_1x12_P1.27mm_Vertical -Through hole straight pin header, 1x12, 1.27mm pitch, single row -Through hole pin header THT 1x12 1.27mm single row -0 -12 -12 -Connector_PinHeader_1.27mm -PinHeader_1x12_P1.27mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x12, 1.27mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x12 1.27mm single row style1 pin1 left -0 -12 -12 -Connector_PinHeader_1.27mm -PinHeader_1x12_P1.27mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x12, 1.27mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x12 1.27mm single row style2 pin1 right -0 -12 -12 -Connector_PinHeader_1.27mm -PinHeader_1x13_P1.27mm_Horizontal -Through hole angled pin header, 1x13, 1.27mm pitch, 4.0mm pin length, single row -Through hole angled pin header THT 1x13 1.27mm single row -0 -13 -13 -Connector_PinHeader_1.27mm -PinHeader_1x13_P1.27mm_Vertical -Through hole straight pin header, 1x13, 1.27mm pitch, single row -Through hole pin header THT 1x13 1.27mm single row -0 -13 -13 -Connector_PinHeader_1.27mm -PinHeader_1x13_P1.27mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x13, 1.27mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x13 1.27mm single row style1 pin1 left -0 -13 -13 -Connector_PinHeader_1.27mm -PinHeader_1x13_P1.27mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x13, 1.27mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x13 1.27mm single row style2 pin1 right -0 -13 -13 -Connector_PinHeader_1.27mm -PinHeader_1x14_P1.27mm_Horizontal -Through hole angled pin header, 1x14, 1.27mm pitch, 4.0mm pin length, single row -Through hole angled pin header THT 1x14 1.27mm single row -0 -14 -14 -Connector_PinHeader_1.27mm -PinHeader_1x14_P1.27mm_Vertical -Through hole straight pin header, 1x14, 1.27mm pitch, single row -Through hole pin header THT 1x14 1.27mm single row -0 -14 -14 -Connector_PinHeader_1.27mm -PinHeader_1x14_P1.27mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x14, 1.27mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x14 1.27mm single row style1 pin1 left -0 -14 -14 -Connector_PinHeader_1.27mm -PinHeader_1x14_P1.27mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x14, 1.27mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x14 1.27mm single row style2 pin1 right -0 -14 -14 -Connector_PinHeader_1.27mm -PinHeader_1x15_P1.27mm_Horizontal -Through hole angled pin header, 1x15, 1.27mm pitch, 4.0mm pin length, single row -Through hole angled pin header THT 1x15 1.27mm single row -0 -15 -15 -Connector_PinHeader_1.27mm -PinHeader_1x15_P1.27mm_Vertical -Through hole straight pin header, 1x15, 1.27mm pitch, single row -Through hole pin header THT 1x15 1.27mm single row -0 -15 -15 -Connector_PinHeader_1.27mm -PinHeader_1x15_P1.27mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x15, 1.27mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x15 1.27mm single row style1 pin1 left -0 -15 -15 -Connector_PinHeader_1.27mm -PinHeader_1x15_P1.27mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x15, 1.27mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x15 1.27mm single row style2 pin1 right -0 -15 -15 -Connector_PinHeader_1.27mm -PinHeader_1x16_P1.27mm_Horizontal -Through hole angled pin header, 1x16, 1.27mm pitch, 4.0mm pin length, single row -Through hole angled pin header THT 1x16 1.27mm single row -0 -16 -16 -Connector_PinHeader_1.27mm -PinHeader_1x16_P1.27mm_Vertical -Through hole straight pin header, 1x16, 1.27mm pitch, single row -Through hole pin header THT 1x16 1.27mm single row -0 -16 -16 -Connector_PinHeader_1.27mm -PinHeader_1x16_P1.27mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x16, 1.27mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x16 1.27mm single row style1 pin1 left -0 -16 -16 -Connector_PinHeader_1.27mm -PinHeader_1x16_P1.27mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x16, 1.27mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x16 1.27mm single row style2 pin1 right -0 -16 -16 -Connector_PinHeader_1.27mm -PinHeader_1x17_P1.27mm_Horizontal -Through hole angled pin header, 1x17, 1.27mm pitch, 4.0mm pin length, single row -Through hole angled pin header THT 1x17 1.27mm single row -0 -17 -17 -Connector_PinHeader_1.27mm -PinHeader_1x17_P1.27mm_Vertical -Through hole straight pin header, 1x17, 1.27mm pitch, single row -Through hole pin header THT 1x17 1.27mm single row -0 -17 -17 -Connector_PinHeader_1.27mm -PinHeader_1x17_P1.27mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x17, 1.27mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x17 1.27mm single row style1 pin1 left -0 -17 -17 -Connector_PinHeader_1.27mm -PinHeader_1x17_P1.27mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x17, 1.27mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x17 1.27mm single row style2 pin1 right -0 -17 -17 -Connector_PinHeader_1.27mm -PinHeader_1x18_P1.27mm_Horizontal -Through hole angled pin header, 1x18, 1.27mm pitch, 4.0mm pin length, single row -Through hole angled pin header THT 1x18 1.27mm single row -0 -18 -18 -Connector_PinHeader_1.27mm -PinHeader_1x18_P1.27mm_Vertical -Through hole straight pin header, 1x18, 1.27mm pitch, single row -Through hole pin header THT 1x18 1.27mm single row -0 -18 -18 -Connector_PinHeader_1.27mm -PinHeader_1x18_P1.27mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x18, 1.27mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x18 1.27mm single row style1 pin1 left -0 -18 -18 -Connector_PinHeader_1.27mm -PinHeader_1x18_P1.27mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x18, 1.27mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x18 1.27mm single row style2 pin1 right -0 -18 -18 -Connector_PinHeader_1.27mm -PinHeader_1x19_P1.27mm_Horizontal -Through hole angled pin header, 1x19, 1.27mm pitch, 4.0mm pin length, single row -Through hole angled pin header THT 1x19 1.27mm single row -0 -19 -19 -Connector_PinHeader_1.27mm -PinHeader_1x19_P1.27mm_Vertical -Through hole straight pin header, 1x19, 1.27mm pitch, single row -Through hole pin header THT 1x19 1.27mm single row -0 -19 -19 -Connector_PinHeader_1.27mm -PinHeader_1x19_P1.27mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x19, 1.27mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x19 1.27mm single row style1 pin1 left -0 -19 -19 -Connector_PinHeader_1.27mm -PinHeader_1x19_P1.27mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x19, 1.27mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x19 1.27mm single row style2 pin1 right -0 -19 -19 -Connector_PinHeader_1.27mm -PinHeader_1x20_P1.27mm_Horizontal -Through hole angled pin header, 1x20, 1.27mm pitch, 4.0mm pin length, single row -Through hole angled pin header THT 1x20 1.27mm single row -0 -20 -20 -Connector_PinHeader_1.27mm -PinHeader_1x20_P1.27mm_Vertical -Through hole straight pin header, 1x20, 1.27mm pitch, single row -Through hole pin header THT 1x20 1.27mm single row -0 -20 -20 -Connector_PinHeader_1.27mm -PinHeader_1x20_P1.27mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x20, 1.27mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x20 1.27mm single row style1 pin1 left -0 -20 -20 -Connector_PinHeader_1.27mm -PinHeader_1x20_P1.27mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x20, 1.27mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x20 1.27mm single row style2 pin1 right -0 -20 -20 -Connector_PinHeader_1.27mm -PinHeader_1x21_P1.27mm_Horizontal -Through hole angled pin header, 1x21, 1.27mm pitch, 4.0mm pin length, single row -Through hole angled pin header THT 1x21 1.27mm single row -0 -21 -21 -Connector_PinHeader_1.27mm -PinHeader_1x21_P1.27mm_Vertical -Through hole straight pin header, 1x21, 1.27mm pitch, single row -Through hole pin header THT 1x21 1.27mm single row -0 -21 -21 -Connector_PinHeader_1.27mm -PinHeader_1x21_P1.27mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x21, 1.27mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x21 1.27mm single row style1 pin1 left -0 -21 -21 -Connector_PinHeader_1.27mm -PinHeader_1x21_P1.27mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x21, 1.27mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x21 1.27mm single row style2 pin1 right -0 -21 -21 -Connector_PinHeader_1.27mm -PinHeader_1x22_P1.27mm_Horizontal -Through hole angled pin header, 1x22, 1.27mm pitch, 4.0mm pin length, single row -Through hole angled pin header THT 1x22 1.27mm single row -0 -22 -22 -Connector_PinHeader_1.27mm -PinHeader_1x22_P1.27mm_Vertical -Through hole straight pin header, 1x22, 1.27mm pitch, single row -Through hole pin header THT 1x22 1.27mm single row -0 -22 -22 -Connector_PinHeader_1.27mm -PinHeader_1x22_P1.27mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x22, 1.27mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x22 1.27mm single row style1 pin1 left -0 -22 -22 -Connector_PinHeader_1.27mm -PinHeader_1x22_P1.27mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x22, 1.27mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x22 1.27mm single row style2 pin1 right -0 -22 -22 -Connector_PinHeader_1.27mm -PinHeader_1x23_P1.27mm_Horizontal -Through hole angled pin header, 1x23, 1.27mm pitch, 4.0mm pin length, single row -Through hole angled pin header THT 1x23 1.27mm single row -0 -23 -23 -Connector_PinHeader_1.27mm -PinHeader_1x23_P1.27mm_Vertical -Through hole straight pin header, 1x23, 1.27mm pitch, single row -Through hole pin header THT 1x23 1.27mm single row -0 -23 -23 -Connector_PinHeader_1.27mm -PinHeader_1x23_P1.27mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x23, 1.27mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x23 1.27mm single row style1 pin1 left -0 -23 -23 -Connector_PinHeader_1.27mm -PinHeader_1x23_P1.27mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x23, 1.27mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x23 1.27mm single row style2 pin1 right -0 -23 -23 -Connector_PinHeader_1.27mm -PinHeader_1x24_P1.27mm_Horizontal -Through hole angled pin header, 1x24, 1.27mm pitch, 4.0mm pin length, single row -Through hole angled pin header THT 1x24 1.27mm single row -0 -24 -24 -Connector_PinHeader_1.27mm -PinHeader_1x24_P1.27mm_Vertical -Through hole straight pin header, 1x24, 1.27mm pitch, single row -Through hole pin header THT 1x24 1.27mm single row -0 -24 -24 -Connector_PinHeader_1.27mm -PinHeader_1x24_P1.27mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x24, 1.27mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x24 1.27mm single row style1 pin1 left -0 -24 -24 -Connector_PinHeader_1.27mm -PinHeader_1x24_P1.27mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x24, 1.27mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x24 1.27mm single row style2 pin1 right -0 -24 -24 -Connector_PinHeader_1.27mm -PinHeader_1x25_P1.27mm_Horizontal -Through hole angled pin header, 1x25, 1.27mm pitch, 4.0mm pin length, single row -Through hole angled pin header THT 1x25 1.27mm single row -0 -25 -25 -Connector_PinHeader_1.27mm -PinHeader_1x25_P1.27mm_Vertical -Through hole straight pin header, 1x25, 1.27mm pitch, single row -Through hole pin header THT 1x25 1.27mm single row -0 -25 -25 -Connector_PinHeader_1.27mm -PinHeader_1x25_P1.27mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x25, 1.27mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x25 1.27mm single row style1 pin1 left -0 -25 -25 -Connector_PinHeader_1.27mm -PinHeader_1x25_P1.27mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x25, 1.27mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x25 1.27mm single row style2 pin1 right -0 -25 -25 -Connector_PinHeader_1.27mm -PinHeader_1x26_P1.27mm_Horizontal -Through hole angled pin header, 1x26, 1.27mm pitch, 4.0mm pin length, single row -Through hole angled pin header THT 1x26 1.27mm single row -0 -26 -26 -Connector_PinHeader_1.27mm -PinHeader_1x26_P1.27mm_Vertical -Through hole straight pin header, 1x26, 1.27mm pitch, single row -Through hole pin header THT 1x26 1.27mm single row -0 -26 -26 -Connector_PinHeader_1.27mm -PinHeader_1x26_P1.27mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x26, 1.27mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x26 1.27mm single row style1 pin1 left -0 -26 -26 -Connector_PinHeader_1.27mm -PinHeader_1x26_P1.27mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x26, 1.27mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x26 1.27mm single row style2 pin1 right -0 -26 -26 -Connector_PinHeader_1.27mm -PinHeader_1x27_P1.27mm_Horizontal -Through hole angled pin header, 1x27, 1.27mm pitch, 4.0mm pin length, single row -Through hole angled pin header THT 1x27 1.27mm single row -0 -27 -27 -Connector_PinHeader_1.27mm -PinHeader_1x27_P1.27mm_Vertical -Through hole straight pin header, 1x27, 1.27mm pitch, single row -Through hole pin header THT 1x27 1.27mm single row -0 -27 -27 -Connector_PinHeader_1.27mm -PinHeader_1x27_P1.27mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x27, 1.27mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x27 1.27mm single row style1 pin1 left -0 -27 -27 -Connector_PinHeader_1.27mm -PinHeader_1x27_P1.27mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x27, 1.27mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x27 1.27mm single row style2 pin1 right -0 -27 -27 -Connector_PinHeader_1.27mm -PinHeader_1x28_P1.27mm_Horizontal -Through hole angled pin header, 1x28, 1.27mm pitch, 4.0mm pin length, single row -Through hole angled pin header THT 1x28 1.27mm single row -0 -28 -28 -Connector_PinHeader_1.27mm -PinHeader_1x28_P1.27mm_Vertical -Through hole straight pin header, 1x28, 1.27mm pitch, single row -Through hole pin header THT 1x28 1.27mm single row -0 -28 -28 -Connector_PinHeader_1.27mm -PinHeader_1x28_P1.27mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x28, 1.27mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x28 1.27mm single row style1 pin1 left -0 -28 -28 -Connector_PinHeader_1.27mm -PinHeader_1x28_P1.27mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x28, 1.27mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x28 1.27mm single row style2 pin1 right -0 -28 -28 -Connector_PinHeader_1.27mm -PinHeader_1x29_P1.27mm_Horizontal -Through hole angled pin header, 1x29, 1.27mm pitch, 4.0mm pin length, single row -Through hole angled pin header THT 1x29 1.27mm single row -0 -29 -29 -Connector_PinHeader_1.27mm -PinHeader_1x29_P1.27mm_Vertical -Through hole straight pin header, 1x29, 1.27mm pitch, single row -Through hole pin header THT 1x29 1.27mm single row -0 -29 -29 -Connector_PinHeader_1.27mm -PinHeader_1x29_P1.27mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x29, 1.27mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x29 1.27mm single row style1 pin1 left -0 -29 -29 -Connector_PinHeader_1.27mm -PinHeader_1x29_P1.27mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x29, 1.27mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x29 1.27mm single row style2 pin1 right -0 -29 -29 -Connector_PinHeader_1.27mm -PinHeader_1x30_P1.27mm_Horizontal -Through hole angled pin header, 1x30, 1.27mm pitch, 4.0mm pin length, single row -Through hole angled pin header THT 1x30 1.27mm single row -0 -30 -30 -Connector_PinHeader_1.27mm -PinHeader_1x30_P1.27mm_Vertical -Through hole straight pin header, 1x30, 1.27mm pitch, single row -Through hole pin header THT 1x30 1.27mm single row -0 -30 -30 -Connector_PinHeader_1.27mm -PinHeader_1x30_P1.27mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x30, 1.27mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x30 1.27mm single row style1 pin1 left -0 -30 -30 -Connector_PinHeader_1.27mm -PinHeader_1x30_P1.27mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x30, 1.27mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x30 1.27mm single row style2 pin1 right -0 -30 -30 -Connector_PinHeader_1.27mm -PinHeader_1x31_P1.27mm_Horizontal -Through hole angled pin header, 1x31, 1.27mm pitch, 4.0mm pin length, single row -Through hole angled pin header THT 1x31 1.27mm single row -0 -31 -31 -Connector_PinHeader_1.27mm -PinHeader_1x31_P1.27mm_Vertical -Through hole straight pin header, 1x31, 1.27mm pitch, single row -Through hole pin header THT 1x31 1.27mm single row -0 -31 -31 -Connector_PinHeader_1.27mm -PinHeader_1x31_P1.27mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x31, 1.27mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x31 1.27mm single row style1 pin1 left -0 -31 -31 -Connector_PinHeader_1.27mm -PinHeader_1x31_P1.27mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x31, 1.27mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x31 1.27mm single row style2 pin1 right -0 -31 -31 -Connector_PinHeader_1.27mm -PinHeader_1x32_P1.27mm_Horizontal -Through hole angled pin header, 1x32, 1.27mm pitch, 4.0mm pin length, single row -Through hole angled pin header THT 1x32 1.27mm single row -0 -32 -32 -Connector_PinHeader_1.27mm -PinHeader_1x32_P1.27mm_Vertical -Through hole straight pin header, 1x32, 1.27mm pitch, single row -Through hole pin header THT 1x32 1.27mm single row -0 -32 -32 -Connector_PinHeader_1.27mm -PinHeader_1x32_P1.27mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x32, 1.27mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x32 1.27mm single row style1 pin1 left -0 -32 -32 -Connector_PinHeader_1.27mm -PinHeader_1x32_P1.27mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x32, 1.27mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x32 1.27mm single row style2 pin1 right -0 -32 -32 -Connector_PinHeader_1.27mm -PinHeader_1x33_P1.27mm_Horizontal -Through hole angled pin header, 1x33, 1.27mm pitch, 4.0mm pin length, single row -Through hole angled pin header THT 1x33 1.27mm single row -0 -33 -33 -Connector_PinHeader_1.27mm -PinHeader_1x33_P1.27mm_Vertical -Through hole straight pin header, 1x33, 1.27mm pitch, single row -Through hole pin header THT 1x33 1.27mm single row -0 -33 -33 -Connector_PinHeader_1.27mm -PinHeader_1x33_P1.27mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x33, 1.27mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x33 1.27mm single row style1 pin1 left -0 -33 -33 -Connector_PinHeader_1.27mm -PinHeader_1x33_P1.27mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x33, 1.27mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x33 1.27mm single row style2 pin1 right -0 -33 -33 -Connector_PinHeader_1.27mm -PinHeader_1x34_P1.27mm_Horizontal -Through hole angled pin header, 1x34, 1.27mm pitch, 4.0mm pin length, single row -Through hole angled pin header THT 1x34 1.27mm single row -0 -34 -34 -Connector_PinHeader_1.27mm -PinHeader_1x34_P1.27mm_Vertical -Through hole straight pin header, 1x34, 1.27mm pitch, single row -Through hole pin header THT 1x34 1.27mm single row -0 -34 -34 -Connector_PinHeader_1.27mm -PinHeader_1x34_P1.27mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x34, 1.27mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x34 1.27mm single row style1 pin1 left -0 -34 -34 -Connector_PinHeader_1.27mm -PinHeader_1x34_P1.27mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x34, 1.27mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x34 1.27mm single row style2 pin1 right -0 -34 -34 -Connector_PinHeader_1.27mm -PinHeader_1x35_P1.27mm_Horizontal -Through hole angled pin header, 1x35, 1.27mm pitch, 4.0mm pin length, single row -Through hole angled pin header THT 1x35 1.27mm single row -0 -35 -35 -Connector_PinHeader_1.27mm -PinHeader_1x35_P1.27mm_Vertical -Through hole straight pin header, 1x35, 1.27mm pitch, single row -Through hole pin header THT 1x35 1.27mm single row -0 -35 -35 -Connector_PinHeader_1.27mm -PinHeader_1x35_P1.27mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x35, 1.27mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x35 1.27mm single row style1 pin1 left -0 -35 -35 -Connector_PinHeader_1.27mm -PinHeader_1x35_P1.27mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x35, 1.27mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x35 1.27mm single row style2 pin1 right -0 -35 -35 -Connector_PinHeader_1.27mm -PinHeader_1x36_P1.27mm_Horizontal -Through hole angled pin header, 1x36, 1.27mm pitch, 4.0mm pin length, single row -Through hole angled pin header THT 1x36 1.27mm single row -0 -36 -36 -Connector_PinHeader_1.27mm -PinHeader_1x36_P1.27mm_Vertical -Through hole straight pin header, 1x36, 1.27mm pitch, single row -Through hole pin header THT 1x36 1.27mm single row -0 -36 -36 -Connector_PinHeader_1.27mm -PinHeader_1x36_P1.27mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x36, 1.27mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x36 1.27mm single row style1 pin1 left -0 -36 -36 -Connector_PinHeader_1.27mm -PinHeader_1x36_P1.27mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x36, 1.27mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x36 1.27mm single row style2 pin1 right -0 -36 -36 -Connector_PinHeader_1.27mm -PinHeader_1x37_P1.27mm_Horizontal -Through hole angled pin header, 1x37, 1.27mm pitch, 4.0mm pin length, single row -Through hole angled pin header THT 1x37 1.27mm single row -0 -37 -37 -Connector_PinHeader_1.27mm -PinHeader_1x37_P1.27mm_Vertical -Through hole straight pin header, 1x37, 1.27mm pitch, single row -Through hole pin header THT 1x37 1.27mm single row -0 -37 -37 -Connector_PinHeader_1.27mm -PinHeader_1x37_P1.27mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x37, 1.27mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x37 1.27mm single row style1 pin1 left -0 -37 -37 -Connector_PinHeader_1.27mm -PinHeader_1x37_P1.27mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x37, 1.27mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x37 1.27mm single row style2 pin1 right -0 -37 -37 -Connector_PinHeader_1.27mm -PinHeader_1x38_P1.27mm_Horizontal -Through hole angled pin header, 1x38, 1.27mm pitch, 4.0mm pin length, single row -Through hole angled pin header THT 1x38 1.27mm single row -0 -38 -38 -Connector_PinHeader_1.27mm -PinHeader_1x38_P1.27mm_Vertical -Through hole straight pin header, 1x38, 1.27mm pitch, single row -Through hole pin header THT 1x38 1.27mm single row -0 -38 -38 -Connector_PinHeader_1.27mm -PinHeader_1x38_P1.27mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x38, 1.27mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x38 1.27mm single row style1 pin1 left -0 -38 -38 -Connector_PinHeader_1.27mm -PinHeader_1x38_P1.27mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x38, 1.27mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x38 1.27mm single row style2 pin1 right -0 -38 -38 -Connector_PinHeader_1.27mm -PinHeader_1x39_P1.27mm_Horizontal -Through hole angled pin header, 1x39, 1.27mm pitch, 4.0mm pin length, single row -Through hole angled pin header THT 1x39 1.27mm single row -0 -39 -39 -Connector_PinHeader_1.27mm -PinHeader_1x39_P1.27mm_Vertical -Through hole straight pin header, 1x39, 1.27mm pitch, single row -Through hole pin header THT 1x39 1.27mm single row -0 -39 -39 -Connector_PinHeader_1.27mm -PinHeader_1x39_P1.27mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x39, 1.27mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x39 1.27mm single row style1 pin1 left -0 -39 -39 -Connector_PinHeader_1.27mm -PinHeader_1x39_P1.27mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x39, 1.27mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x39 1.27mm single row style2 pin1 right -0 -39 -39 -Connector_PinHeader_1.27mm -PinHeader_1x40_P1.27mm_Horizontal -Through hole angled pin header, 1x40, 1.27mm pitch, 4.0mm pin length, single row -Through hole angled pin header THT 1x40 1.27mm single row -0 -40 -40 -Connector_PinHeader_1.27mm -PinHeader_1x40_P1.27mm_Vertical -Through hole straight pin header, 1x40, 1.27mm pitch, single row -Through hole pin header THT 1x40 1.27mm single row -0 -40 -40 -Connector_PinHeader_1.27mm -PinHeader_1x40_P1.27mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x40, 1.27mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x40 1.27mm single row style1 pin1 left -0 -40 -40 -Connector_PinHeader_1.27mm -PinHeader_1x40_P1.27mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x40, 1.27mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x40 1.27mm single row style2 pin1 right -0 -40 -40 -Connector_PinHeader_1.27mm -PinHeader_2x01_P1.27mm_Horizontal -Through hole angled pin header, 2x01, 1.27mm pitch, 4.0mm pin length, double rows -Through hole angled pin header THT 2x01 1.27mm double row -0 -2 -2 -Connector_PinHeader_1.27mm -PinHeader_2x01_P1.27mm_Vertical -Through hole straight pin header, 2x01, 1.27mm pitch, double rows -Through hole pin header THT 2x01 1.27mm double row -0 -2 -2 -Connector_PinHeader_1.27mm -PinHeader_2x01_P1.27mm_Vertical_SMD -surface-mounted straight pin header, 2x01, 1.27mm pitch, double rows -Surface mounted pin header SMD 2x01 1.27mm double row -0 -2 -2 -Connector_PinHeader_1.27mm -PinHeader_2x02_P1.27mm_Horizontal -Through hole angled pin header, 2x02, 1.27mm pitch, 4.0mm pin length, double rows -Through hole angled pin header THT 2x02 1.27mm double row -0 -4 -4 -Connector_PinHeader_1.27mm -PinHeader_2x02_P1.27mm_Vertical -Through hole straight pin header, 2x02, 1.27mm pitch, double rows -Through hole pin header THT 2x02 1.27mm double row -0 -4 -4 -Connector_PinHeader_1.27mm -PinHeader_2x02_P1.27mm_Vertical_SMD -surface-mounted straight pin header, 2x02, 1.27mm pitch, double rows -Surface mounted pin header SMD 2x02 1.27mm double row -0 -4 -4 -Connector_PinHeader_1.27mm -PinHeader_2x03_P1.27mm_Horizontal -Through hole angled pin header, 2x03, 1.27mm pitch, 4.0mm pin length, double rows -Through hole angled pin header THT 2x03 1.27mm double row -0 -6 -6 -Connector_PinHeader_1.27mm -PinHeader_2x03_P1.27mm_Vertical -Through hole straight pin header, 2x03, 1.27mm pitch, double rows -Through hole pin header THT 2x03 1.27mm double row -0 -6 -6 -Connector_PinHeader_1.27mm -PinHeader_2x03_P1.27mm_Vertical_SMD -surface-mounted straight pin header, 2x03, 1.27mm pitch, double rows -Surface mounted pin header SMD 2x03 1.27mm double row -0 -6 -6 -Connector_PinHeader_1.27mm -PinHeader_2x04_P1.27mm_Horizontal -Through hole angled pin header, 2x04, 1.27mm pitch, 4.0mm pin length, double rows -Through hole angled pin header THT 2x04 1.27mm double row -0 -8 -8 -Connector_PinHeader_1.27mm -PinHeader_2x04_P1.27mm_Vertical -Through hole straight pin header, 2x04, 1.27mm pitch, double rows -Through hole pin header THT 2x04 1.27mm double row -0 -8 -8 -Connector_PinHeader_1.27mm -PinHeader_2x04_P1.27mm_Vertical_SMD -surface-mounted straight pin header, 2x04, 1.27mm pitch, double rows -Surface mounted pin header SMD 2x04 1.27mm double row -0 -8 -8 -Connector_PinHeader_1.27mm -PinHeader_2x05_P1.27mm_Horizontal -Through hole angled pin header, 2x05, 1.27mm pitch, 4.0mm pin length, double rows -Through hole angled pin header THT 2x05 1.27mm double row -0 -10 -10 -Connector_PinHeader_1.27mm -PinHeader_2x05_P1.27mm_Vertical -Through hole straight pin header, 2x05, 1.27mm pitch, double rows -Through hole pin header THT 2x05 1.27mm double row -0 -10 -10 -Connector_PinHeader_1.27mm -PinHeader_2x05_P1.27mm_Vertical_SMD -surface-mounted straight pin header, 2x05, 1.27mm pitch, double rows -Surface mounted pin header SMD 2x05 1.27mm double row -0 -10 -10 -Connector_PinHeader_1.27mm -PinHeader_2x06_P1.27mm_Horizontal -Through hole angled pin header, 2x06, 1.27mm pitch, 4.0mm pin length, double rows -Through hole angled pin header THT 2x06 1.27mm double row -0 -12 -12 -Connector_PinHeader_1.27mm -PinHeader_2x06_P1.27mm_Vertical -Through hole straight pin header, 2x06, 1.27mm pitch, double rows -Through hole pin header THT 2x06 1.27mm double row -0 -12 -12 -Connector_PinHeader_1.27mm -PinHeader_2x06_P1.27mm_Vertical_SMD -surface-mounted straight pin header, 2x06, 1.27mm pitch, double rows -Surface mounted pin header SMD 2x06 1.27mm double row -0 -12 -12 -Connector_PinHeader_1.27mm -PinHeader_2x07_P1.27mm_Horizontal -Through hole angled pin header, 2x07, 1.27mm pitch, 4.0mm pin length, double rows -Through hole angled pin header THT 2x07 1.27mm double row -0 -14 -14 -Connector_PinHeader_1.27mm -PinHeader_2x07_P1.27mm_Vertical -Through hole straight pin header, 2x07, 1.27mm pitch, double rows -Through hole pin header THT 2x07 1.27mm double row -0 -14 -14 -Connector_PinHeader_1.27mm -PinHeader_2x07_P1.27mm_Vertical_SMD -surface-mounted straight pin header, 2x07, 1.27mm pitch, double rows -Surface mounted pin header SMD 2x07 1.27mm double row -0 -14 -14 -Connector_PinHeader_1.27mm -PinHeader_2x08_P1.27mm_Horizontal -Through hole angled pin header, 2x08, 1.27mm pitch, 4.0mm pin length, double rows -Through hole angled pin header THT 2x08 1.27mm double row -0 -16 -16 -Connector_PinHeader_1.27mm -PinHeader_2x08_P1.27mm_Vertical -Through hole straight pin header, 2x08, 1.27mm pitch, double rows -Through hole pin header THT 2x08 1.27mm double row -0 -16 -16 -Connector_PinHeader_1.27mm -PinHeader_2x08_P1.27mm_Vertical_SMD -surface-mounted straight pin header, 2x08, 1.27mm pitch, double rows -Surface mounted pin header SMD 2x08 1.27mm double row -0 -16 -16 -Connector_PinHeader_1.27mm -PinHeader_2x09_P1.27mm_Horizontal -Through hole angled pin header, 2x09, 1.27mm pitch, 4.0mm pin length, double rows -Through hole angled pin header THT 2x09 1.27mm double row -0 -18 -18 -Connector_PinHeader_1.27mm -PinHeader_2x09_P1.27mm_Vertical -Through hole straight pin header, 2x09, 1.27mm pitch, double rows -Through hole pin header THT 2x09 1.27mm double row -0 -18 -18 -Connector_PinHeader_1.27mm -PinHeader_2x09_P1.27mm_Vertical_SMD -surface-mounted straight pin header, 2x09, 1.27mm pitch, double rows -Surface mounted pin header SMD 2x09 1.27mm double row -0 -18 -18 -Connector_PinHeader_1.27mm -PinHeader_2x10_P1.27mm_Horizontal -Through hole angled pin header, 2x10, 1.27mm pitch, 4.0mm pin length, double rows -Through hole angled pin header THT 2x10 1.27mm double row -0 -20 -20 -Connector_PinHeader_1.27mm -PinHeader_2x10_P1.27mm_Vertical -Through hole straight pin header, 2x10, 1.27mm pitch, double rows -Through hole pin header THT 2x10 1.27mm double row -0 -20 -20 -Connector_PinHeader_1.27mm -PinHeader_2x10_P1.27mm_Vertical_SMD -surface-mounted straight pin header, 2x10, 1.27mm pitch, double rows -Surface mounted pin header SMD 2x10 1.27mm double row -0 -20 -20 -Connector_PinHeader_1.27mm -PinHeader_2x11_P1.27mm_Horizontal -Through hole angled pin header, 2x11, 1.27mm pitch, 4.0mm pin length, double rows -Through hole angled pin header THT 2x11 1.27mm double row -0 -22 -22 -Connector_PinHeader_1.27mm -PinHeader_2x11_P1.27mm_Vertical -Through hole straight pin header, 2x11, 1.27mm pitch, double rows -Through hole pin header THT 2x11 1.27mm double row -0 -22 -22 -Connector_PinHeader_1.27mm -PinHeader_2x11_P1.27mm_Vertical_SMD -surface-mounted straight pin header, 2x11, 1.27mm pitch, double rows -Surface mounted pin header SMD 2x11 1.27mm double row -0 -22 -22 -Connector_PinHeader_1.27mm -PinHeader_2x12_P1.27mm_Horizontal -Through hole angled pin header, 2x12, 1.27mm pitch, 4.0mm pin length, double rows -Through hole angled pin header THT 2x12 1.27mm double row -0 -24 -24 -Connector_PinHeader_1.27mm -PinHeader_2x12_P1.27mm_Vertical -Through hole straight pin header, 2x12, 1.27mm pitch, double rows -Through hole pin header THT 2x12 1.27mm double row -0 -24 -24 -Connector_PinHeader_1.27mm -PinHeader_2x12_P1.27mm_Vertical_SMD -surface-mounted straight pin header, 2x12, 1.27mm pitch, double rows -Surface mounted pin header SMD 2x12 1.27mm double row -0 -24 -24 -Connector_PinHeader_1.27mm -PinHeader_2x13_P1.27mm_Horizontal -Through hole angled pin header, 2x13, 1.27mm pitch, 4.0mm pin length, double rows -Through hole angled pin header THT 2x13 1.27mm double row -0 -26 -26 -Connector_PinHeader_1.27mm -PinHeader_2x13_P1.27mm_Vertical -Through hole straight pin header, 2x13, 1.27mm pitch, double rows -Through hole pin header THT 2x13 1.27mm double row -0 -26 -26 -Connector_PinHeader_1.27mm -PinHeader_2x13_P1.27mm_Vertical_SMD -surface-mounted straight pin header, 2x13, 1.27mm pitch, double rows -Surface mounted pin header SMD 2x13 1.27mm double row -0 -26 -26 -Connector_PinHeader_1.27mm -PinHeader_2x14_P1.27mm_Horizontal -Through hole angled pin header, 2x14, 1.27mm pitch, 4.0mm pin length, double rows -Through hole angled pin header THT 2x14 1.27mm double row -0 -28 -28 -Connector_PinHeader_1.27mm -PinHeader_2x14_P1.27mm_Vertical -Through hole straight pin header, 2x14, 1.27mm pitch, double rows -Through hole pin header THT 2x14 1.27mm double row -0 -28 -28 -Connector_PinHeader_1.27mm -PinHeader_2x14_P1.27mm_Vertical_SMD -surface-mounted straight pin header, 2x14, 1.27mm pitch, double rows -Surface mounted pin header SMD 2x14 1.27mm double row -0 -28 -28 -Connector_PinHeader_1.27mm -PinHeader_2x15_P1.27mm_Horizontal -Through hole angled pin header, 2x15, 1.27mm pitch, 4.0mm pin length, double rows -Through hole angled pin header THT 2x15 1.27mm double row -0 -30 -30 -Connector_PinHeader_1.27mm -PinHeader_2x15_P1.27mm_Vertical -Through hole straight pin header, 2x15, 1.27mm pitch, double rows -Through hole pin header THT 2x15 1.27mm double row -0 -30 -30 -Connector_PinHeader_1.27mm -PinHeader_2x15_P1.27mm_Vertical_SMD -surface-mounted straight pin header, 2x15, 1.27mm pitch, double rows -Surface mounted pin header SMD 2x15 1.27mm double row -0 -30 -30 -Connector_PinHeader_1.27mm -PinHeader_2x16_P1.27mm_Horizontal -Through hole angled pin header, 2x16, 1.27mm pitch, 4.0mm pin length, double rows -Through hole angled pin header THT 2x16 1.27mm double row -0 -32 -32 -Connector_PinHeader_1.27mm -PinHeader_2x16_P1.27mm_Vertical -Through hole straight pin header, 2x16, 1.27mm pitch, double rows -Through hole pin header THT 2x16 1.27mm double row -0 -32 -32 -Connector_PinHeader_1.27mm -PinHeader_2x16_P1.27mm_Vertical_SMD -surface-mounted straight pin header, 2x16, 1.27mm pitch, double rows -Surface mounted pin header SMD 2x16 1.27mm double row -0 -32 -32 -Connector_PinHeader_1.27mm -PinHeader_2x17_P1.27mm_Horizontal -Through hole angled pin header, 2x17, 1.27mm pitch, 4.0mm pin length, double rows -Through hole angled pin header THT 2x17 1.27mm double row -0 -34 -34 -Connector_PinHeader_1.27mm -PinHeader_2x17_P1.27mm_Vertical -Through hole straight pin header, 2x17, 1.27mm pitch, double rows -Through hole pin header THT 2x17 1.27mm double row -0 -34 -34 -Connector_PinHeader_1.27mm -PinHeader_2x17_P1.27mm_Vertical_SMD -surface-mounted straight pin header, 2x17, 1.27mm pitch, double rows -Surface mounted pin header SMD 2x17 1.27mm double row -0 -34 -34 -Connector_PinHeader_1.27mm -PinHeader_2x18_P1.27mm_Horizontal -Through hole angled pin header, 2x18, 1.27mm pitch, 4.0mm pin length, double rows -Through hole angled pin header THT 2x18 1.27mm double row -0 -36 -36 -Connector_PinHeader_1.27mm -PinHeader_2x18_P1.27mm_Vertical -Through hole straight pin header, 2x18, 1.27mm pitch, double rows -Through hole pin header THT 2x18 1.27mm double row -0 -36 -36 -Connector_PinHeader_1.27mm -PinHeader_2x18_P1.27mm_Vertical_SMD -surface-mounted straight pin header, 2x18, 1.27mm pitch, double rows -Surface mounted pin header SMD 2x18 1.27mm double row -0 -36 -36 -Connector_PinHeader_1.27mm -PinHeader_2x19_P1.27mm_Horizontal -Through hole angled pin header, 2x19, 1.27mm pitch, 4.0mm pin length, double rows -Through hole angled pin header THT 2x19 1.27mm double row -0 -38 -38 -Connector_PinHeader_1.27mm -PinHeader_2x19_P1.27mm_Vertical -Through hole straight pin header, 2x19, 1.27mm pitch, double rows -Through hole pin header THT 2x19 1.27mm double row -0 -38 -38 -Connector_PinHeader_1.27mm -PinHeader_2x19_P1.27mm_Vertical_SMD -surface-mounted straight pin header, 2x19, 1.27mm pitch, double rows -Surface mounted pin header SMD 2x19 1.27mm double row -0 -38 -38 -Connector_PinHeader_1.27mm -PinHeader_2x20_P1.27mm_Horizontal -Through hole angled pin header, 2x20, 1.27mm pitch, 4.0mm pin length, double rows -Through hole angled pin header THT 2x20 1.27mm double row -0 -40 -40 -Connector_PinHeader_1.27mm -PinHeader_2x20_P1.27mm_Vertical -Through hole straight pin header, 2x20, 1.27mm pitch, double rows -Through hole pin header THT 2x20 1.27mm double row -0 -40 -40 -Connector_PinHeader_1.27mm -PinHeader_2x20_P1.27mm_Vertical_SMD -surface-mounted straight pin header, 2x20, 1.27mm pitch, double rows -Surface mounted pin header SMD 2x20 1.27mm double row -0 -40 -40 -Connector_PinHeader_1.27mm -PinHeader_2x21_P1.27mm_Horizontal -Through hole angled pin header, 2x21, 1.27mm pitch, 4.0mm pin length, double rows -Through hole angled pin header THT 2x21 1.27mm double row -0 -42 -42 -Connector_PinHeader_1.27mm -PinHeader_2x21_P1.27mm_Vertical -Through hole straight pin header, 2x21, 1.27mm pitch, double rows -Through hole pin header THT 2x21 1.27mm double row -0 -42 -42 -Connector_PinHeader_1.27mm -PinHeader_2x21_P1.27mm_Vertical_SMD -surface-mounted straight pin header, 2x21, 1.27mm pitch, double rows -Surface mounted pin header SMD 2x21 1.27mm double row -0 -42 -42 -Connector_PinHeader_1.27mm -PinHeader_2x22_P1.27mm_Horizontal -Through hole angled pin header, 2x22, 1.27mm pitch, 4.0mm pin length, double rows -Through hole angled pin header THT 2x22 1.27mm double row -0 -44 -44 -Connector_PinHeader_1.27mm -PinHeader_2x22_P1.27mm_Vertical -Through hole straight pin header, 2x22, 1.27mm pitch, double rows -Through hole pin header THT 2x22 1.27mm double row -0 -44 -44 -Connector_PinHeader_1.27mm -PinHeader_2x22_P1.27mm_Vertical_SMD -surface-mounted straight pin header, 2x22, 1.27mm pitch, double rows -Surface mounted pin header SMD 2x22 1.27mm double row -0 -44 -44 -Connector_PinHeader_1.27mm -PinHeader_2x23_P1.27mm_Horizontal -Through hole angled pin header, 2x23, 1.27mm pitch, 4.0mm pin length, double rows -Through hole angled pin header THT 2x23 1.27mm double row -0 -46 -46 -Connector_PinHeader_1.27mm -PinHeader_2x23_P1.27mm_Vertical -Through hole straight pin header, 2x23, 1.27mm pitch, double rows -Through hole pin header THT 2x23 1.27mm double row -0 -46 -46 -Connector_PinHeader_1.27mm -PinHeader_2x23_P1.27mm_Vertical_SMD -surface-mounted straight pin header, 2x23, 1.27mm pitch, double rows -Surface mounted pin header SMD 2x23 1.27mm double row -0 -46 -46 -Connector_PinHeader_1.27mm -PinHeader_2x24_P1.27mm_Horizontal -Through hole angled pin header, 2x24, 1.27mm pitch, 4.0mm pin length, double rows -Through hole angled pin header THT 2x24 1.27mm double row -0 -48 -48 -Connector_PinHeader_1.27mm -PinHeader_2x24_P1.27mm_Vertical -Through hole straight pin header, 2x24, 1.27mm pitch, double rows -Through hole pin header THT 2x24 1.27mm double row -0 -48 -48 -Connector_PinHeader_1.27mm -PinHeader_2x24_P1.27mm_Vertical_SMD -surface-mounted straight pin header, 2x24, 1.27mm pitch, double rows -Surface mounted pin header SMD 2x24 1.27mm double row -0 -48 -48 -Connector_PinHeader_1.27mm -PinHeader_2x25_P1.27mm_Horizontal -Through hole angled pin header, 2x25, 1.27mm pitch, 4.0mm pin length, double rows -Through hole angled pin header THT 2x25 1.27mm double row -0 -50 -50 -Connector_PinHeader_1.27mm -PinHeader_2x25_P1.27mm_Vertical -Through hole straight pin header, 2x25, 1.27mm pitch, double rows -Through hole pin header THT 2x25 1.27mm double row -0 -50 -50 -Connector_PinHeader_1.27mm -PinHeader_2x25_P1.27mm_Vertical_SMD -surface-mounted straight pin header, 2x25, 1.27mm pitch, double rows -Surface mounted pin header SMD 2x25 1.27mm double row -0 -50 -50 -Connector_PinHeader_1.27mm -PinHeader_2x26_P1.27mm_Horizontal -Through hole angled pin header, 2x26, 1.27mm pitch, 4.0mm pin length, double rows -Through hole angled pin header THT 2x26 1.27mm double row -0 -52 -52 -Connector_PinHeader_1.27mm -PinHeader_2x26_P1.27mm_Vertical -Through hole straight pin header, 2x26, 1.27mm pitch, double rows -Through hole pin header THT 2x26 1.27mm double row -0 -52 -52 -Connector_PinHeader_1.27mm -PinHeader_2x26_P1.27mm_Vertical_SMD -surface-mounted straight pin header, 2x26, 1.27mm pitch, double rows -Surface mounted pin header SMD 2x26 1.27mm double row -0 -52 -52 -Connector_PinHeader_1.27mm -PinHeader_2x27_P1.27mm_Horizontal -Through hole angled pin header, 2x27, 1.27mm pitch, 4.0mm pin length, double rows -Through hole angled pin header THT 2x27 1.27mm double row -0 -54 -54 -Connector_PinHeader_1.27mm -PinHeader_2x27_P1.27mm_Vertical -Through hole straight pin header, 2x27, 1.27mm pitch, double rows -Through hole pin header THT 2x27 1.27mm double row -0 -54 -54 -Connector_PinHeader_1.27mm -PinHeader_2x27_P1.27mm_Vertical_SMD -surface-mounted straight pin header, 2x27, 1.27mm pitch, double rows -Surface mounted pin header SMD 2x27 1.27mm double row -0 -54 -54 -Connector_PinHeader_1.27mm -PinHeader_2x28_P1.27mm_Horizontal -Through hole angled pin header, 2x28, 1.27mm pitch, 4.0mm pin length, double rows -Through hole angled pin header THT 2x28 1.27mm double row -0 -56 -56 -Connector_PinHeader_1.27mm -PinHeader_2x28_P1.27mm_Vertical -Through hole straight pin header, 2x28, 1.27mm pitch, double rows -Through hole pin header THT 2x28 1.27mm double row -0 -56 -56 -Connector_PinHeader_1.27mm -PinHeader_2x28_P1.27mm_Vertical_SMD -surface-mounted straight pin header, 2x28, 1.27mm pitch, double rows -Surface mounted pin header SMD 2x28 1.27mm double row -0 -56 -56 -Connector_PinHeader_1.27mm -PinHeader_2x29_P1.27mm_Horizontal -Through hole angled pin header, 2x29, 1.27mm pitch, 4.0mm pin length, double rows -Through hole angled pin header THT 2x29 1.27mm double row -0 -58 -58 -Connector_PinHeader_1.27mm -PinHeader_2x29_P1.27mm_Vertical -Through hole straight pin header, 2x29, 1.27mm pitch, double rows -Through hole pin header THT 2x29 1.27mm double row -0 -58 -58 -Connector_PinHeader_1.27mm -PinHeader_2x29_P1.27mm_Vertical_SMD -surface-mounted straight pin header, 2x29, 1.27mm pitch, double rows -Surface mounted pin header SMD 2x29 1.27mm double row -0 -58 -58 -Connector_PinHeader_1.27mm -PinHeader_2x30_P1.27mm_Horizontal -Through hole angled pin header, 2x30, 1.27mm pitch, 4.0mm pin length, double rows -Through hole angled pin header THT 2x30 1.27mm double row -0 -60 -60 -Connector_PinHeader_1.27mm -PinHeader_2x30_P1.27mm_Vertical -Through hole straight pin header, 2x30, 1.27mm pitch, double rows -Through hole pin header THT 2x30 1.27mm double row -0 -60 -60 -Connector_PinHeader_1.27mm -PinHeader_2x30_P1.27mm_Vertical_SMD -surface-mounted straight pin header, 2x30, 1.27mm pitch, double rows -Surface mounted pin header SMD 2x30 1.27mm double row -0 -60 -60 -Connector_PinHeader_1.27mm -PinHeader_2x31_P1.27mm_Horizontal -Through hole angled pin header, 2x31, 1.27mm pitch, 4.0mm pin length, double rows -Through hole angled pin header THT 2x31 1.27mm double row -0 -62 -62 -Connector_PinHeader_1.27mm -PinHeader_2x31_P1.27mm_Vertical -Through hole straight pin header, 2x31, 1.27mm pitch, double rows -Through hole pin header THT 2x31 1.27mm double row -0 -62 -62 -Connector_PinHeader_1.27mm -PinHeader_2x31_P1.27mm_Vertical_SMD -surface-mounted straight pin header, 2x31, 1.27mm pitch, double rows -Surface mounted pin header SMD 2x31 1.27mm double row -0 -62 -62 -Connector_PinHeader_1.27mm -PinHeader_2x32_P1.27mm_Horizontal -Through hole angled pin header, 2x32, 1.27mm pitch, 4.0mm pin length, double rows -Through hole angled pin header THT 2x32 1.27mm double row -0 -64 -64 -Connector_PinHeader_1.27mm -PinHeader_2x32_P1.27mm_Vertical -Through hole straight pin header, 2x32, 1.27mm pitch, double rows -Through hole pin header THT 2x32 1.27mm double row -0 -64 -64 -Connector_PinHeader_1.27mm -PinHeader_2x32_P1.27mm_Vertical_SMD -surface-mounted straight pin header, 2x32, 1.27mm pitch, double rows -Surface mounted pin header SMD 2x32 1.27mm double row -0 -64 -64 -Connector_PinHeader_1.27mm -PinHeader_2x33_P1.27mm_Horizontal -Through hole angled pin header, 2x33, 1.27mm pitch, 4.0mm pin length, double rows -Through hole angled pin header THT 2x33 1.27mm double row -0 -66 -66 -Connector_PinHeader_1.27mm -PinHeader_2x33_P1.27mm_Vertical -Through hole straight pin header, 2x33, 1.27mm pitch, double rows -Through hole pin header THT 2x33 1.27mm double row -0 -66 -66 -Connector_PinHeader_1.27mm -PinHeader_2x33_P1.27mm_Vertical_SMD -surface-mounted straight pin header, 2x33, 1.27mm pitch, double rows -Surface mounted pin header SMD 2x33 1.27mm double row -0 -66 -66 -Connector_PinHeader_1.27mm -PinHeader_2x34_P1.27mm_Horizontal -Through hole angled pin header, 2x34, 1.27mm pitch, 4.0mm pin length, double rows -Through hole angled pin header THT 2x34 1.27mm double row -0 -68 -68 -Connector_PinHeader_1.27mm -PinHeader_2x34_P1.27mm_Vertical -Through hole straight pin header, 2x34, 1.27mm pitch, double rows -Through hole pin header THT 2x34 1.27mm double row -0 -68 -68 -Connector_PinHeader_1.27mm -PinHeader_2x34_P1.27mm_Vertical_SMD -surface-mounted straight pin header, 2x34, 1.27mm pitch, double rows -Surface mounted pin header SMD 2x34 1.27mm double row -0 -68 -68 -Connector_PinHeader_1.27mm -PinHeader_2x35_P1.27mm_Horizontal -Through hole angled pin header, 2x35, 1.27mm pitch, 4.0mm pin length, double rows -Through hole angled pin header THT 2x35 1.27mm double row -0 -70 -70 -Connector_PinHeader_1.27mm -PinHeader_2x35_P1.27mm_Vertical -Through hole straight pin header, 2x35, 1.27mm pitch, double rows -Through hole pin header THT 2x35 1.27mm double row -0 -70 -70 -Connector_PinHeader_1.27mm -PinHeader_2x35_P1.27mm_Vertical_SMD -surface-mounted straight pin header, 2x35, 1.27mm pitch, double rows -Surface mounted pin header SMD 2x35 1.27mm double row -0 -70 -70 -Connector_PinHeader_1.27mm -PinHeader_2x36_P1.27mm_Horizontal -Through hole angled pin header, 2x36, 1.27mm pitch, 4.0mm pin length, double rows -Through hole angled pin header THT 2x36 1.27mm double row -0 -72 -72 -Connector_PinHeader_1.27mm -PinHeader_2x36_P1.27mm_Vertical -Through hole straight pin header, 2x36, 1.27mm pitch, double rows -Through hole pin header THT 2x36 1.27mm double row -0 -72 -72 -Connector_PinHeader_1.27mm -PinHeader_2x36_P1.27mm_Vertical_SMD -surface-mounted straight pin header, 2x36, 1.27mm pitch, double rows -Surface mounted pin header SMD 2x36 1.27mm double row -0 -72 -72 -Connector_PinHeader_1.27mm -PinHeader_2x37_P1.27mm_Horizontal -Through hole angled pin header, 2x37, 1.27mm pitch, 4.0mm pin length, double rows -Through hole angled pin header THT 2x37 1.27mm double row -0 -74 -74 -Connector_PinHeader_1.27mm -PinHeader_2x37_P1.27mm_Vertical -Through hole straight pin header, 2x37, 1.27mm pitch, double rows -Through hole pin header THT 2x37 1.27mm double row -0 -74 -74 -Connector_PinHeader_1.27mm -PinHeader_2x37_P1.27mm_Vertical_SMD -surface-mounted straight pin header, 2x37, 1.27mm pitch, double rows -Surface mounted pin header SMD 2x37 1.27mm double row -0 -74 -74 -Connector_PinHeader_1.27mm -PinHeader_2x38_P1.27mm_Horizontal -Through hole angled pin header, 2x38, 1.27mm pitch, 4.0mm pin length, double rows -Through hole angled pin header THT 2x38 1.27mm double row -0 -76 -76 -Connector_PinHeader_1.27mm -PinHeader_2x38_P1.27mm_Vertical -Through hole straight pin header, 2x38, 1.27mm pitch, double rows -Through hole pin header THT 2x38 1.27mm double row -0 -76 -76 -Connector_PinHeader_1.27mm -PinHeader_2x38_P1.27mm_Vertical_SMD -surface-mounted straight pin header, 2x38, 1.27mm pitch, double rows -Surface mounted pin header SMD 2x38 1.27mm double row -0 -76 -76 -Connector_PinHeader_1.27mm -PinHeader_2x39_P1.27mm_Horizontal -Through hole angled pin header, 2x39, 1.27mm pitch, 4.0mm pin length, double rows -Through hole angled pin header THT 2x39 1.27mm double row -0 -78 -78 -Connector_PinHeader_1.27mm -PinHeader_2x39_P1.27mm_Vertical -Through hole straight pin header, 2x39, 1.27mm pitch, double rows -Through hole pin header THT 2x39 1.27mm double row -0 -78 -78 -Connector_PinHeader_1.27mm -PinHeader_2x39_P1.27mm_Vertical_SMD -surface-mounted straight pin header, 2x39, 1.27mm pitch, double rows -Surface mounted pin header SMD 2x39 1.27mm double row -0 -78 -78 -Connector_PinHeader_1.27mm -PinHeader_2x40_P1.27mm_Horizontal -Through hole angled pin header, 2x40, 1.27mm pitch, 4.0mm pin length, double rows -Through hole angled pin header THT 2x40 1.27mm double row -0 -80 -80 -Connector_PinHeader_1.27mm -PinHeader_2x40_P1.27mm_Vertical -Through hole straight pin header, 2x40, 1.27mm pitch, double rows -Through hole pin header THT 2x40 1.27mm double row -0 -80 -80 -Connector_PinHeader_1.27mm -PinHeader_2x40_P1.27mm_Vertical_SMD -surface-mounted straight pin header, 2x40, 1.27mm pitch, double rows -Surface mounted pin header SMD 2x40 1.27mm double row -0 -80 -80 -Connector_PinHeader_2.00mm -PinHeader_1x01_P2.00mm_Horizontal -Through hole angled pin header, 1x01, 2.00mm pitch, 4.2mm pin length, single row -Through hole angled pin header THT 1x01 2.00mm single row -0 -1 -1 -Connector_PinHeader_2.00mm -PinHeader_1x01_P2.00mm_Vertical -Through hole straight pin header, 1x01, 2.00mm pitch, single row -Through hole pin header THT 1x01 2.00mm single row -0 -1 -1 -Connector_PinHeader_2.00mm -PinHeader_1x02_P2.00mm_Horizontal -Through hole angled pin header, 1x02, 2.00mm pitch, 4.2mm pin length, single row -Through hole angled pin header THT 1x02 2.00mm single row -0 -2 -2 -Connector_PinHeader_2.00mm -PinHeader_1x02_P2.00mm_Vertical -Through hole straight pin header, 1x02, 2.00mm pitch, single row -Through hole pin header THT 1x02 2.00mm single row -0 -2 -2 -Connector_PinHeader_2.00mm -PinHeader_1x02_P2.00mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x02, 2.00mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x02 2.00mm single row style1 pin1 left -0 -2 -2 -Connector_PinHeader_2.00mm -PinHeader_1x02_P2.00mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x02, 2.00mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x02 2.00mm single row style2 pin1 right -0 -2 -2 -Connector_PinHeader_2.00mm -PinHeader_1x03_P2.00mm_Horizontal -Through hole angled pin header, 1x03, 2.00mm pitch, 4.2mm pin length, single row -Through hole angled pin header THT 1x03 2.00mm single row -0 -3 -3 -Connector_PinHeader_2.00mm -PinHeader_1x03_P2.00mm_Vertical -Through hole straight pin header, 1x03, 2.00mm pitch, single row -Through hole pin header THT 1x03 2.00mm single row -0 -3 -3 -Connector_PinHeader_2.00mm -PinHeader_1x03_P2.00mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x03, 2.00mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x03 2.00mm single row style1 pin1 left -0 -3 -3 -Connector_PinHeader_2.00mm -PinHeader_1x03_P2.00mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x03, 2.00mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x03 2.00mm single row style2 pin1 right -0 -3 -3 -Connector_PinHeader_2.00mm -PinHeader_1x04_P2.00mm_Horizontal -Through hole angled pin header, 1x04, 2.00mm pitch, 4.2mm pin length, single row -Through hole angled pin header THT 1x04 2.00mm single row -0 -4 -4 -Connector_PinHeader_2.00mm -PinHeader_1x04_P2.00mm_Vertical -Through hole straight pin header, 1x04, 2.00mm pitch, single row -Through hole pin header THT 1x04 2.00mm single row -0 -4 -4 -Connector_PinHeader_2.00mm -PinHeader_1x04_P2.00mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x04, 2.00mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x04 2.00mm single row style1 pin1 left -0 -4 -4 -Connector_PinHeader_2.00mm -PinHeader_1x04_P2.00mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x04, 2.00mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x04 2.00mm single row style2 pin1 right -0 -4 -4 -Connector_PinHeader_2.00mm -PinHeader_1x05_P2.00mm_Horizontal -Through hole angled pin header, 1x05, 2.00mm pitch, 4.2mm pin length, single row -Through hole angled pin header THT 1x05 2.00mm single row -0 -5 -5 -Connector_PinHeader_2.00mm -PinHeader_1x05_P2.00mm_Vertical -Through hole straight pin header, 1x05, 2.00mm pitch, single row -Through hole pin header THT 1x05 2.00mm single row -0 -5 -5 -Connector_PinHeader_2.00mm -PinHeader_1x05_P2.00mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x05, 2.00mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x05 2.00mm single row style1 pin1 left -0 -5 -5 -Connector_PinHeader_2.00mm -PinHeader_1x05_P2.00mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x05, 2.00mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x05 2.00mm single row style2 pin1 right -0 -5 -5 -Connector_PinHeader_2.00mm -PinHeader_1x06_P2.00mm_Horizontal -Through hole angled pin header, 1x06, 2.00mm pitch, 4.2mm pin length, single row -Through hole angled pin header THT 1x06 2.00mm single row -0 -6 -6 -Connector_PinHeader_2.00mm -PinHeader_1x06_P2.00mm_Vertical -Through hole straight pin header, 1x06, 2.00mm pitch, single row -Through hole pin header THT 1x06 2.00mm single row -0 -6 -6 -Connector_PinHeader_2.00mm -PinHeader_1x06_P2.00mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x06, 2.00mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x06 2.00mm single row style1 pin1 left -0 -6 -6 -Connector_PinHeader_2.00mm -PinHeader_1x06_P2.00mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x06, 2.00mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x06 2.00mm single row style2 pin1 right -0 -6 -6 -Connector_PinHeader_2.00mm -PinHeader_1x07_P2.00mm_Horizontal -Through hole angled pin header, 1x07, 2.00mm pitch, 4.2mm pin length, single row -Through hole angled pin header THT 1x07 2.00mm single row -0 -7 -7 -Connector_PinHeader_2.00mm -PinHeader_1x07_P2.00mm_Vertical -Through hole straight pin header, 1x07, 2.00mm pitch, single row -Through hole pin header THT 1x07 2.00mm single row -0 -7 -7 -Connector_PinHeader_2.00mm -PinHeader_1x07_P2.00mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x07, 2.00mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x07 2.00mm single row style1 pin1 left -0 -7 -7 -Connector_PinHeader_2.00mm -PinHeader_1x07_P2.00mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x07, 2.00mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x07 2.00mm single row style2 pin1 right -0 -7 -7 -Connector_PinHeader_2.00mm -PinHeader_1x08_P2.00mm_Horizontal -Through hole angled pin header, 1x08, 2.00mm pitch, 4.2mm pin length, single row -Through hole angled pin header THT 1x08 2.00mm single row -0 -8 -8 -Connector_PinHeader_2.00mm -PinHeader_1x08_P2.00mm_Vertical -Through hole straight pin header, 1x08, 2.00mm pitch, single row -Through hole pin header THT 1x08 2.00mm single row -0 -8 -8 -Connector_PinHeader_2.00mm -PinHeader_1x08_P2.00mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x08, 2.00mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x08 2.00mm single row style1 pin1 left -0 -8 -8 -Connector_PinHeader_2.00mm -PinHeader_1x08_P2.00mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x08, 2.00mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x08 2.00mm single row style2 pin1 right -0 -8 -8 -Connector_PinHeader_2.00mm -PinHeader_1x09_P2.00mm_Horizontal -Through hole angled pin header, 1x09, 2.00mm pitch, 4.2mm pin length, single row -Through hole angled pin header THT 1x09 2.00mm single row -0 -9 -9 -Connector_PinHeader_2.00mm -PinHeader_1x09_P2.00mm_Vertical -Through hole straight pin header, 1x09, 2.00mm pitch, single row -Through hole pin header THT 1x09 2.00mm single row -0 -9 -9 -Connector_PinHeader_2.00mm -PinHeader_1x09_P2.00mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x09, 2.00mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x09 2.00mm single row style1 pin1 left -0 -9 -9 -Connector_PinHeader_2.00mm -PinHeader_1x09_P2.00mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x09, 2.00mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x09 2.00mm single row style2 pin1 right -0 -9 -9 -Connector_PinHeader_2.00mm -PinHeader_1x10_P2.00mm_Horizontal -Through hole angled pin header, 1x10, 2.00mm pitch, 4.2mm pin length, single row -Through hole angled pin header THT 1x10 2.00mm single row -0 -10 -10 -Connector_PinHeader_2.00mm -PinHeader_1x10_P2.00mm_Vertical -Through hole straight pin header, 1x10, 2.00mm pitch, single row -Through hole pin header THT 1x10 2.00mm single row -0 -10 -10 -Connector_PinHeader_2.00mm -PinHeader_1x10_P2.00mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x10, 2.00mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x10 2.00mm single row style1 pin1 left -0 -10 -10 -Connector_PinHeader_2.00mm -PinHeader_1x10_P2.00mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x10, 2.00mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x10 2.00mm single row style2 pin1 right -0 -10 -10 -Connector_PinHeader_2.00mm -PinHeader_1x11_P2.00mm_Horizontal -Through hole angled pin header, 1x11, 2.00mm pitch, 4.2mm pin length, single row -Through hole angled pin header THT 1x11 2.00mm single row -0 -11 -11 -Connector_PinHeader_2.00mm -PinHeader_1x11_P2.00mm_Vertical -Through hole straight pin header, 1x11, 2.00mm pitch, single row -Through hole pin header THT 1x11 2.00mm single row -0 -11 -11 -Connector_PinHeader_2.00mm -PinHeader_1x11_P2.00mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x11, 2.00mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x11 2.00mm single row style1 pin1 left -0 -11 -11 -Connector_PinHeader_2.00mm -PinHeader_1x11_P2.00mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x11, 2.00mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x11 2.00mm single row style2 pin1 right -0 -11 -11 -Connector_PinHeader_2.00mm -PinHeader_1x12_P2.00mm_Horizontal -Through hole angled pin header, 1x12, 2.00mm pitch, 4.2mm pin length, single row -Through hole angled pin header THT 1x12 2.00mm single row -0 -12 -12 -Connector_PinHeader_2.00mm -PinHeader_1x12_P2.00mm_Vertical -Through hole straight pin header, 1x12, 2.00mm pitch, single row -Through hole pin header THT 1x12 2.00mm single row -0 -12 -12 -Connector_PinHeader_2.00mm -PinHeader_1x12_P2.00mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x12, 2.00mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x12 2.00mm single row style1 pin1 left -0 -12 -12 -Connector_PinHeader_2.00mm -PinHeader_1x12_P2.00mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x12, 2.00mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x12 2.00mm single row style2 pin1 right -0 -12 -12 -Connector_PinHeader_2.00mm -PinHeader_1x13_P2.00mm_Horizontal -Through hole angled pin header, 1x13, 2.00mm pitch, 4.2mm pin length, single row -Through hole angled pin header THT 1x13 2.00mm single row -0 -13 -13 -Connector_PinHeader_2.00mm -PinHeader_1x13_P2.00mm_Vertical -Through hole straight pin header, 1x13, 2.00mm pitch, single row -Through hole pin header THT 1x13 2.00mm single row -0 -13 -13 -Connector_PinHeader_2.00mm -PinHeader_1x13_P2.00mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x13, 2.00mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x13 2.00mm single row style1 pin1 left -0 -13 -13 -Connector_PinHeader_2.00mm -PinHeader_1x13_P2.00mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x13, 2.00mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x13 2.00mm single row style2 pin1 right -0 -13 -13 -Connector_PinHeader_2.00mm -PinHeader_1x14_P2.00mm_Horizontal -Through hole angled pin header, 1x14, 2.00mm pitch, 4.2mm pin length, single row -Through hole angled pin header THT 1x14 2.00mm single row -0 -14 -14 -Connector_PinHeader_2.00mm -PinHeader_1x14_P2.00mm_Vertical -Through hole straight pin header, 1x14, 2.00mm pitch, single row -Through hole pin header THT 1x14 2.00mm single row -0 -14 -14 -Connector_PinHeader_2.00mm -PinHeader_1x14_P2.00mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x14, 2.00mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x14 2.00mm single row style1 pin1 left -0 -14 -14 -Connector_PinHeader_2.00mm -PinHeader_1x14_P2.00mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x14, 2.00mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x14 2.00mm single row style2 pin1 right -0 -14 -14 -Connector_PinHeader_2.00mm -PinHeader_1x15_P2.00mm_Horizontal -Through hole angled pin header, 1x15, 2.00mm pitch, 4.2mm pin length, single row -Through hole angled pin header THT 1x15 2.00mm single row -0 -15 -15 -Connector_PinHeader_2.00mm -PinHeader_1x15_P2.00mm_Vertical -Through hole straight pin header, 1x15, 2.00mm pitch, single row -Through hole pin header THT 1x15 2.00mm single row -0 -15 -15 -Connector_PinHeader_2.00mm -PinHeader_1x15_P2.00mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x15, 2.00mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x15 2.00mm single row style1 pin1 left -0 -15 -15 -Connector_PinHeader_2.00mm -PinHeader_1x15_P2.00mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x15, 2.00mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x15 2.00mm single row style2 pin1 right -0 -15 -15 -Connector_PinHeader_2.00mm -PinHeader_1x16_P2.00mm_Horizontal -Through hole angled pin header, 1x16, 2.00mm pitch, 4.2mm pin length, single row -Through hole angled pin header THT 1x16 2.00mm single row -0 -16 -16 -Connector_PinHeader_2.00mm -PinHeader_1x16_P2.00mm_Vertical -Through hole straight pin header, 1x16, 2.00mm pitch, single row -Through hole pin header THT 1x16 2.00mm single row -0 -16 -16 -Connector_PinHeader_2.00mm -PinHeader_1x16_P2.00mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x16, 2.00mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x16 2.00mm single row style1 pin1 left -0 -16 -16 -Connector_PinHeader_2.00mm -PinHeader_1x16_P2.00mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x16, 2.00mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x16 2.00mm single row style2 pin1 right -0 -16 -16 -Connector_PinHeader_2.00mm -PinHeader_1x17_P2.00mm_Horizontal -Through hole angled pin header, 1x17, 2.00mm pitch, 4.2mm pin length, single row -Through hole angled pin header THT 1x17 2.00mm single row -0 -17 -17 -Connector_PinHeader_2.00mm -PinHeader_1x17_P2.00mm_Vertical -Through hole straight pin header, 1x17, 2.00mm pitch, single row -Through hole pin header THT 1x17 2.00mm single row -0 -17 -17 -Connector_PinHeader_2.00mm -PinHeader_1x17_P2.00mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x17, 2.00mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x17 2.00mm single row style1 pin1 left -0 -17 -17 -Connector_PinHeader_2.00mm -PinHeader_1x17_P2.00mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x17, 2.00mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x17 2.00mm single row style2 pin1 right -0 -17 -17 -Connector_PinHeader_2.00mm -PinHeader_1x18_P2.00mm_Horizontal -Through hole angled pin header, 1x18, 2.00mm pitch, 4.2mm pin length, single row -Through hole angled pin header THT 1x18 2.00mm single row -0 -18 -18 -Connector_PinHeader_2.00mm -PinHeader_1x18_P2.00mm_Vertical -Through hole straight pin header, 1x18, 2.00mm pitch, single row -Through hole pin header THT 1x18 2.00mm single row -0 -18 -18 -Connector_PinHeader_2.00mm -PinHeader_1x18_P2.00mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x18, 2.00mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x18 2.00mm single row style1 pin1 left -0 -18 -18 -Connector_PinHeader_2.00mm -PinHeader_1x18_P2.00mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x18, 2.00mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x18 2.00mm single row style2 pin1 right -0 -18 -18 -Connector_PinHeader_2.00mm -PinHeader_1x19_P2.00mm_Horizontal -Through hole angled pin header, 1x19, 2.00mm pitch, 4.2mm pin length, single row -Through hole angled pin header THT 1x19 2.00mm single row -0 -19 -19 -Connector_PinHeader_2.00mm -PinHeader_1x19_P2.00mm_Vertical -Through hole straight pin header, 1x19, 2.00mm pitch, single row -Through hole pin header THT 1x19 2.00mm single row -0 -19 -19 -Connector_PinHeader_2.00mm -PinHeader_1x19_P2.00mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x19, 2.00mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x19 2.00mm single row style1 pin1 left -0 -19 -19 -Connector_PinHeader_2.00mm -PinHeader_1x19_P2.00mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x19, 2.00mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x19 2.00mm single row style2 pin1 right -0 -19 -19 -Connector_PinHeader_2.00mm -PinHeader_1x20_P2.00mm_Horizontal -Through hole angled pin header, 1x20, 2.00mm pitch, 4.2mm pin length, single row -Through hole angled pin header THT 1x20 2.00mm single row -0 -20 -20 -Connector_PinHeader_2.00mm -PinHeader_1x20_P2.00mm_Vertical -Through hole straight pin header, 1x20, 2.00mm pitch, single row -Through hole pin header THT 1x20 2.00mm single row -0 -20 -20 -Connector_PinHeader_2.00mm -PinHeader_1x20_P2.00mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x20, 2.00mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x20 2.00mm single row style1 pin1 left -0 -20 -20 -Connector_PinHeader_2.00mm -PinHeader_1x20_P2.00mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x20, 2.00mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x20 2.00mm single row style2 pin1 right -0 -20 -20 -Connector_PinHeader_2.00mm -PinHeader_1x21_P2.00mm_Horizontal -Through hole angled pin header, 1x21, 2.00mm pitch, 4.2mm pin length, single row -Through hole angled pin header THT 1x21 2.00mm single row -0 -21 -21 -Connector_PinHeader_2.00mm -PinHeader_1x21_P2.00mm_Vertical -Through hole straight pin header, 1x21, 2.00mm pitch, single row -Through hole pin header THT 1x21 2.00mm single row -0 -21 -21 -Connector_PinHeader_2.00mm -PinHeader_1x21_P2.00mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x21, 2.00mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x21 2.00mm single row style1 pin1 left -0 -21 -21 -Connector_PinHeader_2.00mm -PinHeader_1x21_P2.00mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x21, 2.00mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x21 2.00mm single row style2 pin1 right -0 -21 -21 -Connector_PinHeader_2.00mm -PinHeader_1x22_P2.00mm_Horizontal -Through hole angled pin header, 1x22, 2.00mm pitch, 4.2mm pin length, single row -Through hole angled pin header THT 1x22 2.00mm single row -0 -22 -22 -Connector_PinHeader_2.00mm -PinHeader_1x22_P2.00mm_Vertical -Through hole straight pin header, 1x22, 2.00mm pitch, single row -Through hole pin header THT 1x22 2.00mm single row -0 -22 -22 -Connector_PinHeader_2.00mm -PinHeader_1x22_P2.00mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x22, 2.00mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x22 2.00mm single row style1 pin1 left -0 -22 -22 -Connector_PinHeader_2.00mm -PinHeader_1x22_P2.00mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x22, 2.00mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x22 2.00mm single row style2 pin1 right -0 -22 -22 -Connector_PinHeader_2.00mm -PinHeader_1x23_P2.00mm_Horizontal -Through hole angled pin header, 1x23, 2.00mm pitch, 4.2mm pin length, single row -Through hole angled pin header THT 1x23 2.00mm single row -0 -23 -23 -Connector_PinHeader_2.00mm -PinHeader_1x23_P2.00mm_Vertical -Through hole straight pin header, 1x23, 2.00mm pitch, single row -Through hole pin header THT 1x23 2.00mm single row -0 -23 -23 -Connector_PinHeader_2.00mm -PinHeader_1x23_P2.00mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x23, 2.00mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x23 2.00mm single row style1 pin1 left -0 -23 -23 -Connector_PinHeader_2.00mm -PinHeader_1x23_P2.00mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x23, 2.00mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x23 2.00mm single row style2 pin1 right -0 -23 -23 -Connector_PinHeader_2.00mm -PinHeader_1x24_P2.00mm_Horizontal -Through hole angled pin header, 1x24, 2.00mm pitch, 4.2mm pin length, single row -Through hole angled pin header THT 1x24 2.00mm single row -0 -24 -24 -Connector_PinHeader_2.00mm -PinHeader_1x24_P2.00mm_Vertical -Through hole straight pin header, 1x24, 2.00mm pitch, single row -Through hole pin header THT 1x24 2.00mm single row -0 -24 -24 -Connector_PinHeader_2.00mm -PinHeader_1x24_P2.00mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x24, 2.00mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x24 2.00mm single row style1 pin1 left -0 -24 -24 -Connector_PinHeader_2.00mm -PinHeader_1x24_P2.00mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x24, 2.00mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x24 2.00mm single row style2 pin1 right -0 -24 -24 -Connector_PinHeader_2.00mm -PinHeader_1x25_P2.00mm_Horizontal -Through hole angled pin header, 1x25, 2.00mm pitch, 4.2mm pin length, single row -Through hole angled pin header THT 1x25 2.00mm single row -0 -25 -25 -Connector_PinHeader_2.00mm -PinHeader_1x25_P2.00mm_Vertical -Through hole straight pin header, 1x25, 2.00mm pitch, single row -Through hole pin header THT 1x25 2.00mm single row -0 -25 -25 -Connector_PinHeader_2.00mm -PinHeader_1x25_P2.00mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x25, 2.00mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x25 2.00mm single row style1 pin1 left -0 -25 -25 -Connector_PinHeader_2.00mm -PinHeader_1x25_P2.00mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x25, 2.00mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x25 2.00mm single row style2 pin1 right -0 -25 -25 -Connector_PinHeader_2.00mm -PinHeader_1x26_P2.00mm_Horizontal -Through hole angled pin header, 1x26, 2.00mm pitch, 4.2mm pin length, single row -Through hole angled pin header THT 1x26 2.00mm single row -0 -26 -26 -Connector_PinHeader_2.00mm -PinHeader_1x26_P2.00mm_Vertical -Through hole straight pin header, 1x26, 2.00mm pitch, single row -Through hole pin header THT 1x26 2.00mm single row -0 -26 -26 -Connector_PinHeader_2.00mm -PinHeader_1x26_P2.00mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x26, 2.00mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x26 2.00mm single row style1 pin1 left -0 -26 -26 -Connector_PinHeader_2.00mm -PinHeader_1x26_P2.00mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x26, 2.00mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x26 2.00mm single row style2 pin1 right -0 -26 -26 -Connector_PinHeader_2.00mm -PinHeader_1x27_P2.00mm_Horizontal -Through hole angled pin header, 1x27, 2.00mm pitch, 4.2mm pin length, single row -Through hole angled pin header THT 1x27 2.00mm single row -0 -27 -27 -Connector_PinHeader_2.00mm -PinHeader_1x27_P2.00mm_Vertical -Through hole straight pin header, 1x27, 2.00mm pitch, single row -Through hole pin header THT 1x27 2.00mm single row -0 -27 -27 -Connector_PinHeader_2.00mm -PinHeader_1x27_P2.00mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x27, 2.00mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x27 2.00mm single row style1 pin1 left -0 -27 -27 -Connector_PinHeader_2.00mm -PinHeader_1x27_P2.00mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x27, 2.00mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x27 2.00mm single row style2 pin1 right -0 -27 -27 -Connector_PinHeader_2.00mm -PinHeader_1x28_P2.00mm_Horizontal -Through hole angled pin header, 1x28, 2.00mm pitch, 4.2mm pin length, single row -Through hole angled pin header THT 1x28 2.00mm single row -0 -28 -28 -Connector_PinHeader_2.00mm -PinHeader_1x28_P2.00mm_Vertical -Through hole straight pin header, 1x28, 2.00mm pitch, single row -Through hole pin header THT 1x28 2.00mm single row -0 -28 -28 -Connector_PinHeader_2.00mm -PinHeader_1x28_P2.00mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x28, 2.00mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x28 2.00mm single row style1 pin1 left -0 -28 -28 -Connector_PinHeader_2.00mm -PinHeader_1x28_P2.00mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x28, 2.00mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x28 2.00mm single row style2 pin1 right -0 -28 -28 -Connector_PinHeader_2.00mm -PinHeader_1x29_P2.00mm_Horizontal -Through hole angled pin header, 1x29, 2.00mm pitch, 4.2mm pin length, single row -Through hole angled pin header THT 1x29 2.00mm single row -0 -29 -29 -Connector_PinHeader_2.00mm -PinHeader_1x29_P2.00mm_Vertical -Through hole straight pin header, 1x29, 2.00mm pitch, single row -Through hole pin header THT 1x29 2.00mm single row -0 -29 -29 -Connector_PinHeader_2.00mm -PinHeader_1x29_P2.00mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x29, 2.00mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x29 2.00mm single row style1 pin1 left -0 -29 -29 -Connector_PinHeader_2.00mm -PinHeader_1x29_P2.00mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x29, 2.00mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x29 2.00mm single row style2 pin1 right -0 -29 -29 -Connector_PinHeader_2.00mm -PinHeader_1x30_P2.00mm_Horizontal -Through hole angled pin header, 1x30, 2.00mm pitch, 4.2mm pin length, single row -Through hole angled pin header THT 1x30 2.00mm single row -0 -30 -30 -Connector_PinHeader_2.00mm -PinHeader_1x30_P2.00mm_Vertical -Through hole straight pin header, 1x30, 2.00mm pitch, single row -Through hole pin header THT 1x30 2.00mm single row -0 -30 -30 -Connector_PinHeader_2.00mm -PinHeader_1x30_P2.00mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x30, 2.00mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x30 2.00mm single row style1 pin1 left -0 -30 -30 -Connector_PinHeader_2.00mm -PinHeader_1x30_P2.00mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x30, 2.00mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x30 2.00mm single row style2 pin1 right -0 -30 -30 -Connector_PinHeader_2.00mm -PinHeader_1x31_P2.00mm_Horizontal -Through hole angled pin header, 1x31, 2.00mm pitch, 4.2mm pin length, single row -Through hole angled pin header THT 1x31 2.00mm single row -0 -31 -31 -Connector_PinHeader_2.00mm -PinHeader_1x31_P2.00mm_Vertical -Through hole straight pin header, 1x31, 2.00mm pitch, single row -Through hole pin header THT 1x31 2.00mm single row -0 -31 -31 -Connector_PinHeader_2.00mm -PinHeader_1x31_P2.00mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x31, 2.00mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x31 2.00mm single row style1 pin1 left -0 -31 -31 -Connector_PinHeader_2.00mm -PinHeader_1x31_P2.00mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x31, 2.00mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x31 2.00mm single row style2 pin1 right -0 -31 -31 -Connector_PinHeader_2.00mm -PinHeader_1x32_P2.00mm_Horizontal -Through hole angled pin header, 1x32, 2.00mm pitch, 4.2mm pin length, single row -Through hole angled pin header THT 1x32 2.00mm single row -0 -32 -32 -Connector_PinHeader_2.00mm -PinHeader_1x32_P2.00mm_Vertical -Through hole straight pin header, 1x32, 2.00mm pitch, single row -Through hole pin header THT 1x32 2.00mm single row -0 -32 -32 -Connector_PinHeader_2.00mm -PinHeader_1x32_P2.00mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x32, 2.00mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x32 2.00mm single row style1 pin1 left -0 -32 -32 -Connector_PinHeader_2.00mm -PinHeader_1x32_P2.00mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x32, 2.00mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x32 2.00mm single row style2 pin1 right -0 -32 -32 -Connector_PinHeader_2.00mm -PinHeader_1x33_P2.00mm_Horizontal -Through hole angled pin header, 1x33, 2.00mm pitch, 4.2mm pin length, single row -Through hole angled pin header THT 1x33 2.00mm single row -0 -33 -33 -Connector_PinHeader_2.00mm -PinHeader_1x33_P2.00mm_Vertical -Through hole straight pin header, 1x33, 2.00mm pitch, single row -Through hole pin header THT 1x33 2.00mm single row -0 -33 -33 -Connector_PinHeader_2.00mm -PinHeader_1x33_P2.00mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x33, 2.00mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x33 2.00mm single row style1 pin1 left -0 -33 -33 -Connector_PinHeader_2.00mm -PinHeader_1x33_P2.00mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x33, 2.00mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x33 2.00mm single row style2 pin1 right -0 -33 -33 -Connector_PinHeader_2.00mm -PinHeader_1x34_P2.00mm_Horizontal -Through hole angled pin header, 1x34, 2.00mm pitch, 4.2mm pin length, single row -Through hole angled pin header THT 1x34 2.00mm single row -0 -34 -34 -Connector_PinHeader_2.00mm -PinHeader_1x34_P2.00mm_Vertical -Through hole straight pin header, 1x34, 2.00mm pitch, single row -Through hole pin header THT 1x34 2.00mm single row -0 -34 -34 -Connector_PinHeader_2.00mm -PinHeader_1x34_P2.00mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x34, 2.00mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x34 2.00mm single row style1 pin1 left -0 -34 -34 -Connector_PinHeader_2.00mm -PinHeader_1x34_P2.00mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x34, 2.00mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x34 2.00mm single row style2 pin1 right -0 -34 -34 -Connector_PinHeader_2.00mm -PinHeader_1x35_P2.00mm_Horizontal -Through hole angled pin header, 1x35, 2.00mm pitch, 4.2mm pin length, single row -Through hole angled pin header THT 1x35 2.00mm single row -0 -35 -35 -Connector_PinHeader_2.00mm -PinHeader_1x35_P2.00mm_Vertical -Through hole straight pin header, 1x35, 2.00mm pitch, single row -Through hole pin header THT 1x35 2.00mm single row -0 -35 -35 -Connector_PinHeader_2.00mm -PinHeader_1x35_P2.00mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x35, 2.00mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x35 2.00mm single row style1 pin1 left -0 -35 -35 -Connector_PinHeader_2.00mm -PinHeader_1x35_P2.00mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x35, 2.00mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x35 2.00mm single row style2 pin1 right -0 -35 -35 -Connector_PinHeader_2.00mm -PinHeader_1x36_P2.00mm_Horizontal -Through hole angled pin header, 1x36, 2.00mm pitch, 4.2mm pin length, single row -Through hole angled pin header THT 1x36 2.00mm single row -0 -36 -36 -Connector_PinHeader_2.00mm -PinHeader_1x36_P2.00mm_Vertical -Through hole straight pin header, 1x36, 2.00mm pitch, single row -Through hole pin header THT 1x36 2.00mm single row -0 -36 -36 -Connector_PinHeader_2.00mm -PinHeader_1x36_P2.00mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x36, 2.00mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x36 2.00mm single row style1 pin1 left -0 -36 -36 -Connector_PinHeader_2.00mm -PinHeader_1x36_P2.00mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x36, 2.00mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x36 2.00mm single row style2 pin1 right -0 -36 -36 -Connector_PinHeader_2.00mm -PinHeader_1x37_P2.00mm_Horizontal -Through hole angled pin header, 1x37, 2.00mm pitch, 4.2mm pin length, single row -Through hole angled pin header THT 1x37 2.00mm single row -0 -37 -37 -Connector_PinHeader_2.00mm -PinHeader_1x37_P2.00mm_Vertical -Through hole straight pin header, 1x37, 2.00mm pitch, single row -Through hole pin header THT 1x37 2.00mm single row -0 -37 -37 -Connector_PinHeader_2.00mm -PinHeader_1x37_P2.00mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x37, 2.00mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x37 2.00mm single row style1 pin1 left -0 -37 -37 -Connector_PinHeader_2.00mm -PinHeader_1x37_P2.00mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x37, 2.00mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x37 2.00mm single row style2 pin1 right -0 -37 -37 -Connector_PinHeader_2.00mm -PinHeader_1x38_P2.00mm_Horizontal -Through hole angled pin header, 1x38, 2.00mm pitch, 4.2mm pin length, single row -Through hole angled pin header THT 1x38 2.00mm single row -0 -38 -38 -Connector_PinHeader_2.00mm -PinHeader_1x38_P2.00mm_Vertical -Through hole straight pin header, 1x38, 2.00mm pitch, single row -Through hole pin header THT 1x38 2.00mm single row -0 -38 -38 -Connector_PinHeader_2.00mm -PinHeader_1x38_P2.00mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x38, 2.00mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x38 2.00mm single row style1 pin1 left -0 -38 -38 -Connector_PinHeader_2.00mm -PinHeader_1x38_P2.00mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x38, 2.00mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x38 2.00mm single row style2 pin1 right -0 -38 -38 -Connector_PinHeader_2.00mm -PinHeader_1x39_P2.00mm_Horizontal -Through hole angled pin header, 1x39, 2.00mm pitch, 4.2mm pin length, single row -Through hole angled pin header THT 1x39 2.00mm single row -0 -39 -39 -Connector_PinHeader_2.00mm -PinHeader_1x39_P2.00mm_Vertical -Through hole straight pin header, 1x39, 2.00mm pitch, single row -Through hole pin header THT 1x39 2.00mm single row -0 -39 -39 -Connector_PinHeader_2.00mm -PinHeader_1x39_P2.00mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x39, 2.00mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x39 2.00mm single row style1 pin1 left -0 -39 -39 -Connector_PinHeader_2.00mm -PinHeader_1x39_P2.00mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x39, 2.00mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x39 2.00mm single row style2 pin1 right -0 -39 -39 -Connector_PinHeader_2.00mm -PinHeader_1x40_P2.00mm_Horizontal -Through hole angled pin header, 1x40, 2.00mm pitch, 4.2mm pin length, single row -Through hole angled pin header THT 1x40 2.00mm single row -0 -40 -40 -Connector_PinHeader_2.00mm -PinHeader_1x40_P2.00mm_Vertical -Through hole straight pin header, 1x40, 2.00mm pitch, single row -Through hole pin header THT 1x40 2.00mm single row -0 -40 -40 -Connector_PinHeader_2.00mm -PinHeader_1x40_P2.00mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x40, 2.00mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x40 2.00mm single row style1 pin1 left -0 -40 -40 -Connector_PinHeader_2.00mm -PinHeader_1x40_P2.00mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x40, 2.00mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x40 2.00mm single row style2 pin1 right -0 -40 -40 -Connector_PinHeader_2.00mm -PinHeader_2x01_P2.00mm_Horizontal -Through hole angled pin header, 2x01, 2.00mm pitch, 4.2mm pin length, double rows -Through hole angled pin header THT 2x01 2.00mm double row -0 -2 -2 -Connector_PinHeader_2.00mm -PinHeader_2x01_P2.00mm_Vertical -Through hole straight pin header, 2x01, 2.00mm pitch, double rows -Through hole pin header THT 2x01 2.00mm double row -0 -2 -2 -Connector_PinHeader_2.00mm -PinHeader_2x01_P2.00mm_Vertical_SMD -surface-mounted straight pin header, 2x01, 2.00mm pitch, double rows -Surface mounted pin header SMD 2x01 2.00mm double row -0 -2 -2 -Connector_PinHeader_2.00mm -PinHeader_2x02_P2.00mm_Horizontal -Through hole angled pin header, 2x02, 2.00mm pitch, 4.2mm pin length, double rows -Through hole angled pin header THT 2x02 2.00mm double row -0 -4 -4 -Connector_PinHeader_2.00mm -PinHeader_2x02_P2.00mm_Vertical -Through hole straight pin header, 2x02, 2.00mm pitch, double rows -Through hole pin header THT 2x02 2.00mm double row -0 -4 -4 -Connector_PinHeader_2.00mm -PinHeader_2x02_P2.00mm_Vertical_SMD -surface-mounted straight pin header, 2x02, 2.00mm pitch, double rows -Surface mounted pin header SMD 2x02 2.00mm double row -0 -4 -4 -Connector_PinHeader_2.00mm -PinHeader_2x03_P2.00mm_Horizontal -Through hole angled pin header, 2x03, 2.00mm pitch, 4.2mm pin length, double rows -Through hole angled pin header THT 2x03 2.00mm double row -0 -6 -6 -Connector_PinHeader_2.00mm -PinHeader_2x03_P2.00mm_Vertical -Through hole straight pin header, 2x03, 2.00mm pitch, double rows -Through hole pin header THT 2x03 2.00mm double row -0 -6 -6 -Connector_PinHeader_2.00mm -PinHeader_2x03_P2.00mm_Vertical_SMD -surface-mounted straight pin header, 2x03, 2.00mm pitch, double rows -Surface mounted pin header SMD 2x03 2.00mm double row -0 -6 -6 -Connector_PinHeader_2.00mm -PinHeader_2x04_P2.00mm_Horizontal -Through hole angled pin header, 2x04, 2.00mm pitch, 4.2mm pin length, double rows -Through hole angled pin header THT 2x04 2.00mm double row -0 -8 -8 -Connector_PinHeader_2.00mm -PinHeader_2x04_P2.00mm_Vertical -Through hole straight pin header, 2x04, 2.00mm pitch, double rows -Through hole pin header THT 2x04 2.00mm double row -0 -8 -8 -Connector_PinHeader_2.00mm -PinHeader_2x04_P2.00mm_Vertical_SMD -surface-mounted straight pin header, 2x04, 2.00mm pitch, double rows -Surface mounted pin header SMD 2x04 2.00mm double row -0 -8 -8 -Connector_PinHeader_2.00mm -PinHeader_2x05_P2.00mm_Horizontal -Through hole angled pin header, 2x05, 2.00mm pitch, 4.2mm pin length, double rows -Through hole angled pin header THT 2x05 2.00mm double row -0 -10 -10 -Connector_PinHeader_2.00mm -PinHeader_2x05_P2.00mm_Vertical -Through hole straight pin header, 2x05, 2.00mm pitch, double rows -Through hole pin header THT 2x05 2.00mm double row -0 -10 -10 -Connector_PinHeader_2.00mm -PinHeader_2x05_P2.00mm_Vertical_SMD -surface-mounted straight pin header, 2x05, 2.00mm pitch, double rows -Surface mounted pin header SMD 2x05 2.00mm double row -0 -10 -10 -Connector_PinHeader_2.00mm -PinHeader_2x06_P2.00mm_Horizontal -Through hole angled pin header, 2x06, 2.00mm pitch, 4.2mm pin length, double rows -Through hole angled pin header THT 2x06 2.00mm double row -0 -12 -12 -Connector_PinHeader_2.00mm -PinHeader_2x06_P2.00mm_Vertical -Through hole straight pin header, 2x06, 2.00mm pitch, double rows -Through hole pin header THT 2x06 2.00mm double row -0 -12 -12 -Connector_PinHeader_2.00mm -PinHeader_2x06_P2.00mm_Vertical_SMD -surface-mounted straight pin header, 2x06, 2.00mm pitch, double rows -Surface mounted pin header SMD 2x06 2.00mm double row -0 -12 -12 -Connector_PinHeader_2.00mm -PinHeader_2x07_P2.00mm_Horizontal -Through hole angled pin header, 2x07, 2.00mm pitch, 4.2mm pin length, double rows -Through hole angled pin header THT 2x07 2.00mm double row -0 -14 -14 -Connector_PinHeader_2.00mm -PinHeader_2x07_P2.00mm_Vertical -Through hole straight pin header, 2x07, 2.00mm pitch, double rows -Through hole pin header THT 2x07 2.00mm double row -0 -14 -14 -Connector_PinHeader_2.00mm -PinHeader_2x07_P2.00mm_Vertical_SMD -surface-mounted straight pin header, 2x07, 2.00mm pitch, double rows -Surface mounted pin header SMD 2x07 2.00mm double row -0 -14 -14 -Connector_PinHeader_2.00mm -PinHeader_2x08_P2.00mm_Horizontal -Through hole angled pin header, 2x08, 2.00mm pitch, 4.2mm pin length, double rows -Through hole angled pin header THT 2x08 2.00mm double row -0 -16 -16 -Connector_PinHeader_2.00mm -PinHeader_2x08_P2.00mm_Vertical -Through hole straight pin header, 2x08, 2.00mm pitch, double rows -Through hole pin header THT 2x08 2.00mm double row -0 -16 -16 -Connector_PinHeader_2.00mm -PinHeader_2x08_P2.00mm_Vertical_SMD -surface-mounted straight pin header, 2x08, 2.00mm pitch, double rows -Surface mounted pin header SMD 2x08 2.00mm double row -0 -16 -16 -Connector_PinHeader_2.00mm -PinHeader_2x09_P2.00mm_Horizontal -Through hole angled pin header, 2x09, 2.00mm pitch, 4.2mm pin length, double rows -Through hole angled pin header THT 2x09 2.00mm double row -0 -18 -18 -Connector_PinHeader_2.00mm -PinHeader_2x09_P2.00mm_Vertical -Through hole straight pin header, 2x09, 2.00mm pitch, double rows -Through hole pin header THT 2x09 2.00mm double row -0 -18 -18 -Connector_PinHeader_2.00mm -PinHeader_2x09_P2.00mm_Vertical_SMD -surface-mounted straight pin header, 2x09, 2.00mm pitch, double rows -Surface mounted pin header SMD 2x09 2.00mm double row -0 -18 -18 -Connector_PinHeader_2.00mm -PinHeader_2x10_P2.00mm_Horizontal -Through hole angled pin header, 2x10, 2.00mm pitch, 4.2mm pin length, double rows -Through hole angled pin header THT 2x10 2.00mm double row -0 -20 -20 -Connector_PinHeader_2.00mm -PinHeader_2x10_P2.00mm_Vertical -Through hole straight pin header, 2x10, 2.00mm pitch, double rows -Through hole pin header THT 2x10 2.00mm double row -0 -20 -20 -Connector_PinHeader_2.00mm -PinHeader_2x10_P2.00mm_Vertical_SMD -surface-mounted straight pin header, 2x10, 2.00mm pitch, double rows -Surface mounted pin header SMD 2x10 2.00mm double row -0 -20 -20 -Connector_PinHeader_2.00mm -PinHeader_2x11_P2.00mm_Horizontal -Through hole angled pin header, 2x11, 2.00mm pitch, 4.2mm pin length, double rows -Through hole angled pin header THT 2x11 2.00mm double row -0 -22 -22 -Connector_PinHeader_2.00mm -PinHeader_2x11_P2.00mm_Vertical -Through hole straight pin header, 2x11, 2.00mm pitch, double rows -Through hole pin header THT 2x11 2.00mm double row -0 -22 -22 -Connector_PinHeader_2.00mm -PinHeader_2x11_P2.00mm_Vertical_SMD -surface-mounted straight pin header, 2x11, 2.00mm pitch, double rows -Surface mounted pin header SMD 2x11 2.00mm double row -0 -22 -22 -Connector_PinHeader_2.00mm -PinHeader_2x12_P2.00mm_Horizontal -Through hole angled pin header, 2x12, 2.00mm pitch, 4.2mm pin length, double rows -Through hole angled pin header THT 2x12 2.00mm double row -0 -24 -24 -Connector_PinHeader_2.00mm -PinHeader_2x12_P2.00mm_Vertical -Through hole straight pin header, 2x12, 2.00mm pitch, double rows -Through hole pin header THT 2x12 2.00mm double row -0 -24 -24 -Connector_PinHeader_2.00mm -PinHeader_2x12_P2.00mm_Vertical_SMD -surface-mounted straight pin header, 2x12, 2.00mm pitch, double rows -Surface mounted pin header SMD 2x12 2.00mm double row -0 -24 -24 -Connector_PinHeader_2.00mm -PinHeader_2x13_P2.00mm_Horizontal -Through hole angled pin header, 2x13, 2.00mm pitch, 4.2mm pin length, double rows -Through hole angled pin header THT 2x13 2.00mm double row -0 -26 -26 -Connector_PinHeader_2.00mm -PinHeader_2x13_P2.00mm_Vertical -Through hole straight pin header, 2x13, 2.00mm pitch, double rows -Through hole pin header THT 2x13 2.00mm double row -0 -26 -26 -Connector_PinHeader_2.00mm -PinHeader_2x13_P2.00mm_Vertical_SMD -surface-mounted straight pin header, 2x13, 2.00mm pitch, double rows -Surface mounted pin header SMD 2x13 2.00mm double row -0 -26 -26 -Connector_PinHeader_2.00mm -PinHeader_2x14_P2.00mm_Horizontal -Through hole angled pin header, 2x14, 2.00mm pitch, 4.2mm pin length, double rows -Through hole angled pin header THT 2x14 2.00mm double row -0 -28 -28 -Connector_PinHeader_2.00mm -PinHeader_2x14_P2.00mm_Vertical -Through hole straight pin header, 2x14, 2.00mm pitch, double rows -Through hole pin header THT 2x14 2.00mm double row -0 -28 -28 -Connector_PinHeader_2.00mm -PinHeader_2x14_P2.00mm_Vertical_SMD -surface-mounted straight pin header, 2x14, 2.00mm pitch, double rows -Surface mounted pin header SMD 2x14 2.00mm double row -0 -28 -28 -Connector_PinHeader_2.00mm -PinHeader_2x15_P2.00mm_Horizontal -Through hole angled pin header, 2x15, 2.00mm pitch, 4.2mm pin length, double rows -Through hole angled pin header THT 2x15 2.00mm double row -0 -30 -30 -Connector_PinHeader_2.00mm -PinHeader_2x15_P2.00mm_Vertical -Through hole straight pin header, 2x15, 2.00mm pitch, double rows -Through hole pin header THT 2x15 2.00mm double row -0 -30 -30 -Connector_PinHeader_2.00mm -PinHeader_2x15_P2.00mm_Vertical_SMD -surface-mounted straight pin header, 2x15, 2.00mm pitch, double rows -Surface mounted pin header SMD 2x15 2.00mm double row -0 -30 -30 -Connector_PinHeader_2.00mm -PinHeader_2x16_P2.00mm_Horizontal -Through hole angled pin header, 2x16, 2.00mm pitch, 4.2mm pin length, double rows -Through hole angled pin header THT 2x16 2.00mm double row -0 -32 -32 -Connector_PinHeader_2.00mm -PinHeader_2x16_P2.00mm_Vertical -Through hole straight pin header, 2x16, 2.00mm pitch, double rows -Through hole pin header THT 2x16 2.00mm double row -0 -32 -32 -Connector_PinHeader_2.00mm -PinHeader_2x16_P2.00mm_Vertical_SMD -surface-mounted straight pin header, 2x16, 2.00mm pitch, double rows -Surface mounted pin header SMD 2x16 2.00mm double row -0 -32 -32 -Connector_PinHeader_2.00mm -PinHeader_2x17_P2.00mm_Horizontal -Through hole angled pin header, 2x17, 2.00mm pitch, 4.2mm pin length, double rows -Through hole angled pin header THT 2x17 2.00mm double row -0 -34 -34 -Connector_PinHeader_2.00mm -PinHeader_2x17_P2.00mm_Vertical -Through hole straight pin header, 2x17, 2.00mm pitch, double rows -Through hole pin header THT 2x17 2.00mm double row -0 -34 -34 -Connector_PinHeader_2.00mm -PinHeader_2x17_P2.00mm_Vertical_SMD -surface-mounted straight pin header, 2x17, 2.00mm pitch, double rows -Surface mounted pin header SMD 2x17 2.00mm double row -0 -34 -34 -Connector_PinHeader_2.00mm -PinHeader_2x18_P2.00mm_Horizontal -Through hole angled pin header, 2x18, 2.00mm pitch, 4.2mm pin length, double rows -Through hole angled pin header THT 2x18 2.00mm double row -0 -36 -36 -Connector_PinHeader_2.00mm -PinHeader_2x18_P2.00mm_Vertical -Through hole straight pin header, 2x18, 2.00mm pitch, double rows -Through hole pin header THT 2x18 2.00mm double row -0 -36 -36 -Connector_PinHeader_2.00mm -PinHeader_2x18_P2.00mm_Vertical_SMD -surface-mounted straight pin header, 2x18, 2.00mm pitch, double rows -Surface mounted pin header SMD 2x18 2.00mm double row -0 -36 -36 -Connector_PinHeader_2.00mm -PinHeader_2x19_P2.00mm_Horizontal -Through hole angled pin header, 2x19, 2.00mm pitch, 4.2mm pin length, double rows -Through hole angled pin header THT 2x19 2.00mm double row -0 -38 -38 -Connector_PinHeader_2.00mm -PinHeader_2x19_P2.00mm_Vertical -Through hole straight pin header, 2x19, 2.00mm pitch, double rows -Through hole pin header THT 2x19 2.00mm double row -0 -38 -38 -Connector_PinHeader_2.00mm -PinHeader_2x19_P2.00mm_Vertical_SMD -surface-mounted straight pin header, 2x19, 2.00mm pitch, double rows -Surface mounted pin header SMD 2x19 2.00mm double row -0 -38 -38 -Connector_PinHeader_2.00mm -PinHeader_2x20_P2.00mm_Horizontal -Through hole angled pin header, 2x20, 2.00mm pitch, 4.2mm pin length, double rows -Through hole angled pin header THT 2x20 2.00mm double row -0 -40 -40 -Connector_PinHeader_2.00mm -PinHeader_2x20_P2.00mm_Vertical -Through hole straight pin header, 2x20, 2.00mm pitch, double rows -Through hole pin header THT 2x20 2.00mm double row -0 -40 -40 -Connector_PinHeader_2.00mm -PinHeader_2x20_P2.00mm_Vertical_SMD -surface-mounted straight pin header, 2x20, 2.00mm pitch, double rows -Surface mounted pin header SMD 2x20 2.00mm double row -0 -40 -40 -Connector_PinHeader_2.00mm -PinHeader_2x21_P2.00mm_Horizontal -Through hole angled pin header, 2x21, 2.00mm pitch, 4.2mm pin length, double rows -Through hole angled pin header THT 2x21 2.00mm double row -0 -42 -42 -Connector_PinHeader_2.00mm -PinHeader_2x21_P2.00mm_Vertical -Through hole straight pin header, 2x21, 2.00mm pitch, double rows -Through hole pin header THT 2x21 2.00mm double row -0 -42 -42 -Connector_PinHeader_2.00mm -PinHeader_2x21_P2.00mm_Vertical_SMD -surface-mounted straight pin header, 2x21, 2.00mm pitch, double rows -Surface mounted pin header SMD 2x21 2.00mm double row -0 -42 -42 -Connector_PinHeader_2.00mm -PinHeader_2x22_P2.00mm_Horizontal -Through hole angled pin header, 2x22, 2.00mm pitch, 4.2mm pin length, double rows -Through hole angled pin header THT 2x22 2.00mm double row -0 -44 -44 -Connector_PinHeader_2.00mm -PinHeader_2x22_P2.00mm_Vertical -Through hole straight pin header, 2x22, 2.00mm pitch, double rows -Through hole pin header THT 2x22 2.00mm double row -0 -44 -44 -Connector_PinHeader_2.00mm -PinHeader_2x22_P2.00mm_Vertical_SMD -surface-mounted straight pin header, 2x22, 2.00mm pitch, double rows -Surface mounted pin header SMD 2x22 2.00mm double row -0 -44 -44 -Connector_PinHeader_2.00mm -PinHeader_2x23_P2.00mm_Horizontal -Through hole angled pin header, 2x23, 2.00mm pitch, 4.2mm pin length, double rows -Through hole angled pin header THT 2x23 2.00mm double row -0 -46 -46 -Connector_PinHeader_2.00mm -PinHeader_2x23_P2.00mm_Vertical -Through hole straight pin header, 2x23, 2.00mm pitch, double rows -Through hole pin header THT 2x23 2.00mm double row -0 -46 -46 -Connector_PinHeader_2.00mm -PinHeader_2x23_P2.00mm_Vertical_SMD -surface-mounted straight pin header, 2x23, 2.00mm pitch, double rows -Surface mounted pin header SMD 2x23 2.00mm double row -0 -46 -46 -Connector_PinHeader_2.00mm -PinHeader_2x24_P2.00mm_Horizontal -Through hole angled pin header, 2x24, 2.00mm pitch, 4.2mm pin length, double rows -Through hole angled pin header THT 2x24 2.00mm double row -0 -48 -48 -Connector_PinHeader_2.00mm -PinHeader_2x24_P2.00mm_Vertical -Through hole straight pin header, 2x24, 2.00mm pitch, double rows -Through hole pin header THT 2x24 2.00mm double row -0 -48 -48 -Connector_PinHeader_2.00mm -PinHeader_2x24_P2.00mm_Vertical_SMD -surface-mounted straight pin header, 2x24, 2.00mm pitch, double rows -Surface mounted pin header SMD 2x24 2.00mm double row -0 -48 -48 -Connector_PinHeader_2.00mm -PinHeader_2x25_P2.00mm_Horizontal -Through hole angled pin header, 2x25, 2.00mm pitch, 4.2mm pin length, double rows -Through hole angled pin header THT 2x25 2.00mm double row -0 -50 -50 -Connector_PinHeader_2.00mm -PinHeader_2x25_P2.00mm_Vertical -Through hole straight pin header, 2x25, 2.00mm pitch, double rows -Through hole pin header THT 2x25 2.00mm double row -0 -50 -50 -Connector_PinHeader_2.00mm -PinHeader_2x25_P2.00mm_Vertical_SMD -surface-mounted straight pin header, 2x25, 2.00mm pitch, double rows -Surface mounted pin header SMD 2x25 2.00mm double row -0 -50 -50 -Connector_PinHeader_2.00mm -PinHeader_2x26_P2.00mm_Horizontal -Through hole angled pin header, 2x26, 2.00mm pitch, 4.2mm pin length, double rows -Through hole angled pin header THT 2x26 2.00mm double row -0 -52 -52 -Connector_PinHeader_2.00mm -PinHeader_2x26_P2.00mm_Vertical -Through hole straight pin header, 2x26, 2.00mm pitch, double rows -Through hole pin header THT 2x26 2.00mm double row -0 -52 -52 -Connector_PinHeader_2.00mm -PinHeader_2x26_P2.00mm_Vertical_SMD -surface-mounted straight pin header, 2x26, 2.00mm pitch, double rows -Surface mounted pin header SMD 2x26 2.00mm double row -0 -52 -52 -Connector_PinHeader_2.00mm -PinHeader_2x27_P2.00mm_Horizontal -Through hole angled pin header, 2x27, 2.00mm pitch, 4.2mm pin length, double rows -Through hole angled pin header THT 2x27 2.00mm double row -0 -54 -54 -Connector_PinHeader_2.00mm -PinHeader_2x27_P2.00mm_Vertical -Through hole straight pin header, 2x27, 2.00mm pitch, double rows -Through hole pin header THT 2x27 2.00mm double row -0 -54 -54 -Connector_PinHeader_2.00mm -PinHeader_2x27_P2.00mm_Vertical_SMD -surface-mounted straight pin header, 2x27, 2.00mm pitch, double rows -Surface mounted pin header SMD 2x27 2.00mm double row -0 -54 -54 -Connector_PinHeader_2.00mm -PinHeader_2x28_P2.00mm_Horizontal -Through hole angled pin header, 2x28, 2.00mm pitch, 4.2mm pin length, double rows -Through hole angled pin header THT 2x28 2.00mm double row -0 -56 -56 -Connector_PinHeader_2.00mm -PinHeader_2x28_P2.00mm_Vertical -Through hole straight pin header, 2x28, 2.00mm pitch, double rows -Through hole pin header THT 2x28 2.00mm double row -0 -56 -56 -Connector_PinHeader_2.00mm -PinHeader_2x28_P2.00mm_Vertical_SMD -surface-mounted straight pin header, 2x28, 2.00mm pitch, double rows -Surface mounted pin header SMD 2x28 2.00mm double row -0 -56 -56 -Connector_PinHeader_2.00mm -PinHeader_2x29_P2.00mm_Horizontal -Through hole angled pin header, 2x29, 2.00mm pitch, 4.2mm pin length, double rows -Through hole angled pin header THT 2x29 2.00mm double row -0 -58 -58 -Connector_PinHeader_2.00mm -PinHeader_2x29_P2.00mm_Vertical -Through hole straight pin header, 2x29, 2.00mm pitch, double rows -Through hole pin header THT 2x29 2.00mm double row -0 -58 -58 -Connector_PinHeader_2.00mm -PinHeader_2x29_P2.00mm_Vertical_SMD -surface-mounted straight pin header, 2x29, 2.00mm pitch, double rows -Surface mounted pin header SMD 2x29 2.00mm double row -0 -58 -58 -Connector_PinHeader_2.00mm -PinHeader_2x30_P2.00mm_Horizontal -Through hole angled pin header, 2x30, 2.00mm pitch, 4.2mm pin length, double rows -Through hole angled pin header THT 2x30 2.00mm double row -0 -60 -60 -Connector_PinHeader_2.00mm -PinHeader_2x30_P2.00mm_Vertical -Through hole straight pin header, 2x30, 2.00mm pitch, double rows -Through hole pin header THT 2x30 2.00mm double row -0 -60 -60 -Connector_PinHeader_2.00mm -PinHeader_2x30_P2.00mm_Vertical_SMD -surface-mounted straight pin header, 2x30, 2.00mm pitch, double rows -Surface mounted pin header SMD 2x30 2.00mm double row -0 -60 -60 -Connector_PinHeader_2.00mm -PinHeader_2x31_P2.00mm_Horizontal -Through hole angled pin header, 2x31, 2.00mm pitch, 4.2mm pin length, double rows -Through hole angled pin header THT 2x31 2.00mm double row -0 -62 -62 -Connector_PinHeader_2.00mm -PinHeader_2x31_P2.00mm_Vertical -Through hole straight pin header, 2x31, 2.00mm pitch, double rows -Through hole pin header THT 2x31 2.00mm double row -0 -62 -62 -Connector_PinHeader_2.00mm -PinHeader_2x31_P2.00mm_Vertical_SMD -surface-mounted straight pin header, 2x31, 2.00mm pitch, double rows -Surface mounted pin header SMD 2x31 2.00mm double row -0 -62 -62 -Connector_PinHeader_2.00mm -PinHeader_2x32_P2.00mm_Horizontal -Through hole angled pin header, 2x32, 2.00mm pitch, 4.2mm pin length, double rows -Through hole angled pin header THT 2x32 2.00mm double row -0 -64 -64 -Connector_PinHeader_2.00mm -PinHeader_2x32_P2.00mm_Vertical -Through hole straight pin header, 2x32, 2.00mm pitch, double rows -Through hole pin header THT 2x32 2.00mm double row -0 -64 -64 -Connector_PinHeader_2.00mm -PinHeader_2x32_P2.00mm_Vertical_SMD -surface-mounted straight pin header, 2x32, 2.00mm pitch, double rows -Surface mounted pin header SMD 2x32 2.00mm double row -0 -64 -64 -Connector_PinHeader_2.00mm -PinHeader_2x33_P2.00mm_Horizontal -Through hole angled pin header, 2x33, 2.00mm pitch, 4.2mm pin length, double rows -Through hole angled pin header THT 2x33 2.00mm double row -0 -66 -66 -Connector_PinHeader_2.00mm -PinHeader_2x33_P2.00mm_Vertical -Through hole straight pin header, 2x33, 2.00mm pitch, double rows -Through hole pin header THT 2x33 2.00mm double row -0 -66 -66 -Connector_PinHeader_2.00mm -PinHeader_2x33_P2.00mm_Vertical_SMD -surface-mounted straight pin header, 2x33, 2.00mm pitch, double rows -Surface mounted pin header SMD 2x33 2.00mm double row -0 -66 -66 -Connector_PinHeader_2.00mm -PinHeader_2x34_P2.00mm_Horizontal -Through hole angled pin header, 2x34, 2.00mm pitch, 4.2mm pin length, double rows -Through hole angled pin header THT 2x34 2.00mm double row -0 -68 -68 -Connector_PinHeader_2.00mm -PinHeader_2x34_P2.00mm_Vertical -Through hole straight pin header, 2x34, 2.00mm pitch, double rows -Through hole pin header THT 2x34 2.00mm double row -0 -68 -68 -Connector_PinHeader_2.00mm -PinHeader_2x34_P2.00mm_Vertical_SMD -surface-mounted straight pin header, 2x34, 2.00mm pitch, double rows -Surface mounted pin header SMD 2x34 2.00mm double row -0 -68 -68 -Connector_PinHeader_2.00mm -PinHeader_2x35_P2.00mm_Horizontal -Through hole angled pin header, 2x35, 2.00mm pitch, 4.2mm pin length, double rows -Through hole angled pin header THT 2x35 2.00mm double row -0 -70 -70 -Connector_PinHeader_2.00mm -PinHeader_2x35_P2.00mm_Vertical -Through hole straight pin header, 2x35, 2.00mm pitch, double rows -Through hole pin header THT 2x35 2.00mm double row -0 -70 -70 -Connector_PinHeader_2.00mm -PinHeader_2x35_P2.00mm_Vertical_SMD -surface-mounted straight pin header, 2x35, 2.00mm pitch, double rows -Surface mounted pin header SMD 2x35 2.00mm double row -0 -70 -70 -Connector_PinHeader_2.00mm -PinHeader_2x36_P2.00mm_Horizontal -Through hole angled pin header, 2x36, 2.00mm pitch, 4.2mm pin length, double rows -Through hole angled pin header THT 2x36 2.00mm double row -0 -72 -72 -Connector_PinHeader_2.00mm -PinHeader_2x36_P2.00mm_Vertical -Through hole straight pin header, 2x36, 2.00mm pitch, double rows -Through hole pin header THT 2x36 2.00mm double row -0 -72 -72 -Connector_PinHeader_2.00mm -PinHeader_2x36_P2.00mm_Vertical_SMD -surface-mounted straight pin header, 2x36, 2.00mm pitch, double rows -Surface mounted pin header SMD 2x36 2.00mm double row -0 -72 -72 -Connector_PinHeader_2.00mm -PinHeader_2x37_P2.00mm_Horizontal -Through hole angled pin header, 2x37, 2.00mm pitch, 4.2mm pin length, double rows -Through hole angled pin header THT 2x37 2.00mm double row -0 -74 -74 -Connector_PinHeader_2.00mm -PinHeader_2x37_P2.00mm_Vertical -Through hole straight pin header, 2x37, 2.00mm pitch, double rows -Through hole pin header THT 2x37 2.00mm double row -0 -74 -74 -Connector_PinHeader_2.00mm -PinHeader_2x37_P2.00mm_Vertical_SMD -surface-mounted straight pin header, 2x37, 2.00mm pitch, double rows -Surface mounted pin header SMD 2x37 2.00mm double row -0 -74 -74 -Connector_PinHeader_2.00mm -PinHeader_2x38_P2.00mm_Horizontal -Through hole angled pin header, 2x38, 2.00mm pitch, 4.2mm pin length, double rows -Through hole angled pin header THT 2x38 2.00mm double row -0 -76 -76 -Connector_PinHeader_2.00mm -PinHeader_2x38_P2.00mm_Vertical -Through hole straight pin header, 2x38, 2.00mm pitch, double rows -Through hole pin header THT 2x38 2.00mm double row -0 -76 -76 -Connector_PinHeader_2.00mm -PinHeader_2x38_P2.00mm_Vertical_SMD -surface-mounted straight pin header, 2x38, 2.00mm pitch, double rows -Surface mounted pin header SMD 2x38 2.00mm double row -0 -76 -76 -Connector_PinHeader_2.00mm -PinHeader_2x39_P2.00mm_Horizontal -Through hole angled pin header, 2x39, 2.00mm pitch, 4.2mm pin length, double rows -Through hole angled pin header THT 2x39 2.00mm double row -0 -78 -78 -Connector_PinHeader_2.00mm -PinHeader_2x39_P2.00mm_Vertical -Through hole straight pin header, 2x39, 2.00mm pitch, double rows -Through hole pin header THT 2x39 2.00mm double row -0 -78 -78 -Connector_PinHeader_2.00mm -PinHeader_2x39_P2.00mm_Vertical_SMD -surface-mounted straight pin header, 2x39, 2.00mm pitch, double rows -Surface mounted pin header SMD 2x39 2.00mm double row -0 -78 -78 -Connector_PinHeader_2.00mm -PinHeader_2x40_P2.00mm_Horizontal -Through hole angled pin header, 2x40, 2.00mm pitch, 4.2mm pin length, double rows -Through hole angled pin header THT 2x40 2.00mm double row -0 -80 -80 -Connector_PinHeader_2.00mm -PinHeader_2x40_P2.00mm_Vertical -Through hole straight pin header, 2x40, 2.00mm pitch, double rows -Through hole pin header THT 2x40 2.00mm double row -0 -80 -80 -Connector_PinHeader_2.00mm -PinHeader_2x40_P2.00mm_Vertical_SMD -surface-mounted straight pin header, 2x40, 2.00mm pitch, double rows -Surface mounted pin header SMD 2x40 2.00mm double row -0 -80 -80 -Connector_PinHeader_2.54mm -PinHeader_1x01_P2.54mm_Horizontal -Through hole angled pin header, 1x01, 2.54mm pitch, 6mm pin length, single row -Through hole angled pin header THT 1x01 2.54mm single row -0 -1 -1 -Connector_PinHeader_2.54mm -PinHeader_1x01_P2.54mm_Vertical -Through hole straight pin header, 1x01, 2.54mm pitch, single row -Through hole pin header THT 1x01 2.54mm single row -0 -1 -1 -Connector_PinHeader_2.54mm -PinHeader_1x02_P2.54mm_Horizontal -Through hole angled pin header, 1x02, 2.54mm pitch, 6mm pin length, single row -Through hole angled pin header THT 1x02 2.54mm single row -0 -2 -2 -Connector_PinHeader_2.54mm -PinHeader_1x02_P2.54mm_Vertical -Through hole straight pin header, 1x02, 2.54mm pitch, single row -Through hole pin header THT 1x02 2.54mm single row -0 -2 -2 -Connector_PinHeader_2.54mm -PinHeader_1x02_P2.54mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x02, 2.54mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x02 2.54mm single row style1 pin1 left -0 -2 -2 -Connector_PinHeader_2.54mm -PinHeader_1x02_P2.54mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x02, 2.54mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x02 2.54mm single row style2 pin1 right -0 -2 -2 -Connector_PinHeader_2.54mm -PinHeader_1x03_P2.54mm_Horizontal -Through hole angled pin header, 1x03, 2.54mm pitch, 6mm pin length, single row -Through hole angled pin header THT 1x03 2.54mm single row -0 -3 -3 -Connector_PinHeader_2.54mm -PinHeader_1x03_P2.54mm_Vertical -Through hole straight pin header, 1x03, 2.54mm pitch, single row -Through hole pin header THT 1x03 2.54mm single row -0 -3 -3 -Connector_PinHeader_2.54mm -PinHeader_1x03_P2.54mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x03, 2.54mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x03 2.54mm single row style1 pin1 left -0 -3 -3 -Connector_PinHeader_2.54mm -PinHeader_1x03_P2.54mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x03, 2.54mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x03 2.54mm single row style2 pin1 right -0 -3 -3 -Connector_PinHeader_2.54mm -PinHeader_1x04_P2.54mm_Horizontal -Through hole angled pin header, 1x04, 2.54mm pitch, 6mm pin length, single row -Through hole angled pin header THT 1x04 2.54mm single row -0 -4 -4 -Connector_PinHeader_2.54mm -PinHeader_1x04_P2.54mm_Vertical -Through hole straight pin header, 1x04, 2.54mm pitch, single row -Through hole pin header THT 1x04 2.54mm single row -0 -4 -4 -Connector_PinHeader_2.54mm -PinHeader_1x04_P2.54mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x04, 2.54mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x04 2.54mm single row style1 pin1 left -0 -4 -4 -Connector_PinHeader_2.54mm -PinHeader_1x04_P2.54mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x04, 2.54mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x04 2.54mm single row style2 pin1 right -0 -4 -4 -Connector_PinHeader_2.54mm -PinHeader_1x05_P2.54mm_Horizontal -Through hole angled pin header, 1x05, 2.54mm pitch, 6mm pin length, single row -Through hole angled pin header THT 1x05 2.54mm single row -0 -5 -5 -Connector_PinHeader_2.54mm -PinHeader_1x05_P2.54mm_Vertical -Through hole straight pin header, 1x05, 2.54mm pitch, single row -Through hole pin header THT 1x05 2.54mm single row -0 -5 -5 -Connector_PinHeader_2.54mm -PinHeader_1x05_P2.54mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x05, 2.54mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x05 2.54mm single row style1 pin1 left -0 -5 -5 -Connector_PinHeader_2.54mm -PinHeader_1x05_P2.54mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x05, 2.54mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x05 2.54mm single row style2 pin1 right -0 -5 -5 -Connector_PinHeader_2.54mm -PinHeader_1x06_P2.54mm_Horizontal -Through hole angled pin header, 1x06, 2.54mm pitch, 6mm pin length, single row -Through hole angled pin header THT 1x06 2.54mm single row -0 -6 -6 -Connector_PinHeader_2.54mm -PinHeader_1x06_P2.54mm_Vertical -Through hole straight pin header, 1x06, 2.54mm pitch, single row -Through hole pin header THT 1x06 2.54mm single row -0 -6 -6 -Connector_PinHeader_2.54mm -PinHeader_1x06_P2.54mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x06, 2.54mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x06 2.54mm single row style1 pin1 left -0 -6 -6 -Connector_PinHeader_2.54mm -PinHeader_1x06_P2.54mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x06, 2.54mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x06 2.54mm single row style2 pin1 right -0 -6 -6 -Connector_PinHeader_2.54mm -PinHeader_1x07_P2.54mm_Horizontal -Through hole angled pin header, 1x07, 2.54mm pitch, 6mm pin length, single row -Through hole angled pin header THT 1x07 2.54mm single row -0 -7 -7 -Connector_PinHeader_2.54mm -PinHeader_1x07_P2.54mm_Vertical -Through hole straight pin header, 1x07, 2.54mm pitch, single row -Through hole pin header THT 1x07 2.54mm single row -0 -7 -7 -Connector_PinHeader_2.54mm -PinHeader_1x07_P2.54mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x07, 2.54mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x07 2.54mm single row style1 pin1 left -0 -7 -7 -Connector_PinHeader_2.54mm -PinHeader_1x07_P2.54mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x07, 2.54mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x07 2.54mm single row style2 pin1 right -0 -7 -7 -Connector_PinHeader_2.54mm -PinHeader_1x08_P2.54mm_Horizontal -Through hole angled pin header, 1x08, 2.54mm pitch, 6mm pin length, single row -Through hole angled pin header THT 1x08 2.54mm single row -0 -8 -8 -Connector_PinHeader_2.54mm -PinHeader_1x08_P2.54mm_Vertical -Through hole straight pin header, 1x08, 2.54mm pitch, single row -Through hole pin header THT 1x08 2.54mm single row -0 -8 -8 -Connector_PinHeader_2.54mm -PinHeader_1x08_P2.54mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x08, 2.54mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x08 2.54mm single row style1 pin1 left -0 -8 -8 -Connector_PinHeader_2.54mm -PinHeader_1x08_P2.54mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x08, 2.54mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x08 2.54mm single row style2 pin1 right -0 -8 -8 -Connector_PinHeader_2.54mm -PinHeader_1x09_P2.54mm_Horizontal -Through hole angled pin header, 1x09, 2.54mm pitch, 6mm pin length, single row -Through hole angled pin header THT 1x09 2.54mm single row -0 -9 -9 -Connector_PinHeader_2.54mm -PinHeader_1x09_P2.54mm_Vertical -Through hole straight pin header, 1x09, 2.54mm pitch, single row -Through hole pin header THT 1x09 2.54mm single row -0 -9 -9 -Connector_PinHeader_2.54mm -PinHeader_1x09_P2.54mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x09, 2.54mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x09 2.54mm single row style1 pin1 left -0 -9 -9 -Connector_PinHeader_2.54mm -PinHeader_1x09_P2.54mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x09, 2.54mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x09 2.54mm single row style2 pin1 right -0 -9 -9 -Connector_PinHeader_2.54mm -PinHeader_1x10_P2.54mm_Horizontal -Through hole angled pin header, 1x10, 2.54mm pitch, 6mm pin length, single row -Through hole angled pin header THT 1x10 2.54mm single row -0 -10 -10 -Connector_PinHeader_2.54mm -PinHeader_1x10_P2.54mm_Vertical -Through hole straight pin header, 1x10, 2.54mm pitch, single row -Through hole pin header THT 1x10 2.54mm single row -0 -10 -10 -Connector_PinHeader_2.54mm -PinHeader_1x10_P2.54mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x10, 2.54mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x10 2.54mm single row style1 pin1 left -0 -10 -10 -Connector_PinHeader_2.54mm -PinHeader_1x10_P2.54mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x10, 2.54mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x10 2.54mm single row style2 pin1 right -0 -10 -10 -Connector_PinHeader_2.54mm -PinHeader_1x11_P2.54mm_Horizontal -Through hole angled pin header, 1x11, 2.54mm pitch, 6mm pin length, single row -Through hole angled pin header THT 1x11 2.54mm single row -0 -11 -11 -Connector_PinHeader_2.54mm -PinHeader_1x11_P2.54mm_Vertical -Through hole straight pin header, 1x11, 2.54mm pitch, single row -Through hole pin header THT 1x11 2.54mm single row -0 -11 -11 -Connector_PinHeader_2.54mm -PinHeader_1x11_P2.54mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x11, 2.54mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x11 2.54mm single row style1 pin1 left -0 -11 -11 -Connector_PinHeader_2.54mm -PinHeader_1x11_P2.54mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x11, 2.54mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x11 2.54mm single row style2 pin1 right -0 -11 -11 -Connector_PinHeader_2.54mm -PinHeader_1x12_P2.54mm_Horizontal -Through hole angled pin header, 1x12, 2.54mm pitch, 6mm pin length, single row -Through hole angled pin header THT 1x12 2.54mm single row -0 -12 -12 -Connector_PinHeader_2.54mm -PinHeader_1x12_P2.54mm_Vertical -Through hole straight pin header, 1x12, 2.54mm pitch, single row -Through hole pin header THT 1x12 2.54mm single row -0 -12 -12 -Connector_PinHeader_2.54mm -PinHeader_1x12_P2.54mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x12, 2.54mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x12 2.54mm single row style1 pin1 left -0 -12 -12 -Connector_PinHeader_2.54mm -PinHeader_1x12_P2.54mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x12, 2.54mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x12 2.54mm single row style2 pin1 right -0 -12 -12 -Connector_PinHeader_2.54mm -PinHeader_1x13_P2.54mm_Horizontal -Through hole angled pin header, 1x13, 2.54mm pitch, 6mm pin length, single row -Through hole angled pin header THT 1x13 2.54mm single row -0 -13 -13 -Connector_PinHeader_2.54mm -PinHeader_1x13_P2.54mm_Vertical -Through hole straight pin header, 1x13, 2.54mm pitch, single row -Through hole pin header THT 1x13 2.54mm single row -0 -13 -13 -Connector_PinHeader_2.54mm -PinHeader_1x13_P2.54mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x13, 2.54mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x13 2.54mm single row style1 pin1 left -0 -13 -13 -Connector_PinHeader_2.54mm -PinHeader_1x13_P2.54mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x13, 2.54mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x13 2.54mm single row style2 pin1 right -0 -13 -13 -Connector_PinHeader_2.54mm -PinHeader_1x14_P2.54mm_Horizontal -Through hole angled pin header, 1x14, 2.54mm pitch, 6mm pin length, single row -Through hole angled pin header THT 1x14 2.54mm single row -0 -14 -14 -Connector_PinHeader_2.54mm -PinHeader_1x14_P2.54mm_Vertical -Through hole straight pin header, 1x14, 2.54mm pitch, single row -Through hole pin header THT 1x14 2.54mm single row -0 -14 -14 -Connector_PinHeader_2.54mm -PinHeader_1x14_P2.54mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x14, 2.54mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x14 2.54mm single row style1 pin1 left -0 -14 -14 -Connector_PinHeader_2.54mm -PinHeader_1x14_P2.54mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x14, 2.54mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x14 2.54mm single row style2 pin1 right -0 -14 -14 -Connector_PinHeader_2.54mm -PinHeader_1x15_P2.54mm_Horizontal -Through hole angled pin header, 1x15, 2.54mm pitch, 6mm pin length, single row -Through hole angled pin header THT 1x15 2.54mm single row -0 -15 -15 -Connector_PinHeader_2.54mm -PinHeader_1x15_P2.54mm_Vertical -Through hole straight pin header, 1x15, 2.54mm pitch, single row -Through hole pin header THT 1x15 2.54mm single row -0 -15 -15 -Connector_PinHeader_2.54mm -PinHeader_1x15_P2.54mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x15, 2.54mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x15 2.54mm single row style1 pin1 left -0 -15 -15 -Connector_PinHeader_2.54mm -PinHeader_1x15_P2.54mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x15, 2.54mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x15 2.54mm single row style2 pin1 right -0 -15 -15 -Connector_PinHeader_2.54mm -PinHeader_1x16_P2.54mm_Horizontal -Through hole angled pin header, 1x16, 2.54mm pitch, 6mm pin length, single row -Through hole angled pin header THT 1x16 2.54mm single row -0 -16 -16 -Connector_PinHeader_2.54mm -PinHeader_1x16_P2.54mm_Vertical -Through hole straight pin header, 1x16, 2.54mm pitch, single row -Through hole pin header THT 1x16 2.54mm single row -0 -16 -16 -Connector_PinHeader_2.54mm -PinHeader_1x16_P2.54mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x16, 2.54mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x16 2.54mm single row style1 pin1 left -0 -16 -16 -Connector_PinHeader_2.54mm -PinHeader_1x16_P2.54mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x16, 2.54mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x16 2.54mm single row style2 pin1 right -0 -16 -16 -Connector_PinHeader_2.54mm -PinHeader_1x17_P2.54mm_Horizontal -Through hole angled pin header, 1x17, 2.54mm pitch, 6mm pin length, single row -Through hole angled pin header THT 1x17 2.54mm single row -0 -17 -17 -Connector_PinHeader_2.54mm -PinHeader_1x17_P2.54mm_Vertical -Through hole straight pin header, 1x17, 2.54mm pitch, single row -Through hole pin header THT 1x17 2.54mm single row -0 -17 -17 -Connector_PinHeader_2.54mm -PinHeader_1x17_P2.54mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x17, 2.54mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x17 2.54mm single row style1 pin1 left -0 -17 -17 -Connector_PinHeader_2.54mm -PinHeader_1x17_P2.54mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x17, 2.54mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x17 2.54mm single row style2 pin1 right -0 -17 -17 -Connector_PinHeader_2.54mm -PinHeader_1x18_P2.54mm_Horizontal -Through hole angled pin header, 1x18, 2.54mm pitch, 6mm pin length, single row -Through hole angled pin header THT 1x18 2.54mm single row -0 -18 -18 -Connector_PinHeader_2.54mm -PinHeader_1x18_P2.54mm_Vertical -Through hole straight pin header, 1x18, 2.54mm pitch, single row -Through hole pin header THT 1x18 2.54mm single row -0 -18 -18 -Connector_PinHeader_2.54mm -PinHeader_1x18_P2.54mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x18, 2.54mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x18 2.54mm single row style1 pin1 left -0 -18 -18 -Connector_PinHeader_2.54mm -PinHeader_1x18_P2.54mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x18, 2.54mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x18 2.54mm single row style2 pin1 right -0 -18 -18 -Connector_PinHeader_2.54mm -PinHeader_1x19_P2.54mm_Horizontal -Through hole angled pin header, 1x19, 2.54mm pitch, 6mm pin length, single row -Through hole angled pin header THT 1x19 2.54mm single row -0 -19 -19 -Connector_PinHeader_2.54mm -PinHeader_1x19_P2.54mm_Vertical -Through hole straight pin header, 1x19, 2.54mm pitch, single row -Through hole pin header THT 1x19 2.54mm single row -0 -19 -19 -Connector_PinHeader_2.54mm -PinHeader_1x19_P2.54mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x19, 2.54mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x19 2.54mm single row style1 pin1 left -0 -19 -19 -Connector_PinHeader_2.54mm -PinHeader_1x19_P2.54mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x19, 2.54mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x19 2.54mm single row style2 pin1 right -0 -19 -19 -Connector_PinHeader_2.54mm -PinHeader_1x20_P2.54mm_Horizontal -Through hole angled pin header, 1x20, 2.54mm pitch, 6mm pin length, single row -Through hole angled pin header THT 1x20 2.54mm single row -0 -20 -20 -Connector_PinHeader_2.54mm -PinHeader_1x20_P2.54mm_Vertical -Through hole straight pin header, 1x20, 2.54mm pitch, single row -Through hole pin header THT 1x20 2.54mm single row -0 -20 -20 -Connector_PinHeader_2.54mm -PinHeader_1x20_P2.54mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x20, 2.54mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x20 2.54mm single row style1 pin1 left -0 -20 -20 -Connector_PinHeader_2.54mm -PinHeader_1x20_P2.54mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x20, 2.54mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x20 2.54mm single row style2 pin1 right -0 -20 -20 -Connector_PinHeader_2.54mm -PinHeader_1x21_P2.54mm_Horizontal -Through hole angled pin header, 1x21, 2.54mm pitch, 6mm pin length, single row -Through hole angled pin header THT 1x21 2.54mm single row -0 -21 -21 -Connector_PinHeader_2.54mm -PinHeader_1x21_P2.54mm_Vertical -Through hole straight pin header, 1x21, 2.54mm pitch, single row -Through hole pin header THT 1x21 2.54mm single row -0 -21 -21 -Connector_PinHeader_2.54mm -PinHeader_1x21_P2.54mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x21, 2.54mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x21 2.54mm single row style1 pin1 left -0 -21 -21 -Connector_PinHeader_2.54mm -PinHeader_1x21_P2.54mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x21, 2.54mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x21 2.54mm single row style2 pin1 right -0 -21 -21 -Connector_PinHeader_2.54mm -PinHeader_1x22_P2.54mm_Horizontal -Through hole angled pin header, 1x22, 2.54mm pitch, 6mm pin length, single row -Through hole angled pin header THT 1x22 2.54mm single row -0 -22 -22 -Connector_PinHeader_2.54mm -PinHeader_1x22_P2.54mm_Vertical -Through hole straight pin header, 1x22, 2.54mm pitch, single row -Through hole pin header THT 1x22 2.54mm single row -0 -22 -22 -Connector_PinHeader_2.54mm -PinHeader_1x22_P2.54mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x22, 2.54mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x22 2.54mm single row style1 pin1 left -0 -22 -22 -Connector_PinHeader_2.54mm -PinHeader_1x22_P2.54mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x22, 2.54mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x22 2.54mm single row style2 pin1 right -0 -22 -22 -Connector_PinHeader_2.54mm -PinHeader_1x23_P2.54mm_Horizontal -Through hole angled pin header, 1x23, 2.54mm pitch, 6mm pin length, single row -Through hole angled pin header THT 1x23 2.54mm single row -0 -23 -23 -Connector_PinHeader_2.54mm -PinHeader_1x23_P2.54mm_Vertical -Through hole straight pin header, 1x23, 2.54mm pitch, single row -Through hole pin header THT 1x23 2.54mm single row -0 -23 -23 -Connector_PinHeader_2.54mm -PinHeader_1x23_P2.54mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x23, 2.54mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x23 2.54mm single row style1 pin1 left -0 -23 -23 -Connector_PinHeader_2.54mm -PinHeader_1x23_P2.54mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x23, 2.54mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x23 2.54mm single row style2 pin1 right -0 -23 -23 -Connector_PinHeader_2.54mm -PinHeader_1x24_P2.54mm_Horizontal -Through hole angled pin header, 1x24, 2.54mm pitch, 6mm pin length, single row -Through hole angled pin header THT 1x24 2.54mm single row -0 -24 -24 -Connector_PinHeader_2.54mm -PinHeader_1x24_P2.54mm_Vertical -Through hole straight pin header, 1x24, 2.54mm pitch, single row -Through hole pin header THT 1x24 2.54mm single row -0 -24 -24 -Connector_PinHeader_2.54mm -PinHeader_1x24_P2.54mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x24, 2.54mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x24 2.54mm single row style1 pin1 left -0 -24 -24 -Connector_PinHeader_2.54mm -PinHeader_1x24_P2.54mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x24, 2.54mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x24 2.54mm single row style2 pin1 right -0 -24 -24 -Connector_PinHeader_2.54mm -PinHeader_1x25_P2.54mm_Horizontal -Through hole angled pin header, 1x25, 2.54mm pitch, 6mm pin length, single row -Through hole angled pin header THT 1x25 2.54mm single row -0 -25 -25 -Connector_PinHeader_2.54mm -PinHeader_1x25_P2.54mm_Vertical -Through hole straight pin header, 1x25, 2.54mm pitch, single row -Through hole pin header THT 1x25 2.54mm single row -0 -25 -25 -Connector_PinHeader_2.54mm -PinHeader_1x25_P2.54mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x25, 2.54mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x25 2.54mm single row style1 pin1 left -0 -25 -25 -Connector_PinHeader_2.54mm -PinHeader_1x25_P2.54mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x25, 2.54mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x25 2.54mm single row style2 pin1 right -0 -25 -25 -Connector_PinHeader_2.54mm -PinHeader_1x26_P2.54mm_Horizontal -Through hole angled pin header, 1x26, 2.54mm pitch, 6mm pin length, single row -Through hole angled pin header THT 1x26 2.54mm single row -0 -26 -26 -Connector_PinHeader_2.54mm -PinHeader_1x26_P2.54mm_Vertical -Through hole straight pin header, 1x26, 2.54mm pitch, single row -Through hole pin header THT 1x26 2.54mm single row -0 -26 -26 -Connector_PinHeader_2.54mm -PinHeader_1x26_P2.54mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x26, 2.54mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x26 2.54mm single row style1 pin1 left -0 -26 -26 -Connector_PinHeader_2.54mm -PinHeader_1x26_P2.54mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x26, 2.54mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x26 2.54mm single row style2 pin1 right -0 -26 -26 -Connector_PinHeader_2.54mm -PinHeader_1x27_P2.54mm_Horizontal -Through hole angled pin header, 1x27, 2.54mm pitch, 6mm pin length, single row -Through hole angled pin header THT 1x27 2.54mm single row -0 -27 -27 -Connector_PinHeader_2.54mm -PinHeader_1x27_P2.54mm_Vertical -Through hole straight pin header, 1x27, 2.54mm pitch, single row -Through hole pin header THT 1x27 2.54mm single row -0 -27 -27 -Connector_PinHeader_2.54mm -PinHeader_1x27_P2.54mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x27, 2.54mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x27 2.54mm single row style1 pin1 left -0 -27 -27 -Connector_PinHeader_2.54mm -PinHeader_1x27_P2.54mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x27, 2.54mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x27 2.54mm single row style2 pin1 right -0 -27 -27 -Connector_PinHeader_2.54mm -PinHeader_1x28_P2.54mm_Horizontal -Through hole angled pin header, 1x28, 2.54mm pitch, 6mm pin length, single row -Through hole angled pin header THT 1x28 2.54mm single row -0 -28 -28 -Connector_PinHeader_2.54mm -PinHeader_1x28_P2.54mm_Vertical -Through hole straight pin header, 1x28, 2.54mm pitch, single row -Through hole pin header THT 1x28 2.54mm single row -0 -28 -28 -Connector_PinHeader_2.54mm -PinHeader_1x28_P2.54mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x28, 2.54mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x28 2.54mm single row style1 pin1 left -0 -28 -28 -Connector_PinHeader_2.54mm -PinHeader_1x28_P2.54mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x28, 2.54mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x28 2.54mm single row style2 pin1 right -0 -28 -28 -Connector_PinHeader_2.54mm -PinHeader_1x29_P2.54mm_Horizontal -Through hole angled pin header, 1x29, 2.54mm pitch, 6mm pin length, single row -Through hole angled pin header THT 1x29 2.54mm single row -0 -29 -29 -Connector_PinHeader_2.54mm -PinHeader_1x29_P2.54mm_Vertical -Through hole straight pin header, 1x29, 2.54mm pitch, single row -Through hole pin header THT 1x29 2.54mm single row -0 -29 -29 -Connector_PinHeader_2.54mm -PinHeader_1x29_P2.54mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x29, 2.54mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x29 2.54mm single row style1 pin1 left -0 -29 -29 -Connector_PinHeader_2.54mm -PinHeader_1x29_P2.54mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x29, 2.54mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x29 2.54mm single row style2 pin1 right -0 -29 -29 -Connector_PinHeader_2.54mm -PinHeader_1x30_P2.54mm_Horizontal -Through hole angled pin header, 1x30, 2.54mm pitch, 6mm pin length, single row -Through hole angled pin header THT 1x30 2.54mm single row -0 -30 -30 -Connector_PinHeader_2.54mm -PinHeader_1x30_P2.54mm_Vertical -Through hole straight pin header, 1x30, 2.54mm pitch, single row -Through hole pin header THT 1x30 2.54mm single row -0 -30 -30 -Connector_PinHeader_2.54mm -PinHeader_1x30_P2.54mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x30, 2.54mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x30 2.54mm single row style1 pin1 left -0 -30 -30 -Connector_PinHeader_2.54mm -PinHeader_1x30_P2.54mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x30, 2.54mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x30 2.54mm single row style2 pin1 right -0 -30 -30 -Connector_PinHeader_2.54mm -PinHeader_1x31_P2.54mm_Horizontal -Through hole angled pin header, 1x31, 2.54mm pitch, 6mm pin length, single row -Through hole angled pin header THT 1x31 2.54mm single row -0 -31 -31 -Connector_PinHeader_2.54mm -PinHeader_1x31_P2.54mm_Vertical -Through hole straight pin header, 1x31, 2.54mm pitch, single row -Through hole pin header THT 1x31 2.54mm single row -0 -31 -31 -Connector_PinHeader_2.54mm -PinHeader_1x31_P2.54mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x31, 2.54mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x31 2.54mm single row style1 pin1 left -0 -31 -31 -Connector_PinHeader_2.54mm -PinHeader_1x31_P2.54mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x31, 2.54mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x31 2.54mm single row style2 pin1 right -0 -31 -31 -Connector_PinHeader_2.54mm -PinHeader_1x32_P2.54mm_Horizontal -Through hole angled pin header, 1x32, 2.54mm pitch, 6mm pin length, single row -Through hole angled pin header THT 1x32 2.54mm single row -0 -32 -32 -Connector_PinHeader_2.54mm -PinHeader_1x32_P2.54mm_Vertical -Through hole straight pin header, 1x32, 2.54mm pitch, single row -Through hole pin header THT 1x32 2.54mm single row -0 -32 -32 -Connector_PinHeader_2.54mm -PinHeader_1x32_P2.54mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x32, 2.54mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x32 2.54mm single row style1 pin1 left -0 -32 -32 -Connector_PinHeader_2.54mm -PinHeader_1x32_P2.54mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x32, 2.54mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x32 2.54mm single row style2 pin1 right -0 -32 -32 -Connector_PinHeader_2.54mm -PinHeader_1x33_P2.54mm_Horizontal -Through hole angled pin header, 1x33, 2.54mm pitch, 6mm pin length, single row -Through hole angled pin header THT 1x33 2.54mm single row -0 -33 -33 -Connector_PinHeader_2.54mm -PinHeader_1x33_P2.54mm_Vertical -Through hole straight pin header, 1x33, 2.54mm pitch, single row -Through hole pin header THT 1x33 2.54mm single row -0 -33 -33 -Connector_PinHeader_2.54mm -PinHeader_1x33_P2.54mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x33, 2.54mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x33 2.54mm single row style1 pin1 left -0 -33 -33 -Connector_PinHeader_2.54mm -PinHeader_1x33_P2.54mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x33, 2.54mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x33 2.54mm single row style2 pin1 right -0 -33 -33 -Connector_PinHeader_2.54mm -PinHeader_1x34_P2.54mm_Horizontal -Through hole angled pin header, 1x34, 2.54mm pitch, 6mm pin length, single row -Through hole angled pin header THT 1x34 2.54mm single row -0 -34 -34 -Connector_PinHeader_2.54mm -PinHeader_1x34_P2.54mm_Vertical -Through hole straight pin header, 1x34, 2.54mm pitch, single row -Through hole pin header THT 1x34 2.54mm single row -0 -34 -34 -Connector_PinHeader_2.54mm -PinHeader_1x34_P2.54mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x34, 2.54mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x34 2.54mm single row style1 pin1 left -0 -34 -34 -Connector_PinHeader_2.54mm -PinHeader_1x34_P2.54mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x34, 2.54mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x34 2.54mm single row style2 pin1 right -0 -34 -34 -Connector_PinHeader_2.54mm -PinHeader_1x35_P2.54mm_Horizontal -Through hole angled pin header, 1x35, 2.54mm pitch, 6mm pin length, single row -Through hole angled pin header THT 1x35 2.54mm single row -0 -35 -35 -Connector_PinHeader_2.54mm -PinHeader_1x35_P2.54mm_Vertical -Through hole straight pin header, 1x35, 2.54mm pitch, single row -Through hole pin header THT 1x35 2.54mm single row -0 -35 -35 -Connector_PinHeader_2.54mm -PinHeader_1x35_P2.54mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x35, 2.54mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x35 2.54mm single row style1 pin1 left -0 -35 -35 -Connector_PinHeader_2.54mm -PinHeader_1x35_P2.54mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x35, 2.54mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x35 2.54mm single row style2 pin1 right -0 -35 -35 -Connector_PinHeader_2.54mm -PinHeader_1x36_P2.54mm_Horizontal -Through hole angled pin header, 1x36, 2.54mm pitch, 6mm pin length, single row -Through hole angled pin header THT 1x36 2.54mm single row -0 -36 -36 -Connector_PinHeader_2.54mm -PinHeader_1x36_P2.54mm_Vertical -Through hole straight pin header, 1x36, 2.54mm pitch, single row -Through hole pin header THT 1x36 2.54mm single row -0 -36 -36 -Connector_PinHeader_2.54mm -PinHeader_1x36_P2.54mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x36, 2.54mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x36 2.54mm single row style1 pin1 left -0 -36 -36 -Connector_PinHeader_2.54mm -PinHeader_1x36_P2.54mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x36, 2.54mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x36 2.54mm single row style2 pin1 right -0 -36 -36 -Connector_PinHeader_2.54mm -PinHeader_1x37_P2.54mm_Horizontal -Through hole angled pin header, 1x37, 2.54mm pitch, 6mm pin length, single row -Through hole angled pin header THT 1x37 2.54mm single row -0 -37 -37 -Connector_PinHeader_2.54mm -PinHeader_1x37_P2.54mm_Vertical -Through hole straight pin header, 1x37, 2.54mm pitch, single row -Through hole pin header THT 1x37 2.54mm single row -0 -37 -37 -Connector_PinHeader_2.54mm -PinHeader_1x37_P2.54mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x37, 2.54mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x37 2.54mm single row style1 pin1 left -0 -37 -37 -Connector_PinHeader_2.54mm -PinHeader_1x37_P2.54mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x37, 2.54mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x37 2.54mm single row style2 pin1 right -0 -37 -37 -Connector_PinHeader_2.54mm -PinHeader_1x38_P2.54mm_Horizontal -Through hole angled pin header, 1x38, 2.54mm pitch, 6mm pin length, single row -Through hole angled pin header THT 1x38 2.54mm single row -0 -38 -38 -Connector_PinHeader_2.54mm -PinHeader_1x38_P2.54mm_Vertical -Through hole straight pin header, 1x38, 2.54mm pitch, single row -Through hole pin header THT 1x38 2.54mm single row -0 -38 -38 -Connector_PinHeader_2.54mm -PinHeader_1x38_P2.54mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x38, 2.54mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x38 2.54mm single row style1 pin1 left -0 -38 -38 -Connector_PinHeader_2.54mm -PinHeader_1x38_P2.54mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x38, 2.54mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x38 2.54mm single row style2 pin1 right -0 -38 -38 -Connector_PinHeader_2.54mm -PinHeader_1x39_P2.54mm_Horizontal -Through hole angled pin header, 1x39, 2.54mm pitch, 6mm pin length, single row -Through hole angled pin header THT 1x39 2.54mm single row -0 -39 -39 -Connector_PinHeader_2.54mm -PinHeader_1x39_P2.54mm_Vertical -Through hole straight pin header, 1x39, 2.54mm pitch, single row -Through hole pin header THT 1x39 2.54mm single row -0 -39 -39 -Connector_PinHeader_2.54mm -PinHeader_1x39_P2.54mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x39, 2.54mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x39 2.54mm single row style1 pin1 left -0 -39 -39 -Connector_PinHeader_2.54mm -PinHeader_1x39_P2.54mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x39, 2.54mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x39 2.54mm single row style2 pin1 right -0 -39 -39 -Connector_PinHeader_2.54mm -PinHeader_1x40_P2.54mm_Horizontal -Through hole angled pin header, 1x40, 2.54mm pitch, 6mm pin length, single row -Through hole angled pin header THT 1x40 2.54mm single row -0 -40 -40 -Connector_PinHeader_2.54mm -PinHeader_1x40_P2.54mm_Vertical -Through hole straight pin header, 1x40, 2.54mm pitch, single row -Through hole pin header THT 1x40 2.54mm single row -0 -40 -40 -Connector_PinHeader_2.54mm -PinHeader_1x40_P2.54mm_Vertical_SMD_Pin1Left -surface-mounted straight pin header, 1x40, 2.54mm pitch, single row, style 1 (pin 1 left) -Surface mounted pin header SMD 1x40 2.54mm single row style1 pin1 left -0 -40 -40 -Connector_PinHeader_2.54mm -PinHeader_1x40_P2.54mm_Vertical_SMD_Pin1Right -surface-mounted straight pin header, 1x40, 2.54mm pitch, single row, style 2 (pin 1 right) -Surface mounted pin header SMD 1x40 2.54mm single row style2 pin1 right -0 -40 -40 -Connector_PinHeader_2.54mm -PinHeader_2x01_P2.54mm_Horizontal -Through hole angled pin header, 2x01, 2.54mm pitch, 6mm pin length, double rows -Through hole angled pin header THT 2x01 2.54mm double row -0 -2 -2 -Connector_PinHeader_2.54mm -PinHeader_2x01_P2.54mm_Vertical -Through hole straight pin header, 2x01, 2.54mm pitch, double rows -Through hole pin header THT 2x01 2.54mm double row -0 -2 -2 -Connector_PinHeader_2.54mm -PinHeader_2x01_P2.54mm_Vertical_SMD -surface-mounted straight pin header, 2x01, 2.54mm pitch, double rows -Surface mounted pin header SMD 2x01 2.54mm double row -0 -2 -2 -Connector_PinHeader_2.54mm -PinHeader_2x02_P2.54mm_Horizontal -Through hole angled pin header, 2x02, 2.54mm pitch, 6mm pin length, double rows -Through hole angled pin header THT 2x02 2.54mm double row -0 -4 -4 -Connector_PinHeader_2.54mm -PinHeader_2x02_P2.54mm_Vertical -Through hole straight pin header, 2x02, 2.54mm pitch, double rows -Through hole pin header THT 2x02 2.54mm double row -0 -4 -4 -Connector_PinHeader_2.54mm -PinHeader_2x02_P2.54mm_Vertical_SMD -surface-mounted straight pin header, 2x02, 2.54mm pitch, double rows -Surface mounted pin header SMD 2x02 2.54mm double row -0 -4 -4 -Connector_PinHeader_2.54mm -PinHeader_2x03_P2.54mm_Horizontal -Through hole angled pin header, 2x03, 2.54mm pitch, 6mm pin length, double rows -Through hole angled pin header THT 2x03 2.54mm double row -0 -6 -6 -Connector_PinHeader_2.54mm -PinHeader_2x03_P2.54mm_Vertical -Through hole straight pin header, 2x03, 2.54mm pitch, double rows -Through hole pin header THT 2x03 2.54mm double row -0 -6 -6 -Connector_PinHeader_2.54mm -PinHeader_2x03_P2.54mm_Vertical_SMD -surface-mounted straight pin header, 2x03, 2.54mm pitch, double rows -Surface mounted pin header SMD 2x03 2.54mm double row -0 -6 -6 -Connector_PinHeader_2.54mm -PinHeader_2x04_P2.54mm_Horizontal -Through hole angled pin header, 2x04, 2.54mm pitch, 6mm pin length, double rows -Through hole angled pin header THT 2x04 2.54mm double row -0 -8 -8 -Connector_PinHeader_2.54mm -PinHeader_2x04_P2.54mm_Vertical -Through hole straight pin header, 2x04, 2.54mm pitch, double rows -Through hole pin header THT 2x04 2.54mm double row -0 -8 -8 -Connector_PinHeader_2.54mm -PinHeader_2x04_P2.54mm_Vertical_SMD -surface-mounted straight pin header, 2x04, 2.54mm pitch, double rows -Surface mounted pin header SMD 2x04 2.54mm double row -0 -8 -8 -Connector_PinHeader_2.54mm -PinHeader_2x05_P2.54mm_Horizontal -Through hole angled pin header, 2x05, 2.54mm pitch, 6mm pin length, double rows -Through hole angled pin header THT 2x05 2.54mm double row -0 -10 -10 -Connector_PinHeader_2.54mm -PinHeader_2x05_P2.54mm_Vertical -Through hole straight pin header, 2x05, 2.54mm pitch, double rows -Through hole pin header THT 2x05 2.54mm double row -0 -10 -10 -Connector_PinHeader_2.54mm -PinHeader_2x05_P2.54mm_Vertical_SMD -surface-mounted straight pin header, 2x05, 2.54mm pitch, double rows -Surface mounted pin header SMD 2x05 2.54mm double row -0 -10 -10 -Connector_PinHeader_2.54mm -PinHeader_2x06_P2.54mm_Horizontal -Through hole angled pin header, 2x06, 2.54mm pitch, 6mm pin length, double rows -Through hole angled pin header THT 2x06 2.54mm double row -0 -12 -12 -Connector_PinHeader_2.54mm -PinHeader_2x06_P2.54mm_Vertical -Through hole straight pin header, 2x06, 2.54mm pitch, double rows -Through hole pin header THT 2x06 2.54mm double row -0 -12 -12 -Connector_PinHeader_2.54mm -PinHeader_2x06_P2.54mm_Vertical_SMD -surface-mounted straight pin header, 2x06, 2.54mm pitch, double rows -Surface mounted pin header SMD 2x06 2.54mm double row -0 -12 -12 -Connector_PinHeader_2.54mm -PinHeader_2x07_P2.54mm_Horizontal -Through hole angled pin header, 2x07, 2.54mm pitch, 6mm pin length, double rows -Through hole angled pin header THT 2x07 2.54mm double row -0 -14 -14 -Connector_PinHeader_2.54mm -PinHeader_2x07_P2.54mm_Vertical -Through hole straight pin header, 2x07, 2.54mm pitch, double rows -Through hole pin header THT 2x07 2.54mm double row -0 -14 -14 -Connector_PinHeader_2.54mm -PinHeader_2x07_P2.54mm_Vertical_SMD -surface-mounted straight pin header, 2x07, 2.54mm pitch, double rows -Surface mounted pin header SMD 2x07 2.54mm double row -0 -14 -14 -Connector_PinHeader_2.54mm -PinHeader_2x08_P2.54mm_Horizontal -Through hole angled pin header, 2x08, 2.54mm pitch, 6mm pin length, double rows -Through hole angled pin header THT 2x08 2.54mm double row -0 -16 -16 -Connector_PinHeader_2.54mm -PinHeader_2x08_P2.54mm_Vertical -Through hole straight pin header, 2x08, 2.54mm pitch, double rows -Through hole pin header THT 2x08 2.54mm double row -0 -16 -16 -Connector_PinHeader_2.54mm -PinHeader_2x08_P2.54mm_Vertical_SMD -surface-mounted straight pin header, 2x08, 2.54mm pitch, double rows -Surface mounted pin header SMD 2x08 2.54mm double row -0 -16 -16 -Connector_PinHeader_2.54mm -PinHeader_2x09_P2.54mm_Horizontal -Through hole angled pin header, 2x09, 2.54mm pitch, 6mm pin length, double rows -Through hole angled pin header THT 2x09 2.54mm double row -0 -18 -18 -Connector_PinHeader_2.54mm -PinHeader_2x09_P2.54mm_Vertical -Through hole straight pin header, 2x09, 2.54mm pitch, double rows -Through hole pin header THT 2x09 2.54mm double row -0 -18 -18 -Connector_PinHeader_2.54mm -PinHeader_2x09_P2.54mm_Vertical_SMD -surface-mounted straight pin header, 2x09, 2.54mm pitch, double rows -Surface mounted pin header SMD 2x09 2.54mm double row -0 -18 -18 -Connector_PinHeader_2.54mm -PinHeader_2x10_P2.54mm_Horizontal -Through hole angled pin header, 2x10, 2.54mm pitch, 6mm pin length, double rows -Through hole angled pin header THT 2x10 2.54mm double row -0 -20 -20 -Connector_PinHeader_2.54mm -PinHeader_2x10_P2.54mm_Vertical -Through hole straight pin header, 2x10, 2.54mm pitch, double rows -Through hole pin header THT 2x10 2.54mm double row -0 -20 -20 -Connector_PinHeader_2.54mm -PinHeader_2x10_P2.54mm_Vertical_SMD -surface-mounted straight pin header, 2x10, 2.54mm pitch, double rows -Surface mounted pin header SMD 2x10 2.54mm double row -0 -20 -20 -Connector_PinHeader_2.54mm -PinHeader_2x11_P2.54mm_Horizontal -Through hole angled pin header, 2x11, 2.54mm pitch, 6mm pin length, double rows -Through hole angled pin header THT 2x11 2.54mm double row -0 -22 -22 -Connector_PinHeader_2.54mm -PinHeader_2x11_P2.54mm_Vertical -Through hole straight pin header, 2x11, 2.54mm pitch, double rows -Through hole pin header THT 2x11 2.54mm double row -0 -22 -22 -Connector_PinHeader_2.54mm -PinHeader_2x11_P2.54mm_Vertical_SMD -surface-mounted straight pin header, 2x11, 2.54mm pitch, double rows -Surface mounted pin header SMD 2x11 2.54mm double row -0 -22 -22 -Connector_PinHeader_2.54mm -PinHeader_2x12_P2.54mm_Horizontal -Through hole angled pin header, 2x12, 2.54mm pitch, 6mm pin length, double rows -Through hole angled pin header THT 2x12 2.54mm double row -0 -24 -24 -Connector_PinHeader_2.54mm -PinHeader_2x12_P2.54mm_Vertical -Through hole straight pin header, 2x12, 2.54mm pitch, double rows -Through hole pin header THT 2x12 2.54mm double row -0 -24 -24 -Connector_PinHeader_2.54mm -PinHeader_2x12_P2.54mm_Vertical_SMD -surface-mounted straight pin header, 2x12, 2.54mm pitch, double rows -Surface mounted pin header SMD 2x12 2.54mm double row -0 -24 -24 -Connector_PinHeader_2.54mm -PinHeader_2x13_P2.54mm_Horizontal -Through hole angled pin header, 2x13, 2.54mm pitch, 6mm pin length, double rows -Through hole angled pin header THT 2x13 2.54mm double row -0 -26 -26 -Connector_PinHeader_2.54mm -PinHeader_2x13_P2.54mm_Vertical -Through hole straight pin header, 2x13, 2.54mm pitch, double rows -Through hole pin header THT 2x13 2.54mm double row -0 -26 -26 -Connector_PinHeader_2.54mm -PinHeader_2x13_P2.54mm_Vertical_SMD -surface-mounted straight pin header, 2x13, 2.54mm pitch, double rows -Surface mounted pin header SMD 2x13 2.54mm double row -0 -26 -26 -Connector_PinHeader_2.54mm -PinHeader_2x14_P2.54mm_Horizontal -Through hole angled pin header, 2x14, 2.54mm pitch, 6mm pin length, double rows -Through hole angled pin header THT 2x14 2.54mm double row -0 -28 -28 -Connector_PinHeader_2.54mm -PinHeader_2x14_P2.54mm_Vertical -Through hole straight pin header, 2x14, 2.54mm pitch, double rows -Through hole pin header THT 2x14 2.54mm double row -0 -28 -28 -Connector_PinHeader_2.54mm -PinHeader_2x14_P2.54mm_Vertical_SMD -surface-mounted straight pin header, 2x14, 2.54mm pitch, double rows -Surface mounted pin header SMD 2x14 2.54mm double row -0 -28 -28 -Connector_PinHeader_2.54mm -PinHeader_2x15_P2.54mm_Horizontal -Through hole angled pin header, 2x15, 2.54mm pitch, 6mm pin length, double rows -Through hole angled pin header THT 2x15 2.54mm double row -0 -30 -30 -Connector_PinHeader_2.54mm -PinHeader_2x15_P2.54mm_Vertical -Through hole straight pin header, 2x15, 2.54mm pitch, double rows -Through hole pin header THT 2x15 2.54mm double row -0 -30 -30 -Connector_PinHeader_2.54mm -PinHeader_2x15_P2.54mm_Vertical_SMD -surface-mounted straight pin header, 2x15, 2.54mm pitch, double rows -Surface mounted pin header SMD 2x15 2.54mm double row -0 -30 -30 -Connector_PinHeader_2.54mm -PinHeader_2x16_P2.54mm_Horizontal -Through hole angled pin header, 2x16, 2.54mm pitch, 6mm pin length, double rows -Through hole angled pin header THT 2x16 2.54mm double row -0 -32 -32 -Connector_PinHeader_2.54mm -PinHeader_2x16_P2.54mm_Vertical -Through hole straight pin header, 2x16, 2.54mm pitch, double rows -Through hole pin header THT 2x16 2.54mm double row -0 -32 -32 -Connector_PinHeader_2.54mm -PinHeader_2x16_P2.54mm_Vertical_SMD -surface-mounted straight pin header, 2x16, 2.54mm pitch, double rows -Surface mounted pin header SMD 2x16 2.54mm double row -0 -32 -32 -Connector_PinHeader_2.54mm -PinHeader_2x17_P2.54mm_Horizontal -Through hole angled pin header, 2x17, 2.54mm pitch, 6mm pin length, double rows -Through hole angled pin header THT 2x17 2.54mm double row -0 -34 -34 -Connector_PinHeader_2.54mm -PinHeader_2x17_P2.54mm_Vertical -Through hole straight pin header, 2x17, 2.54mm pitch, double rows -Through hole pin header THT 2x17 2.54mm double row -0 -34 -34 -Connector_PinHeader_2.54mm -PinHeader_2x17_P2.54mm_Vertical_SMD -surface-mounted straight pin header, 2x17, 2.54mm pitch, double rows -Surface mounted pin header SMD 2x17 2.54mm double row -0 -34 -34 -Connector_PinHeader_2.54mm -PinHeader_2x18_P2.54mm_Horizontal -Through hole angled pin header, 2x18, 2.54mm pitch, 6mm pin length, double rows -Through hole angled pin header THT 2x18 2.54mm double row -0 -36 -36 -Connector_PinHeader_2.54mm -PinHeader_2x18_P2.54mm_Vertical -Through hole straight pin header, 2x18, 2.54mm pitch, double rows -Through hole pin header THT 2x18 2.54mm double row -0 -36 -36 -Connector_PinHeader_2.54mm -PinHeader_2x18_P2.54mm_Vertical_SMD -surface-mounted straight pin header, 2x18, 2.54mm pitch, double rows -Surface mounted pin header SMD 2x18 2.54mm double row -0 -36 -36 -Connector_PinHeader_2.54mm -PinHeader_2x19_P2.54mm_Horizontal -Through hole angled pin header, 2x19, 2.54mm pitch, 6mm pin length, double rows -Through hole angled pin header THT 2x19 2.54mm double row -0 -38 -38 -Connector_PinHeader_2.54mm -PinHeader_2x19_P2.54mm_Vertical -Through hole straight pin header, 2x19, 2.54mm pitch, double rows -Through hole pin header THT 2x19 2.54mm double row -0 -38 -38 -Connector_PinHeader_2.54mm -PinHeader_2x19_P2.54mm_Vertical_SMD -surface-mounted straight pin header, 2x19, 2.54mm pitch, double rows -Surface mounted pin header SMD 2x19 2.54mm double row -0 -38 -38 -Connector_PinHeader_2.54mm -PinHeader_2x20_P2.54mm_Horizontal -Through hole angled pin header, 2x20, 2.54mm pitch, 6mm pin length, double rows -Through hole angled pin header THT 2x20 2.54mm double row -0 -40 -40 -Connector_PinHeader_2.54mm -PinHeader_2x20_P2.54mm_Vertical -Through hole straight pin header, 2x20, 2.54mm pitch, double rows -Through hole pin header THT 2x20 2.54mm double row -0 -40 -40 -Connector_PinHeader_2.54mm -PinHeader_2x20_P2.54mm_Vertical_SMD -surface-mounted straight pin header, 2x20, 2.54mm pitch, double rows -Surface mounted pin header SMD 2x20 2.54mm double row -0 -40 -40 -Connector_PinHeader_2.54mm -PinHeader_2x21_P2.54mm_Horizontal -Through hole angled pin header, 2x21, 2.54mm pitch, 6mm pin length, double rows -Through hole angled pin header THT 2x21 2.54mm double row -0 -42 -42 -Connector_PinHeader_2.54mm -PinHeader_2x21_P2.54mm_Vertical -Through hole straight pin header, 2x21, 2.54mm pitch, double rows -Through hole pin header THT 2x21 2.54mm double row -0 -42 -42 -Connector_PinHeader_2.54mm -PinHeader_2x21_P2.54mm_Vertical_SMD -surface-mounted straight pin header, 2x21, 2.54mm pitch, double rows -Surface mounted pin header SMD 2x21 2.54mm double row -0 -42 -42 -Connector_PinHeader_2.54mm -PinHeader_2x22_P2.54mm_Horizontal -Through hole angled pin header, 2x22, 2.54mm pitch, 6mm pin length, double rows -Through hole angled pin header THT 2x22 2.54mm double row -0 -44 -44 -Connector_PinHeader_2.54mm -PinHeader_2x22_P2.54mm_Vertical -Through hole straight pin header, 2x22, 2.54mm pitch, double rows -Through hole pin header THT 2x22 2.54mm double row -0 -44 -44 -Connector_PinHeader_2.54mm -PinHeader_2x22_P2.54mm_Vertical_SMD -surface-mounted straight pin header, 2x22, 2.54mm pitch, double rows -Surface mounted pin header SMD 2x22 2.54mm double row -0 -44 -44 -Connector_PinHeader_2.54mm -PinHeader_2x23_P2.54mm_Horizontal -Through hole angled pin header, 2x23, 2.54mm pitch, 6mm pin length, double rows -Through hole angled pin header THT 2x23 2.54mm double row -0 -46 -46 -Connector_PinHeader_2.54mm -PinHeader_2x23_P2.54mm_Vertical -Through hole straight pin header, 2x23, 2.54mm pitch, double rows -Through hole pin header THT 2x23 2.54mm double row -0 -46 -46 -Connector_PinHeader_2.54mm -PinHeader_2x23_P2.54mm_Vertical_SMD -surface-mounted straight pin header, 2x23, 2.54mm pitch, double rows -Surface mounted pin header SMD 2x23 2.54mm double row -0 -46 -46 -Connector_PinHeader_2.54mm -PinHeader_2x24_P2.54mm_Horizontal -Through hole angled pin header, 2x24, 2.54mm pitch, 6mm pin length, double rows -Through hole angled pin header THT 2x24 2.54mm double row -0 -48 -48 -Connector_PinHeader_2.54mm -PinHeader_2x24_P2.54mm_Vertical -Through hole straight pin header, 2x24, 2.54mm pitch, double rows -Through hole pin header THT 2x24 2.54mm double row -0 -48 -48 -Connector_PinHeader_2.54mm -PinHeader_2x24_P2.54mm_Vertical_SMD -surface-mounted straight pin header, 2x24, 2.54mm pitch, double rows -Surface mounted pin header SMD 2x24 2.54mm double row -0 -48 -48 -Connector_PinHeader_2.54mm -PinHeader_2x25_P2.54mm_Horizontal -Through hole angled pin header, 2x25, 2.54mm pitch, 6mm pin length, double rows -Through hole angled pin header THT 2x25 2.54mm double row -0 -50 -50 -Connector_PinHeader_2.54mm -PinHeader_2x25_P2.54mm_Vertical -Through hole straight pin header, 2x25, 2.54mm pitch, double rows -Through hole pin header THT 2x25 2.54mm double row -0 -50 -50 -Connector_PinHeader_2.54mm -PinHeader_2x25_P2.54mm_Vertical_SMD -surface-mounted straight pin header, 2x25, 2.54mm pitch, double rows -Surface mounted pin header SMD 2x25 2.54mm double row -0 -50 -50 -Connector_PinHeader_2.54mm -PinHeader_2x26_P2.54mm_Horizontal -Through hole angled pin header, 2x26, 2.54mm pitch, 6mm pin length, double rows -Through hole angled pin header THT 2x26 2.54mm double row -0 -52 -52 -Connector_PinHeader_2.54mm -PinHeader_2x26_P2.54mm_Vertical -Through hole straight pin header, 2x26, 2.54mm pitch, double rows -Through hole pin header THT 2x26 2.54mm double row -0 -52 -52 -Connector_PinHeader_2.54mm -PinHeader_2x26_P2.54mm_Vertical_SMD -surface-mounted straight pin header, 2x26, 2.54mm pitch, double rows -Surface mounted pin header SMD 2x26 2.54mm double row -0 -52 -52 -Connector_PinHeader_2.54mm -PinHeader_2x27_P2.54mm_Horizontal -Through hole angled pin header, 2x27, 2.54mm pitch, 6mm pin length, double rows -Through hole angled pin header THT 2x27 2.54mm double row -0 -54 -54 -Connector_PinHeader_2.54mm -PinHeader_2x27_P2.54mm_Vertical -Through hole straight pin header, 2x27, 2.54mm pitch, double rows -Through hole pin header THT 2x27 2.54mm double row -0 -54 -54 -Connector_PinHeader_2.54mm -PinHeader_2x27_P2.54mm_Vertical_SMD -surface-mounted straight pin header, 2x27, 2.54mm pitch, double rows -Surface mounted pin header SMD 2x27 2.54mm double row -0 -54 -54 -Connector_PinHeader_2.54mm -PinHeader_2x28_P2.54mm_Horizontal -Through hole angled pin header, 2x28, 2.54mm pitch, 6mm pin length, double rows -Through hole angled pin header THT 2x28 2.54mm double row -0 -56 -56 -Connector_PinHeader_2.54mm -PinHeader_2x28_P2.54mm_Vertical -Through hole straight pin header, 2x28, 2.54mm pitch, double rows -Through hole pin header THT 2x28 2.54mm double row -0 -56 -56 -Connector_PinHeader_2.54mm -PinHeader_2x28_P2.54mm_Vertical_SMD -surface-mounted straight pin header, 2x28, 2.54mm pitch, double rows -Surface mounted pin header SMD 2x28 2.54mm double row -0 -56 -56 -Connector_PinHeader_2.54mm -PinHeader_2x29_P2.54mm_Horizontal -Through hole angled pin header, 2x29, 2.54mm pitch, 6mm pin length, double rows -Through hole angled pin header THT 2x29 2.54mm double row -0 -58 -58 -Connector_PinHeader_2.54mm -PinHeader_2x29_P2.54mm_Vertical -Through hole straight pin header, 2x29, 2.54mm pitch, double rows -Through hole pin header THT 2x29 2.54mm double row -0 -58 -58 -Connector_PinHeader_2.54mm -PinHeader_2x29_P2.54mm_Vertical_SMD -surface-mounted straight pin header, 2x29, 2.54mm pitch, double rows -Surface mounted pin header SMD 2x29 2.54mm double row -0 -58 -58 -Connector_PinHeader_2.54mm -PinHeader_2x30_P2.54mm_Horizontal -Through hole angled pin header, 2x30, 2.54mm pitch, 6mm pin length, double rows -Through hole angled pin header THT 2x30 2.54mm double row -0 -60 -60 -Connector_PinHeader_2.54mm -PinHeader_2x30_P2.54mm_Vertical -Through hole straight pin header, 2x30, 2.54mm pitch, double rows -Through hole pin header THT 2x30 2.54mm double row -0 -60 -60 -Connector_PinHeader_2.54mm -PinHeader_2x30_P2.54mm_Vertical_SMD -surface-mounted straight pin header, 2x30, 2.54mm pitch, double rows -Surface mounted pin header SMD 2x30 2.54mm double row -0 -60 -60 -Connector_PinHeader_2.54mm -PinHeader_2x31_P2.54mm_Horizontal -Through hole angled pin header, 2x31, 2.54mm pitch, 6mm pin length, double rows -Through hole angled pin header THT 2x31 2.54mm double row -0 -62 -62 -Connector_PinHeader_2.54mm -PinHeader_2x31_P2.54mm_Vertical -Through hole straight pin header, 2x31, 2.54mm pitch, double rows -Through hole pin header THT 2x31 2.54mm double row -0 -62 -62 -Connector_PinHeader_2.54mm -PinHeader_2x31_P2.54mm_Vertical_SMD -surface-mounted straight pin header, 2x31, 2.54mm pitch, double rows -Surface mounted pin header SMD 2x31 2.54mm double row -0 -62 -62 -Connector_PinHeader_2.54mm -PinHeader_2x32_P2.54mm_Horizontal -Through hole angled pin header, 2x32, 2.54mm pitch, 6mm pin length, double rows -Through hole angled pin header THT 2x32 2.54mm double row -0 -64 -64 -Connector_PinHeader_2.54mm -PinHeader_2x32_P2.54mm_Vertical -Through hole straight pin header, 2x32, 2.54mm pitch, double rows -Through hole pin header THT 2x32 2.54mm double row -0 -64 -64 -Connector_PinHeader_2.54mm -PinHeader_2x32_P2.54mm_Vertical_SMD -surface-mounted straight pin header, 2x32, 2.54mm pitch, double rows -Surface mounted pin header SMD 2x32 2.54mm double row -0 -64 -64 -Connector_PinHeader_2.54mm -PinHeader_2x33_P2.54mm_Horizontal -Through hole angled pin header, 2x33, 2.54mm pitch, 6mm pin length, double rows -Through hole angled pin header THT 2x33 2.54mm double row -0 -66 -66 -Connector_PinHeader_2.54mm -PinHeader_2x33_P2.54mm_Vertical -Through hole straight pin header, 2x33, 2.54mm pitch, double rows -Through hole pin header THT 2x33 2.54mm double row -0 -66 -66 -Connector_PinHeader_2.54mm -PinHeader_2x33_P2.54mm_Vertical_SMD -surface-mounted straight pin header, 2x33, 2.54mm pitch, double rows -Surface mounted pin header SMD 2x33 2.54mm double row -0 -66 -66 -Connector_PinHeader_2.54mm -PinHeader_2x34_P2.54mm_Horizontal -Through hole angled pin header, 2x34, 2.54mm pitch, 6mm pin length, double rows -Through hole angled pin header THT 2x34 2.54mm double row -0 -68 -68 -Connector_PinHeader_2.54mm -PinHeader_2x34_P2.54mm_Vertical -Through hole straight pin header, 2x34, 2.54mm pitch, double rows -Through hole pin header THT 2x34 2.54mm double row -0 -68 -68 -Connector_PinHeader_2.54mm -PinHeader_2x34_P2.54mm_Vertical_SMD -surface-mounted straight pin header, 2x34, 2.54mm pitch, double rows -Surface mounted pin header SMD 2x34 2.54mm double row -0 -68 -68 -Connector_PinHeader_2.54mm -PinHeader_2x35_P2.54mm_Horizontal -Through hole angled pin header, 2x35, 2.54mm pitch, 6mm pin length, double rows -Through hole angled pin header THT 2x35 2.54mm double row -0 -70 -70 -Connector_PinHeader_2.54mm -PinHeader_2x35_P2.54mm_Vertical -Through hole straight pin header, 2x35, 2.54mm pitch, double rows -Through hole pin header THT 2x35 2.54mm double row -0 -70 -70 -Connector_PinHeader_2.54mm -PinHeader_2x35_P2.54mm_Vertical_SMD -surface-mounted straight pin header, 2x35, 2.54mm pitch, double rows -Surface mounted pin header SMD 2x35 2.54mm double row -0 -70 -70 -Connector_PinHeader_2.54mm -PinHeader_2x36_P2.54mm_Horizontal -Through hole angled pin header, 2x36, 2.54mm pitch, 6mm pin length, double rows -Through hole angled pin header THT 2x36 2.54mm double row -0 -72 -72 -Connector_PinHeader_2.54mm -PinHeader_2x36_P2.54mm_Vertical -Through hole straight pin header, 2x36, 2.54mm pitch, double rows -Through hole pin header THT 2x36 2.54mm double row -0 -72 -72 -Connector_PinHeader_2.54mm -PinHeader_2x36_P2.54mm_Vertical_SMD -surface-mounted straight pin header, 2x36, 2.54mm pitch, double rows -Surface mounted pin header SMD 2x36 2.54mm double row -0 -72 -72 -Connector_PinHeader_2.54mm -PinHeader_2x37_P2.54mm_Horizontal -Through hole angled pin header, 2x37, 2.54mm pitch, 6mm pin length, double rows -Through hole angled pin header THT 2x37 2.54mm double row -0 -74 -74 -Connector_PinHeader_2.54mm -PinHeader_2x37_P2.54mm_Vertical -Through hole straight pin header, 2x37, 2.54mm pitch, double rows -Through hole pin header THT 2x37 2.54mm double row -0 -74 -74 -Connector_PinHeader_2.54mm -PinHeader_2x37_P2.54mm_Vertical_SMD -surface-mounted straight pin header, 2x37, 2.54mm pitch, double rows -Surface mounted pin header SMD 2x37 2.54mm double row -0 -74 -74 -Connector_PinHeader_2.54mm -PinHeader_2x38_P2.54mm_Horizontal -Through hole angled pin header, 2x38, 2.54mm pitch, 6mm pin length, double rows -Through hole angled pin header THT 2x38 2.54mm double row -0 -76 -76 -Connector_PinHeader_2.54mm -PinHeader_2x38_P2.54mm_Vertical -Through hole straight pin header, 2x38, 2.54mm pitch, double rows -Through hole pin header THT 2x38 2.54mm double row -0 -76 -76 -Connector_PinHeader_2.54mm -PinHeader_2x38_P2.54mm_Vertical_SMD -surface-mounted straight pin header, 2x38, 2.54mm pitch, double rows -Surface mounted pin header SMD 2x38 2.54mm double row -0 -76 -76 -Connector_PinHeader_2.54mm -PinHeader_2x39_P2.54mm_Horizontal -Through hole angled pin header, 2x39, 2.54mm pitch, 6mm pin length, double rows -Through hole angled pin header THT 2x39 2.54mm double row -0 -78 -78 -Connector_PinHeader_2.54mm -PinHeader_2x39_P2.54mm_Vertical -Through hole straight pin header, 2x39, 2.54mm pitch, double rows -Through hole pin header THT 2x39 2.54mm double row -0 -78 -78 -Connector_PinHeader_2.54mm -PinHeader_2x39_P2.54mm_Vertical_SMD -surface-mounted straight pin header, 2x39, 2.54mm pitch, double rows -Surface mounted pin header SMD 2x39 2.54mm double row -0 -78 -78 -Connector_PinHeader_2.54mm -PinHeader_2x40_P2.54mm_Horizontal -Through hole angled pin header, 2x40, 2.54mm pitch, 6mm pin length, double rows -Through hole angled pin header THT 2x40 2.54mm double row -0 -80 -80 -Connector_PinHeader_2.54mm -PinHeader_2x40_P2.54mm_Vertical -Through hole straight pin header, 2x40, 2.54mm pitch, double rows -Through hole pin header THT 2x40 2.54mm double row -0 -80 -80 -Connector_PinHeader_2.54mm -PinHeader_2x40_P2.54mm_Vertical_SMD -surface-mounted straight pin header, 2x40, 2.54mm pitch, double rows -Surface mounted pin header SMD 2x40 2.54mm double row -0 -80 -80 -Connector_PinSocket_1.00mm -PinSocket_1x02_P1.00mm_Vertical -Through hole straight socket strip, 1x02, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated -Through hole socket strip THT 1x02 1.00mm single row -0 -2 -2 -Connector_PinSocket_1.00mm -PinSocket_1x02_P1.00mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x02, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated -Surface mounted socket strip SMD 1x02 1.00mm single row style1 pin1 left -0 -2 -2 -Connector_PinSocket_1.00mm -PinSocket_1x02_P1.00mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x02, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated -Surface mounted socket strip SMD 1x02 1.00mm single row style2 pin1 right -0 -2 -2 -Connector_PinSocket_1.00mm -PinSocket_1x03_P1.00mm_Vertical -Through hole straight socket strip, 1x03, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated -Through hole socket strip THT 1x03 1.00mm single row -0 -3 -3 -Connector_PinSocket_1.00mm -PinSocket_1x03_P1.00mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x03, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated -Surface mounted socket strip SMD 1x03 1.00mm single row style1 pin1 left -0 -3 -3 -Connector_PinSocket_1.00mm -PinSocket_1x03_P1.00mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x03, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated -Surface mounted socket strip SMD 1x03 1.00mm single row style2 pin1 right -0 -3 -3 -Connector_PinSocket_1.00mm -PinSocket_1x04_P1.00mm_Vertical -Through hole straight socket strip, 1x04, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated -Through hole socket strip THT 1x04 1.00mm single row -0 -4 -4 -Connector_PinSocket_1.00mm -PinSocket_1x04_P1.00mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x04, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated -Surface mounted socket strip SMD 1x04 1.00mm single row style1 pin1 left -0 -4 -4 -Connector_PinSocket_1.00mm -PinSocket_1x04_P1.00mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x04, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated -Surface mounted socket strip SMD 1x04 1.00mm single row style2 pin1 right -0 -4 -4 -Connector_PinSocket_1.00mm -PinSocket_1x05_P1.00mm_Vertical -Through hole straight socket strip, 1x05, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated -Through hole socket strip THT 1x05 1.00mm single row -0 -5 -5 -Connector_PinSocket_1.00mm -PinSocket_1x05_P1.00mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x05, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated -Surface mounted socket strip SMD 1x05 1.00mm single row style1 pin1 left -0 -5 -5 -Connector_PinSocket_1.00mm -PinSocket_1x05_P1.00mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x05, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated -Surface mounted socket strip SMD 1x05 1.00mm single row style2 pin1 right -0 -5 -5 -Connector_PinSocket_1.00mm -PinSocket_1x06_P1.00mm_Vertical -Through hole straight socket strip, 1x06, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated -Through hole socket strip THT 1x06 1.00mm single row -0 -6 -6 -Connector_PinSocket_1.00mm -PinSocket_1x06_P1.00mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x06, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated -Surface mounted socket strip SMD 1x06 1.00mm single row style1 pin1 left -0 -6 -6 -Connector_PinSocket_1.00mm -PinSocket_1x06_P1.00mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x06, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated -Surface mounted socket strip SMD 1x06 1.00mm single row style2 pin1 right -0 -6 -6 -Connector_PinSocket_1.00mm -PinSocket_1x07_P1.00mm_Vertical -Through hole straight socket strip, 1x07, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated -Through hole socket strip THT 1x07 1.00mm single row -0 -7 -7 -Connector_PinSocket_1.00mm -PinSocket_1x07_P1.00mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x07, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated -Surface mounted socket strip SMD 1x07 1.00mm single row style1 pin1 left -0 -7 -7 -Connector_PinSocket_1.00mm -PinSocket_1x07_P1.00mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x07, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated -Surface mounted socket strip SMD 1x07 1.00mm single row style2 pin1 right -0 -7 -7 -Connector_PinSocket_1.00mm -PinSocket_1x08_P1.00mm_Vertical -Through hole straight socket strip, 1x08, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated -Through hole socket strip THT 1x08 1.00mm single row -0 -8 -8 -Connector_PinSocket_1.00mm -PinSocket_1x08_P1.00mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x08, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated -Surface mounted socket strip SMD 1x08 1.00mm single row style1 pin1 left -0 -8 -8 -Connector_PinSocket_1.00mm -PinSocket_1x08_P1.00mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x08, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated -Surface mounted socket strip SMD 1x08 1.00mm single row style2 pin1 right -0 -8 -8 -Connector_PinSocket_1.00mm -PinSocket_1x09_P1.00mm_Vertical -Through hole straight socket strip, 1x09, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated -Through hole socket strip THT 1x09 1.00mm single row -0 -9 -9 -Connector_PinSocket_1.00mm -PinSocket_1x09_P1.00mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x09, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated -Surface mounted socket strip SMD 1x09 1.00mm single row style1 pin1 left -0 -9 -9 -Connector_PinSocket_1.00mm -PinSocket_1x09_P1.00mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x09, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated -Surface mounted socket strip SMD 1x09 1.00mm single row style2 pin1 right -0 -9 -9 -Connector_PinSocket_1.00mm -PinSocket_1x10_P1.00mm_Vertical -Through hole straight socket strip, 1x10, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated -Through hole socket strip THT 1x10 1.00mm single row -0 -10 -10 -Connector_PinSocket_1.00mm -PinSocket_1x10_P1.00mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x10, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated -Surface mounted socket strip SMD 1x10 1.00mm single row style1 pin1 left -0 -10 -10 -Connector_PinSocket_1.00mm -PinSocket_1x10_P1.00mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x10, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated -Surface mounted socket strip SMD 1x10 1.00mm single row style2 pin1 right -0 -10 -10 -Connector_PinSocket_1.00mm -PinSocket_1x11_P1.00mm_Vertical -Through hole straight socket strip, 1x11, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated -Through hole socket strip THT 1x11 1.00mm single row -0 -11 -11 -Connector_PinSocket_1.00mm -PinSocket_1x11_P1.00mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x11, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated -Surface mounted socket strip SMD 1x11 1.00mm single row style1 pin1 left -0 -11 -11 -Connector_PinSocket_1.00mm -PinSocket_1x11_P1.00mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x11, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated -Surface mounted socket strip SMD 1x11 1.00mm single row style2 pin1 right -0 -11 -11 -Connector_PinSocket_1.00mm -PinSocket_1x12_P1.00mm_Vertical -Through hole straight socket strip, 1x12, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated -Through hole socket strip THT 1x12 1.00mm single row -0 -12 -12 -Connector_PinSocket_1.00mm -PinSocket_1x12_P1.00mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x12, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated -Surface mounted socket strip SMD 1x12 1.00mm single row style1 pin1 left -0 -12 -12 -Connector_PinSocket_1.00mm -PinSocket_1x12_P1.00mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x12, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated -Surface mounted socket strip SMD 1x12 1.00mm single row style2 pin1 right -0 -12 -12 -Connector_PinSocket_1.00mm -PinSocket_1x13_P1.00mm_Vertical -Through hole straight socket strip, 1x13, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated -Through hole socket strip THT 1x13 1.00mm single row -0 -13 -13 -Connector_PinSocket_1.00mm -PinSocket_1x13_P1.00mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x13, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated -Surface mounted socket strip SMD 1x13 1.00mm single row style1 pin1 left -0 -13 -13 -Connector_PinSocket_1.00mm -PinSocket_1x13_P1.00mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x13, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated -Surface mounted socket strip SMD 1x13 1.00mm single row style2 pin1 right -0 -13 -13 -Connector_PinSocket_1.00mm -PinSocket_1x14_P1.00mm_Vertical -Through hole straight socket strip, 1x14, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated -Through hole socket strip THT 1x14 1.00mm single row -0 -14 -14 -Connector_PinSocket_1.00mm -PinSocket_1x14_P1.00mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x14, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated -Surface mounted socket strip SMD 1x14 1.00mm single row style1 pin1 left -0 -14 -14 -Connector_PinSocket_1.00mm -PinSocket_1x14_P1.00mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x14, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated -Surface mounted socket strip SMD 1x14 1.00mm single row style2 pin1 right -0 -14 -14 -Connector_PinSocket_1.00mm -PinSocket_1x15_P1.00mm_Vertical -Through hole straight socket strip, 1x15, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated -Through hole socket strip THT 1x15 1.00mm single row -0 -15 -15 -Connector_PinSocket_1.00mm -PinSocket_1x15_P1.00mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x15, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated -Surface mounted socket strip SMD 1x15 1.00mm single row style1 pin1 left -0 -15 -15 -Connector_PinSocket_1.00mm -PinSocket_1x15_P1.00mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x15, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated -Surface mounted socket strip SMD 1x15 1.00mm single row style2 pin1 right -0 -15 -15 -Connector_PinSocket_1.00mm -PinSocket_1x16_P1.00mm_Vertical -Through hole straight socket strip, 1x16, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated -Through hole socket strip THT 1x16 1.00mm single row -0 -16 -16 -Connector_PinSocket_1.00mm -PinSocket_1x16_P1.00mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x16, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated -Surface mounted socket strip SMD 1x16 1.00mm single row style1 pin1 left -0 -16 -16 -Connector_PinSocket_1.00mm -PinSocket_1x16_P1.00mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x16, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated -Surface mounted socket strip SMD 1x16 1.00mm single row style2 pin1 right -0 -16 -16 -Connector_PinSocket_1.00mm -PinSocket_1x17_P1.00mm_Vertical -Through hole straight socket strip, 1x17, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated -Through hole socket strip THT 1x17 1.00mm single row -0 -17 -17 -Connector_PinSocket_1.00mm -PinSocket_1x17_P1.00mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x17, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated -Surface mounted socket strip SMD 1x17 1.00mm single row style1 pin1 left -0 -17 -17 -Connector_PinSocket_1.00mm -PinSocket_1x17_P1.00mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x17, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated -Surface mounted socket strip SMD 1x17 1.00mm single row style2 pin1 right -0 -17 -17 -Connector_PinSocket_1.00mm -PinSocket_1x18_P1.00mm_Vertical -Through hole straight socket strip, 1x18, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated -Through hole socket strip THT 1x18 1.00mm single row -0 -18 -18 -Connector_PinSocket_1.00mm -PinSocket_1x18_P1.00mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x18, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated -Surface mounted socket strip SMD 1x18 1.00mm single row style1 pin1 left -0 -18 -18 -Connector_PinSocket_1.00mm -PinSocket_1x18_P1.00mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x18, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated -Surface mounted socket strip SMD 1x18 1.00mm single row style2 pin1 right -0 -18 -18 -Connector_PinSocket_1.00mm -PinSocket_1x19_P1.00mm_Vertical -Through hole straight socket strip, 1x19, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated -Through hole socket strip THT 1x19 1.00mm single row -0 -19 -19 -Connector_PinSocket_1.00mm -PinSocket_1x19_P1.00mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x19, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated -Surface mounted socket strip SMD 1x19 1.00mm single row style1 pin1 left -0 -19 -19 -Connector_PinSocket_1.00mm -PinSocket_1x19_P1.00mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x19, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated -Surface mounted socket strip SMD 1x19 1.00mm single row style2 pin1 right -0 -19 -19 -Connector_PinSocket_1.00mm -PinSocket_1x20_P1.00mm_Vertical -Through hole straight socket strip, 1x20, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated -Through hole socket strip THT 1x20 1.00mm single row -0 -20 -20 -Connector_PinSocket_1.00mm -PinSocket_1x20_P1.00mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x20, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated -Surface mounted socket strip SMD 1x20 1.00mm single row style1 pin1 left -0 -20 -20 -Connector_PinSocket_1.00mm -PinSocket_1x20_P1.00mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x20, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated -Surface mounted socket strip SMD 1x20 1.00mm single row style2 pin1 right -0 -20 -20 -Connector_PinSocket_1.00mm -PinSocket_1x21_P1.00mm_Vertical -Through hole straight socket strip, 1x21, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated -Through hole socket strip THT 1x21 1.00mm single row -0 -21 -21 -Connector_PinSocket_1.00mm -PinSocket_1x21_P1.00mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x21, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated -Surface mounted socket strip SMD 1x21 1.00mm single row style1 pin1 left -0 -21 -21 -Connector_PinSocket_1.00mm -PinSocket_1x21_P1.00mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x21, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated -Surface mounted socket strip SMD 1x21 1.00mm single row style2 pin1 right -0 -21 -21 -Connector_PinSocket_1.00mm -PinSocket_1x22_P1.00mm_Vertical -Through hole straight socket strip, 1x22, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated -Through hole socket strip THT 1x22 1.00mm single row -0 -22 -22 -Connector_PinSocket_1.00mm -PinSocket_1x22_P1.00mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x22, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated -Surface mounted socket strip SMD 1x22 1.00mm single row style1 pin1 left -0 -22 -22 -Connector_PinSocket_1.00mm -PinSocket_1x22_P1.00mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x22, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated -Surface mounted socket strip SMD 1x22 1.00mm single row style2 pin1 right -0 -22 -22 -Connector_PinSocket_1.00mm -PinSocket_1x23_P1.00mm_Vertical -Through hole straight socket strip, 1x23, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated -Through hole socket strip THT 1x23 1.00mm single row -0 -23 -23 -Connector_PinSocket_1.00mm -PinSocket_1x23_P1.00mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x23, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated -Surface mounted socket strip SMD 1x23 1.00mm single row style1 pin1 left -0 -23 -23 -Connector_PinSocket_1.00mm -PinSocket_1x23_P1.00mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x23, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated -Surface mounted socket strip SMD 1x23 1.00mm single row style2 pin1 right -0 -23 -23 -Connector_PinSocket_1.00mm -PinSocket_1x24_P1.00mm_Vertical -Through hole straight socket strip, 1x24, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated -Through hole socket strip THT 1x24 1.00mm single row -0 -24 -24 -Connector_PinSocket_1.00mm -PinSocket_1x24_P1.00mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x24, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated -Surface mounted socket strip SMD 1x24 1.00mm single row style1 pin1 left -0 -24 -24 -Connector_PinSocket_1.00mm -PinSocket_1x24_P1.00mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x24, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated -Surface mounted socket strip SMD 1x24 1.00mm single row style2 pin1 right -0 -24 -24 -Connector_PinSocket_1.00mm -PinSocket_1x25_P1.00mm_Vertical -Through hole straight socket strip, 1x25, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated -Through hole socket strip THT 1x25 1.00mm single row -0 -25 -25 -Connector_PinSocket_1.00mm -PinSocket_1x25_P1.00mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x25, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated -Surface mounted socket strip SMD 1x25 1.00mm single row style1 pin1 left -0 -25 -25 -Connector_PinSocket_1.00mm -PinSocket_1x25_P1.00mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x25, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated -Surface mounted socket strip SMD 1x25 1.00mm single row style2 pin1 right -0 -25 -25 -Connector_PinSocket_1.00mm -PinSocket_1x26_P1.00mm_Vertical -Through hole straight socket strip, 1x26, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated -Through hole socket strip THT 1x26 1.00mm single row -0 -26 -26 -Connector_PinSocket_1.00mm -PinSocket_1x26_P1.00mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x26, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated -Surface mounted socket strip SMD 1x26 1.00mm single row style1 pin1 left -0 -26 -26 -Connector_PinSocket_1.00mm -PinSocket_1x26_P1.00mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x26, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated -Surface mounted socket strip SMD 1x26 1.00mm single row style2 pin1 right -0 -26 -26 -Connector_PinSocket_1.00mm -PinSocket_1x27_P1.00mm_Vertical -Through hole straight socket strip, 1x27, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated -Through hole socket strip THT 1x27 1.00mm single row -0 -27 -27 -Connector_PinSocket_1.00mm -PinSocket_1x27_P1.00mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x27, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated -Surface mounted socket strip SMD 1x27 1.00mm single row style1 pin1 left -0 -27 -27 -Connector_PinSocket_1.00mm -PinSocket_1x27_P1.00mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x27, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated -Surface mounted socket strip SMD 1x27 1.00mm single row style2 pin1 right -0 -27 -27 -Connector_PinSocket_1.00mm -PinSocket_1x28_P1.00mm_Vertical -Through hole straight socket strip, 1x28, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated -Through hole socket strip THT 1x28 1.00mm single row -0 -28 -28 -Connector_PinSocket_1.00mm -PinSocket_1x28_P1.00mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x28, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated -Surface mounted socket strip SMD 1x28 1.00mm single row style1 pin1 left -0 -28 -28 -Connector_PinSocket_1.00mm -PinSocket_1x28_P1.00mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x28, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated -Surface mounted socket strip SMD 1x28 1.00mm single row style2 pin1 right -0 -28 -28 -Connector_PinSocket_1.00mm -PinSocket_1x29_P1.00mm_Vertical -Through hole straight socket strip, 1x29, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated -Through hole socket strip THT 1x29 1.00mm single row -0 -29 -29 -Connector_PinSocket_1.00mm -PinSocket_1x29_P1.00mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x29, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated -Surface mounted socket strip SMD 1x29 1.00mm single row style1 pin1 left -0 -29 -29 -Connector_PinSocket_1.00mm -PinSocket_1x29_P1.00mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x29, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated -Surface mounted socket strip SMD 1x29 1.00mm single row style2 pin1 right -0 -29 -29 -Connector_PinSocket_1.00mm -PinSocket_1x30_P1.00mm_Vertical -Through hole straight socket strip, 1x30, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated -Through hole socket strip THT 1x30 1.00mm single row -0 -30 -30 -Connector_PinSocket_1.00mm -PinSocket_1x30_P1.00mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x30, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated -Surface mounted socket strip SMD 1x30 1.00mm single row style1 pin1 left -0 -30 -30 -Connector_PinSocket_1.00mm -PinSocket_1x30_P1.00mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x30, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated -Surface mounted socket strip SMD 1x30 1.00mm single row style2 pin1 right -0 -30 -30 -Connector_PinSocket_1.00mm -PinSocket_1x31_P1.00mm_Vertical -Through hole straight socket strip, 1x31, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated -Through hole socket strip THT 1x31 1.00mm single row -0 -31 -31 -Connector_PinSocket_1.00mm -PinSocket_1x31_P1.00mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x31, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated -Surface mounted socket strip SMD 1x31 1.00mm single row style1 pin1 left -0 -31 -31 -Connector_PinSocket_1.00mm -PinSocket_1x31_P1.00mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x31, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated -Surface mounted socket strip SMD 1x31 1.00mm single row style2 pin1 right -0 -31 -31 -Connector_PinSocket_1.00mm -PinSocket_1x32_P1.00mm_Vertical -Through hole straight socket strip, 1x32, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated -Through hole socket strip THT 1x32 1.00mm single row -0 -32 -32 -Connector_PinSocket_1.00mm -PinSocket_1x32_P1.00mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x32, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated -Surface mounted socket strip SMD 1x32 1.00mm single row style1 pin1 left -0 -32 -32 -Connector_PinSocket_1.00mm -PinSocket_1x32_P1.00mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x32, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated -Surface mounted socket strip SMD 1x32 1.00mm single row style2 pin1 right -0 -32 -32 -Connector_PinSocket_1.00mm -PinSocket_1x33_P1.00mm_Vertical -Through hole straight socket strip, 1x33, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated -Through hole socket strip THT 1x33 1.00mm single row -0 -33 -33 -Connector_PinSocket_1.00mm -PinSocket_1x33_P1.00mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x33, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated -Surface mounted socket strip SMD 1x33 1.00mm single row style1 pin1 left -0 -33 -33 -Connector_PinSocket_1.00mm -PinSocket_1x33_P1.00mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x33, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated -Surface mounted socket strip SMD 1x33 1.00mm single row style2 pin1 right -0 -33 -33 -Connector_PinSocket_1.00mm -PinSocket_1x34_P1.00mm_Vertical -Through hole straight socket strip, 1x34, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated -Through hole socket strip THT 1x34 1.00mm single row -0 -34 -34 -Connector_PinSocket_1.00mm -PinSocket_1x34_P1.00mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x34, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated -Surface mounted socket strip SMD 1x34 1.00mm single row style1 pin1 left -0 -34 -34 -Connector_PinSocket_1.00mm -PinSocket_1x34_P1.00mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x34, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated -Surface mounted socket strip SMD 1x34 1.00mm single row style2 pin1 right -0 -34 -34 -Connector_PinSocket_1.00mm -PinSocket_1x35_P1.00mm_Vertical -Through hole straight socket strip, 1x35, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated -Through hole socket strip THT 1x35 1.00mm single row -0 -35 -35 -Connector_PinSocket_1.00mm -PinSocket_1x35_P1.00mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x35, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated -Surface mounted socket strip SMD 1x35 1.00mm single row style1 pin1 left -0 -35 -35 -Connector_PinSocket_1.00mm -PinSocket_1x35_P1.00mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x35, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated -Surface mounted socket strip SMD 1x35 1.00mm single row style2 pin1 right -0 -35 -35 -Connector_PinSocket_1.00mm -PinSocket_1x36_P1.00mm_Vertical -Through hole straight socket strip, 1x36, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated -Through hole socket strip THT 1x36 1.00mm single row -0 -36 -36 -Connector_PinSocket_1.00mm -PinSocket_1x36_P1.00mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x36, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated -Surface mounted socket strip SMD 1x36 1.00mm single row style1 pin1 left -0 -36 -36 -Connector_PinSocket_1.00mm -PinSocket_1x36_P1.00mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x36, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated -Surface mounted socket strip SMD 1x36 1.00mm single row style2 pin1 right -0 -36 -36 -Connector_PinSocket_1.00mm -PinSocket_1x37_P1.00mm_Vertical -Through hole straight socket strip, 1x37, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated -Through hole socket strip THT 1x37 1.00mm single row -0 -37 -37 -Connector_PinSocket_1.00mm -PinSocket_1x37_P1.00mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x37, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated -Surface mounted socket strip SMD 1x37 1.00mm single row style1 pin1 left -0 -37 -37 -Connector_PinSocket_1.00mm -PinSocket_1x37_P1.00mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x37, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated -Surface mounted socket strip SMD 1x37 1.00mm single row style2 pin1 right -0 -37 -37 -Connector_PinSocket_1.00mm -PinSocket_1x38_P1.00mm_Vertical -Through hole straight socket strip, 1x38, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated -Through hole socket strip THT 1x38 1.00mm single row -0 -38 -38 -Connector_PinSocket_1.00mm -PinSocket_1x38_P1.00mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x38, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated -Surface mounted socket strip SMD 1x38 1.00mm single row style1 pin1 left -0 -38 -38 -Connector_PinSocket_1.00mm -PinSocket_1x38_P1.00mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x38, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated -Surface mounted socket strip SMD 1x38 1.00mm single row style2 pin1 right -0 -38 -38 -Connector_PinSocket_1.00mm -PinSocket_1x39_P1.00mm_Vertical -Through hole straight socket strip, 1x39, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated -Through hole socket strip THT 1x39 1.00mm single row -0 -39 -39 -Connector_PinSocket_1.00mm -PinSocket_1x39_P1.00mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x39, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated -Surface mounted socket strip SMD 1x39 1.00mm single row style1 pin1 left -0 -39 -39 -Connector_PinSocket_1.00mm -PinSocket_1x39_P1.00mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x39, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated -Surface mounted socket strip SMD 1x39 1.00mm single row style2 pin1 right -0 -39 -39 -Connector_PinSocket_1.00mm -PinSocket_1x40_P1.00mm_Vertical -Through hole straight socket strip, 1x40, 1.00mm pitch, single row (https://gct.co/files/drawings/bc065.pdf), script generated -Through hole socket strip THT 1x40 1.00mm single row -0 -40 -40 -Connector_PinSocket_1.00mm -PinSocket_1x40_P1.00mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x40, 1.00mm pitch, single row, style 1 (pin 1 left) (https://gct.co/files/drawings/bc070.pdf), script generated -Surface mounted socket strip SMD 1x40 1.00mm single row style1 pin1 left -0 -40 -40 -Connector_PinSocket_1.00mm -PinSocket_1x40_P1.00mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x40, 1.00mm pitch, single row, style 2 (pin 1 right) (https://gct.co/files/drawings/bc070.pdf), script generated -Surface mounted socket strip SMD 1x40 1.00mm single row style2 pin1 right -0 -40 -40 -Connector_PinSocket_1.00mm -PinSocket_2x02_P1.00mm_Vertical_SMD -surface-mounted straight socket strip, 2x02, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated -Surface mounted socket strip SMD 2x02 1.00mm double row -0 -4 -4 -Connector_PinSocket_1.00mm -PinSocket_2x03_P1.00mm_Vertical_SMD -surface-mounted straight socket strip, 2x03, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated -Surface mounted socket strip SMD 2x03 1.00mm double row -0 -6 -6 -Connector_PinSocket_1.00mm -PinSocket_2x04_P1.00mm_Vertical_SMD -surface-mounted straight socket strip, 2x04, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated -Surface mounted socket strip SMD 2x04 1.00mm double row -0 -8 -8 -Connector_PinSocket_1.00mm -PinSocket_2x05_P1.00mm_Vertical_SMD -surface-mounted straight socket strip, 2x05, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated -Surface mounted socket strip SMD 2x05 1.00mm double row -0 -10 -10 -Connector_PinSocket_1.00mm -PinSocket_2x06_P1.00mm_Vertical_SMD -surface-mounted straight socket strip, 2x06, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated -Surface mounted socket strip SMD 2x06 1.00mm double row -0 -12 -12 -Connector_PinSocket_1.00mm -PinSocket_2x07_P1.00mm_Vertical_SMD -surface-mounted straight socket strip, 2x07, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated -Surface mounted socket strip SMD 2x07 1.00mm double row -0 -14 -14 -Connector_PinSocket_1.00mm -PinSocket_2x08_P1.00mm_Vertical_SMD -surface-mounted straight socket strip, 2x08, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated -Surface mounted socket strip SMD 2x08 1.00mm double row -0 -16 -16 -Connector_PinSocket_1.00mm -PinSocket_2x09_P1.00mm_Vertical_SMD -surface-mounted straight socket strip, 2x09, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated -Surface mounted socket strip SMD 2x09 1.00mm double row -0 -18 -18 -Connector_PinSocket_1.00mm -PinSocket_2x10_P1.00mm_Vertical_SMD -surface-mounted straight socket strip, 2x10, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated -Surface mounted socket strip SMD 2x10 1.00mm double row -0 -20 -20 -Connector_PinSocket_1.00mm -PinSocket_2x11_P1.00mm_Vertical_SMD -surface-mounted straight socket strip, 2x11, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated -Surface mounted socket strip SMD 2x11 1.00mm double row -0 -22 -22 -Connector_PinSocket_1.00mm -PinSocket_2x12_P1.00mm_Vertical_SMD -surface-mounted straight socket strip, 2x12, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated -Surface mounted socket strip SMD 2x12 1.00mm double row -0 -24 -24 -Connector_PinSocket_1.00mm -PinSocket_2x13_P1.00mm_Vertical_SMD -surface-mounted straight socket strip, 2x13, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated -Surface mounted socket strip SMD 2x13 1.00mm double row -0 -26 -26 -Connector_PinSocket_1.00mm -PinSocket_2x14_P1.00mm_Vertical_SMD -surface-mounted straight socket strip, 2x14, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated -Surface mounted socket strip SMD 2x14 1.00mm double row -0 -28 -28 -Connector_PinSocket_1.00mm -PinSocket_2x15_P1.00mm_Vertical_SMD -surface-mounted straight socket strip, 2x15, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated -Surface mounted socket strip SMD 2x15 1.00mm double row -0 -30 -30 -Connector_PinSocket_1.00mm -PinSocket_2x16_P1.00mm_Vertical_SMD -surface-mounted straight socket strip, 2x16, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated -Surface mounted socket strip SMD 2x16 1.00mm double row -0 -32 -32 -Connector_PinSocket_1.00mm -PinSocket_2x17_P1.00mm_Vertical_SMD -surface-mounted straight socket strip, 2x17, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated -Surface mounted socket strip SMD 2x17 1.00mm double row -0 -34 -34 -Connector_PinSocket_1.00mm -PinSocket_2x18_P1.00mm_Vertical_SMD -surface-mounted straight socket strip, 2x18, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated -Surface mounted socket strip SMD 2x18 1.00mm double row -0 -36 -36 -Connector_PinSocket_1.00mm -PinSocket_2x19_P1.00mm_Vertical_SMD -surface-mounted straight socket strip, 2x19, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated -Surface mounted socket strip SMD 2x19 1.00mm double row -0 -38 -38 -Connector_PinSocket_1.00mm -PinSocket_2x20_P1.00mm_Vertical_SMD -surface-mounted straight socket strip, 2x20, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated -Surface mounted socket strip SMD 2x20 1.00mm double row -0 -40 -40 -Connector_PinSocket_1.00mm -PinSocket_2x21_P1.00mm_Vertical_SMD -surface-mounted straight socket strip, 2x21, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated -Surface mounted socket strip SMD 2x21 1.00mm double row -0 -42 -42 -Connector_PinSocket_1.00mm -PinSocket_2x22_P1.00mm_Vertical_SMD -surface-mounted straight socket strip, 2x22, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated -Surface mounted socket strip SMD 2x22 1.00mm double row -0 -44 -44 -Connector_PinSocket_1.00mm -PinSocket_2x23_P1.00mm_Vertical_SMD -surface-mounted straight socket strip, 2x23, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated -Surface mounted socket strip SMD 2x23 1.00mm double row -0 -46 -46 -Connector_PinSocket_1.00mm -PinSocket_2x24_P1.00mm_Vertical_SMD -surface-mounted straight socket strip, 2x24, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated -Surface mounted socket strip SMD 2x24 1.00mm double row -0 -48 -48 -Connector_PinSocket_1.00mm -PinSocket_2x25_P1.00mm_Vertical_SMD -surface-mounted straight socket strip, 2x25, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated -Surface mounted socket strip SMD 2x25 1.00mm double row -0 -50 -50 -Connector_PinSocket_1.00mm -PinSocket_2x26_P1.00mm_Vertical_SMD -surface-mounted straight socket strip, 2x26, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated -Surface mounted socket strip SMD 2x26 1.00mm double row -0 -52 -52 -Connector_PinSocket_1.00mm -PinSocket_2x27_P1.00mm_Vertical_SMD -surface-mounted straight socket strip, 2x27, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated -Surface mounted socket strip SMD 2x27 1.00mm double row -0 -54 -54 -Connector_PinSocket_1.00mm -PinSocket_2x28_P1.00mm_Vertical_SMD -surface-mounted straight socket strip, 2x28, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated -Surface mounted socket strip SMD 2x28 1.00mm double row -0 -56 -56 -Connector_PinSocket_1.00mm -PinSocket_2x29_P1.00mm_Vertical_SMD -surface-mounted straight socket strip, 2x29, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated -Surface mounted socket strip SMD 2x29 1.00mm double row -0 -58 -58 -Connector_PinSocket_1.00mm -PinSocket_2x30_P1.00mm_Vertical_SMD -surface-mounted straight socket strip, 2x30, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated -Surface mounted socket strip SMD 2x30 1.00mm double row -0 -60 -60 -Connector_PinSocket_1.00mm -PinSocket_2x31_P1.00mm_Vertical_SMD -surface-mounted straight socket strip, 2x31, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated -Surface mounted socket strip SMD 2x31 1.00mm double row -0 -62 -62 -Connector_PinSocket_1.00mm -PinSocket_2x32_P1.00mm_Vertical_SMD -surface-mounted straight socket strip, 2x32, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated -Surface mounted socket strip SMD 2x32 1.00mm double row -0 -64 -64 -Connector_PinSocket_1.00mm -PinSocket_2x33_P1.00mm_Vertical_SMD -surface-mounted straight socket strip, 2x33, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated -Surface mounted socket strip SMD 2x33 1.00mm double row -0 -66 -66 -Connector_PinSocket_1.00mm -PinSocket_2x34_P1.00mm_Vertical_SMD -surface-mounted straight socket strip, 2x34, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated -Surface mounted socket strip SMD 2x34 1.00mm double row -0 -68 -68 -Connector_PinSocket_1.00mm -PinSocket_2x35_P1.00mm_Vertical_SMD -surface-mounted straight socket strip, 2x35, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated -Surface mounted socket strip SMD 2x35 1.00mm double row -0 -70 -70 -Connector_PinSocket_1.00mm -PinSocket_2x36_P1.00mm_Vertical_SMD -surface-mounted straight socket strip, 2x36, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated -Surface mounted socket strip SMD 2x36 1.00mm double row -0 -72 -72 -Connector_PinSocket_1.00mm -PinSocket_2x37_P1.00mm_Vertical_SMD -surface-mounted straight socket strip, 2x37, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated -Surface mounted socket strip SMD 2x37 1.00mm double row -0 -74 -74 -Connector_PinSocket_1.00mm -PinSocket_2x38_P1.00mm_Vertical_SMD -surface-mounted straight socket strip, 2x38, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated -Surface mounted socket strip SMD 2x38 1.00mm double row -0 -76 -76 -Connector_PinSocket_1.00mm -PinSocket_2x39_P1.00mm_Vertical_SMD -surface-mounted straight socket strip, 2x39, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated -Surface mounted socket strip SMD 2x39 1.00mm double row -0 -78 -78 -Connector_PinSocket_1.00mm -PinSocket_2x40_P1.00mm_Vertical_SMD -surface-mounted straight socket strip, 2x40, 1.00mm pitch, double cols (https://gct.co/files/drawings/bc085.pdf), script generated -Surface mounted socket strip SMD 2x40 1.00mm double row -0 -80 -80 -Connector_PinSocket_1.27mm -PinSocket_1x01_P1.27mm_Vertical -Through hole straight socket strip, 1x01, 1.27mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x01 1.27mm single row -0 -1 -1 -Connector_PinSocket_1.27mm -PinSocket_1x02_P1.27mm_Vertical -Through hole straight socket strip, 1x02, 1.27mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x02 1.27mm single row -0 -2 -2 -Connector_PinSocket_1.27mm -PinSocket_1x02_P1.27mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x02, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated -Surface mounted socket strip SMD 1x02 1.27mm single row style1 pin1 left -0 -2 -2 -Connector_PinSocket_1.27mm -PinSocket_1x02_P1.27mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x02, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated -Surface mounted socket strip SMD 1x02 1.27mm single row style2 pin1 right -0 -2 -2 -Connector_PinSocket_1.27mm -PinSocket_1x03_P1.27mm_Vertical -Through hole straight socket strip, 1x03, 1.27mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x03 1.27mm single row -0 -3 -3 -Connector_PinSocket_1.27mm -PinSocket_1x03_P1.27mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x03, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated -Surface mounted socket strip SMD 1x03 1.27mm single row style1 pin1 left -0 -3 -3 -Connector_PinSocket_1.27mm -PinSocket_1x03_P1.27mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x03, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated -Surface mounted socket strip SMD 1x03 1.27mm single row style2 pin1 right -0 -3 -3 -Connector_PinSocket_1.27mm -PinSocket_1x04_P1.27mm_Vertical -Through hole straight socket strip, 1x04, 1.27mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x04 1.27mm single row -0 -4 -4 -Connector_PinSocket_1.27mm -PinSocket_1x04_P1.27mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x04, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated -Surface mounted socket strip SMD 1x04 1.27mm single row style1 pin1 left -0 -4 -4 -Connector_PinSocket_1.27mm -PinSocket_1x04_P1.27mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x04, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated -Surface mounted socket strip SMD 1x04 1.27mm single row style2 pin1 right -0 -4 -4 -Connector_PinSocket_1.27mm -PinSocket_1x05_P1.27mm_Vertical -Through hole straight socket strip, 1x05, 1.27mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x05 1.27mm single row -0 -5 -5 -Connector_PinSocket_1.27mm -PinSocket_1x05_P1.27mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x05, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated -Surface mounted socket strip SMD 1x05 1.27mm single row style1 pin1 left -0 -5 -5 -Connector_PinSocket_1.27mm -PinSocket_1x05_P1.27mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x05, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated -Surface mounted socket strip SMD 1x05 1.27mm single row style2 pin1 right -0 -5 -5 -Connector_PinSocket_1.27mm -PinSocket_1x06_P1.27mm_Vertical -Through hole straight socket strip, 1x06, 1.27mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x06 1.27mm single row -0 -6 -6 -Connector_PinSocket_1.27mm -PinSocket_1x06_P1.27mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x06, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated -Surface mounted socket strip SMD 1x06 1.27mm single row style1 pin1 left -0 -6 -6 -Connector_PinSocket_1.27mm -PinSocket_1x06_P1.27mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x06, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated -Surface mounted socket strip SMD 1x06 1.27mm single row style2 pin1 right -0 -6 -6 -Connector_PinSocket_1.27mm -PinSocket_1x07_P1.27mm_Vertical -Through hole straight socket strip, 1x07, 1.27mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x07 1.27mm single row -0 -7 -7 -Connector_PinSocket_1.27mm -PinSocket_1x07_P1.27mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x07, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated -Surface mounted socket strip SMD 1x07 1.27mm single row style1 pin1 left -0 -7 -7 -Connector_PinSocket_1.27mm -PinSocket_1x07_P1.27mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x07, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated -Surface mounted socket strip SMD 1x07 1.27mm single row style2 pin1 right -0 -7 -7 -Connector_PinSocket_1.27mm -PinSocket_1x08_P1.27mm_Vertical -Through hole straight socket strip, 1x08, 1.27mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x08 1.27mm single row -0 -8 -8 -Connector_PinSocket_1.27mm -PinSocket_1x08_P1.27mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x08, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated -Surface mounted socket strip SMD 1x08 1.27mm single row style1 pin1 left -0 -8 -8 -Connector_PinSocket_1.27mm -PinSocket_1x08_P1.27mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x08, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated -Surface mounted socket strip SMD 1x08 1.27mm single row style2 pin1 right -0 -8 -8 -Connector_PinSocket_1.27mm -PinSocket_1x09_P1.27mm_Vertical -Through hole straight socket strip, 1x09, 1.27mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x09 1.27mm single row -0 -9 -9 -Connector_PinSocket_1.27mm -PinSocket_1x09_P1.27mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x09, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated -Surface mounted socket strip SMD 1x09 1.27mm single row style1 pin1 left -0 -9 -9 -Connector_PinSocket_1.27mm -PinSocket_1x09_P1.27mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x09, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated -Surface mounted socket strip SMD 1x09 1.27mm single row style2 pin1 right -0 -9 -9 -Connector_PinSocket_1.27mm -PinSocket_1x10_P1.27mm_Vertical -Through hole straight socket strip, 1x10, 1.27mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x10 1.27mm single row -0 -10 -10 -Connector_PinSocket_1.27mm -PinSocket_1x10_P1.27mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x10, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated -Surface mounted socket strip SMD 1x10 1.27mm single row style1 pin1 left -0 -10 -10 -Connector_PinSocket_1.27mm -PinSocket_1x10_P1.27mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x10, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated -Surface mounted socket strip SMD 1x10 1.27mm single row style2 pin1 right -0 -10 -10 -Connector_PinSocket_1.27mm -PinSocket_1x11_P1.27mm_Vertical -Through hole straight socket strip, 1x11, 1.27mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x11 1.27mm single row -0 -11 -11 -Connector_PinSocket_1.27mm -PinSocket_1x11_P1.27mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x11, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated -Surface mounted socket strip SMD 1x11 1.27mm single row style1 pin1 left -0 -11 -11 -Connector_PinSocket_1.27mm -PinSocket_1x11_P1.27mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x11, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated -Surface mounted socket strip SMD 1x11 1.27mm single row style2 pin1 right -0 -11 -11 -Connector_PinSocket_1.27mm -PinSocket_1x12_P1.27mm_Vertical -Through hole straight socket strip, 1x12, 1.27mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x12 1.27mm single row -0 -12 -12 -Connector_PinSocket_1.27mm -PinSocket_1x12_P1.27mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x12, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated -Surface mounted socket strip SMD 1x12 1.27mm single row style1 pin1 left -0 -12 -12 -Connector_PinSocket_1.27mm -PinSocket_1x12_P1.27mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x12, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated -Surface mounted socket strip SMD 1x12 1.27mm single row style2 pin1 right -0 -12 -12 -Connector_PinSocket_1.27mm -PinSocket_1x13_P1.27mm_Vertical -Through hole straight socket strip, 1x13, 1.27mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x13 1.27mm single row -0 -13 -13 -Connector_PinSocket_1.27mm -PinSocket_1x13_P1.27mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x13, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated -Surface mounted socket strip SMD 1x13 1.27mm single row style1 pin1 left -0 -13 -13 -Connector_PinSocket_1.27mm -PinSocket_1x13_P1.27mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x13, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated -Surface mounted socket strip SMD 1x13 1.27mm single row style2 pin1 right -0 -13 -13 -Connector_PinSocket_1.27mm -PinSocket_1x14_P1.27mm_Vertical -Through hole straight socket strip, 1x14, 1.27mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x14 1.27mm single row -0 -14 -14 -Connector_PinSocket_1.27mm -PinSocket_1x14_P1.27mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x14, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated -Surface mounted socket strip SMD 1x14 1.27mm single row style1 pin1 left -0 -14 -14 -Connector_PinSocket_1.27mm -PinSocket_1x14_P1.27mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x14, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated -Surface mounted socket strip SMD 1x14 1.27mm single row style2 pin1 right -0 -14 -14 -Connector_PinSocket_1.27mm -PinSocket_1x15_P1.27mm_Vertical -Through hole straight socket strip, 1x15, 1.27mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x15 1.27mm single row -0 -15 -15 -Connector_PinSocket_1.27mm -PinSocket_1x15_P1.27mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x15, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated -Surface mounted socket strip SMD 1x15 1.27mm single row style1 pin1 left -0 -15 -15 -Connector_PinSocket_1.27mm -PinSocket_1x15_P1.27mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x15, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated -Surface mounted socket strip SMD 1x15 1.27mm single row style2 pin1 right -0 -15 -15 -Connector_PinSocket_1.27mm -PinSocket_1x16_P1.27mm_Vertical -Through hole straight socket strip, 1x16, 1.27mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x16 1.27mm single row -0 -16 -16 -Connector_PinSocket_1.27mm -PinSocket_1x16_P1.27mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x16, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated -Surface mounted socket strip SMD 1x16 1.27mm single row style1 pin1 left -0 -16 -16 -Connector_PinSocket_1.27mm -PinSocket_1x16_P1.27mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x16, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated -Surface mounted socket strip SMD 1x16 1.27mm single row style2 pin1 right -0 -16 -16 -Connector_PinSocket_1.27mm -PinSocket_1x17_P1.27mm_Vertical -Through hole straight socket strip, 1x17, 1.27mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x17 1.27mm single row -0 -17 -17 -Connector_PinSocket_1.27mm -PinSocket_1x17_P1.27mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x17, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated -Surface mounted socket strip SMD 1x17 1.27mm single row style1 pin1 left -0 -17 -17 -Connector_PinSocket_1.27mm -PinSocket_1x17_P1.27mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x17, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated -Surface mounted socket strip SMD 1x17 1.27mm single row style2 pin1 right -0 -17 -17 -Connector_PinSocket_1.27mm -PinSocket_1x18_P1.27mm_Vertical -Through hole straight socket strip, 1x18, 1.27mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x18 1.27mm single row -0 -18 -18 -Connector_PinSocket_1.27mm -PinSocket_1x18_P1.27mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x18, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated -Surface mounted socket strip SMD 1x18 1.27mm single row style1 pin1 left -0 -18 -18 -Connector_PinSocket_1.27mm -PinSocket_1x18_P1.27mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x18, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated -Surface mounted socket strip SMD 1x18 1.27mm single row style2 pin1 right -0 -18 -18 -Connector_PinSocket_1.27mm -PinSocket_1x19_P1.27mm_Vertical -Through hole straight socket strip, 1x19, 1.27mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x19 1.27mm single row -0 -19 -19 -Connector_PinSocket_1.27mm -PinSocket_1x19_P1.27mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x19, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated -Surface mounted socket strip SMD 1x19 1.27mm single row style1 pin1 left -0 -19 -19 -Connector_PinSocket_1.27mm -PinSocket_1x19_P1.27mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x19, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated -Surface mounted socket strip SMD 1x19 1.27mm single row style2 pin1 right -0 -19 -19 -Connector_PinSocket_1.27mm -PinSocket_1x20_P1.27mm_Vertical -Through hole straight socket strip, 1x20, 1.27mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x20 1.27mm single row -0 -20 -20 -Connector_PinSocket_1.27mm -PinSocket_1x20_P1.27mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x20, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated -Surface mounted socket strip SMD 1x20 1.27mm single row style1 pin1 left -0 -20 -20 -Connector_PinSocket_1.27mm -PinSocket_1x20_P1.27mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x20, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated -Surface mounted socket strip SMD 1x20 1.27mm single row style2 pin1 right -0 -20 -20 -Connector_PinSocket_1.27mm -PinSocket_1x21_P1.27mm_Vertical -Through hole straight socket strip, 1x21, 1.27mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x21 1.27mm single row -0 -21 -21 -Connector_PinSocket_1.27mm -PinSocket_1x21_P1.27mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x21, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated -Surface mounted socket strip SMD 1x21 1.27mm single row style1 pin1 left -0 -21 -21 -Connector_PinSocket_1.27mm -PinSocket_1x21_P1.27mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x21, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated -Surface mounted socket strip SMD 1x21 1.27mm single row style2 pin1 right -0 -21 -21 -Connector_PinSocket_1.27mm -PinSocket_1x22_P1.27mm_Vertical -Through hole straight socket strip, 1x22, 1.27mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x22 1.27mm single row -0 -22 -22 -Connector_PinSocket_1.27mm -PinSocket_1x22_P1.27mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x22, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated -Surface mounted socket strip SMD 1x22 1.27mm single row style1 pin1 left -0 -22 -22 -Connector_PinSocket_1.27mm -PinSocket_1x22_P1.27mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x22, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated -Surface mounted socket strip SMD 1x22 1.27mm single row style2 pin1 right -0 -22 -22 -Connector_PinSocket_1.27mm -PinSocket_1x23_P1.27mm_Vertical -Through hole straight socket strip, 1x23, 1.27mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x23 1.27mm single row -0 -23 -23 -Connector_PinSocket_1.27mm -PinSocket_1x23_P1.27mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x23, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated -Surface mounted socket strip SMD 1x23 1.27mm single row style1 pin1 left -0 -23 -23 -Connector_PinSocket_1.27mm -PinSocket_1x23_P1.27mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x23, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated -Surface mounted socket strip SMD 1x23 1.27mm single row style2 pin1 right -0 -23 -23 -Connector_PinSocket_1.27mm -PinSocket_1x24_P1.27mm_Vertical -Through hole straight socket strip, 1x24, 1.27mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x24 1.27mm single row -0 -24 -24 -Connector_PinSocket_1.27mm -PinSocket_1x24_P1.27mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x24, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated -Surface mounted socket strip SMD 1x24 1.27mm single row style1 pin1 left -0 -24 -24 -Connector_PinSocket_1.27mm -PinSocket_1x24_P1.27mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x24, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated -Surface mounted socket strip SMD 1x24 1.27mm single row style2 pin1 right -0 -24 -24 -Connector_PinSocket_1.27mm -PinSocket_1x25_P1.27mm_Vertical -Through hole straight socket strip, 1x25, 1.27mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x25 1.27mm single row -0 -25 -25 -Connector_PinSocket_1.27mm -PinSocket_1x25_P1.27mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x25, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated -Surface mounted socket strip SMD 1x25 1.27mm single row style1 pin1 left -0 -25 -25 -Connector_PinSocket_1.27mm -PinSocket_1x25_P1.27mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x25, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated -Surface mounted socket strip SMD 1x25 1.27mm single row style2 pin1 right -0 -25 -25 -Connector_PinSocket_1.27mm -PinSocket_1x26_P1.27mm_Vertical -Through hole straight socket strip, 1x26, 1.27mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x26 1.27mm single row -0 -26 -26 -Connector_PinSocket_1.27mm -PinSocket_1x26_P1.27mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x26, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated -Surface mounted socket strip SMD 1x26 1.27mm single row style1 pin1 left -0 -26 -26 -Connector_PinSocket_1.27mm -PinSocket_1x26_P1.27mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x26, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated -Surface mounted socket strip SMD 1x26 1.27mm single row style2 pin1 right -0 -26 -26 -Connector_PinSocket_1.27mm -PinSocket_1x27_P1.27mm_Vertical -Through hole straight socket strip, 1x27, 1.27mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x27 1.27mm single row -0 -27 -27 -Connector_PinSocket_1.27mm -PinSocket_1x27_P1.27mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x27, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated -Surface mounted socket strip SMD 1x27 1.27mm single row style1 pin1 left -0 -27 -27 -Connector_PinSocket_1.27mm -PinSocket_1x27_P1.27mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x27, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated -Surface mounted socket strip SMD 1x27 1.27mm single row style2 pin1 right -0 -27 -27 -Connector_PinSocket_1.27mm -PinSocket_1x28_P1.27mm_Vertical -Through hole straight socket strip, 1x28, 1.27mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x28 1.27mm single row -0 -28 -28 -Connector_PinSocket_1.27mm -PinSocket_1x28_P1.27mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x28, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated -Surface mounted socket strip SMD 1x28 1.27mm single row style1 pin1 left -0 -28 -28 -Connector_PinSocket_1.27mm -PinSocket_1x28_P1.27mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x28, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated -Surface mounted socket strip SMD 1x28 1.27mm single row style2 pin1 right -0 -28 -28 -Connector_PinSocket_1.27mm -PinSocket_1x29_P1.27mm_Vertical -Through hole straight socket strip, 1x29, 1.27mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x29 1.27mm single row -0 -29 -29 -Connector_PinSocket_1.27mm -PinSocket_1x29_P1.27mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x29, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated -Surface mounted socket strip SMD 1x29 1.27mm single row style1 pin1 left -0 -29 -29 -Connector_PinSocket_1.27mm -PinSocket_1x29_P1.27mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x29, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated -Surface mounted socket strip SMD 1x29 1.27mm single row style2 pin1 right -0 -29 -29 -Connector_PinSocket_1.27mm -PinSocket_1x30_P1.27mm_Vertical -Through hole straight socket strip, 1x30, 1.27mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x30 1.27mm single row -0 -30 -30 -Connector_PinSocket_1.27mm -PinSocket_1x30_P1.27mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x30, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated -Surface mounted socket strip SMD 1x30 1.27mm single row style1 pin1 left -0 -30 -30 -Connector_PinSocket_1.27mm -PinSocket_1x30_P1.27mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x30, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated -Surface mounted socket strip SMD 1x30 1.27mm single row style2 pin1 right -0 -30 -30 -Connector_PinSocket_1.27mm -PinSocket_1x31_P1.27mm_Vertical -Through hole straight socket strip, 1x31, 1.27mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x31 1.27mm single row -0 -31 -31 -Connector_PinSocket_1.27mm -PinSocket_1x31_P1.27mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x31, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated -Surface mounted socket strip SMD 1x31 1.27mm single row style1 pin1 left -0 -31 -31 -Connector_PinSocket_1.27mm -PinSocket_1x31_P1.27mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x31, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated -Surface mounted socket strip SMD 1x31 1.27mm single row style2 pin1 right -0 -31 -31 -Connector_PinSocket_1.27mm -PinSocket_1x32_P1.27mm_Vertical -Through hole straight socket strip, 1x32, 1.27mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x32 1.27mm single row -0 -32 -32 -Connector_PinSocket_1.27mm -PinSocket_1x32_P1.27mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x32, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated -Surface mounted socket strip SMD 1x32 1.27mm single row style1 pin1 left -0 -32 -32 -Connector_PinSocket_1.27mm -PinSocket_1x32_P1.27mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x32, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated -Surface mounted socket strip SMD 1x32 1.27mm single row style2 pin1 right -0 -32 -32 -Connector_PinSocket_1.27mm -PinSocket_1x33_P1.27mm_Vertical -Through hole straight socket strip, 1x33, 1.27mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x33 1.27mm single row -0 -33 -33 -Connector_PinSocket_1.27mm -PinSocket_1x33_P1.27mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x33, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated -Surface mounted socket strip SMD 1x33 1.27mm single row style1 pin1 left -0 -33 -33 -Connector_PinSocket_1.27mm -PinSocket_1x33_P1.27mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x33, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated -Surface mounted socket strip SMD 1x33 1.27mm single row style2 pin1 right -0 -33 -33 -Connector_PinSocket_1.27mm -PinSocket_1x34_P1.27mm_Vertical -Through hole straight socket strip, 1x34, 1.27mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x34 1.27mm single row -0 -34 -34 -Connector_PinSocket_1.27mm -PinSocket_1x34_P1.27mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x34, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated -Surface mounted socket strip SMD 1x34 1.27mm single row style1 pin1 left -0 -34 -34 -Connector_PinSocket_1.27mm -PinSocket_1x34_P1.27mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x34, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated -Surface mounted socket strip SMD 1x34 1.27mm single row style2 pin1 right -0 -34 -34 -Connector_PinSocket_1.27mm -PinSocket_1x35_P1.27mm_Vertical -Through hole straight socket strip, 1x35, 1.27mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x35 1.27mm single row -0 -35 -35 -Connector_PinSocket_1.27mm -PinSocket_1x35_P1.27mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x35, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated -Surface mounted socket strip SMD 1x35 1.27mm single row style1 pin1 left -0 -35 -35 -Connector_PinSocket_1.27mm -PinSocket_1x35_P1.27mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x35, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated -Surface mounted socket strip SMD 1x35 1.27mm single row style2 pin1 right -0 -35 -35 -Connector_PinSocket_1.27mm -PinSocket_1x36_P1.27mm_Vertical -Through hole straight socket strip, 1x36, 1.27mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x36 1.27mm single row -0 -36 -36 -Connector_PinSocket_1.27mm -PinSocket_1x36_P1.27mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x36, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated -Surface mounted socket strip SMD 1x36 1.27mm single row style1 pin1 left -0 -36 -36 -Connector_PinSocket_1.27mm -PinSocket_1x36_P1.27mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x36, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated -Surface mounted socket strip SMD 1x36 1.27mm single row style2 pin1 right -0 -36 -36 -Connector_PinSocket_1.27mm -PinSocket_1x37_P1.27mm_Vertical -Through hole straight socket strip, 1x37, 1.27mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x37 1.27mm single row -0 -37 -37 -Connector_PinSocket_1.27mm -PinSocket_1x37_P1.27mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x37, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated -Surface mounted socket strip SMD 1x37 1.27mm single row style1 pin1 left -0 -37 -37 -Connector_PinSocket_1.27mm -PinSocket_1x37_P1.27mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x37, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated -Surface mounted socket strip SMD 1x37 1.27mm single row style2 pin1 right -0 -37 -37 -Connector_PinSocket_1.27mm -PinSocket_1x38_P1.27mm_Vertical -Through hole straight socket strip, 1x38, 1.27mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x38 1.27mm single row -0 -38 -38 -Connector_PinSocket_1.27mm -PinSocket_1x38_P1.27mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x38, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated -Surface mounted socket strip SMD 1x38 1.27mm single row style1 pin1 left -0 -38 -38 -Connector_PinSocket_1.27mm -PinSocket_1x38_P1.27mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x38, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated -Surface mounted socket strip SMD 1x38 1.27mm single row style2 pin1 right -0 -38 -38 -Connector_PinSocket_1.27mm -PinSocket_1x39_P1.27mm_Vertical -Through hole straight socket strip, 1x39, 1.27mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x39 1.27mm single row -0 -39 -39 -Connector_PinSocket_1.27mm -PinSocket_1x39_P1.27mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x39, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated -Surface mounted socket strip SMD 1x39 1.27mm single row style1 pin1 left -0 -39 -39 -Connector_PinSocket_1.27mm -PinSocket_1x39_P1.27mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x39, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated -Surface mounted socket strip SMD 1x39 1.27mm single row style2 pin1 right -0 -39 -39 -Connector_PinSocket_1.27mm -PinSocket_1x40_P1.27mm_Vertical -Through hole straight socket strip, 1x40, 1.27mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x40 1.27mm single row -0 -40 -40 -Connector_PinSocket_1.27mm -PinSocket_1x40_P1.27mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x40, 1.27mm pitch, single row, style 1 (pin 1 left) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated -Surface mounted socket strip SMD 1x40 1.27mm single row style1 pin1 left -0 -40 -40 -Connector_PinSocket_1.27mm -PinSocket_1x40_P1.27mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x40, 1.27mm pitch, single row, style 2 (pin 1 right) (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD075.pdf&t=1511594726925), script generated -Surface mounted socket strip SMD 1x40 1.27mm single row style2 pin1 right -0 -40 -40 -Connector_PinSocket_1.27mm -PinSocket_2x01_P1.27mm_Vertical -Through hole straight socket strip, 2x01, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x01 1.27mm double row -0 -2 -2 -Connector_PinSocket_1.27mm -PinSocket_2x01_P1.27mm_Vertical_SMD -surface-mounted straight socket strip, 2x01, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated -Surface mounted socket strip SMD 2x01 1.27mm double row -0 -2 -2 -Connector_PinSocket_1.27mm -PinSocket_2x02_P1.27mm_Vertical -Through hole straight socket strip, 2x02, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x02 1.27mm double row -0 -4 -4 -Connector_PinSocket_1.27mm -PinSocket_2x02_P1.27mm_Vertical_SMD -surface-mounted straight socket strip, 2x02, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated -Surface mounted socket strip SMD 2x02 1.27mm double row -0 -4 -4 -Connector_PinSocket_1.27mm -PinSocket_2x03_P1.27mm_Horizontal -Through hole angled socket strip, 2x03, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated -Through hole angled socket strip THT 2x03 1.27mm double row -0 -6 -6 -Connector_PinSocket_1.27mm -PinSocket_2x03_P1.27mm_Vertical -Through hole straight socket strip, 2x03, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x03 1.27mm double row -0 -6 -6 -Connector_PinSocket_1.27mm -PinSocket_2x03_P1.27mm_Vertical_SMD -surface-mounted straight socket strip, 2x03, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated -Surface mounted socket strip SMD 2x03 1.27mm double row -0 -6 -6 -Connector_PinSocket_1.27mm -PinSocket_2x04_P1.27mm_Horizontal -Through hole angled socket strip, 2x04, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated -Through hole angled socket strip THT 2x04 1.27mm double row -0 -8 -8 -Connector_PinSocket_1.27mm -PinSocket_2x04_P1.27mm_Vertical -Through hole straight socket strip, 2x04, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x04 1.27mm double row -0 -8 -8 -Connector_PinSocket_1.27mm -PinSocket_2x04_P1.27mm_Vertical_SMD -surface-mounted straight socket strip, 2x04, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated -Surface mounted socket strip SMD 2x04 1.27mm double row -0 -8 -8 -Connector_PinSocket_1.27mm -PinSocket_2x05_P1.27mm_Horizontal -Through hole angled socket strip, 2x05, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated -Through hole angled socket strip THT 2x05 1.27mm double row -0 -10 -10 -Connector_PinSocket_1.27mm -PinSocket_2x05_P1.27mm_Vertical -Through hole straight socket strip, 2x05, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x05 1.27mm double row -0 -10 -10 -Connector_PinSocket_1.27mm -PinSocket_2x05_P1.27mm_Vertical_SMD -surface-mounted straight socket strip, 2x05, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated -Surface mounted socket strip SMD 2x05 1.27mm double row -0 -10 -10 -Connector_PinSocket_1.27mm -PinSocket_2x06_P1.27mm_Horizontal -Through hole angled socket strip, 2x06, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated -Through hole angled socket strip THT 2x06 1.27mm double row -0 -12 -12 -Connector_PinSocket_1.27mm -PinSocket_2x06_P1.27mm_Vertical -Through hole straight socket strip, 2x06, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x06 1.27mm double row -0 -12 -12 -Connector_PinSocket_1.27mm -PinSocket_2x06_P1.27mm_Vertical_SMD -surface-mounted straight socket strip, 2x06, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated -Surface mounted socket strip SMD 2x06 1.27mm double row -0 -12 -12 -Connector_PinSocket_1.27mm -PinSocket_2x07_P1.27mm_Horizontal -Through hole angled socket strip, 2x07, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated -Through hole angled socket strip THT 2x07 1.27mm double row -0 -14 -14 -Connector_PinSocket_1.27mm -PinSocket_2x07_P1.27mm_Vertical -Through hole straight socket strip, 2x07, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x07 1.27mm double row -0 -14 -14 -Connector_PinSocket_1.27mm -PinSocket_2x07_P1.27mm_Vertical_SMD -surface-mounted straight socket strip, 2x07, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated -Surface mounted socket strip SMD 2x07 1.27mm double row -0 -14 -14 -Connector_PinSocket_1.27mm -PinSocket_2x08_P1.27mm_Horizontal -Through hole angled socket strip, 2x08, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated -Through hole angled socket strip THT 2x08 1.27mm double row -0 -16 -16 -Connector_PinSocket_1.27mm -PinSocket_2x08_P1.27mm_Vertical -Through hole straight socket strip, 2x08, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x08 1.27mm double row -0 -16 -16 -Connector_PinSocket_1.27mm -PinSocket_2x08_P1.27mm_Vertical_SMD -surface-mounted straight socket strip, 2x08, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated -Surface mounted socket strip SMD 2x08 1.27mm double row -0 -16 -16 -Connector_PinSocket_1.27mm -PinSocket_2x09_P1.27mm_Horizontal -Through hole angled socket strip, 2x09, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated -Through hole angled socket strip THT 2x09 1.27mm double row -0 -18 -18 -Connector_PinSocket_1.27mm -PinSocket_2x09_P1.27mm_Vertical -Through hole straight socket strip, 2x09, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x09 1.27mm double row -0 -18 -18 -Connector_PinSocket_1.27mm -PinSocket_2x09_P1.27mm_Vertical_SMD -surface-mounted straight socket strip, 2x09, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated -Surface mounted socket strip SMD 2x09 1.27mm double row -0 -18 -18 -Connector_PinSocket_1.27mm -PinSocket_2x10_P1.27mm_Horizontal -Through hole angled socket strip, 2x10, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated -Through hole angled socket strip THT 2x10 1.27mm double row -0 -20 -20 -Connector_PinSocket_1.27mm -PinSocket_2x10_P1.27mm_Vertical -Through hole straight socket strip, 2x10, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x10 1.27mm double row -0 -20 -20 -Connector_PinSocket_1.27mm -PinSocket_2x10_P1.27mm_Vertical_SMD -surface-mounted straight socket strip, 2x10, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated -Surface mounted socket strip SMD 2x10 1.27mm double row -0 -20 -20 -Connector_PinSocket_1.27mm -PinSocket_2x11_P1.27mm_Horizontal -Through hole angled socket strip, 2x11, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated -Through hole angled socket strip THT 2x11 1.27mm double row -0 -22 -22 -Connector_PinSocket_1.27mm -PinSocket_2x11_P1.27mm_Vertical -Through hole straight socket strip, 2x11, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x11 1.27mm double row -0 -22 -22 -Connector_PinSocket_1.27mm -PinSocket_2x11_P1.27mm_Vertical_SMD -surface-mounted straight socket strip, 2x11, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated -Surface mounted socket strip SMD 2x11 1.27mm double row -0 -22 -22 -Connector_PinSocket_1.27mm -PinSocket_2x12_P1.27mm_Horizontal -Through hole angled socket strip, 2x12, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated -Through hole angled socket strip THT 2x12 1.27mm double row -0 -24 -24 -Connector_PinSocket_1.27mm -PinSocket_2x12_P1.27mm_Vertical -Through hole straight socket strip, 2x12, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x12 1.27mm double row -0 -24 -24 -Connector_PinSocket_1.27mm -PinSocket_2x12_P1.27mm_Vertical_SMD -surface-mounted straight socket strip, 2x12, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated -Surface mounted socket strip SMD 2x12 1.27mm double row -0 -24 -24 -Connector_PinSocket_1.27mm -PinSocket_2x13_P1.27mm_Horizontal -Through hole angled socket strip, 2x13, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated -Through hole angled socket strip THT 2x13 1.27mm double row -0 -26 -26 -Connector_PinSocket_1.27mm -PinSocket_2x13_P1.27mm_Vertical -Through hole straight socket strip, 2x13, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x13 1.27mm double row -0 -26 -26 -Connector_PinSocket_1.27mm -PinSocket_2x13_P1.27mm_Vertical_SMD -surface-mounted straight socket strip, 2x13, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated -Surface mounted socket strip SMD 2x13 1.27mm double row -0 -26 -26 -Connector_PinSocket_1.27mm -PinSocket_2x14_P1.27mm_Horizontal -Through hole angled socket strip, 2x14, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated -Through hole angled socket strip THT 2x14 1.27mm double row -0 -28 -28 -Connector_PinSocket_1.27mm -PinSocket_2x14_P1.27mm_Vertical -Through hole straight socket strip, 2x14, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x14 1.27mm double row -0 -28 -28 -Connector_PinSocket_1.27mm -PinSocket_2x14_P1.27mm_Vertical_SMD -surface-mounted straight socket strip, 2x14, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated -Surface mounted socket strip SMD 2x14 1.27mm double row -0 -28 -28 -Connector_PinSocket_1.27mm -PinSocket_2x15_P1.27mm_Horizontal -Through hole angled socket strip, 2x15, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated -Through hole angled socket strip THT 2x15 1.27mm double row -0 -30 -30 -Connector_PinSocket_1.27mm -PinSocket_2x15_P1.27mm_Vertical -Through hole straight socket strip, 2x15, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x15 1.27mm double row -0 -30 -30 -Connector_PinSocket_1.27mm -PinSocket_2x15_P1.27mm_Vertical_SMD -surface-mounted straight socket strip, 2x15, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated -Surface mounted socket strip SMD 2x15 1.27mm double row -0 -30 -30 -Connector_PinSocket_1.27mm -PinSocket_2x16_P1.27mm_Horizontal -Through hole angled socket strip, 2x16, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated -Through hole angled socket strip THT 2x16 1.27mm double row -0 -32 -32 -Connector_PinSocket_1.27mm -PinSocket_2x16_P1.27mm_Vertical -Through hole straight socket strip, 2x16, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x16 1.27mm double row -0 -32 -32 -Connector_PinSocket_1.27mm -PinSocket_2x16_P1.27mm_Vertical_SMD -surface-mounted straight socket strip, 2x16, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated -Surface mounted socket strip SMD 2x16 1.27mm double row -0 -32 -32 -Connector_PinSocket_1.27mm -PinSocket_2x17_P1.27mm_Horizontal -Through hole angled socket strip, 2x17, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated -Through hole angled socket strip THT 2x17 1.27mm double row -0 -34 -34 -Connector_PinSocket_1.27mm -PinSocket_2x17_P1.27mm_Vertical -Through hole straight socket strip, 2x17, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x17 1.27mm double row -0 -34 -34 -Connector_PinSocket_1.27mm -PinSocket_2x17_P1.27mm_Vertical_SMD -surface-mounted straight socket strip, 2x17, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated -Surface mounted socket strip SMD 2x17 1.27mm double row -0 -34 -34 -Connector_PinSocket_1.27mm -PinSocket_2x18_P1.27mm_Horizontal -Through hole angled socket strip, 2x18, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated -Through hole angled socket strip THT 2x18 1.27mm double row -0 -36 -36 -Connector_PinSocket_1.27mm -PinSocket_2x18_P1.27mm_Vertical -Through hole straight socket strip, 2x18, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x18 1.27mm double row -0 -36 -36 -Connector_PinSocket_1.27mm -PinSocket_2x18_P1.27mm_Vertical_SMD -surface-mounted straight socket strip, 2x18, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated -Surface mounted socket strip SMD 2x18 1.27mm double row -0 -36 -36 -Connector_PinSocket_1.27mm -PinSocket_2x19_P1.27mm_Horizontal -Through hole angled socket strip, 2x19, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated -Through hole angled socket strip THT 2x19 1.27mm double row -0 -38 -38 -Connector_PinSocket_1.27mm -PinSocket_2x19_P1.27mm_Vertical -Through hole straight socket strip, 2x19, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x19 1.27mm double row -0 -38 -38 -Connector_PinSocket_1.27mm -PinSocket_2x19_P1.27mm_Vertical_SMD -surface-mounted straight socket strip, 2x19, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated -Surface mounted socket strip SMD 2x19 1.27mm double row -0 -38 -38 -Connector_PinSocket_1.27mm -PinSocket_2x20_P1.27mm_Horizontal -Through hole angled socket strip, 2x20, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated -Through hole angled socket strip THT 2x20 1.27mm double row -0 -40 -40 -Connector_PinSocket_1.27mm -PinSocket_2x20_P1.27mm_Vertical -Through hole straight socket strip, 2x20, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x20 1.27mm double row -0 -40 -40 -Connector_PinSocket_1.27mm -PinSocket_2x20_P1.27mm_Vertical_SMD -surface-mounted straight socket strip, 2x20, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated -Surface mounted socket strip SMD 2x20 1.27mm double row -0 -40 -40 -Connector_PinSocket_1.27mm -PinSocket_2x21_P1.27mm_Horizontal -Through hole angled socket strip, 2x21, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated -Through hole angled socket strip THT 2x21 1.27mm double row -0 -42 -42 -Connector_PinSocket_1.27mm -PinSocket_2x21_P1.27mm_Vertical -Through hole straight socket strip, 2x21, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x21 1.27mm double row -0 -42 -42 -Connector_PinSocket_1.27mm -PinSocket_2x21_P1.27mm_Vertical_SMD -surface-mounted straight socket strip, 2x21, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated -Surface mounted socket strip SMD 2x21 1.27mm double row -0 -42 -42 -Connector_PinSocket_1.27mm -PinSocket_2x22_P1.27mm_Horizontal -Through hole angled socket strip, 2x22, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated -Through hole angled socket strip THT 2x22 1.27mm double row -0 -44 -44 -Connector_PinSocket_1.27mm -PinSocket_2x22_P1.27mm_Vertical -Through hole straight socket strip, 2x22, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x22 1.27mm double row -0 -44 -44 -Connector_PinSocket_1.27mm -PinSocket_2x22_P1.27mm_Vertical_SMD -surface-mounted straight socket strip, 2x22, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated -Surface mounted socket strip SMD 2x22 1.27mm double row -0 -44 -44 -Connector_PinSocket_1.27mm -PinSocket_2x23_P1.27mm_Horizontal -Through hole angled socket strip, 2x23, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated -Through hole angled socket strip THT 2x23 1.27mm double row -0 -46 -46 -Connector_PinSocket_1.27mm -PinSocket_2x23_P1.27mm_Vertical -Through hole straight socket strip, 2x23, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x23 1.27mm double row -0 -46 -46 -Connector_PinSocket_1.27mm -PinSocket_2x23_P1.27mm_Vertical_SMD -surface-mounted straight socket strip, 2x23, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated -Surface mounted socket strip SMD 2x23 1.27mm double row -0 -46 -46 -Connector_PinSocket_1.27mm -PinSocket_2x24_P1.27mm_Horizontal -Through hole angled socket strip, 2x24, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated -Through hole angled socket strip THT 2x24 1.27mm double row -0 -48 -48 -Connector_PinSocket_1.27mm -PinSocket_2x24_P1.27mm_Vertical -Through hole straight socket strip, 2x24, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x24 1.27mm double row -0 -48 -48 -Connector_PinSocket_1.27mm -PinSocket_2x24_P1.27mm_Vertical_SMD -surface-mounted straight socket strip, 2x24, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated -Surface mounted socket strip SMD 2x24 1.27mm double row -0 -48 -48 -Connector_PinSocket_1.27mm -PinSocket_2x25_P1.27mm_Horizontal -Through hole angled socket strip, 2x25, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated -Through hole angled socket strip THT 2x25 1.27mm double row -0 -50 -50 -Connector_PinSocket_1.27mm -PinSocket_2x25_P1.27mm_Vertical -Through hole straight socket strip, 2x25, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x25 1.27mm double row -0 -50 -50 -Connector_PinSocket_1.27mm -PinSocket_2x25_P1.27mm_Vertical_SMD -surface-mounted straight socket strip, 2x25, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated -Surface mounted socket strip SMD 2x25 1.27mm double row -0 -50 -50 -Connector_PinSocket_1.27mm -PinSocket_2x26_P1.27mm_Horizontal -Through hole angled socket strip, 2x26, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated -Through hole angled socket strip THT 2x26 1.27mm double row -0 -52 -52 -Connector_PinSocket_1.27mm -PinSocket_2x26_P1.27mm_Vertical -Through hole straight socket strip, 2x26, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x26 1.27mm double row -0 -52 -52 -Connector_PinSocket_1.27mm -PinSocket_2x26_P1.27mm_Vertical_SMD -surface-mounted straight socket strip, 2x26, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated -Surface mounted socket strip SMD 2x26 1.27mm double row -0 -52 -52 -Connector_PinSocket_1.27mm -PinSocket_2x27_P1.27mm_Horizontal -Through hole angled socket strip, 2x27, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated -Through hole angled socket strip THT 2x27 1.27mm double row -0 -54 -54 -Connector_PinSocket_1.27mm -PinSocket_2x27_P1.27mm_Vertical -Through hole straight socket strip, 2x27, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x27 1.27mm double row -0 -54 -54 -Connector_PinSocket_1.27mm -PinSocket_2x27_P1.27mm_Vertical_SMD -surface-mounted straight socket strip, 2x27, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated -Surface mounted socket strip SMD 2x27 1.27mm double row -0 -54 -54 -Connector_PinSocket_1.27mm -PinSocket_2x28_P1.27mm_Horizontal -Through hole angled socket strip, 2x28, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated -Through hole angled socket strip THT 2x28 1.27mm double row -0 -56 -56 -Connector_PinSocket_1.27mm -PinSocket_2x28_P1.27mm_Vertical -Through hole straight socket strip, 2x28, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x28 1.27mm double row -0 -56 -56 -Connector_PinSocket_1.27mm -PinSocket_2x28_P1.27mm_Vertical_SMD -surface-mounted straight socket strip, 2x28, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated -Surface mounted socket strip SMD 2x28 1.27mm double row -0 -56 -56 -Connector_PinSocket_1.27mm -PinSocket_2x29_P1.27mm_Horizontal -Through hole angled socket strip, 2x29, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated -Through hole angled socket strip THT 2x29 1.27mm double row -0 -58 -58 -Connector_PinSocket_1.27mm -PinSocket_2x29_P1.27mm_Vertical -Through hole straight socket strip, 2x29, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x29 1.27mm double row -0 -58 -58 -Connector_PinSocket_1.27mm -PinSocket_2x29_P1.27mm_Vertical_SMD -surface-mounted straight socket strip, 2x29, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated -Surface mounted socket strip SMD 2x29 1.27mm double row -0 -58 -58 -Connector_PinSocket_1.27mm -PinSocket_2x30_P1.27mm_Horizontal -Through hole angled socket strip, 2x30, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated -Through hole angled socket strip THT 2x30 1.27mm double row -0 -60 -60 -Connector_PinSocket_1.27mm -PinSocket_2x30_P1.27mm_Vertical -Through hole straight socket strip, 2x30, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x30 1.27mm double row -0 -60 -60 -Connector_PinSocket_1.27mm -PinSocket_2x30_P1.27mm_Vertical_SMD -surface-mounted straight socket strip, 2x30, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated -Surface mounted socket strip SMD 2x30 1.27mm double row -0 -60 -60 -Connector_PinSocket_1.27mm -PinSocket_2x31_P1.27mm_Horizontal -Through hole angled socket strip, 2x31, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated -Through hole angled socket strip THT 2x31 1.27mm double row -0 -62 -62 -Connector_PinSocket_1.27mm -PinSocket_2x31_P1.27mm_Vertical -Through hole straight socket strip, 2x31, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x31 1.27mm double row -0 -62 -62 -Connector_PinSocket_1.27mm -PinSocket_2x31_P1.27mm_Vertical_SMD -surface-mounted straight socket strip, 2x31, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated -Surface mounted socket strip SMD 2x31 1.27mm double row -0 -62 -62 -Connector_PinSocket_1.27mm -PinSocket_2x32_P1.27mm_Horizontal -Through hole angled socket strip, 2x32, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated -Through hole angled socket strip THT 2x32 1.27mm double row -0 -64 -64 -Connector_PinSocket_1.27mm -PinSocket_2x32_P1.27mm_Vertical -Through hole straight socket strip, 2x32, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x32 1.27mm double row -0 -64 -64 -Connector_PinSocket_1.27mm -PinSocket_2x32_P1.27mm_Vertical_SMD -surface-mounted straight socket strip, 2x32, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated -Surface mounted socket strip SMD 2x32 1.27mm double row -0 -64 -64 -Connector_PinSocket_1.27mm -PinSocket_2x33_P1.27mm_Horizontal -Through hole angled socket strip, 2x33, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated -Through hole angled socket strip THT 2x33 1.27mm double row -0 -66 -66 -Connector_PinSocket_1.27mm -PinSocket_2x33_P1.27mm_Vertical -Through hole straight socket strip, 2x33, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x33 1.27mm double row -0 -66 -66 -Connector_PinSocket_1.27mm -PinSocket_2x33_P1.27mm_Vertical_SMD -surface-mounted straight socket strip, 2x33, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated -Surface mounted socket strip SMD 2x33 1.27mm double row -0 -66 -66 -Connector_PinSocket_1.27mm -PinSocket_2x34_P1.27mm_Horizontal -Through hole angled socket strip, 2x34, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated -Through hole angled socket strip THT 2x34 1.27mm double row -0 -68 -68 -Connector_PinSocket_1.27mm -PinSocket_2x34_P1.27mm_Vertical -Through hole straight socket strip, 2x34, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x34 1.27mm double row -0 -68 -68 -Connector_PinSocket_1.27mm -PinSocket_2x34_P1.27mm_Vertical_SMD -surface-mounted straight socket strip, 2x34, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated -Surface mounted socket strip SMD 2x34 1.27mm double row -0 -68 -68 -Connector_PinSocket_1.27mm -PinSocket_2x35_P1.27mm_Horizontal -Through hole angled socket strip, 2x35, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated -Through hole angled socket strip THT 2x35 1.27mm double row -0 -70 -70 -Connector_PinSocket_1.27mm -PinSocket_2x35_P1.27mm_Vertical -Through hole straight socket strip, 2x35, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x35 1.27mm double row -0 -70 -70 -Connector_PinSocket_1.27mm -PinSocket_2x35_P1.27mm_Vertical_SMD -surface-mounted straight socket strip, 2x35, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated -Surface mounted socket strip SMD 2x35 1.27mm double row -0 -70 -70 -Connector_PinSocket_1.27mm -PinSocket_2x36_P1.27mm_Horizontal -Through hole angled socket strip, 2x36, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated -Through hole angled socket strip THT 2x36 1.27mm double row -0 -72 -72 -Connector_PinSocket_1.27mm -PinSocket_2x36_P1.27mm_Vertical -Through hole straight socket strip, 2x36, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x36 1.27mm double row -0 -72 -72 -Connector_PinSocket_1.27mm -PinSocket_2x36_P1.27mm_Vertical_SMD -surface-mounted straight socket strip, 2x36, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated -Surface mounted socket strip SMD 2x36 1.27mm double row -0 -72 -72 -Connector_PinSocket_1.27mm -PinSocket_2x37_P1.27mm_Horizontal -Through hole angled socket strip, 2x37, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated -Through hole angled socket strip THT 2x37 1.27mm double row -0 -74 -74 -Connector_PinSocket_1.27mm -PinSocket_2x37_P1.27mm_Vertical -Through hole straight socket strip, 2x37, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x37 1.27mm double row -0 -74 -74 -Connector_PinSocket_1.27mm -PinSocket_2x37_P1.27mm_Vertical_SMD -surface-mounted straight socket strip, 2x37, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated -Surface mounted socket strip SMD 2x37 1.27mm double row -0 -74 -74 -Connector_PinSocket_1.27mm -PinSocket_2x38_P1.27mm_Horizontal -Through hole angled socket strip, 2x38, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated -Through hole angled socket strip THT 2x38 1.27mm double row -0 -76 -76 -Connector_PinSocket_1.27mm -PinSocket_2x38_P1.27mm_Vertical -Through hole straight socket strip, 2x38, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x38 1.27mm double row -0 -76 -76 -Connector_PinSocket_1.27mm -PinSocket_2x38_P1.27mm_Vertical_SMD -surface-mounted straight socket strip, 2x38, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated -Surface mounted socket strip SMD 2x38 1.27mm double row -0 -76 -76 -Connector_PinSocket_1.27mm -PinSocket_2x39_P1.27mm_Horizontal -Through hole angled socket strip, 2x39, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated -Through hole angled socket strip THT 2x39 1.27mm double row -0 -78 -78 -Connector_PinSocket_1.27mm -PinSocket_2x39_P1.27mm_Vertical -Through hole straight socket strip, 2x39, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x39 1.27mm double row -0 -78 -78 -Connector_PinSocket_1.27mm -PinSocket_2x39_P1.27mm_Vertical_SMD -surface-mounted straight socket strip, 2x39, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated -Surface mounted socket strip SMD 2x39 1.27mm double row -0 -78 -78 -Connector_PinSocket_1.27mm -PinSocket_2x40_P1.27mm_Horizontal -Through hole angled socket strip, 2x40, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated -Through hole angled socket strip THT 2x40 1.27mm double row -0 -80 -80 -Connector_PinSocket_1.27mm -PinSocket_2x40_P1.27mm_Vertical -Through hole straight socket strip, 2x40, 1.27mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x40 1.27mm double row -0 -80 -80 -Connector_PinSocket_1.27mm -PinSocket_2x40_P1.27mm_Vertical_SMD -surface-mounted straight socket strip, 2x40, 1.27mm pitch, double cols (from Kicad 4.0.7!), script generated -Surface mounted socket strip SMD 2x40 1.27mm double row -0 -80 -80 -Connector_PinSocket_1.27mm -PinSocket_2x41_P1.27mm_Horizontal -Through hole angled socket strip, 2x41, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated -Through hole angled socket strip THT 2x41 1.27mm double row -0 -82 -82 -Connector_PinSocket_1.27mm -PinSocket_2x42_P1.27mm_Horizontal -Through hole angled socket strip, 2x42, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated -Through hole angled socket strip THT 2x42 1.27mm double row -0 -84 -84 -Connector_PinSocket_1.27mm -PinSocket_2x43_P1.27mm_Horizontal -Through hole angled socket strip, 2x43, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated -Through hole angled socket strip THT 2x43 1.27mm double row -0 -86 -86 -Connector_PinSocket_1.27mm -PinSocket_2x44_P1.27mm_Horizontal -Through hole angled socket strip, 2x44, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated -Through hole angled socket strip THT 2x44 1.27mm double row -0 -88 -88 -Connector_PinSocket_1.27mm -PinSocket_2x45_P1.27mm_Horizontal -Through hole angled socket strip, 2x45, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated -Through hole angled socket strip THT 2x45 1.27mm double row -0 -90 -90 -Connector_PinSocket_1.27mm -PinSocket_2x46_P1.27mm_Horizontal -Through hole angled socket strip, 2x46, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated -Through hole angled socket strip THT 2x46 1.27mm double row -0 -92 -92 -Connector_PinSocket_1.27mm -PinSocket_2x47_P1.27mm_Horizontal -Through hole angled socket strip, 2x47, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated -Through hole angled socket strip THT 2x47 1.27mm double row -0 -94 -94 -Connector_PinSocket_1.27mm -PinSocket_2x48_P1.27mm_Horizontal -Through hole angled socket strip, 2x48, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated -Through hole angled socket strip THT 2x48 1.27mm double row -0 -96 -96 -Connector_PinSocket_1.27mm -PinSocket_2x49_P1.27mm_Horizontal -Through hole angled socket strip, 2x49, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated -Through hole angled socket strip THT 2x49 1.27mm double row -0 -98 -98 -Connector_PinSocket_1.27mm -PinSocket_2x50_P1.27mm_Horizontal -Through hole angled socket strip, 2x50, 1.27mm pitch, 4.4mm socket length, double cols (https://gct.co/pdfjs/web/viewer.html?file=/Files/Drawings/BD091.pdf&t=1511594177220), script generated -Through hole angled socket strip THT 2x50 1.27mm double row -0 -100 -100 -Connector_PinSocket_2.00mm -PinSocket_1x01_P2.00mm_Horizontal -Through hole angled socket strip, 1x01, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 1x01 2.00mm single row -0 -1 -1 -Connector_PinSocket_2.00mm -PinSocket_1x01_P2.00mm_Vertical -Through hole straight socket strip, 1x01, 2.00mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x01 2.00mm single row -0 -1 -1 -Connector_PinSocket_2.00mm -PinSocket_1x02_P2.00mm_Horizontal -Through hole angled socket strip, 1x02, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 1x02 2.00mm single row -0 -2 -2 -Connector_PinSocket_2.00mm -PinSocket_1x02_P2.00mm_Vertical -Through hole straight socket strip, 1x02, 2.00mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x02 2.00mm single row -0 -2 -2 -Connector_PinSocket_2.00mm -PinSocket_1x02_P2.00mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x02, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated -Surface mounted socket strip SMD 1x02 2.00mm single row style1 pin1 left -0 -2 -2 -Connector_PinSocket_2.00mm -PinSocket_1x02_P2.00mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x02, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated -Surface mounted socket strip SMD 1x02 2.00mm single row style2 pin1 right -0 -2 -2 -Connector_PinSocket_2.00mm -PinSocket_1x03_P2.00mm_Horizontal -Through hole angled socket strip, 1x03, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 1x03 2.00mm single row -0 -3 -3 -Connector_PinSocket_2.00mm -PinSocket_1x03_P2.00mm_Vertical -Through hole straight socket strip, 1x03, 2.00mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x03 2.00mm single row -0 -3 -3 -Connector_PinSocket_2.00mm -PinSocket_1x03_P2.00mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x03, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated -Surface mounted socket strip SMD 1x03 2.00mm single row style1 pin1 left -0 -3 -3 -Connector_PinSocket_2.00mm -PinSocket_1x03_P2.00mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x03, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated -Surface mounted socket strip SMD 1x03 2.00mm single row style2 pin1 right -0 -3 -3 -Connector_PinSocket_2.00mm -PinSocket_1x04_P2.00mm_Horizontal -Through hole angled socket strip, 1x04, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 1x04 2.00mm single row -0 -4 -4 -Connector_PinSocket_2.00mm -PinSocket_1x04_P2.00mm_Vertical -Through hole straight socket strip, 1x04, 2.00mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x04 2.00mm single row -0 -4 -4 -Connector_PinSocket_2.00mm -PinSocket_1x04_P2.00mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x04, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated -Surface mounted socket strip SMD 1x04 2.00mm single row style1 pin1 left -0 -4 -4 -Connector_PinSocket_2.00mm -PinSocket_1x04_P2.00mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x04, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated -Surface mounted socket strip SMD 1x04 2.00mm single row style2 pin1 right -0 -4 -4 -Connector_PinSocket_2.00mm -PinSocket_1x05_P2.00mm_Horizontal -Through hole angled socket strip, 1x05, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 1x05 2.00mm single row -0 -5 -5 -Connector_PinSocket_2.00mm -PinSocket_1x05_P2.00mm_Vertical -Through hole straight socket strip, 1x05, 2.00mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x05 2.00mm single row -0 -5 -5 -Connector_PinSocket_2.00mm -PinSocket_1x05_P2.00mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x05, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated -Surface mounted socket strip SMD 1x05 2.00mm single row style1 pin1 left -0 -5 -5 -Connector_PinSocket_2.00mm -PinSocket_1x05_P2.00mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x05, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated -Surface mounted socket strip SMD 1x05 2.00mm single row style2 pin1 right -0 -5 -5 -Connector_PinSocket_2.00mm -PinSocket_1x06_P2.00mm_Horizontal -Through hole angled socket strip, 1x06, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 1x06 2.00mm single row -0 -6 -6 -Connector_PinSocket_2.00mm -PinSocket_1x06_P2.00mm_Vertical -Through hole straight socket strip, 1x06, 2.00mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x06 2.00mm single row -0 -6 -6 -Connector_PinSocket_2.00mm -PinSocket_1x06_P2.00mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x06, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated -Surface mounted socket strip SMD 1x06 2.00mm single row style1 pin1 left -0 -6 -6 -Connector_PinSocket_2.00mm -PinSocket_1x06_P2.00mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x06, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated -Surface mounted socket strip SMD 1x06 2.00mm single row style2 pin1 right -0 -6 -6 -Connector_PinSocket_2.00mm -PinSocket_1x07_P2.00mm_Horizontal -Through hole angled socket strip, 1x07, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 1x07 2.00mm single row -0 -7 -7 -Connector_PinSocket_2.00mm -PinSocket_1x07_P2.00mm_Vertical -Through hole straight socket strip, 1x07, 2.00mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x07 2.00mm single row -0 -7 -7 -Connector_PinSocket_2.00mm -PinSocket_1x07_P2.00mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x07, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated -Surface mounted socket strip SMD 1x07 2.00mm single row style1 pin1 left -0 -7 -7 -Connector_PinSocket_2.00mm -PinSocket_1x07_P2.00mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x07, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated -Surface mounted socket strip SMD 1x07 2.00mm single row style2 pin1 right -0 -7 -7 -Connector_PinSocket_2.00mm -PinSocket_1x08_P2.00mm_Horizontal -Through hole angled socket strip, 1x08, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 1x08 2.00mm single row -0 -8 -8 -Connector_PinSocket_2.00mm -PinSocket_1x08_P2.00mm_Vertical -Through hole straight socket strip, 1x08, 2.00mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x08 2.00mm single row -0 -8 -8 -Connector_PinSocket_2.00mm -PinSocket_1x08_P2.00mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x08, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated -Surface mounted socket strip SMD 1x08 2.00mm single row style1 pin1 left -0 -8 -8 -Connector_PinSocket_2.00mm -PinSocket_1x08_P2.00mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x08, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated -Surface mounted socket strip SMD 1x08 2.00mm single row style2 pin1 right -0 -8 -8 -Connector_PinSocket_2.00mm -PinSocket_1x09_P2.00mm_Horizontal -Through hole angled socket strip, 1x09, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 1x09 2.00mm single row -0 -9 -9 -Connector_PinSocket_2.00mm -PinSocket_1x09_P2.00mm_Vertical -Through hole straight socket strip, 1x09, 2.00mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x09 2.00mm single row -0 -9 -9 -Connector_PinSocket_2.00mm -PinSocket_1x09_P2.00mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x09, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated -Surface mounted socket strip SMD 1x09 2.00mm single row style1 pin1 left -0 -9 -9 -Connector_PinSocket_2.00mm -PinSocket_1x09_P2.00mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x09, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated -Surface mounted socket strip SMD 1x09 2.00mm single row style2 pin1 right -0 -9 -9 -Connector_PinSocket_2.00mm -PinSocket_1x10_P2.00mm_Horizontal -Through hole angled socket strip, 1x10, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 1x10 2.00mm single row -0 -10 -10 -Connector_PinSocket_2.00mm -PinSocket_1x10_P2.00mm_Vertical -Through hole straight socket strip, 1x10, 2.00mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x10 2.00mm single row -0 -10 -10 -Connector_PinSocket_2.00mm -PinSocket_1x10_P2.00mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x10, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated -Surface mounted socket strip SMD 1x10 2.00mm single row style1 pin1 left -0 -10 -10 -Connector_PinSocket_2.00mm -PinSocket_1x10_P2.00mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x10, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated -Surface mounted socket strip SMD 1x10 2.00mm single row style2 pin1 right -0 -10 -10 -Connector_PinSocket_2.00mm -PinSocket_1x11_P2.00mm_Horizontal -Through hole angled socket strip, 1x11, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 1x11 2.00mm single row -0 -11 -11 -Connector_PinSocket_2.00mm -PinSocket_1x11_P2.00mm_Vertical -Through hole straight socket strip, 1x11, 2.00mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x11 2.00mm single row -0 -11 -11 -Connector_PinSocket_2.00mm -PinSocket_1x11_P2.00mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x11, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated -Surface mounted socket strip SMD 1x11 2.00mm single row style1 pin1 left -0 -11 -11 -Connector_PinSocket_2.00mm -PinSocket_1x11_P2.00mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x11, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated -Surface mounted socket strip SMD 1x11 2.00mm single row style2 pin1 right -0 -11 -11 -Connector_PinSocket_2.00mm -PinSocket_1x12_P2.00mm_Horizontal -Through hole angled socket strip, 1x12, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 1x12 2.00mm single row -0 -12 -12 -Connector_PinSocket_2.00mm -PinSocket_1x12_P2.00mm_Vertical -Through hole straight socket strip, 1x12, 2.00mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x12 2.00mm single row -0 -12 -12 -Connector_PinSocket_2.00mm -PinSocket_1x12_P2.00mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x12, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated -Surface mounted socket strip SMD 1x12 2.00mm single row style1 pin1 left -0 -12 -12 -Connector_PinSocket_2.00mm -PinSocket_1x12_P2.00mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x12, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated -Surface mounted socket strip SMD 1x12 2.00mm single row style2 pin1 right -0 -12 -12 -Connector_PinSocket_2.00mm -PinSocket_1x13_P2.00mm_Horizontal -Through hole angled socket strip, 1x13, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 1x13 2.00mm single row -0 -13 -13 -Connector_PinSocket_2.00mm -PinSocket_1x13_P2.00mm_Vertical -Through hole straight socket strip, 1x13, 2.00mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x13 2.00mm single row -0 -13 -13 -Connector_PinSocket_2.00mm -PinSocket_1x13_P2.00mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x13, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated -Surface mounted socket strip SMD 1x13 2.00mm single row style1 pin1 left -0 -13 -13 -Connector_PinSocket_2.00mm -PinSocket_1x13_P2.00mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x13, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated -Surface mounted socket strip SMD 1x13 2.00mm single row style2 pin1 right -0 -13 -13 -Connector_PinSocket_2.00mm -PinSocket_1x14_P2.00mm_Horizontal -Through hole angled socket strip, 1x14, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 1x14 2.00mm single row -0 -14 -14 -Connector_PinSocket_2.00mm -PinSocket_1x14_P2.00mm_Vertical -Through hole straight socket strip, 1x14, 2.00mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x14 2.00mm single row -0 -14 -14 -Connector_PinSocket_2.00mm -PinSocket_1x14_P2.00mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x14, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated -Surface mounted socket strip SMD 1x14 2.00mm single row style1 pin1 left -0 -14 -14 -Connector_PinSocket_2.00mm -PinSocket_1x14_P2.00mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x14, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated -Surface mounted socket strip SMD 1x14 2.00mm single row style2 pin1 right -0 -14 -14 -Connector_PinSocket_2.00mm -PinSocket_1x15_P2.00mm_Horizontal -Through hole angled socket strip, 1x15, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 1x15 2.00mm single row -0 -15 -15 -Connector_PinSocket_2.00mm -PinSocket_1x15_P2.00mm_Vertical -Through hole straight socket strip, 1x15, 2.00mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x15 2.00mm single row -0 -15 -15 -Connector_PinSocket_2.00mm -PinSocket_1x15_P2.00mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x15, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated -Surface mounted socket strip SMD 1x15 2.00mm single row style1 pin1 left -0 -15 -15 -Connector_PinSocket_2.00mm -PinSocket_1x15_P2.00mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x15, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated -Surface mounted socket strip SMD 1x15 2.00mm single row style2 pin1 right -0 -15 -15 -Connector_PinSocket_2.00mm -PinSocket_1x16_P2.00mm_Horizontal -Through hole angled socket strip, 1x16, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 1x16 2.00mm single row -0 -16 -16 -Connector_PinSocket_2.00mm -PinSocket_1x16_P2.00mm_Vertical -Through hole straight socket strip, 1x16, 2.00mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x16 2.00mm single row -0 -16 -16 -Connector_PinSocket_2.00mm -PinSocket_1x16_P2.00mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x16, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated -Surface mounted socket strip SMD 1x16 2.00mm single row style1 pin1 left -0 -16 -16 -Connector_PinSocket_2.00mm -PinSocket_1x16_P2.00mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x16, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated -Surface mounted socket strip SMD 1x16 2.00mm single row style2 pin1 right -0 -16 -16 -Connector_PinSocket_2.00mm -PinSocket_1x17_P2.00mm_Horizontal -Through hole angled socket strip, 1x17, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 1x17 2.00mm single row -0 -17 -17 -Connector_PinSocket_2.00mm -PinSocket_1x17_P2.00mm_Vertical -Through hole straight socket strip, 1x17, 2.00mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x17 2.00mm single row -0 -17 -17 -Connector_PinSocket_2.00mm -PinSocket_1x17_P2.00mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x17, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated -Surface mounted socket strip SMD 1x17 2.00mm single row style1 pin1 left -0 -17 -17 -Connector_PinSocket_2.00mm -PinSocket_1x17_P2.00mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x17, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated -Surface mounted socket strip SMD 1x17 2.00mm single row style2 pin1 right -0 -17 -17 -Connector_PinSocket_2.00mm -PinSocket_1x18_P2.00mm_Horizontal -Through hole angled socket strip, 1x18, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 1x18 2.00mm single row -0 -18 -18 -Connector_PinSocket_2.00mm -PinSocket_1x18_P2.00mm_Vertical -Through hole straight socket strip, 1x18, 2.00mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x18 2.00mm single row -0 -18 -18 -Connector_PinSocket_2.00mm -PinSocket_1x18_P2.00mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x18, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated -Surface mounted socket strip SMD 1x18 2.00mm single row style1 pin1 left -0 -18 -18 -Connector_PinSocket_2.00mm -PinSocket_1x18_P2.00mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x18, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated -Surface mounted socket strip SMD 1x18 2.00mm single row style2 pin1 right -0 -18 -18 -Connector_PinSocket_2.00mm -PinSocket_1x19_P2.00mm_Horizontal -Through hole angled socket strip, 1x19, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 1x19 2.00mm single row -0 -19 -19 -Connector_PinSocket_2.00mm -PinSocket_1x19_P2.00mm_Vertical -Through hole straight socket strip, 1x19, 2.00mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x19 2.00mm single row -0 -19 -19 -Connector_PinSocket_2.00mm -PinSocket_1x19_P2.00mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x19, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated -Surface mounted socket strip SMD 1x19 2.00mm single row style1 pin1 left -0 -19 -19 -Connector_PinSocket_2.00mm -PinSocket_1x19_P2.00mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x19, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated -Surface mounted socket strip SMD 1x19 2.00mm single row style2 pin1 right -0 -19 -19 -Connector_PinSocket_2.00mm -PinSocket_1x20_P2.00mm_Horizontal -Through hole angled socket strip, 1x20, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 1x20 2.00mm single row -0 -20 -20 -Connector_PinSocket_2.00mm -PinSocket_1x20_P2.00mm_Vertical -Through hole straight socket strip, 1x20, 2.00mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x20 2.00mm single row -0 -20 -20 -Connector_PinSocket_2.00mm -PinSocket_1x20_P2.00mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x20, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated -Surface mounted socket strip SMD 1x20 2.00mm single row style1 pin1 left -0 -20 -20 -Connector_PinSocket_2.00mm -PinSocket_1x20_P2.00mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x20, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated -Surface mounted socket strip SMD 1x20 2.00mm single row style2 pin1 right -0 -20 -20 -Connector_PinSocket_2.00mm -PinSocket_1x21_P2.00mm_Horizontal -Through hole angled socket strip, 1x21, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 1x21 2.00mm single row -0 -21 -21 -Connector_PinSocket_2.00mm -PinSocket_1x21_P2.00mm_Vertical -Through hole straight socket strip, 1x21, 2.00mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x21 2.00mm single row -0 -21 -21 -Connector_PinSocket_2.00mm -PinSocket_1x21_P2.00mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x21, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated -Surface mounted socket strip SMD 1x21 2.00mm single row style1 pin1 left -0 -21 -21 -Connector_PinSocket_2.00mm -PinSocket_1x21_P2.00mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x21, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated -Surface mounted socket strip SMD 1x21 2.00mm single row style2 pin1 right -0 -21 -21 -Connector_PinSocket_2.00mm -PinSocket_1x22_P2.00mm_Horizontal -Through hole angled socket strip, 1x22, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 1x22 2.00mm single row -0 -22 -22 -Connector_PinSocket_2.00mm -PinSocket_1x22_P2.00mm_Vertical -Through hole straight socket strip, 1x22, 2.00mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x22 2.00mm single row -0 -22 -22 -Connector_PinSocket_2.00mm -PinSocket_1x22_P2.00mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x22, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated -Surface mounted socket strip SMD 1x22 2.00mm single row style1 pin1 left -0 -22 -22 -Connector_PinSocket_2.00mm -PinSocket_1x22_P2.00mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x22, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated -Surface mounted socket strip SMD 1x22 2.00mm single row style2 pin1 right -0 -22 -22 -Connector_PinSocket_2.00mm -PinSocket_1x23_P2.00mm_Horizontal -Through hole angled socket strip, 1x23, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 1x23 2.00mm single row -0 -23 -23 -Connector_PinSocket_2.00mm -PinSocket_1x23_P2.00mm_Vertical -Through hole straight socket strip, 1x23, 2.00mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x23 2.00mm single row -0 -23 -23 -Connector_PinSocket_2.00mm -PinSocket_1x23_P2.00mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x23, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated -Surface mounted socket strip SMD 1x23 2.00mm single row style1 pin1 left -0 -23 -23 -Connector_PinSocket_2.00mm -PinSocket_1x23_P2.00mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x23, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated -Surface mounted socket strip SMD 1x23 2.00mm single row style2 pin1 right -0 -23 -23 -Connector_PinSocket_2.00mm -PinSocket_1x24_P2.00mm_Horizontal -Through hole angled socket strip, 1x24, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 1x24 2.00mm single row -0 -24 -24 -Connector_PinSocket_2.00mm -PinSocket_1x24_P2.00mm_Vertical -Through hole straight socket strip, 1x24, 2.00mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x24 2.00mm single row -0 -24 -24 -Connector_PinSocket_2.00mm -PinSocket_1x24_P2.00mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x24, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated -Surface mounted socket strip SMD 1x24 2.00mm single row style1 pin1 left -0 -24 -24 -Connector_PinSocket_2.00mm -PinSocket_1x24_P2.00mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x24, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated -Surface mounted socket strip SMD 1x24 2.00mm single row style2 pin1 right -0 -24 -24 -Connector_PinSocket_2.00mm -PinSocket_1x25_P2.00mm_Horizontal -Through hole angled socket strip, 1x25, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 1x25 2.00mm single row -0 -25 -25 -Connector_PinSocket_2.00mm -PinSocket_1x25_P2.00mm_Vertical -Through hole straight socket strip, 1x25, 2.00mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x25 2.00mm single row -0 -25 -25 -Connector_PinSocket_2.00mm -PinSocket_1x25_P2.00mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x25, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated -Surface mounted socket strip SMD 1x25 2.00mm single row style1 pin1 left -0 -25 -25 -Connector_PinSocket_2.00mm -PinSocket_1x25_P2.00mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x25, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated -Surface mounted socket strip SMD 1x25 2.00mm single row style2 pin1 right -0 -25 -25 -Connector_PinSocket_2.00mm -PinSocket_1x26_P2.00mm_Horizontal -Through hole angled socket strip, 1x26, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 1x26 2.00mm single row -0 -26 -26 -Connector_PinSocket_2.00mm -PinSocket_1x26_P2.00mm_Vertical -Through hole straight socket strip, 1x26, 2.00mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x26 2.00mm single row -0 -26 -26 -Connector_PinSocket_2.00mm -PinSocket_1x26_P2.00mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x26, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated -Surface mounted socket strip SMD 1x26 2.00mm single row style1 pin1 left -0 -26 -26 -Connector_PinSocket_2.00mm -PinSocket_1x26_P2.00mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x26, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated -Surface mounted socket strip SMD 1x26 2.00mm single row style2 pin1 right -0 -26 -26 -Connector_PinSocket_2.00mm -PinSocket_1x27_P2.00mm_Horizontal -Through hole angled socket strip, 1x27, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 1x27 2.00mm single row -0 -27 -27 -Connector_PinSocket_2.00mm -PinSocket_1x27_P2.00mm_Vertical -Through hole straight socket strip, 1x27, 2.00mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x27 2.00mm single row -0 -27 -27 -Connector_PinSocket_2.00mm -PinSocket_1x27_P2.00mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x27, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated -Surface mounted socket strip SMD 1x27 2.00mm single row style1 pin1 left -0 -27 -27 -Connector_PinSocket_2.00mm -PinSocket_1x27_P2.00mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x27, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated -Surface mounted socket strip SMD 1x27 2.00mm single row style2 pin1 right -0 -27 -27 -Connector_PinSocket_2.00mm -PinSocket_1x28_P2.00mm_Horizontal -Through hole angled socket strip, 1x28, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 1x28 2.00mm single row -0 -28 -28 -Connector_PinSocket_2.00mm -PinSocket_1x28_P2.00mm_Vertical -Through hole straight socket strip, 1x28, 2.00mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x28 2.00mm single row -0 -28 -28 -Connector_PinSocket_2.00mm -PinSocket_1x28_P2.00mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x28, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated -Surface mounted socket strip SMD 1x28 2.00mm single row style1 pin1 left -0 -28 -28 -Connector_PinSocket_2.00mm -PinSocket_1x28_P2.00mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x28, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated -Surface mounted socket strip SMD 1x28 2.00mm single row style2 pin1 right -0 -28 -28 -Connector_PinSocket_2.00mm -PinSocket_1x29_P2.00mm_Horizontal -Through hole angled socket strip, 1x29, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 1x29 2.00mm single row -0 -29 -29 -Connector_PinSocket_2.00mm -PinSocket_1x29_P2.00mm_Vertical -Through hole straight socket strip, 1x29, 2.00mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x29 2.00mm single row -0 -29 -29 -Connector_PinSocket_2.00mm -PinSocket_1x29_P2.00mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x29, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated -Surface mounted socket strip SMD 1x29 2.00mm single row style1 pin1 left -0 -29 -29 -Connector_PinSocket_2.00mm -PinSocket_1x29_P2.00mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x29, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated -Surface mounted socket strip SMD 1x29 2.00mm single row style2 pin1 right -0 -29 -29 -Connector_PinSocket_2.00mm -PinSocket_1x30_P2.00mm_Horizontal -Through hole angled socket strip, 1x30, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 1x30 2.00mm single row -0 -30 -30 -Connector_PinSocket_2.00mm -PinSocket_1x30_P2.00mm_Vertical -Through hole straight socket strip, 1x30, 2.00mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x30 2.00mm single row -0 -30 -30 -Connector_PinSocket_2.00mm -PinSocket_1x30_P2.00mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x30, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated -Surface mounted socket strip SMD 1x30 2.00mm single row style1 pin1 left -0 -30 -30 -Connector_PinSocket_2.00mm -PinSocket_1x30_P2.00mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x30, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated -Surface mounted socket strip SMD 1x30 2.00mm single row style2 pin1 right -0 -30 -30 -Connector_PinSocket_2.00mm -PinSocket_1x31_P2.00mm_Horizontal -Through hole angled socket strip, 1x31, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 1x31 2.00mm single row -0 -31 -31 -Connector_PinSocket_2.00mm -PinSocket_1x31_P2.00mm_Vertical -Through hole straight socket strip, 1x31, 2.00mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x31 2.00mm single row -0 -31 -31 -Connector_PinSocket_2.00mm -PinSocket_1x31_P2.00mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x31, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated -Surface mounted socket strip SMD 1x31 2.00mm single row style1 pin1 left -0 -31 -31 -Connector_PinSocket_2.00mm -PinSocket_1x31_P2.00mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x31, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated -Surface mounted socket strip SMD 1x31 2.00mm single row style2 pin1 right -0 -31 -31 -Connector_PinSocket_2.00mm -PinSocket_1x32_P2.00mm_Horizontal -Through hole angled socket strip, 1x32, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 1x32 2.00mm single row -0 -32 -32 -Connector_PinSocket_2.00mm -PinSocket_1x32_P2.00mm_Vertical -Through hole straight socket strip, 1x32, 2.00mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x32 2.00mm single row -0 -32 -32 -Connector_PinSocket_2.00mm -PinSocket_1x32_P2.00mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x32, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated -Surface mounted socket strip SMD 1x32 2.00mm single row style1 pin1 left -0 -32 -32 -Connector_PinSocket_2.00mm -PinSocket_1x32_P2.00mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x32, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated -Surface mounted socket strip SMD 1x32 2.00mm single row style2 pin1 right -0 -32 -32 -Connector_PinSocket_2.00mm -PinSocket_1x33_P2.00mm_Horizontal -Through hole angled socket strip, 1x33, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 1x33 2.00mm single row -0 -33 -33 -Connector_PinSocket_2.00mm -PinSocket_1x33_P2.00mm_Vertical -Through hole straight socket strip, 1x33, 2.00mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x33 2.00mm single row -0 -33 -33 -Connector_PinSocket_2.00mm -PinSocket_1x33_P2.00mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x33, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated -Surface mounted socket strip SMD 1x33 2.00mm single row style1 pin1 left -0 -33 -33 -Connector_PinSocket_2.00mm -PinSocket_1x33_P2.00mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x33, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated -Surface mounted socket strip SMD 1x33 2.00mm single row style2 pin1 right -0 -33 -33 -Connector_PinSocket_2.00mm -PinSocket_1x34_P2.00mm_Horizontal -Through hole angled socket strip, 1x34, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 1x34 2.00mm single row -0 -34 -34 -Connector_PinSocket_2.00mm -PinSocket_1x34_P2.00mm_Vertical -Through hole straight socket strip, 1x34, 2.00mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x34 2.00mm single row -0 -34 -34 -Connector_PinSocket_2.00mm -PinSocket_1x34_P2.00mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x34, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated -Surface mounted socket strip SMD 1x34 2.00mm single row style1 pin1 left -0 -34 -34 -Connector_PinSocket_2.00mm -PinSocket_1x34_P2.00mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x34, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated -Surface mounted socket strip SMD 1x34 2.00mm single row style2 pin1 right -0 -34 -34 -Connector_PinSocket_2.00mm -PinSocket_1x35_P2.00mm_Horizontal -Through hole angled socket strip, 1x35, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 1x35 2.00mm single row -0 -35 -35 -Connector_PinSocket_2.00mm -PinSocket_1x35_P2.00mm_Vertical -Through hole straight socket strip, 1x35, 2.00mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x35 2.00mm single row -0 -35 -35 -Connector_PinSocket_2.00mm -PinSocket_1x35_P2.00mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x35, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated -Surface mounted socket strip SMD 1x35 2.00mm single row style1 pin1 left -0 -35 -35 -Connector_PinSocket_2.00mm -PinSocket_1x35_P2.00mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x35, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated -Surface mounted socket strip SMD 1x35 2.00mm single row style2 pin1 right -0 -35 -35 -Connector_PinSocket_2.00mm -PinSocket_1x36_P2.00mm_Horizontal -Through hole angled socket strip, 1x36, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 1x36 2.00mm single row -0 -36 -36 -Connector_PinSocket_2.00mm -PinSocket_1x36_P2.00mm_Vertical -Through hole straight socket strip, 1x36, 2.00mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x36 2.00mm single row -0 -36 -36 -Connector_PinSocket_2.00mm -PinSocket_1x36_P2.00mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x36, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated -Surface mounted socket strip SMD 1x36 2.00mm single row style1 pin1 left -0 -36 -36 -Connector_PinSocket_2.00mm -PinSocket_1x36_P2.00mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x36, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated -Surface mounted socket strip SMD 1x36 2.00mm single row style2 pin1 right -0 -36 -36 -Connector_PinSocket_2.00mm -PinSocket_1x37_P2.00mm_Horizontal -Through hole angled socket strip, 1x37, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 1x37 2.00mm single row -0 -37 -37 -Connector_PinSocket_2.00mm -PinSocket_1x37_P2.00mm_Vertical -Through hole straight socket strip, 1x37, 2.00mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x37 2.00mm single row -0 -37 -37 -Connector_PinSocket_2.00mm -PinSocket_1x37_P2.00mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x37, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated -Surface mounted socket strip SMD 1x37 2.00mm single row style1 pin1 left -0 -37 -37 -Connector_PinSocket_2.00mm -PinSocket_1x37_P2.00mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x37, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated -Surface mounted socket strip SMD 1x37 2.00mm single row style2 pin1 right -0 -37 -37 -Connector_PinSocket_2.00mm -PinSocket_1x38_P2.00mm_Horizontal -Through hole angled socket strip, 1x38, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 1x38 2.00mm single row -0 -38 -38 -Connector_PinSocket_2.00mm -PinSocket_1x38_P2.00mm_Vertical -Through hole straight socket strip, 1x38, 2.00mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x38 2.00mm single row -0 -38 -38 -Connector_PinSocket_2.00mm -PinSocket_1x38_P2.00mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x38, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated -Surface mounted socket strip SMD 1x38 2.00mm single row style1 pin1 left -0 -38 -38 -Connector_PinSocket_2.00mm -PinSocket_1x38_P2.00mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x38, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated -Surface mounted socket strip SMD 1x38 2.00mm single row style2 pin1 right -0 -38 -38 -Connector_PinSocket_2.00mm -PinSocket_1x39_P2.00mm_Horizontal -Through hole angled socket strip, 1x39, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 1x39 2.00mm single row -0 -39 -39 -Connector_PinSocket_2.00mm -PinSocket_1x39_P2.00mm_Vertical -Through hole straight socket strip, 1x39, 2.00mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x39 2.00mm single row -0 -39 -39 -Connector_PinSocket_2.00mm -PinSocket_1x39_P2.00mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x39, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated -Surface mounted socket strip SMD 1x39 2.00mm single row style1 pin1 left -0 -39 -39 -Connector_PinSocket_2.00mm -PinSocket_1x39_P2.00mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x39, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated -Surface mounted socket strip SMD 1x39 2.00mm single row style2 pin1 right -0 -39 -39 -Connector_PinSocket_2.00mm -PinSocket_1x40_P2.00mm_Horizontal -Through hole angled socket strip, 1x40, 2.00mm pitch, 6.35mm socket length, single row (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 1x40 2.00mm single row -0 -40 -40 -Connector_PinSocket_2.00mm -PinSocket_1x40_P2.00mm_Vertical -Through hole straight socket strip, 1x40, 2.00mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x40 2.00mm single row -0 -40 -40 -Connector_PinSocket_2.00mm -PinSocket_1x40_P2.00mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x40, 2.00mm pitch, single row, style 1 (pin 1 left) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated -Surface mounted socket strip SMD 1x40 2.00mm single row style1 pin1 left -0 -40 -40 -Connector_PinSocket_2.00mm -PinSocket_1x40_P2.00mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x40, 2.00mm pitch, single row, style 2 (pin 1 right) (https://www.jayconsystems.com/fileuploader/download/download/?d=1&file=custom%2Fupload%2FFile-1375728122.pdf), script generated -Surface mounted socket strip SMD 1x40 2.00mm single row style2 pin1 right -0 -40 -40 -Connector_PinSocket_2.00mm -PinSocket_2x01_P2.00mm_Horizontal -Through hole angled socket strip, 2x01, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 2x01 2.00mm double row -0 -2 -2 -Connector_PinSocket_2.00mm -PinSocket_2x01_P2.00mm_Vertical -Through hole straight socket strip, 2x01, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x01 2.00mm double row -0 -2 -2 -Connector_PinSocket_2.00mm -PinSocket_2x01_P2.00mm_Vertical_SMD -surface-mounted straight socket strip, 2x01, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated -Surface mounted socket strip SMD 2x01 2.00mm double row -0 -2 -2 -Connector_PinSocket_2.00mm -PinSocket_2x02_P2.00mm_Horizontal -Through hole angled socket strip, 2x02, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 2x02 2.00mm double row -0 -4 -4 -Connector_PinSocket_2.00mm -PinSocket_2x02_P2.00mm_Vertical -Through hole straight socket strip, 2x02, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x02 2.00mm double row -0 -4 -4 -Connector_PinSocket_2.00mm -PinSocket_2x02_P2.00mm_Vertical_SMD -surface-mounted straight socket strip, 2x02, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated -Surface mounted socket strip SMD 2x02 2.00mm double row -0 -4 -4 -Connector_PinSocket_2.00mm -PinSocket_2x03_P2.00mm_Horizontal -Through hole angled socket strip, 2x03, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 2x03 2.00mm double row -0 -6 -6 -Connector_PinSocket_2.00mm -PinSocket_2x03_P2.00mm_Vertical -Through hole straight socket strip, 2x03, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x03 2.00mm double row -0 -6 -6 -Connector_PinSocket_2.00mm -PinSocket_2x03_P2.00mm_Vertical_SMD -surface-mounted straight socket strip, 2x03, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated -Surface mounted socket strip SMD 2x03 2.00mm double row -0 -6 -6 -Connector_PinSocket_2.00mm -PinSocket_2x04_P2.00mm_Horizontal -Through hole angled socket strip, 2x04, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 2x04 2.00mm double row -0 -8 -8 -Connector_PinSocket_2.00mm -PinSocket_2x04_P2.00mm_Vertical -Through hole straight socket strip, 2x04, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x04 2.00mm double row -0 -8 -8 -Connector_PinSocket_2.00mm -PinSocket_2x04_P2.00mm_Vertical_SMD -surface-mounted straight socket strip, 2x04, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated -Surface mounted socket strip SMD 2x04 2.00mm double row -0 -8 -8 -Connector_PinSocket_2.00mm -PinSocket_2x05_P2.00mm_Horizontal -Through hole angled socket strip, 2x05, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 2x05 2.00mm double row -0 -10 -10 -Connector_PinSocket_2.00mm -PinSocket_2x05_P2.00mm_Vertical -Through hole straight socket strip, 2x05, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x05 2.00mm double row -0 -10 -10 -Connector_PinSocket_2.00mm -PinSocket_2x05_P2.00mm_Vertical_SMD -surface-mounted straight socket strip, 2x05, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated -Surface mounted socket strip SMD 2x05 2.00mm double row -0 -10 -10 -Connector_PinSocket_2.00mm -PinSocket_2x06_P2.00mm_Horizontal -Through hole angled socket strip, 2x06, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 2x06 2.00mm double row -0 -12 -12 -Connector_PinSocket_2.00mm -PinSocket_2x06_P2.00mm_Vertical -Through hole straight socket strip, 2x06, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x06 2.00mm double row -0 -12 -12 -Connector_PinSocket_2.00mm -PinSocket_2x06_P2.00mm_Vertical_SMD -surface-mounted straight socket strip, 2x06, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated -Surface mounted socket strip SMD 2x06 2.00mm double row -0 -12 -12 -Connector_PinSocket_2.00mm -PinSocket_2x07_P2.00mm_Horizontal -Through hole angled socket strip, 2x07, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 2x07 2.00mm double row -0 -14 -14 -Connector_PinSocket_2.00mm -PinSocket_2x07_P2.00mm_Vertical -Through hole straight socket strip, 2x07, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x07 2.00mm double row -0 -14 -14 -Connector_PinSocket_2.00mm -PinSocket_2x07_P2.00mm_Vertical_SMD -surface-mounted straight socket strip, 2x07, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated -Surface mounted socket strip SMD 2x07 2.00mm double row -0 -14 -14 -Connector_PinSocket_2.00mm -PinSocket_2x08_P2.00mm_Horizontal -Through hole angled socket strip, 2x08, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 2x08 2.00mm double row -0 -16 -16 -Connector_PinSocket_2.00mm -PinSocket_2x08_P2.00mm_Vertical -Through hole straight socket strip, 2x08, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x08 2.00mm double row -0 -16 -16 -Connector_PinSocket_2.00mm -PinSocket_2x08_P2.00mm_Vertical_SMD -surface-mounted straight socket strip, 2x08, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated -Surface mounted socket strip SMD 2x08 2.00mm double row -0 -16 -16 -Connector_PinSocket_2.00mm -PinSocket_2x09_P2.00mm_Horizontal -Through hole angled socket strip, 2x09, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 2x09 2.00mm double row -0 -18 -18 -Connector_PinSocket_2.00mm -PinSocket_2x09_P2.00mm_Vertical -Through hole straight socket strip, 2x09, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x09 2.00mm double row -0 -18 -18 -Connector_PinSocket_2.00mm -PinSocket_2x09_P2.00mm_Vertical_SMD -surface-mounted straight socket strip, 2x09, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated -Surface mounted socket strip SMD 2x09 2.00mm double row -0 -18 -18 -Connector_PinSocket_2.00mm -PinSocket_2x10_P2.00mm_Horizontal -Through hole angled socket strip, 2x10, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 2x10 2.00mm double row -0 -20 -20 -Connector_PinSocket_2.00mm -PinSocket_2x10_P2.00mm_Vertical -Through hole straight socket strip, 2x10, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x10 2.00mm double row -0 -20 -20 -Connector_PinSocket_2.00mm -PinSocket_2x10_P2.00mm_Vertical_SMD -surface-mounted straight socket strip, 2x10, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated -Surface mounted socket strip SMD 2x10 2.00mm double row -0 -20 -20 -Connector_PinSocket_2.00mm -PinSocket_2x11_P2.00mm_Horizontal -Through hole angled socket strip, 2x11, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 2x11 2.00mm double row -0 -22 -22 -Connector_PinSocket_2.00mm -PinSocket_2x11_P2.00mm_Vertical -Through hole straight socket strip, 2x11, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x11 2.00mm double row -0 -22 -22 -Connector_PinSocket_2.00mm -PinSocket_2x11_P2.00mm_Vertical_SMD -surface-mounted straight socket strip, 2x11, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated -Surface mounted socket strip SMD 2x11 2.00mm double row -0 -22 -22 -Connector_PinSocket_2.00mm -PinSocket_2x12_P2.00mm_Horizontal -Through hole angled socket strip, 2x12, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 2x12 2.00mm double row -0 -24 -24 -Connector_PinSocket_2.00mm -PinSocket_2x12_P2.00mm_Vertical -Through hole straight socket strip, 2x12, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x12 2.00mm double row -0 -24 -24 -Connector_PinSocket_2.00mm -PinSocket_2x12_P2.00mm_Vertical_SMD -surface-mounted straight socket strip, 2x12, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated -Surface mounted socket strip SMD 2x12 2.00mm double row -0 -24 -24 -Connector_PinSocket_2.00mm -PinSocket_2x13_P2.00mm_Horizontal -Through hole angled socket strip, 2x13, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 2x13 2.00mm double row -0 -26 -26 -Connector_PinSocket_2.00mm -PinSocket_2x13_P2.00mm_Vertical -Through hole straight socket strip, 2x13, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x13 2.00mm double row -0 -26 -26 -Connector_PinSocket_2.00mm -PinSocket_2x13_P2.00mm_Vertical_SMD -surface-mounted straight socket strip, 2x13, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated -Surface mounted socket strip SMD 2x13 2.00mm double row -0 -26 -26 -Connector_PinSocket_2.00mm -PinSocket_2x14_P2.00mm_Horizontal -Through hole angled socket strip, 2x14, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 2x14 2.00mm double row -0 -28 -28 -Connector_PinSocket_2.00mm -PinSocket_2x14_P2.00mm_Vertical -Through hole straight socket strip, 2x14, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x14 2.00mm double row -0 -28 -28 -Connector_PinSocket_2.00mm -PinSocket_2x14_P2.00mm_Vertical_SMD -surface-mounted straight socket strip, 2x14, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated -Surface mounted socket strip SMD 2x14 2.00mm double row -0 -28 -28 -Connector_PinSocket_2.00mm -PinSocket_2x15_P2.00mm_Horizontal -Through hole angled socket strip, 2x15, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 2x15 2.00mm double row -0 -30 -30 -Connector_PinSocket_2.00mm -PinSocket_2x15_P2.00mm_Vertical -Through hole straight socket strip, 2x15, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x15 2.00mm double row -0 -30 -30 -Connector_PinSocket_2.00mm -PinSocket_2x15_P2.00mm_Vertical_SMD -surface-mounted straight socket strip, 2x15, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated -Surface mounted socket strip SMD 2x15 2.00mm double row -0 -30 -30 -Connector_PinSocket_2.00mm -PinSocket_2x16_P2.00mm_Horizontal -Through hole angled socket strip, 2x16, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 2x16 2.00mm double row -0 -32 -32 -Connector_PinSocket_2.00mm -PinSocket_2x16_P2.00mm_Vertical -Through hole straight socket strip, 2x16, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x16 2.00mm double row -0 -32 -32 -Connector_PinSocket_2.00mm -PinSocket_2x16_P2.00mm_Vertical_SMD -surface-mounted straight socket strip, 2x16, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated -Surface mounted socket strip SMD 2x16 2.00mm double row -0 -32 -32 -Connector_PinSocket_2.00mm -PinSocket_2x17_P2.00mm_Horizontal -Through hole angled socket strip, 2x17, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 2x17 2.00mm double row -0 -34 -34 -Connector_PinSocket_2.00mm -PinSocket_2x17_P2.00mm_Vertical -Through hole straight socket strip, 2x17, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x17 2.00mm double row -0 -34 -34 -Connector_PinSocket_2.00mm -PinSocket_2x17_P2.00mm_Vertical_SMD -surface-mounted straight socket strip, 2x17, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated -Surface mounted socket strip SMD 2x17 2.00mm double row -0 -34 -34 -Connector_PinSocket_2.00mm -PinSocket_2x18_P2.00mm_Horizontal -Through hole angled socket strip, 2x18, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 2x18 2.00mm double row -0 -36 -36 -Connector_PinSocket_2.00mm -PinSocket_2x18_P2.00mm_Vertical -Through hole straight socket strip, 2x18, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x18 2.00mm double row -0 -36 -36 -Connector_PinSocket_2.00mm -PinSocket_2x18_P2.00mm_Vertical_SMD -surface-mounted straight socket strip, 2x18, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated -Surface mounted socket strip SMD 2x18 2.00mm double row -0 -36 -36 -Connector_PinSocket_2.00mm -PinSocket_2x19_P2.00mm_Horizontal -Through hole angled socket strip, 2x19, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 2x19 2.00mm double row -0 -38 -38 -Connector_PinSocket_2.00mm -PinSocket_2x19_P2.00mm_Vertical -Through hole straight socket strip, 2x19, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x19 2.00mm double row -0 -38 -38 -Connector_PinSocket_2.00mm -PinSocket_2x19_P2.00mm_Vertical_SMD -surface-mounted straight socket strip, 2x19, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated -Surface mounted socket strip SMD 2x19 2.00mm double row -0 -38 -38 -Connector_PinSocket_2.00mm -PinSocket_2x20_P2.00mm_Horizontal -Through hole angled socket strip, 2x20, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 2x20 2.00mm double row -0 -40 -40 -Connector_PinSocket_2.00mm -PinSocket_2x20_P2.00mm_Vertical -Through hole straight socket strip, 2x20, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x20 2.00mm double row -0 -40 -40 -Connector_PinSocket_2.00mm -PinSocket_2x20_P2.00mm_Vertical_SMD -surface-mounted straight socket strip, 2x20, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated -Surface mounted socket strip SMD 2x20 2.00mm double row -0 -40 -40 -Connector_PinSocket_2.00mm -PinSocket_2x21_P2.00mm_Horizontal -Through hole angled socket strip, 2x21, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 2x21 2.00mm double row -0 -42 -42 -Connector_PinSocket_2.00mm -PinSocket_2x21_P2.00mm_Vertical -Through hole straight socket strip, 2x21, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x21 2.00mm double row -0 -42 -42 -Connector_PinSocket_2.00mm -PinSocket_2x21_P2.00mm_Vertical_SMD -surface-mounted straight socket strip, 2x21, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated -Surface mounted socket strip SMD 2x21 2.00mm double row -0 -42 -42 -Connector_PinSocket_2.00mm -PinSocket_2x22_P2.00mm_Horizontal -Through hole angled socket strip, 2x22, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 2x22 2.00mm double row -0 -44 -44 -Connector_PinSocket_2.00mm -PinSocket_2x22_P2.00mm_Vertical -Through hole straight socket strip, 2x22, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x22 2.00mm double row -0 -44 -44 -Connector_PinSocket_2.00mm -PinSocket_2x22_P2.00mm_Vertical_SMD -surface-mounted straight socket strip, 2x22, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated -Surface mounted socket strip SMD 2x22 2.00mm double row -0 -44 -44 -Connector_PinSocket_2.00mm -PinSocket_2x23_P2.00mm_Horizontal -Through hole angled socket strip, 2x23, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 2x23 2.00mm double row -0 -46 -46 -Connector_PinSocket_2.00mm -PinSocket_2x23_P2.00mm_Vertical -Through hole straight socket strip, 2x23, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x23 2.00mm double row -0 -46 -46 -Connector_PinSocket_2.00mm -PinSocket_2x23_P2.00mm_Vertical_SMD -surface-mounted straight socket strip, 2x23, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated -Surface mounted socket strip SMD 2x23 2.00mm double row -0 -46 -46 -Connector_PinSocket_2.00mm -PinSocket_2x24_P2.00mm_Horizontal -Through hole angled socket strip, 2x24, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 2x24 2.00mm double row -0 -48 -48 -Connector_PinSocket_2.00mm -PinSocket_2x24_P2.00mm_Vertical -Through hole straight socket strip, 2x24, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x24 2.00mm double row -0 -48 -48 -Connector_PinSocket_2.00mm -PinSocket_2x24_P2.00mm_Vertical_SMD -surface-mounted straight socket strip, 2x24, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated -Surface mounted socket strip SMD 2x24 2.00mm double row -0 -48 -48 -Connector_PinSocket_2.00mm -PinSocket_2x25_P2.00mm_Horizontal -Through hole angled socket strip, 2x25, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 2x25 2.00mm double row -0 -50 -50 -Connector_PinSocket_2.00mm -PinSocket_2x25_P2.00mm_Vertical -Through hole straight socket strip, 2x25, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x25 2.00mm double row -0 -50 -50 -Connector_PinSocket_2.00mm -PinSocket_2x25_P2.00mm_Vertical_SMD -surface-mounted straight socket strip, 2x25, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated -Surface mounted socket strip SMD 2x25 2.00mm double row -0 -50 -50 -Connector_PinSocket_2.00mm -PinSocket_2x26_P2.00mm_Horizontal -Through hole angled socket strip, 2x26, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 2x26 2.00mm double row -0 -52 -52 -Connector_PinSocket_2.00mm -PinSocket_2x26_P2.00mm_Vertical -Through hole straight socket strip, 2x26, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x26 2.00mm double row -0 -52 -52 -Connector_PinSocket_2.00mm -PinSocket_2x26_P2.00mm_Vertical_SMD -surface-mounted straight socket strip, 2x26, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated -Surface mounted socket strip SMD 2x26 2.00mm double row -0 -52 -52 -Connector_PinSocket_2.00mm -PinSocket_2x27_P2.00mm_Horizontal -Through hole angled socket strip, 2x27, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 2x27 2.00mm double row -0 -54 -54 -Connector_PinSocket_2.00mm -PinSocket_2x27_P2.00mm_Vertical -Through hole straight socket strip, 2x27, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x27 2.00mm double row -0 -54 -54 -Connector_PinSocket_2.00mm -PinSocket_2x27_P2.00mm_Vertical_SMD -surface-mounted straight socket strip, 2x27, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated -Surface mounted socket strip SMD 2x27 2.00mm double row -0 -54 -54 -Connector_PinSocket_2.00mm -PinSocket_2x28_P2.00mm_Horizontal -Through hole angled socket strip, 2x28, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 2x28 2.00mm double row -0 -56 -56 -Connector_PinSocket_2.00mm -PinSocket_2x28_P2.00mm_Vertical -Through hole straight socket strip, 2x28, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x28 2.00mm double row -0 -56 -56 -Connector_PinSocket_2.00mm -PinSocket_2x28_P2.00mm_Vertical_SMD -surface-mounted straight socket strip, 2x28, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated -Surface mounted socket strip SMD 2x28 2.00mm double row -0 -56 -56 -Connector_PinSocket_2.00mm -PinSocket_2x29_P2.00mm_Horizontal -Through hole angled socket strip, 2x29, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 2x29 2.00mm double row -0 -58 -58 -Connector_PinSocket_2.00mm -PinSocket_2x29_P2.00mm_Vertical -Through hole straight socket strip, 2x29, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x29 2.00mm double row -0 -58 -58 -Connector_PinSocket_2.00mm -PinSocket_2x29_P2.00mm_Vertical_SMD -surface-mounted straight socket strip, 2x29, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated -Surface mounted socket strip SMD 2x29 2.00mm double row -0 -58 -58 -Connector_PinSocket_2.00mm -PinSocket_2x30_P2.00mm_Horizontal -Through hole angled socket strip, 2x30, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 2x30 2.00mm double row -0 -60 -60 -Connector_PinSocket_2.00mm -PinSocket_2x30_P2.00mm_Vertical -Through hole straight socket strip, 2x30, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x30 2.00mm double row -0 -60 -60 -Connector_PinSocket_2.00mm -PinSocket_2x30_P2.00mm_Vertical_SMD -surface-mounted straight socket strip, 2x30, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated -Surface mounted socket strip SMD 2x30 2.00mm double row -0 -60 -60 -Connector_PinSocket_2.00mm -PinSocket_2x31_P2.00mm_Horizontal -Through hole angled socket strip, 2x31, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 2x31 2.00mm double row -0 -62 -62 -Connector_PinSocket_2.00mm -PinSocket_2x31_P2.00mm_Vertical -Through hole straight socket strip, 2x31, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x31 2.00mm double row -0 -62 -62 -Connector_PinSocket_2.00mm -PinSocket_2x31_P2.00mm_Vertical_SMD -surface-mounted straight socket strip, 2x31, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated -Surface mounted socket strip SMD 2x31 2.00mm double row -0 -62 -62 -Connector_PinSocket_2.00mm -PinSocket_2x32_P2.00mm_Horizontal -Through hole angled socket strip, 2x32, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 2x32 2.00mm double row -0 -64 -64 -Connector_PinSocket_2.00mm -PinSocket_2x32_P2.00mm_Vertical -Through hole straight socket strip, 2x32, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x32 2.00mm double row -0 -64 -64 -Connector_PinSocket_2.00mm -PinSocket_2x32_P2.00mm_Vertical_SMD -surface-mounted straight socket strip, 2x32, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated -Surface mounted socket strip SMD 2x32 2.00mm double row -0 -64 -64 -Connector_PinSocket_2.00mm -PinSocket_2x33_P2.00mm_Horizontal -Through hole angled socket strip, 2x33, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 2x33 2.00mm double row -0 -66 -66 -Connector_PinSocket_2.00mm -PinSocket_2x33_P2.00mm_Vertical -Through hole straight socket strip, 2x33, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x33 2.00mm double row -0 -66 -66 -Connector_PinSocket_2.00mm -PinSocket_2x33_P2.00mm_Vertical_SMD -surface-mounted straight socket strip, 2x33, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated -Surface mounted socket strip SMD 2x33 2.00mm double row -0 -66 -66 -Connector_PinSocket_2.00mm -PinSocket_2x34_P2.00mm_Horizontal -Through hole angled socket strip, 2x34, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 2x34 2.00mm double row -0 -68 -68 -Connector_PinSocket_2.00mm -PinSocket_2x34_P2.00mm_Vertical -Through hole straight socket strip, 2x34, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x34 2.00mm double row -0 -68 -68 -Connector_PinSocket_2.00mm -PinSocket_2x34_P2.00mm_Vertical_SMD -surface-mounted straight socket strip, 2x34, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated -Surface mounted socket strip SMD 2x34 2.00mm double row -0 -68 -68 -Connector_PinSocket_2.00mm -PinSocket_2x35_P2.00mm_Horizontal -Through hole angled socket strip, 2x35, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 2x35 2.00mm double row -0 -70 -70 -Connector_PinSocket_2.00mm -PinSocket_2x35_P2.00mm_Vertical -Through hole straight socket strip, 2x35, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x35 2.00mm double row -0 -70 -70 -Connector_PinSocket_2.00mm -PinSocket_2x35_P2.00mm_Vertical_SMD -surface-mounted straight socket strip, 2x35, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated -Surface mounted socket strip SMD 2x35 2.00mm double row -0 -70 -70 -Connector_PinSocket_2.00mm -PinSocket_2x36_P2.00mm_Horizontal -Through hole angled socket strip, 2x36, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 2x36 2.00mm double row -0 -72 -72 -Connector_PinSocket_2.00mm -PinSocket_2x36_P2.00mm_Vertical -Through hole straight socket strip, 2x36, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x36 2.00mm double row -0 -72 -72 -Connector_PinSocket_2.00mm -PinSocket_2x36_P2.00mm_Vertical_SMD -surface-mounted straight socket strip, 2x36, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated -Surface mounted socket strip SMD 2x36 2.00mm double row -0 -72 -72 -Connector_PinSocket_2.00mm -PinSocket_2x37_P2.00mm_Horizontal -Through hole angled socket strip, 2x37, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 2x37 2.00mm double row -0 -74 -74 -Connector_PinSocket_2.00mm -PinSocket_2x37_P2.00mm_Vertical -Through hole straight socket strip, 2x37, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x37 2.00mm double row -0 -74 -74 -Connector_PinSocket_2.00mm -PinSocket_2x37_P2.00mm_Vertical_SMD -surface-mounted straight socket strip, 2x37, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated -Surface mounted socket strip SMD 2x37 2.00mm double row -0 -74 -74 -Connector_PinSocket_2.00mm -PinSocket_2x38_P2.00mm_Horizontal -Through hole angled socket strip, 2x38, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 2x38 2.00mm double row -0 -76 -76 -Connector_PinSocket_2.00mm -PinSocket_2x38_P2.00mm_Vertical -Through hole straight socket strip, 2x38, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x38 2.00mm double row -0 -76 -76 -Connector_PinSocket_2.00mm -PinSocket_2x38_P2.00mm_Vertical_SMD -surface-mounted straight socket strip, 2x38, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated -Surface mounted socket strip SMD 2x38 2.00mm double row -0 -76 -76 -Connector_PinSocket_2.00mm -PinSocket_2x39_P2.00mm_Horizontal -Through hole angled socket strip, 2x39, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 2x39 2.00mm double row -0 -78 -78 -Connector_PinSocket_2.00mm -PinSocket_2x39_P2.00mm_Vertical -Through hole straight socket strip, 2x39, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x39 2.00mm double row -0 -78 -78 -Connector_PinSocket_2.00mm -PinSocket_2x39_P2.00mm_Vertical_SMD -surface-mounted straight socket strip, 2x39, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated -Surface mounted socket strip SMD 2x39 2.00mm double row -0 -78 -78 -Connector_PinSocket_2.00mm -PinSocket_2x40_P2.00mm_Horizontal -Through hole angled socket strip, 2x40, 2.00mm pitch, 6.35mm socket length, double cols (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 2x40 2.00mm double row -0 -80 -80 -Connector_PinSocket_2.00mm -PinSocket_2x40_P2.00mm_Vertical -Through hole straight socket strip, 2x40, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x40 2.00mm double row -0 -80 -80 -Connector_PinSocket_2.00mm -PinSocket_2x40_P2.00mm_Vertical_SMD -surface-mounted straight socket strip, 2x40, 2.00mm pitch, double cols (from Kicad 4.0.7), script generated -Surface mounted socket strip SMD 2x40 2.00mm double row -0 -80 -80 -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 -Connector_RJ -RJ12_Amphenol_54601 -RJ12 connector https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/c-bmj-0082.pdf -RJ12 connector -0 -6 -6 -Connector_RJ -RJ14_Connfly_DS1133-S4_Horizontal -RJ14 connector 6P4C Horizontal http://www.connfly.com/userfiles/image/UpLoadFile/File/2012/10/26/DS1133.pdf -RJ14 connector 6P4C Connfly DS1133 -0 -4 -4 -Connector_RJ -RJ25_Wayconn_MJEA-660X1_Horizontal -RJ25 6P6C Socket 90 degrees, https://wayconn.com/wp-content/themes/way/datasheet/MJEA-660X1XXX_RJ25_6P6C_PCB_RA.pdf -RJ12 RJ18 RJ25 jack connector 6P6C -0 -6 -6 -Connector_RJ -RJ45_Abracon_ARJP11A-MA_Horizontal -Shielded RJ45 ethernet connector with transformer and POE (https://abracon.com/Magnetics/lan/ARJP11A.PDF) -ethernet 8p8c transformer poe rj45 -0 -15 -14 -Connector_RJ -RJ45_Amphenol_54602-x08_Horizontal -8 Pol Shallow Latch Connector, Modjack, RJ45 (https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/c-bmj-0102.pdf) -RJ45 -0 -8 -8 -Connector_RJ -RJ45_Amphenol_RJHSE538X -Shielded, 2 LED, https://www.amphenolcanada.com/ProductSearch/drawings/AC/RJHSE538X.pdf -RJ45 8p8c ethernet cat5 -0 -14 -13 -Connector_RJ -RJ45_Amphenol_RJHSE538X-02 -Shielded, 2 LED, 2 Ports, http://www.amphenolinfocom.eu/NavData/Drawings/RJHSE-538X-02-REVC.pdf -RJ45 8p8c dual ethernet cat5 -0 -26 -25 -Connector_RJ -RJ45_Amphenol_RJHSE5380 -Shielded, https://www.amphenolcanada.com/ProductSearch/drawings/AC/RJHSE538X.pdf -RJ45 8p8c ethernet cat5 -0 -10 -9 -Connector_RJ -RJ45_Amphenol_RJHSE5380-08 -Shielded, https://www.amphenolcanada.com/ProductSearch/drawings/AC/RJHSE538X08.pdf -RJ45 8p8c ethernet cat5 -0 -68 -65 -Connector_RJ -RJ45_Amphenol_RJMG1BD3B8K1ANR -1 Port RJ45 Magjack Connector Through Hole 10/100 Base-T, AutoMDIX, https://www.amphenolcanada.com/ProductSearch/Drawings/AC/RJMG1BD3B8K1ANR.PDF -RJ45 Magjack -0 -14 -13 -Connector_RJ -RJ45_BEL_SS74301-00x_Vertical -https://belfuse.com/resources/drawings/stewartconnector/dr-stw-ss-74301-001-ss-74301-002-ss-74301-005.pdf -RJ45 Vertical Shield LED Green Yellow -0 -14 -13 -Connector_RJ -RJ45_Bel_SI-60062-F -1 Port RJ45 Magjack Connector Through Hole 10/100 Base-T, AutoMDIX, https://belfuse.com/resources/drawings/magneticsolutions/dr-mag-si-60062-f.pdf -RJ45 Magjack -0 -14 -13 -Connector_RJ -RJ45_Cetus_J1B1211CCD_Horizontal -1 Port RJ45 Magjack Connector Through Hole 10/100 Base-T, Cetus, used and distributed by WIZnet (https://wizwiki.net/wiki/lib/exe/fetch.php?media=products:wiz550web:wiz550webds_kr:j1b1211ccd.pdf) -RJ45 Magjack -0 -14 -13 -Connector_RJ -RJ45_Hanrun_HR911105A -http://www.kosmodrom.com.ua/pdf/HR911105A.pdf -RJ45 Magjack -0 -14 -13 -Connector_RJ -RJ45_Kycon_G7LX-A88S7-BP-xx_Horizontal -10/100Base-T RJ45 ethernet magnetic transformer connector horizontal with green/yellow LEDs http://www.kycon.com/Pub_Eng_Draw/G7LX-A88S7-BP-GY.pdf -RJ45 ethernet magnetic -0 -16 -15 -Connector_RJ -RJ45_Molex_0855135013_Vertical -1 Port, RJ45, Series 85513, vertical, SMD, https://www.molex.com/pdm_docs/sd/855135013_sd.pdf -RJ45 Vertical -0 -9 -9 -Connector_RJ -RJ45_Ninigi_GE -1 port ethernet throughhole connector, https://en.ninigi.com/product/rj45ge/pdf -RJ45 ethernet 8p8c -0 -10 -9 -Connector_RJ -RJ45_OST_PJ012-8P8CX_Vertical -RJ45 vertical connector https://www.on-shore.com/wp-content/uploads/PJ012-8P8CX.pdf -RJ45 PJ012 -0 -8 -8 -Connector_RJ -RJ45_Plug_Metz_AJP92A8813 -plug, ethernet, 8P8C, RJ45 Plug -AJP92A8813 8P8C RJ45 ethernet plug -0 -8 -8 -Connector_RJ -RJ45_Pulse_JK00177NL_Horizontal -10/100/1000 Base-T RJ45 single port with LEDs and 75W POE, https://productfinder.pulseeng.com/doc_type/WEB301/doc_num/J432/doc_part/J432.pdf -RJ45 8p8c ethernet POE -0 -22 -21 -Connector_RJ -RJ45_Pulse_JK0654219NL_Horizontal -10/100/1000 Base-T RJ45 single port with LEDs https://media.digikey.com/pdf/Data%20Sheets/Pulse%20PDFs/JK%20Series.pdf#page=2 -RJ45 8p8c ethernet -0 -18 -17 -Connector_RJ -RJ45_Pulse_JXD6-0001NL_Horizontal -RJ45 ethernet transformer with magnetics (https://productfinder.pulseeng.com/doc_type/WEB301/doc_num/JXD6-0001NL/doc_part/JXD6-0001NL.pdf) -ethernet 8p8c transformer magjack -0 -12 -11 -Connector_RJ -RJ45_UDE_RB1-125B8G1A -1 Port RJ45 Connector Through Hole 10/100/1000 Base-T, https://datasheet.lcsc.com/szlcsc/1901091107_UDE-Corp-RB1-125B8G1A_C363353.pdf#page=3 -RJ45 ethernet -0 -16 -15 -Connector_RJ -RJ45_Wuerth_7499010001A_Horizontal -10/100Base-TX RJ45 ethernet magnetic transformer connector horizontal https://katalog.we-online.de/pbs/datasheet/7499010001A.pdf -RJ45 ethernet magnetic -0 -10 -9 -Connector_RJ -RJ45_Wuerth_7499010121A_Horizontal -10/100Base-TX RJ45 ethernet magnetic transformer connector horizontal with green/orange LEDs https://katalog.we-online.de/pbs/datasheet/7499010121A.pdf -RJ45 ethernet magnetic -0 -14 -13 -Connector_RJ -RJ45_Wuerth_7499111446_Horizontal -LAN-Transformer WE-RJ45LAN 10/100/1000 BaseT -ethernet lan connector -0 -16 -15 -Connector_RJ -RJ45_Wuerth_7499151120_Horizontal -Wuerth 7499151120, LAN-Transformer WE-RJ45LAN 10/100/1000 BaseT, Dual Ethernet Jack (http://katalog.we-online.de/pbs/datasheet/7499151120.pdf) -ethernet lan connector -0 -32 -29 -Connector_RJ -RJ45_Wuerth_74980111211_Horizontal -RJ45 LAN Transformer 10/100BaseT (https://katalog.we-online.de/pbs/datasheet/74980111211.pdf) -lan magnetics transformer -0 -14 -13 -Connector_SATA_SAS -SAS-mini_TEConnectivity_1888174_Vertical -36pin mini SAS connector, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=1888174&DocType=Customer+Drawing&DocLang=English -SAS mini connector -0 -44 -44 -Connector_SATA_SAS -SATA_Amphenol_10029364-001LF_Horizontal -https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/10029364.pdf -SATA -0 -24 -23 -Connector_Samtec -Samtec_FMC_ASP-134486-01_10x40_P1.27mm_Vertical -http://suddendocs.samtec.com/prints/asp-134486-01-mkt.pdf -FMC HPC -0 -400 -400 -Connector_Samtec -Samtec_FMC_ASP-134602-01_10x40_P1.27mm_Vertical -https://www.marutsu.co.jp/contents/shop/marutsu/ds/asp-134602-01.pdf -FMC HPC -0 -400 -400 -Connector_Samtec -Samtec_FMC_ASP-134604-01_4x40_Vertical -https://suddendocs.samtec.com/prints/asp-134604-01-mkt.pdf -FMC LPC VITA -0 -160 -160 -Connector_Samtec -Samtec_LSHM-105-xx.x-x-DV-N_2x05_P0.50mm_Vertical -Molex LSHM 0.50 mm Razor Beam High-Speed Hermaphroditic Terminal/Socket Strip, LSHM-105-xx.x-x-DV-N, 5 Pins per row (http://suddendocs.samtec.com/prints/lshm-1xx-xx.x-x-dv-a-x-x-tr-footprint.pdf), generated with kicad-footprint-generator -connector Samtec side entry -0 -10 -10 -Connector_Samtec -Samtec_LSHM-105-xx.x-x-DV-S_2x05-1SH_P0.50mm_Vertical -Molex LSHM 0.50 mm Razor Beam High-Speed Hermaphroditic Terminal/Socket Strip, LSHM-105-xx.x-x-DV-S, 5 Pins per row (http://suddendocs.samtec.com/prints/lshm-1xx-xx.x-x-dv-a-x-x-tr-footprint.pdf), generated with kicad-footprint-generator -connector Samtec side entry -0 -12 -11 -Connector_Samtec -Samtec_LSHM-110-xx.x-x-DV-N_2x10_P0.50mm_Vertical -Molex LSHM 0.50 mm Razor Beam High-Speed Hermaphroditic Terminal/Socket Strip, LSHM-110-xx.x-x-DV-N, 10 Pins per row (http://suddendocs.samtec.com/prints/lshm-1xx-xx.x-x-dv-a-x-x-tr-footprint.pdf), generated with kicad-footprint-generator -connector Samtec side entry -0 -20 -20 -Connector_Samtec -Samtec_LSHM-110-xx.x-x-DV-S_2x10-1SH_P0.50mm_Vertical -Molex LSHM 0.50 mm Razor Beam High-Speed Hermaphroditic Terminal/Socket Strip, LSHM-110-xx.x-x-DV-S, 10 Pins per row (http://suddendocs.samtec.com/prints/lshm-1xx-xx.x-x-dv-a-x-x-tr-footprint.pdf), generated with kicad-footprint-generator -connector Samtec side entry -0 -22 -21 -Connector_Samtec -Samtec_LSHM-120-xx.x-x-DV-N_2x20_P0.50mm_Vertical -Molex LSHM 0.50 mm Razor Beam High-Speed Hermaphroditic Terminal/Socket Strip, LSHM-120-xx.x-x-DV-N, 20 Pins per row (http://suddendocs.samtec.com/prints/lshm-1xx-xx.x-x-dv-a-x-x-tr-footprint.pdf), generated with kicad-footprint-generator -connector Samtec side entry -0 -40 -40 -Connector_Samtec -Samtec_LSHM-120-xx.x-x-DV-S_2x20-1SH_P0.50mm_Vertical -Molex LSHM 0.50 mm Razor Beam High-Speed Hermaphroditic Terminal/Socket Strip, LSHM-120-xx.x-x-DV-S, 20 Pins per row (http://suddendocs.samtec.com/prints/lshm-1xx-xx.x-x-dv-a-x-x-tr-footprint.pdf), generated with kicad-footprint-generator -connector Samtec side entry -0 -42 -41 -Connector_Samtec -Samtec_LSHM-130-xx.x-x-DV-N_2x30_P0.50mm_Vertical -Molex LSHM 0.50 mm Razor Beam High-Speed Hermaphroditic Terminal/Socket Strip, LSHM-130-xx.x-x-DV-N, 30 Pins per row (http://suddendocs.samtec.com/prints/lshm-1xx-xx.x-x-dv-a-x-x-tr-footprint.pdf), generated with kicad-footprint-generator -connector Samtec side entry -0 -60 -60 -Connector_Samtec -Samtec_LSHM-130-xx.x-x-DV-S_2x30-1SH_P0.50mm_Vertical -Molex LSHM 0.50 mm Razor Beam High-Speed Hermaphroditic Terminal/Socket Strip, LSHM-130-xx.x-x-DV-S, 30 Pins per row (http://suddendocs.samtec.com/prints/lshm-1xx-xx.x-x-dv-a-x-x-tr-footprint.pdf), generated with kicad-footprint-generator -connector Samtec side entry -0 -62 -61 -Connector_Samtec -Samtec_LSHM-140-xx.x-x-DV-N_2x40_P0.50mm_Vertical -Molex LSHM 0.50 mm Razor Beam High-Speed Hermaphroditic Terminal/Socket Strip, LSHM-140-xx.x-x-DV-N, 40 Pins per row (http://suddendocs.samtec.com/prints/lshm-1xx-xx.x-x-dv-a-x-x-tr-footprint.pdf), generated with kicad-footprint-generator -connector Samtec side entry -0 -80 -80 -Connector_Samtec -Samtec_LSHM-140-xx.x-x-DV-S_2x40-1SH_P0.50mm_Vertical -Molex LSHM 0.50 mm Razor Beam High-Speed Hermaphroditic Terminal/Socket Strip, LSHM-140-xx.x-x-DV-S, 40 Pins per row (http://suddendocs.samtec.com/prints/lshm-1xx-xx.x-x-dv-a-x-x-tr-footprint.pdf), generated with kicad-footprint-generator -connector Samtec side entry -0 -82 -81 -Connector_Samtec -Samtec_LSHM-150-xx.x-x-DV-N_2x50_P0.50mm_Vertical -Molex LSHM 0.50 mm Razor Beam High-Speed Hermaphroditic Terminal/Socket Strip, LSHM-150-xx.x-x-DV-N, 50 Pins per row (http://suddendocs.samtec.com/prints/lshm-1xx-xx.x-x-dv-a-x-x-tr-footprint.pdf), generated with kicad-footprint-generator -connector Samtec side entry -0 -100 -100 -Connector_Samtec -Samtec_LSHM-150-xx.x-x-DV-S_2x50-1SH_P0.50mm_Vertical -Molex LSHM 0.50 mm Razor Beam High-Speed Hermaphroditic Terminal/Socket Strip, LSHM-150-xx.x-x-DV-S, 50 Pins per row (http://suddendocs.samtec.com/prints/lshm-1xx-xx.x-x-dv-a-x-x-tr-footprint.pdf), generated with kicad-footprint-generator -connector Samtec side entry -0 -102 -101 -Connector_Samtec_HLE_SMD -Samtec_HLE-102-02-xxx-DV-BE-LC_2x02_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-102-02-xxx-DV-BE-LC, 2 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -4 -4 -Connector_Samtec_HLE_SMD -Samtec_HLE-102-02-xxx-DV-BE_2x02_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-102-02-xxx-DV-BE, 2 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -4 -4 -Connector_Samtec_HLE_SMD -Samtec_HLE-102-02-xxx-DV-LC_2x02_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-102-02-xxx-DV-LC, 2 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -4 -4 -Connector_Samtec_HLE_SMD -Samtec_HLE-102-02-xxx-DV_2x02_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-102-02-xxx-DV, 2 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -4 -4 -Connector_Samtec_HLE_SMD -Samtec_HLE-103-02-xxx-DV-BE-LC_2x03_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-103-02-xxx-DV-BE-LC, 3 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -6 -6 -Connector_Samtec_HLE_SMD -Samtec_HLE-103-02-xxx-DV-BE_2x03_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-103-02-xxx-DV-BE, 3 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -6 -6 -Connector_Samtec_HLE_SMD -Samtec_HLE-103-02-xxx-DV-LC_2x03_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-103-02-xxx-DV-LC, 3 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -6 -6 -Connector_Samtec_HLE_SMD -Samtec_HLE-103-02-xxx-DV_2x03_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-103-02-xxx-DV, 3 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -6 -6 -Connector_Samtec_HLE_SMD -Samtec_HLE-104-02-xxx-DV-A_2x04_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-104-02-xxx-DV-A, 4 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -8 -8 -Connector_Samtec_HLE_SMD -Samtec_HLE-104-02-xxx-DV-BE-A_2x04_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-104-02-xxx-DV-BE-A, 4 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -8 -8 -Connector_Samtec_HLE_SMD -Samtec_HLE-104-02-xxx-DV-BE-LC_2x04_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-104-02-xxx-DV-BE-LC, 4 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -8 -8 -Connector_Samtec_HLE_SMD -Samtec_HLE-104-02-xxx-DV-BE_2x04_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-104-02-xxx-DV-BE, 4 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -8 -8 -Connector_Samtec_HLE_SMD -Samtec_HLE-104-02-xxx-DV-LC_2x04_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-104-02-xxx-DV-LC, 4 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -8 -8 -Connector_Samtec_HLE_SMD -Samtec_HLE-104-02-xxx-DV_2x04_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-104-02-xxx-DV, 4 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -8 -8 -Connector_Samtec_HLE_SMD -Samtec_HLE-105-02-xxx-DV-A_2x05_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-105-02-xxx-DV-A, 5 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -10 -10 -Connector_Samtec_HLE_SMD -Samtec_HLE-105-02-xxx-DV-BE-A_2x05_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-105-02-xxx-DV-BE-A, 5 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -10 -10 -Connector_Samtec_HLE_SMD -Samtec_HLE-105-02-xxx-DV-BE-LC_2x05_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-105-02-xxx-DV-BE-LC, 5 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -10 -10 -Connector_Samtec_HLE_SMD -Samtec_HLE-105-02-xxx-DV-BE_2x05_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-105-02-xxx-DV-BE, 5 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -10 -10 -Connector_Samtec_HLE_SMD -Samtec_HLE-105-02-xxx-DV-LC_2x05_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-105-02-xxx-DV-LC, 5 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -10 -10 -Connector_Samtec_HLE_SMD -Samtec_HLE-105-02-xxx-DV_2x05_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-105-02-xxx-DV, 5 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -10 -10 -Connector_Samtec_HLE_SMD -Samtec_HLE-106-02-xxx-DV-A_2x06_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-106-02-xxx-DV-A, 6 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -12 -12 -Connector_Samtec_HLE_SMD -Samtec_HLE-106-02-xxx-DV-BE-A_2x06_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-106-02-xxx-DV-BE-A, 6 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -12 -12 -Connector_Samtec_HLE_SMD -Samtec_HLE-106-02-xxx-DV-BE-LC_2x06_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-106-02-xxx-DV-BE-LC, 6 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -12 -12 -Connector_Samtec_HLE_SMD -Samtec_HLE-106-02-xxx-DV-BE_2x06_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-106-02-xxx-DV-BE, 6 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -12 -12 -Connector_Samtec_HLE_SMD -Samtec_HLE-106-02-xxx-DV-LC_2x06_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-106-02-xxx-DV-LC, 6 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -12 -12 -Connector_Samtec_HLE_SMD -Samtec_HLE-106-02-xxx-DV_2x06_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-106-02-xxx-DV, 6 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -12 -12 -Connector_Samtec_HLE_SMD -Samtec_HLE-107-02-xxx-DV-A_2x07_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-107-02-xxx-DV-A, 7 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -14 -14 -Connector_Samtec_HLE_SMD -Samtec_HLE-107-02-xxx-DV-BE-A_2x07_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-107-02-xxx-DV-BE-A, 7 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -14 -14 -Connector_Samtec_HLE_SMD -Samtec_HLE-107-02-xxx-DV-BE-LC_2x07_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-107-02-xxx-DV-BE-LC, 7 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -14 -14 -Connector_Samtec_HLE_SMD -Samtec_HLE-107-02-xxx-DV-BE_2x07_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-107-02-xxx-DV-BE, 7 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -14 -14 -Connector_Samtec_HLE_SMD -Samtec_HLE-107-02-xxx-DV-LC_2x07_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-107-02-xxx-DV-LC, 7 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -14 -14 -Connector_Samtec_HLE_SMD -Samtec_HLE-107-02-xxx-DV_2x07_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-107-02-xxx-DV, 7 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -14 -14 -Connector_Samtec_HLE_SMD -Samtec_HLE-108-02-xxx-DV-A_2x08_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-108-02-xxx-DV-A, 8 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -16 -16 -Connector_Samtec_HLE_SMD -Samtec_HLE-108-02-xxx-DV-BE-A_2x08_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-108-02-xxx-DV-BE-A, 8 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -16 -16 -Connector_Samtec_HLE_SMD -Samtec_HLE-108-02-xxx-DV-BE-LC_2x08_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-108-02-xxx-DV-BE-LC, 8 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -16 -16 -Connector_Samtec_HLE_SMD -Samtec_HLE-108-02-xxx-DV-BE_2x08_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-108-02-xxx-DV-BE, 8 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -16 -16 -Connector_Samtec_HLE_SMD -Samtec_HLE-108-02-xxx-DV-LC_2x08_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-108-02-xxx-DV-LC, 8 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -16 -16 -Connector_Samtec_HLE_SMD -Samtec_HLE-108-02-xxx-DV_2x08_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-108-02-xxx-DV, 8 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -16 -16 -Connector_Samtec_HLE_SMD -Samtec_HLE-109-02-xxx-DV-A_2x09_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-109-02-xxx-DV-A, 9 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -18 -18 -Connector_Samtec_HLE_SMD -Samtec_HLE-109-02-xxx-DV-BE-A_2x09_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-109-02-xxx-DV-BE-A, 9 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -18 -18 -Connector_Samtec_HLE_SMD -Samtec_HLE-109-02-xxx-DV-BE-LC_2x09_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-109-02-xxx-DV-BE-LC, 9 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -18 -18 -Connector_Samtec_HLE_SMD -Samtec_HLE-109-02-xxx-DV-BE_2x09_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-109-02-xxx-DV-BE, 9 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -18 -18 -Connector_Samtec_HLE_SMD -Samtec_HLE-109-02-xxx-DV-LC_2x09_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-109-02-xxx-DV-LC, 9 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -18 -18 -Connector_Samtec_HLE_SMD -Samtec_HLE-109-02-xxx-DV_2x09_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-109-02-xxx-DV, 9 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -18 -18 -Connector_Samtec_HLE_SMD -Samtec_HLE-110-02-xxx-DV-A_2x10_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-110-02-xxx-DV-A, 10 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -20 -20 -Connector_Samtec_HLE_SMD -Samtec_HLE-110-02-xxx-DV-BE-A_2x10_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-110-02-xxx-DV-BE-A, 10 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -20 -20 -Connector_Samtec_HLE_SMD -Samtec_HLE-110-02-xxx-DV-BE-LC_2x10_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-110-02-xxx-DV-BE-LC, 10 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -20 -20 -Connector_Samtec_HLE_SMD -Samtec_HLE-110-02-xxx-DV-BE_2x10_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-110-02-xxx-DV-BE, 10 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -20 -20 -Connector_Samtec_HLE_SMD -Samtec_HLE-110-02-xxx-DV-LC_2x10_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-110-02-xxx-DV-LC, 10 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -20 -20 -Connector_Samtec_HLE_SMD -Samtec_HLE-110-02-xxx-DV_2x10_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-110-02-xxx-DV, 10 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -20 -20 -Connector_Samtec_HLE_SMD -Samtec_HLE-111-02-xxx-DV-A_2x11_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-111-02-xxx-DV-A, 11 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -22 -22 -Connector_Samtec_HLE_SMD -Samtec_HLE-111-02-xxx-DV-BE-A_2x11_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-111-02-xxx-DV-BE-A, 11 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -22 -22 -Connector_Samtec_HLE_SMD -Samtec_HLE-111-02-xxx-DV-BE-LC_2x11_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-111-02-xxx-DV-BE-LC, 11 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -22 -22 -Connector_Samtec_HLE_SMD -Samtec_HLE-111-02-xxx-DV-BE_2x11_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-111-02-xxx-DV-BE, 11 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -22 -22 -Connector_Samtec_HLE_SMD -Samtec_HLE-111-02-xxx-DV-LC_2x11_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-111-02-xxx-DV-LC, 11 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -22 -22 -Connector_Samtec_HLE_SMD -Samtec_HLE-111-02-xxx-DV_2x11_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-111-02-xxx-DV, 11 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -22 -22 -Connector_Samtec_HLE_SMD -Samtec_HLE-112-02-xxx-DV-A_2x12_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-112-02-xxx-DV-A, 12 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -24 -24 -Connector_Samtec_HLE_SMD -Samtec_HLE-112-02-xxx-DV-BE-A_2x12_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-112-02-xxx-DV-BE-A, 12 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -24 -24 -Connector_Samtec_HLE_SMD -Samtec_HLE-112-02-xxx-DV-BE-LC_2x12_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-112-02-xxx-DV-BE-LC, 12 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -24 -24 -Connector_Samtec_HLE_SMD -Samtec_HLE-112-02-xxx-DV-BE_2x12_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-112-02-xxx-DV-BE, 12 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -24 -24 -Connector_Samtec_HLE_SMD -Samtec_HLE-112-02-xxx-DV-LC_2x12_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-112-02-xxx-DV-LC, 12 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -24 -24 -Connector_Samtec_HLE_SMD -Samtec_HLE-112-02-xxx-DV_2x12_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-112-02-xxx-DV, 12 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -24 -24 -Connector_Samtec_HLE_SMD -Samtec_HLE-113-02-xxx-DV-A_2x13_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-113-02-xxx-DV-A, 13 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -26 -26 -Connector_Samtec_HLE_SMD -Samtec_HLE-113-02-xxx-DV-BE-A_2x13_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-113-02-xxx-DV-BE-A, 13 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -26 -26 -Connector_Samtec_HLE_SMD -Samtec_HLE-113-02-xxx-DV-BE-LC_2x13_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-113-02-xxx-DV-BE-LC, 13 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -26 -26 -Connector_Samtec_HLE_SMD -Samtec_HLE-113-02-xxx-DV-BE_2x13_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-113-02-xxx-DV-BE, 13 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -26 -26 -Connector_Samtec_HLE_SMD -Samtec_HLE-113-02-xxx-DV-LC_2x13_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-113-02-xxx-DV-LC, 13 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -26 -26 -Connector_Samtec_HLE_SMD -Samtec_HLE-113-02-xxx-DV_2x13_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-113-02-xxx-DV, 13 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -26 -26 -Connector_Samtec_HLE_SMD -Samtec_HLE-114-02-xxx-DV-A_2x14_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-114-02-xxx-DV-A, 14 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -28 -28 -Connector_Samtec_HLE_SMD -Samtec_HLE-114-02-xxx-DV-BE-A_2x14_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-114-02-xxx-DV-BE-A, 14 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -28 -28 -Connector_Samtec_HLE_SMD -Samtec_HLE-114-02-xxx-DV-BE-LC_2x14_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-114-02-xxx-DV-BE-LC, 14 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -28 -28 -Connector_Samtec_HLE_SMD -Samtec_HLE-114-02-xxx-DV-BE_2x14_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-114-02-xxx-DV-BE, 14 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -28 -28 -Connector_Samtec_HLE_SMD -Samtec_HLE-114-02-xxx-DV-LC_2x14_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-114-02-xxx-DV-LC, 14 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -28 -28 -Connector_Samtec_HLE_SMD -Samtec_HLE-114-02-xxx-DV_2x14_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-114-02-xxx-DV, 14 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -28 -28 -Connector_Samtec_HLE_SMD -Samtec_HLE-115-02-xxx-DV-A_2x15_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-115-02-xxx-DV-A, 15 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -30 -30 -Connector_Samtec_HLE_SMD -Samtec_HLE-115-02-xxx-DV-BE-A_2x15_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-115-02-xxx-DV-BE-A, 15 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -30 -30 -Connector_Samtec_HLE_SMD -Samtec_HLE-115-02-xxx-DV-BE-LC_2x15_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-115-02-xxx-DV-BE-LC, 15 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -30 -30 -Connector_Samtec_HLE_SMD -Samtec_HLE-115-02-xxx-DV-BE_2x15_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-115-02-xxx-DV-BE, 15 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -30 -30 -Connector_Samtec_HLE_SMD -Samtec_HLE-115-02-xxx-DV-LC_2x15_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-115-02-xxx-DV-LC, 15 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -30 -30 -Connector_Samtec_HLE_SMD -Samtec_HLE-115-02-xxx-DV_2x15_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-115-02-xxx-DV, 15 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -30 -30 -Connector_Samtec_HLE_SMD -Samtec_HLE-116-02-xxx-DV-A_2x16_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-116-02-xxx-DV-A, 16 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -32 -32 -Connector_Samtec_HLE_SMD -Samtec_HLE-116-02-xxx-DV-BE-A_2x16_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-116-02-xxx-DV-BE-A, 16 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -32 -32 -Connector_Samtec_HLE_SMD -Samtec_HLE-116-02-xxx-DV-BE-LC_2x16_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-116-02-xxx-DV-BE-LC, 16 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -32 -32 -Connector_Samtec_HLE_SMD -Samtec_HLE-116-02-xxx-DV-BE_2x16_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-116-02-xxx-DV-BE, 16 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -32 -32 -Connector_Samtec_HLE_SMD -Samtec_HLE-116-02-xxx-DV-LC_2x16_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-116-02-xxx-DV-LC, 16 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -32 -32 -Connector_Samtec_HLE_SMD -Samtec_HLE-116-02-xxx-DV_2x16_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-116-02-xxx-DV, 16 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -32 -32 -Connector_Samtec_HLE_SMD -Samtec_HLE-117-02-xxx-DV-A_2x17_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-117-02-xxx-DV-A, 17 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -34 -34 -Connector_Samtec_HLE_SMD -Samtec_HLE-117-02-xxx-DV-BE-A_2x17_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-117-02-xxx-DV-BE-A, 17 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -34 -34 -Connector_Samtec_HLE_SMD -Samtec_HLE-117-02-xxx-DV-BE-LC_2x17_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-117-02-xxx-DV-BE-LC, 17 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -34 -34 -Connector_Samtec_HLE_SMD -Samtec_HLE-117-02-xxx-DV-BE_2x17_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-117-02-xxx-DV-BE, 17 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -34 -34 -Connector_Samtec_HLE_SMD -Samtec_HLE-117-02-xxx-DV-LC_2x17_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-117-02-xxx-DV-LC, 17 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -34 -34 -Connector_Samtec_HLE_SMD -Samtec_HLE-117-02-xxx-DV_2x17_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-117-02-xxx-DV, 17 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -34 -34 -Connector_Samtec_HLE_SMD -Samtec_HLE-118-02-xxx-DV-A_2x18_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-118-02-xxx-DV-A, 18 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -36 -36 -Connector_Samtec_HLE_SMD -Samtec_HLE-118-02-xxx-DV-BE-A_2x18_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-118-02-xxx-DV-BE-A, 18 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -36 -36 -Connector_Samtec_HLE_SMD -Samtec_HLE-118-02-xxx-DV-BE-LC_2x18_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-118-02-xxx-DV-BE-LC, 18 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -36 -36 -Connector_Samtec_HLE_SMD -Samtec_HLE-118-02-xxx-DV-BE_2x18_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-118-02-xxx-DV-BE, 18 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -36 -36 -Connector_Samtec_HLE_SMD -Samtec_HLE-118-02-xxx-DV-LC_2x18_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-118-02-xxx-DV-LC, 18 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -36 -36 -Connector_Samtec_HLE_SMD -Samtec_HLE-118-02-xxx-DV_2x18_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-118-02-xxx-DV, 18 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -36 -36 -Connector_Samtec_HLE_SMD -Samtec_HLE-119-02-xxx-DV-A_2x19_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-119-02-xxx-DV-A, 19 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -38 -38 -Connector_Samtec_HLE_SMD -Samtec_HLE-119-02-xxx-DV-BE-A_2x19_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-119-02-xxx-DV-BE-A, 19 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -38 -38 -Connector_Samtec_HLE_SMD -Samtec_HLE-119-02-xxx-DV-BE-LC_2x19_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-119-02-xxx-DV-BE-LC, 19 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -38 -38 -Connector_Samtec_HLE_SMD -Samtec_HLE-119-02-xxx-DV-BE_2x19_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-119-02-xxx-DV-BE, 19 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -38 -38 -Connector_Samtec_HLE_SMD -Samtec_HLE-119-02-xxx-DV-LC_2x19_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-119-02-xxx-DV-LC, 19 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -38 -38 -Connector_Samtec_HLE_SMD -Samtec_HLE-119-02-xxx-DV_2x19_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-119-02-xxx-DV, 19 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -38 -38 -Connector_Samtec_HLE_SMD -Samtec_HLE-120-02-xxx-DV-A_2x20_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-120-02-xxx-DV-A, 20 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -40 -40 -Connector_Samtec_HLE_SMD -Samtec_HLE-120-02-xxx-DV-BE-A_2x20_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-120-02-xxx-DV-BE-A, 20 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -40 -40 -Connector_Samtec_HLE_SMD -Samtec_HLE-120-02-xxx-DV-BE-LC_2x20_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-120-02-xxx-DV-BE-LC, 20 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -40 -40 -Connector_Samtec_HLE_SMD -Samtec_HLE-120-02-xxx-DV-BE_2x20_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-120-02-xxx-DV-BE, 20 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -40 -40 -Connector_Samtec_HLE_SMD -Samtec_HLE-120-02-xxx-DV-LC_2x20_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-120-02-xxx-DV-LC, 20 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -40 -40 -Connector_Samtec_HLE_SMD -Samtec_HLE-120-02-xxx-DV_2x20_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-120-02-xxx-DV, 20 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -40 -40 -Connector_Samtec_HLE_SMD -Samtec_HLE-121-02-xxx-DV-A_2x21_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-121-02-xxx-DV-A, 21 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -42 -42 -Connector_Samtec_HLE_SMD -Samtec_HLE-121-02-xxx-DV-BE-A_2x21_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-121-02-xxx-DV-BE-A, 21 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -42 -42 -Connector_Samtec_HLE_SMD -Samtec_HLE-121-02-xxx-DV-BE-LC_2x21_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-121-02-xxx-DV-BE-LC, 21 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -42 -42 -Connector_Samtec_HLE_SMD -Samtec_HLE-121-02-xxx-DV-BE_2x21_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-121-02-xxx-DV-BE, 21 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -42 -42 -Connector_Samtec_HLE_SMD -Samtec_HLE-121-02-xxx-DV-LC_2x21_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-121-02-xxx-DV-LC, 21 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -42 -42 -Connector_Samtec_HLE_SMD -Samtec_HLE-121-02-xxx-DV_2x21_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-121-02-xxx-DV, 21 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -42 -42 -Connector_Samtec_HLE_SMD -Samtec_HLE-122-02-xxx-DV-A_2x22_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-122-02-xxx-DV-A, 22 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -44 -44 -Connector_Samtec_HLE_SMD -Samtec_HLE-122-02-xxx-DV-BE-A_2x22_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-122-02-xxx-DV-BE-A, 22 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -44 -44 -Connector_Samtec_HLE_SMD -Samtec_HLE-122-02-xxx-DV-BE-LC_2x22_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-122-02-xxx-DV-BE-LC, 22 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -44 -44 -Connector_Samtec_HLE_SMD -Samtec_HLE-122-02-xxx-DV-BE_2x22_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-122-02-xxx-DV-BE, 22 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -44 -44 -Connector_Samtec_HLE_SMD -Samtec_HLE-122-02-xxx-DV-LC_2x22_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-122-02-xxx-DV-LC, 22 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -44 -44 -Connector_Samtec_HLE_SMD -Samtec_HLE-122-02-xxx-DV_2x22_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-122-02-xxx-DV, 22 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -44 -44 -Connector_Samtec_HLE_SMD -Samtec_HLE-123-02-xxx-DV-A_2x23_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-123-02-xxx-DV-A, 23 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -46 -46 -Connector_Samtec_HLE_SMD -Samtec_HLE-123-02-xxx-DV-BE-A_2x23_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-123-02-xxx-DV-BE-A, 23 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -46 -46 -Connector_Samtec_HLE_SMD -Samtec_HLE-123-02-xxx-DV-BE-LC_2x23_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-123-02-xxx-DV-BE-LC, 23 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -46 -46 -Connector_Samtec_HLE_SMD -Samtec_HLE-123-02-xxx-DV-BE_2x23_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-123-02-xxx-DV-BE, 23 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -46 -46 -Connector_Samtec_HLE_SMD -Samtec_HLE-123-02-xxx-DV-LC_2x23_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-123-02-xxx-DV-LC, 23 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -46 -46 -Connector_Samtec_HLE_SMD -Samtec_HLE-123-02-xxx-DV_2x23_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-123-02-xxx-DV, 23 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -46 -46 -Connector_Samtec_HLE_SMD -Samtec_HLE-124-02-xxx-DV-A_2x24_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-124-02-xxx-DV-A, 24 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -48 -48 -Connector_Samtec_HLE_SMD -Samtec_HLE-124-02-xxx-DV-BE-A_2x24_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-124-02-xxx-DV-BE-A, 24 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -48 -48 -Connector_Samtec_HLE_SMD -Samtec_HLE-124-02-xxx-DV-BE-LC_2x24_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-124-02-xxx-DV-BE-LC, 24 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -48 -48 -Connector_Samtec_HLE_SMD -Samtec_HLE-124-02-xxx-DV-BE_2x24_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-124-02-xxx-DV-BE, 24 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -48 -48 -Connector_Samtec_HLE_SMD -Samtec_HLE-124-02-xxx-DV-LC_2x24_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-124-02-xxx-DV-LC, 24 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -48 -48 -Connector_Samtec_HLE_SMD -Samtec_HLE-124-02-xxx-DV_2x24_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-124-02-xxx-DV, 24 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -48 -48 -Connector_Samtec_HLE_SMD -Samtec_HLE-125-02-xxx-DV-A_2x25_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-125-02-xxx-DV-A, 25 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -50 -50 -Connector_Samtec_HLE_SMD -Samtec_HLE-125-02-xxx-DV-BE-A_2x25_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-125-02-xxx-DV-BE-A, 25 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -50 -50 -Connector_Samtec_HLE_SMD -Samtec_HLE-125-02-xxx-DV-BE-LC_2x25_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-125-02-xxx-DV-BE-LC, 25 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -50 -50 -Connector_Samtec_HLE_SMD -Samtec_HLE-125-02-xxx-DV-BE_2x25_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-125-02-xxx-DV-BE, 25 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -50 -50 -Connector_Samtec_HLE_SMD -Samtec_HLE-125-02-xxx-DV-LC_2x25_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-125-02-xxx-DV-LC, 25 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -50 -50 -Connector_Samtec_HLE_SMD -Samtec_HLE-125-02-xxx-DV_2x25_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-125-02-xxx-DV, 25 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -50 -50 -Connector_Samtec_HLE_SMD -Samtec_HLE-126-02-xxx-DV-A_2x26_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-126-02-xxx-DV-A, 26 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -52 -52 -Connector_Samtec_HLE_SMD -Samtec_HLE-126-02-xxx-DV-BE-A_2x26_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-126-02-xxx-DV-BE-A, 26 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -52 -52 -Connector_Samtec_HLE_SMD -Samtec_HLE-126-02-xxx-DV-BE-LC_2x26_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-126-02-xxx-DV-BE-LC, 26 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -52 -52 -Connector_Samtec_HLE_SMD -Samtec_HLE-126-02-xxx-DV-BE_2x26_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-126-02-xxx-DV-BE, 26 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -52 -52 -Connector_Samtec_HLE_SMD -Samtec_HLE-126-02-xxx-DV-LC_2x26_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-126-02-xxx-DV-LC, 26 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -52 -52 -Connector_Samtec_HLE_SMD -Samtec_HLE-126-02-xxx-DV_2x26_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-126-02-xxx-DV, 26 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -52 -52 -Connector_Samtec_HLE_SMD -Samtec_HLE-127-02-xxx-DV-A_2x27_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-127-02-xxx-DV-A, 27 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -54 -54 -Connector_Samtec_HLE_SMD -Samtec_HLE-127-02-xxx-DV-BE-A_2x27_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-127-02-xxx-DV-BE-A, 27 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -54 -54 -Connector_Samtec_HLE_SMD -Samtec_HLE-127-02-xxx-DV-BE-LC_2x27_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-127-02-xxx-DV-BE-LC, 27 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -54 -54 -Connector_Samtec_HLE_SMD -Samtec_HLE-127-02-xxx-DV-BE_2x27_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-127-02-xxx-DV-BE, 27 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -54 -54 -Connector_Samtec_HLE_SMD -Samtec_HLE-127-02-xxx-DV-LC_2x27_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-127-02-xxx-DV-LC, 27 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -54 -54 -Connector_Samtec_HLE_SMD -Samtec_HLE-127-02-xxx-DV_2x27_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-127-02-xxx-DV, 27 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -54 -54 -Connector_Samtec_HLE_SMD -Samtec_HLE-128-02-xxx-DV-A_2x28_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-128-02-xxx-DV-A, 28 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -56 -56 -Connector_Samtec_HLE_SMD -Samtec_HLE-128-02-xxx-DV-BE-A_2x28_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-128-02-xxx-DV-BE-A, 28 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -56 -56 -Connector_Samtec_HLE_SMD -Samtec_HLE-128-02-xxx-DV-BE-LC_2x28_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-128-02-xxx-DV-BE-LC, 28 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -56 -56 -Connector_Samtec_HLE_SMD -Samtec_HLE-128-02-xxx-DV-BE_2x28_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-128-02-xxx-DV-BE, 28 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -56 -56 -Connector_Samtec_HLE_SMD -Samtec_HLE-128-02-xxx-DV-LC_2x28_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-128-02-xxx-DV-LC, 28 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -56 -56 -Connector_Samtec_HLE_SMD -Samtec_HLE-128-02-xxx-DV_2x28_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-128-02-xxx-DV, 28 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -56 -56 -Connector_Samtec_HLE_SMD -Samtec_HLE-129-02-xxx-DV-A_2x29_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-129-02-xxx-DV-A, 29 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -58 -58 -Connector_Samtec_HLE_SMD -Samtec_HLE-129-02-xxx-DV-BE-A_2x29_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-129-02-xxx-DV-BE-A, 29 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -58 -58 -Connector_Samtec_HLE_SMD -Samtec_HLE-129-02-xxx-DV-BE-LC_2x29_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-129-02-xxx-DV-BE-LC, 29 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -58 -58 -Connector_Samtec_HLE_SMD -Samtec_HLE-129-02-xxx-DV-BE_2x29_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-129-02-xxx-DV-BE, 29 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -58 -58 -Connector_Samtec_HLE_SMD -Samtec_HLE-129-02-xxx-DV-LC_2x29_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-129-02-xxx-DV-LC, 29 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -58 -58 -Connector_Samtec_HLE_SMD -Samtec_HLE-129-02-xxx-DV_2x29_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-129-02-xxx-DV, 29 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -58 -58 -Connector_Samtec_HLE_SMD -Samtec_HLE-130-02-xxx-DV-A_2x30_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-130-02-xxx-DV-A, 30 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -60 -60 -Connector_Samtec_HLE_SMD -Samtec_HLE-130-02-xxx-DV-BE-A_2x30_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-130-02-xxx-DV-BE-A, 30 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -60 -60 -Connector_Samtec_HLE_SMD -Samtec_HLE-130-02-xxx-DV-BE-LC_2x30_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-130-02-xxx-DV-BE-LC, 30 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -60 -60 -Connector_Samtec_HLE_SMD -Samtec_HLE-130-02-xxx-DV-BE_2x30_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-130-02-xxx-DV-BE, 30 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -60 -60 -Connector_Samtec_HLE_SMD -Samtec_HLE-130-02-xxx-DV-LC_2x30_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-130-02-xxx-DV-LC, 30 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -60 -60 -Connector_Samtec_HLE_SMD -Samtec_HLE-130-02-xxx-DV_2x30_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-130-02-xxx-DV, 30 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -60 -60 -Connector_Samtec_HLE_SMD -Samtec_HLE-131-02-xxx-DV-A_2x31_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-131-02-xxx-DV-A, 31 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -62 -62 -Connector_Samtec_HLE_SMD -Samtec_HLE-131-02-xxx-DV-BE-A_2x31_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-131-02-xxx-DV-BE-A, 31 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -62 -62 -Connector_Samtec_HLE_SMD -Samtec_HLE-131-02-xxx-DV-BE-LC_2x31_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-131-02-xxx-DV-BE-LC, 31 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -62 -62 -Connector_Samtec_HLE_SMD -Samtec_HLE-131-02-xxx-DV-BE_2x31_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-131-02-xxx-DV-BE, 31 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -62 -62 -Connector_Samtec_HLE_SMD -Samtec_HLE-131-02-xxx-DV-LC_2x31_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-131-02-xxx-DV-LC, 31 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -62 -62 -Connector_Samtec_HLE_SMD -Samtec_HLE-131-02-xxx-DV_2x31_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-131-02-xxx-DV, 31 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -62 -62 -Connector_Samtec_HLE_SMD -Samtec_HLE-132-02-xxx-DV-A_2x32_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-132-02-xxx-DV-A, 32 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -64 -64 -Connector_Samtec_HLE_SMD -Samtec_HLE-132-02-xxx-DV-BE-A_2x32_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-132-02-xxx-DV-BE-A, 32 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -64 -64 -Connector_Samtec_HLE_SMD -Samtec_HLE-132-02-xxx-DV-BE-LC_2x32_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-132-02-xxx-DV-BE-LC, 32 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -64 -64 -Connector_Samtec_HLE_SMD -Samtec_HLE-132-02-xxx-DV-BE_2x32_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-132-02-xxx-DV-BE, 32 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -64 -64 -Connector_Samtec_HLE_SMD -Samtec_HLE-132-02-xxx-DV-LC_2x32_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-132-02-xxx-DV-LC, 32 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -64 -64 -Connector_Samtec_HLE_SMD -Samtec_HLE-132-02-xxx-DV_2x32_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-132-02-xxx-DV, 32 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -64 -64 -Connector_Samtec_HLE_SMD -Samtec_HLE-133-02-xxx-DV-A_2x33_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-133-02-xxx-DV-A, 33 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -66 -66 -Connector_Samtec_HLE_SMD -Samtec_HLE-133-02-xxx-DV-BE-A_2x33_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-133-02-xxx-DV-BE-A, 33 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -66 -66 -Connector_Samtec_HLE_SMD -Samtec_HLE-133-02-xxx-DV-BE-LC_2x33_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-133-02-xxx-DV-BE-LC, 33 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -66 -66 -Connector_Samtec_HLE_SMD -Samtec_HLE-133-02-xxx-DV-BE_2x33_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-133-02-xxx-DV-BE, 33 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -66 -66 -Connector_Samtec_HLE_SMD -Samtec_HLE-133-02-xxx-DV-LC_2x33_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-133-02-xxx-DV-LC, 33 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -66 -66 -Connector_Samtec_HLE_SMD -Samtec_HLE-133-02-xxx-DV_2x33_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-133-02-xxx-DV, 33 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -66 -66 -Connector_Samtec_HLE_SMD -Samtec_HLE-134-02-xxx-DV-A_2x34_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-134-02-xxx-DV-A, 34 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -68 -68 -Connector_Samtec_HLE_SMD -Samtec_HLE-134-02-xxx-DV-BE-A_2x34_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-134-02-xxx-DV-BE-A, 34 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -68 -68 -Connector_Samtec_HLE_SMD -Samtec_HLE-134-02-xxx-DV-BE-LC_2x34_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-134-02-xxx-DV-BE-LC, 34 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -68 -68 -Connector_Samtec_HLE_SMD -Samtec_HLE-134-02-xxx-DV-BE_2x34_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-134-02-xxx-DV-BE, 34 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -68 -68 -Connector_Samtec_HLE_SMD -Samtec_HLE-134-02-xxx-DV-LC_2x34_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-134-02-xxx-DV-LC, 34 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -68 -68 -Connector_Samtec_HLE_SMD -Samtec_HLE-134-02-xxx-DV_2x34_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-134-02-xxx-DV, 34 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -68 -68 -Connector_Samtec_HLE_SMD -Samtec_HLE-135-02-xxx-DV-A_2x35_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-135-02-xxx-DV-A, 35 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -70 -70 -Connector_Samtec_HLE_SMD -Samtec_HLE-135-02-xxx-DV-BE-A_2x35_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-135-02-xxx-DV-BE-A, 35 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -70 -70 -Connector_Samtec_HLE_SMD -Samtec_HLE-135-02-xxx-DV-BE-LC_2x35_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-135-02-xxx-DV-BE-LC, 35 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -70 -70 -Connector_Samtec_HLE_SMD -Samtec_HLE-135-02-xxx-DV-BE_2x35_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-135-02-xxx-DV-BE, 35 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -70 -70 -Connector_Samtec_HLE_SMD -Samtec_HLE-135-02-xxx-DV-LC_2x35_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-135-02-xxx-DV-LC, 35 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -70 -70 -Connector_Samtec_HLE_SMD -Samtec_HLE-135-02-xxx-DV_2x35_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-135-02-xxx-DV, 35 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -70 -70 -Connector_Samtec_HLE_SMD -Samtec_HLE-136-02-xxx-DV-A_2x36_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-136-02-xxx-DV-A, 36 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -72 -72 -Connector_Samtec_HLE_SMD -Samtec_HLE-136-02-xxx-DV-BE-A_2x36_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-136-02-xxx-DV-BE-A, 36 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -72 -72 -Connector_Samtec_HLE_SMD -Samtec_HLE-136-02-xxx-DV-BE-LC_2x36_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-136-02-xxx-DV-BE-LC, 36 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -72 -72 -Connector_Samtec_HLE_SMD -Samtec_HLE-136-02-xxx-DV-BE_2x36_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-136-02-xxx-DV-BE, 36 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -72 -72 -Connector_Samtec_HLE_SMD -Samtec_HLE-136-02-xxx-DV-LC_2x36_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-136-02-xxx-DV-LC, 36 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -72 -72 -Connector_Samtec_HLE_SMD -Samtec_HLE-136-02-xxx-DV_2x36_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-136-02-xxx-DV, 36 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -72 -72 -Connector_Samtec_HLE_SMD -Samtec_HLE-137-02-xxx-DV-A_2x37_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-137-02-xxx-DV-A, 37 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -74 -74 -Connector_Samtec_HLE_SMD -Samtec_HLE-137-02-xxx-DV-BE-A_2x37_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-137-02-xxx-DV-BE-A, 37 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -74 -74 -Connector_Samtec_HLE_SMD -Samtec_HLE-137-02-xxx-DV-BE-LC_2x37_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-137-02-xxx-DV-BE-LC, 37 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -74 -74 -Connector_Samtec_HLE_SMD -Samtec_HLE-137-02-xxx-DV-BE_2x37_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-137-02-xxx-DV-BE, 37 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -74 -74 -Connector_Samtec_HLE_SMD -Samtec_HLE-137-02-xxx-DV-LC_2x37_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-137-02-xxx-DV-LC, 37 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -74 -74 -Connector_Samtec_HLE_SMD -Samtec_HLE-137-02-xxx-DV_2x37_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-137-02-xxx-DV, 37 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -74 -74 -Connector_Samtec_HLE_SMD -Samtec_HLE-138-02-xxx-DV-A_2x38_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-138-02-xxx-DV-A, 38 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -76 -76 -Connector_Samtec_HLE_SMD -Samtec_HLE-138-02-xxx-DV-BE-A_2x38_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-138-02-xxx-DV-BE-A, 38 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -76 -76 -Connector_Samtec_HLE_SMD -Samtec_HLE-138-02-xxx-DV-BE-LC_2x38_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-138-02-xxx-DV-BE-LC, 38 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -76 -76 -Connector_Samtec_HLE_SMD -Samtec_HLE-138-02-xxx-DV-BE_2x38_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-138-02-xxx-DV-BE, 38 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -76 -76 -Connector_Samtec_HLE_SMD -Samtec_HLE-138-02-xxx-DV-LC_2x38_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-138-02-xxx-DV-LC, 38 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -76 -76 -Connector_Samtec_HLE_SMD -Samtec_HLE-138-02-xxx-DV_2x38_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-138-02-xxx-DV, 38 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -76 -76 -Connector_Samtec_HLE_SMD -Samtec_HLE-139-02-xxx-DV-A_2x39_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-139-02-xxx-DV-A, 39 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -78 -78 -Connector_Samtec_HLE_SMD -Samtec_HLE-139-02-xxx-DV-BE-A_2x39_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-139-02-xxx-DV-BE-A, 39 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -78 -78 -Connector_Samtec_HLE_SMD -Samtec_HLE-139-02-xxx-DV-BE-LC_2x39_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-139-02-xxx-DV-BE-LC, 39 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -78 -78 -Connector_Samtec_HLE_SMD -Samtec_HLE-139-02-xxx-DV-BE_2x39_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-139-02-xxx-DV-BE, 39 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -78 -78 -Connector_Samtec_HLE_SMD -Samtec_HLE-139-02-xxx-DV-LC_2x39_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-139-02-xxx-DV-LC, 39 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -78 -78 -Connector_Samtec_HLE_SMD -Samtec_HLE-139-02-xxx-DV_2x39_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-139-02-xxx-DV, 39 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -78 -78 -Connector_Samtec_HLE_SMD -Samtec_HLE-140-02-xxx-DV-A_2x40_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-140-02-xxx-DV-A, 40 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -80 -80 -Connector_Samtec_HLE_SMD -Samtec_HLE-140-02-xxx-DV-BE-A_2x40_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-140-02-xxx-DV-BE-A, 40 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -80 -80 -Connector_Samtec_HLE_SMD -Samtec_HLE-140-02-xxx-DV-BE-LC_2x40_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-140-02-xxx-DV-BE-LC, 40 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -80 -80 -Connector_Samtec_HLE_SMD -Samtec_HLE-140-02-xxx-DV-BE_2x40_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-140-02-xxx-DV-BE, 40 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -80 -80 -Connector_Samtec_HLE_SMD -Samtec_HLE-140-02-xxx-DV-LC_2x40_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-140-02-xxx-DV-LC, 40 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -80 -80 -Connector_Samtec_HLE_SMD -Samtec_HLE-140-02-xxx-DV_2x40_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-140-02-xxx-DV, 40 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -80 -80 -Connector_Samtec_HLE_SMD -Samtec_HLE-141-02-xxx-DV-A_2x41_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-141-02-xxx-DV-A, 41 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -82 -82 -Connector_Samtec_HLE_SMD -Samtec_HLE-141-02-xxx-DV-BE-A_2x41_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-141-02-xxx-DV-BE-A, 41 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -82 -82 -Connector_Samtec_HLE_SMD -Samtec_HLE-141-02-xxx-DV-BE-LC_2x41_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-141-02-xxx-DV-BE-LC, 41 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -82 -82 -Connector_Samtec_HLE_SMD -Samtec_HLE-141-02-xxx-DV-BE_2x41_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-141-02-xxx-DV-BE, 41 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -82 -82 -Connector_Samtec_HLE_SMD -Samtec_HLE-141-02-xxx-DV-LC_2x41_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-141-02-xxx-DV-LC, 41 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -82 -82 -Connector_Samtec_HLE_SMD -Samtec_HLE-141-02-xxx-DV_2x41_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-141-02-xxx-DV, 41 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -82 -82 -Connector_Samtec_HLE_SMD -Samtec_HLE-142-02-xxx-DV-A_2x42_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-142-02-xxx-DV-A, 42 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -84 -84 -Connector_Samtec_HLE_SMD -Samtec_HLE-142-02-xxx-DV-BE-A_2x42_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-142-02-xxx-DV-BE-A, 42 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -84 -84 -Connector_Samtec_HLE_SMD -Samtec_HLE-142-02-xxx-DV-BE-LC_2x42_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-142-02-xxx-DV-BE-LC, 42 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -84 -84 -Connector_Samtec_HLE_SMD -Samtec_HLE-142-02-xxx-DV-BE_2x42_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-142-02-xxx-DV-BE, 42 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -84 -84 -Connector_Samtec_HLE_SMD -Samtec_HLE-142-02-xxx-DV-LC_2x42_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-142-02-xxx-DV-LC, 42 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -84 -84 -Connector_Samtec_HLE_SMD -Samtec_HLE-142-02-xxx-DV_2x42_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-142-02-xxx-DV, 42 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -84 -84 -Connector_Samtec_HLE_SMD -Samtec_HLE-143-02-xxx-DV-A_2x43_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-143-02-xxx-DV-A, 43 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -86 -86 -Connector_Samtec_HLE_SMD -Samtec_HLE-143-02-xxx-DV-BE-A_2x43_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-143-02-xxx-DV-BE-A, 43 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -86 -86 -Connector_Samtec_HLE_SMD -Samtec_HLE-143-02-xxx-DV-BE-LC_2x43_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-143-02-xxx-DV-BE-LC, 43 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -86 -86 -Connector_Samtec_HLE_SMD -Samtec_HLE-143-02-xxx-DV-BE_2x43_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-143-02-xxx-DV-BE, 43 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -86 -86 -Connector_Samtec_HLE_SMD -Samtec_HLE-143-02-xxx-DV-LC_2x43_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-143-02-xxx-DV-LC, 43 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -86 -86 -Connector_Samtec_HLE_SMD -Samtec_HLE-143-02-xxx-DV_2x43_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-143-02-xxx-DV, 43 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -86 -86 -Connector_Samtec_HLE_SMD -Samtec_HLE-144-02-xxx-DV-A_2x44_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-144-02-xxx-DV-A, 44 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -88 -88 -Connector_Samtec_HLE_SMD -Samtec_HLE-144-02-xxx-DV-BE-A_2x44_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-144-02-xxx-DV-BE-A, 44 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -88 -88 -Connector_Samtec_HLE_SMD -Samtec_HLE-144-02-xxx-DV-BE-LC_2x44_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-144-02-xxx-DV-BE-LC, 44 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -88 -88 -Connector_Samtec_HLE_SMD -Samtec_HLE-144-02-xxx-DV-BE_2x44_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-144-02-xxx-DV-BE, 44 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -88 -88 -Connector_Samtec_HLE_SMD -Samtec_HLE-144-02-xxx-DV-LC_2x44_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-144-02-xxx-DV-LC, 44 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -88 -88 -Connector_Samtec_HLE_SMD -Samtec_HLE-144-02-xxx-DV_2x44_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-144-02-xxx-DV, 44 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -88 -88 -Connector_Samtec_HLE_SMD -Samtec_HLE-145-02-xxx-DV-A_2x45_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-145-02-xxx-DV-A, 45 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -90 -90 -Connector_Samtec_HLE_SMD -Samtec_HLE-145-02-xxx-DV-BE-A_2x45_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-145-02-xxx-DV-BE-A, 45 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -90 -90 -Connector_Samtec_HLE_SMD -Samtec_HLE-145-02-xxx-DV-BE-LC_2x45_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-145-02-xxx-DV-BE-LC, 45 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -90 -90 -Connector_Samtec_HLE_SMD -Samtec_HLE-145-02-xxx-DV-BE_2x45_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-145-02-xxx-DV-BE, 45 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -90 -90 -Connector_Samtec_HLE_SMD -Samtec_HLE-145-02-xxx-DV-LC_2x45_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-145-02-xxx-DV-LC, 45 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -90 -90 -Connector_Samtec_HLE_SMD -Samtec_HLE-145-02-xxx-DV_2x45_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-145-02-xxx-DV, 45 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -90 -90 -Connector_Samtec_HLE_SMD -Samtec_HLE-146-02-xxx-DV-A_2x46_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-146-02-xxx-DV-A, 46 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -92 -92 -Connector_Samtec_HLE_SMD -Samtec_HLE-146-02-xxx-DV-BE-A_2x46_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-146-02-xxx-DV-BE-A, 46 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -92 -92 -Connector_Samtec_HLE_SMD -Samtec_HLE-146-02-xxx-DV-BE-LC_2x46_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-146-02-xxx-DV-BE-LC, 46 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -92 -92 -Connector_Samtec_HLE_SMD -Samtec_HLE-146-02-xxx-DV-BE_2x46_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-146-02-xxx-DV-BE, 46 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -92 -92 -Connector_Samtec_HLE_SMD -Samtec_HLE-146-02-xxx-DV-LC_2x46_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-146-02-xxx-DV-LC, 46 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -92 -92 -Connector_Samtec_HLE_SMD -Samtec_HLE-146-02-xxx-DV_2x46_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-146-02-xxx-DV, 46 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -92 -92 -Connector_Samtec_HLE_SMD -Samtec_HLE-147-02-xxx-DV-A_2x47_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-147-02-xxx-DV-A, 47 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -94 -94 -Connector_Samtec_HLE_SMD -Samtec_HLE-147-02-xxx-DV-BE-A_2x47_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-147-02-xxx-DV-BE-A, 47 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -94 -94 -Connector_Samtec_HLE_SMD -Samtec_HLE-147-02-xxx-DV-BE-LC_2x47_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-147-02-xxx-DV-BE-LC, 47 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -94 -94 -Connector_Samtec_HLE_SMD -Samtec_HLE-147-02-xxx-DV-BE_2x47_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-147-02-xxx-DV-BE, 47 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -94 -94 -Connector_Samtec_HLE_SMD -Samtec_HLE-147-02-xxx-DV-LC_2x47_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-147-02-xxx-DV-LC, 47 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -94 -94 -Connector_Samtec_HLE_SMD -Samtec_HLE-147-02-xxx-DV_2x47_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-147-02-xxx-DV, 47 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -94 -94 -Connector_Samtec_HLE_SMD -Samtec_HLE-148-02-xxx-DV-A_2x48_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-148-02-xxx-DV-A, 48 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -96 -96 -Connector_Samtec_HLE_SMD -Samtec_HLE-148-02-xxx-DV-BE-A_2x48_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-148-02-xxx-DV-BE-A, 48 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -96 -96 -Connector_Samtec_HLE_SMD -Samtec_HLE-148-02-xxx-DV-BE-LC_2x48_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-148-02-xxx-DV-BE-LC, 48 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -96 -96 -Connector_Samtec_HLE_SMD -Samtec_HLE-148-02-xxx-DV-BE_2x48_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-148-02-xxx-DV-BE, 48 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -96 -96 -Connector_Samtec_HLE_SMD -Samtec_HLE-148-02-xxx-DV-LC_2x48_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-148-02-xxx-DV-LC, 48 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -96 -96 -Connector_Samtec_HLE_SMD -Samtec_HLE-148-02-xxx-DV_2x48_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-148-02-xxx-DV, 48 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -96 -96 -Connector_Samtec_HLE_SMD -Samtec_HLE-149-02-xxx-DV-A_2x49_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-149-02-xxx-DV-A, 49 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -98 -98 -Connector_Samtec_HLE_SMD -Samtec_HLE-149-02-xxx-DV-BE-A_2x49_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-149-02-xxx-DV-BE-A, 49 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -98 -98 -Connector_Samtec_HLE_SMD -Samtec_HLE-149-02-xxx-DV-BE-LC_2x49_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-149-02-xxx-DV-BE-LC, 49 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -98 -98 -Connector_Samtec_HLE_SMD -Samtec_HLE-149-02-xxx-DV-BE_2x49_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-149-02-xxx-DV-BE, 49 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -98 -98 -Connector_Samtec_HLE_SMD -Samtec_HLE-149-02-xxx-DV-LC_2x49_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-149-02-xxx-DV-LC, 49 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -98 -98 -Connector_Samtec_HLE_SMD -Samtec_HLE-149-02-xxx-DV_2x49_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-149-02-xxx-DV, 49 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -98 -98 -Connector_Samtec_HLE_SMD -Samtec_HLE-150-02-xxx-DV-A_2x50_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-150-02-xxx-DV-A, 50 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -100 -100 -Connector_Samtec_HLE_SMD -Samtec_HLE-150-02-xxx-DV-BE-A_2x50_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-150-02-xxx-DV-BE-A, 50 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -100 -100 -Connector_Samtec_HLE_SMD -Samtec_HLE-150-02-xxx-DV-BE-LC_2x50_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-150-02-xxx-DV-BE-LC, 50 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -100 -100 -Connector_Samtec_HLE_SMD -Samtec_HLE-150-02-xxx-DV-BE_2x50_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-150-02-xxx-DV-BE, 50 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -100 -100 -Connector_Samtec_HLE_SMD -Samtec_HLE-150-02-xxx-DV-LC_2x50_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-150-02-xxx-DV-LC, 50 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -100 -100 -Connector_Samtec_HLE_SMD -Samtec_HLE-150-02-xxx-DV_2x50_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-150-02-xxx-DV, 50 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xxx-dv-xx-xx-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-dv-footprint.pdf), generated with kicad-footprint-generator -connector Samtec HLE horizontal -0 -100 -100 -Connector_Samtec_HLE_THT -Samtec_HLE-104-02-xx-DV-PE-LC_2x04_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-104-02-xx-DV-PE-LC, 4 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -8 -8 -Connector_Samtec_HLE_THT -Samtec_HLE-104-02-xx-DV-PE_2x04_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-104-02-xx-DV-PE (compatible alternatives: HLE-104-02-xx-DV-PE-BE), 4 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -8 -8 -Connector_Samtec_HLE_THT -Samtec_HLE-104-02-xx-DV-TE_2x04_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-104-02-xx-DV-TE, 4 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -8 -8 -Connector_Samtec_HLE_THT -Samtec_HLE-105-02-xx-DV-PE-LC_2x05_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-105-02-xx-DV-PE-LC, 5 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -10 -10 -Connector_Samtec_HLE_THT -Samtec_HLE-105-02-xx-DV-PE_2x05_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-105-02-xx-DV-PE (compatible alternatives: HLE-105-02-xx-DV-PE-BE), 5 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -10 -10 -Connector_Samtec_HLE_THT -Samtec_HLE-105-02-xx-DV-TE_2x05_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-105-02-xx-DV-TE, 5 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -10 -10 -Connector_Samtec_HLE_THT -Samtec_HLE-106-02-xx-DV-PE-LC_2x06_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-106-02-xx-DV-PE-LC, 6 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -12 -12 -Connector_Samtec_HLE_THT -Samtec_HLE-106-02-xx-DV-PE_2x06_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-106-02-xx-DV-PE (compatible alternatives: HLE-106-02-xx-DV-PE-BE), 6 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -12 -12 -Connector_Samtec_HLE_THT -Samtec_HLE-106-02-xx-DV-TE_2x06_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-106-02-xx-DV-TE, 6 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -12 -12 -Connector_Samtec_HLE_THT -Samtec_HLE-107-02-xx-DV-PE-LC_2x07_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-107-02-xx-DV-PE-LC, 7 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -14 -14 -Connector_Samtec_HLE_THT -Samtec_HLE-107-02-xx-DV-PE_2x07_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-107-02-xx-DV-PE (compatible alternatives: HLE-107-02-xx-DV-PE-BE), 7 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -14 -14 -Connector_Samtec_HLE_THT -Samtec_HLE-107-02-xx-DV-TE_2x07_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-107-02-xx-DV-TE, 7 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -14 -14 -Connector_Samtec_HLE_THT -Samtec_HLE-108-02-xx-DV-PE-LC_2x08_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-108-02-xx-DV-PE-LC, 8 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -16 -16 -Connector_Samtec_HLE_THT -Samtec_HLE-108-02-xx-DV-PE_2x08_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-108-02-xx-DV-PE (compatible alternatives: HLE-108-02-xx-DV-PE-BE), 8 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -16 -16 -Connector_Samtec_HLE_THT -Samtec_HLE-108-02-xx-DV-TE_2x08_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-108-02-xx-DV-TE, 8 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -16 -16 -Connector_Samtec_HLE_THT -Samtec_HLE-109-02-xx-DV-PE-LC_2x09_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-109-02-xx-DV-PE-LC, 9 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -18 -18 -Connector_Samtec_HLE_THT -Samtec_HLE-109-02-xx-DV-PE_2x09_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-109-02-xx-DV-PE (compatible alternatives: HLE-109-02-xx-DV-PE-BE), 9 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -18 -18 -Connector_Samtec_HLE_THT -Samtec_HLE-109-02-xx-DV-TE_2x09_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-109-02-xx-DV-TE, 9 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -18 -18 -Connector_Samtec_HLE_THT -Samtec_HLE-110-02-xx-DV-PE-LC_2x10_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-110-02-xx-DV-PE-LC, 10 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -20 -20 -Connector_Samtec_HLE_THT -Samtec_HLE-110-02-xx-DV-PE_2x10_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-110-02-xx-DV-PE (compatible alternatives: HLE-110-02-xx-DV-PE-BE), 10 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -20 -20 -Connector_Samtec_HLE_THT -Samtec_HLE-110-02-xx-DV-TE_2x10_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-110-02-xx-DV-TE, 10 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -20 -20 -Connector_Samtec_HLE_THT -Samtec_HLE-111-02-xx-DV-PE-LC_2x11_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-111-02-xx-DV-PE-LC, 11 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -22 -22 -Connector_Samtec_HLE_THT -Samtec_HLE-111-02-xx-DV-PE_2x11_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-111-02-xx-DV-PE (compatible alternatives: HLE-111-02-xx-DV-PE-BE), 11 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -22 -22 -Connector_Samtec_HLE_THT -Samtec_HLE-111-02-xx-DV-TE_2x11_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-111-02-xx-DV-TE, 11 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -22 -22 -Connector_Samtec_HLE_THT -Samtec_HLE-112-02-xx-DV-PE-LC_2x12_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-112-02-xx-DV-PE-LC, 12 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -24 -24 -Connector_Samtec_HLE_THT -Samtec_HLE-112-02-xx-DV-PE_2x12_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-112-02-xx-DV-PE (compatible alternatives: HLE-112-02-xx-DV-PE-BE), 12 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -24 -24 -Connector_Samtec_HLE_THT -Samtec_HLE-112-02-xx-DV-TE_2x12_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-112-02-xx-DV-TE, 12 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -24 -24 -Connector_Samtec_HLE_THT -Samtec_HLE-113-02-xx-DV-PE-LC_2x13_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-113-02-xx-DV-PE-LC, 13 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -26 -26 -Connector_Samtec_HLE_THT -Samtec_HLE-113-02-xx-DV-PE_2x13_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-113-02-xx-DV-PE (compatible alternatives: HLE-113-02-xx-DV-PE-BE), 13 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -26 -26 -Connector_Samtec_HLE_THT -Samtec_HLE-113-02-xx-DV-TE_2x13_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-113-02-xx-DV-TE, 13 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -26 -26 -Connector_Samtec_HLE_THT -Samtec_HLE-114-02-xx-DV-PE-LC_2x14_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-114-02-xx-DV-PE-LC, 14 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -28 -28 -Connector_Samtec_HLE_THT -Samtec_HLE-114-02-xx-DV-PE_2x14_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-114-02-xx-DV-PE (compatible alternatives: HLE-114-02-xx-DV-PE-BE), 14 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -28 -28 -Connector_Samtec_HLE_THT -Samtec_HLE-114-02-xx-DV-TE_2x14_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-114-02-xx-DV-TE, 14 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -28 -28 -Connector_Samtec_HLE_THT -Samtec_HLE-115-02-xx-DV-PE-LC_2x15_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-115-02-xx-DV-PE-LC, 15 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -30 -30 -Connector_Samtec_HLE_THT -Samtec_HLE-115-02-xx-DV-PE_2x15_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-115-02-xx-DV-PE (compatible alternatives: HLE-115-02-xx-DV-PE-BE), 15 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -30 -30 -Connector_Samtec_HLE_THT -Samtec_HLE-115-02-xx-DV-TE_2x15_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-115-02-xx-DV-TE, 15 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -30 -30 -Connector_Samtec_HLE_THT -Samtec_HLE-116-02-xx-DV-PE-LC_2x16_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-116-02-xx-DV-PE-LC, 16 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -32 -32 -Connector_Samtec_HLE_THT -Samtec_HLE-116-02-xx-DV-PE_2x16_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-116-02-xx-DV-PE (compatible alternatives: HLE-116-02-xx-DV-PE-BE), 16 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -32 -32 -Connector_Samtec_HLE_THT -Samtec_HLE-116-02-xx-DV-TE_2x16_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-116-02-xx-DV-TE, 16 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -32 -32 -Connector_Samtec_HLE_THT -Samtec_HLE-117-02-xx-DV-PE-LC_2x17_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-117-02-xx-DV-PE-LC, 17 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -34 -34 -Connector_Samtec_HLE_THT -Samtec_HLE-117-02-xx-DV-PE_2x17_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-117-02-xx-DV-PE (compatible alternatives: HLE-117-02-xx-DV-PE-BE), 17 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -34 -34 -Connector_Samtec_HLE_THT -Samtec_HLE-117-02-xx-DV-TE_2x17_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-117-02-xx-DV-TE, 17 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -34 -34 -Connector_Samtec_HLE_THT -Samtec_HLE-118-02-xx-DV-PE-LC_2x18_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-118-02-xx-DV-PE-LC, 18 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -36 -36 -Connector_Samtec_HLE_THT -Samtec_HLE-118-02-xx-DV-PE_2x18_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-118-02-xx-DV-PE (compatible alternatives: HLE-118-02-xx-DV-PE-BE), 18 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -36 -36 -Connector_Samtec_HLE_THT -Samtec_HLE-118-02-xx-DV-TE_2x18_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-118-02-xx-DV-TE, 18 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -36 -36 -Connector_Samtec_HLE_THT -Samtec_HLE-119-02-xx-DV-PE-LC_2x19_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-119-02-xx-DV-PE-LC, 19 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -38 -38 -Connector_Samtec_HLE_THT -Samtec_HLE-119-02-xx-DV-PE_2x19_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-119-02-xx-DV-PE (compatible alternatives: HLE-119-02-xx-DV-PE-BE), 19 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -38 -38 -Connector_Samtec_HLE_THT -Samtec_HLE-119-02-xx-DV-TE_2x19_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-119-02-xx-DV-TE, 19 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -38 -38 -Connector_Samtec_HLE_THT -Samtec_HLE-120-02-xx-DV-PE-LC_2x20_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-120-02-xx-DV-PE-LC, 20 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -40 -40 -Connector_Samtec_HLE_THT -Samtec_HLE-120-02-xx-DV-PE_2x20_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-120-02-xx-DV-PE (compatible alternatives: HLE-120-02-xx-DV-PE-BE), 20 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -40 -40 -Connector_Samtec_HLE_THT -Samtec_HLE-120-02-xx-DV-TE_2x20_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-120-02-xx-DV-TE, 20 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -40 -40 -Connector_Samtec_HLE_THT -Samtec_HLE-121-02-xx-DV-PE-LC_2x21_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-121-02-xx-DV-PE-LC, 21 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -42 -42 -Connector_Samtec_HLE_THT -Samtec_HLE-121-02-xx-DV-PE_2x21_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-121-02-xx-DV-PE (compatible alternatives: HLE-121-02-xx-DV-PE-BE), 21 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -42 -42 -Connector_Samtec_HLE_THT -Samtec_HLE-121-02-xx-DV-TE_2x21_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-121-02-xx-DV-TE, 21 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -42 -42 -Connector_Samtec_HLE_THT -Samtec_HLE-122-02-xx-DV-PE-LC_2x22_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-122-02-xx-DV-PE-LC, 22 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -44 -44 -Connector_Samtec_HLE_THT -Samtec_HLE-122-02-xx-DV-PE_2x22_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-122-02-xx-DV-PE (compatible alternatives: HLE-122-02-xx-DV-PE-BE), 22 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -44 -44 -Connector_Samtec_HLE_THT -Samtec_HLE-122-02-xx-DV-TE_2x22_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-122-02-xx-DV-TE, 22 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -44 -44 -Connector_Samtec_HLE_THT -Samtec_HLE-123-02-xx-DV-PE-LC_2x23_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-123-02-xx-DV-PE-LC, 23 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -46 -46 -Connector_Samtec_HLE_THT -Samtec_HLE-123-02-xx-DV-PE_2x23_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-123-02-xx-DV-PE (compatible alternatives: HLE-123-02-xx-DV-PE-BE), 23 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -46 -46 -Connector_Samtec_HLE_THT -Samtec_HLE-123-02-xx-DV-TE_2x23_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-123-02-xx-DV-TE, 23 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -46 -46 -Connector_Samtec_HLE_THT -Samtec_HLE-124-02-xx-DV-PE-LC_2x24_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-124-02-xx-DV-PE-LC, 24 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -48 -48 -Connector_Samtec_HLE_THT -Samtec_HLE-124-02-xx-DV-PE_2x24_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-124-02-xx-DV-PE (compatible alternatives: HLE-124-02-xx-DV-PE-BE), 24 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -48 -48 -Connector_Samtec_HLE_THT -Samtec_HLE-124-02-xx-DV-TE_2x24_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-124-02-xx-DV-TE, 24 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -48 -48 -Connector_Samtec_HLE_THT -Samtec_HLE-125-02-xx-DV-PE-LC_2x25_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-125-02-xx-DV-PE-LC, 25 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -50 -50 -Connector_Samtec_HLE_THT -Samtec_HLE-125-02-xx-DV-PE_2x25_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-125-02-xx-DV-PE (compatible alternatives: HLE-125-02-xx-DV-PE-BE), 25 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -50 -50 -Connector_Samtec_HLE_THT -Samtec_HLE-125-02-xx-DV-TE_2x25_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-125-02-xx-DV-TE, 25 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -50 -50 -Connector_Samtec_HLE_THT -Samtec_HLE-126-02-xx-DV-PE-LC_2x26_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-126-02-xx-DV-PE-LC, 26 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -52 -52 -Connector_Samtec_HLE_THT -Samtec_HLE-126-02-xx-DV-PE_2x26_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-126-02-xx-DV-PE (compatible alternatives: HLE-126-02-xx-DV-PE-BE), 26 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -52 -52 -Connector_Samtec_HLE_THT -Samtec_HLE-126-02-xx-DV-TE_2x26_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-126-02-xx-DV-TE, 26 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -52 -52 -Connector_Samtec_HLE_THT -Samtec_HLE-127-02-xx-DV-PE-LC_2x27_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-127-02-xx-DV-PE-LC, 27 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -54 -54 -Connector_Samtec_HLE_THT -Samtec_HLE-127-02-xx-DV-PE_2x27_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-127-02-xx-DV-PE (compatible alternatives: HLE-127-02-xx-DV-PE-BE), 27 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -54 -54 -Connector_Samtec_HLE_THT -Samtec_HLE-127-02-xx-DV-TE_2x27_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-127-02-xx-DV-TE, 27 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -54 -54 -Connector_Samtec_HLE_THT -Samtec_HLE-128-02-xx-DV-PE-LC_2x28_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-128-02-xx-DV-PE-LC, 28 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -56 -56 -Connector_Samtec_HLE_THT -Samtec_HLE-128-02-xx-DV-PE_2x28_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-128-02-xx-DV-PE (compatible alternatives: HLE-128-02-xx-DV-PE-BE), 28 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -56 -56 -Connector_Samtec_HLE_THT -Samtec_HLE-128-02-xx-DV-TE_2x28_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-128-02-xx-DV-TE, 28 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -56 -56 -Connector_Samtec_HLE_THT -Samtec_HLE-129-02-xx-DV-PE-LC_2x29_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-129-02-xx-DV-PE-LC, 29 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -58 -58 -Connector_Samtec_HLE_THT -Samtec_HLE-129-02-xx-DV-PE_2x29_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-129-02-xx-DV-PE (compatible alternatives: HLE-129-02-xx-DV-PE-BE), 29 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -58 -58 -Connector_Samtec_HLE_THT -Samtec_HLE-129-02-xx-DV-TE_2x29_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-129-02-xx-DV-TE, 29 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -58 -58 -Connector_Samtec_HLE_THT -Samtec_HLE-130-02-xx-DV-PE-LC_2x30_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-130-02-xx-DV-PE-LC, 30 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -60 -60 -Connector_Samtec_HLE_THT -Samtec_HLE-130-02-xx-DV-PE_2x30_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-130-02-xx-DV-PE (compatible alternatives: HLE-130-02-xx-DV-PE-BE), 30 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -60 -60 -Connector_Samtec_HLE_THT -Samtec_HLE-130-02-xx-DV-TE_2x30_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-130-02-xx-DV-TE, 30 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -60 -60 -Connector_Samtec_HLE_THT -Samtec_HLE-131-02-xx-DV-PE-LC_2x31_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-131-02-xx-DV-PE-LC, 31 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -62 -62 -Connector_Samtec_HLE_THT -Samtec_HLE-131-02-xx-DV-PE_2x31_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-131-02-xx-DV-PE (compatible alternatives: HLE-131-02-xx-DV-PE-BE), 31 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -62 -62 -Connector_Samtec_HLE_THT -Samtec_HLE-131-02-xx-DV-TE_2x31_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-131-02-xx-DV-TE, 31 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -62 -62 -Connector_Samtec_HLE_THT -Samtec_HLE-132-02-xx-DV-PE-LC_2x32_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-132-02-xx-DV-PE-LC, 32 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -64 -64 -Connector_Samtec_HLE_THT -Samtec_HLE-132-02-xx-DV-PE_2x32_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-132-02-xx-DV-PE (compatible alternatives: HLE-132-02-xx-DV-PE-BE), 32 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -64 -64 -Connector_Samtec_HLE_THT -Samtec_HLE-132-02-xx-DV-TE_2x32_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-132-02-xx-DV-TE, 32 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -64 -64 -Connector_Samtec_HLE_THT -Samtec_HLE-133-02-xx-DV-PE-LC_2x33_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-133-02-xx-DV-PE-LC, 33 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -66 -66 -Connector_Samtec_HLE_THT -Samtec_HLE-133-02-xx-DV-PE_2x33_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-133-02-xx-DV-PE (compatible alternatives: HLE-133-02-xx-DV-PE-BE), 33 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -66 -66 -Connector_Samtec_HLE_THT -Samtec_HLE-133-02-xx-DV-TE_2x33_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-133-02-xx-DV-TE, 33 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -66 -66 -Connector_Samtec_HLE_THT -Samtec_HLE-134-02-xx-DV-PE-LC_2x34_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-134-02-xx-DV-PE-LC, 34 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -68 -68 -Connector_Samtec_HLE_THT -Samtec_HLE-134-02-xx-DV-PE_2x34_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-134-02-xx-DV-PE (compatible alternatives: HLE-134-02-xx-DV-PE-BE), 34 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -68 -68 -Connector_Samtec_HLE_THT -Samtec_HLE-134-02-xx-DV-TE_2x34_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-134-02-xx-DV-TE, 34 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -68 -68 -Connector_Samtec_HLE_THT -Samtec_HLE-135-02-xx-DV-PE-LC_2x35_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-135-02-xx-DV-PE-LC, 35 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -70 -70 -Connector_Samtec_HLE_THT -Samtec_HLE-135-02-xx-DV-PE_2x35_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-135-02-xx-DV-PE (compatible alternatives: HLE-135-02-xx-DV-PE-BE), 35 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -70 -70 -Connector_Samtec_HLE_THT -Samtec_HLE-135-02-xx-DV-TE_2x35_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-135-02-xx-DV-TE, 35 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -70 -70 -Connector_Samtec_HLE_THT -Samtec_HLE-136-02-xx-DV-PE-LC_2x36_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-136-02-xx-DV-PE-LC, 36 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -72 -72 -Connector_Samtec_HLE_THT -Samtec_HLE-136-02-xx-DV-PE_2x36_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-136-02-xx-DV-PE (compatible alternatives: HLE-136-02-xx-DV-PE-BE), 36 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -72 -72 -Connector_Samtec_HLE_THT -Samtec_HLE-136-02-xx-DV-TE_2x36_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-136-02-xx-DV-TE, 36 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -72 -72 -Connector_Samtec_HLE_THT -Samtec_HLE-137-02-xx-DV-PE-LC_2x37_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-137-02-xx-DV-PE-LC, 37 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -74 -74 -Connector_Samtec_HLE_THT -Samtec_HLE-137-02-xx-DV-PE_2x37_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-137-02-xx-DV-PE (compatible alternatives: HLE-137-02-xx-DV-PE-BE), 37 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -74 -74 -Connector_Samtec_HLE_THT -Samtec_HLE-137-02-xx-DV-TE_2x37_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-137-02-xx-DV-TE, 37 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -74 -74 -Connector_Samtec_HLE_THT -Samtec_HLE-138-02-xx-DV-PE-LC_2x38_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-138-02-xx-DV-PE-LC, 38 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -76 -76 -Connector_Samtec_HLE_THT -Samtec_HLE-138-02-xx-DV-PE_2x38_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-138-02-xx-DV-PE (compatible alternatives: HLE-138-02-xx-DV-PE-BE), 38 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -76 -76 -Connector_Samtec_HLE_THT -Samtec_HLE-138-02-xx-DV-TE_2x38_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-138-02-xx-DV-TE, 38 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -76 -76 -Connector_Samtec_HLE_THT -Samtec_HLE-139-02-xx-DV-PE-LC_2x39_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-139-02-xx-DV-PE-LC, 39 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -78 -78 -Connector_Samtec_HLE_THT -Samtec_HLE-139-02-xx-DV-PE_2x39_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-139-02-xx-DV-PE (compatible alternatives: HLE-139-02-xx-DV-PE-BE), 39 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -78 -78 -Connector_Samtec_HLE_THT -Samtec_HLE-139-02-xx-DV-TE_2x39_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-139-02-xx-DV-TE, 39 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -78 -78 -Connector_Samtec_HLE_THT -Samtec_HLE-140-02-xx-DV-PE-LC_2x40_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-140-02-xx-DV-PE-LC, 40 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -80 -80 -Connector_Samtec_HLE_THT -Samtec_HLE-140-02-xx-DV-PE_2x40_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-140-02-xx-DV-PE (compatible alternatives: HLE-140-02-xx-DV-PE-BE), 40 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -80 -80 -Connector_Samtec_HLE_THT -Samtec_HLE-140-02-xx-DV-TE_2x40_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-140-02-xx-DV-TE, 40 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -80 -80 -Connector_Samtec_HLE_THT -Samtec_HLE-141-02-xx-DV-PE-LC_2x41_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-141-02-xx-DV-PE-LC, 41 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -82 -82 -Connector_Samtec_HLE_THT -Samtec_HLE-141-02-xx-DV-PE_2x41_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-141-02-xx-DV-PE (compatible alternatives: HLE-141-02-xx-DV-PE-BE), 41 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -82 -82 -Connector_Samtec_HLE_THT -Samtec_HLE-141-02-xx-DV-TE_2x41_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-141-02-xx-DV-TE, 41 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -82 -82 -Connector_Samtec_HLE_THT -Samtec_HLE-142-02-xx-DV-PE-LC_2x42_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-142-02-xx-DV-PE-LC, 42 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -84 -84 -Connector_Samtec_HLE_THT -Samtec_HLE-142-02-xx-DV-PE_2x42_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-142-02-xx-DV-PE (compatible alternatives: HLE-142-02-xx-DV-PE-BE), 42 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -84 -84 -Connector_Samtec_HLE_THT -Samtec_HLE-142-02-xx-DV-TE_2x42_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-142-02-xx-DV-TE, 42 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -84 -84 -Connector_Samtec_HLE_THT -Samtec_HLE-143-02-xx-DV-PE-LC_2x43_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-143-02-xx-DV-PE-LC, 43 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -86 -86 -Connector_Samtec_HLE_THT -Samtec_HLE-143-02-xx-DV-PE_2x43_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-143-02-xx-DV-PE (compatible alternatives: HLE-143-02-xx-DV-PE-BE), 43 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -86 -86 -Connector_Samtec_HLE_THT -Samtec_HLE-143-02-xx-DV-TE_2x43_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-143-02-xx-DV-TE, 43 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -86 -86 -Connector_Samtec_HLE_THT -Samtec_HLE-144-02-xx-DV-PE-LC_2x44_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-144-02-xx-DV-PE-LC, 44 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -88 -88 -Connector_Samtec_HLE_THT -Samtec_HLE-144-02-xx-DV-PE_2x44_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-144-02-xx-DV-PE (compatible alternatives: HLE-144-02-xx-DV-PE-BE), 44 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -88 -88 -Connector_Samtec_HLE_THT -Samtec_HLE-144-02-xx-DV-TE_2x44_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-144-02-xx-DV-TE, 44 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -88 -88 -Connector_Samtec_HLE_THT -Samtec_HLE-145-02-xx-DV-PE-LC_2x45_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-145-02-xx-DV-PE-LC, 45 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -90 -90 -Connector_Samtec_HLE_THT -Samtec_HLE-145-02-xx-DV-PE_2x45_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-145-02-xx-DV-PE (compatible alternatives: HLE-145-02-xx-DV-PE-BE), 45 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -90 -90 -Connector_Samtec_HLE_THT -Samtec_HLE-145-02-xx-DV-TE_2x45_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-145-02-xx-DV-TE, 45 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -90 -90 -Connector_Samtec_HLE_THT -Samtec_HLE-146-02-xx-DV-PE-LC_2x46_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-146-02-xx-DV-PE-LC, 46 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -92 -92 -Connector_Samtec_HLE_THT -Samtec_HLE-146-02-xx-DV-PE_2x46_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-146-02-xx-DV-PE (compatible alternatives: HLE-146-02-xx-DV-PE-BE), 46 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -92 -92 -Connector_Samtec_HLE_THT -Samtec_HLE-146-02-xx-DV-TE_2x46_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-146-02-xx-DV-TE, 46 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -92 -92 -Connector_Samtec_HLE_THT -Samtec_HLE-147-02-xx-DV-PE-LC_2x47_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-147-02-xx-DV-PE-LC, 47 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -94 -94 -Connector_Samtec_HLE_THT -Samtec_HLE-147-02-xx-DV-PE_2x47_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-147-02-xx-DV-PE (compatible alternatives: HLE-147-02-xx-DV-PE-BE), 47 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -94 -94 -Connector_Samtec_HLE_THT -Samtec_HLE-147-02-xx-DV-TE_2x47_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-147-02-xx-DV-TE, 47 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -94 -94 -Connector_Samtec_HLE_THT -Samtec_HLE-148-02-xx-DV-PE-LC_2x48_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-148-02-xx-DV-PE-LC, 48 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -96 -96 -Connector_Samtec_HLE_THT -Samtec_HLE-148-02-xx-DV-PE_2x48_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-148-02-xx-DV-PE (compatible alternatives: HLE-148-02-xx-DV-PE-BE), 48 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -96 -96 -Connector_Samtec_HLE_THT -Samtec_HLE-148-02-xx-DV-TE_2x48_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-148-02-xx-DV-TE, 48 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -96 -96 -Connector_Samtec_HLE_THT -Samtec_HLE-149-02-xx-DV-PE-LC_2x49_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-149-02-xx-DV-PE-LC, 49 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -98 -98 -Connector_Samtec_HLE_THT -Samtec_HLE-149-02-xx-DV-PE_2x49_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-149-02-xx-DV-PE (compatible alternatives: HLE-149-02-xx-DV-PE-BE), 49 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -98 -98 -Connector_Samtec_HLE_THT -Samtec_HLE-149-02-xx-DV-TE_2x49_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-149-02-xx-DV-TE, 49 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -98 -98 -Connector_Samtec_HLE_THT -Samtec_HLE-150-02-xx-DV-PE-LC_2x50_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-150-02-xx-DV-PE-LC, 50 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -100 -100 -Connector_Samtec_HLE_THT -Samtec_HLE-150-02-xx-DV-PE_2x50_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-150-02-xx-DV-PE (compatible alternatives: HLE-150-02-xx-DV-PE-BE), 50 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -100 -100 -Connector_Samtec_HLE_THT -Samtec_HLE-150-02-xx-DV-TE_2x50_P2.54mm_Horizontal -Samtec HLE .100" Tiger Beam Cost-effective Single Beam Socket Strip, HLE-150-02-xx-DV-TE, 50 Pins per row (http://suddendocs.samtec.com/prints/hle-1xx-02-xx-dv-xe-xx-mkt.pdf, http://suddendocs.samtec.com/prints/hle-thru.pdf), generated with kicad-footprint-generator -connector Samtec HLE top entry -0 -100 -100 -Connector_Samtec_HPM_THT -Samtec_HPM-01-01-x-S_Straight_1x01_Pitch5.08mm -Through hole straight Samtec HPM power header series 11.94mm post length, 1x01, 5.08mm pitch, single row -Through hole Samtec HPM power header series 11.94mm post length THT 1x01 5.08mm single row -0 -1 -1 -Connector_Samtec_HPM_THT -Samtec_HPM-01-05-x-S_Straight_1x01_Pitch5.08mm -Through hole straight Samtec HPM power header series 3.81mm post length, 1x01, 5.08mm pitch, single row -Through hole Samtec HPM power header series 3.81mm post length THT 1x01 5.08mm single row -0 -1 -1 -Connector_Samtec_HPM_THT -Samtec_HPM-02-01-x-S_Straight_1x02_Pitch5.08mm -Through hole straight Samtec HPM power header series 11.94mm post length, 1x02, 5.08mm pitch, single row -Through hole Samtec HPM power header series 11.94mm post length THT 1x02 5.08mm single row -0 -2 -2 -Connector_Samtec_HPM_THT -Samtec_HPM-02-05-x-S_Straight_1x02_Pitch5.08mm -Through hole straight Samtec HPM power header series 3.81mm post length, 1x02, 5.08mm pitch, single row -Through hole Samtec HPM power header series 3.81mm post length THT 1x02 5.08mm single row -0 -2 -2 -Connector_Samtec_HPM_THT -Samtec_HPM-03-01-x-S_Straight_1x03_Pitch5.08mm -Through hole straight Samtec HPM power header series 11.94mm post length, 1x03, 5.08mm pitch, single row -Through hole Samtec HPM power header series 11.94mm post length THT 1x03 5.08mm single row -0 -3 -3 -Connector_Samtec_HPM_THT -Samtec_HPM-03-05-x-S_Straight_1x03_Pitch5.08mm -Through hole straight Samtec HPM power header series 3.81mm post length, 1x03, 5.08mm pitch, single row -Through hole Samtec HPM power header series 3.81mm post length THT 1x03 5.08mm single row -0 -3 -3 -Connector_Samtec_HPM_THT -Samtec_HPM-04-01-x-S_Straight_1x04_Pitch5.08mm -Through hole straight Samtec HPM power header series 11.94mm post length, 1x04, 5.08mm pitch, single row -Through hole Samtec HPM power header series 11.94mm post length THT 1x04 5.08mm single row -0 -4 -4 -Connector_Samtec_HPM_THT -Samtec_HPM-04-05-x-S_Straight_1x04_Pitch5.08mm -Through hole straight Samtec HPM power header series 3.81mm post length, 1x04, 5.08mm pitch, single row -Through hole Samtec HPM power header series 3.81mm post length THT 1x04 5.08mm single row -0 -4 -4 -Connector_Samtec_HPM_THT -Samtec_HPM-05-01-x-S_Straight_1x05_Pitch5.08mm -Through hole straight Samtec HPM power header series 11.94mm post length, 1x05, 5.08mm pitch, single row -Through hole Samtec HPM power header series 11.94mm post length THT 1x05 5.08mm single row -0 -5 -5 -Connector_Samtec_HPM_THT -Samtec_HPM-05-05-x-S_Straight_1x05_Pitch5.08mm -Through hole straight Samtec HPM power header series 3.81mm post length, 1x05, 5.08mm pitch, single row -Through hole Samtec HPM power header series 3.81mm post length THT 1x05 5.08mm single row -0 -5 -5 -Connector_Samtec_HPM_THT -Samtec_HPM-06-01-x-S_Straight_1x06_Pitch5.08mm -Through hole straight Samtec HPM power header series 11.94mm post length, 1x06, 5.08mm pitch, single row -Through hole Samtec HPM power header series 11.94mm post length THT 1x06 5.08mm single row -0 -6 -6 -Connector_Samtec_HPM_THT -Samtec_HPM-06-05-x-S_Straight_1x06_Pitch5.08mm -Through hole straight Samtec HPM power header series 3.81mm post length, 1x06, 5.08mm pitch, single row -Through hole Samtec HPM power header series 3.81mm post length THT 1x06 5.08mm single row -0 -6 -6 -Connector_Samtec_HPM_THT -Samtec_HPM-07-01-x-S_Straight_1x07_Pitch5.08mm -Through hole straight Samtec HPM power header series 11.94mm post length, 1x07, 5.08mm pitch, single row -Through hole Samtec HPM power header series 11.94mm post length THT 1x07 5.08mm single row -0 -7 -7 -Connector_Samtec_HPM_THT -Samtec_HPM-07-05-x-S_Straight_1x07_Pitch5.08mm -Through hole straight Samtec HPM power header series 3.81mm post length, 1x07, 5.08mm pitch, single row -Through hole Samtec HPM power header series 3.81mm post length THT 1x07 5.08mm single row -0 -7 -7 -Connector_Samtec_HPM_THT -Samtec_HPM-08-01-x-S_Straight_1x08_Pitch5.08mm -Through hole straight Samtec HPM power header series 11.94mm post length, 1x08, 5.08mm pitch, single row -Through hole Samtec HPM power header series 11.94mm post length THT 1x08 5.08mm single row -0 -8 -8 -Connector_Samtec_HPM_THT -Samtec_HPM-08-05-x-S_Straight_1x08_Pitch5.08mm -Through hole straight Samtec HPM power header series 3.81mm post length, 1x08, 5.08mm pitch, single row -Through hole Samtec HPM power header series 3.81mm post length THT 1x08 5.08mm single row -0 -8 -8 -Connector_Samtec_HPM_THT -Samtec_HPM-09-01-x-S_Straight_1x09_Pitch5.08mm -Through hole straight Samtec HPM power header series 11.94mm post length, 1x09, 5.08mm pitch, single row -Through hole Samtec HPM power header series 11.94mm post length THT 1x09 5.08mm single row -0 -9 -9 -Connector_Samtec_HPM_THT -Samtec_HPM-09-05-x-S_Straight_1x09_Pitch5.08mm -Through hole straight Samtec HPM power header series 3.81mm post length, 1x09, 5.08mm pitch, single row -Through hole Samtec HPM power header series 3.81mm post length THT 1x09 5.08mm single row -0 -9 -9 -Connector_Samtec_HPM_THT -Samtec_HPM-10-01-x-S_Straight_1x10_Pitch5.08mm -Through hole straight Samtec HPM power header series 11.94mm post length, 1x10, 5.08mm pitch, single row -Through hole Samtec HPM power header series 11.94mm post length THT 1x10 5.08mm single row -0 -10 -10 -Connector_Samtec_HPM_THT -Samtec_HPM-10-05-x-S_Straight_1x10_Pitch5.08mm -Through hole straight Samtec HPM power header series 3.81mm post length, 1x10, 5.08mm pitch, single row -Through hole Samtec HPM power header series 3.81mm post length THT 1x10 5.08mm single row -0 -10 -10 -Connector_Samtec_HPM_THT -Samtec_HPM-11-01-x-S_Straight_1x11_Pitch5.08mm -Through hole straight Samtec HPM power header series 11.94mm post length, 1x11, 5.08mm pitch, single row -Through hole Samtec HPM power header series 11.94mm post length THT 1x11 5.08mm single row -0 -11 -11 -Connector_Samtec_HPM_THT -Samtec_HPM-11-05-x-S_Straight_1x11_Pitch5.08mm -Through hole straight Samtec HPM power header series 3.81mm post length, 1x11, 5.08mm pitch, single row -Through hole Samtec HPM power header series 3.81mm post length THT 1x11 5.08mm single row -0 -11 -11 -Connector_Samtec_HPM_THT -Samtec_HPM-12-01-x-S_Straight_1x12_Pitch5.08mm -Through hole straight Samtec HPM power header series 11.94mm post length, 1x12, 5.08mm pitch, single row -Through hole Samtec HPM power header series 11.94mm post length THT 1x12 5.08mm single row -0 -12 -12 -Connector_Samtec_HPM_THT -Samtec_HPM-12-05-x-S_Straight_1x12_Pitch5.08mm -Through hole straight Samtec HPM power header series 3.81mm post length, 1x12, 5.08mm pitch, single row -Through hole Samtec HPM power header series 3.81mm post length THT 1x12 5.08mm single row -0 -12 -12 -Connector_Samtec_HPM_THT -Samtec_HPM-13-01-x-S_Straight_1x13_Pitch5.08mm -Through hole straight Samtec HPM power header series 11.94mm post length, 1x13, 5.08mm pitch, single row -Through hole Samtec HPM power header series 11.94mm post length THT 1x13 5.08mm single row -0 -13 -13 -Connector_Samtec_HPM_THT -Samtec_HPM-13-05-x-S_Straight_1x13_Pitch5.08mm -Through hole straight Samtec HPM power header series 3.81mm post length, 1x13, 5.08mm pitch, single row -Through hole Samtec HPM power header series 3.81mm post length THT 1x13 5.08mm single row -0 -13 -13 -Connector_Samtec_HPM_THT -Samtec_HPM-14-01-x-S_Straight_1x14_Pitch5.08mm -Through hole straight Samtec HPM power header series 11.94mm post length, 1x14, 5.08mm pitch, single row -Through hole Samtec HPM power header series 11.94mm post length THT 1x14 5.08mm single row -0 -14 -14 -Connector_Samtec_HPM_THT -Samtec_HPM-14-05-x-S_Straight_1x14_Pitch5.08mm -Through hole straight Samtec HPM power header series 3.81mm post length, 1x14, 5.08mm pitch, single row -Through hole Samtec HPM power header series 3.81mm post length THT 1x14 5.08mm single row -0 -14 -14 -Connector_Samtec_HPM_THT -Samtec_HPM-15-01-x-S_Straight_1x15_Pitch5.08mm -Through hole straight Samtec HPM power header series 11.94mm post length, 1x15, 5.08mm pitch, single row -Through hole Samtec HPM power header series 11.94mm post length THT 1x15 5.08mm single row -0 -15 -15 -Connector_Samtec_HPM_THT -Samtec_HPM-15-05-x-S_Straight_1x15_Pitch5.08mm -Through hole straight Samtec HPM power header series 3.81mm post length, 1x15, 5.08mm pitch, single row -Through hole Samtec HPM power header series 3.81mm post length THT 1x15 5.08mm single row -0 -15 -15 -Connector_Samtec_HPM_THT -Samtec_HPM-16-01-x-S_Straight_1x16_Pitch5.08mm -Through hole straight Samtec HPM power header series 11.94mm post length, 1x16, 5.08mm pitch, single row -Through hole Samtec HPM power header series 11.94mm post length THT 1x16 5.08mm single row -0 -16 -16 -Connector_Samtec_HPM_THT -Samtec_HPM-16-05-x-S_Straight_1x16_Pitch5.08mm -Through hole straight Samtec HPM power header series 3.81mm post length, 1x16, 5.08mm pitch, single row -Through hole Samtec HPM power header series 3.81mm post length THT 1x16 5.08mm single row -0 -16 -16 -Connector_Samtec_HPM_THT -Samtec_HPM-17-01-x-S_Straight_1x17_Pitch5.08mm -Through hole straight Samtec HPM power header series 11.94mm post length, 1x17, 5.08mm pitch, single row -Through hole Samtec HPM power header series 11.94mm post length THT 1x17 5.08mm single row -0 -17 -17 -Connector_Samtec_HPM_THT -Samtec_HPM-17-05-x-S_Straight_1x17_Pitch5.08mm -Through hole straight Samtec HPM power header series 3.81mm post length, 1x17, 5.08mm pitch, single row -Through hole Samtec HPM power header series 3.81mm post length THT 1x17 5.08mm single row -0 -17 -17 -Connector_Samtec_HPM_THT -Samtec_HPM-18-01-x-S_Straight_1x18_Pitch5.08mm -Through hole straight Samtec HPM power header series 11.94mm post length, 1x18, 5.08mm pitch, single row -Through hole Samtec HPM power header series 11.94mm post length THT 1x18 5.08mm single row -0 -18 -18 -Connector_Samtec_HPM_THT -Samtec_HPM-18-05-x-S_Straight_1x18_Pitch5.08mm -Through hole straight Samtec HPM power header series 3.81mm post length, 1x18, 5.08mm pitch, single row -Through hole Samtec HPM power header series 3.81mm post length THT 1x18 5.08mm single row -0 -18 -18 -Connector_Samtec_HPM_THT -Samtec_HPM-19-01-x-S_Straight_1x19_Pitch5.08mm -Through hole straight Samtec HPM power header series 11.94mm post length, 1x19, 5.08mm pitch, single row -Through hole Samtec HPM power header series 11.94mm post length THT 1x19 5.08mm single row -0 -19 -19 -Connector_Samtec_HPM_THT -Samtec_HPM-19-05-x-S_Straight_1x19_Pitch5.08mm -Through hole straight Samtec HPM power header series 3.81mm post length, 1x19, 5.08mm pitch, single row -Through hole Samtec HPM power header series 3.81mm post length THT 1x19 5.08mm single row -0 -19 -19 -Connector_Stocko -Stocko_MKS_1651-6-0-202_1x2_P2.50mm_Vertical -Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator -Stocko RFK MKS 16xx -0 -2 -2 -Connector_Stocko -Stocko_MKS_1652-6-0-202_1x2_P2.50mm_Vertical -Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator -Stocko RFK MKS 16xx -0 -2 -2 -Connector_Stocko -Stocko_MKS_1653-6-0-303_1x3_P2.50mm_Vertical -Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator -Stocko RFK MKS 16xx -0 -3 -3 -Connector_Stocko -Stocko_MKS_1654-6-0-404_1x4_P2.50mm_Vertical -Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator -Stocko RFK MKS 16xx -0 -4 -4 -Connector_Stocko -Stocko_MKS_1655-6-0-505_1x5_P2.50mm_Vertical -Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator -Stocko RFK MKS 16xx -0 -5 -5 -Connector_Stocko -Stocko_MKS_1656-6-0-606_1x6_P2.50mm_Vertical -Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator -Stocko RFK MKS 16xx -0 -6 -6 -Connector_Stocko -Stocko_MKS_1657-6-0-707_1x7_P2.50mm_Vertical -Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator -Stocko RFK MKS 16xx -0 -7 -7 -Connector_Stocko -Stocko_MKS_1658-6-0-808_1x8_P2.50mm_Vertical -Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator -Stocko RFK MKS 16xx -0 -8 -8 -Connector_Stocko -Stocko_MKS_1659-6-0-909_1x9_P2.50mm_Vertical -Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator -Stocko RFK MKS 16xx -0 -9 -9 -Connector_Stocko -Stocko_MKS_1660-6-0-1010_1x10_P2.50mm_Vertical -Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator -Stocko RFK MKS 16xx -0 -10 -10 -Connector_Stocko -Stocko_MKS_1661-6-0-1111_1x11_P2.50mm_Vertical -Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator -Stocko RFK MKS 16xx -0 -11 -11 -Connector_Stocko -Stocko_MKS_1662-6-0-1212_1x12_P2.50mm_Vertical -Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator -Stocko RFK MKS 16xx -0 -12 -12 -Connector_Stocko -Stocko_MKS_1663-6-0-1313_1x13_P2.50mm_Vertical -Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator -Stocko RFK MKS 16xx -0 -13 -13 -Connector_Stocko -Stocko_MKS_1664-6-0-1414_1x14_P2.50mm_Vertical -Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator -Stocko RFK MKS 16xx -0 -14 -14 -Connector_Stocko -Stocko_MKS_1665-6-0-1515_1x15_P2.50mm_Vertical -Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator -Stocko RFK MKS 16xx -0 -15 -15 -Connector_Stocko -Stocko_MKS_1666-6-0-1616_1x16_P2.50mm_Vertical -Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator -Stocko RFK MKS 16xx -0 -16 -16 -Connector_Stocko -Stocko_MKS_1667-6-0-1717_1x17_P2.50mm_Vertical -Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator -Stocko RFK MKS 16xx -0 -17 -17 -Connector_Stocko -Stocko_MKS_1668-6-0-1818_1x18_P2.50mm_Vertical -Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator -Stocko RFK MKS 16xx -0 -18 -18 -Connector_Stocko -Stocko_MKS_1669-6-0-1919_1x19_P2.50mm_Vertical -Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator -Stocko RFK MKS 16xx -0 -19 -19 -Connector_Stocko -Stocko_MKS_1670-6-0-2020_1x20_P2.50mm_Vertical -Stocko MKS 16xx series connector, (https://www.stocko-contact.com/downloads/steckverbindersystem-raster-2,5-mm.pdf#page=15), generated with kicad-footprint-generator -Stocko RFK MKS 16xx -0 -20 -20 -Connector_TE-Connectivity -TE_1-826576-3_1x13_P3.96mm_Vertical -TE, 1-826576-3, 13 Pins (https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=826576&DocType=Customer+Drawing&DocLang=English), generated with kicad-footprint-generator -connector TE 826576 vertical -0 -13 -13 -Connector_TE-Connectivity -TE_1-826576-5_1x15_P3.96mm_Vertical -TE, 1-826576-5, 15 Pins (https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=826576&DocType=Customer+Drawing&DocLang=English), generated with kicad-footprint-generator -connector TE 826576 vertical -0 -15 -15 -Connector_TE-Connectivity -TE_1-826576-6_1x16_P3.96mm_Vertical -TE, 1-826576-6, 16 Pins (https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=826576&DocType=Customer+Drawing&DocLang=English), generated with kicad-footprint-generator -connector TE 826576 vertical -0 -16 -16 -Connector_TE-Connectivity -TE_1-826576-7_1x17_P3.96mm_Vertical -TE, 1-826576-7, 17 Pins (https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=826576&DocType=Customer+Drawing&DocLang=English), generated with kicad-footprint-generator -connector TE 826576 vertical -0 -17 -17 -Connector_TE-Connectivity -TE_1-826576-8_1x18_P3.96mm_Vertical -TE, 1-826576-8, 18 Pins (https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=826576&DocType=Customer+Drawing&DocLang=English), generated with kicad-footprint-generator -connector TE 826576 vertical -0 -18 -18 -Connector_TE-Connectivity -TE_2-826576-0_1x20_P3.96mm_Vertical -TE, 2-826576-0, 20 Pins (https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=826576&DocType=Customer+Drawing&DocLang=English), generated with kicad-footprint-generator -connector TE 826576 vertical -0 -20 -20 -Connector_TE-Connectivity -TE_3-826576-6_1x36_P3.96mm_Vertical -TE, 3-826576-6, 36 Pins (https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=826576&DocType=Customer+Drawing&DocLang=English), generated with kicad-footprint-generator -connector TE 826576 vertical -0 -36 -36 -Connector_TE-Connectivity -TE_440054-2_1x02_P2.00mm_Vertical -TE Connectivity, HDI, Wire-to-Board, Fully Shrouded, Vertical Header: https://www.te.com/usa-en/product-440054-2.datasheet.pdf -connector header hdr horizontal vertical shrouded fully-shrounded 440054-2 2-440054-2 4-440054-2 6-440054-2 2-440054-6 4-440054-6 6-440054-6 -0 -2 -2 -Connector_TE-Connectivity -TE_440055-2_1x02_P2.00mm_Horizontal -TE Connectivity, HDI, Wire-to-Board, Fully Shrouded, Header: https://www.te.com/usa-en/product-440055-2.datasheet.pdf -connector header hdr horizontal right-angle shrouded fully-shrounded 440055-2 2-440055-2 4-440055-2 6-440055-2 8-440055-2 -0 -2 -2 -Connector_TE-Connectivity -TE_826576-2_1x02_P3.96mm_Vertical -TE, 826576-2, 2 Pins (https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=826576&DocType=Customer+Drawing&DocLang=English), generated with kicad-footprint-generator -connector TE 826576 vertical -0 -2 -2 -Connector_TE-Connectivity -TE_826576-3_1x03_P3.96mm_Vertical -TE, 826576-3, 3 Pins (https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=826576&DocType=Customer+Drawing&DocLang=English), generated with kicad-footprint-generator -connector TE 826576 vertical -0 -3 -3 -Connector_TE-Connectivity -TE_826576-5_1x05_P3.96mm_Vertical -TE, 826576-5, 5 Pins (https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=826576&DocType=Customer+Drawing&DocLang=English), generated with kicad-footprint-generator -connector TE 826576 vertical -0 -5 -5 -Connector_TE-Connectivity -TE_826576-6_1x06_P3.96mm_Vertical -TE, 826576-6, 6 Pins (https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=826576&DocType=Customer+Drawing&DocLang=English), generated with kicad-footprint-generator -connector TE 826576 vertical -0 -6 -6 -Connector_TE-Connectivity -TE_826576-7_1x07_P3.96mm_Vertical -TE, 826576-7, 7 Pins (https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=826576&DocType=Customer+Drawing&DocLang=English), generated with kicad-footprint-generator -connector TE 826576 vertical -0 -7 -7 -Connector_TE-Connectivity -TE_826576-8_1x08_P3.96mm_Vertical -TE, 826576-8, 8 Pins (https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=826576&DocType=Customer+Drawing&DocLang=English), generated with kicad-footprint-generator -connector TE 826576 vertical -0 -8 -8 -Connector_TE-Connectivity -TE_826576-9_1x09_P3.96mm_Vertical -TE, 826576-9, 9 Pins (https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=826576&DocType=Customer+Drawing&DocLang=English), generated with kicad-footprint-generator -connector TE 826576 vertical -0 -9 -9 -Connector_TE-Connectivity -TE_2834006-1_1x01_P4.0mm_Horizontal -TE Connectivity Buchanan WireMate connector, Poke-In series, 1-way, 4.0mm pitch, AWG18-22 (0.3255-0.823mm2), https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F2834006%7FB6%7Fpdf%7FEnglish%7FENG_CD_2834006_B6.pdf%7F2834006-1 -wire connector -0 -2 -1 -Connector_TE-Connectivity -TE_2834006-2_1x02_P4.0mm_Horizontal -TE Connectivity Buchanan WireMate connector, Poke-In series, 2-way, 4.0mm pitch, AWG18-22 (0.3255-0.823mm2), https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F2834006%7FB6%7Fpdf%7FEnglish%7FENG_CD_2834006_B6.pdf%7F2834006-1 -wire connector -0 -4 -2 -Connector_TE-Connectivity -TE_2834006-3_1x03_P4.0mm_Horizontal -TE Connectivity Buchanan WireMate connector, Poke-In series, 3-way, 4.0mm pitch, AWG18-22 (0.3255-0.823mm2), https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F2834006%7FB6%7Fpdf%7FEnglish%7FENG_CD_2834006_B6.pdf%7F2834006-1 -wire connector -0 -6 -3 -Connector_TE-Connectivity -TE_2834006-4_1x04_P4.0mm_Horizontal -TE Connectivity Buchanan WireMate connector, Poke-In series, 4-way, 4.0mm pitch, AWG18-22 (0.3255-0.823mm2), https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F2834006%7FB6%7Fpdf%7FEnglish%7FENG_CD_2834006_B6.pdf%7F2834006-1 -wire connector -0 -8 -4 -Connector_TE-Connectivity -TE_2834006-5_1x05_P4.0mm_Horizontal -TE Connectivity Buchanan WireMate connector, Poke-In series, 5-way, 4.0mm pitch, AWG18-22 (0.3255-0.823mm2), https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F2834006%7FB6%7Fpdf%7FEnglish%7FENG_CD_2834006_B6.pdf%7F2834006-1 -wire connector -0 -10 -5 -Connector_TE-Connectivity -TE_5767171-1_2x19_P0.635mm_Vertical -PCB Mount Receptacle, Vertical, Board-to-Board, 38 Position, 24.003mm / .64mm [.945in] Centerline, Header Only, Palladium Nickel (https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F5767171%7FB2%7Fpdf%7FEnglish%7FENG_CD_5767171_B2.pdf%7F5767171-1#page=2) -mictor38 receptacle board-to-board -0 -43 -39 -Connector_TE-Connectivity -TE_AMPSEAL_1-776087-x_3Rows_23_P0.4mm_Horizontal -Connector -TE 776087 -0 -23 -23 -Connector_TE-Connectivity -TE_MATE-N-LOK_1-770182-x_3x03_P4.14mm_Vertical -Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-770182-x, 3 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator -connector TE MATE-N-LOK side entry -0 -9 -9 -Connector_TE-Connectivity -TE_MATE-N-LOK_1-770186-x_3x04_P4.14mm_Vertical -Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-770186-x, 4 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator -connector TE MATE-N-LOK side entry -0 -12 -12 -Connector_TE-Connectivity -TE_MATE-N-LOK_1-770190-x_3x05_P4.14mm_Vertical -Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-770190-x, 5 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator -connector TE MATE-N-LOK side entry -0 -15 -15 -Connector_TE-Connectivity -TE_MATE-N-LOK_1-770621-x_2x06_P4.14mm_Vertical -Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-770621-x, 6 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator -connector TE MATE-N-LOK side entry -0 -12 -12 -Connector_TE-Connectivity -TE_MATE-N-LOK_1-770858-x_2x05_P4.14mm_Vertical -Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-770858-x, 5 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator -connector TE MATE-N-LOK side entry -0 -10 -10 -Connector_TE-Connectivity -TE_MATE-N-LOK_1-770866-x_1x02_P4.14mm_Vertical -Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-770866-x, 2 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator -connector TE MATE-N-LOK side entry -0 -2 -2 -Connector_TE-Connectivity -TE_MATE-N-LOK_1-770870-x_1x03_P4.14mm_Vertical -Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-770870-x, 3 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator -connector TE MATE-N-LOK side entry -0 -3 -3 -Connector_TE-Connectivity -TE_MATE-N-LOK_1-770874-x_2x02_P4.14mm_Vertical -Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-770874-x, 2 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator -connector TE MATE-N-LOK side entry -0 -4 -4 -Connector_TE-Connectivity -TE_MATE-N-LOK_1-770875-x_2x03_P4.14mm_Vertical -Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-770875-x, 3 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator -connector TE MATE-N-LOK side entry -0 -6 -6 -Connector_TE-Connectivity -TE_MATE-N-LOK_1-770966-x_1x02_P4.14mm_Horizontal -Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-770966-x, 2 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator -connector TE MATE-N-LOK top entry -0 -2 -2 -Connector_TE-Connectivity -TE_MATE-N-LOK_1-770967-x_1x03_P4.14mm_Horizontal -Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-770967-x, 3 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator -connector TE MATE-N-LOK top entry -0 -3 -3 -Connector_TE-Connectivity -TE_MATE-N-LOK_1-770968-x_2x02_P4.14mm_Horizontal -Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-770968-x, 2 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator -connector TE MATE-N-LOK top entry -0 -4 -4 -Connector_TE-Connectivity -TE_MATE-N-LOK_1-770969-x_2x03_P4.14mm_Horizontal -Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-770969-x, 3 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator -connector TE MATE-N-LOK top entry -0 -6 -6 -Connector_TE-Connectivity -TE_MATE-N-LOK_1-770970-x_2x04_P4.14mm_Horizontal -Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-770970-x, 4 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator -connector TE MATE-N-LOK top entry -0 -8 -8 -Connector_TE-Connectivity -TE_MATE-N-LOK_1-770971-x_2x05_P4.14mm_Horizontal -Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-770971-x, 5 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator -connector TE MATE-N-LOK top entry -0 -10 -10 -Connector_TE-Connectivity -TE_MATE-N-LOK_1-770972-x_2x06_P4.14mm_Horizontal -Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-770972-x, 6 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator -connector TE MATE-N-LOK top entry -0 -12 -12 -Connector_TE-Connectivity -TE_MATE-N-LOK_1-770973-x_2x07_P4.14mm_Horizontal -Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-770973-x, 7 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator -connector TE MATE-N-LOK top entry -0 -14 -14 -Connector_TE-Connectivity -TE_MATE-N-LOK_1-770974-x_2x08_P4.14mm_Horizontal -Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-770974-x, 8 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator -connector TE MATE-N-LOK top entry -0 -16 -16 -Connector_TE-Connectivity -TE_MATE-N-LOK_1-794067-x_2x07_P4.14mm_Vertical -Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-794067-x, 7 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator -connector TE MATE-N-LOK side entry -0 -14 -14 -Connector_TE-Connectivity -TE_MATE-N-LOK_1-794068-x_2x08_P4.14mm_Vertical -Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-794068-x, 8 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator -connector TE MATE-N-LOK side entry -0 -16 -16 -Connector_TE-Connectivity -TE_MATE-N-LOK_1-794069-x_2x09_P4.14mm_Vertical -Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-794069-x, 9 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator -connector TE MATE-N-LOK side entry -0 -18 -18 -Connector_TE-Connectivity -TE_MATE-N-LOK_1-794070-x_2x10_P4.14mm_Vertical -Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-794070-x, 10 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator -connector TE MATE-N-LOK side entry -0 -20 -20 -Connector_TE-Connectivity -TE_MATE-N-LOK_1-794071-x_2x11_P4.14mm_Vertical -Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-794071-x, 11 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator -connector TE MATE-N-LOK side entry -0 -22 -22 -Connector_TE-Connectivity -TE_MATE-N-LOK_1-794072-x_2x12_P4.14mm_Vertical -Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-794072-x, 12 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator -connector TE MATE-N-LOK side entry -0 -24 -24 -Connector_TE-Connectivity -TE_MATE-N-LOK_1-794073-x_2x04_P4.14mm_Vertical -Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-794073-x, 4 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator -connector TE MATE-N-LOK side entry -0 -8 -8 -Connector_TE-Connectivity -TE_MATE-N-LOK_1-794105-x_2x09_P4.14mm_Horizontal -Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-794105-x, 9 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator -connector TE MATE-N-LOK top entry -0 -18 -18 -Connector_TE-Connectivity -TE_MATE-N-LOK_1-794106-x_2x10_P4.14mm_Horizontal -Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-794106-x, 10 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator -connector TE MATE-N-LOK top entry -0 -20 -20 -Connector_TE-Connectivity -TE_MATE-N-LOK_1-794107-x_2x11_P4.14mm_Horizontal -Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-794107-x, 11 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator -connector TE MATE-N-LOK top entry -0 -22 -22 -Connector_TE-Connectivity -TE_MATE-N-LOK_1-794108-x_2x12_P4.14mm_Horizontal -Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-794108-x, 12 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator -connector TE MATE-N-LOK top entry -0 -24 -24 -Connector_TE-Connectivity -TE_MATE-N-LOK_1-794374-x_1x01_P4.14mm_Horizontal -Molex Mini-Universal MATE-N-LOK, old mpn/engineering number: 1-794374-x, 1 Pins per row (http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=82181_SOFTSHELL_HIGH_DENSITY&DocType=CS&DocLang=EN), generated with kicad-footprint-generator -connector TE MATE-N-LOK top entry -0 -1 -1 -Connector_TE-Connectivity -TE_MATE-N-LOK_350211-1_1x04_P5.08mm_Vertical -https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F350211%7FU5%7Fpdf%7FEnglish%7FENG_CD_350211_U5.pdf%7F350211-1 -connector TE MATE-N-LOK top entry ATA PATA IDE 5.25 inch floppy drive power -0 -4 -4 -Connector_TE-Connectivity -TE_Micro-MaTch_1-215079-0_2x05_P1.27mm_Vertical -TE-Connectivity Micro-MaTch female-on-board top-entry thru-hole 10 pin connector, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F215079%7FY1%7Fpdf%7FEnglish%7FENG_CD_215079_Y1.pdf%7F215079-4 -connector TE-Connectivity Micro-MaTch Vertical 1-215079-0 8-215079-10 -0 -10 -10 -Connector_TE-Connectivity -TE_Micro-MaTch_1-215079-2_2x06_P1.27mm_Vertical -TE-Connectivity Micro-MaTch female-on-board top-entry thru-hole 12 pin connector, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F215079%7FY1%7Fpdf%7FEnglish%7FENG_CD_215079_Y1.pdf%7F215079-4 -connector TE-Connectivity Micro-MaTch Vertical 1-215079-2 8-215079-12 -0 -12 -12 -Connector_TE-Connectivity -TE_Micro-MaTch_1-215079-4_2x07_P1.27mm_Vertical -TE-Connectivity Micro-MaTch female-on-board top-entry thru-hole 14 pin connector, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F215079%7FY1%7Fpdf%7FEnglish%7FENG_CD_215079_Y1.pdf%7F215079-4 -connector TE-Connectivity Micro-MaTch Vertical 1-215079-4 8-215079-14 -0 -14 -14 -Connector_TE-Connectivity -TE_Micro-MaTch_1-215079-6_2x08_P1.27mm_Vertical -TE-Connectivity Micro-MaTch female-on-board top-entry thru-hole 16 pin connector, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F215079%7FY1%7Fpdf%7FEnglish%7FENG_CD_215079_Y1.pdf%7F215079-4 -connector TE-Connectivity Micro-MaTch Vertical 1-215079-6 8-215079-16 -0 -16 -16 -Connector_TE-Connectivity -TE_Micro-MaTch_1-215079-8_2x09_P1.27mm_Vertical -TE-Connectivity Micro-MaTch female-on-board top-entry thru-hole 18 pin connector, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F215079%7FY1%7Fpdf%7FEnglish%7FENG_CD_215079_Y1.pdf%7F215079-4 -connector TE-Connectivity Micro-MaTch Vertical 1-215079-8 8-215079-18 -0 -18 -18 -Connector_TE-Connectivity -TE_Micro-MaTch_2-215079-0_2x10_P1.27mm_Vertical -TE-Connectivity Micro-MaTch female-on-board top-entry thru-hole 20 pin connector, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F215079%7FY1%7Fpdf%7FEnglish%7FENG_CD_215079_Y1.pdf%7F215079-4 -connector TE-Connectivity Micro-MaTch Vertical 2-215079-0 9-215079-20 -0 -20 -20 -Connector_TE-Connectivity -TE_Micro-MaTch_215079-4_2x02_P1.27mm_Vertical -TE-Connectivity Micro-MaTch female-on-board top-entry thru-hole 4 pin connector, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F215079%7FY1%7Fpdf%7FEnglish%7FENG_CD_215079_Y1.pdf%7F215079-4 -connector TE-Connectivity Micro-MaTch Vertical 215079-4 7-215079-4 -0 -4 -4 -Connector_TE-Connectivity -TE_Micro-MaTch_215079-6_2x03_P1.27mm_Vertical -TE-Connectivity Micro-MaTch female-on-board top-entry thru-hole 6 pin connector, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F215079%7FY1%7Fpdf%7FEnglish%7FENG_CD_215079_Y1.pdf%7F215079-4 -connector TE-Connectivity Micro-MaTch Vertical 215079-6 7-215079-6 -0 -6 -6 -Connector_TE-Connectivity -TE_Micro-MaTch_215079-8_2x04_P1.27mm_Vertical -TE-Connectivity Micro-MaTch female-on-board top-entry thru-hole 8 pin connector, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F215079%7FY1%7Fpdf%7FEnglish%7FENG_CD_215079_Y1.pdf%7F215079-4 -connector TE-Connectivity Micro-MaTch Vertical 215079-8 7-215079-8 -0 -8 -8 -Connector_USB -USB3_A_Molex_48393-001 -USB 3.0, type A, right angle (http://www.molex.com/pdm_docs/sd/483930003_sd.pdf) -USB 3.0 type A right angle -0 -13 -10 -Connector_USB -USB3_A_Plug_Wuerth_692112030100_Horizontal -USB3 type A Plug, Horizontal, http://katalog.we-online.de/em/datasheet/692112030100.pdf -usb A plug horizontal -0 -11 -10 -Connector_USB -USB3_A_Receptacle_Wuerth_692122030100 -USB 3.0, type A, right angle (https://www.we-online.com/katalog/datasheet/692122030100.pdf) -USB 3.0 type A right angle Würth -0 -11 -10 -Connector_USB -USB3_Micro-B_Connfly_DS1104-01 -Micro USB B receptable with flange, bottom-mount, SMD, right-angle (http://en.connfly.com/static/upload/file/pdf/DS1104-01.pdf) -USB 3.0 Micro B SMD right angle -0 -16 -11 -Connector_USB -USB_A_CNCTech_1001-011-01101_Horizontal -USB type A Plug, Horizontal, http://cnctech.us/pdfs/1001-011-01101.pdf -USB-A -0 -6 -5 -Connector_USB -USB_A_CONNFLY_DS1095-WNR0 -http://www.connfly.com/userfiles/image/UpLoadFile/File/2013/5/6/DS1095.pdf -USB-A receptacle horizontal through-hole -0 -6 -5 -Connector_USB -USB_A_CUI_UJ2-ADH-TH_Horizontal_Stacked -USB-A two stacked horizontal receptacle, through-hole (https://www.cuidevices.com/product/resource/uj2-adh-th.pdf) -USB-A CUI stacked horizontal through-hole -0 -12 -9 -Connector_USB -USB_A_Molex_67643_Horizontal -USB type A, Horizontal, https://www.molex.com/pdm_docs/sd/676433910_sd.pdf -USB_A Female Connector receptacle -0 -6 -5 -Connector_USB -USB_A_Molex_105057_Vertical -https://www.molex.com/pdm_docs/sd/1050570001_sd.pdf -USB A Vertical -0 -7 -5 -Connector_USB -USB_A_Stewart_SS-52100-001_Horizontal -USB A connector https://belfuse.com/resources/drawings/stewartconnector/dr-stw-ss-52100-001.pdf -USB_A Female Connector receptacle -0 -6 -5 -Connector_USB -USB_A_TE_292303-7_Horizontal -USB type A, Horizontal, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=292303&DocType=Customer+Drawing&DocLang=English -USB_A Female Connector receptacle -0 -6 -5 -Connector_USB -USB_A_Wuerth_614004134726_Horizontal -USB A connector https://www.we-online.com/catalog/datasheet/614004134726.pdf -USB_A Female Connector receptacle -0 -8 -5 -Connector_USB -USB_A_Wuerth_61400826021_Horizontal_Stacked -Stacked USB A connector http://katalog.we-online.de/em/datasheet/61400826021.pdf -Wuerth stacked USB_A -0 -12 -9 -Connector_USB -USB_B_Amphenol_MUSB-D511_Vertical_Rugged -A,phenol MUSB_D511, USB B female connector, straight, rugged, https://www.amphenolcanada.com/ProductSearch/drawings/AC/MUSBD511XX.pdf -USB_B_MUSB_Straight female connector straight rugged MUSB D511 -0 -6 -5 -Connector_USB -USB_B_Lumberg_2411_02_Horizontal -USB 2.0 receptacle type B, horizontal version, through-hole, https://downloads.lumberg.com/datenblaetter/en/2411_02.pdf -USB B receptacle horizontal through-hole -0 -6 -5 -Connector_USB -USB_B_OST_USB-B1HSxx_Horizontal -USB B receptacle, Horizontal, through-hole, http://www.on-shore.com/wp-content/uploads/2015/09/usb-b1hsxx.pdf -USB-B receptacle horizontal through-hole -0 -6 -5 -Connector_USB -USB_B_TE_5787834_Vertical -http://www.mouser.com/ds/2/418/NG_CD_5787834_A4-669110.pdf -USB_B USB B vertical female connector -0 -6 -5 -Connector_USB -USB_C_Plug_JAE_DX07P024AJ1 -Universal Serial Bus (USB) Shielded I/O Plug, Type C, Right Angle, Surface Mount, https://www.jae.com/en/searchfilter/?topics_keyword=DX07P024AJ1&mainItemSelect=1 -USB Type-C Plug Edge Mount -0 -30 -25 -Connector_USB -USB_C_Plug_Molex_105444 -Universal Serial Bus (USB) Shielded I/O Plug, Type C, Right Angle, Surface Mount, http://www.molex.com/pdm_docs/sd/1054440001_sd.pdf -USB Type-C Plug Edge Mount -0 -24 -23 -Connector_USB -USB_C_Plug_ShenzhenJingTuoJin_918-118A2021Y40002_Vertical -Low-profile vertical USB 2.0 Type C Plug Shenzhen Jing Tuo Jin Electronics Co 918-118A2021Y40002 ( https://datasheet.lcsc.com/lcsc/1912111437_Jing-Extension-of-the-Electronic-Co--918-118A2021Y40002_C399939.pdf ) also compatible with Korean HRO Parts Elec TYPE-C-31-G-06 -type-c usb2 -0 -18 -17 -Connector_USB -USB_C_Receptacle_Amphenol_12401548E4-2A -USB TYPE C, RA RCPT PCB, Hybrid, https://www.amphenolcanada.com/StockAvailabilityPrice.aspx?From=&PartNum=12401548E4%7e2A -USB C Type-C Receptacle Hybrid -0 -28 -25 -Connector_USB -USB_C_Receptacle_Amphenol_12401548E4-2A_CircularHoles -USB TYPE C, RA RCPT PCB, Hybrid, https://www.amphenolcanada.com/StockAvailabilityPrice.aspx?From=&PartNum=12401548E4%7e2A -USB C Type-C Receptacle Hybrid -0 -28 -25 -Connector_USB -USB_C_Receptacle_Amphenol_12401610E4-2A -USB TYPE C, RA RCPT PCB, SMT, https://www.amphenolcanada.com/StockAvailabilityPrice.aspx?From=&PartNum=12401610E4%7e2A -USB C Type-C Receptacle SMD -0 -28 -25 -Connector_USB -USB_C_Receptacle_Amphenol_12401610E4-2A_CircularHoles -USB TYPE C, RA RCPT PCB, SMT, https://www.amphenolcanada.com/StockAvailabilityPrice.aspx?From=&PartNum=12401610E4%7e2A -USB C Type-C Receptacle SMD -0 -28 -25 -Connector_USB -USB_C_Receptacle_CNCTech_C-ARA1-AK51X -USB Type-C 3.0 Receptacle, 24-pin, right angle (source: https://www.cnctech.us/pdfs/C-ARA1-AK512.pdf) -USB C Type-C Receptacle Hybrid CNCTech C-ARA1-AK51X -0 -32 -25 -Connector_USB -USB_C_Receptacle_G-Switch_GT-USB-7010ASV -USB Type C, right-angle, SMT, https://datasheet.lcsc.com/lcsc/2204071530_G-Switch-GT-USB-7010ASV_C2988369.pdf -USB C Type-C Receptacle SMD -0 -20 -17 -Connector_USB -USB_C_Receptacle_G-Switch_GT-USB-7051x -USB Type C, vertical, SMT, https://datasheet.lcsc.com/lcsc/2108072030_G-Switch-GT-USB-7051A_C2843970.pdf -USB C Type-C Receptacle SMD GT-USB-7051A GT-USB-7051B -0 -20 -17 -Connector_USB -USB_C_Receptacle_GCT_USB4085 -USB 2.0 Type C Receptacle, https://gct.co/Files/Drawings/USB4085.pdf -USB Type-C Receptacle Through-hole Right angle -0 -20 -17 -Connector_USB -USB_C_Receptacle_GCT_USB4105-xx-A_16P_TopMnt_Horizontal -USB 2.0 Type C Receptacle, GCT, 16P, top mounted, horizontal, 5A: https://gct.co/files/drawings/usb4105.pdf -USB C Type-C Receptacle SMD USB 2.0 16P 16C USB4105-15-A USB4105-15-A-060 USB4105-15-A-120 USB4105-GF-A USB4105-GF-A-060 USB4105-GF-A-120 -0 -20 -17 -Connector_USB -USB_C_Receptacle_GCT_USB4115-03-C -USB TYPE C, VERT RCPT PCB, SMT, https://gct.co/files/drawings/usb4115.pdf -USB C Type-C Receptacle SMD -0 -28 -25 -Connector_USB -USB_C_Receptacle_GCT_USB4135-GF-A_6P_TopMnt_Horizontal -USB Type C Receptacle, GCT, power-only, 6P, top mounted, horizontal, 3A: https://gct.co/files/drawings/usb4135.pdf -USB C Type-C Receptacle SMD USB Power-only Charging-only 6P 6C USB4135-GF-A -0 -10 -7 -Connector_USB -USB_C_Receptacle_HRO_TYPE-C-31-M-12 -USB Type-C receptacle for USB 2.0 and PD, http://www.krhro.com/uploads/soft/180320/1-1P320120243.pdf -usb usb-c 2.0 pd -0 -20 -17 -Connector_USB -USB_C_Receptacle_JAE_DX07S016JA1R1500 -USB TYPE C, USB 2.0, SMT, https://www.jae.com/en/connectors/series/detail/product/id=91780 -USB C Type-C Receptacle SMD USB 2.0 -0 -22 -17 -Connector_USB -USB_C_Receptacle_JAE_DX07S024WJ1R350 -http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ117219.pdf -USB C Type-C Receptacle SMD -0 -30 -25 -Connector_USB -USB_C_Receptacle_JAE_DX07S024WJ3R400 -USB TYPE C, VERT RCPT PCB, SMT, http://www.jae.com/z-en/pdf_download_exec.cfm?param=SJ117928.pdf -USB C Type-C Receptacle SMD -0 -28 -25 -Connector_USB -USB_C_Receptacle_Molex_105450-0101 -USB 3.0 3.1 3.2 4.0 Type-C receptable, through-hole mount, SMD, right-angle (https://www.molex.com/pdm_docs/sd/1054500101_sd.pdf) -USB C Type-C USB3 receptacle SMD -0 -28 -25 -Connector_USB -USB_C_Receptacle_Palconn_UTC16-G -http://www.palpilot.com/wp-content/uploads/2017/05/UTC027-GKN-OR-Rev-A.pdf -USB C Type-C Receptacle USB2.0 -0 -20 -17 -Connector_USB -USB_C_Receptacle_XKB_U262-16XN-4BVC11 -USB Type C, right-angle, SMT, https://datasheet.lcsc.com/szlcsc/1811141824_XKB-Enterprise-U262-161N-4BVC11_C319148.pdf -USB C Type-C Receptacle SMD -0 -20 -17 -Connector_USB -USB_Micro-AB_Molex_47590-0001 -Micro USB AB receptable, right-angle inverted (https://www.molex.com/pdm_docs/sd/475900001_sd.pdf) -Micro AB USB SMD -0 -14 -6 -Connector_USB -USB_Micro-B_Amphenol_10103594-0001LF_Horizontal -Micro USB Type B 10103594-0001LF, http://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/10103594.pdf -USB USB_B USB_micro USB_OTG -0 -17 -6 -Connector_USB -USB_Micro-B_Amphenol_10104110_Horizontal -USB Micro-B, horizontal, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/10104110.pdf -USB Micro B horizontal -0 -9 -6 -Connector_USB -USB_Micro-B_Amphenol_10118194_Horizontal -USB Micro-B receptacle, horizontal, SMD, 10118194, https://cdn.amphenol-icc.com/media/wysiwyg/files/drawing/10118194.pdf -USB Micro B horizontal SMD -0 -17 -6 -Connector_USB -USB_Micro-B_GCT_USB3076-30-A -GCT Micro USB https://gct.co/files/drawings/usb3076.pdf -Micro-USB SMD Typ-B GCT -0 -11 -6 -Connector_USB -USB_Micro-B_Molex-105017-0001 -http://www.molex.com/pdm_docs/sd/1050170001_sd.pdf -Micro-USB SMD Typ-B -0 -13 -6 -Connector_USB -USB_Micro-B_Molex-105133-0001 -Molex Vertical Micro USB Typ-B (http://www.molex.com/pdm_docs/sd/1051330001_sd.pdf) -Micro-USB SMD Typ-B Vertical -0 -8 -6 -Connector_USB -USB_Micro-B_Molex-105133-0031 -Molex Vertical Micro USB Typ-B (http://www.molex.com/pdm_docs/sd/1051330031_sd.pdf) -Micro-USB SMD Typ-B Vertical -0 -8 -6 -Connector_USB -USB_Micro-B_Molex_47346-0001 -Micro USB B receptable with flange, bottom-mount, SMD, right-angle (http://www.molex.com/pdm_docs/sd/473460001_sd.pdf) -Micro B USB SMD -0 -11 -6 -Connector_USB -USB_Micro-B_Technik_TWP-4002D-H3 -Dustproof Micro USB Type B TWP-4002D-H3, https://www.technik.com.hk/images/pdf_product/WP4002D-H3-A_2.0.pdf -USB Micro B horizontal dustproof waterproof IP67 -0 -7 -6 -Connector_USB -USB_Micro-B_Wuerth_614105150721_Vertical -USB Micro-B receptacle, through-hole, vertical, http://katalog.we-online.de/em/datasheet/614105150721.pdf -usb micro receptacle vertical -0 -7 -6 -Connector_USB -USB_Micro-B_Wuerth_614105150721_Vertical_CircularHoles -USB Micro-B receptacle, through-hole, vertical, http://katalog.we-online.de/em/datasheet/614105150721.pdf -usb micro receptacle vertical -0 -7 -6 -Connector_USB -USB_Micro-B_Wuerth_629105150521 -USB Micro-B receptacle, http://www.mouser.com/ds/2/445/629105150521-469306.pdf -usb micro receptacle -0 -9 -6 -Connector_USB -USB_Micro-B_Wuerth_629105150521_CircularHoles -USB Micro-B receptacle, http://www.mouser.com/ds/2/445/629105150521-469306.pdf -usb micro receptacle -0 -9 -6 -Connector_USB -USB_Micro-B_XKB_U254-051T-4BH83-F1S -XKB Connectivity, USB Micro-B, right-angle, SMT, https://datasheet.lcsc.com/lcsc/2206091745_XKB-Connectivity-U254-051T-4BH83-F1S_C397452.pdf -USB Micro-B Receptacle SMD -0 -11 -6 -Connector_USB -USB_Mini-B_AdamTech_MUSB-B5-S-VT-TSMT-1_SMD_Vertical -http://www.adam-tech.com/upload/MUSB-B5-S-VT-TSMT-1.pdf -USB Mini-B -0 -7 -6 -Connector_USB -USB_Mini-B_Lumberg_2486_01_Horizontal -USB Mini-B 5-pin SMD connector, http://downloads.lumberg.com/datenblaetter/en/2486_01.pdf -USB USB_B USB_Mini connector -0 -9 -6 -Connector_USB -USB_Mini-B_Tensility_54-00023_Vertical -http://www.tensility.com/pdffiles/54-00023.pdf -usb mini receptacle vertical -0 -7 -6 -Connector_USB -USB_Mini-B_Tensility_54-00023_Vertical_CircularHoles -http://www.tensility.com/pdffiles/54-00023.pdf -usb mini receptacle vertical -0 -7 -6 -Connector_USB -USB_Mini-B_Wuerth_65100516121_Horizontal -Mini USB 2.0 Type B SMT Horizontal 5 Contacts (https://katalog.we-online.de/em/datasheet/65100516121.pdf) -Mini USB 2.0 Type B -0 -9 -6 -Connector_Wago -Wago_734-132_1x02_P3.50mm_Vertical -Molex 734 Male header (for PCBs); Straight solder pin 1 x 1 mm, 734-132 , 2 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator -connector Wago side entry -0 -2 -2 -Connector_Wago -Wago_734-133_1x03_P3.50mm_Vertical -Molex 734 Male header (for PCBs); Straight solder pin 1 x 1 mm, 734-133 , 3 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator -connector Wago side entry -0 -3 -3 -Connector_Wago -Wago_734-134_1x04_P3.50mm_Vertical -Molex 734 Male header (for PCBs); Straight solder pin 1 x 1 mm, 734-134 , 4 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator -connector Wago side entry -0 -4 -4 -Connector_Wago -Wago_734-135_1x05_P3.50mm_Vertical -Molex 734 Male header (for PCBs); Straight solder pin 1 x 1 mm, 734-135 , 5 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator -connector Wago side entry -0 -5 -5 -Connector_Wago -Wago_734-136_1x06_P3.50mm_Vertical -Molex 734 Male header (for PCBs); Straight solder pin 1 x 1 mm, 734-136 , 6 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator -connector Wago side entry -0 -6 -6 -Connector_Wago -Wago_734-137_1x07_P3.50mm_Vertical -Molex 734 Male header (for PCBs); Straight solder pin 1 x 1 mm, 734-137 , 7 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator -connector Wago side entry -0 -7 -7 -Connector_Wago -Wago_734-138_1x08_P3.50mm_Vertical -Molex 734 Male header (for PCBs); Straight solder pin 1 x 1 mm, 734-138 , 8 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator -connector Wago side entry -0 -8 -8 -Connector_Wago -Wago_734-139_1x09_P3.50mm_Vertical -Molex 734 Male header (for PCBs); Straight solder pin 1 x 1 mm, 734-139 , 9 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator -connector Wago side entry -0 -9 -9 -Connector_Wago -Wago_734-140_1x10_P3.50mm_Vertical -Molex 734 Male header (for PCBs); Straight solder pin 1 x 1 mm, 734-140 , 10 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator -connector Wago side entry -0 -10 -10 -Connector_Wago -Wago_734-141_1x11_P3.50mm_Vertical -Molex 734 Male header (for PCBs); Straight solder pin 1 x 1 mm, 734-141 , 11 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator -connector Wago side entry -0 -11 -11 -Connector_Wago -Wago_734-142_1x12_P3.50mm_Vertical -Molex 734 Male header (for PCBs); Straight solder pin 1 x 1 mm, 734-142 , 12 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator -connector Wago side entry -0 -12 -12 -Connector_Wago -Wago_734-143_1x13_P3.50mm_Vertical -Molex 734 Male header (for PCBs); Straight solder pin 1 x 1 mm, 734-143 , 13 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator -connector Wago side entry -0 -13 -13 -Connector_Wago -Wago_734-144_1x14_P3.50mm_Vertical -Molex 734 Male header (for PCBs); Straight solder pin 1 x 1 mm, 734-144 , 14 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator -connector Wago side entry -0 -14 -14 -Connector_Wago -Wago_734-146_1x16_P3.50mm_Vertical -Molex 734 Male header (for PCBs); Straight solder pin 1 x 1 mm, 734-146 , 16 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator -connector Wago side entry -0 -16 -16 -Connector_Wago -Wago_734-148_1x18_P3.50mm_Vertical -Molex 734 Male header (for PCBs); Straight solder pin 1 x 1 mm, 734-148 , 18 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator -connector Wago side entry -0 -18 -18 -Connector_Wago -Wago_734-150_1x20_P3.50mm_Vertical -Molex 734 Male header (for PCBs); Straight solder pin 1 x 1 mm, 734-150 , 20 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator -connector Wago side entry -0 -20 -20 -Connector_Wago -Wago_734-154_1x24_P3.50mm_Vertical -Molex 734 Male header (for PCBs); Straight solder pin 1 x 1 mm, 734-154 , 24 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator -connector Wago side entry -0 -24 -24 -Connector_Wago -Wago_734-162_1x02_P3.50mm_Horizontal -Molex 734 Male header (for PCBs); Angled solder pin 1 x 1 mm, 734-162 , 2 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator -connector Wago top entry -0 -2 -2 -Connector_Wago -Wago_734-163_1x03_P3.50mm_Horizontal -Molex 734 Male header (for PCBs); Angled solder pin 1 x 1 mm, 734-163 , 3 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator -connector Wago top entry -0 -3 -3 -Connector_Wago -Wago_734-164_1x04_P3.50mm_Horizontal -Molex 734 Male header (for PCBs); Angled solder pin 1 x 1 mm, 734-164 , 4 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator -connector Wago top entry -0 -4 -4 -Connector_Wago -Wago_734-165_1x05_P3.50mm_Horizontal -Molex 734 Male header (for PCBs); Angled solder pin 1 x 1 mm, 734-165 , 5 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator -connector Wago top entry -0 -5 -5 -Connector_Wago -Wago_734-166_1x06_P3.50mm_Horizontal -Molex 734 Male header (for PCBs); Angled solder pin 1 x 1 mm, 734-166 , 6 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator -connector Wago top entry -0 -6 -6 -Connector_Wago -Wago_734-167_1x07_P3.50mm_Horizontal -Molex 734 Male header (for PCBs); Angled solder pin 1 x 1 mm, 734-167 , 7 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator -connector Wago top entry -0 -7 -7 -Connector_Wago -Wago_734-168_1x08_P3.50mm_Horizontal -Molex 734 Male header (for PCBs); Angled solder pin 1 x 1 mm, 734-168 , 8 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator -connector Wago top entry -0 -8 -8 -Connector_Wago -Wago_734-169_1x09_P3.50mm_Horizontal -Molex 734 Male header (for PCBs); Angled solder pin 1 x 1 mm, 734-169 , 9 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator -connector Wago top entry -0 -9 -9 -Connector_Wago -Wago_734-170_1x10_P3.50mm_Horizontal -Molex 734 Male header (for PCBs); Angled solder pin 1 x 1 mm, 734-170 , 10 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator -connector Wago top entry -0 -10 -10 -Connector_Wago -Wago_734-171_1x11_P3.50mm_Horizontal -Molex 734 Male header (for PCBs); Angled solder pin 1 x 1 mm, 734-171 , 11 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator -connector Wago top entry -0 -11 -11 -Connector_Wago -Wago_734-172_1x12_P3.50mm_Horizontal -Molex 734 Male header (for PCBs); Angled solder pin 1 x 1 mm, 734-172 , 12 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator -connector Wago top entry -0 -12 -12 -Connector_Wago -Wago_734-173_1x13_P3.50mm_Horizontal -Molex 734 Male header (for PCBs); Angled solder pin 1 x 1 mm, 734-173 , 13 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator -connector Wago top entry -0 -13 -13 -Connector_Wago -Wago_734-174_1x14_P3.50mm_Horizontal -Molex 734 Male header (for PCBs); Angled solder pin 1 x 1 mm, 734-174 , 14 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator -connector Wago top entry -0 -14 -14 -Connector_Wago -Wago_734-176_1x16_P3.50mm_Horizontal -Molex 734 Male header (for PCBs); Angled solder pin 1 x 1 mm, 734-176 , 16 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator -connector Wago top entry -0 -16 -16 -Connector_Wago -Wago_734-178_1x18_P3.50mm_Horizontal -Molex 734 Male header (for PCBs); Angled solder pin 1 x 1 mm, 734-178 , 18 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator -connector Wago top entry -0 -18 -18 -Connector_Wago -Wago_734-180_1x20_P3.50mm_Horizontal -Molex 734 Male header (for PCBs); Angled solder pin 1 x 1 mm, 734-180 , 20 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator -connector Wago top entry -0 -20 -20 -Connector_Wago -Wago_734-184_1x24_P3.50mm_Horizontal -Molex 734 Male header (for PCBs); Angled solder pin 1 x 1 mm, 734-184 , 24 Pins (http://www.farnell.com/datasheets/2157639.pdf), generated with kicad-footprint-generator -connector Wago top entry -0 -24 -24 -Connector_Wire -SolderWire-0.1sqmm_1x01_D0.4mm_OD1mm -Soldered wire connection, for a single 0.1 mm² wire, basic insulation, conductor diameter 0.4mm, outer diameter 1mm, size source Multi-Contact FLEXI-E 0.1 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.1sqmm -0 -1 -1 -Connector_Wire -SolderWire-0.1sqmm_1x01_D0.4mm_OD1mm_Relief -Soldered wire connection with feed through strain relief, for a single 0.1 mm² wire, basic insulation, conductor diameter 0.4mm, outer diameter 1mm, size source Multi-Contact FLEXI-E 0.1 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.1sqmm strain-relief -0 -1 -1 -Connector_Wire -SolderWire-0.1sqmm_1x01_D0.4mm_OD1mm_Relief2x -Soldered wire connection with double feed through strain relief, for a single 0.1 mm² wire, basic insulation, conductor diameter 0.4mm, outer diameter 1mm, size source Multi-Contact FLEXI-E 0.1 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.1sqmm double-strain-relief -0 -1 -1 -Connector_Wire -SolderWire-0.1sqmm_1x02_P3.6mm_D0.4mm_OD1mm -Soldered wire connection, for 2 times 0.1 mm² wires, basic insulation, conductor diameter 0.4mm, outer diameter 1mm, size source Multi-Contact FLEXI-E 0.1 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.1sqmm -0 -2 -2 -Connector_Wire -SolderWire-0.1sqmm_1x02_P3.6mm_D0.4mm_OD1mm_Relief -Soldered wire connection with feed through strain relief, for 2 times 0.1 mm² wires, basic insulation, conductor diameter 0.4mm, outer diameter 1mm, size source Multi-Contact FLEXI-E 0.1 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.1sqmm strain-relief -0 -2 -2 -Connector_Wire -SolderWire-0.1sqmm_1x02_P3.6mm_D0.4mm_OD1mm_Relief2x -Soldered wire connection with double feed through strain relief, for 2 times 0.1 mm² wires, basic insulation, conductor diameter 0.4mm, outer diameter 1mm, size source Multi-Contact FLEXI-E 0.1 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.1sqmm double-strain-relief -0 -2 -2 -Connector_Wire -SolderWire-0.1sqmm_1x03_P3.6mm_D0.4mm_OD1mm -Soldered wire connection, for 3 times 0.1 mm² wires, basic insulation, conductor diameter 0.4mm, outer diameter 1mm, size source Multi-Contact FLEXI-E 0.1 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.1sqmm -0 -3 -3 -Connector_Wire -SolderWire-0.1sqmm_1x03_P3.6mm_D0.4mm_OD1mm_Relief -Soldered wire connection with feed through strain relief, for 3 times 0.1 mm² wires, basic insulation, conductor diameter 0.4mm, outer diameter 1mm, size source Multi-Contact FLEXI-E 0.1 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.1sqmm strain-relief -0 -3 -3 -Connector_Wire -SolderWire-0.1sqmm_1x03_P3.6mm_D0.4mm_OD1mm_Relief2x -Soldered wire connection with double feed through strain relief, for 3 times 0.1 mm² wires, basic insulation, conductor diameter 0.4mm, outer diameter 1mm, size source Multi-Contact FLEXI-E 0.1 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.1sqmm double-strain-relief -0 -3 -3 -Connector_Wire -SolderWire-0.1sqmm_1x04_P3.6mm_D0.4mm_OD1mm -Soldered wire connection, for 4 times 0.1 mm² wires, basic insulation, conductor diameter 0.4mm, outer diameter 1mm, size source Multi-Contact FLEXI-E 0.1 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.1sqmm -0 -4 -4 -Connector_Wire -SolderWire-0.1sqmm_1x04_P3.6mm_D0.4mm_OD1mm_Relief -Soldered wire connection with feed through strain relief, for 4 times 0.1 mm² wires, basic insulation, conductor diameter 0.4mm, outer diameter 1mm, size source Multi-Contact FLEXI-E 0.1 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.1sqmm strain-relief -0 -4 -4 -Connector_Wire -SolderWire-0.1sqmm_1x04_P3.6mm_D0.4mm_OD1mm_Relief2x -Soldered wire connection with double feed through strain relief, for 4 times 0.1 mm² wires, basic insulation, conductor diameter 0.4mm, outer diameter 1mm, size source Multi-Contact FLEXI-E 0.1 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.1sqmm double-strain-relief -0 -4 -4 -Connector_Wire -SolderWire-0.1sqmm_1x05_P3.6mm_D0.4mm_OD1mm -Soldered wire connection, for 5 times 0.1 mm² wires, basic insulation, conductor diameter 0.4mm, outer diameter 1mm, size source Multi-Contact FLEXI-E 0.1 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.1sqmm -0 -5 -5 -Connector_Wire -SolderWire-0.1sqmm_1x05_P3.6mm_D0.4mm_OD1mm_Relief -Soldered wire connection with feed through strain relief, for 5 times 0.1 mm² wires, basic insulation, conductor diameter 0.4mm, outer diameter 1mm, size source Multi-Contact FLEXI-E 0.1 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.1sqmm strain-relief -0 -5 -5 -Connector_Wire -SolderWire-0.1sqmm_1x05_P3.6mm_D0.4mm_OD1mm_Relief2x -Soldered wire connection with double feed through strain relief, for 5 times 0.1 mm² wires, basic insulation, conductor diameter 0.4mm, outer diameter 1mm, size source Multi-Contact FLEXI-E 0.1 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.1sqmm double-strain-relief -0 -5 -5 -Connector_Wire -SolderWire-0.1sqmm_1x06_P3.6mm_D0.4mm_OD1mm -Soldered wire connection, for 6 times 0.1 mm² wires, basic insulation, conductor diameter 0.4mm, outer diameter 1mm, size source Multi-Contact FLEXI-E 0.1 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.1sqmm -0 -6 -6 -Connector_Wire -SolderWire-0.1sqmm_1x06_P3.6mm_D0.4mm_OD1mm_Relief -Soldered wire connection with feed through strain relief, for 6 times 0.1 mm² wires, basic insulation, conductor diameter 0.4mm, outer diameter 1mm, size source Multi-Contact FLEXI-E 0.1 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.1sqmm strain-relief -0 -6 -6 -Connector_Wire -SolderWire-0.1sqmm_1x06_P3.6mm_D0.4mm_OD1mm_Relief2x -Soldered wire connection with double feed through strain relief, for 6 times 0.1 mm² wires, basic insulation, conductor diameter 0.4mm, outer diameter 1mm, size source Multi-Contact FLEXI-E 0.1 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.1sqmm double-strain-relief -0 -6 -6 -Connector_Wire -SolderWire-0.5sqmm_1x01_D0.9mm_OD2.1mm -Soldered wire connection, for a single 0.5 mm² wire, basic insulation, conductor diameter 0.9mm, outer diameter 2.1mm, size source Multi-Contact FLEXI-E 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.5sqmm -0 -1 -1 -Connector_Wire -SolderWire-0.5sqmm_1x01_D0.9mm_OD2.1mm_Relief -Soldered wire connection with feed through strain relief, for a single 0.5 mm² wire, basic insulation, conductor diameter 0.9mm, outer diameter 2.1mm, size source Multi-Contact FLEXI-E 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.5sqmm strain-relief -0 -1 -1 -Connector_Wire -SolderWire-0.5sqmm_1x01_D0.9mm_OD2.1mm_Relief2x -Soldered wire connection with double feed through strain relief, for a single 0.5 mm² wire, basic insulation, conductor diameter 0.9mm, outer diameter 2.1mm, size source Multi-Contact FLEXI-E 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.5sqmm double-strain-relief -0 -1 -1 -Connector_Wire -SolderWire-0.5sqmm_1x01_D0.9mm_OD2.3mm -Soldered wire connection, for a single 0.5 mm² wire, reinforced insulation, conductor diameter 0.9mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-xV 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.5sqmm -0 -1 -1 -Connector_Wire -SolderWire-0.5sqmm_1x01_D0.9mm_OD2.3mm_Relief -Soldered wire connection with feed through strain relief, for a single 0.5 mm² wire, reinforced insulation, conductor diameter 0.9mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-xV 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.5sqmm strain-relief -0 -1 -1 -Connector_Wire -SolderWire-0.5sqmm_1x01_D0.9mm_OD2.3mm_Relief2x -Soldered wire connection with double feed through strain relief, for a single 0.5 mm² wire, reinforced insulation, conductor diameter 0.9mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-xV 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.5sqmm double-strain-relief -0 -1 -1 -Connector_Wire -SolderWire-0.5sqmm_1x02_P4.6mm_D0.9mm_OD2.1mm -Soldered wire connection, for 2 times 0.5 mm² wires, basic insulation, conductor diameter 0.9mm, outer diameter 2.1mm, size source Multi-Contact FLEXI-E 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.5sqmm -0 -2 -2 -Connector_Wire -SolderWire-0.5sqmm_1x02_P4.6mm_D0.9mm_OD2.1mm_Relief -Soldered wire connection with feed through strain relief, for 2 times 0.5 mm² wires, basic insulation, conductor diameter 0.9mm, outer diameter 2.1mm, size source Multi-Contact FLEXI-E 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.5sqmm strain-relief -0 -2 -2 -Connector_Wire -SolderWire-0.5sqmm_1x02_P4.6mm_D0.9mm_OD2.1mm_Relief2x -Soldered wire connection with double feed through strain relief, for 2 times 0.5 mm² wires, basic insulation, conductor diameter 0.9mm, outer diameter 2.1mm, size source Multi-Contact FLEXI-E 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.5sqmm double-strain-relief -0 -2 -2 -Connector_Wire -SolderWire-0.5sqmm_1x02_P4.8mm_D0.9mm_OD2.3mm -Soldered wire connection, for 2 times 0.5 mm² wires, reinforced insulation, conductor diameter 0.9mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-xV 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.5sqmm -0 -2 -2 -Connector_Wire -SolderWire-0.5sqmm_1x02_P4.8mm_D0.9mm_OD2.3mm_Relief -Soldered wire connection with feed through strain relief, for 2 times 0.5 mm² wires, reinforced insulation, conductor diameter 0.9mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-xV 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.5sqmm strain-relief -0 -2 -2 -Connector_Wire -SolderWire-0.5sqmm_1x02_P4.8mm_D0.9mm_OD2.3mm_Relief2x -Soldered wire connection with double feed through strain relief, for 2 times 0.5 mm² wires, reinforced insulation, conductor diameter 0.9mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-xV 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.5sqmm double-strain-relief -0 -2 -2 -Connector_Wire -SolderWire-0.5sqmm_1x03_P4.6mm_D0.9mm_OD2.1mm -Soldered wire connection, for 3 times 0.5 mm² wires, basic insulation, conductor diameter 0.9mm, outer diameter 2.1mm, size source Multi-Contact FLEXI-E 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.5sqmm -0 -3 -3 -Connector_Wire -SolderWire-0.5sqmm_1x03_P4.6mm_D0.9mm_OD2.1mm_Relief -Soldered wire connection with feed through strain relief, for 3 times 0.5 mm² wires, basic insulation, conductor diameter 0.9mm, outer diameter 2.1mm, size source Multi-Contact FLEXI-E 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.5sqmm strain-relief -0 -3 -3 -Connector_Wire -SolderWire-0.5sqmm_1x03_P4.6mm_D0.9mm_OD2.1mm_Relief2x -Soldered wire connection with double feed through strain relief, for 3 times 0.5 mm² wires, basic insulation, conductor diameter 0.9mm, outer diameter 2.1mm, size source Multi-Contact FLEXI-E 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.5sqmm double-strain-relief -0 -3 -3 -Connector_Wire -SolderWire-0.5sqmm_1x03_P4.8mm_D0.9mm_OD2.3mm -Soldered wire connection, for 3 times 0.5 mm² wires, reinforced insulation, conductor diameter 0.9mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-xV 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.5sqmm -0 -3 -3 -Connector_Wire -SolderWire-0.5sqmm_1x03_P4.8mm_D0.9mm_OD2.3mm_Relief -Soldered wire connection with feed through strain relief, for 3 times 0.5 mm² wires, reinforced insulation, conductor diameter 0.9mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-xV 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.5sqmm strain-relief -0 -3 -3 -Connector_Wire -SolderWire-0.5sqmm_1x03_P4.8mm_D0.9mm_OD2.3mm_Relief2x -Soldered wire connection with double feed through strain relief, for 3 times 0.5 mm² wires, reinforced insulation, conductor diameter 0.9mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-xV 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.5sqmm double-strain-relief -0 -3 -3 -Connector_Wire -SolderWire-0.5sqmm_1x04_P4.6mm_D0.9mm_OD2.1mm -Soldered wire connection, for 4 times 0.5 mm² wires, basic insulation, conductor diameter 0.9mm, outer diameter 2.1mm, size source Multi-Contact FLEXI-E 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.5sqmm -0 -4 -4 -Connector_Wire -SolderWire-0.5sqmm_1x04_P4.6mm_D0.9mm_OD2.1mm_Relief -Soldered wire connection with feed through strain relief, for 4 times 0.5 mm² wires, basic insulation, conductor diameter 0.9mm, outer diameter 2.1mm, size source Multi-Contact FLEXI-E 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.5sqmm strain-relief -0 -4 -4 -Connector_Wire -SolderWire-0.5sqmm_1x04_P4.6mm_D0.9mm_OD2.1mm_Relief2x -Soldered wire connection with double feed through strain relief, for 4 times 0.5 mm² wires, basic insulation, conductor diameter 0.9mm, outer diameter 2.1mm, size source Multi-Contact FLEXI-E 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.5sqmm double-strain-relief -0 -4 -4 -Connector_Wire -SolderWire-0.5sqmm_1x04_P4.8mm_D0.9mm_OD2.3mm -Soldered wire connection, for 4 times 0.5 mm² wires, reinforced insulation, conductor diameter 0.9mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-xV 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.5sqmm -0 -4 -4 -Connector_Wire -SolderWire-0.5sqmm_1x04_P4.8mm_D0.9mm_OD2.3mm_Relief -Soldered wire connection with feed through strain relief, for 4 times 0.5 mm² wires, reinforced insulation, conductor diameter 0.9mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-xV 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.5sqmm strain-relief -0 -4 -4 -Connector_Wire -SolderWire-0.5sqmm_1x04_P4.8mm_D0.9mm_OD2.3mm_Relief2x -Soldered wire connection with double feed through strain relief, for 4 times 0.5 mm² wires, reinforced insulation, conductor diameter 0.9mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-xV 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.5sqmm double-strain-relief -0 -4 -4 -Connector_Wire -SolderWire-0.5sqmm_1x05_P4.6mm_D0.9mm_OD2.1mm -Soldered wire connection, for 5 times 0.5 mm² wires, basic insulation, conductor diameter 0.9mm, outer diameter 2.1mm, size source Multi-Contact FLEXI-E 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.5sqmm -0 -5 -5 -Connector_Wire -SolderWire-0.5sqmm_1x05_P4.6mm_D0.9mm_OD2.1mm_Relief -Soldered wire connection with feed through strain relief, for 5 times 0.5 mm² wires, basic insulation, conductor diameter 0.9mm, outer diameter 2.1mm, size source Multi-Contact FLEXI-E 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.5sqmm strain-relief -0 -5 -5 -Connector_Wire -SolderWire-0.5sqmm_1x05_P4.6mm_D0.9mm_OD2.1mm_Relief2x -Soldered wire connection with double feed through strain relief, for 5 times 0.5 mm² wires, basic insulation, conductor diameter 0.9mm, outer diameter 2.1mm, size source Multi-Contact FLEXI-E 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.5sqmm double-strain-relief -0 -5 -5 -Connector_Wire -SolderWire-0.5sqmm_1x05_P4.8mm_D0.9mm_OD2.3mm -Soldered wire connection, for 5 times 0.5 mm² wires, reinforced insulation, conductor diameter 0.9mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-xV 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.5sqmm -0 -5 -5 -Connector_Wire -SolderWire-0.5sqmm_1x05_P4.8mm_D0.9mm_OD2.3mm_Relief -Soldered wire connection with feed through strain relief, for 5 times 0.5 mm² wires, reinforced insulation, conductor diameter 0.9mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-xV 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.5sqmm strain-relief -0 -5 -5 -Connector_Wire -SolderWire-0.5sqmm_1x05_P4.8mm_D0.9mm_OD2.3mm_Relief2x -Soldered wire connection with double feed through strain relief, for 5 times 0.5 mm² wires, reinforced insulation, conductor diameter 0.9mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-xV 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.5sqmm double-strain-relief -0 -5 -5 -Connector_Wire -SolderWire-0.5sqmm_1x06_P4.6mm_D0.9mm_OD2.1mm -Soldered wire connection, for 6 times 0.5 mm² wires, basic insulation, conductor diameter 0.9mm, outer diameter 2.1mm, size source Multi-Contact FLEXI-E 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.5sqmm -0 -6 -6 -Connector_Wire -SolderWire-0.5sqmm_1x06_P4.6mm_D0.9mm_OD2.1mm_Relief -Soldered wire connection with feed through strain relief, for 6 times 0.5 mm² wires, basic insulation, conductor diameter 0.9mm, outer diameter 2.1mm, size source Multi-Contact FLEXI-E 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.5sqmm strain-relief -0 -6 -6 -Connector_Wire -SolderWire-0.5sqmm_1x06_P4.6mm_D0.9mm_OD2.1mm_Relief2x -Soldered wire connection with double feed through strain relief, for 6 times 0.5 mm² wires, basic insulation, conductor diameter 0.9mm, outer diameter 2.1mm, size source Multi-Contact FLEXI-E 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.5sqmm double-strain-relief -0 -6 -6 -Connector_Wire -SolderWire-0.5sqmm_1x06_P4.8mm_D0.9mm_OD2.3mm -Soldered wire connection, for 6 times 0.5 mm² wires, reinforced insulation, conductor diameter 0.9mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-xV 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.5sqmm -0 -6 -6 -Connector_Wire -SolderWire-0.5sqmm_1x06_P4.8mm_D0.9mm_OD2.3mm_Relief -Soldered wire connection with feed through strain relief, for 6 times 0.5 mm² wires, reinforced insulation, conductor diameter 0.9mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-xV 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.5sqmm strain-relief -0 -6 -6 -Connector_Wire -SolderWire-0.5sqmm_1x06_P4.8mm_D0.9mm_OD2.3mm_Relief2x -Soldered wire connection with double feed through strain relief, for 6 times 0.5 mm² wires, reinforced insulation, conductor diameter 0.9mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-xV 0.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.5sqmm double-strain-relief -0 -6 -6 -Connector_Wire -SolderWire-0.15sqmm_1x01_D0.5mm_OD1.5mm -Soldered wire connection, for a single 0.15 mm² wire, basic insulation, conductor diameter 0.5mm, outer diameter 1.5mm, size source Multi-Contact FLEXI-E 0.15 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.15sqmm -0 -1 -1 -Connector_Wire -SolderWire-0.15sqmm_1x01_D0.5mm_OD1.5mm_Relief -Soldered wire connection with feed through strain relief, for a single 0.15 mm² wire, basic insulation, conductor diameter 0.5mm, outer diameter 1.5mm, size source Multi-Contact FLEXI-E 0.15 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.15sqmm strain-relief -0 -1 -1 -Connector_Wire -SolderWire-0.15sqmm_1x01_D0.5mm_OD1.5mm_Relief2x -Soldered wire connection with double feed through strain relief, for a single 0.15 mm² wire, basic insulation, conductor diameter 0.5mm, outer diameter 1.5mm, size source Multi-Contact FLEXI-E 0.15 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.15sqmm double-strain-relief -0 -1 -1 -Connector_Wire -SolderWire-0.15sqmm_1x02_P4mm_D0.5mm_OD1.5mm -Soldered wire connection, for 2 times 0.15 mm² wires, basic insulation, conductor diameter 0.5mm, outer diameter 1.5mm, size source Multi-Contact FLEXI-E 0.15 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.15sqmm -0 -2 -2 -Connector_Wire -SolderWire-0.15sqmm_1x02_P4mm_D0.5mm_OD1.5mm_Relief -Soldered wire connection with feed through strain relief, for 2 times 0.15 mm² wires, basic insulation, conductor diameter 0.5mm, outer diameter 1.5mm, size source Multi-Contact FLEXI-E 0.15 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.15sqmm strain-relief -0 -2 -2 -Connector_Wire -SolderWire-0.15sqmm_1x02_P4mm_D0.5mm_OD1.5mm_Relief2x -Soldered wire connection with double feed through strain relief, for 2 times 0.15 mm² wires, basic insulation, conductor diameter 0.5mm, outer diameter 1.5mm, size source Multi-Contact FLEXI-E 0.15 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.15sqmm double-strain-relief -0 -2 -2 -Connector_Wire -SolderWire-0.15sqmm_1x03_P4mm_D0.5mm_OD1.5mm -Soldered wire connection, for 3 times 0.15 mm² wires, basic insulation, conductor diameter 0.5mm, outer diameter 1.5mm, size source Multi-Contact FLEXI-E 0.15 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.15sqmm -0 -3 -3 -Connector_Wire -SolderWire-0.15sqmm_1x03_P4mm_D0.5mm_OD1.5mm_Relief -Soldered wire connection with feed through strain relief, for 3 times 0.15 mm² wires, basic insulation, conductor diameter 0.5mm, outer diameter 1.5mm, size source Multi-Contact FLEXI-E 0.15 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.15sqmm strain-relief -0 -3 -3 -Connector_Wire -SolderWire-0.15sqmm_1x03_P4mm_D0.5mm_OD1.5mm_Relief2x -Soldered wire connection with double feed through strain relief, for 3 times 0.15 mm² wires, basic insulation, conductor diameter 0.5mm, outer diameter 1.5mm, size source Multi-Contact FLEXI-E 0.15 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.15sqmm double-strain-relief -0 -3 -3 -Connector_Wire -SolderWire-0.15sqmm_1x04_P4mm_D0.5mm_OD1.5mm -Soldered wire connection, for 4 times 0.15 mm² wires, basic insulation, conductor diameter 0.5mm, outer diameter 1.5mm, size source Multi-Contact FLEXI-E 0.15 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.15sqmm -0 -4 -4 -Connector_Wire -SolderWire-0.15sqmm_1x04_P4mm_D0.5mm_OD1.5mm_Relief -Soldered wire connection with feed through strain relief, for 4 times 0.15 mm² wires, basic insulation, conductor diameter 0.5mm, outer diameter 1.5mm, size source Multi-Contact FLEXI-E 0.15 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.15sqmm strain-relief -0 -4 -4 -Connector_Wire -SolderWire-0.15sqmm_1x04_P4mm_D0.5mm_OD1.5mm_Relief2x -Soldered wire connection with double feed through strain relief, for 4 times 0.15 mm² wires, basic insulation, conductor diameter 0.5mm, outer diameter 1.5mm, size source Multi-Contact FLEXI-E 0.15 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.15sqmm double-strain-relief -0 -4 -4 -Connector_Wire -SolderWire-0.15sqmm_1x05_P4mm_D0.5mm_OD1.5mm -Soldered wire connection, for 5 times 0.15 mm² wires, basic insulation, conductor diameter 0.5mm, outer diameter 1.5mm, size source Multi-Contact FLEXI-E 0.15 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.15sqmm -0 -5 -5 -Connector_Wire -SolderWire-0.15sqmm_1x05_P4mm_D0.5mm_OD1.5mm_Relief -Soldered wire connection with feed through strain relief, for 5 times 0.15 mm² wires, basic insulation, conductor diameter 0.5mm, outer diameter 1.5mm, size source Multi-Contact FLEXI-E 0.15 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.15sqmm strain-relief -0 -5 -5 -Connector_Wire -SolderWire-0.15sqmm_1x05_P4mm_D0.5mm_OD1.5mm_Relief2x -Soldered wire connection with double feed through strain relief, for 5 times 0.15 mm² wires, basic insulation, conductor diameter 0.5mm, outer diameter 1.5mm, size source Multi-Contact FLEXI-E 0.15 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.15sqmm double-strain-relief -0 -5 -5 -Connector_Wire -SolderWire-0.15sqmm_1x06_P4mm_D0.5mm_OD1.5mm -Soldered wire connection, for 6 times 0.15 mm² wires, basic insulation, conductor diameter 0.5mm, outer diameter 1.5mm, size source Multi-Contact FLEXI-E 0.15 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.15sqmm -0 -6 -6 -Connector_Wire -SolderWire-0.15sqmm_1x06_P4mm_D0.5mm_OD1.5mm_Relief -Soldered wire connection with feed through strain relief, for 6 times 0.15 mm² wires, basic insulation, conductor diameter 0.5mm, outer diameter 1.5mm, size source Multi-Contact FLEXI-E 0.15 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.15sqmm strain-relief -0 -6 -6 -Connector_Wire -SolderWire-0.15sqmm_1x06_P4mm_D0.5mm_OD1.5mm_Relief2x -Soldered wire connection with double feed through strain relief, for 6 times 0.15 mm² wires, basic insulation, conductor diameter 0.5mm, outer diameter 1.5mm, size source Multi-Contact FLEXI-E 0.15 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.15sqmm double-strain-relief -0 -6 -6 -Connector_Wire -SolderWire-0.25sqmm_1x01_D0.65mm_OD1.7mm -Soldered wire connection, for a single 0.25 mm² wire, basic insulation, conductor diameter 0.65mm, outer diameter 1.7mm, size source Multi-Contact FLEXI-E_0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.25sqmm -0 -1 -1 -Connector_Wire -SolderWire-0.25sqmm_1x01_D0.65mm_OD1.7mm_Relief -Soldered wire connection with feed through strain relief, for a single 0.25 mm² wire, basic insulation, conductor diameter 0.65mm, outer diameter 1.7mm, size source Multi-Contact FLEXI-E_0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.25sqmm strain-relief -0 -1 -1 -Connector_Wire -SolderWire-0.25sqmm_1x01_D0.65mm_OD1.7mm_Relief2x -Soldered wire connection with double feed through strain relief, for a single 0.25 mm² wire, basic insulation, conductor diameter 0.65mm, outer diameter 1.7mm, size source Multi-Contact FLEXI-E_0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.25sqmm double-strain-relief -0 -1 -1 -Connector_Wire -SolderWire-0.25sqmm_1x01_D0.65mm_OD2mm -Soldered wire connection, for a single 0.25 mm² wire, reinforced insulation, conductor diameter 0.65mm, outer diameter 2mm, size source Multi-Contact FLEXI-2V 0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.25sqmm -0 -1 -1 -Connector_Wire -SolderWire-0.25sqmm_1x01_D0.65mm_OD2mm_Relief -Soldered wire connection with feed through strain relief, for a single 0.25 mm² wire, reinforced insulation, conductor diameter 0.65mm, outer diameter 2mm, size source Multi-Contact FLEXI-2V 0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.25sqmm strain-relief -0 -1 -1 -Connector_Wire -SolderWire-0.25sqmm_1x01_D0.65mm_OD2mm_Relief2x -Soldered wire connection with double feed through strain relief, for a single 0.25 mm² wire, reinforced insulation, conductor diameter 0.65mm, outer diameter 2mm, size source Multi-Contact FLEXI-2V 0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.25sqmm double-strain-relief -0 -1 -1 -Connector_Wire -SolderWire-0.25sqmm_1x02_P4.2mm_D0.65mm_OD1.7mm -Soldered wire connection, for 2 times 0.25 mm² wires, basic insulation, conductor diameter 0.65mm, outer diameter 1.7mm, size source Multi-Contact FLEXI-E_0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.25sqmm -0 -2 -2 -Connector_Wire -SolderWire-0.25sqmm_1x02_P4.2mm_D0.65mm_OD1.7mm_Relief -Soldered wire connection with feed through strain relief, for 2 times 0.25 mm² wires, basic insulation, conductor diameter 0.65mm, outer diameter 1.7mm, size source Multi-Contact FLEXI-E_0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.25sqmm strain-relief -0 -2 -2 -Connector_Wire -SolderWire-0.25sqmm_1x02_P4.2mm_D0.65mm_OD1.7mm_Relief2x -Soldered wire connection with double feed through strain relief, for 2 times 0.25 mm² wires, basic insulation, conductor diameter 0.65mm, outer diameter 1.7mm, size source Multi-Contact FLEXI-E_0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.25sqmm double-strain-relief -0 -2 -2 -Connector_Wire -SolderWire-0.25sqmm_1x02_P4.5mm_D0.65mm_OD2mm -Soldered wire connection, for 2 times 0.25 mm² wires, reinforced insulation, conductor diameter 0.65mm, outer diameter 2mm, size source Multi-Contact FLEXI-2V 0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.25sqmm -0 -2 -2 -Connector_Wire -SolderWire-0.25sqmm_1x02_P4.5mm_D0.65mm_OD2mm_Relief -Soldered wire connection with feed through strain relief, for 2 times 0.25 mm² wires, reinforced insulation, conductor diameter 0.65mm, outer diameter 2mm, size source Multi-Contact FLEXI-2V 0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.25sqmm strain-relief -0 -2 -2 -Connector_Wire -SolderWire-0.25sqmm_1x02_P4.5mm_D0.65mm_OD2mm_Relief2x -Soldered wire connection with double feed through strain relief, for 2 times 0.25 mm² wires, reinforced insulation, conductor diameter 0.65mm, outer diameter 2mm, size source Multi-Contact FLEXI-2V 0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.25sqmm double-strain-relief -0 -2 -2 -Connector_Wire -SolderWire-0.25sqmm_1x03_P4.2mm_D0.65mm_OD1.7mm -Soldered wire connection, for 3 times 0.25 mm² wires, basic insulation, conductor diameter 0.65mm, outer diameter 1.7mm, size source Multi-Contact FLEXI-E_0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.25sqmm -0 -3 -3 -Connector_Wire -SolderWire-0.25sqmm_1x03_P4.2mm_D0.65mm_OD1.7mm_Relief -Soldered wire connection with feed through strain relief, for 3 times 0.25 mm² wires, basic insulation, conductor diameter 0.65mm, outer diameter 1.7mm, size source Multi-Contact FLEXI-E_0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.25sqmm strain-relief -0 -3 -3 -Connector_Wire -SolderWire-0.25sqmm_1x03_P4.2mm_D0.65mm_OD1.7mm_Relief2x -Soldered wire connection with double feed through strain relief, for 3 times 0.25 mm² wires, basic insulation, conductor diameter 0.65mm, outer diameter 1.7mm, size source Multi-Contact FLEXI-E_0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.25sqmm double-strain-relief -0 -3 -3 -Connector_Wire -SolderWire-0.25sqmm_1x03_P4.5mm_D0.65mm_OD2mm -Soldered wire connection, for 3 times 0.25 mm² wires, reinforced insulation, conductor diameter 0.65mm, outer diameter 2mm, size source Multi-Contact FLEXI-2V 0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.25sqmm -0 -3 -3 -Connector_Wire -SolderWire-0.25sqmm_1x03_P4.5mm_D0.65mm_OD2mm_Relief -Soldered wire connection with feed through strain relief, for 3 times 0.25 mm² wires, reinforced insulation, conductor diameter 0.65mm, outer diameter 2mm, size source Multi-Contact FLEXI-2V 0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.25sqmm strain-relief -0 -3 -3 -Connector_Wire -SolderWire-0.25sqmm_1x03_P4.5mm_D0.65mm_OD2mm_Relief2x -Soldered wire connection with double feed through strain relief, for 3 times 0.25 mm² wires, reinforced insulation, conductor diameter 0.65mm, outer diameter 2mm, size source Multi-Contact FLEXI-2V 0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.25sqmm double-strain-relief -0 -3 -3 -Connector_Wire -SolderWire-0.25sqmm_1x04_P4.2mm_D0.65mm_OD1.7mm -Soldered wire connection, for 4 times 0.25 mm² wires, basic insulation, conductor diameter 0.65mm, outer diameter 1.7mm, size source Multi-Contact FLEXI-E_0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.25sqmm -0 -4 -4 -Connector_Wire -SolderWire-0.25sqmm_1x04_P4.2mm_D0.65mm_OD1.7mm_Relief -Soldered wire connection with feed through strain relief, for 4 times 0.25 mm² wires, basic insulation, conductor diameter 0.65mm, outer diameter 1.7mm, size source Multi-Contact FLEXI-E_0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.25sqmm strain-relief -0 -4 -4 -Connector_Wire -SolderWire-0.25sqmm_1x04_P4.2mm_D0.65mm_OD1.7mm_Relief2x -Soldered wire connection with double feed through strain relief, for 4 times 0.25 mm² wires, basic insulation, conductor diameter 0.65mm, outer diameter 1.7mm, size source Multi-Contact FLEXI-E_0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.25sqmm double-strain-relief -0 -4 -4 -Connector_Wire -SolderWire-0.25sqmm_1x04_P4.5mm_D0.65mm_OD2mm -Soldered wire connection, for 4 times 0.25 mm² wires, reinforced insulation, conductor diameter 0.65mm, outer diameter 2mm, size source Multi-Contact FLEXI-2V 0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.25sqmm -0 -4 -4 -Connector_Wire -SolderWire-0.25sqmm_1x04_P4.5mm_D0.65mm_OD2mm_Relief -Soldered wire connection with feed through strain relief, for 4 times 0.25 mm² wires, reinforced insulation, conductor diameter 0.65mm, outer diameter 2mm, size source Multi-Contact FLEXI-2V 0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.25sqmm strain-relief -0 -4 -4 -Connector_Wire -SolderWire-0.25sqmm_1x04_P4.5mm_D0.65mm_OD2mm_Relief2x -Soldered wire connection with double feed through strain relief, for 4 times 0.25 mm² wires, reinforced insulation, conductor diameter 0.65mm, outer diameter 2mm, size source Multi-Contact FLEXI-2V 0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.25sqmm double-strain-relief -0 -4 -4 -Connector_Wire -SolderWire-0.25sqmm_1x05_P4.2mm_D0.65mm_OD1.7mm -Soldered wire connection, for 5 times 0.25 mm² wires, basic insulation, conductor diameter 0.65mm, outer diameter 1.7mm, size source Multi-Contact FLEXI-E_0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.25sqmm -0 -5 -5 -Connector_Wire -SolderWire-0.25sqmm_1x05_P4.2mm_D0.65mm_OD1.7mm_Relief -Soldered wire connection with feed through strain relief, for 5 times 0.25 mm² wires, basic insulation, conductor diameter 0.65mm, outer diameter 1.7mm, size source Multi-Contact FLEXI-E_0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.25sqmm strain-relief -0 -5 -5 -Connector_Wire -SolderWire-0.25sqmm_1x05_P4.2mm_D0.65mm_OD1.7mm_Relief2x -Soldered wire connection with double feed through strain relief, for 5 times 0.25 mm² wires, basic insulation, conductor diameter 0.65mm, outer diameter 1.7mm, size source Multi-Contact FLEXI-E_0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.25sqmm double-strain-relief -0 -5 -5 -Connector_Wire -SolderWire-0.25sqmm_1x05_P4.5mm_D0.65mm_OD2mm -Soldered wire connection, for 5 times 0.25 mm² wires, reinforced insulation, conductor diameter 0.65mm, outer diameter 2mm, size source Multi-Contact FLEXI-2V 0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.25sqmm -0 -5 -5 -Connector_Wire -SolderWire-0.25sqmm_1x05_P4.5mm_D0.65mm_OD2mm_Relief -Soldered wire connection with feed through strain relief, for 5 times 0.25 mm² wires, reinforced insulation, conductor diameter 0.65mm, outer diameter 2mm, size source Multi-Contact FLEXI-2V 0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.25sqmm strain-relief -0 -5 -5 -Connector_Wire -SolderWire-0.25sqmm_1x05_P4.5mm_D0.65mm_OD2mm_Relief2x -Soldered wire connection with double feed through strain relief, for 5 times 0.25 mm² wires, reinforced insulation, conductor diameter 0.65mm, outer diameter 2mm, size source Multi-Contact FLEXI-2V 0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.25sqmm double-strain-relief -0 -5 -5 -Connector_Wire -SolderWire-0.25sqmm_1x06_P4.2mm_D0.65mm_OD1.7mm -Soldered wire connection, for 6 times 0.25 mm² wires, basic insulation, conductor diameter 0.65mm, outer diameter 1.7mm, size source Multi-Contact FLEXI-E_0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.25sqmm -0 -6 -6 -Connector_Wire -SolderWire-0.25sqmm_1x06_P4.2mm_D0.65mm_OD1.7mm_Relief -Soldered wire connection with feed through strain relief, for 6 times 0.25 mm² wires, basic insulation, conductor diameter 0.65mm, outer diameter 1.7mm, size source Multi-Contact FLEXI-E_0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.25sqmm strain-relief -0 -6 -6 -Connector_Wire -SolderWire-0.25sqmm_1x06_P4.2mm_D0.65mm_OD1.7mm_Relief2x -Soldered wire connection with double feed through strain relief, for 6 times 0.25 mm² wires, basic insulation, conductor diameter 0.65mm, outer diameter 1.7mm, size source Multi-Contact FLEXI-E_0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.25sqmm double-strain-relief -0 -6 -6 -Connector_Wire -SolderWire-0.25sqmm_1x06_P4.5mm_D0.65mm_OD2mm -Soldered wire connection, for 6 times 0.25 mm² wires, reinforced insulation, conductor diameter 0.65mm, outer diameter 2mm, size source Multi-Contact FLEXI-2V 0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.25sqmm -0 -6 -6 -Connector_Wire -SolderWire-0.25sqmm_1x06_P4.5mm_D0.65mm_OD2mm_Relief -Soldered wire connection with feed through strain relief, for 6 times 0.25 mm² wires, reinforced insulation, conductor diameter 0.65mm, outer diameter 2mm, size source Multi-Contact FLEXI-2V 0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.25sqmm strain-relief -0 -6 -6 -Connector_Wire -SolderWire-0.25sqmm_1x06_P4.5mm_D0.65mm_OD2mm_Relief2x -Soldered wire connection with double feed through strain relief, for 6 times 0.25 mm² wires, reinforced insulation, conductor diameter 0.65mm, outer diameter 2mm, size source Multi-Contact FLEXI-2V 0.25 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.25sqmm double-strain-relief -0 -6 -6 -Connector_Wire -SolderWire-0.75sqmm_1x01_D1.25mm_OD2.3mm -Soldered wire connection, for a single 0.75 mm² wire, basic insulation, conductor diameter 1.25mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-E 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.75sqmm -0 -1 -1 -Connector_Wire -SolderWire-0.75sqmm_1x01_D1.25mm_OD2.3mm_Relief -Soldered wire connection with feed through strain relief, for a single 0.75 mm² wire, basic insulation, conductor diameter 1.25mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-E 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.75sqmm strain-relief -0 -1 -1 -Connector_Wire -SolderWire-0.75sqmm_1x01_D1.25mm_OD2.3mm_Relief2x -Soldered wire connection with double feed through strain relief, for a single 0.75 mm² wire, basic insulation, conductor diameter 1.25mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-E 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.75sqmm double-strain-relief -0 -1 -1 -Connector_Wire -SolderWire-0.75sqmm_1x01_D1.25mm_OD3.5mm -Soldered wire connection, for a single 0.75 mm² wire, reinforced insulation, conductor diameter 1.25mm, outer diameter 3.5mm, size source Multi-Contact FLEXI-xV 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.75sqmm -0 -1 -1 -Connector_Wire -SolderWire-0.75sqmm_1x01_D1.25mm_OD3.5mm_Relief -Soldered wire connection with feed through strain relief, for a single 0.75 mm² wire, reinforced insulation, conductor diameter 1.25mm, outer diameter 3.5mm, size source Multi-Contact FLEXI-xV 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.75sqmm strain-relief -0 -1 -1 -Connector_Wire -SolderWire-0.75sqmm_1x01_D1.25mm_OD3.5mm_Relief2x -Soldered wire connection with double feed through strain relief, for a single 0.75 mm² wire, reinforced insulation, conductor diameter 1.25mm, outer diameter 3.5mm, size source Multi-Contact FLEXI-xV 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.75sqmm double-strain-relief -0 -1 -1 -Connector_Wire -SolderWire-0.75sqmm_1x02_P4.8mm_D1.25mm_OD2.3mm -Soldered wire connection, for 2 times 0.75 mm² wires, basic insulation, conductor diameter 1.25mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-E 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.75sqmm -0 -2 -2 -Connector_Wire -SolderWire-0.75sqmm_1x02_P4.8mm_D1.25mm_OD2.3mm_Relief -Soldered wire connection with feed through strain relief, for 2 times 0.75 mm² wires, basic insulation, conductor diameter 1.25mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-E 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.75sqmm strain-relief -0 -2 -2 -Connector_Wire -SolderWire-0.75sqmm_1x02_P4.8mm_D1.25mm_OD2.3mm_Relief2x -Soldered wire connection with double feed through strain relief, for 2 times 0.75 mm² wires, basic insulation, conductor diameter 1.25mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-E 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.75sqmm double-strain-relief -0 -2 -2 -Connector_Wire -SolderWire-0.75sqmm_1x02_P7mm_D1.25mm_OD3.5mm -Soldered wire connection, for 2 times 0.75 mm² wires, reinforced insulation, conductor diameter 1.25mm, outer diameter 3.5mm, size source Multi-Contact FLEXI-xV 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.75sqmm -0 -2 -2 -Connector_Wire -SolderWire-0.75sqmm_1x02_P7mm_D1.25mm_OD3.5mm_Relief -Soldered wire connection with feed through strain relief, for 2 times 0.75 mm² wires, reinforced insulation, conductor diameter 1.25mm, outer diameter 3.5mm, size source Multi-Contact FLEXI-xV 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.75sqmm strain-relief -0 -2 -2 -Connector_Wire -SolderWire-0.75sqmm_1x02_P7mm_D1.25mm_OD3.5mm_Relief2x -Soldered wire connection with double feed through strain relief, for 2 times 0.75 mm² wires, reinforced insulation, conductor diameter 1.25mm, outer diameter 3.5mm, size source Multi-Contact FLEXI-xV 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.75sqmm double-strain-relief -0 -2 -2 -Connector_Wire -SolderWire-0.75sqmm_1x03_P4.8mm_D1.25mm_OD2.3mm -Soldered wire connection, for 3 times 0.75 mm² wires, basic insulation, conductor diameter 1.25mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-E 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.75sqmm -0 -3 -3 -Connector_Wire -SolderWire-0.75sqmm_1x03_P4.8mm_D1.25mm_OD2.3mm_Relief -Soldered wire connection with feed through strain relief, for 3 times 0.75 mm² wires, basic insulation, conductor diameter 1.25mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-E 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.75sqmm strain-relief -0 -3 -3 -Connector_Wire -SolderWire-0.75sqmm_1x03_P4.8mm_D1.25mm_OD2.3mm_Relief2x -Soldered wire connection with double feed through strain relief, for 3 times 0.75 mm² wires, basic insulation, conductor diameter 1.25mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-E 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.75sqmm double-strain-relief -0 -3 -3 -Connector_Wire -SolderWire-0.75sqmm_1x03_P7mm_D1.25mm_OD3.5mm -Soldered wire connection, for 3 times 0.75 mm² wires, reinforced insulation, conductor diameter 1.25mm, outer diameter 3.5mm, size source Multi-Contact FLEXI-xV 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.75sqmm -0 -3 -3 -Connector_Wire -SolderWire-0.75sqmm_1x03_P7mm_D1.25mm_OD3.5mm_Relief -Soldered wire connection with feed through strain relief, for 3 times 0.75 mm² wires, reinforced insulation, conductor diameter 1.25mm, outer diameter 3.5mm, size source Multi-Contact FLEXI-xV 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.75sqmm strain-relief -0 -3 -3 -Connector_Wire -SolderWire-0.75sqmm_1x03_P7mm_D1.25mm_OD3.5mm_Relief2x -Soldered wire connection with double feed through strain relief, for 3 times 0.75 mm² wires, reinforced insulation, conductor diameter 1.25mm, outer diameter 3.5mm, size source Multi-Contact FLEXI-xV 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.75sqmm double-strain-relief -0 -3 -3 -Connector_Wire -SolderWire-0.75sqmm_1x04_P4.8mm_D1.25mm_OD2.3mm -Soldered wire connection, for 4 times 0.75 mm² wires, basic insulation, conductor diameter 1.25mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-E 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.75sqmm -0 -4 -4 -Connector_Wire -SolderWire-0.75sqmm_1x04_P4.8mm_D1.25mm_OD2.3mm_Relief -Soldered wire connection with feed through strain relief, for 4 times 0.75 mm² wires, basic insulation, conductor diameter 1.25mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-E 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.75sqmm strain-relief -0 -4 -4 -Connector_Wire -SolderWire-0.75sqmm_1x04_P4.8mm_D1.25mm_OD2.3mm_Relief2x -Soldered wire connection with double feed through strain relief, for 4 times 0.75 mm² wires, basic insulation, conductor diameter 1.25mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-E 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.75sqmm double-strain-relief -0 -4 -4 -Connector_Wire -SolderWire-0.75sqmm_1x04_P7mm_D1.25mm_OD3.5mm -Soldered wire connection, for 4 times 0.75 mm² wires, reinforced insulation, conductor diameter 1.25mm, outer diameter 3.5mm, size source Multi-Contact FLEXI-xV 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.75sqmm -0 -4 -4 -Connector_Wire -SolderWire-0.75sqmm_1x04_P7mm_D1.25mm_OD3.5mm_Relief -Soldered wire connection with feed through strain relief, for 4 times 0.75 mm² wires, reinforced insulation, conductor diameter 1.25mm, outer diameter 3.5mm, size source Multi-Contact FLEXI-xV 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.75sqmm strain-relief -0 -4 -4 -Connector_Wire -SolderWire-0.75sqmm_1x04_P7mm_D1.25mm_OD3.5mm_Relief2x -Soldered wire connection with double feed through strain relief, for 4 times 0.75 mm² wires, reinforced insulation, conductor diameter 1.25mm, outer diameter 3.5mm, size source Multi-Contact FLEXI-xV 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.75sqmm double-strain-relief -0 -4 -4 -Connector_Wire -SolderWire-0.75sqmm_1x05_P4.8mm_D1.25mm_OD2.3mm -Soldered wire connection, for 5 times 0.75 mm² wires, basic insulation, conductor diameter 1.25mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-E 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.75sqmm -0 -5 -5 -Connector_Wire -SolderWire-0.75sqmm_1x05_P4.8mm_D1.25mm_OD2.3mm_Relief -Soldered wire connection with feed through strain relief, for 5 times 0.75 mm² wires, basic insulation, conductor diameter 1.25mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-E 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.75sqmm strain-relief -0 -5 -5 -Connector_Wire -SolderWire-0.75sqmm_1x05_P4.8mm_D1.25mm_OD2.3mm_Relief2x -Soldered wire connection with double feed through strain relief, for 5 times 0.75 mm² wires, basic insulation, conductor diameter 1.25mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-E 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.75sqmm double-strain-relief -0 -5 -5 -Connector_Wire -SolderWire-0.75sqmm_1x05_P7mm_D1.25mm_OD3.5mm -Soldered wire connection, for 5 times 0.75 mm² wires, reinforced insulation, conductor diameter 1.25mm, outer diameter 3.5mm, size source Multi-Contact FLEXI-xV 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.75sqmm -0 -5 -5 -Connector_Wire -SolderWire-0.75sqmm_1x05_P7mm_D1.25mm_OD3.5mm_Relief -Soldered wire connection with feed through strain relief, for 5 times 0.75 mm² wires, reinforced insulation, conductor diameter 1.25mm, outer diameter 3.5mm, size source Multi-Contact FLEXI-xV 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.75sqmm strain-relief -0 -5 -5 -Connector_Wire -SolderWire-0.75sqmm_1x05_P7mm_D1.25mm_OD3.5mm_Relief2x -Soldered wire connection with double feed through strain relief, for 5 times 0.75 mm² wires, reinforced insulation, conductor diameter 1.25mm, outer diameter 3.5mm, size source Multi-Contact FLEXI-xV 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.75sqmm double-strain-relief -0 -5 -5 -Connector_Wire -SolderWire-0.75sqmm_1x06_P4.8mm_D1.25mm_OD2.3mm -Soldered wire connection, for 6 times 0.75 mm² wires, basic insulation, conductor diameter 1.25mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-E 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.75sqmm -0 -6 -6 -Connector_Wire -SolderWire-0.75sqmm_1x06_P4.8mm_D1.25mm_OD2.3mm_Relief -Soldered wire connection with feed through strain relief, for 6 times 0.75 mm² wires, basic insulation, conductor diameter 1.25mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-E 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.75sqmm strain-relief -0 -6 -6 -Connector_Wire -SolderWire-0.75sqmm_1x06_P4.8mm_D1.25mm_OD2.3mm_Relief2x -Soldered wire connection with double feed through strain relief, for 6 times 0.75 mm² wires, basic insulation, conductor diameter 1.25mm, outer diameter 2.3mm, size source Multi-Contact FLEXI-E 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.75sqmm double-strain-relief -0 -6 -6 -Connector_Wire -SolderWire-0.75sqmm_1x06_P7mm_D1.25mm_OD3.5mm -Soldered wire connection, for 6 times 0.75 mm² wires, reinforced insulation, conductor diameter 1.25mm, outer diameter 3.5mm, size source Multi-Contact FLEXI-xV 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.75sqmm -0 -6 -6 -Connector_Wire -SolderWire-0.75sqmm_1x06_P7mm_D1.25mm_OD3.5mm_Relief -Soldered wire connection with feed through strain relief, for 6 times 0.75 mm² wires, reinforced insulation, conductor diameter 1.25mm, outer diameter 3.5mm, size source Multi-Contact FLEXI-xV 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.75sqmm strain-relief -0 -6 -6 -Connector_Wire -SolderWire-0.75sqmm_1x06_P7mm_D1.25mm_OD3.5mm_Relief2x -Soldered wire connection with double feed through strain relief, for 6 times 0.75 mm² wires, reinforced insulation, conductor diameter 1.25mm, outer diameter 3.5mm, size source Multi-Contact FLEXI-xV 0.75 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.75sqmm double-strain-relief -0 -6 -6 -Connector_Wire -SolderWire-0.127sqmm_1x01_D0.48mm_OD1mm -Soldered wire connection, for a single 0.127 mm² wire, basic insulation, conductor diameter 0.48mm, outer diameter 1mm, size source Multi-Contact FLEXI-E/HK 0.127 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.127sqmm -0 -1 -1 -Connector_Wire -SolderWire-0.127sqmm_1x01_D0.48mm_OD1mm_Relief -Soldered wire connection with feed through strain relief, for a single 0.127 mm² wire, basic insulation, conductor diameter 0.48mm, outer diameter 1mm, size source Multi-Contact FLEXI-E/HK 0.127 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.127sqmm strain-relief -0 -1 -1 -Connector_Wire -SolderWire-0.127sqmm_1x01_D0.48mm_OD1mm_Relief2x -Soldered wire connection with double feed through strain relief, for a single 0.127 mm² wire, basic insulation, conductor diameter 0.48mm, outer diameter 1mm, size source Multi-Contact FLEXI-E/HK 0.127 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.127sqmm double-strain-relief -0 -1 -1 -Connector_Wire -SolderWire-0.127sqmm_1x02_P3.7mm_D0.48mm_OD1mm -Soldered wire connection, for 2 times 0.127 mm² wires, basic insulation, conductor diameter 0.48mm, outer diameter 1mm, size source Multi-Contact FLEXI-E/HK 0.127 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.127sqmm -0 -2 -2 -Connector_Wire -SolderWire-0.127sqmm_1x02_P3.7mm_D0.48mm_OD1mm_Relief -Soldered wire connection with feed through strain relief, for 2 times 0.127 mm² wires, basic insulation, conductor diameter 0.48mm, outer diameter 1mm, size source Multi-Contact FLEXI-E/HK 0.127 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.127sqmm strain-relief -0 -2 -2 -Connector_Wire -SolderWire-0.127sqmm_1x02_P3.7mm_D0.48mm_OD1mm_Relief2x -Soldered wire connection with double feed through strain relief, for 2 times 0.127 mm² wires, basic insulation, conductor diameter 0.48mm, outer diameter 1mm, size source Multi-Contact FLEXI-E/HK 0.127 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.127sqmm double-strain-relief -0 -2 -2 -Connector_Wire -SolderWire-0.127sqmm_1x03_P3.7mm_D0.48mm_OD1mm -Soldered wire connection, for 3 times 0.127 mm² wires, basic insulation, conductor diameter 0.48mm, outer diameter 1mm, size source Multi-Contact FLEXI-E/HK 0.127 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.127sqmm -0 -3 -3 -Connector_Wire -SolderWire-0.127sqmm_1x03_P3.7mm_D0.48mm_OD1mm_Relief -Soldered wire connection with feed through strain relief, for 3 times 0.127 mm² wires, basic insulation, conductor diameter 0.48mm, outer diameter 1mm, size source Multi-Contact FLEXI-E/HK 0.127 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.127sqmm strain-relief -0 -3 -3 -Connector_Wire -SolderWire-0.127sqmm_1x03_P3.7mm_D0.48mm_OD1mm_Relief2x -Soldered wire connection with double feed through strain relief, for 3 times 0.127 mm² wires, basic insulation, conductor diameter 0.48mm, outer diameter 1mm, size source Multi-Contact FLEXI-E/HK 0.127 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.127sqmm double-strain-relief -0 -3 -3 -Connector_Wire -SolderWire-0.127sqmm_1x04_P3.7mm_D0.48mm_OD1mm -Soldered wire connection, for 4 times 0.127 mm² wires, basic insulation, conductor diameter 0.48mm, outer diameter 1mm, size source Multi-Contact FLEXI-E/HK 0.127 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.127sqmm -0 -4 -4 -Connector_Wire -SolderWire-0.127sqmm_1x04_P3.7mm_D0.48mm_OD1mm_Relief -Soldered wire connection with feed through strain relief, for 4 times 0.127 mm² wires, basic insulation, conductor diameter 0.48mm, outer diameter 1mm, size source Multi-Contact FLEXI-E/HK 0.127 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.127sqmm strain-relief -0 -4 -4 -Connector_Wire -SolderWire-0.127sqmm_1x04_P3.7mm_D0.48mm_OD1mm_Relief2x -Soldered wire connection with double feed through strain relief, for 4 times 0.127 mm² wires, basic insulation, conductor diameter 0.48mm, outer diameter 1mm, size source Multi-Contact FLEXI-E/HK 0.127 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.127sqmm double-strain-relief -0 -4 -4 -Connector_Wire -SolderWire-0.127sqmm_1x05_P3.7mm_D0.48mm_OD1mm -Soldered wire connection, for 5 times 0.127 mm² wires, basic insulation, conductor diameter 0.48mm, outer diameter 1mm, size source Multi-Contact FLEXI-E/HK 0.127 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.127sqmm -0 -5 -5 -Connector_Wire -SolderWire-0.127sqmm_1x05_P3.7mm_D0.48mm_OD1mm_Relief -Soldered wire connection with feed through strain relief, for 5 times 0.127 mm² wires, basic insulation, conductor diameter 0.48mm, outer diameter 1mm, size source Multi-Contact FLEXI-E/HK 0.127 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.127sqmm strain-relief -0 -5 -5 -Connector_Wire -SolderWire-0.127sqmm_1x05_P3.7mm_D0.48mm_OD1mm_Relief2x -Soldered wire connection with double feed through strain relief, for 5 times 0.127 mm² wires, basic insulation, conductor diameter 0.48mm, outer diameter 1mm, size source Multi-Contact FLEXI-E/HK 0.127 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.127sqmm double-strain-relief -0 -5 -5 -Connector_Wire -SolderWire-0.127sqmm_1x06_P3.7mm_D0.48mm_OD1mm -Soldered wire connection, for 6 times 0.127 mm² wires, basic insulation, conductor diameter 0.48mm, outer diameter 1mm, size source Multi-Contact FLEXI-E/HK 0.127 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.127sqmm -0 -6 -6 -Connector_Wire -SolderWire-0.127sqmm_1x06_P3.7mm_D0.48mm_OD1mm_Relief -Soldered wire connection with feed through strain relief, for 6 times 0.127 mm² wires, basic insulation, conductor diameter 0.48mm, outer diameter 1mm, size source Multi-Contact FLEXI-E/HK 0.127 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.127sqmm strain-relief -0 -6 -6 -Connector_Wire -SolderWire-0.127sqmm_1x06_P3.7mm_D0.48mm_OD1mm_Relief2x -Soldered wire connection with double feed through strain relief, for 6 times 0.127 mm² wires, basic insulation, conductor diameter 0.48mm, outer diameter 1mm, size source Multi-Contact FLEXI-E/HK 0.127 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 0.127sqmm double-strain-relief -0 -6 -6 -Connector_Wire -SolderWire-1.5sqmm_1x01_D1.7mm_OD3.9mm -Soldered wire connection, for a single 1.5 mm² wire, reinforced insulation, conductor diameter 1.7mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 1.5sqmm -0 -1 -1 -Connector_Wire -SolderWire-1.5sqmm_1x01_D1.7mm_OD3.9mm_Relief -Soldered wire connection with feed through strain relief, for a single 1.5 mm² wire, reinforced insulation, conductor diameter 1.7mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 1.5sqmm strain-relief -0 -1 -1 -Connector_Wire -SolderWire-1.5sqmm_1x01_D1.7mm_OD3.9mm_Relief2x -Soldered wire connection with double feed through strain relief, for a single 1.5 mm² wire, reinforced insulation, conductor diameter 1.7mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 1.5sqmm double-strain-relief -0 -1 -1 -Connector_Wire -SolderWire-1.5sqmm_1x01_D1.7mm_OD3mm -Soldered wire connection, for a single 1.5 mm² wire, basic insulation, conductor diameter 1.7mm, outer diameter 3mm, size source Multi-Contact FLEXI-E 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 1.5sqmm -0 -1 -1 -Connector_Wire -SolderWire-1.5sqmm_1x01_D1.7mm_OD3mm_Relief -Soldered wire connection with feed through strain relief, for a single 1.5 mm² wire, basic insulation, conductor diameter 1.7mm, outer diameter 3mm, size source Multi-Contact FLEXI-E 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 1.5sqmm strain-relief -0 -1 -1 -Connector_Wire -SolderWire-1.5sqmm_1x01_D1.7mm_OD3mm_Relief2x -Soldered wire connection with double feed through strain relief, for a single 1.5 mm² wire, basic insulation, conductor diameter 1.7mm, outer diameter 3mm, size source Multi-Contact FLEXI-E 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 1.5sqmm double-strain-relief -0 -1 -1 -Connector_Wire -SolderWire-1.5sqmm_1x02_P6mm_D1.7mm_OD3mm -Soldered wire connection, for 2 times 1.5 mm² wires, basic insulation, conductor diameter 1.7mm, outer diameter 3mm, size source Multi-Contact FLEXI-E 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 1.5sqmm -0 -2 -2 -Connector_Wire -SolderWire-1.5sqmm_1x02_P6mm_D1.7mm_OD3mm_Relief -Soldered wire connection with feed through strain relief, for 2 times 1.5 mm² wires, basic insulation, conductor diameter 1.7mm, outer diameter 3mm, size source Multi-Contact FLEXI-E 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 1.5sqmm strain-relief -0 -2 -2 -Connector_Wire -SolderWire-1.5sqmm_1x02_P6mm_D1.7mm_OD3mm_Relief2x -Soldered wire connection with double feed through strain relief, for 2 times 1.5 mm² wires, basic insulation, conductor diameter 1.7mm, outer diameter 3mm, size source Multi-Contact FLEXI-E 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 1.5sqmm double-strain-relief -0 -2 -2 -Connector_Wire -SolderWire-1.5sqmm_1x02_P7.8mm_D1.7mm_OD3.9mm -Soldered wire connection, for 2 times 1.5 mm² wires, reinforced insulation, conductor diameter 1.7mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 1.5sqmm -0 -2 -2 -Connector_Wire -SolderWire-1.5sqmm_1x02_P7.8mm_D1.7mm_OD3.9mm_Relief -Soldered wire connection with feed through strain relief, for 2 times 1.5 mm² wires, reinforced insulation, conductor diameter 1.7mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 1.5sqmm strain-relief -0 -2 -2 -Connector_Wire -SolderWire-1.5sqmm_1x02_P7.8mm_D1.7mm_OD3.9mm_Relief2x -Soldered wire connection with double feed through strain relief, for 2 times 1.5 mm² wires, reinforced insulation, conductor diameter 1.7mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 1.5sqmm double-strain-relief -0 -2 -2 -Connector_Wire -SolderWire-1.5sqmm_1x03_P6mm_D1.7mm_OD3mm -Soldered wire connection, for 3 times 1.5 mm² wires, basic insulation, conductor diameter 1.7mm, outer diameter 3mm, size source Multi-Contact FLEXI-E 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 1.5sqmm -0 -3 -3 -Connector_Wire -SolderWire-1.5sqmm_1x03_P6mm_D1.7mm_OD3mm_Relief -Soldered wire connection with feed through strain relief, for 3 times 1.5 mm² wires, basic insulation, conductor diameter 1.7mm, outer diameter 3mm, size source Multi-Contact FLEXI-E 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 1.5sqmm strain-relief -0 -3 -3 -Connector_Wire -SolderWire-1.5sqmm_1x03_P6mm_D1.7mm_OD3mm_Relief2x -Soldered wire connection with double feed through strain relief, for 3 times 1.5 mm² wires, basic insulation, conductor diameter 1.7mm, outer diameter 3mm, size source Multi-Contact FLEXI-E 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 1.5sqmm double-strain-relief -0 -3 -3 -Connector_Wire -SolderWire-1.5sqmm_1x03_P7.8mm_D1.7mm_OD3.9mm -Soldered wire connection, for 3 times 1.5 mm² wires, reinforced insulation, conductor diameter 1.7mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 1.5sqmm -0 -3 -3 -Connector_Wire -SolderWire-1.5sqmm_1x03_P7.8mm_D1.7mm_OD3.9mm_Relief -Soldered wire connection with feed through strain relief, for 3 times 1.5 mm² wires, reinforced insulation, conductor diameter 1.7mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 1.5sqmm strain-relief -0 -3 -3 -Connector_Wire -SolderWire-1.5sqmm_1x03_P7.8mm_D1.7mm_OD3.9mm_Relief2x -Soldered wire connection with double feed through strain relief, for 3 times 1.5 mm² wires, reinforced insulation, conductor diameter 1.7mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 1.5sqmm double-strain-relief -0 -3 -3 -Connector_Wire -SolderWire-1.5sqmm_1x04_P6mm_D1.7mm_OD3mm -Soldered wire connection, for 4 times 1.5 mm² wires, basic insulation, conductor diameter 1.7mm, outer diameter 3mm, size source Multi-Contact FLEXI-E 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 1.5sqmm -0 -4 -4 -Connector_Wire -SolderWire-1.5sqmm_1x04_P6mm_D1.7mm_OD3mm_Relief -Soldered wire connection with feed through strain relief, for 4 times 1.5 mm² wires, basic insulation, conductor diameter 1.7mm, outer diameter 3mm, size source Multi-Contact FLEXI-E 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 1.5sqmm strain-relief -0 -4 -4 -Connector_Wire -SolderWire-1.5sqmm_1x04_P6mm_D1.7mm_OD3mm_Relief2x -Soldered wire connection with double feed through strain relief, for 4 times 1.5 mm² wires, basic insulation, conductor diameter 1.7mm, outer diameter 3mm, size source Multi-Contact FLEXI-E 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 1.5sqmm double-strain-relief -0 -4 -4 -Connector_Wire -SolderWire-1.5sqmm_1x04_P7.8mm_D1.7mm_OD3.9mm -Soldered wire connection, for 4 times 1.5 mm² wires, reinforced insulation, conductor diameter 1.7mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 1.5sqmm -0 -4 -4 -Connector_Wire -SolderWire-1.5sqmm_1x04_P7.8mm_D1.7mm_OD3.9mm_Relief -Soldered wire connection with feed through strain relief, for 4 times 1.5 mm² wires, reinforced insulation, conductor diameter 1.7mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 1.5sqmm strain-relief -0 -4 -4 -Connector_Wire -SolderWire-1.5sqmm_1x04_P7.8mm_D1.7mm_OD3.9mm_Relief2x -Soldered wire connection with double feed through strain relief, for 4 times 1.5 mm² wires, reinforced insulation, conductor diameter 1.7mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 1.5sqmm double-strain-relief -0 -4 -4 -Connector_Wire -SolderWire-1.5sqmm_1x05_P6mm_D1.7mm_OD3mm -Soldered wire connection, for 5 times 1.5 mm² wires, basic insulation, conductor diameter 1.7mm, outer diameter 3mm, size source Multi-Contact FLEXI-E 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 1.5sqmm -0 -5 -5 -Connector_Wire -SolderWire-1.5sqmm_1x05_P6mm_D1.7mm_OD3mm_Relief -Soldered wire connection with feed through strain relief, for 5 times 1.5 mm² wires, basic insulation, conductor diameter 1.7mm, outer diameter 3mm, size source Multi-Contact FLEXI-E 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 1.5sqmm strain-relief -0 -5 -5 -Connector_Wire -SolderWire-1.5sqmm_1x05_P6mm_D1.7mm_OD3mm_Relief2x -Soldered wire connection with double feed through strain relief, for 5 times 1.5 mm² wires, basic insulation, conductor diameter 1.7mm, outer diameter 3mm, size source Multi-Contact FLEXI-E 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 1.5sqmm double-strain-relief -0 -5 -5 -Connector_Wire -SolderWire-1.5sqmm_1x05_P7.8mm_D1.7mm_OD3.9mm -Soldered wire connection, for 5 times 1.5 mm² wires, reinforced insulation, conductor diameter 1.7mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 1.5sqmm -0 -5 -5 -Connector_Wire -SolderWire-1.5sqmm_1x05_P7.8mm_D1.7mm_OD3.9mm_Relief -Soldered wire connection with feed through strain relief, for 5 times 1.5 mm² wires, reinforced insulation, conductor diameter 1.7mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 1.5sqmm strain-relief -0 -5 -5 -Connector_Wire -SolderWire-1.5sqmm_1x05_P7.8mm_D1.7mm_OD3.9mm_Relief2x -Soldered wire connection with double feed through strain relief, for 5 times 1.5 mm² wires, reinforced insulation, conductor diameter 1.7mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 1.5sqmm double-strain-relief -0 -5 -5 -Connector_Wire -SolderWire-1.5sqmm_1x06_P6mm_D1.7mm_OD3mm -Soldered wire connection, for 6 times 1.5 mm² wires, basic insulation, conductor diameter 1.7mm, outer diameter 3mm, size source Multi-Contact FLEXI-E 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 1.5sqmm -0 -6 -6 -Connector_Wire -SolderWire-1.5sqmm_1x06_P6mm_D1.7mm_OD3mm_Relief -Soldered wire connection with feed through strain relief, for 6 times 1.5 mm² wires, basic insulation, conductor diameter 1.7mm, outer diameter 3mm, size source Multi-Contact FLEXI-E 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 1.5sqmm strain-relief -0 -6 -6 -Connector_Wire -SolderWire-1.5sqmm_1x06_P6mm_D1.7mm_OD3mm_Relief2x -Soldered wire connection with double feed through strain relief, for 6 times 1.5 mm² wires, basic insulation, conductor diameter 1.7mm, outer diameter 3mm, size source Multi-Contact FLEXI-E 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 1.5sqmm double-strain-relief -0 -6 -6 -Connector_Wire -SolderWire-1.5sqmm_1x06_P7.8mm_D1.7mm_OD3.9mm -Soldered wire connection, for 6 times 1.5 mm² wires, reinforced insulation, conductor diameter 1.7mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 1.5sqmm -0 -6 -6 -Connector_Wire -SolderWire-1.5sqmm_1x06_P7.8mm_D1.7mm_OD3.9mm_Relief -Soldered wire connection with feed through strain relief, for 6 times 1.5 mm² wires, reinforced insulation, conductor diameter 1.7mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 1.5sqmm strain-relief -0 -6 -6 -Connector_Wire -SolderWire-1.5sqmm_1x06_P7.8mm_D1.7mm_OD3.9mm_Relief2x -Soldered wire connection with double feed through strain relief, for 6 times 1.5 mm² wires, reinforced insulation, conductor diameter 1.7mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 1.5sqmm double-strain-relief -0 -6 -6 -Connector_Wire -SolderWire-1sqmm_1x01_D1.4mm_OD2.7mm -Soldered wire connection, for a single 1 mm² wire, basic insulation, conductor diameter 1.4mm, outer diameter 2.7mm, size source Multi-Contact FLEXI-E 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 1sqmm -0 -1 -1 -Connector_Wire -SolderWire-1sqmm_1x01_D1.4mm_OD2.7mm_Relief -Soldered wire connection with feed through strain relief, for a single 1 mm² wire, basic insulation, conductor diameter 1.4mm, outer diameter 2.7mm, size source Multi-Contact FLEXI-E 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 1sqmm strain-relief -0 -1 -1 -Connector_Wire -SolderWire-1sqmm_1x01_D1.4mm_OD2.7mm_Relief2x -Soldered wire connection with double feed through strain relief, for a single 1 mm² wire, basic insulation, conductor diameter 1.4mm, outer diameter 2.7mm, size source Multi-Contact FLEXI-E 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 1sqmm double-strain-relief -0 -1 -1 -Connector_Wire -SolderWire-1sqmm_1x01_D1.4mm_OD3.9mm -Soldered wire connection, for a single 1 mm² wire, reinforced insulation, conductor diameter 1.4mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 1sqmm -0 -1 -1 -Connector_Wire -SolderWire-1sqmm_1x01_D1.4mm_OD3.9mm_Relief -Soldered wire connection with feed through strain relief, for a single 1 mm² wire, reinforced insulation, conductor diameter 1.4mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 1sqmm strain-relief -0 -1 -1 -Connector_Wire -SolderWire-1sqmm_1x01_D1.4mm_OD3.9mm_Relief2x -Soldered wire connection with double feed through strain relief, for a single 1 mm² wire, reinforced insulation, conductor diameter 1.4mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 1sqmm double-strain-relief -0 -1 -1 -Connector_Wire -SolderWire-1sqmm_1x02_P5.4mm_D1.4mm_OD2.7mm -Soldered wire connection, for 2 times 1 mm² wires, basic insulation, conductor diameter 1.4mm, outer diameter 2.7mm, size source Multi-Contact FLEXI-E 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 1sqmm -0 -2 -2 -Connector_Wire -SolderWire-1sqmm_1x02_P5.4mm_D1.4mm_OD2.7mm_Relief -Soldered wire connection with feed through strain relief, for 2 times 1 mm² wires, basic insulation, conductor diameter 1.4mm, outer diameter 2.7mm, size source Multi-Contact FLEXI-E 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 1sqmm strain-relief -0 -2 -2 -Connector_Wire -SolderWire-1sqmm_1x02_P5.4mm_D1.4mm_OD2.7mm_Relief2x -Soldered wire connection with double feed through strain relief, for 2 times 1 mm² wires, basic insulation, conductor diameter 1.4mm, outer diameter 2.7mm, size source Multi-Contact FLEXI-E 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 1sqmm double-strain-relief -0 -2 -2 -Connector_Wire -SolderWire-1sqmm_1x02_P7.8mm_D1.4mm_OD3.9mm -Soldered wire connection, for 2 times 1 mm² wires, reinforced insulation, conductor diameter 1.4mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 1sqmm -0 -2 -2 -Connector_Wire -SolderWire-1sqmm_1x02_P7.8mm_D1.4mm_OD3.9mm_Relief -Soldered wire connection with feed through strain relief, for 2 times 1 mm² wires, reinforced insulation, conductor diameter 1.4mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 1sqmm strain-relief -0 -2 -2 -Connector_Wire -SolderWire-1sqmm_1x02_P7.8mm_D1.4mm_OD3.9mm_Relief2x -Soldered wire connection with double feed through strain relief, for 2 times 1 mm² wires, reinforced insulation, conductor diameter 1.4mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 1sqmm double-strain-relief -0 -2 -2 -Connector_Wire -SolderWire-1sqmm_1x03_P5.4mm_D1.4mm_OD2.7mm -Soldered wire connection, for 3 times 1 mm² wires, basic insulation, conductor diameter 1.4mm, outer diameter 2.7mm, size source Multi-Contact FLEXI-E 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 1sqmm -0 -3 -3 -Connector_Wire -SolderWire-1sqmm_1x03_P5.4mm_D1.4mm_OD2.7mm_Relief -Soldered wire connection with feed through strain relief, for 3 times 1 mm² wires, basic insulation, conductor diameter 1.4mm, outer diameter 2.7mm, size source Multi-Contact FLEXI-E 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 1sqmm strain-relief -0 -3 -3 -Connector_Wire -SolderWire-1sqmm_1x03_P5.4mm_D1.4mm_OD2.7mm_Relief2x -Soldered wire connection with double feed through strain relief, for 3 times 1 mm² wires, basic insulation, conductor diameter 1.4mm, outer diameter 2.7mm, size source Multi-Contact FLEXI-E 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 1sqmm double-strain-relief -0 -3 -3 -Connector_Wire -SolderWire-1sqmm_1x03_P7.8mm_D1.4mm_OD3.9mm -Soldered wire connection, for 3 times 1 mm² wires, reinforced insulation, conductor diameter 1.4mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 1sqmm -0 -3 -3 -Connector_Wire -SolderWire-1sqmm_1x03_P7.8mm_D1.4mm_OD3.9mm_Relief -Soldered wire connection with feed through strain relief, for 3 times 1 mm² wires, reinforced insulation, conductor diameter 1.4mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 1sqmm strain-relief -0 -3 -3 -Connector_Wire -SolderWire-1sqmm_1x03_P7.8mm_D1.4mm_OD3.9mm_Relief2x -Soldered wire connection with double feed through strain relief, for 3 times 1 mm² wires, reinforced insulation, conductor diameter 1.4mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 1sqmm double-strain-relief -0 -3 -3 -Connector_Wire -SolderWire-1sqmm_1x04_P5.4mm_D1.4mm_OD2.7mm -Soldered wire connection, for 4 times 1 mm² wires, basic insulation, conductor diameter 1.4mm, outer diameter 2.7mm, size source Multi-Contact FLEXI-E 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 1sqmm -0 -4 -4 -Connector_Wire -SolderWire-1sqmm_1x04_P5.4mm_D1.4mm_OD2.7mm_Relief -Soldered wire connection with feed through strain relief, for 4 times 1 mm² wires, basic insulation, conductor diameter 1.4mm, outer diameter 2.7mm, size source Multi-Contact FLEXI-E 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 1sqmm strain-relief -0 -4 -4 -Connector_Wire -SolderWire-1sqmm_1x04_P5.4mm_D1.4mm_OD2.7mm_Relief2x -Soldered wire connection with double feed through strain relief, for 4 times 1 mm² wires, basic insulation, conductor diameter 1.4mm, outer diameter 2.7mm, size source Multi-Contact FLEXI-E 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 1sqmm double-strain-relief -0 -4 -4 -Connector_Wire -SolderWire-1sqmm_1x04_P7.8mm_D1.4mm_OD3.9mm -Soldered wire connection, for 4 times 1 mm² wires, reinforced insulation, conductor diameter 1.4mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 1sqmm -0 -4 -4 -Connector_Wire -SolderWire-1sqmm_1x04_P7.8mm_D1.4mm_OD3.9mm_Relief -Soldered wire connection with feed through strain relief, for 4 times 1 mm² wires, reinforced insulation, conductor diameter 1.4mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 1sqmm strain-relief -0 -4 -4 -Connector_Wire -SolderWire-1sqmm_1x04_P7.8mm_D1.4mm_OD3.9mm_Relief2x -Soldered wire connection with double feed through strain relief, for 4 times 1 mm² wires, reinforced insulation, conductor diameter 1.4mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 1sqmm double-strain-relief -0 -4 -4 -Connector_Wire -SolderWire-1sqmm_1x05_P5.4mm_D1.4mm_OD2.7mm -Soldered wire connection, for 5 times 1 mm² wires, basic insulation, conductor diameter 1.4mm, outer diameter 2.7mm, size source Multi-Contact FLEXI-E 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 1sqmm -0 -5 -5 -Connector_Wire -SolderWire-1sqmm_1x05_P5.4mm_D1.4mm_OD2.7mm_Relief -Soldered wire connection with feed through strain relief, for 5 times 1 mm² wires, basic insulation, conductor diameter 1.4mm, outer diameter 2.7mm, size source Multi-Contact FLEXI-E 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 1sqmm strain-relief -0 -5 -5 -Connector_Wire -SolderWire-1sqmm_1x05_P5.4mm_D1.4mm_OD2.7mm_Relief2x -Soldered wire connection with double feed through strain relief, for 5 times 1 mm² wires, basic insulation, conductor diameter 1.4mm, outer diameter 2.7mm, size source Multi-Contact FLEXI-E 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 1sqmm double-strain-relief -0 -5 -5 -Connector_Wire -SolderWire-1sqmm_1x05_P7.8mm_D1.4mm_OD3.9mm -Soldered wire connection, for 5 times 1 mm² wires, reinforced insulation, conductor diameter 1.4mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 1sqmm -0 -5 -5 -Connector_Wire -SolderWire-1sqmm_1x05_P7.8mm_D1.4mm_OD3.9mm_Relief -Soldered wire connection with feed through strain relief, for 5 times 1 mm² wires, reinforced insulation, conductor diameter 1.4mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 1sqmm strain-relief -0 -5 -5 -Connector_Wire -SolderWire-1sqmm_1x05_P7.8mm_D1.4mm_OD3.9mm_Relief2x -Soldered wire connection with double feed through strain relief, for 5 times 1 mm² wires, reinforced insulation, conductor diameter 1.4mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 1sqmm double-strain-relief -0 -5 -5 -Connector_Wire -SolderWire-1sqmm_1x06_P5.4mm_D1.4mm_OD2.7mm -Soldered wire connection, for 6 times 1 mm² wires, basic insulation, conductor diameter 1.4mm, outer diameter 2.7mm, size source Multi-Contact FLEXI-E 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 1sqmm -0 -6 -6 -Connector_Wire -SolderWire-1sqmm_1x06_P5.4mm_D1.4mm_OD2.7mm_Relief -Soldered wire connection with feed through strain relief, for 6 times 1 mm² wires, basic insulation, conductor diameter 1.4mm, outer diameter 2.7mm, size source Multi-Contact FLEXI-E 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 1sqmm strain-relief -0 -6 -6 -Connector_Wire -SolderWire-1sqmm_1x06_P5.4mm_D1.4mm_OD2.7mm_Relief2x -Soldered wire connection with double feed through strain relief, for 6 times 1 mm² wires, basic insulation, conductor diameter 1.4mm, outer diameter 2.7mm, size source Multi-Contact FLEXI-E 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 1sqmm double-strain-relief -0 -6 -6 -Connector_Wire -SolderWire-1sqmm_1x06_P7.8mm_D1.4mm_OD3.9mm -Soldered wire connection, for 6 times 1 mm² wires, reinforced insulation, conductor diameter 1.4mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 1sqmm -0 -6 -6 -Connector_Wire -SolderWire-1sqmm_1x06_P7.8mm_D1.4mm_OD3.9mm_Relief -Soldered wire connection with feed through strain relief, for 6 times 1 mm² wires, reinforced insulation, conductor diameter 1.4mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 1sqmm strain-relief -0 -6 -6 -Connector_Wire -SolderWire-1sqmm_1x06_P7.8mm_D1.4mm_OD3.9mm_Relief2x -Soldered wire connection with double feed through strain relief, for 6 times 1 mm² wires, reinforced insulation, conductor diameter 1.4mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 1.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 1sqmm double-strain-relief -0 -6 -6 -Connector_Wire -SolderWire-2.5sqmm_1x01_D2.4mm_OD3.6mm -Soldered wire connection, for a single 2.5 mm² wire, basic insulation, conductor diameter 2.4mm, outer diameter 3.6mm, size source Multi-Contact FLEXI-E 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 2.5sqmm -0 -1 -1 -Connector_Wire -SolderWire-2.5sqmm_1x01_D2.4mm_OD3.6mm_Relief -Soldered wire connection with feed through strain relief, for a single 2.5 mm² wire, basic insulation, conductor diameter 2.4mm, outer diameter 3.6mm, size source Multi-Contact FLEXI-E 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 2.5sqmm strain-relief -0 -1 -1 -Connector_Wire -SolderWire-2.5sqmm_1x01_D2.4mm_OD3.6mm_Relief2x -Soldered wire connection with double feed through strain relief, for a single 2.5 mm² wire, basic insulation, conductor diameter 2.4mm, outer diameter 3.6mm, size source Multi-Contact FLEXI-E 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 2.5sqmm double-strain-relief -0 -1 -1 -Connector_Wire -SolderWire-2.5sqmm_1x01_D2.4mm_OD4.4mm -Soldered wire connection, for a single 2.5 mm² wire, reinforced insulation, conductor diameter 2.4mm, outer diameter 4.4mm, size source Multi-Contact FLEXI-xV 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 2.5sqmm -0 -1 -1 -Connector_Wire -SolderWire-2.5sqmm_1x01_D2.4mm_OD4.4mm_Relief -Soldered wire connection with feed through strain relief, for a single 2.5 mm² wire, reinforced insulation, conductor diameter 2.4mm, outer diameter 4.4mm, size source Multi-Contact FLEXI-xV 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 2.5sqmm strain-relief -0 -1 -1 -Connector_Wire -SolderWire-2.5sqmm_1x01_D2.4mm_OD4.4mm_Relief2x -Soldered wire connection with double feed through strain relief, for a single 2.5 mm² wire, reinforced insulation, conductor diameter 2.4mm, outer diameter 4.4mm, size source Multi-Contact FLEXI-xV 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 2.5sqmm double-strain-relief -0 -1 -1 -Connector_Wire -SolderWire-2.5sqmm_1x02_P7.2mm_D2.4mm_OD3.6mm -Soldered wire connection, for 2 times 2.5 mm² wires, basic insulation, conductor diameter 2.4mm, outer diameter 3.6mm, size source Multi-Contact FLEXI-E 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 2.5sqmm -0 -2 -2 -Connector_Wire -SolderWire-2.5sqmm_1x02_P7.2mm_D2.4mm_OD3.6mm_Relief -Soldered wire connection with feed through strain relief, for 2 times 2.5 mm² wires, basic insulation, conductor diameter 2.4mm, outer diameter 3.6mm, size source Multi-Contact FLEXI-E 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 2.5sqmm strain-relief -0 -2 -2 -Connector_Wire -SolderWire-2.5sqmm_1x02_P7.2mm_D2.4mm_OD3.6mm_Relief2x -Soldered wire connection with double feed through strain relief, for 2 times 2.5 mm² wires, basic insulation, conductor diameter 2.4mm, outer diameter 3.6mm, size source Multi-Contact FLEXI-E 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 2.5sqmm double-strain-relief -0 -2 -2 -Connector_Wire -SolderWire-2.5sqmm_1x02_P8.8mm_D2.4mm_OD4.4mm -Soldered wire connection, for 2 times 2.5 mm² wires, reinforced insulation, conductor diameter 2.4mm, outer diameter 4.4mm, size source Multi-Contact FLEXI-xV 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 2.5sqmm -0 -2 -2 -Connector_Wire -SolderWire-2.5sqmm_1x02_P8.8mm_D2.4mm_OD4.4mm_Relief -Soldered wire connection with feed through strain relief, for 2 times 2.5 mm² wires, reinforced insulation, conductor diameter 2.4mm, outer diameter 4.4mm, size source Multi-Contact FLEXI-xV 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 2.5sqmm strain-relief -0 -2 -2 -Connector_Wire -SolderWire-2.5sqmm_1x02_P8.8mm_D2.4mm_OD4.4mm_Relief2x -Soldered wire connection with double feed through strain relief, for 2 times 2.5 mm² wires, reinforced insulation, conductor diameter 2.4mm, outer diameter 4.4mm, size source Multi-Contact FLEXI-xV 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 2.5sqmm double-strain-relief -0 -2 -2 -Connector_Wire -SolderWire-2.5sqmm_1x03_P7.2mm_D2.4mm_OD3.6mm -Soldered wire connection, for 3 times 2.5 mm² wires, basic insulation, conductor diameter 2.4mm, outer diameter 3.6mm, size source Multi-Contact FLEXI-E 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 2.5sqmm -0 -3 -3 -Connector_Wire -SolderWire-2.5sqmm_1x03_P7.2mm_D2.4mm_OD3.6mm_Relief -Soldered wire connection with feed through strain relief, for 3 times 2.5 mm² wires, basic insulation, conductor diameter 2.4mm, outer diameter 3.6mm, size source Multi-Contact FLEXI-E 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 2.5sqmm strain-relief -0 -3 -3 -Connector_Wire -SolderWire-2.5sqmm_1x03_P7.2mm_D2.4mm_OD3.6mm_Relief2x -Soldered wire connection with double feed through strain relief, for 3 times 2.5 mm² wires, basic insulation, conductor diameter 2.4mm, outer diameter 3.6mm, size source Multi-Contact FLEXI-E 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 2.5sqmm double-strain-relief -0 -3 -3 -Connector_Wire -SolderWire-2.5sqmm_1x03_P8.8mm_D2.4mm_OD4.4mm -Soldered wire connection, for 3 times 2.5 mm² wires, reinforced insulation, conductor diameter 2.4mm, outer diameter 4.4mm, size source Multi-Contact FLEXI-xV 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 2.5sqmm -0 -3 -3 -Connector_Wire -SolderWire-2.5sqmm_1x03_P8.8mm_D2.4mm_OD4.4mm_Relief -Soldered wire connection with feed through strain relief, for 3 times 2.5 mm² wires, reinforced insulation, conductor diameter 2.4mm, outer diameter 4.4mm, size source Multi-Contact FLEXI-xV 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 2.5sqmm strain-relief -0 -3 -3 -Connector_Wire -SolderWire-2.5sqmm_1x03_P8.8mm_D2.4mm_OD4.4mm_Relief2x -Soldered wire connection with double feed through strain relief, for 3 times 2.5 mm² wires, reinforced insulation, conductor diameter 2.4mm, outer diameter 4.4mm, size source Multi-Contact FLEXI-xV 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 2.5sqmm double-strain-relief -0 -3 -3 -Connector_Wire -SolderWire-2.5sqmm_1x04_P7.2mm_D2.4mm_OD3.6mm -Soldered wire connection, for 4 times 2.5 mm² wires, basic insulation, conductor diameter 2.4mm, outer diameter 3.6mm, size source Multi-Contact FLEXI-E 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 2.5sqmm -0 -4 -4 -Connector_Wire -SolderWire-2.5sqmm_1x04_P7.2mm_D2.4mm_OD3.6mm_Relief -Soldered wire connection with feed through strain relief, for 4 times 2.5 mm² wires, basic insulation, conductor diameter 2.4mm, outer diameter 3.6mm, size source Multi-Contact FLEXI-E 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 2.5sqmm strain-relief -0 -4 -4 -Connector_Wire -SolderWire-2.5sqmm_1x04_P7.2mm_D2.4mm_OD3.6mm_Relief2x -Soldered wire connection with double feed through strain relief, for 4 times 2.5 mm² wires, basic insulation, conductor diameter 2.4mm, outer diameter 3.6mm, size source Multi-Contact FLEXI-E 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 2.5sqmm double-strain-relief -0 -4 -4 -Connector_Wire -SolderWire-2.5sqmm_1x04_P8.8mm_D2.4mm_OD4.4mm -Soldered wire connection, for 4 times 2.5 mm² wires, reinforced insulation, conductor diameter 2.4mm, outer diameter 4.4mm, size source Multi-Contact FLEXI-xV 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 2.5sqmm -0 -4 -4 -Connector_Wire -SolderWire-2.5sqmm_1x04_P8.8mm_D2.4mm_OD4.4mm_Relief -Soldered wire connection with feed through strain relief, for 4 times 2.5 mm² wires, reinforced insulation, conductor diameter 2.4mm, outer diameter 4.4mm, size source Multi-Contact FLEXI-xV 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 2.5sqmm strain-relief -0 -4 -4 -Connector_Wire -SolderWire-2.5sqmm_1x04_P8.8mm_D2.4mm_OD4.4mm_Relief2x -Soldered wire connection with double feed through strain relief, for 4 times 2.5 mm² wires, reinforced insulation, conductor diameter 2.4mm, outer diameter 4.4mm, size source Multi-Contact FLEXI-xV 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 2.5sqmm double-strain-relief -0 -4 -4 -Connector_Wire -SolderWire-2.5sqmm_1x05_P7.2mm_D2.4mm_OD3.6mm -Soldered wire connection, for 5 times 2.5 mm² wires, basic insulation, conductor diameter 2.4mm, outer diameter 3.6mm, size source Multi-Contact FLEXI-E 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 2.5sqmm -0 -5 -5 -Connector_Wire -SolderWire-2.5sqmm_1x05_P7.2mm_D2.4mm_OD3.6mm_Relief -Soldered wire connection with feed through strain relief, for 5 times 2.5 mm² wires, basic insulation, conductor diameter 2.4mm, outer diameter 3.6mm, size source Multi-Contact FLEXI-E 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 2.5sqmm strain-relief -0 -5 -5 -Connector_Wire -SolderWire-2.5sqmm_1x05_P7.2mm_D2.4mm_OD3.6mm_Relief2x -Soldered wire connection with double feed through strain relief, for 5 times 2.5 mm² wires, basic insulation, conductor diameter 2.4mm, outer diameter 3.6mm, size source Multi-Contact FLEXI-E 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 2.5sqmm double-strain-relief -0 -5 -5 -Connector_Wire -SolderWire-2.5sqmm_1x05_P8.8mm_D2.4mm_OD4.4mm -Soldered wire connection, for 5 times 2.5 mm² wires, reinforced insulation, conductor diameter 2.4mm, outer diameter 4.4mm, size source Multi-Contact FLEXI-xV 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 2.5sqmm -0 -5 -5 -Connector_Wire -SolderWire-2.5sqmm_1x05_P8.8mm_D2.4mm_OD4.4mm_Relief -Soldered wire connection with feed through strain relief, for 5 times 2.5 mm² wires, reinforced insulation, conductor diameter 2.4mm, outer diameter 4.4mm, size source Multi-Contact FLEXI-xV 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 2.5sqmm strain-relief -0 -5 -5 -Connector_Wire -SolderWire-2.5sqmm_1x05_P8.8mm_D2.4mm_OD4.4mm_Relief2x -Soldered wire connection with double feed through strain relief, for 5 times 2.5 mm² wires, reinforced insulation, conductor diameter 2.4mm, outer diameter 4.4mm, size source Multi-Contact FLEXI-xV 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 2.5sqmm double-strain-relief -0 -5 -5 -Connector_Wire -SolderWire-2.5sqmm_1x06_P7.2mm_D2.4mm_OD3.6mm -Soldered wire connection, for 6 times 2.5 mm² wires, basic insulation, conductor diameter 2.4mm, outer diameter 3.6mm, size source Multi-Contact FLEXI-E 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 2.5sqmm -0 -6 -6 -Connector_Wire -SolderWire-2.5sqmm_1x06_P7.2mm_D2.4mm_OD3.6mm_Relief -Soldered wire connection with feed through strain relief, for 6 times 2.5 mm² wires, basic insulation, conductor diameter 2.4mm, outer diameter 3.6mm, size source Multi-Contact FLEXI-E 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 2.5sqmm strain-relief -0 -6 -6 -Connector_Wire -SolderWire-2.5sqmm_1x06_P7.2mm_D2.4mm_OD3.6mm_Relief2x -Soldered wire connection with double feed through strain relief, for 6 times 2.5 mm² wires, basic insulation, conductor diameter 2.4mm, outer diameter 3.6mm, size source Multi-Contact FLEXI-E 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 2.5sqmm double-strain-relief -0 -6 -6 -Connector_Wire -SolderWire-2.5sqmm_1x06_P8.8mm_D2.4mm_OD4.4mm -Soldered wire connection, for 6 times 2.5 mm² wires, reinforced insulation, conductor diameter 2.4mm, outer diameter 4.4mm, size source Multi-Contact FLEXI-xV 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 2.5sqmm -0 -6 -6 -Connector_Wire -SolderWire-2.5sqmm_1x06_P8.8mm_D2.4mm_OD4.4mm_Relief -Soldered wire connection with feed through strain relief, for 6 times 2.5 mm² wires, reinforced insulation, conductor diameter 2.4mm, outer diameter 4.4mm, size source Multi-Contact FLEXI-xV 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 2.5sqmm strain-relief -0 -6 -6 -Connector_Wire -SolderWire-2.5sqmm_1x06_P8.8mm_D2.4mm_OD4.4mm_Relief2x -Soldered wire connection with double feed through strain relief, for 6 times 2.5 mm² wires, reinforced insulation, conductor diameter 2.4mm, outer diameter 4.4mm, size source Multi-Contact FLEXI-xV 2.5 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 2.5sqmm double-strain-relief -0 -6 -6 -Connector_Wire -SolderWire-2sqmm_1x01_D2mm_OD3.9mm -Soldered wire connection, for a single 2 mm² wire, reinforced insulation, conductor diameter 2mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 2.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 2sqmm -0 -1 -1 -Connector_Wire -SolderWire-2sqmm_1x01_D2mm_OD3.9mm_Relief -Soldered wire connection with feed through strain relief, for a single 2 mm² wire, reinforced insulation, conductor diameter 2mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 2.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 2sqmm strain-relief -0 -1 -1 -Connector_Wire -SolderWire-2sqmm_1x01_D2mm_OD3.9mm_Relief2x -Soldered wire connection with double feed through strain relief, for a single 2 mm² wire, reinforced insulation, conductor diameter 2mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 2.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 2sqmm double-strain-relief -0 -1 -1 -Connector_Wire -SolderWire-2sqmm_1x02_P7.8mm_D2mm_OD3.9mm -Soldered wire connection, for 2 times 2 mm² wires, reinforced insulation, conductor diameter 2mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 2.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 2sqmm -0 -2 -2 -Connector_Wire -SolderWire-2sqmm_1x02_P7.8mm_D2mm_OD3.9mm_Relief -Soldered wire connection with feed through strain relief, for 2 times 2 mm² wires, reinforced insulation, conductor diameter 2mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 2.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 2sqmm strain-relief -0 -2 -2 -Connector_Wire -SolderWire-2sqmm_1x02_P7.8mm_D2mm_OD3.9mm_Relief2x -Soldered wire connection with double feed through strain relief, for 2 times 2 mm² wires, reinforced insulation, conductor diameter 2mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 2.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 2sqmm double-strain-relief -0 -2 -2 -Connector_Wire -SolderWire-2sqmm_1x03_P7.8mm_D2mm_OD3.9mm -Soldered wire connection, for 3 times 2 mm² wires, reinforced insulation, conductor diameter 2mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 2.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 2sqmm -0 -3 -3 -Connector_Wire -SolderWire-2sqmm_1x03_P7.8mm_D2mm_OD3.9mm_Relief -Soldered wire connection with feed through strain relief, for 3 times 2 mm² wires, reinforced insulation, conductor diameter 2mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 2.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 2sqmm strain-relief -0 -3 -3 -Connector_Wire -SolderWire-2sqmm_1x03_P7.8mm_D2mm_OD3.9mm_Relief2x -Soldered wire connection with double feed through strain relief, for 3 times 2 mm² wires, reinforced insulation, conductor diameter 2mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 2.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 2sqmm double-strain-relief -0 -3 -3 -Connector_Wire -SolderWire-2sqmm_1x04_P7.8mm_D2mm_OD3.9mm -Soldered wire connection, for 4 times 2 mm² wires, reinforced insulation, conductor diameter 2mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 2.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 2sqmm -0 -4 -4 -Connector_Wire -SolderWire-2sqmm_1x04_P7.8mm_D2mm_OD3.9mm_Relief -Soldered wire connection with feed through strain relief, for 4 times 2 mm² wires, reinforced insulation, conductor diameter 2mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 2.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 2sqmm strain-relief -0 -4 -4 -Connector_Wire -SolderWire-2sqmm_1x04_P7.8mm_D2mm_OD3.9mm_Relief2x -Soldered wire connection with double feed through strain relief, for 4 times 2 mm² wires, reinforced insulation, conductor diameter 2mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 2.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 2sqmm double-strain-relief -0 -4 -4 -Connector_Wire -SolderWire-2sqmm_1x05_P7.8mm_D2mm_OD3.9mm -Soldered wire connection, for 5 times 2 mm² wires, reinforced insulation, conductor diameter 2mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 2.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 2sqmm -0 -5 -5 -Connector_Wire -SolderWire-2sqmm_1x05_P7.8mm_D2mm_OD3.9mm_Relief -Soldered wire connection with feed through strain relief, for 5 times 2 mm² wires, reinforced insulation, conductor diameter 2mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 2.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 2sqmm strain-relief -0 -5 -5 -Connector_Wire -SolderWire-2sqmm_1x05_P7.8mm_D2mm_OD3.9mm_Relief2x -Soldered wire connection with double feed through strain relief, for 5 times 2 mm² wires, reinforced insulation, conductor diameter 2mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 2.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 2sqmm double-strain-relief -0 -5 -5 -Connector_Wire -SolderWire-2sqmm_1x06_P7.8mm_D2mm_OD3.9mm -Soldered wire connection, for 6 times 2 mm² wires, reinforced insulation, conductor diameter 2mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 2.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 2sqmm -0 -6 -6 -Connector_Wire -SolderWire-2sqmm_1x06_P7.8mm_D2mm_OD3.9mm_Relief -Soldered wire connection with feed through strain relief, for 6 times 2 mm² wires, reinforced insulation, conductor diameter 2mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 2.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 2sqmm strain-relief -0 -6 -6 -Connector_Wire -SolderWire-2sqmm_1x06_P7.8mm_D2mm_OD3.9mm_Relief2x -Soldered wire connection with double feed through strain relief, for 6 times 2 mm² wires, reinforced insulation, conductor diameter 2mm, outer diameter 3.9mm, size source Multi-Contact FLEXI-xV 2.0 (https://ec.staubli.com/AcroFiles/Catalogues/TM_Cab-Main-11014119_(en)_hi.pdf), bend radius 3 times outer diameter, generated with kicad-footprint-generator -connector wire 2sqmm double-strain-relief -0 -6 -6 -Connector_Wire -SolderWirePad_1x01_SMD_1x2mm -Wire Pad, Square, SMD Pad, 1mm x 2mm, -MesurementPoint Square SMDPad 1mmx2mm -0 -1 -1 -Connector_Wire -SolderWirePad_1x01_SMD_5x10mm -Wire Pad, Square, SMD Pad, 5mm x 10mm, -MesurementPoint Square SMDPad 5mmx10mm -0 -1 -1 -Connector_Wuerth -Wuerth_WR-WTB_64800211622_1x02_P1.50mm_Vertical -Wuerth WR-WTB series connector, 64800211622 (https://katalog.we-online.com/em/datasheet/6480xx11622.pdf), generated with kicad-footprint-generator -connector Wuerth WR-WTB vertical -0 -2 -2 -Connector_Wuerth -Wuerth_WR-WTB_64800311622_1x03_P1.50mm_Vertical -Wuerth WR-WTB series connector, 64800311622 (https://katalog.we-online.com/em/datasheet/6480xx11622.pdf), generated with kicad-footprint-generator -connector Wuerth WR-WTB vertical -0 -3 -3 -Connector_Wuerth -Wuerth_WR-WTB_64800411622_1x04_P1.50mm_Vertical -Wuerth WR-WTB series connector, 64800411622 (https://katalog.we-online.com/em/datasheet/6480xx11622.pdf), generated with kicad-footprint-generator -connector Wuerth WR-WTB vertical -0 -4 -4 -Connector_Wuerth -Wuerth_WR-WTB_64800511622_1x05_P1.50mm_Vertical -Wuerth WR-WTB series connector, 64800511622 (https://katalog.we-online.com/em/datasheet/6480xx11622.pdf), generated with kicad-footprint-generator -connector Wuerth WR-WTB vertical -0 -5 -5 -Connector_Wuerth -Wuerth_WR-WTB_64800611622_1x06_P1.50mm_Vertical -Wuerth WR-WTB series connector, 64800611622 (https://katalog.we-online.com/em/datasheet/6480xx11622.pdf), generated with kicad-footprint-generator -connector Wuerth WR-WTB vertical -0 -6 -6 -Connector_Wuerth -Wuerth_WR-WTB_64800711622_1x07_P1.50mm_Vertical -Wuerth WR-WTB series connector, 64800711622 (https://katalog.we-online.com/em/datasheet/6480xx11622.pdf), generated with kicad-footprint-generator -connector Wuerth WR-WTB vertical -0 -7 -7 -Connector_Wuerth -Wuerth_WR-WTB_64800811622_1x08_P1.50mm_Vertical -Wuerth WR-WTB series connector, 64800811622 (https://katalog.we-online.com/em/datasheet/6480xx11622.pdf), generated with kicad-footprint-generator -connector Wuerth WR-WTB vertical -0 -8 -8 -Connector_Wuerth -Wuerth_WR-WTB_64800911622_1x09_P1.50mm_Vertical -Wuerth WR-WTB series connector, 64800911622 (https://katalog.we-online.com/em/datasheet/6480xx11622.pdf), generated with kicad-footprint-generator -connector Wuerth WR-WTB vertical -0 -9 -9 -Connector_Wuerth -Wuerth_WR-WTB_64801011622_1x10_P1.50mm_Vertical -Wuerth WR-WTB series connector, 64801011622 (https://katalog.we-online.com/em/datasheet/6480xx11622.pdf), generated with kicad-footprint-generator -connector Wuerth WR-WTB vertical -0 -10 -10 -Converter_ACDC -Converter_ACDC_CUI_PBO-3-Sxx_THT_Vertical -ACDC-Converter, 3W, CUI PBO-3, THT https://www.cui.com/product/resource/pbo-3.pdf -Converter AC-DC THT Vertical -0 -6 -6 -Converter_ACDC -Converter_ACDC_Hahn_HS-400xx_THT -ACDC-Converter, 3W, Hahn-HS-400xx, THT https://www.schukat.com/schukat/schukat_cms_de.nsf/index/FrameView?OpenDocument&art=HS40009&wg=M7942 -Hahn ACDC-Converter THT -0 -4 -4 -Converter_ACDC -Converter_ACDC_HiLink_HLK-5Mxx -ACDC-Converter, 10W, HiLink, HLK-5Mxx, (http://h.hlktech.com/download/ACDC%E7%94%B5%E6%BA%90%E6%A8%A1%E5%9D%975W%E7%B3%BB%E5%88%97/1/%E6%B5%B7%E5%87%8C%E7%A7%915W%E7%B3%BB%E5%88%97%E7%94%B5%E6%BA%90%E6%A8%A1%E5%9D%97%E8%A7%84%E6%A0%BC%E4%B9%A6V2.8.pdf) -ACDC-Converter 5W THT HiLink board mount module -0 -4 -4 -Converter_ACDC -Converter_ACDC_HiLink_HLK-10Mxx -ACDC-Converter, 10W, HiLink, HLK-10Mxx, THT, http://h.hlktech.com/download/ACDC%E7%94%B5%E6%BA%90%E6%A8%A1%E5%9D%9710W%E7%B3%BB%E5%88%97/1/%E6%B5%B7%E5%87%8C%E7%A7%9110W%E7%B3%BB%E5%88%97%E7%94%B5%E6%BA%90%E6%A8%A1%E5%9D%97%E8%A7%84%E6%A0%BC%E4%B9%A6V1.8.pdf -ACDC-Converter 10W THT HiLink board mount module -0 -4 -4 -Converter_ACDC -Converter_ACDC_HiLink_HLK-PMxx -ACDC-Converter, 3W, HiLink, HLK-PMxx, THT, http://www.hlktech.net/product_detail.php?ProId=54 -ACDC-Converter 3W THT HiLink board mount module -0 -4 -4 -Converter_ACDC -Converter_ACDC_MeanWell_IRM-02-xx_SMD -ACDC-Converter, 3W, Meanwell, IRM-02, SMD, https://www.meanwell.com/Upload/PDF/IRM-02/IRM-02-SPEC.PDF -ACDC-Converter 3W -0 -14 -14 -Converter_ACDC -Converter_ACDC_MeanWell_IRM-02-xx_THT -ACDC-Converter, 2W, Meanwell, IRM-02, THT, https://www.meanwell.co.uk/media/productPDF/IRM-02-spec.pdf -ACDC-Converter 2W THT -0 -4 -4 -Converter_ACDC -Converter_ACDC_MeanWell_IRM-03-xx_SMD -ACDC-Converter, 3W, Meanwell, IRM-03, SMD, http://www.meanwell.com/webapp/product/search.aspx?prod=IRM-03 -ACDC-Converter 3W -0 -14 -14 -Converter_ACDC -Converter_ACDC_MeanWell_IRM-03-xx_THT -ACDC-Converter, 3W, Meanwell, IRM-03, THT, https://www.meanwell.com/Upload/PDF/IRM-03/IRM-03-SPEC.PDF -ACDC-Converter 3W THT -0 -5 -5 -Converter_ACDC -Converter_ACDC_MeanWell_IRM-05-xx_THT -http://www.meanwell.com/webapp/product/search.aspx?prod=IRM-05 -ACDC-Converter 5W Meanwell IRM-05 -0 -4 -4 -Converter_ACDC -Converter_ACDC_MeanWell_IRM-10-xx_THT -http://www.meanwell.com/webapp/product/search.aspx?prod=IRM-10 -ACDC-Converter 10W Meanwell IRM-10 -0 -4 -4 -Converter_ACDC -Converter_ACDC_MeanWell_IRM-20-xx_THT -ACDC-Converter, 20W, Meanwell, IRM-20, THT http://www.meanwell.com/webapp/product/search.aspx?prod=IRM-20 -ACDC-Converter 20W Meanwell IRM-20 -0 -4 -4 -Converter_ACDC -Converter_ACDC_MeanWell_IRM-60-xx_THT -ACDC-Converter, 50-60W, Meanwell, IRM-60, THT https://www.meanwellusa.com/productPdf.aspx?i=687 -switching power supply -0 -4 -4 -Converter_ACDC -Converter_ACDC_Murata_BAC05SxxDC_THT -ACDC-Converter, Murata, 5W, ClassB, https://www.murata.com/products/productdata/8809982558238/KAC-BAC05.pdf -switching power supply tht -0 -5 -5 -Converter_ACDC -Converter_ACDC_RECOM_RAC01-xxSGB_THT -https://www.recom-power.com/pdf/Powerline-AC-DC/RAC01-GB.pdf -recom power ac dc rac01xxgb rac01-05sgb rac01-12sgb -0 -4 -4 -Converter_ACDC -Converter_ACDC_RECOM_RAC04-xxSGx_THT -https://www.recom-power.com/pdf/Powerline-AC-DC/RAC04-GA.pdf -recom power ac dc -0 -5 -5 -Converter_ACDC -Converter_ACDC_RECOM_RAC05-xxSK_THT -https://www.recom-power.com/pdf/Powerline-AC-DC/RAC05-K.pdf -recom power ac dc -0 -5 -5 -Converter_ACDC -Converter_ACDC_Recom_RAC20-xxDK_THT -Recom RAC20-xxDK https://recom-power.com/pdf/Powerline_AC-DC/RAC20-K.pdf#page=6 Rev. 6/2020 -Recom RAC20-xxDK -0 -5 -5 -Converter_ACDC -Converter_ACDC_Recom_RAC20-xxSK_THT -Recom RAC20-xxSK https://recom-power.com/pdf/Powerline_AC-DC/RAC20-K.pdf#page=6 Rev. 6/2020 -Recom RAC20-xxSK -0 -4 -4 -Converter_ACDC -Converter_ACDC_TRACO_TMG-15_THT -ACDC-Converter, TRACO, TMG Series 15 https://www.tracopower.com/products/tmg.pdf -ACDC-Converter TRACO TMG Series 15 -0 -4 -4 -Converter_ACDC -Converter_ACDC_TRACO_TMLM-04_THT -ACDC-Converter, TRACO, TMLM Series 04 https://www.tracopower.com/products/tmlm.pdf -ACDC-Converter TRACO TMLM Series 04 -0 -7 -7 -Converter_ACDC -Converter_ACDC_TRACO_TMLM-05_THT -ACDC-Converter, TRACO TMLM 05,https://www.tracopower.com/products/tmlm.pdf -ACDC-Converter TRACO TMLM 05 -0 -4 -4 -Converter_ACDC -Converter_ACDC_TRACO_TMLM-10-20_THT -ACDC-Converter, TRACO TMLM 10, TRACO TMLM 20, https://www.tracopower.com/products/tmlm.pdf -ACDC-Converter TRACO TMLM 10 and TMLM 20 -0 -4 -4 -Converter_ACDC -Converter_ACDC_Vigortronix_VTX-214-010-xxx_THT -Vigortronix VTX-214-010-xxx serie of ACDC converter, http://www.vigortronix.com/10WattACDCPCBPowerModule.aspx -Vigortronix VTX-214-010-xxx serie of ACDC converter -0 -4 -4 -Converter_ACDC -Converter_ACDC_Vigortronix_VTX-214-015-1xx_THT -Vigortronix VTX-214-010-xxx serie of ACDC converter, http://www.vigortronix.com/10WattACDCPCBPowerModule.aspx -Vigortronix VTX-214-010-xxx serie of ACDC converter -0 -5 -5 -Converter_DCDC -Converter_DCDC_Artesyn_ATA_SMD -DCDC-Converter, Artesyn, ATA Series, 3W Single and Dual Output, 1500VDC Isolation, 24.0x13.7x8.0mm https://www.artesyn.com/power/assets/ata_series_ds_01apr2015_79c25814fd.pdf https://www.artesyn.com/power/assets/trn_dc-dc_ata_3w_series_releas1430412818_techref.pdf -DCDC SMD -0 -7 -7 -Converter_DCDC -Converter_DCDC_Bothhand_CFUDxxxx_THT -DCDC-Converter, BOTHHAND, Type CFxxxx-Serie, (Very dodgy url but was the only at hand), -DCDC-Converter BOTHHAND Type CFxxxx-Serie -0 -10 -10 -Converter_DCDC -Converter_DCDC_Bothhand_CFUSxxxxEH_THT -DCDC-Converter, BOTHHAND, Type CFxxxx-Serie, (Very dodgy url but was the only at hand), -DCDC-Converter BOTHHAND Type CFxxxx-Serie -0 -9 -9 -Converter_DCDC -Converter_DCDC_Bothhand_CFUSxxxx_THT -DCDC-Converter, BOTHHAND, Type CFxxxx-Serie, (Very dodgy url but was the only at hand), -DCDC-Converter BOTHHAND Type CFxxxx-Serie -0 -8 -8 -Converter_DCDC -Converter_DCDC_Cincon_EC5BExx_Dual_THT -DCDC-Converter, CINCON, EC5BExx, 18-36VDC to Dual output, http://www.cincon.com/upload/media/data%20sheets/Data%20Sheet%20(DC)/B%20CASE/SPEC-EC5BE-V24.pdf -DCDC-Converter CINCON EC5BExx 18-36VDC to Dual output -0 -6 -6 -Converter_DCDC -Converter_DCDC_Cincon_EC5BExx_Single_THT -DCDC-Converter, CINCON, EC5BExx, 18-36VDC to dual output, http://www.cincon.com/upload/media/data%20sheets/Data%20Sheet%20(DC)/B%20CASE/SPEC-EC5BE-V24.pdf -DCDC-Converter CINCON EC5BExx 18-36VDC to dual output -0 -4 -4 -Converter_DCDC -Converter_DCDC_Cincon_EC6Cxx_Dual-Triple_THT -DCDC-Converter, CINCON, EC6Cxx, dual or tripple output, http://www.cincon.com/upload/media/data%20sheets/Data%20Sheet%20(DC)/C%20CASE/SPEC-EC6C-V12.pdf -DCDC-Converter CINCON EC6Cxx dual or tripple output -0 -7 -7 -Converter_DCDC -Converter_DCDC_Cincon_EC6Cxx_Single_THT -DCDC-Converter, CINCON, EC6Cxx, single output, http://www.cincon.com/upload/media/data%20sheets/Data%20Sheet%20(DC)/C%20CASE/SPEC-EC6C-V12.pdf -DCDC-Converter CINCON EC6Cxx single output -0 -6 -6 -Converter_DCDC -Converter_DCDC_Cyntec_MUN12AD01-SH -http://www.cyntec.com/upfile/products/download/Cyntec%20MUN12AD01-SH_Datasheet.pdf -Power Module uPOL MUN12AD01 -0 -13 -9 -Converter_DCDC -Converter_DCDC_Cyntec_MUN12AD03-SH -http://www.cyntec.com/upfile/products/download/Cyntec%20MUN12AD03-SH_Datasheet.pdf -Power Module uPOL MUN12AD03 -0 -19 -11 -Converter_DCDC -Converter_DCDC_MeanWell_NID30_THT -Meanwell DCDC non-isolated converter SIP module, http://www.meanwell.com/webapp/product/search.aspx?prod=nid30 -DCDC non-isolated converter -0 -11 -11 -Converter_DCDC -Converter_DCDC_MeanWell_NID60_THT -MeanWell NID60, http://www.meanwell.com/Upload/PDF/NID60/NID60-SPEC.PDF -MeanWell NID60 -0 -11 -11 -Converter_DCDC -Converter_DCDC_Murata_CRE1xxxxxx3C_THT -Isolated 1W single output DC/DC, http://power.murata.com/data/power/ncl/kdc_cre1.pdf -Isolated 1W single output DC/DC -0 -4 -4 -Converter_DCDC -Converter_DCDC_Murata_CRE1xxxxxxDC_THT -Isloated DC-DC, http://power.murata.com/data/power/ncl/kdc_cre1.pdf -Isloated DC-DC -0 -4 -4 -Converter_DCDC -Converter_DCDC_Murata_CRE1xxxxxxSC_THT -http://power.murata.com/data/power/ncl/kdc_cre1.pdf -murata dc-dc transformer -0 -4 -4 -Converter_DCDC -Converter_DCDC_Murata_MEE1SxxxxSC_THT -https://power.murata.com/pub/data/power/ncl/kdc_mee1.pdf -murata dc-dc transformer -0 -4 -4 -Converter_DCDC -Converter_DCDC_Murata_MEE3SxxxxSC_THT -https://power.murata.com/pub/data/power/ncl/kdc_mee3.pdf -murata dc-dc transformer -0 -4 -4 -Converter_DCDC -Converter_DCDC_Murata_MGJ2DxxxxxxSC_THT -Murata MGJ2DxxxxxxSC, 19.5x9.8x12.5mm, 5.2kVDC Isolated, 2W, SIP package style, https://power.murata.com/data/power/ncl/kdc_mgj2.pdf -Murata MGJ2DxxxxxxSC -0 -5 -5 -Converter_DCDC -Converter_DCDC_Murata_MGJ3 -Murata MGJ3, 5.2kVDC Isolated 3W Gate Drive, 15V/5V/5V Configurable, 22.61x23.11x14.19mm, https://power.murata.com/datasheet?/data/power/ncl/kdc_mgj3.pdf -DCDC SMD -0 -7 -7 -Converter_DCDC -Converter_DCDC_Murata_NCS1SxxxxSC_THT -Murata NCS1SxxxxSC https://power.murata.com/data/power/ncl/kdc_ncs1.pdf (Script generated with StandardBox.py) (Murata NCS1SxxxxSC https://power.murata.com/data/power/ncl/kdc_ncs1.pdf) -Murata NCS1SxxxxSC -0 -5 -5 -Converter_DCDC -Converter_DCDC_Murata_NMAxxxxDC_THT -Isolated 1W DCDC-Converter, http://power.murata.com/data/power/ncl/kdc_nma.pdf -Isolated 1W DCDC-Converter -0 -6 -6 -Converter_DCDC -Converter_DCDC_Murata_NMAxxxxSC_THT -Murata NMAxxxxSC footprint based on SIP7, http://power.murata.com/data/power/ncl/kdc_nma.pdf -Murata NMAxxxxSC DCDC-Converter -0 -5 -5 -Converter_DCDC -Converter_DCDC_Murata_NXExSxxxxMC_SMD -Isolated 1W or 2W Single Output SM DC/DC Converters https://www.murata.com/products/productdata/8807031865374/kdc-nxe1.pdf#page=8 https://www.murata.com/products/productdata/8807031898142/kdc-nxe2.pdf#page=9 -Isolated 1W or 2W Single Output SM DC/DC Converters -0 -5 -5 -Converter_DCDC -Converter_DCDC_Murata_OKI-78SR_Horizontal -https://power.murata.com/data/power/oki-78sr.pdf -78sr3.3 78sr5 78sr9 78sr12 78srXX -0 -3 -3 -Converter_DCDC -Converter_DCDC_Murata_OKI-78SR_Vertical -https://power.murata.com/data/power/oki-78sr.pdf -78sr3.3 78sr5 78sr9 78sr12 78srXX -0 -3 -3 -Converter_DCDC -Converter_DCDC_RECOM_R-78B-2.0_THT -DCDC-Converter, RECOM, RECOM_R-78B-2.0, SIP-3, pitch 2.54mm, package size 11.5x8.5x17.5mm^3, https://www.recom-power.com/pdf/Innoline/R-78Bxx-2.0.pdf -dc-dc recom buck sip-3 pitch 2.54mm -0 -3 -3 -Converter_DCDC -Converter_DCDC_RECOM_R-78E-0.5_THT -DCDC-Converter, RECOM, RECOM_R-78E-0.5, SIP-3, pitch 2.54mm, package size 11.6x8.5x10.4mm^3, https://www.recom-power.com/pdf/Innoline/R-78Exx-0.5.pdf -dc-dc recom buck sip-3 pitch 2.54mm -0 -3 -3 -Converter_DCDC -Converter_DCDC_RECOM_R-78HB-0.5L_THT -DCDC-Converter, RECOM, RECOM_R-78HB-0.5L, SIP-3, Horizontally Mounted, pitch 2.54mm, package size 11.5x8.5x17.5mm^3, https://www.recom-power.com/pdf/Innoline/R-78HBxx-0.5_L.pdf -dc-dc recom buck sip-3 pitch 2.54mm -0 -3 -3 -Converter_DCDC -Converter_DCDC_RECOM_R-78HB-0.5_THT -DCDC-Converter, RECOM, RECOM_R-78HB-0.5, SIP-3, pitch 2.54mm, package size 11.5x8.5x17.5mm^3, https://www.recom-power.com/pdf/Innoline/R-78HBxx-0.5_L.pdf -dc-dc recom buck sip-3 pitch 2.54mm -0 -3 -3 -Converter_DCDC -Converter_DCDC_RECOM_R-78S-0.1_THT -DCDC-Converter, RECOM, RECOM_R-78S-0.1, SIP-4, pitch 2.54mm, package size 11.6x8.5x10.4mm^3, https://www.recom-power.com/pdf/Innoline/R-78Sxx-0.1.pdf -dc-dc recom buck sip-4 pitch 2.54mm -0 -4 -4 -Converter_DCDC -Converter_DCDC_RECOM_R5xxxDA_THT -DCDC-Converter, RECOM, RECOM_R5xxxDA, SIP-12, Horizontally Mounted, pitch 2.54mm, package size 32.2x9.1x15mm^3, https://www.recom-power.com/pdf/Innoline/R-5xxxPA_DA.pdf -dc-dc recom buck sip-12 pitch 2.54mm -0 -12 -12 -Converter_DCDC -Converter_DCDC_RECOM_R5xxxPA_THT -DCDC-Converter, RECOM, RECOM_R5xxxPA, SIP-12, pitch 2.54mm, package size 32.2x9.1x15mm^3, https://www.recom-power.com/pdf/Innoline/R-5xxxPA_DA.pdf -dc-dc recom buck sip-12 pitch 2.54mm -0 -12 -12 -Converter_DCDC -Converter_DCDC_RECOM_RCD-24_THT -Constant current LED Driver DC/DC Converter, https://g.recomcdn.com/media/Datasheet/pdf/.fYUQjOlW/.t2a80a771bdbb0ef300f7/Datasheet-93/RCD-24.pdf -Led Driver DC-DC -0 -6 -6 -Converter_DCDC -Converter_DCDC_RECOM_RPA60-xxxxSFW -RPA60-FW 60W Isolated DC to DC Converters -DCDC Regulator Single -0 -6 -6 -Converter_DCDC -Converter_DCDC_RECOM_RPMx.x-x.0 -https://www.recom-power.com/pdf/Innoline/RPM-6.0.pdf -dc-dc recom buck lga-25 pitch 2.29mm -0 -25 -25 -Converter_DCDC -Converter_DCDC_Silvertel_Ag54xx -DCDC-Converter, 30W POE, Silvertel, pitch 2.54mm, package size 62x19.5x14mm, https://silvertel.com/images/datasheets/Ag5400-datasheet-high%20Efficiency-30W-Power-Over-Ethernet-Plus-Module-PoE+PD.pdf -DCDC-Converter Silvertel Ag5405 Ag5412 Ag5424 single output POE -0 -10 -10 -Converter_DCDC -Converter_DCDC_Silvertel_Ag5810 -DCDC-Converter, 60W POE, Silvertel, pitch 2.54mm, package size 69.98x30x15.64mm, https://silvertel.com/images/datasheets/Ag5810-datasheet-IEEE802_3bt-Power-over-Ethernet-4-pair-PD.pdf -DCDC-Converter Silvertel Ag5810 single output POE -0 -163 -13 -Converter_DCDC -Converter_DCDC_TRACO_TDN_5-xxxxWISM_SMD -Traco TDN 5WISM Series, 5W, SMD (https://assets.tracopower.com/20200225170127/TDN5WISM/documents/tdn5wism-datasheet.pdf#page=3) -dcdc traco 5w smd -0 -6 -6 -Converter_DCDC -Converter_DCDC_TRACO_TDN_5-xxxxWI_THT -Traco TDN 5WI Series, 5W (https://www.tracopower.com/sites/default/files/products/datasheets/tdn5wi_datasheet.pdf#page=4) -dcdc traco 5w -0 -6 -6 -Converter_DCDC -Converter_DCDC_TRACO_TEL12-xxxx_THT -Traco 12W, THT (https://www.tracopower.com/sites/default/files/products/datasheets/tel12_datasheet.pdf) -traco dcdc tht 12w -0 -5 -5 -Converter_DCDC -Converter_DCDC_TRACO_TEN10-xxxx_Dual_THT -DCDC-Converter, TRACO, TEN10-xxxx, single output, https://assets.tracopower.com/20171102100522/TEN10/documents/ten10-datasheet.pdf -DCDC-Converter TRACO TEN10-xxxx single output -0 -5 -5 -Converter_DCDC -Converter_DCDC_TRACO_TEN10-xxxx_Single_THT -DCDC-Converter, TRACO, TEN10-xxxx, single output, https://assets.tracopower.com/20171102100522/TEN10/documents/ten10-datasheet.pdf -DCDC-Converter TRACO TEN10-xxxx single output -0 -4 -4 -Converter_DCDC -Converter_DCDC_TRACO_TEN10-xxxx_THT -DCDC-Converter, TRACO, TEN10-xxxx, https://assets.tracopower.com/20171102100522/TEN10/documents/ten10-datasheet.pdf -DCDC-Converter TRACO TEN10-xxxx -0 -4 -4 -Converter_DCDC -Converter_DCDC_TRACO_TEN20-xxxx-N4_THT -DCDC-Converter TRACO TEN20 Generic, https://assets.tracopower.com/20171102100522/TEN20/documents/ten20-datasheet.pdf -DCDC-Converter TRACO TEN20 Generic -0 -5 -5 -Converter_DCDC -Converter_DCDC_TRACO_TEN20-xxxx_THT -DCDC-Converter TRACO TEN20 Generic, https://assets.tracopower.com/20171102100522/TEN20/documents/ten20-datasheet.pdf -DCDC-Converter TRACO TEN20 Generic -0 -6 -6 -Converter_DCDC -Converter_DCDC_TRACO_THD_15-xxxxWIN_THT -Traco THD 15WIN, 15W, THT (https://www.tracopower.com/products/thd15win.pdf#page=3) -traco dcdc tht 15w -0 -9 -9 -Converter_DCDC -Converter_DCDC_TRACO_THN30-xxxx_THT -DCDC-Converter TRACO THN 10 to 30W, Single or dual Output, (https://www.tracopower.com/sites/default/files/products/datasheets/thn30_datasheet.pdf) -DCDC-Converter TRACO THN30 Generic -0 -6 -6 -Converter_DCDC -Converter_DCDC_TRACO_TMR-1-xxxx_Dual_THT -DCDC-Converter, TRACO, TMR 1-xxxx, Dual output, Rev. March 21.2016 -DCDC-Converter TRACO TMR1-xxxx Dual_output -0 -5 -5 -Converter_DCDC -Converter_DCDC_TRACO_TMR-1-xxxx_Single_THT -DCDC-Converter, TRACO, TMR 1-xxxx, Single output, Rev. March 21.2016 -DCDC-Converter TRACO TMR1-xxxx Single_output -0 -4 -4 -Converter_DCDC -Converter_DCDC_TRACO_TMR-1SM_SMD -http://assets.tracopower.com/TMR1SM/documents/tmr1sm-datasheet.pdf -DCDC SMD TRACO TMR-1SM -0 -7 -7 -Converter_DCDC -Converter_DCDC_TRACO_TMR-2xxxxWI_THT -https://www.tracopower.com/products/tmr2wi.pdf -DCDC-Converter TRACO TMRxxxxWI Single/Dual_output -0 -7 -7 -Converter_DCDC -Converter_DCDC_TRACO_TMR-xxxx_THT -DCDC-Converter, TRACO, TMR xxxx, Single/Dual output, http://www.datasheetlib.com/datasheet/135136/tmr-2-2410e_traco-power.html?page=3#datasheet -DCDC-Converter TRACO TMRxxxx Single/Dual_output -0 -7 -7 -Converter_DCDC -Converter_DCDC_TRACO_TSR-1_THT -DCDC-Converter, TRACO, TSR 1-xxxx -DCDC-Converter TRACO TSR-1 -0 -3 -3 -Converter_DCDC -Converter_DCDC_XP_POWER-IA48xxD_THT -XP_POWER IA48xxD, DIP, (https://www.xppower.com/pdfs/SF_IA.pdf), generated with kicad-footprint-generator -XP_POWER IA48xxD DIP DCDC-Converter -0 -6 -6 -Converter_DCDC -Converter_DCDC_XP_POWER-IA48xxS_THT -XP_POWER IA48xxS, SIP, (https://www.xppower.com/pdfs/SF_IA.pdf), generated with kicad-footprint-generator -XP_POWER IA48xxS SIP DCDC-Converter -0 -5 -5 -Converter_DCDC -Converter_DCDC_XP_POWER-IAxxxxD_THT -XP_POWER IAxxxxD, DIP, (https://www.xppower.com/pdfs/SF_IA.pdf), generated with kicad-footprint-generator -XP_POWER IAxxxxD DIP DCDC-Converter -0 -6 -6 -Converter_DCDC -Converter_DCDC_XP_POWER-IAxxxxS_THT -XP_POWER IAxxxxS, SIP, (https://www.xppower.com/pdfs/SF_IA.pdf), generated with kicad-footprint-generator -XP_POWER IAxxxxS SIP DCDC-Converter -0 -5 -5 -Converter_DCDC -Converter_DCDC_XP_POWER-IHxxxxDH_THT -XP_POWER IHxxxxDH, DIP, (https://www.xppower.com/pdfs/SF_IH.pdf), generated with kicad-footprint-generator -XP_POWER IHxxxxDH DIP DCDC-Converter -0 -6 -6 -Converter_DCDC -Converter_DCDC_XP_POWER-IHxxxxD_THT -XP_POWER IHxxxxD, DIP, (https://www.xppower.com/pdfs/SF_IH.pdf), generated with kicad-footprint-generator -XP_POWER IHxxxxD DIP DCDC-Converter -0 -6 -6 -Converter_DCDC -Converter_DCDC_XP_POWER-IHxxxxSH_THT -XP_POWER IHxxxxSH, SIP, (https://www.xppower.com/pdfs/SF_IH.pdf), generated with kicad-footprint-generator -XP_POWER IHxxxxSH SIP DCDC-Converter -0 -5 -5 -Converter_DCDC -Converter_DCDC_XP_POWER-IHxxxxS_THT -XP_POWER IHxxxxS, SIP, (https://www.xppower.com/pdfs/SF_IH.pdf), generated with kicad-footprint-generator -XP_POWER IHxxxxS SIP DCDC-Converter -0 -5 -5 -Converter_DCDC -Converter_DCDC_XP_POWER-ISU02_SMD -DCDC-Converter, XP POWER, ISU02 Series, 2W Single and Dual Output, 1500VDC Isolation, 19.0x17.0x8.7mm https://www.xppower.com/Portals/0/pdfs/SF_ISU02.pdf -DCDC SMD XP POWER ISU02 -0 -7 -7 -Converter_DCDC -Converter_DCDC_XP_POWER-ITQxxxxS-H_THT -XP_POWER ITQxxxxS-H, SIP, (https://www.xppower.com/pdfs/SF_ITQ.pdf), generated with kicad-footprint-generator -XP_POWER ITQxxxxS-H SIP DCDC-Converter -0 -6 -6 -Converter_DCDC -Converter_DCDC_XP_POWER-ITXxxxxSA_THT -XP_POWER ITXxxxxSA, SIP, (https://www.xppower.com/pdfs/SF_ITX.pdf), generated with kicad-footprint-generator -XP_POWER ITXxxxxSA SIP DCDC-Converter -0 -5 -5 -Converter_DCDC -Converter_DCDC_XP_POWER-ITxxxxxS_THT -XP_POWER ITxxxxxS, SIP, (https://www.xppower.com/portals/0/pdfs/SF_ITX.pdf https://www.xppower.com/portals/0/pdfs/SF_ITQ.pdf), generated with kicad-footprint-generator -XP_POWER ITxxxxxS SIP DCDC-Converter -0 -7 -7 -Converter_DCDC -Converter_DCDC_XP_POWER_JTDxxxxxxx_THT -XP Power JTD Series DC-DC Converter -DCDC Isolated -0 -6 -6 -Converter_DCDC -Converter_DCDC_XP_POWER_JTExxxxDxx_THT -DCDC-Converter, XP POWER, Type JTE06 Series, Dual Output -DCDC-Converter XP_POWER JTE06 Dual -0 -8 -8 -Converter_DCDC -Converter_DCDC_muRata_MEJ1DxxxxSC_THT -muRata MEJ1DxxxxSC, 19.5x9.8x12.5mm, 5.2kVDC Isolated, 1W, dual output, SIP package style, https://power.murata.com/data/power/ncl/kdc_mej1.pdf -muRata MEJ1D DCDC-Converter -0 -5 -5 -Converter_DCDC -Converter_DCDC_muRata_MEJ1SxxxxSC_THT -muRata MEJ1SxxxxSC, 19.5x9.8x12.5mm, 5.2kVDC Isolated, 1W, single output, SIP package style, https://power.murata.com/data/power/ncl/kdc_mej1.pdf -muRata MEJ1S DCDC-Converter -0 -4 -4 -Crystal -Crystal_AT310_D3.0mm_L10.0mm_Horizontal -Crystal THT AT310 10.0mm-10.5mm length 3.0mm diameter http://www.cinetech.com.tw/upload/2011/04/20110401165201.pdf -['AT310'] -0 -2 -2 -Crystal -Crystal_AT310_D3.0mm_L10.0mm_Horizontal_1EP_style1 -Crystal THT AT310 10.0mm-10.5mm length 3.0mm diameter http://www.cinetech.com.tw/upload/2011/04/20110401165201.pdf -['AT310'] -0 -3 -3 -Crystal -Crystal_AT310_D3.0mm_L10.0mm_Horizontal_1EP_style2 -Crystal THT AT310 10.0mm-10.5mm length 3.0mm diameter http://www.cinetech.com.tw/upload/2011/04/20110401165201.pdf -['AT310'] -0 -5 -3 -Crystal -Crystal_AT310_D3.0mm_L10.0mm_Vertical -Crystal THT AT310 10.0mm-10.5mm length 3.0mm diameter http://www.cinetech.com.tw/upload/2011/04/20110401165201.pdf -['AT310'] -0 -2 -2 -Crystal -Crystal_C26-LF_D2.1mm_L6.5mm_Horizontal -Crystal THT C26-LF 6.5mm length 2.06mm diameter -['C26-LF'] -0 -2 -2 -Crystal -Crystal_C26-LF_D2.1mm_L6.5mm_Horizontal_1EP_style1 -Crystal THT C26-LF 6.5mm length 2.06mm diameter -['C26-LF'] -0 -3 -3 -Crystal -Crystal_C26-LF_D2.1mm_L6.5mm_Horizontal_1EP_style2 -Crystal THT C26-LF 6.5mm length 2.06mm diameter -['C26-LF'] -0 -5 -3 -Crystal -Crystal_C26-LF_D2.1mm_L6.5mm_Vertical -Crystal THT C26-LF 6.5mm length 2.06mm diameter -['C26-LF'] -0 -2 -2 -Crystal -Crystal_C38-LF_D3.0mm_L8.0mm_Horizontal -Crystal THT C38-LF 8.0mm length 3.0mm diameter -['C38-LF'] -0 -2 -2 -Crystal -Crystal_C38-LF_D3.0mm_L8.0mm_Horizontal_1EP_style1 -Crystal THT C38-LF 8.0mm length 3.0mm diameter -['C38-LF'] -0 -3 -3 -Crystal -Crystal_C38-LF_D3.0mm_L8.0mm_Horizontal_1EP_style2 -Crystal THT C38-LF 8.0mm length 3.0mm diameter -['C38-LF'] -0 -5 -3 -Crystal -Crystal_C38-LF_D3.0mm_L8.0mm_Vertical -Crystal THT C38-LF 8.0mm length 3.0mm diameter -['C38-LF'] -0 -2 -2 -Crystal -Crystal_DS10_D1.0mm_L4.3mm_Horizontal -Crystal THT DS10 4.3mm length 1.0mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf -['DS10'] -0 -2 -2 -Crystal -Crystal_DS10_D1.0mm_L4.3mm_Horizontal_1EP_style1 -Crystal THT DS10 4.3mm length 1.0mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf -['DS10'] -0 -3 -3 -Crystal -Crystal_DS10_D1.0mm_L4.3mm_Horizontal_1EP_style2 -Crystal THT DS10 4.3mm length 1.0mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf -['DS10'] -0 -5 -3 -Crystal -Crystal_DS10_D1.0mm_L4.3mm_Vertical -Crystal THT DS10 4.3mm length 1.0mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf -['DS10'] -0 -2 -2 -Crystal -Crystal_DS15_D1.5mm_L5.0mm_Horizontal -Crystal THT DS15 5.0mm length 1.5mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf -['DS15'] -0 -2 -2 -Crystal -Crystal_DS15_D1.5mm_L5.0mm_Horizontal_1EP_style1 -Crystal THT DS15 5.0mm length 1.5mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf -['DS15'] -0 -3 -3 -Crystal -Crystal_DS15_D1.5mm_L5.0mm_Horizontal_1EP_style2 -Crystal THT DS15 5.0mm length 1.5mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf -['DS15'] -0 -5 -3 -Crystal -Crystal_DS15_D1.5mm_L5.0mm_Vertical -Crystal THT DS15 5.0mm length 1.5mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf -['DS15'] -0 -2 -2 -Crystal -Crystal_DS26_D2.0mm_L6.0mm_Horizontal -Crystal THT DS26 6.0mm length 2.0mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf -['DS26'] -0 -2 -2 -Crystal -Crystal_DS26_D2.0mm_L6.0mm_Horizontal_1EP_style1 -Crystal THT DS26 6.0mm length 2.0mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf -['DS26'] -0 -3 -3 -Crystal -Crystal_DS26_D2.0mm_L6.0mm_Horizontal_1EP_style2 -Crystal THT DS26 6.0mm length 2.0mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf -['DS26'] -0 -5 -3 -Crystal -Crystal_DS26_D2.0mm_L6.0mm_Vertical -Crystal THT DS26 6.0mm length 2.0mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf -['DS26'] -0 -2 -2 -Crystal -Crystal_HC18-U_Horizontal -Crystal THT HC-18/U http://5hertz.com/pdfs/04404_D.pdf -THT crystal -0 -2 -2 -Crystal -Crystal_HC18-U_Horizontal_1EP_style1 -Crystal THT HC-18/U http://5hertz.com/pdfs/04404_D.pdf -THT crystal -0 -3 -3 -Crystal -Crystal_HC18-U_Horizontal_1EP_style2 -Crystal THT HC-18/U http://5hertz.com/pdfs/04404_D.pdf -THT crystal -0 -5 -3 -Crystal -Crystal_HC18-U_Vertical -Crystal THT HC-18/U, http://5hertz.com/pdfs/04404_D.pdf -THT crystalHC-18/U -0 -2 -2 -Crystal -Crystal_HC33-U_Horizontal -Crystal THT HC-33/U http://pdi.bentech-taiwan.com/PDI/GEN20SPEV20HC3320U.pdf -THT crystal -0 -2 -2 -Crystal -Crystal_HC33-U_Horizontal_1EP_style1 -Crystal THT HC-33/U http://pdi.bentech-taiwan.com/PDI/GEN20SPEV20HC3320U.pdf -THT crystal -0 -3 -3 -Crystal -Crystal_HC33-U_Horizontal_1EP_style2 -Crystal THT HC-33/U http://pdi.bentech-taiwan.com/PDI/GEN20SPEV20HC3320U.pdf -THT crystal -0 -5 -3 -Crystal -Crystal_HC33-U_Vertical -Crystal THT HC-33/U, http://pdi.bentech-taiwan.com/PDI/GEN20SPEV20HC3320U.pdf -THT crystalHC-33/U -0 -2 -2 -Crystal -Crystal_HC35-U -Crystal, Quarz, HC35/U, http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/TO71xx.pdf -Crystal Quarz HC35/U -0 -3 -3 -Crystal -Crystal_HC49-4H_Vertical -Crystal THT HC-49-4H http://5hertz.com/pdfs/04404_D.pdf -THT crystalHC-49-4H -0 -2 -2 -Crystal -Crystal_HC49-U-3Pin_Vertical -Crystal THT HC-49/U, 3pin-version, http://www.raltron.com/products/pdfspecs/crystal_hc_49_45_51.pdf -THT crystalHC-49/U -0 -3 -3 -Crystal -Crystal_HC49-U_Horizontal -Crystal THT HC-49/U http://5hertz.com/pdfs/04404_D.pdf -THT crystal -0 -2 -2 -Crystal -Crystal_HC49-U_Horizontal_1EP_style1 -Crystal THT HC-49/U http://5hertz.com/pdfs/04404_D.pdf -THT crystal -0 -3 -3 -Crystal -Crystal_HC49-U_Horizontal_1EP_style2 -Crystal THT HC-49/U http://5hertz.com/pdfs/04404_D.pdf -THT crystal -0 -5 -3 -Crystal -Crystal_HC49-U_Vertical -Crystal THT HC-49/U http://5hertz.com/pdfs/04404_D.pdf -THT crystalHC-49/U -0 -2 -2 -Crystal -Crystal_HC50_Horizontal -Crystal THT HC-50 http://www.crovencrystals.com/croven_pdf/HC-50_Crystal_Holder_Rev_00.pdf -THT crystal -0 -2 -2 -Crystal -Crystal_HC50_Horizontal_1EP_style1 -Crystal THT HC-50 http://www.crovencrystals.com/croven_pdf/HC-50_Crystal_Holder_Rev_00.pdf -THT crystal -0 -3 -3 -Crystal -Crystal_HC50_Horizontal_1EP_style2 -Crystal THT HC-50 http://www.crovencrystals.com/croven_pdf/HC-50_Crystal_Holder_Rev_00.pdf -THT crystal -0 -5 -3 -Crystal -Crystal_HC50_Vertical -Crystal THT HC-50, http://www.crovencrystals.com/croven_pdf/HC-50_Crystal_Holder_Rev_00.pdf -THT crystalHC-50 -0 -2 -2 -Crystal -Crystal_HC51-U_Vertical -Crystal THT HC-51/U, http://www.crovencrystals.com/croven_pdf/HC-51_Crystal_Holder_Rev_00.pdf -THT crystalHC-51/U -0 -2 -2 -Crystal -Crystal_HC51_Horizontal -Crystal THT HC-51 http://www.crovencrystals.com/croven_pdf/HC-51_Crystal_Holder_Rev_00.pdf -THT crystal -0 -2 -2 -Crystal -Crystal_HC51_Horizontal_1EP_style1 -Crystal THT HC-51 http://www.crovencrystals.com/croven_pdf/HC-51_Crystal_Holder_Rev_00.pdf -THT crystal -0 -3 -3 -Crystal -Crystal_HC51_Horizontal_1EP_style2 -Crystal THT HC-51 http://www.crovencrystals.com/croven_pdf/HC-51_Crystal_Holder_Rev_00.pdf -THT crystal -0 -5 -3 -Crystal -Crystal_HC52-6mm_Horizontal -Crystal THT HC-51/6mm http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf -THT crystal -0 -2 -2 -Crystal -Crystal_HC52-6mm_Horizontal_1EP_style1 -Crystal THT HC-51/6mm http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf -THT crystal -0 -3 -3 -Crystal -Crystal_HC52-6mm_Horizontal_1EP_style2 -Crystal THT HC-51/6mm http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf -THT crystal -0 -5 -3 -Crystal -Crystal_HC52-6mm_Vertical -Crystal THT HC-52/6mm, http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf -THT crystalHC-49/U -0 -2 -2 -Crystal -Crystal_HC52-8mm_Horizontal -Crystal THT HC-51/8mm http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf -THT crystal -0 -2 -2 -Crystal -Crystal_HC52-8mm_Horizontal_1EP_style1 -Crystal THT HC-51/8mm http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf -THT crystal -0 -3 -3 -Crystal -Crystal_HC52-8mm_Horizontal_1EP_style2 -Crystal THT HC-51/8mm http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf -THT crystal -0 -5 -3 -Crystal -Crystal_HC52-8mm_Vertical -Crystal THT HC-52/8mm, http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf -THT crystalHC-49/U -0 -2 -2 -Crystal -Crystal_HC52-U-3Pin_Vertical -Crystal THT HC-52/U, http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf -THT crystalHC-52/U -0 -3 -3 -Crystal -Crystal_HC52-U_Horizontal -Crystal THT HC-51/U http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf -THT crystal -0 -2 -2 -Crystal -Crystal_HC52-U_Horizontal_1EP_style1 -Crystal THT HC-51/U http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf -THT crystal -0 -3 -3 -Crystal -Crystal_HC52-U_Horizontal_1EP_style2 -Crystal THT HC-51/U http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf -THT crystal -0 -5 -3 -Crystal -Crystal_HC52-U_Vertical -Crystal THT HC-52/U, http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf -THT crystal HC-52/U -0 -2 -2 -Crystal -Crystal_Round_D1.0mm_Vertical -Crystal THT DS10 1.0mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf -['DS10'] -0 -2 -2 -Crystal -Crystal_Round_D1.5mm_Vertical -Crystal THT DS15 5.0mm length 1.5mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf -['DS15'] -0 -2 -2 -Crystal -Crystal_Round_D2.0mm_Vertical -Crystal THT DS26 6.0mm length 2.0mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf -['DS26'] -0 -2 -2 -Crystal -Crystal_Round_D3.0mm_Vertical -Crystal THT C38-LF 8.0mm length 3.0mm diameter -['C38-LF'] -0 -2 -2 -Crystal -Crystal_SMD_0603-2Pin_6.0x3.5mm -SMD Crystal SERIES SMD0603/2 http://www.petermann-technik.de/fileadmin/petermann/pdf/SMD0603-2.pdf, 6.0x3.5mm^2 package -SMD SMT crystal -0 -2 -2 -Crystal -Crystal_SMD_0603-2Pin_6.0x3.5mm_HandSoldering -SMD Crystal SERIES SMD0603/2 http://www.petermann-technik.de/fileadmin/petermann/pdf/SMD0603-2.pdf, hand-soldering, 6.0x3.5mm^2 package -SMD SMT crystal hand-soldering -0 -2 -2 -Crystal -Crystal_SMD_0603-4Pin_6.0x3.5mm -SMD Crystal SERIES SMD0603/4 http://www.petermann-technik.de/fileadmin/petermann/pdf/SMD0603-4.pdf, 6.0x3.5mm^2 package -SMD SMT crystal -0 -4 -4 -Crystal -Crystal_SMD_0603-4Pin_6.0x3.5mm_HandSoldering -SMD Crystal SERIES SMD0603/4 http://www.petermann-technik.de/fileadmin/petermann/pdf/SMD0603-4.pdf, hand-soldering, 6.0x3.5mm^2 package -SMD SMT crystal hand-soldering -0 -4 -4 -Crystal -Crystal_SMD_2012-2Pin_2.0x1.2mm -SMD Crystal 2012/2 http://txccrystal.com/images/pdf/9ht11.pdf, 2.0x1.2mm^2 package -SMD SMT crystal -0 -2 -2 -Crystal -Crystal_SMD_2012-2Pin_2.0x1.2mm_HandSoldering -SMD Crystal 2012/2 http://txccrystal.com/images/pdf/9ht11.pdf, hand-soldering, 2.0x1.2mm^2 package -SMD SMT crystal hand-soldering -0 -2 -2 -Crystal -Crystal_SMD_2016-4Pin_2.0x1.6mm -SMD Crystal SERIES SMD2016/4 http://www.q-crystal.com/upload/5/2015552223166229.pdf, 2.0x1.6mm^2 package -SMD SMT crystal -0 -4 -4 -Crystal -Crystal_SMD_2520-4Pin_2.5x2.0mm -SMD Crystal SERIES SMD2520/4 http://www.newxtal.com/UploadFiles/Images/2012-11-12-09-29-09-776.pdf, 2.5x2.0mm^2 package -SMD SMT crystal -0 -4 -4 -Crystal -Crystal_SMD_3215-2Pin_3.2x1.5mm -SMD Crystal FC-135 https://support.epson.biz/td/api/doc_check.php?dl=brief_FC-135R_en.pdf -SMD SMT Crystal -0 -2 -2 -Crystal -Crystal_SMD_3225-4Pin_3.2x2.5mm -SMD Crystal SERIES SMD3225/4 http://www.txccrystal.com/images/pdf/7m-accuracy.pdf, 3.2x2.5mm^2 package -SMD SMT crystal -0 -4 -4 -Crystal -Crystal_SMD_3225-4Pin_3.2x2.5mm_HandSoldering -SMD Crystal SERIES SMD3225/4 http://www.txccrystal.com/images/pdf/7m-accuracy.pdf, hand-soldering, 3.2x2.5mm^2 package -SMD SMT crystal hand-soldering -0 -4 -4 -Crystal -Crystal_SMD_5032-2Pin_5.0x3.2mm -SMD Crystal SERIES SMD2520/2 http://www.icbase.com/File/PDF/HKC/HKC00061008.pdf, 5.0x3.2mm^2 package -SMD SMT crystal -0 -2 -2 -Crystal -Crystal_SMD_5032-2Pin_5.0x3.2mm_HandSoldering -SMD Crystal SERIES SMD2520/2 http://www.icbase.com/File/PDF/HKC/HKC00061008.pdf, hand-soldering, 5.0x3.2mm^2 package -SMD SMT crystal hand-soldering -0 -2 -2 -Crystal -Crystal_SMD_5032-4Pin_5.0x3.2mm -SMD Crystal SERIES SMD2520/4 http://www.icbase.com/File/PDF/HKC/HKC00061008.pdf, 5.0x3.2mm^2 package -SMD SMT crystal -0 -4 -4 -Crystal -Crystal_SMD_7050-2Pin_7.0x5.0mm -SMD Crystal SERIES SMD7050/4 https://www.foxonline.com/pdfs/FQ7050.pdf, 7.0x5.0mm^2 package -SMD SMT crystal -0 -2 -2 -Crystal -Crystal_SMD_7050-2Pin_7.0x5.0mm_HandSoldering -SMD Crystal SERIES SMD7050/4 https://www.foxonline.com/pdfs/FQ7050.pdf, hand-soldering, 7.0x5.0mm^2 package -SMD SMT crystal hand-soldering -0 -2 -2 -Crystal -Crystal_SMD_7050-4Pin_7.0x5.0mm -SMD Crystal SERIES SMD7050/4 https://www.foxonline.com/pdfs/FQ7050.pdf, 7.0x5.0mm^2 package -SMD SMT crystal -0 -4 -4 -Crystal -Crystal_SMD_Abracon_ABM3-2Pin_5.0x3.2mm -Abracon Miniature Ceramic Smd Crystal ABM3 http://www.abracon.com/Resonators/abm3.pdf, 5.0x3.2mm^2 package -SMD SMT crystal -0 -2 -2 -Crystal -Crystal_SMD_Abracon_ABM3-2Pin_5.0x3.2mm_HandSoldering -Abracon Miniature Ceramic Smd Crystal ABM3 http://www.abracon.com/Resonators/abm3.pdf, hand-soldering, 5.0x3.2mm^2 package -SMD SMT crystal hand-soldering -0 -2 -2 -Crystal -Crystal_SMD_Abracon_ABM3B-4Pin_5.0x3.2mm -Abracon Miniature Ceramic Smd Crystal ABM3B http://www.abracon.com/Resonators/abm3b.pdf, 5.0x3.2mm^2 package -SMD SMT crystal -0 -4 -4 -Crystal -Crystal_SMD_Abracon_ABM3C-4Pin_5.0x3.2mm -Abracon Miniature Ceramic Smd Crystal ABM3C http://www.abracon.com/Resonators/abm3c.pdf, 5.0x3.2mm^2 package -SMD SMT crystal -0 -4 -4 -Crystal -Crystal_SMD_Abracon_ABM7-2Pin_6.0x3.5mm -SMD Crystal Abracon ABM7, https://abracon.com/Resonators/abm7.pdf -SMD SMT crystal -0 -2 -2 -Crystal -Crystal_SMD_Abracon_ABM8AIG-4Pin_3.2x2.5mm -Abracon Miniature Ceramic Smd Crystal ABM8AIG https://abracon.com/AIGcrystals/ABM8AIG.pdf, 3.2x2.5mm^2 package -SMD SMT crystal -0 -4 -4 -Crystal -Crystal_SMD_Abracon_ABM8G-4Pin_3.2x2.5mm -Abracon Miniature Ceramic Smd Crystal ABM8G http://www.abracon.com/Resonators/ABM8G.pdf, 3.2x2.5mm^2 package -SMD SMT crystal -0 -4 -4 -Crystal -Crystal_SMD_Abracon_ABM10-4Pin_2.5x2.0mm -Abracon Miniature Ceramic Smd Crystal ABM10 http://www.abracon.com/Resonators/ABM10.pdf -SMD SMT crystal Abracon ABM10 -0 -4 -4 -Crystal -Crystal_SMD_Abracon_ABS25-4Pin_8.0x3.8mm -Abracon Miniature Ceramic SMD Crystal ABS25 https://abracon.com/Resonators/abs25.pdf, 8.0x3.8mm^2 package -SMD SMT crystal -0 -4 -4 -Crystal -Crystal_SMD_ECS_CSM3X-2Pin_7.6x4.1mm -http://www.ecsxtal.com/store/pdf/CSM-3X.pdf -Crystal CSM-3X -0 -2 -2 -Crystal -Crystal_SMD_EuroQuartz_EQ161-2Pin_3.2x1.5mm -SMD Crystal EuroQuartz EQ161 series http://cdn-reichelt.de/documents/datenblatt/B400/PG32768C.pdf, 3.2x1.5mm^2 package -SMD SMT crystal -0 -2 -2 -Crystal -Crystal_SMD_EuroQuartz_EQ161-2Pin_3.2x1.5mm_HandSoldering -SMD Crystal EuroQuartz EQ161 series http://cdn-reichelt.de/documents/datenblatt/B400/PG32768C.pdf, hand-soldering, 3.2x1.5mm^2 package -SMD SMT crystal hand-soldering -0 -2 -2 -Crystal -Crystal_SMD_EuroQuartz_MJ-4Pin_5.0x3.2mm -SMD Crystal EuroQuartz MJ series http://cdn-reichelt.de/documents/datenblatt/B400/MJ.pdf, 5.0x3.2mm^2 package -SMD SMT crystal -0 -4 -4 -Crystal -Crystal_SMD_EuroQuartz_MJ-4Pin_5.0x3.2mm_HandSoldering -SMD Crystal EuroQuartz MJ series http://cdn-reichelt.de/documents/datenblatt/B400/MJ.pdf, hand-soldering, 5.0x3.2mm^2 package -SMD SMT crystal hand-soldering -0 -4 -4 -Crystal -Crystal_SMD_EuroQuartz_MQ-4Pin_7.0x5.0mm -SMD Crystal EuroQuartz MQ series http://cdn-reichelt.de/documents/datenblatt/B400/MQ.pdf, 7.0x5.0mm^2 package -SMD SMT crystal -0 -4 -4 -Crystal -Crystal_SMD_EuroQuartz_MQ-4Pin_7.0x5.0mm_HandSoldering -SMD Crystal EuroQuartz MQ series http://cdn-reichelt.de/documents/datenblatt/B400/MQ.pdf, hand-soldering, 7.0x5.0mm^2 package -SMD SMT crystal hand-soldering -0 -4 -4 -Crystal -Crystal_SMD_EuroQuartz_MQ2-2Pin_7.0x5.0mm -SMD Crystal EuroQuartz MQ2 series http://cdn-reichelt.de/documents/datenblatt/B400/MQ.pdf, 7.0x5.0mm^2 package -SMD SMT crystal -0 -2 -2 -Crystal -Crystal_SMD_EuroQuartz_MQ2-2Pin_7.0x5.0mm_HandSoldering -SMD Crystal EuroQuartz MQ2 series http://cdn-reichelt.de/documents/datenblatt/B400/MQ.pdf, hand-soldering, 7.0x5.0mm^2 package -SMD SMT crystal hand-soldering -0 -2 -2 -Crystal -Crystal_SMD_EuroQuartz_MT-4Pin_3.2x2.5mm -SMD Crystal EuroQuartz MT series http://cdn-reichelt.de/documents/datenblatt/B400/MT.pdf, 3.2x2.5mm^2 package -SMD SMT crystal -0 -4 -4 -Crystal -Crystal_SMD_EuroQuartz_MT-4Pin_3.2x2.5mm_HandSoldering -SMD Crystal EuroQuartz MT series http://cdn-reichelt.de/documents/datenblatt/B400/MT.pdf, hand-soldering, 3.2x2.5mm^2 package -SMD SMT crystal hand-soldering -0 -4 -4 -Crystal -Crystal_SMD_EuroQuartz_X22-4Pin_2.5x2.0mm -SMD Crystal EuroQuartz X22 series http://cdn-reichelt.de/documents/datenblatt/B400/DS_X22.pdf, 2.5x2.0mm^2 package -SMD SMT crystal -0 -4 -4 -Crystal -Crystal_SMD_EuroQuartz_X22-4Pin_2.5x2.0mm_HandSoldering -SMD Crystal EuroQuartz X22 series http://cdn-reichelt.de/documents/datenblatt/B400/DS_X22.pdf, hand-soldering, 2.5x2.0mm^2 package -SMD SMT crystal hand-soldering -0 -4 -4 -Crystal -Crystal_SMD_FOX_FE-2Pin_7.5x5.0mm -crystal Ceramic Resin Sealed SMD http://www.foxonline.com/pdfs/fe.pdf, 7.5x5.0mm^2 package -SMD SMT crystal -0 -2 -2 -Crystal -Crystal_SMD_FOX_FE-2Pin_7.5x5.0mm_HandSoldering -crystal Ceramic Resin Sealed SMD http://www.foxonline.com/pdfs/fe.pdf, hand-soldering, 7.5x5.0mm^2 package -SMD SMT crystal hand-soldering -0 -2 -2 -Crystal -Crystal_SMD_FOX_FQ7050-2Pin_7.0x5.0mm -FOX SMD Crystal SERIES SMD7050/4 https://www.foxonline.com/pdfs/FQ7050.pdf, 7.0x5.0mm^2 package -SMD SMT crystal -0 -2 -2 -Crystal -Crystal_SMD_FOX_FQ7050-2Pin_7.0x5.0mm_HandSoldering -FOX SMD Crystal SERIES SMD7050/4 https://www.foxonline.com/pdfs/FQ7050.pdf, hand-soldering, 7.0x5.0mm^2 package -SMD SMT crystal hand-soldering -0 -2 -2 -Crystal -Crystal_SMD_FOX_FQ7050-4Pin_7.0x5.0mm -FOX SMD Crystal SERIES SMD7050/4 https://www.foxonline.com/pdfs/FQ7050.pdf, 7.0x5.0mm^2 package -SMD SMT crystal -0 -4 -4 -Crystal -Crystal_SMD_FrontierElectronics_FM206 -SMD Watch Crystal FrontierElectronics FM206 6.0mm length 1.9mm diameter http://www.chinafronter.com/wp-content/uploads/2013/12/FM206.pdf -['FM206'] -0 -3 -3 -Crystal -Crystal_SMD_G8-2Pin_3.2x1.5mm -SMD Crystal G8, 3.2x1.5mm^2 package -SMD SMT crystal -0 -2 -2 -Crystal -Crystal_SMD_G8-2Pin_3.2x1.5mm_HandSoldering -SMD Crystal G8, hand-soldering, 3.2x1.5mm^2 package -SMD SMT crystal hand-soldering -0 -2 -2 -Crystal -Crystal_SMD_HC49-SD -SMD Crystal HC-49-SD http://cdn-reichelt.de/documents/datenblatt/B400/xxx-HC49-SMD.pdf, 11.4x4.7mm^2 package -SMD SMT crystal -0 -2 -2 -Crystal -Crystal_SMD_HC49-SD_HandSoldering -SMD Crystal HC-49-SD http://cdn-reichelt.de/documents/datenblatt/B400/xxx-HC49-SMD.pdf, hand-soldering, 11.4x4.7mm^2 package -SMD SMT crystal hand-soldering -0 -2 -2 -Crystal -Crystal_SMD_MicroCrystal_CC1V-T1A-2Pin_8.0x3.7mm -SMD Crystal MicroCrystal CC1V-T1A series https://www.microcrystal.com/fileadmin/Media/Products/32kHz/Datasheet/CC1V-T1A.pdf, 8.0x3.7mm^2 package -SMD SMT crystal -0 -2 -2 -Crystal -Crystal_SMD_MicroCrystal_CC1V-T1A-2Pin_8.0x3.7mm_HandSoldering -SMD Crystal MicroCrystal CC1V-T1A series https://www.microcrystal.com/fileadmin/Media/Products/32kHz/Datasheet/CC1V-T1A.pdf, hand-soldering, 8.0x3.7mm^2 package -SMD SMT crystal hand-soldering -0 -2 -2 -Crystal -Crystal_SMD_MicroCrystal_CC4V-T1A-2Pin_5.0x1.9mm -SMD Crystal MicroCrystal CC4V-T1A series http://cdn-reichelt.de/documents/datenblatt/B400/CC4V-T1A.pdf, 5.0x1.9mm^2 package -SMD SMT crystal -0 -2 -2 -Crystal -Crystal_SMD_MicroCrystal_CC4V-T1A-2Pin_5.0x1.9mm_HandSoldering -SMD Crystal MicroCrystal CC4V-T1A series http://cdn-reichelt.de/documents/datenblatt/B400/CC4V-T1A.pdf, hand-soldering, 5.0x1.9mm^2 package -SMD SMT crystal hand-soldering -0 -2 -2 -Crystal -Crystal_SMD_MicroCrystal_CC5V-T1A-2Pin_4.1x1.5mm -SMD Crystal MicroCrystal CC5V-T1A series http://cdn-reichelt.de/documents/datenblatt/B400/CC5V-T1A.pdf, 4.1x1.5mm^2 package -SMD SMT crystal -0 -2 -2 -Crystal -Crystal_SMD_MicroCrystal_CC5V-T1A-2Pin_4.1x1.5mm_HandSoldering -SMD Crystal MicroCrystal CC5V-T1A series http://cdn-reichelt.de/documents/datenblatt/B400/CC5V-T1A.pdf, hand-soldering, 4.1x1.5mm^2 package -SMD SMT crystal hand-soldering -0 -2 -2 -Crystal -Crystal_SMD_MicroCrystal_CC7V-T1A-2Pin_3.2x1.5mm -SMD Crystal MicroCrystal CC7V-T1A/CM7V-T1A series https://www.microcrystal.com/fileadmin/Media/Products/32kHz/Datasheet/CC7V-T1A.pdf, 3.2x1.5mm^2 package -SMD SMT crystal -0 -2 -2 -Crystal -Crystal_SMD_MicroCrystal_CC7V-T1A-2Pin_3.2x1.5mm_HandSoldering -SMD Crystal MicroCrystal CC7V-T1A/CM7V-T1A series http://www.microcrystal.com/images/_Product-Documentation/01_TF_ceramic_Packages/01_Datasheet/CC1V-T1A.pdf, hand-soldering, 3.2x1.5mm^2 package -SMD SMT crystal hand-soldering -0 -2 -2 -Crystal -Crystal_SMD_MicroCrystal_CC8V-T1A-2Pin_2.0x1.2mm -SMD Crystal MicroCrystal CC8V-T1A/CM8V-T1A series https://www.microcrystal.com/fileadmin/Media/Products/32kHz/Datasheet/CC8V-T1A.pdf, 2.0x1.2mm^2 package -SMD SMT crystal -0 -2 -2 -Crystal -Crystal_SMD_MicroCrystal_CC8V-T1A-2Pin_2.0x1.2mm_HandSoldering -SMD Crystal MicroCrystal CC8V-T1A/CM8V-T1A series http://www.microcrystal.com/images/_Product-Documentation/01_TF_ceramic_Packages/01_Datasheet/CC8V-T1A.pdf, hand-soldering, 2.0x1.2mm^2 package -SMD SMT crystal hand-soldering -0 -2 -2 -Crystal -Crystal_SMD_MicroCrystal_CM9V-T1A-2Pin_1.6x1.0mm -SMD Crystal MicroCrystal CM9V-T1A series https://www.microcrystal.com/fileadmin/Media/Products/32kHz/Datasheet/CM9V-T1A.pdf, 1.6x1.0mm^2 package -SMD SMT crystal -0 -2 -2 -Crystal -Crystal_SMD_MicroCrystal_CM9V-T1A-2Pin_1.6x1.0mm_HandSoldering -SMD Crystal MicroCrystal CM9V-T1A series http://www.microcrystal.com/images/_Product-Documentation/01_TF_ceramic_Packages/01_Datasheet/CM9V-T1A.pdf, hand-soldering, 1.6x1.0mm^2 package -SMD SMT crystal hand-soldering -0 -2 -2 -Crystal -Crystal_SMD_MicroCrystal_MS1V-T1K -SMD Watch Crystal MicroCrystal MS1V-T1K 6.1mm length 2.0mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/MS1V-T1K.pdf -['MS1V-T1K'] -0 -3 -3 -Crystal -Crystal_SMD_MicroCrystal_MS3V-T1R -SMD Watch Crystal MicroCrystal MS3V-T1R 5.2mm length 1.4mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/MS3V-T1R.pdf -['MS3V-T1R'] -0 -3 -3 -Crystal -Crystal_SMD_Qantek_QC5CB-2Pin_5x3.2mm -SMD Crystal Qantek QC5CB, https://www.qantek.com/tl_files/products/crystals/QC5CB.pdf -SMD SMT crystal -0 -2 -2 -Crystal -Crystal_SMD_SeikoEpson_FA128-4Pin_2.0x1.6mm -crystal Epson Toyocom FA-128 (https://support.epson.biz/td/api/doc_check.php?dl=brief_FA-128&lang=en), 2x1.6mm^2 package -SMD SMT crystal -0 -4 -4 -Crystal -Crystal_SMD_SeikoEpson_FA238-4Pin_3.2x2.5mm -crystal Epson Toyocom FA-238 https://support.epson.biz/td/api/doc_check.php?dl=brief_fa-238v_en.pdf, 3.2x2.5mm^2 package -SMD SMT crystal -0 -4 -4 -Crystal -Crystal_SMD_SeikoEpson_FA238-4Pin_3.2x2.5mm_HandSoldering -crystal Epson Toyocom FA-238 series https://support.epson.biz/td/api/doc_check.php?dl=brief_fa-238v_en.pdf, hand-soldering, 3.2x2.5mm^2 package -SMD SMT crystal hand-soldering -0 -4 -4 -Crystal -Crystal_SMD_SeikoEpson_FA238V-4Pin_3.2x2.5mm -crystal Epson Toyocom FA-238 series https://support.epson.biz/td/api/doc_check.php?dl=brief_fa-238v_en.pdf, 3.2x2.5mm^2 package -SMD SMT crystal -0 -4 -4 -Crystal -Crystal_SMD_SeikoEpson_FA238V-4Pin_3.2x2.5mm_HandSoldering -crystal Epson Toyocom FA-238 series http://www.mouser.com/ds/2/137/1721499-465440.pdf, hand-soldering, 3.2x2.5mm^2 package -SMD SMT crystal hand-soldering -0 -4 -4 -Crystal -Crystal_SMD_SeikoEpson_MA406-4Pin_11.7x4.0mm -SMD Crystal Seiko Epson MC-506 http://media.digikey.com/pdf/Data%20Sheets/Epson%20PDFs/MA-505,506.pdf, 11.7x4.0mm^2 package -SMD SMT crystal -0 -4 -4 -Crystal -Crystal_SMD_SeikoEpson_MA406-4Pin_11.7x4.0mm_HandSoldering -SMD Crystal Seiko Epson MC-506 http://media.digikey.com/pdf/Data%20Sheets/Epson%20PDFs/MA-505,506.pdf, hand-soldering, 11.7x4.0mm^2 package -SMD SMT crystal hand-soldering -0 -4 -4 -Crystal -Crystal_SMD_SeikoEpson_MA505-2Pin_12.7x5.1mm -SMD Crystal Seiko Epson MC-505 http://media.digikey.com/pdf/Data%20Sheets/Epson%20PDFs/MA-505,506.pdf, 12.7x5.1mm^2 package -SMD SMT crystal -0 -2 -2 -Crystal -Crystal_SMD_SeikoEpson_MA505-2Pin_12.7x5.1mm_HandSoldering -SMD Crystal Seiko Epson MC-505 http://media.digikey.com/pdf/Data%20Sheets/Epson%20PDFs/MA-505,506.pdf, hand-soldering, 12.7x5.1mm^2 package -SMD SMT crystal hand-soldering -0 -2 -2 -Crystal -Crystal_SMD_SeikoEpson_MA506-4Pin_12.7x5.1mm -SMD Crystal Seiko Epson MC-506 http://media.digikey.com/pdf/Data%20Sheets/Epson%20PDFs/MA-505,506.pdf, 12.7x5.1mm^2 package -SMD SMT crystal -0 -4 -4 -Crystal -Crystal_SMD_SeikoEpson_MA506-4Pin_12.7x5.1mm_HandSoldering -SMD Crystal Seiko Epson MC-506 http://media.digikey.com/pdf/Data%20Sheets/Epson%20PDFs/MA-505,506.pdf, hand-soldering, 12.7x5.1mm^2 package -SMD SMT crystal hand-soldering -0 -4 -4 -Crystal -Crystal_SMD_SeikoEpson_MC146-4Pin_6.7x1.5mm -SMD Crystal Seiko Epson MC-146 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-156_en.pdf, 6.7x1.5mm^2 package -SMD SMT crystal -0 -4 -4 -Crystal -Crystal_SMD_SeikoEpson_MC146-4Pin_6.7x1.5mm_HandSoldering -SMD Crystal Seiko Epson MC-146 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-156_en.pdf, hand-soldering, 6.7x1.5mm^2 package -SMD SMT crystal hand-soldering -0 -4 -4 -Crystal -Crystal_SMD_SeikoEpson_MC156-4Pin_7.1x2.5mm -SMD Crystal Seiko Epson MC-156 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-156_en.pdf, 7.1x2.5mm^2 package -SMD SMT crystal -0 -4 -4 -Crystal -Crystal_SMD_SeikoEpson_MC156-4Pin_7.1x2.5mm_HandSoldering -SMD Crystal Seiko Epson MC-156 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-156_en.pdf, hand-soldering, 7.1x2.5mm^2 package -SMD SMT crystal hand-soldering -0 -4 -4 -Crystal -Crystal_SMD_SeikoEpson_MC306-4Pin_8.0x3.2mm -SMD Crystal Seiko Epson MC-306 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-306_en.pdf, 8.0x3.2mm^2 package -SMD SMT crystal -0 -4 -4 -Crystal -Crystal_SMD_SeikoEpson_MC306-4Pin_8.0x3.2mm_HandSoldering -SMD Crystal Seiko Epson MC-306 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-306_en.pdf, hand-soldering, 8.0x3.2mm^2 package -SMD SMT crystal hand-soldering -0 -4 -4 -Crystal -Crystal_SMD_SeikoEpson_MC405-2Pin_9.6x4.1mm -SMD Crystal Seiko Epson MC-405 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-306_en.pdf, 9.6x4.1mm^2 package -SMD SMT crystal -0 -2 -2 -Crystal -Crystal_SMD_SeikoEpson_MC405-2Pin_9.6x4.1mm_HandSoldering -SMD Crystal Seiko Epson MC-405 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-306_en.pdf, hand-soldering, 9.6x4.1mm^2 package -SMD SMT crystal hand-soldering -0 -2 -2 -Crystal -Crystal_SMD_SeikoEpson_MC406-4Pin_9.6x4.1mm -SMD Crystal Seiko Epson MC-406 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-306_en.pdf, 9.6x4.1mm^2 package -SMD SMT crystal -0 -4 -4 -Crystal -Crystal_SMD_SeikoEpson_MC406-4Pin_9.6x4.1mm_HandSoldering -SMD Crystal Seiko Epson MC-406 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-306_en.pdf, hand-soldering, 9.6x4.1mm^2 package -SMD SMT crystal hand-soldering -0 -4 -4 -Crystal -Crystal_SMD_SeikoEpson_TSX3225-4Pin_3.2x2.5mm -crystal Epson Toyocom TSX-3225 series https://support.epson.biz/td/api/doc_check.php?dl=brief_fa-238v_en.pdf, 3.2x2.5mm^2 package -SMD SMT crystal -0 -4 -4 -Crystal -Crystal_SMD_SeikoEpson_TSX3225-4Pin_3.2x2.5mm_HandSoldering -crystal Epson Toyocom TSX-3225 series https://support.epson.biz/td/api/doc_check.php?dl=brief_fa-238v_en.pdf, hand-soldering, 3.2x2.5mm^2 package -SMD SMT crystal hand-soldering -0 -4 -4 -Crystal -Crystal_SMD_TXC_7A-2Pin_5x3.2mm -SMD Crystal TXC 7A http://txccrystal.com/images/pdf/7a.pdf -SMD SMT crystal -0 -2 -2 -Crystal -Crystal_SMD_TXC_7M-4Pin_3.2x2.5mm -SMD Crystal TXC 7M http://www.txccrystal.com/images/pdf/7m-accuracy.pdf, 3.2x2.5mm^2 package -SMD SMT crystal -0 -4 -4 -Crystal -Crystal_SMD_TXC_7M-4Pin_3.2x2.5mm_HandSoldering -SMD Crystal TXC 7M http://www.txccrystal.com/images/pdf/7m-accuracy.pdf, hand-soldering, 3.2x2.5mm^2 package -SMD SMT crystal hand-soldering -0 -4 -4 -Crystal -Crystal_SMD_TXC_9HT11-2Pin_2.0x1.2mm -SMD Crystal TXC 9HT11 http://txccrystal.com/images/pdf/9ht11.pdf, 2.0x1.2mm^2 package -SMD SMT crystal -0 -2 -2 -Crystal -Crystal_SMD_TXC_9HT11-2Pin_2.0x1.2mm_HandSoldering -SMD Crystal TXC 9HT11 http://txccrystal.com/images/pdf/9ht11.pdf, hand-soldering, 2.0x1.2mm^2 package -SMD SMT crystal hand-soldering -0 -2 -2 -Crystal -Crystal_SMD_TXC_AX_8045-2Pin_8.0x4.5mm -http://www.txccrystal.com/images/pdf/ax-automotive.pdf -SMD SMT crystal -0 -2 -2 -Crystal -Resonator-2Pin_W6.0mm_H3.0mm -Ceramic Resomator/Filter 6.0x3.0mm^2, length*width=6.0x3.0mm^2 package, package length=6.0mm, package width=3.0mm, 2 pins -THT ceramic resonator filter -0 -2 -2 -Crystal -Resonator-2Pin_W7.0mm_H2.5mm -Ceramic Resomator/Filter 7.0x2.5mm^2, length*width=7.0x2.5mm^2 package, package length=7.0mm, package width=2.5mm, 2 pins -THT ceramic resonator filter -0 -2 -2 -Crystal -Resonator-2Pin_W8.0mm_H3.5mm -Ceramic Resomator/Filter 8.0x3.5mm^2, length*width=8.0x3.5mm^2 package, package length=8.0mm, package width=3.5mm, 2 pins -THT ceramic resonator filter -0 -2 -2 -Crystal -Resonator-2Pin_W10.0mm_H5.0mm -Ceramic Resomator/Filter 10.0x5.0 RedFrequency MG/MT/MX series, http://www.red-frequency.com/download/datenblatt/redfrequency-datenblatt-ir-zta.pdf, length*width=10.0x5.0mm^2 package, package length=10.0mm, package width=5.0mm, 2 pins -THT ceramic resonator filter -0 -2 -2 -Crystal -Resonator-3Pin_W6.0mm_H3.0mm -Ceramic Resomator/Filter 6.0x3.0mm^2, length*width=6.0x3.0mm^2 package, package length=6.0mm, package width=3.0mm, 3 pins -THT ceramic resonator filter -0 -3 -3 -Crystal -Resonator-3Pin_W7.0mm_H2.5mm -Ceramic Resomator/Filter 7.0x2.5mm^2, length*width=7.0x2.5mm^2 package, package length=7.0mm, package width=2.5mm, 3 pins -THT ceramic resonator filter -0 -3 -3 -Crystal -Resonator-3Pin_W8.0mm_H3.5mm -Ceramic Resomator/Filter 8.0x3.5mm^2, length*width=8.0x3.5mm^2 package, package length=8.0mm, package width=3.5mm, 3 pins -THT ceramic resonator filter -0 -3 -3 -Crystal -Resonator-3Pin_W10.0mm_H5.0mm -Ceramic Resomator/Filter 10.0x5.0mm^2 RedFrequency MG/MT/MX series, http://www.red-frequency.com/download/datenblatt/redfrequency-datenblatt-ir-zta.pdf, length*width=10.0x5.0mm^2 package, package length=10.0mm, package width=5.0mm, 3 pins -THT ceramic resonator filter -0 -3 -3 -Crystal -Resonator_Murata_CSTLSxxxG-3Pin_W8.0mm_H3.0mm -Ceramic Resomator/Filter Murata CSTLSxxxG, http://www.murata.com/~/media/webrenewal/support/library/catalog/products/timingdevice/ceralock/p17e.ashx, length*width=8.0x3.0mm^2 package, package length=8.0mm, package width=3.0mm, 3 pins -THT ceramic resonator filter CSTLSxxxG -0 -3 -3 -Crystal -Resonator_Murata_CSTLSxxxX-3Pin_W5.5mm_H3.0mm -Ceramic Resomator/Filter Murata CSTLSxxxX, http://www.murata.com/~/media/webrenewal/support/library/catalog/products/timingdevice/ceralock/p17e.ashx, length*width=5.5x3.0mm^2 package, package length=5.5mm, package width=3.0mm, 3 pins -THT ceramic resonator filter CSTLSxxxX -0 -3 -3 -Crystal -Resonator_Murata_DSN6-3Pin_W7.0mm_H2.5mm -Ceramic Resomator/Filter Murata DSN6, http://cdn-reichelt.de/documents/datenblatt/B400/DSN6NC51H.pdf, length*width=7.0x2.5mm^2 package, package length=7.0mm, package width=2.5mm, 3 pins -THT ceramic resonator filter DSN6 -0 -3 -3 -Crystal -Resonator_Murata_DSS6-3Pin_W7.0mm_H2.5mm -Ceramic Resomator/Filter Murata DSS6, http://cdn-reichelt.de/documents/datenblatt/B400/DSN6NC51H.pdf, length*width=7.0x2.5mm^2 package, package length=7.0mm, package width=2.5mm, 3 pins -THT ceramic resonator filter DSS6 -0 -3 -3 -Crystal -Resonator_SMD-3Pin_7.2x3.0mm -SMD Resomator/Filter 7.2x3.0mm, Murata CSTCC8M00G53-R0; 8MHz resonator, SMD, Farnell (Element 14) #1170435, http://www.farnell.com/datasheets/19296.pdf?_ga=1.247244932.122297557.1475167906, 7.2x3.0mm^2 package -SMD SMT ceramic resonator filter filter -0 -3 -3 -Crystal -Resonator_SMD-3Pin_7.2x3.0mm_HandSoldering -SMD Resomator/Filter 7.2x3.0mm, Murata CSTCC8M00G53-R0; 8MHz resonator, SMD, Farnell (Element 14) #1170435, http://www.farnell.com/datasheets/19296.pdf?_ga=1.247244932.122297557.1475167906, hand-soldering, 7.2x3.0mm^2 package -SMD SMT ceramic resonator filter filter hand-soldering -0 -3 -3 -Crystal -Resonator_SMD_Murata_CDSCB-2Pin_4.5x2.0mm -SMD Resomator/Filter Murata CDSCB, http://cdn-reichelt.de/documents/datenblatt/B400/SFECV-107.pdf, 4.5x2.0mm^2 package -SMD SMT ceramic resonator filter filter -0 -2 -2 -Crystal -Resonator_SMD_Murata_CDSCB-2Pin_4.5x2.0mm_HandSoldering -SMD Resomator/Filter Murata CDSCB, http://cdn-reichelt.de/documents/datenblatt/B400/SFECV-107.pdf, hand-soldering, 4.5x2.0mm^2 package -SMD SMT ceramic resonator filter filter hand-soldering -0 -2 -2 -Crystal -Resonator_SMD_Murata_CSTxExxV-3Pin_3.0x1.1mm -SMD Resomator/Filter Murata CSTCE, https://www.murata.com/en-eu/products/productdata/8801162264606/SPEC-CSTNE16M0VH3C000R0.pdf -SMD SMT ceramic resonator filter -0 -3 -3 -Crystal -Resonator_SMD_Murata_CSTxExxV-3Pin_3.0x1.1mm_HandSoldering -SMD Resomator/Filter Murata CSTCE, https://www.murata.com/en-eu/products/productdata/8801162264606/SPEC-CSTNE16M0VH3C000R0.pdf -SMD SMT ceramic resonator filter -0 -3 -3 -Crystal -Resonator_SMD_Murata_SFECV-3Pin_6.9x2.9mm -SMD Resomator/Filter Murata SFECV, http://cdn-reichelt.de/documents/datenblatt/B400/SFECV-107.pdf, 6.9x2.9mm^2 package -SMD SMT ceramic resonator filter filter -0 -3 -3 -Crystal -Resonator_SMD_Murata_SFECV-3Pin_6.9x2.9mm_HandSoldering -SMD Resomator/Filter Murata SFECV, http://cdn-reichelt.de/documents/datenblatt/B400/SFECV-107.pdf, hand-soldering, 6.9x2.9mm^2 package -SMD SMT ceramic resonator filter filter hand-soldering -0 -3 -3 -Crystal -Resonator_SMD_Murata_SFSKA-3Pin_7.9x3.8mm -SMD Resomator/Filter Murata SFSKA, http://cdn-reichelt.de/documents/datenblatt/B400/SFECV-107.pdf, 7.9x3.8mm^2 package -SMD SMT ceramic resonator filter filter -0 -3 -3 -Crystal -Resonator_SMD_Murata_SFSKA-3Pin_7.9x3.8mm_HandSoldering -SMD Resomator/Filter Murata SFSKA, http://cdn-reichelt.de/documents/datenblatt/B400/SFECV-107.pdf, hand-soldering, 7.9x3.8mm^2 package -SMD SMT ceramic resonator filter filter hand-soldering -0 -3 -3 -Crystal -Resonator_SMD_Murata_TPSKA-3Pin_7.9x3.8mm -SMD Resomator/Filter Murata TPSKA, http://cdn-reichelt.de/documents/datenblatt/B400/SFECV-107.pdf, 7.9x3.8mm^2 package -SMD SMT ceramic resonator filter filter -0 -3 -3 -Crystal -Resonator_SMD_Murata_TPSKA-3Pin_7.9x3.8mm_HandSoldering -SMD Resomator/Filter Murata TPSKA, http://cdn-reichelt.de/documents/datenblatt/B400/SFECV-107.pdf, hand-soldering, 7.9x3.8mm^2 package -SMD SMT ceramic resonator filter filter hand-soldering -0 -3 -3 -Diode_SMD -D_0201_0603Metric -Diode SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), generated with kicad-footprint-generator -diode -0 -4 -2 -Diode_SMD -D_0201_0603Metric_Pad0.64x0.40mm_HandSolder -Diode SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), generated with kicad-footprint-generator -diode handsolder -0 -4 -2 -Diode_SMD -D_0402_1005Metric -Diode SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator -diode -0 -2 -2 -Diode_SMD -D_0402_1005Metric_Pad0.77x0.64mm_HandSolder -Diode SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator -diode handsolder -0 -2 -2 -Diode_SMD -D_0603_1608Metric -Diode SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator -diode -0 -2 -2 -Diode_SMD -D_0603_1608Metric_Pad1.05x0.95mm_HandSolder -Diode SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator -diode handsolder -0 -2 -2 -Diode_SMD -D_0805_2012Metric -Diode SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator -diode -0 -2 -2 -Diode_SMD -D_0805_2012Metric_Pad1.15x1.40mm_HandSolder -Diode SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator -diode handsolder -0 -2 -2 -Diode_SMD -D_01005_0402Metric -Diode SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), generated with kicad-footprint-generator -diode -0 -4 -2 -Diode_SMD -D_01005_0402Metric_Pad0.57x0.30mm_HandSolder -Diode SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), generated with kicad-footprint-generator -diode handsolder -0 -4 -2 -Diode_SMD -D_1206_3216Metric -Diode SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator -diode -0 -2 -2 -Diode_SMD -D_1206_3216Metric_Pad1.42x1.75mm_HandSolder -Diode SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator -diode handsolder -0 -2 -2 -Diode_SMD -D_1210_3225Metric -Diode SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator -diode -0 -2 -2 -Diode_SMD -D_1210_3225Metric_Pad1.42x2.65mm_HandSolder -Diode SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator -diode handsolder -0 -2 -2 -Diode_SMD -D_1812_4532Metric -Diode SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), generated with kicad-footprint-generator -diode -0 -2 -2 -Diode_SMD -D_1812_4532Metric_Pad1.30x3.40mm_HandSolder -Diode SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), generated with kicad-footprint-generator -diode handsolder -0 -2 -2 -Diode_SMD -D_2010_5025Metric -Diode SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator -diode -0 -2 -2 -Diode_SMD -D_2010_5025Metric_Pad1.52x2.65mm_HandSolder -Diode SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator -diode handsolder -0 -2 -2 -Diode_SMD -D_2114_3652Metric -Diode SMD 2114 (3652 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://datasheets.avx.com/schottky.pdf), generated with kicad-footprint-generator -diode -0 -2 -2 -Diode_SMD -D_2114_3652Metric_Pad1.85x3.75mm_HandSolder -Diode SMD 2114 (3652 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://datasheets.avx.com/schottky.pdf), generated with kicad-footprint-generator -diode handsolder -0 -2 -2 -Diode_SMD -D_2512_6332Metric -Diode SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator -diode -0 -2 -2 -Diode_SMD -D_2512_6332Metric_Pad1.52x3.35mm_HandSolder -Diode SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator -diode handsolder -0 -2 -2 -Diode_SMD -D_3220_8050Metric -Diode SMD 3220 (8050 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://datasheets.avx.com/schottky.pdf), generated with kicad-footprint-generator -diode -0 -2 -2 -Diode_SMD -D_3220_8050Metric_Pad2.65x5.15mm_HandSolder -Diode SMD 3220 (8050 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://datasheets.avx.com/schottky.pdf), generated with kicad-footprint-generator -diode handsolder -0 -2 -2 -Diode_SMD -D_MELF -Diode, MELF,, -Diode MELF -0 -2 -2 -Diode_SMD -D_MELF-RM10_Universal_Handsoldering -Diode, Universal, MELF, RM10, Handsoldering, SMD, Thruhole, -Diode Universal MELF RM10 Handsoldering SMD Thruhole -0 -2 -2 -Diode_SMD -D_MELF_Handsoldering -Diode MELF Handsoldering -Diode MELF Handsoldering -0 -2 -2 -Diode_SMD -D_MicroMELF -Diode, MicroMELF, Reflow Soldering, http://www.vishay.com/docs/85597/bzm55.pdf -MicroMELF Diode -0 -2 -2 -Diode_SMD -D_MicroMELF_Handsoldering -Diode, MicroMELF, Hand Soldering, http://www.vishay.com/docs/85597/bzm55.pdf -MicroMELF Diode -0 -2 -2 -Diode_SMD -D_MicroSMP_AK -Diode MicroSMP (DO-219AD), large-pad cathode, https://www.vishay.com/docs/89020/mss1p3l.pdf -Diode MicroSMP (DO-219AD) -0 -2 -2 -Diode_SMD -D_MicroSMP_KA -Diode MicroSMP (DO-219AD), large-pad anode, https://www.vishay.com/docs/89457/msmp6a.pdf -Diode MicroSMP (DO-219AD) -0 -2 -2 -Diode_SMD -D_MiniMELF -Diode Mini-MELF (SOD-80) -Diode Mini-MELF (SOD-80) -0 -2 -2 -Diode_SMD -D_MiniMELF_Handsoldering -Diode Mini-MELF (SOD-80) Handsoldering -Diode Mini-MELF (SOD-80) Handsoldering -0 -2 -2 -Diode_SMD -D_PowerDI-5 -PowerDI,Diode,Vishay,https://www.diodes.com/assets/Package-Files/PowerDI5.pdf -PowerDI diode vishay -0 -3 -2 -Diode_SMD -D_PowerDI-123 -http://www.diodes.com/_files/datasheets/ds30497.pdf -PowerDI diode vishay -0 -2 -2 -Diode_SMD -D_Powermite2_AK -Microsemi Powermite 2 SMD power package (https://www.microsemi.com/packaging-information/partpackage/details?pid=5341) -PowerMite2 -0 -2 -2 -Diode_SMD -D_Powermite2_KA -Microsemi Powermite 2 SMD power package (https://www.microsemi.com/packaging-information/partpackage/details?pid=5341) -PowerMite2 -0 -2 -2 -Diode_SMD -D_Powermite3 -Microsemi Powermite 3 SMD power package (https://www.microsemi.com/packaging-information/partpackage/details?pid=5340) -PowerMite3 -0 -3 -3 -Diode_SMD -D_Powermite_AK -Microsemi Powermite SMD power package (https://www.microsemi.com/packaging-information/partpackage/details?pid=5339, https://www.onsemi.com/pub/Collateral/457-04.PDF) -Powermite -0 -2 -2 -Diode_SMD -D_Powermite_KA -Microsemi Powermite SMD power package (https://www.microsemi.com/packaging-information/partpackage/details?pid=5339, https://www.onsemi.com/pub/Collateral/457-04.PDF) -Powermite -0 -2 -2 -Diode_SMD -D_QFN_3.3x3.3mm_P0.65mm -QFN, diode, 3.3x3.3x1mm (https://www.wolfspeed.com/media/downloads/846/C3D1P7060Q.pdf) -diode qfn 3.3 -0 -3 -2 -Diode_SMD -D_SC-80 -JEITA SC-80 -SC-80 -0 -2 -2 -Diode_SMD -D_SC-80_HandSoldering -JEITA SC-80 -SC-80 -0 -2 -2 -Diode_SMD -D_SMA -Diode SMA (DO-214AC) -Diode SMA (DO-214AC) -0 -2 -2 -Diode_SMD -D_SMA-SMB_Universal_Handsoldering -Diode, Universal, SMA (DO-214AC) or SMB (DO-214AA), Handsoldering, -Diode Universal SMA (DO-214AC) SMB (DO-214AA) Handsoldering -0 -2 -2 -Diode_SMD -D_SMA_Handsoldering -Diode SMA (DO-214AC) Handsoldering -Diode SMA (DO-214AC) Handsoldering -0 -2 -2 -Diode_SMD -D_SMB -Diode SMB (DO-214AA) -Diode SMB (DO-214AA) -0 -2 -2 -Diode_SMD -D_SMB-SMC_Universal_Handsoldering -Diode, Universal, SMB(DO-214AA) or SMC (DO-214AB), Handsoldering, -Diode Universal SMB(DO-214AA) SMC (DO-214AB) Handsoldering -0 -2 -2 -Diode_SMD -D_SMB_Handsoldering -Diode SMB (DO-214AA) Handsoldering -Diode SMB (DO-214AA) Handsoldering -0 -2 -2 -Diode_SMD -D_SMB_Modified -Diode SMB (DO-214AA) Modified (http://www.littelfuse.com/~/media/electronics/datasheets/sidactors/littelfuse_sidactor_battrax_positive_negative_modified_do_214_datasheet.pdf.pdf) -Diode SMB (DO-214AA) -0 -3 -3 -Diode_SMD -D_SMC -Diode SMC (DO-214AB) -Diode SMC (DO-214AB) -0 -2 -2 -Diode_SMD -D_SMC-RM10_Universal_Handsoldering -Diode, Universal, SMC (DO-214AB), RM10, Handsoldering, SMD, Thruhole -Diode Universal SMC (DO-214AB) RM10 Handsoldering SMD Thruhole -0 -2 -2 -Diode_SMD -D_SMC_Handsoldering -Diode SMC (DO-214AB) Handsoldering -Diode SMC (DO-214AB) Handsoldering -0 -2 -2 -Diode_SMD -D_SMF -Diode SMF (DO-219AB), http://www.vishay.com/docs/95572/smf_do-219ab.pdf -Diode SMF (DO-214AB) -0 -2 -2 -Diode_SMD -D_SOD-110 -SOD-110 -SOD-110 -0 -2 -2 -Diode_SMD -D_SOD-123 -SOD-123 -SOD-123 -0 -2 -2 -Diode_SMD -D_SOD-123F -D_SOD-123F -D_SOD-123F -0 -2 -2 -Diode_SMD -D_SOD-128 -D_SOD-128 (CFP5 SlimSMAW), https://assets.nexperia.com/documents/outline-drawing/SOD128.pdf -D_SOD-128 -0 -2 -2 -Diode_SMD -D_SOD-323 -SOD-323 -SOD-323 -0 -2 -2 -Diode_SMD -D_SOD-323F -SOD-323F http://www.nxp.com/documents/outline_drawing/SOD323F.pdf -SOD-323F -0 -2 -2 -Diode_SMD -D_SOD-323_HandSoldering -SOD-323 -SOD-323 -0 -2 -2 -Diode_SMD -D_SOD-523 -http://www.diodes.com/datasheets/ap02001.pdf p.144 -Diode SOD523 -0 -2 -2 -Diode_SMD -D_SOD-923 -https://www.onsemi.com/pub/Collateral/ESD9B-D.PDF#page=4 -Diode SOD923 -0 -2 -2 -Diode_SMD -D_TUMD2 -ROHM - TUMD2 -TUMD2 -0 -2 -2 -Diode_SMD -Diode_Bridge_Bourns_CD-DF4xxS -8.1x10.5mm, 4A, single phase bridge rectifier, https://www.bourns.com/docs/Product-Datasheets/CD-DF4xxSL.pdf -Surface Mount Bridge Rectifier Diode -0 -4 -4 -Diode_SMD -Diode_Bridge_Diotec_ABS -SMD diode bridge ABS (Diotec), see https://diotec.com/tl_files/diotec/files/pdf/datasheets/abs2.pdf -ABS MBLS -0 -4 -4 -Diode_SMD -Diode_Bridge_Diotec_MicroDil_3.0x3.0x1.8mm -SMD package Diotec Diotec MicroDil, body 3.0x3.0x1.8mm (e.g. diode bridge), see https://diotec.com/tl_files/diotec/files/pdf/datasheets/mys40.pdf -Diotec MicroDil diode bridge -0 -4 -4 -Diode_SMD -Diode_Bridge_Diotec_SO-DIL-Slim -SMD diode bridge Diotec SO-DIL Slim, see https://diotec.com/tl_files/diotec/files/pdf/datasheets/b40fs.pdf -DFS SO-DIL Slim -0 -4 -4 -Diode_SMD -Diode_Bridge_OnSemi_SDIP-4L -SMD diode bridge OnSemi SDIP-4L, see https://www.onsemi.com/pdf/datasheet/df10s1-d.pdf -OnSemi Diode Bridge SDIP-4L -0 -4 -4 -Diode_SMD -Diode_Bridge_Vishay_DFS -SMD diode bridge DFS, see http://www.vishay.com/docs/88854/padlayouts.pdf -DFS -0 -4 -4 -Diode_SMD -Diode_Bridge_Vishay_DFSFlat -SMD diode bridge Low Profile DFS "Flat", see http://www.vishay.com/docs/88874/dfl15005.pdf -DFS -0 -4 -4 -Diode_SMD -Diode_Bridge_Vishay_MBLS -SMD diode bridge MBLS, see http://www.vishay.com/docs/89959/mbl104s.pdf http://www.vishay.com/docs/88854/padlayouts.pdf -DFS -0 -4 -4 -Diode_SMD -Infineon_SG-WLL-2-3_0.58x0.28_P0.36mm -Infineon SG-WLL-2-3, 0.58x0.28x0.15mm, https://www.infineon.com/dgdl/Infineon-SG-WLL-2-3_SPO_PDF-Package-v02_00-EN.pdf?fileId=5546d46271bf4f9201723159ce71239d -Infineon WLL -0 -4 -2 -Diode_SMD -Littelfuse_PolyZen-LS -http://m.littelfuse.com/~/media/electronics/datasheets/polyzen_devices/littelfuse_polyzen_standard_polyzen_catalog_datasheet.pdf.pdf -Diode Polymer Protected Zener Diode Littelfuse LS -0 -3 -3 -Diode_SMD -Nexperia_CFP3_SOD-123W -Nexperia CFP3 (SOD-123W), https://assets.nexperia.com/documents/outline-drawing/SOD123W.pdf -CFP3 SOD-123W -0 -2 -2 -Diode_SMD -Nexperia_DSN0603-2_0.6x0.3mm_P0.4mm -SOD962-2 silicon, leadless ultra small package; 2 terminals; 0.4 mm pitch; 0.6 mm x 0.3 mm x 0.3 mm body (https://assets.nexperia.com/documents/package-information/SOD962-2.pdf https://www.nexperia.com/packages/SOD962-2.html) -TVS protection diodes -0 -2 -2 -Diode_SMD -Vishay_SMPA -Diode SMPA (DO-221BC), https://www.vishay.com/docs/87659/v8pa10.pdf -Diode SMPA (DO-221BC) -0 -2 -2 -Diode_THT -D_5KPW_P7.62mm_Vertical_AnodeUp -Diode, 5KPW series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=9*8mm^2, , http://www.diodes.com/_files/packages/8686949.gif -Diode 5KPW series Axial Vertical pin pitch 7.62mm length 9mm diameter 8mm -0 -2 -2 -Diode_THT -D_5KPW_P7.62mm_Vertical_KathodeUp -Diode, 5KPW series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=9*8mm^2, , http://www.diodes.com/_files/packages/8686949.gif -Diode 5KPW series Axial Vertical pin pitch 7.62mm length 9mm diameter 8mm -0 -2 -2 -Diode_THT -D_5KPW_P12.70mm_Horizontal -Diode, 5KPW series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9*8mm^2, , http://www.diodes.com/_files/packages/8686949.gif -Diode 5KPW series Axial Horizontal pin pitch 12.7mm length 9mm diameter 8mm -0 -2 -2 -Diode_THT -D_5KP_P7.62mm_Vertical_AnodeUp -Diode, 5KP series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif -Diode 5KP series Axial Vertical pin pitch 7.62mm length 7.62mm diameter 9.53mm -0 -2 -2 -Diode_THT -D_5KP_P7.62mm_Vertical_KathodeUp -Diode, 5KP series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif -Diode 5KP series Axial Vertical pin pitch 7.62mm length 7.62mm diameter 9.53mm -0 -2 -2 -Diode_THT -D_5KP_P10.16mm_Horizontal -Diode, 5KP series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif -Diode 5KP series Axial Horizontal pin pitch 10.16mm length 7.62mm diameter 9.53mm -0 -2 -2 -Diode_THT -D_5KP_P12.70mm_Horizontal -Diode, 5KP series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif -Diode 5KP series Axial Horizontal pin pitch 12.7mm length 7.62mm diameter 9.53mm -0 -2 -2 -Diode_THT -D_5W_P5.08mm_Vertical_AnodeUp -Diode, 5W series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif -Diode 5W series Axial Vertical pin pitch 5.08mm length 8.9mm diameter 3.7mm -0 -2 -2 -Diode_THT -D_5W_P5.08mm_Vertical_KathodeUp -Diode, 5W series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif -Diode 5W series Axial Vertical pin pitch 5.08mm length 8.9mm diameter 3.7mm -0 -2 -2 -Diode_THT -D_5W_P10.16mm_Horizontal -Diode, 5W series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif -Diode 5W series Axial Horizontal pin pitch 10.16mm length 8.9mm diameter 3.7mm -0 -2 -2 -Diode_THT -D_5W_P12.70mm_Horizontal -Diode, 5W series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif -Diode 5W series Axial Horizontal pin pitch 12.7mm length 8.9mm diameter 3.7mm -0 -2 -2 -Diode_THT -D_A-405_P2.54mm_Vertical_AnodeUp -Diode, A-405 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf -Diode A-405 series Axial Vertical pin pitch 2.54mm length 5.2mm diameter 2.7mm -0 -2 -2 -Diode_THT -D_A-405_P2.54mm_Vertical_KathodeUp -Diode, A-405 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf -Diode A-405 series Axial Vertical pin pitch 2.54mm length 5.2mm diameter 2.7mm -0 -2 -2 -Diode_THT -D_A-405_P5.08mm_Vertical_AnodeUp -Diode, A-405 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf -Diode A-405 series Axial Vertical pin pitch 5.08mm length 5.2mm diameter 2.7mm -0 -2 -2 -Diode_THT -D_A-405_P5.08mm_Vertical_KathodeUp -Diode, A-405 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf -Diode A-405 series Axial Vertical pin pitch 5.08mm length 5.2mm diameter 2.7mm -0 -2 -2 -Diode_THT -D_A-405_P7.62mm_Horizontal -Diode, A-405 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf -Diode A-405 series Axial Horizontal pin pitch 7.62mm length 5.2mm diameter 2.7mm -0 -2 -2 -Diode_THT -D_A-405_P10.16mm_Horizontal -Diode, A-405 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf -Diode A-405 series Axial Horizontal pin pitch 10.16mm length 5.2mm diameter 2.7mm -0 -2 -2 -Diode_THT -D_A-405_P12.70mm_Horizontal -Diode, A-405 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf -Diode A-405 series Axial Horizontal pin pitch 12.7mm length 5.2mm diameter 2.7mm -0 -2 -2 -Diode_THT -D_DO-15_P2.54mm_Vertical_AnodeUp -Diode, DO-15 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf -Diode DO-15 series Axial Vertical pin pitch 2.54mm length 7.6mm diameter 3.6mm -0 -2 -2 -Diode_THT -D_DO-15_P2.54mm_Vertical_KathodeUp -Diode, DO-15 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf -Diode DO-15 series Axial Vertical pin pitch 2.54mm length 7.6mm diameter 3.6mm -0 -2 -2 -Diode_THT -D_DO-15_P3.81mm_Vertical_AnodeUp -Diode, DO-15 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf -Diode DO-15 series Axial Vertical pin pitch 3.81mm length 7.6mm diameter 3.6mm -0 -2 -2 -Diode_THT -D_DO-15_P3.81mm_Vertical_KathodeUp -Diode, DO-15 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf -Diode DO-15 series Axial Vertical pin pitch 3.81mm length 7.6mm diameter 3.6mm -0 -2 -2 -Diode_THT -D_DO-15_P5.08mm_Vertical_AnodeUp -Diode, DO-15 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf -Diode DO-15 series Axial Vertical pin pitch 5.08mm length 7.6mm diameter 3.6mm -0 -2 -2 -Diode_THT -D_DO-15_P5.08mm_Vertical_KathodeUp -Diode, DO-15 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf -Diode DO-15 series Axial Vertical pin pitch 5.08mm length 7.6mm diameter 3.6mm -0 -2 -2 -Diode_THT -D_DO-15_P10.16mm_Horizontal -Diode, DO-15 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf -Diode DO-15 series Axial Horizontal pin pitch 10.16mm length 7.6mm diameter 3.6mm -0 -2 -2 -Diode_THT -D_DO-15_P12.70mm_Horizontal -Diode, DO-15 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf -Diode DO-15 series Axial Horizontal pin pitch 12.7mm length 7.6mm diameter 3.6mm -0 -2 -2 -Diode_THT -D_DO-15_P15.24mm_Horizontal -Diode, DO-15 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf -Diode DO-15 series Axial Horizontal pin pitch 15.24mm length 7.6mm diameter 3.6mm -0 -2 -2 -Diode_THT -D_DO-27_P5.08mm_Vertical_AnodeUp -Diode, DO-27 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg -Diode DO-27 series Axial Vertical pin pitch 5.08mm length 9.52mm diameter 5.33mm -0 -2 -2 -Diode_THT -D_DO-27_P5.08mm_Vertical_KathodeUp -Diode, DO-27 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg -Diode DO-27 series Axial Vertical pin pitch 5.08mm length 9.52mm diameter 5.33mm -0 -2 -2 -Diode_THT -D_DO-27_P12.70mm_Horizontal -Diode, DO-27 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg -Diode DO-27 series Axial Horizontal pin pitch 12.7mm length 9.52mm diameter 5.33mm -0 -2 -2 -Diode_THT -D_DO-27_P15.24mm_Horizontal -Diode, DO-27 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg -Diode DO-27 series Axial Horizontal pin pitch 15.24mm length 9.52mm diameter 5.33mm -0 -2 -2 -Diode_THT -D_DO-34_SOD68_P2.54mm_Vertical_AnodeUp -Diode, DO-34_SOD68 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf -Diode DO-34_SOD68 series Axial Vertical pin pitch 2.54mm length 3.04mm diameter 1.6mm -0 -2 -2 -Diode_THT -D_DO-34_SOD68_P2.54mm_Vertical_KathodeUp -Diode, DO-34_SOD68 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf -Diode DO-34_SOD68 series Axial Vertical pin pitch 2.54mm length 3.04mm diameter 1.6mm -0 -2 -2 -Diode_THT -D_DO-34_SOD68_P5.08mm_Vertical_AnodeUp -Diode, DO-34_SOD68 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf -Diode DO-34_SOD68 series Axial Vertical pin pitch 5.08mm length 3.04mm diameter 1.6mm -0 -2 -2 -Diode_THT -D_DO-34_SOD68_P5.08mm_Vertical_KathodeUp -Diode, DO-34_SOD68 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf -Diode DO-34_SOD68 series Axial Vertical pin pitch 5.08mm length 3.04mm diameter 1.6mm -0 -2 -2 -Diode_THT -D_DO-34_SOD68_P7.62mm_Horizontal -Diode, DO-34_SOD68 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf -Diode DO-34_SOD68 series Axial Horizontal pin pitch 7.62mm length 3.04mm diameter 1.6mm -0 -2 -2 -Diode_THT -D_DO-34_SOD68_P10.16mm_Horizontal -Diode, DO-34_SOD68 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf -Diode DO-34_SOD68 series Axial Horizontal pin pitch 10.16mm length 3.04mm diameter 1.6mm -0 -2 -2 -Diode_THT -D_DO-34_SOD68_P12.70mm_Horizontal -Diode, DO-34_SOD68 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf -Diode DO-34_SOD68 series Axial Horizontal pin pitch 12.7mm length 3.04mm diameter 1.6mm -0 -2 -2 -Diode_THT -D_DO-35_SOD27_P2.54mm_Vertical_AnodeUp -Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf -Diode DO-35_SOD27 series Axial Vertical pin pitch 2.54mm length 4mm diameter 2mm -0 -2 -2 -Diode_THT -D_DO-35_SOD27_P2.54mm_Vertical_KathodeUp -Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf -Diode DO-35_SOD27 series Axial Vertical pin pitch 2.54mm length 4mm diameter 2mm -0 -2 -2 -Diode_THT -D_DO-35_SOD27_P3.81mm_Vertical_AnodeUp -Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf -Diode DO-35_SOD27 series Axial Vertical pin pitch 3.81mm length 4mm diameter 2mm -0 -2 -2 -Diode_THT -D_DO-35_SOD27_P3.81mm_Vertical_KathodeUp -Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf -Diode DO-35_SOD27 series Axial Vertical pin pitch 3.81mm length 4mm diameter 2mm -0 -2 -2 -Diode_THT -D_DO-35_SOD27_P5.08mm_Vertical_AnodeUp -Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf -Diode DO-35_SOD27 series Axial Vertical pin pitch 5.08mm length 4mm diameter 2mm -0 -2 -2 -Diode_THT -D_DO-35_SOD27_P5.08mm_Vertical_KathodeUp -Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf -Diode DO-35_SOD27 series Axial Vertical pin pitch 5.08mm length 4mm diameter 2mm -0 -2 -2 -Diode_THT -D_DO-35_SOD27_P7.62mm_Horizontal -Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf -Diode DO-35_SOD27 series Axial Horizontal pin pitch 7.62mm length 4mm diameter 2mm -0 -2 -2 -Diode_THT -D_DO-35_SOD27_P10.16mm_Horizontal -Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf -Diode DO-35_SOD27 series Axial Horizontal pin pitch 10.16mm length 4mm diameter 2mm -0 -2 -2 -Diode_THT -D_DO-35_SOD27_P12.70mm_Horizontal -Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf -Diode DO-35_SOD27 series Axial Horizontal pin pitch 12.7mm length 4mm diameter 2mm -0 -2 -2 -Diode_THT -D_DO-41_SOD81_P2.54mm_Vertical_AnodeUp -Diode, DO-41_SOD81 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf -Diode DO-41_SOD81 series Axial Vertical pin pitch 2.54mm length 5.2mm diameter 2.7mm -0 -2 -2 -Diode_THT -D_DO-41_SOD81_P2.54mm_Vertical_KathodeUp -Diode, DO-41_SOD81 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf -Diode DO-41_SOD81 series Axial Vertical pin pitch 2.54mm length 5.2mm diameter 2.7mm -0 -2 -2 -Diode_THT -D_DO-41_SOD81_P3.81mm_Vertical_AnodeUp -Diode, DO-41_SOD81 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=5.2*2.7mm^2, , https://www.diodes.com/assets/Package-Files/DO-41-Plastic.pdf -Diode DO-41_SOD81 series Axial Vertical pin pitch 3.81mm length 5.2mm diameter 2.7mm -0 -2 -2 -Diode_THT -D_DO-41_SOD81_P3.81mm_Vertical_KathodeUp -Diode, DO-41_SOD81 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=5.2*2.7mm^2, , https://www.diodes.com/assets/Package-Files/DO-41-Plastic.pdf -Diode DO-41_SOD81 series Axial Vertical pin pitch 3.81mm length 5.2mm diameter 2.7mm -0 -2 -2 -Diode_THT -D_DO-41_SOD81_P5.08mm_Vertical_AnodeUp -Diode, DO-41_SOD81 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf -Diode DO-41_SOD81 series Axial Vertical pin pitch 5.08mm length 5.2mm diameter 2.7mm -0 -2 -2 -Diode_THT -D_DO-41_SOD81_P5.08mm_Vertical_KathodeUp -Diode, DO-41_SOD81 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf -Diode DO-41_SOD81 series Axial Vertical pin pitch 5.08mm length 5.2mm diameter 2.7mm -0 -2 -2 -Diode_THT -D_DO-41_SOD81_P7.62mm_Horizontal -Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf -Diode DO-41_SOD81 series Axial Horizontal pin pitch 7.62mm length 5.2mm diameter 2.7mm -0 -2 -2 -Diode_THT -D_DO-41_SOD81_P10.16mm_Horizontal -Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf -Diode DO-41_SOD81 series Axial Horizontal pin pitch 10.16mm length 5.2mm diameter 2.7mm -0 -2 -2 -Diode_THT -D_DO-41_SOD81_P12.70mm_Horizontal -Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf -Diode DO-41_SOD81 series Axial Horizontal pin pitch 12.7mm length 5.2mm diameter 2.7mm -0 -2 -2 -Diode_THT -D_DO-201AD_P3.81mm_Vertical_AnodeUp -Diode, DO-201AD series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf -Diode DO-201AD series Axial Vertical pin pitch 3.81mm length 9.5mm diameter 5.2mm -0 -2 -2 -Diode_THT -D_DO-201AD_P3.81mm_Vertical_KathodeUp -Diode, DO-201AD series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf -Diode DO-201AD series Axial Vertical pin pitch 3.81mm length 9.5mm diameter 5.2mm -0 -2 -2 -Diode_THT -D_DO-201AD_P5.08mm_Vertical_AnodeUp -Diode, DO-201AD series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf -Diode DO-201AD series Axial Vertical pin pitch 5.08mm length 9.5mm diameter 5.2mm -0 -2 -2 -Diode_THT -D_DO-201AD_P5.08mm_Vertical_KathodeUp -Diode, DO-201AD series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf -Diode DO-201AD series Axial Vertical pin pitch 5.08mm length 9.5mm diameter 5.2mm -0 -2 -2 -Diode_THT -D_DO-201AD_P12.70mm_Horizontal -Diode, DO-201AD series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf -Diode DO-201AD series Axial Horizontal pin pitch 12.7mm length 9.5mm diameter 5.2mm -0 -2 -2 -Diode_THT -D_DO-201AD_P15.24mm_Horizontal -Diode, DO-201AD series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf -Diode DO-201AD series Axial Horizontal pin pitch 15.24mm length 9.5mm diameter 5.2mm -0 -2 -2 -Diode_THT -D_DO-201AE_P3.81mm_Vertical_AnodeUp -Diode, DO-201AE series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf -Diode DO-201AE series Axial Vertical pin pitch 3.81mm length 9mm diameter 5.3mm -0 -2 -2 -Diode_THT -D_DO-201AE_P3.81mm_Vertical_KathodeUp -Diode, DO-201AE series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf -Diode DO-201AE series Axial Vertical pin pitch 3.81mm length 9mm diameter 5.3mm -0 -2 -2 -Diode_THT -D_DO-201AE_P5.08mm_Vertical_AnodeUp -Diode, DO-201AE series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf -Diode DO-201AE series Axial Vertical pin pitch 5.08mm length 9mm diameter 5.3mm -0 -2 -2 -Diode_THT -D_DO-201AE_P5.08mm_Vertical_KathodeUp -Diode, DO-201AE series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf -Diode DO-201AE series Axial Vertical pin pitch 5.08mm length 9mm diameter 5.3mm -0 -2 -2 -Diode_THT -D_DO-201AE_P12.70mm_Horizontal -Diode, DO-201AE series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf -Diode DO-201AE series Axial Horizontal pin pitch 12.7mm length 9mm diameter 5.3mm -0 -2 -2 -Diode_THT -D_DO-201AE_P15.24mm_Horizontal -Diode, DO-201AE series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf -Diode DO-201AE series Axial Horizontal pin pitch 15.24mm length 9mm diameter 5.3mm -0 -2 -2 -Diode_THT -D_DO-201_P3.81mm_Vertical_AnodeUp -Diode, DO-201 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf -Diode DO-201 series Axial Vertical pin pitch 3.81mm length 9.53mm diameter 5.21mm -0 -2 -2 -Diode_THT -D_DO-201_P3.81mm_Vertical_KathodeUp -Diode, DO-201 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf -Diode DO-201 series Axial Vertical pin pitch 3.81mm length 9.53mm diameter 5.21mm -0 -2 -2 -Diode_THT -D_DO-201_P5.08mm_Vertical_AnodeUp -Diode, DO-201 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf -Diode DO-201 series Axial Vertical pin pitch 5.08mm length 9.53mm diameter 5.21mm -0 -2 -2 -Diode_THT -D_DO-201_P5.08mm_Vertical_KathodeUp -Diode, DO-201 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf -Diode DO-201 series Axial Vertical pin pitch 5.08mm length 9.53mm diameter 5.21mm -0 -2 -2 -Diode_THT -D_DO-201_P12.70mm_Horizontal -Diode, DO-201 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf -Diode DO-201 series Axial Horizontal pin pitch 12.7mm length 9.53mm diameter 5.21mm -0 -2 -2 -Diode_THT -D_DO-201_P15.24mm_Horizontal -Diode, DO-201 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf -Diode DO-201 series Axial Horizontal pin pitch 15.24mm length 9.53mm diameter 5.21mm -0 -2 -2 -Diode_THT -D_DO-247_Horizontal_TabDown -Diode, DO-247 series, Horizontal, TabDown, P 10.9mm -diode rectifier -0 -2 -2 -Diode_THT -D_DO-247_Horizontal_TabUp -Diode, DO-247 series, Horizontal, TabUp, P 10.9mm -diode rectifier -0 -2 -2 -Diode_THT -D_DO-247_Vertical -Diode, DO-247 series, Vertical, P 10.9mm -diode rectifier -0 -2 -2 -Diode_THT -D_P600_R-6_P7.62mm_Vertical_AnodeUp -Diode, P600_R-6 series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf -Diode P600_R-6 series Axial Vertical pin pitch 7.62mm length 9.1mm diameter 9.1mm -0 -2 -2 -Diode_THT -D_P600_R-6_P7.62mm_Vertical_KathodeUp -Diode, P600_R-6 series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf -Diode P600_R-6 series Axial Vertical pin pitch 7.62mm length 9.1mm diameter 9.1mm -0 -2 -2 -Diode_THT -D_P600_R-6_P12.70mm_Horizontal -Diode, P600_R-6 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf -Diode P600_R-6 series Axial Horizontal pin pitch 12.7mm length 9.1mm diameter 9.1mm -0 -2 -2 -Diode_THT -D_P600_R-6_P20.00mm_Horizontal -Diode, P600_R-6 series, Axial, Horizontal, pin pitch=20mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf -Diode P600_R-6 series Axial Horizontal pin pitch 20mm length 9.1mm diameter 9.1mm -0 -2 -2 -Diode_THT -D_T-1_P2.54mm_Vertical_AnodeUp -Diode, T-1 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf -Diode T-1 series Axial Vertical pin pitch 2.54mm length 3.2mm diameter 2.6mm -0 -2 -2 -Diode_THT -D_T-1_P2.54mm_Vertical_KathodeUp -Diode, T-1 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf -Diode T-1 series Axial Vertical pin pitch 2.54mm length 3.2mm diameter 2.6mm -0 -2 -2 -Diode_THT -D_T-1_P5.08mm_Horizontal -Diode, T-1 series, Axial, Horizontal, pin pitch=5.08mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf -Diode T-1 series Axial Horizontal pin pitch 5.08mm length 3.2mm diameter 2.6mm -0 -2 -2 -Diode_THT -D_T-1_P10.16mm_Horizontal -Diode, T-1 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf -Diode T-1 series Axial Horizontal pin pitch 10.16mm length 3.2mm diameter 2.6mm -0 -2 -2 -Diode_THT -D_T-1_P12.70mm_Horizontal -Diode, T-1 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf -Diode T-1 series Axial Horizontal pin pitch 12.7mm length 3.2mm diameter 2.6mm -0 -2 -2 -Diode_THT -Diode_Bridge_15.1x15.1x6.3mm_P10.9mm -Single phase bridge rectifier case 15.1x15.1mm, pitch 10.9mm, see https://diotec.com/tl_files/diotec/files/pdf/datasheets/pb1000.pdf -Diode Bridge PB10xxS -0 -4 -4 -Diode_THT -Diode_Bridge_15.2x15.2x6.3mm_P10.9mm -Single phase bridge rectifier case 15.2x15.2mm, pitch 10.9mm, see https://diotec.com/tl_files/diotec/files/pdf/datasheets/kbpc600.pdf -Diode Bridge KBPC6xx -0 -4 -4 -Diode_THT -Diode_Bridge_15.7x15.7x6.3mm_P10.8mm -Single phase bridge rectifier case 15.7x15.7 -Diode Bridge -0 -4 -4 -Diode_THT -Diode_Bridge_16.7x16.7x6.3mm_P10.8mm -Single phase bridge rectifier case 16.7x16.7 -Diode Bridge -0 -4 -4 -Diode_THT -Diode_Bridge_19.0x3.5x10.0mm_P5.0mm -Vishay GBU rectifier package, 5.08mm pitch, see http://www.vishay.com/docs/88606/g3sba20.pdf -Vishay GBU rectifier diode bridge -0 -4 -4 -Diode_THT -Diode_Bridge_19.0x19.0x6.8mm_P12.7mm -Single phase bridge rectifier case 19x19mm, pitch 12.7mm, see https://diotec.com/tl_files/diotec/files/pdf/datasheets/pb1000.pdf -Diode Bridge PB10xx -0 -4 -4 -Diode_THT -Diode_Bridge_28.6x28.6x7.3mm_P18.0mm_P11.6mm -Single phase bridge rectifier case 28.6x28.6mm, pitch 18.0mm & 11.6mm, see https://diotec.com/tl_files/diotec/files/pdf/datasheets/kbpc1500fw.pdf -Diode Bridge KBPCxxxxWP -0 -4 -4 -Diode_THT -Diode_Bridge_32.0x5.6x17.0mm_P10.0mm_P7.5mm -Diotec 32x5.6x17mm rectifier package, 7.5mm/10mm pitch, see https://diotec.com/tl_files/diotec/files/pdf/datasheets/b40c3700.pdf -Diotec rectifier diode bridge -0 -4 -4 -Diode_THT -Diode_Bridge_Comchip_SCVB-L -Three phase, Bridge, Rectifier, https://www.comchiptech.com/admin/files/product/SC35VB80S-G%20Thru506369.%20SC35VB160S-G%20RevB.pdf -diode module -0 -5 -5 -Diode_THT -Diode_Bridge_DIGITRON_KBPC_T -Single phase, Bridge rectifier, 28.614x28.614mm, case KBPC_T(FP), https://www.digitroncorp.com/Digitron/media/Files/Datasheets/KBPC15005-SERIES.pdf -diode module -0 -4 -4 -Diode_THT -Diode_Bridge_DIP-4_W5.08mm_P2.54mm -4-lead dip package for diode bridges, row spacing 5.08mm, pin-spacing 2.54mm, see http://www.vishay.com/docs/88898/b2m.pdf -DIL DIP PDIP 5.08mm 2.54 -0 -4 -4 -Diode_THT -Diode_Bridge_DIP-4_W7.62mm_P5.08mm -4-lead dip package for diode bridges, row spacing 7.62 mm (300 mils), see http://cdn-reichelt.de/documents/datenblatt/A400/HDBL101G_20SERIES-TSC.pdf -DIL DIP PDIP 5.08mm 7.62mm 300mil -0 -4 -4 -Diode_THT -Diode_Bridge_GeneSiC_KBPC_T -Single phase, Bridge rectifier, 28.55x28.55mm, case KBPC_T(FP), https://www.diodemodule.com/bridge-rectifier/kbpc/kbpc1501t.pdf -diode module -0 -4 -4 -Diode_THT -Diode_Bridge_GeneSiC_KBPC_W -Single phase, Bridge Rectifier, 28.55x28.55mm, case KBPC_W(WP), https://www.diodemodule.com/bridge-rectifier/kbpc/kbpc15005w.pdf -diode module -0 -4 -4 -Diode_THT -Diode_Bridge_IXYS_GUFP -Three phase, Bridge, Rectifier -diode module -0 -5 -5 -Diode_THT -Diode_Bridge_Round_D8.9mm -4-lead round diode bridge package, diameter 8.9mm, pin pitch 5.08mm, see http://cdn-reichelt.de/documents/datenblatt/A400/W005M-W10M_SEP.PDF -diode bridge 8.9mm 8.85mm WOB pitch 5.08mm -0 -4 -4 -Diode_THT -Diode_Bridge_Round_D9.0mm -4-lead round diode bridge package, diameter 9.0mm, pin pitch 5.0mm, see https://diotec.com/tl_files/diotec/files/pdf/datasheets/b40r.pdf -diode bridge 9.0mm 8.85mm WOB pitch 5.0mm -0 -4 -4 -Diode_THT -Diode_Bridge_Round_D9.8mm -4-lead round diode bridge package, diameter 9.8mm, pin pitch 5.08mm, see http://www.vishay.com/docs/88769/woo5g.pdf -diode bridge 9.8mm WOG pitch 5.08mm -0 -4 -4 -Diode_THT -Diode_Bridge_Vishay_GBL -Vishay GBL rectifier package, 5.08mm pitch, see http://www.vishay.com/docs/88609/gbl005.pdf -Vishay GBL rectifier diode bridge -0 -4 -4 -Diode_THT -Diode_Bridge_Vishay_GBU -Vishay GBU rectifier package, 5.08mm pitch, see http://www.vishay.com/docs/88606/g3sba20.pdf -Vishay GBU rectifier diode bridge -0 -4 -4 -Diode_THT -Diode_Bridge_Vishay_KBL -Vishay KBL rectifier package, 5.08mm pitch, see http://www.vishay.com/docs/88655/kbl005.pdf -Vishay KBL rectifier diode bridge -0 -4 -4 -Diode_THT -Diode_Bridge_Vishay_KBPC1 -Single phase bridge rectifier case KBPC1, see http://www.vishay.com/docs/93585/vs-kbpc1series.pdf -Diode Bridge -0 -4 -4 -Diode_THT -Diode_Bridge_Vishay_KBPC6 -Single phase bridge rectifier case KBPC6, see http://www.vishay.com/docs/93585/vs-kbpc1series.pdf -Diode Bridge -0 -4 -4 -Diode_THT -Diode_Bridge_Vishay_KBPM -Vishay KBM rectifier package, 3.95mm pitch (http://www.farnell.com/datasheets/2238158.pdf, http://www.cdil.com/s/kbp2005_.pdf) -Vishay KBM rectifier diode bridge -0 -4 -4 -Diode_THT -Diode_Bridge_Vishay_KBU -Vishay KBU rectifier package, 5.08mm pitch, see http://www.vishay.com/docs/88656/kbu4.pdf -Vishay KBU rectifier diode bridge -0 -4 -4 -Display -AG12864E -STN/FSTN LCD 128x64 dot https://www.digchip.com/datasheets/parts/datasheet/1121/AG-12864E-pdf.php -AG12864E Graphics Display 128x64 Ampire -0 -24 -20 -Display -Adafruit_SSD1306 -Adafruit SSD1306 OLED 1.3 inch 128x64 I2C & SPI https://learn.adafruit.com/monochrome-oled-breakouts/downloads -Adafruit SSD1306 OLED 1.3 inch 128x64 I2C & SPI -0 -8 -8 -Display -Adafruit_SSD1306_No_Mounting_Holes -Adafruit SSD1306 OLED 1.3 inch 128x64 I2C & SPI https://learn.adafruit.com/monochrome-oled-breakouts/downloads -Adafruit SSD1306 OLED 1.3 inch 128x64 I2C & SPI -0 -8 -8 -Display -CR2013-MI2120 -CR2013-MI2120 ILI9341 LCD Breakout http://pan.baidu.com/s/11Y990 -CR2013-MI2120 ILI9341 LCD Breakout -0 -18 -14 -Display -EA-eDIP128B-XXX -LCD-graphical display with LED backlight 128x64 RS-232 I2C or SPI http://www.lcd-module.com/fileadmin/eng/pdf/grafik/edip128-6e.pdf -LCD-graphical display with LED backlight 128x64 RS-232 I2C or SPI -0 -32 -32 -Display -EA_DOGL128-6 -Graphical,Display,LCD,128x64 https://www.lcd-module.com/eng/pdf/grafik/dogl128-6e.pdf -EA DOGL128 -0 -26 -26 -Display -EA_DOGM128-6 -Graphical,Display,LCD,128x64 https://www.lcd-module.de/eng/pdf/grafik/dogm128e.pdf -EA DOGM128-6 -0 -26 -26 -Display -EA_DOGS104X-A -LCD 4x10 character 3.3V VDD I2C or SPI http://www.lcd-module.com/fileadmin/eng/pdf/doma/dogs104e.pdf -LCD 4x10 character 3.3V VDD I2C or SPI -0 -14 -14 -Display -EA_DOGXL160-7 -Grapchical,Display,LCD,160x104 http://www.lcd-module.com/eng/pdf/grafik/dogxl160-7e.pdf -EA_DOGXL160-7 -0 -22 -22 -Display -EA_DOGXL160-7_Backlight -Grapchical,Display,LCD,160x104 http://www.lcd-module.com/eng/pdf/grafik/dogxl160-7e.pdf -EA_DOGXL160-7_Backlight -0 -22 -22 -Display -EA_T123X-I2C -http://www.lcd-module.de/pdf/doma/t123-i2c.pdf -3 Line 12 character wide alpha numeric LCD -0 -6 -6 -Display -EA_eDIP160-XXX -LCD-graphical display with LED backlight 160x104 RS-232 I2C or SPI http://www.lcd-module.com/fileadmin/eng/pdf/grafik/edip160-7e.pdf -LCD-graphical display with LED backlight 160x104 RS-232 I2C or SPI -0 -40 -40 -Display -EA_eDIP240-XXX -LCD graphical display LED backlight 240x128 http://www.lcd-module.com/fileadmin/eng/pdf/grafik/edip240-7e.pdf -LCD graphical display LED backlight 240x128 -0 -40 -40 -Display -EA_eDIP320X-XXX -LCD display 320x340 RS-232 I2C or SPI http://www.lcd-module.com/fileadmin/eng/pdf/grafik/edip320-8e.pdf -LCD display 320x340 RS-232 I2C or SPI -0 -48 -48 -Display -EA_eDIPTFT32-XXX -TFT-graphic display 320x240 16 bit colour with led backlight http://www.lcd-module.com/fileadmin/eng/pdf/grafik/ediptft32-ae.pdf -TFT-graphic display 320x240 16 bit colour with led backlight -0 -40 -40 -Display -EA_eDIPTFT43-ATC -http://www.lcd-module.com/fileadmin/eng/pdf/grafik/ediptft43-ae.pdf -TFT graphical display 480x272 16-bit colour with LED backlight -0 -40 -40 -Display -EA_eDIPTFT43-XXX -TFT graphical display 480x272 16-bit colour with LED backlight http://www.lcd-module.com/fileadmin/eng/pdf/grafik/ediptft43-ae.pdf -TFT graphical display 480x272 16-bit colour with LED backlight -0 -40 -40 -Display -EA_eDIPTFT57-XXX -http://www.lcd-module.com/fileadmin/eng/pdf/grafik/ediptft57-ae.pdf -TFT-graphic display 640x480 16 bit colour -0 -48 -48 -Display -EA_eDIPTFT70-ATC -TFT-graphical display 800x480 16-bit colours with capacitive touch panel http://www.lcd-module.com/fileadmin/eng/pdf/grafik/ediptft70-ae.pdf -TFT-graphical display 800x480 16-bit colours with capacitive touch panel -0 -48 -48 -Display -EA_eDIPTFT70-XXX -TFT-graphical display 800x480 16-bit colours http://www.lcd-module.com/fileadmin/eng/pdf/grafik/ediptft70-ae.pdf -TFT-graphical display 800x480 16-bit colours and touch display -0 -48 -48 -Display -ERM19264 -STN/FSTN LCD 192x64 dot https://www.buydisplay.com/download/manual/ERM19264-1_Series_Datasheet.pdf -ERM19264 Graphics Display 192x64 -0 -20 -20 -Display -HDSM-441B_HDSM-443B -2 Digit 7 segemnt blue LED, right hand decimal, https://docs.broadcom.com/docs/AV02-1589EN -2 Digit 7 segment blue LED -0 -10 -10 -Display -HDSM-541B_HDSM-543B -2 digit 7 segement blue LED with right hand decimal, https://docs.broadcom.com/docs/AV02-1588EN -2 digit 7 segement blue LED with right hand decimal -0 -10 -10 -Display -HDSP-48xx -10-Element Bar Graph Array https://docs.broadcom.com/docs/AV02-1798EN -10-Element Bar Graph Array -0 -20 -20 -Display -HDSP-4830 -10-Element Red Bar Graph Array https://docs.broadcom.com/docs/AV02-1798EN -10-Element Red Bar Graph Array -0 -20 -20 -Display -HDSP-4832 -10-Element Red Yellow Green Bar Graph Array https://docs.broadcom.com/docs/AV02-1798EN -10-Element Red Yellow Green Bar Graph Array -0 -20 -20 -Display -HDSP-4836 -10-Element Red Yellow Green Bar Graph Array https://docs.broadcom.com/docs/AV02-1798EN -10-Element Red Yellow Green Bar Graph Array -0 -20 -20 -Display -HDSP-4840 -10-Element Yellow Bar Graph Array https://docs.broadcom.com/docs/AV02-1798EN -10-Element Yellow Bar Graph Array -0 -20 -20 -Display -HDSP-4850 -10-Element Green Bar Graph Array https://docs.broadcom.com/docs/AV02-1798EN -10-Element Green Bar Graph Array -0 -20 -20 -Display -HLCP-J100 -10-Element Red Bar Graph Array https://docs.broadcom.com/docs/AV02-1798EN -10-Element Red Bar Graph Array -0 -20 -20 -Display -HY1602E -http://www.icbank.com/data/ICBShop/board/HY1602E.pdf -LCD 16x2 Alphanumeric 16pin -0 -20 -16 -Display -LCD-016N002L -16 x 2 Character LCD, http://www.vishay.com/product?docid=37299 -LCD-016N002L 16 x 2 Character LCD -0 -24 -20 -Display -LM16255 -LCD LM16255 16x2 character http://www.datasheetlib.com/datasheet/259542/lm16255_sharp-electronics.html -LCD 12x2 -0 -14 -14 -Display -NHD-0420H1Z -NHD-0420H1Z LCD http://www.newhavendisplay.com/specs/NHD-0420H1Z-FSW-GBW-33V3.pdf -NHD-0420H1Z LCD -0 -16 -16 -Display -NHD-C0220BiZ -NHD-C0220BiZ LCD http://www.newhavendisplay.com/specs/NHD-C0220BiZ-FSW-FBW-3V3M.pdf -NHD-C0220BiZ LCD -0 -10 -10 -Display -NHD-C12832A1Z-FSRGB -128x32 LCD with RGB backlight https://www.newhavendisplay.com/specs/NHD-C12832A1Z-FSRGB-FBW-3V.pdf -lcd rgb st7565 -0 -21 -21 -Display -OLED-128O064D -128x64 OLED display -display oled -0 -30 -30 -Display -RC1602A -http://www.raystar-optronics.com/down.php?ProID=18 -LCD 16x2 Alphanumeric 16pin -0 -22 -18 -Display -WC1602A -LCD 16x2 http://www.wincomlcd.com/pdf/WC1602A-SFYLYHTC06.pdf -LCD 16x2 Alphanumeric 16pin -0 -20 -16 -Display_7Segment -7SEGMENT-LED__HDSM531_HDSM533_SMD -7-Segment Display, HDSM53x, https://docs.broadcom.com/docs/AV02-0713EN -7segment LED HDSM531 HDSM533 -0 -10 -10 -Display_7Segment -7SegmentLED_LTS6760_LTS6780 -7-Segment Display, LTS67x0, http://optoelectronics.liteon.com/upload/download/DS30-2001-355/S6760jd.pdf -7Segment LED LTS6760 LTS6780 -0 -10 -10 -Display_7Segment -AD-121F2 -Single Digit 7-segment RGB LED Display, 1-inch digit height, common anode, http://usasyck.com/products/AD-121F2_cat_e.pdf -RGB LED digit -0 -22 -22 -Display_7Segment -AFF_2x7SEG-DIGIT_10mm -Afficheur 7 segments 10mm DIGIT -AFFICHEUR -0 -16 -16 -Display_7Segment -CA56-12CGKWA -4 digit 7 segment green LED, http://www.kingbright.com/attachments/file/psearch/000/00/00/CA56-12CGKWA(Ver.9A).pdf -4 digit 7 segment green LED -0 -12 -12 -Display_7Segment -CA56-12EWA -4 digit 7 segment green LED, http://www.kingbrightusa.com/images/catalog/SPEC/CA56-12EWA.pdf -4 digit 7 segment green LED -0 -12 -12 -Display_7Segment -CA56-12SEKWA -4 digit 7 segment green LED, http://www.kingbright.com/attachments/file/psearch/000/00/00/CA56-12SEKWA(Ver.7A).pdf -4 digit 7 segment green LED -0 -12 -12 -Display_7Segment -CA56-12SRWA -4 digit 7 segment green LED, http://www.kingbrightusa.com/images/catalog/SPEC/CA56-12SRWA.pdf -4 digit 7 segment green LED -0 -12 -12 -Display_7Segment -CA56-12SURKWA -4 digit 7 segment green LED, http://www.kingbright.com/attachments/file/psearch/000/00/00/CA56-12SURKWA(Ver.8A).pdf -4 digit 7 segment green LED -0 -12 -12 -Display_7Segment -CA56-12SYKWA -4 digit 7 segment green LED, http://www.kingbright.com/attachments/file/psearch/000/00/00/CA56-12SYKWA(Ver.6A).pdf -4 digit 7 segment green LED -0 -12 -12 -Display_7Segment -CC56-12GWA -4 digit 7 segment green LED, http://www.kingbrightusa.com/images/catalog/SPEC/CA56-11GWA.pdf -4 digit 7 segment green LED -0 -12 -12 -Display_7Segment -CC56-12YWA -4 digit 7 segment green LED, http://www.kingbrightusa.com/images/catalog/SPEC/CC56-12YWA.pdf -4 digit 7 segment green LED -0 -12 -12 -Display_7Segment -D1X8K -https://ia800903.us.archive.org/24/items/CTKD1x8K/Cromatek%20D168K.pdf -Single digit 7 segment ultra bright red -0 -10 -10 -Display_7Segment -DA04-11CGKWA -http://www.kingbright.com/attachments/file/psearch/000/00/00/DA04-11CGKWA(Ver.6A).pdf -Dubble digit green 7 segment LED display -0 -16 -16 -Display_7Segment -DA04-11SEKWA -http://www.kingbright.com/attachments/file/psearch/000/00/00/DA04-11SEKWA(Ver.9A).pdf -Dubble digit super bright orange 7 segment LED display -0 -16 -16 -Display_7Segment -DA04-11SURKWA -http://www.kingbright.com/attachments/file/psearch/000/00/00/DA04-11SURKWA(Ver.10A).pdf -Dubble digit hyper red 7 segment LED display -0 -16 -16 -Display_7Segment -DA04-11SYKWA -http://www.kingbright.com/attachments/file/psearch/000/00/00/DA04-11SYKWA(Ver.6A).pdf -Dubble digit super bright yellow 7 segment LED display -0 -16 -16 -Display_7Segment -DA56-11CGKWA -http://www.kingbright.com/attachments/file/psearch/000/00/00/DA56-11CGKWA(Ver.16A).pdf -Double digit seven segment green LED display -0 -18 -18 -Display_7Segment -DA56-11SEKWA -http://www.kingbright.com/attachments/file/psearch/000/00/00/DA56-11SEKWA(Ver.9A).pdf -Double digit seven segment super bright orange LED display -0 -18 -18 -Display_7Segment -DA56-11SURKWA -http://www.kingbright.com/attachments/file/psearch/000/00/00/DA56-11SURKWA(Ver.11A).pdf -Double digit seven segment hyper red LED display -0 -18 -18 -Display_7Segment -DA56-11SYKWA -http://www.kingbright.com/attachments/file/psearch/000/00/00/DA56-11SYKWA(Ver.11A).pdf -Double digit seven segment super bright yellow LED display -0 -18 -18 -Display_7Segment -DE113-XX-XX -http://www.display-elektronik.de/filter/DE113-RS-20_635.pdf -3 1/5 digit LOW BAT + 7-Segment LCD -0 -40 -40 -Display_7Segment -DE114-RS-20 -http://www.display-elektronik.de/filter/DE113-RS-20_635.pdf -3 1/5 digit reflective LCD LOW-BAT + 7-Segment -0 -40 -40 -Display_7Segment -DE119-XX-XX -https://www.display-elektronik.de/filter/DE119-RS-20_635.pdf -4 digit 7 segment LCD -0 -40 -40 -Display_7Segment -DE122-XX-XX -http://www.display-elektronik.de/filter/DE122-RS-20_635.pdf -6 digit 7 segment LCD -0 -50 -50 -Display_7Segment -DE152-XX-XX -https://tft-module.de/filter/DE152-RS-20_75.pdf -4 digit 7 segment LCD -0 -40 -40 -Display_7Segment -DE170-XX-XX -http://www.display-elektronik.de/filter/DE170-RS-20_75.pdf -3 1/5 digit reflective arrow bat + 7 segment LCD -0 -40 -40 -Display_7Segment -ELD_426XXXX -http://www.everlight.com/file/ProductFile/D426SYGWA-S530-E2.pdf -Double digit 7 segment brilliant yellow green LED -0 -10 -10 -Display_7Segment -HDSP-7401 -One digit 7 segment yellow, https://docs.broadcom.com/docs/AV02-2553EN -One digit 7 segment yellow -0 -10 -10 -Display_7Segment -HDSP-7507 -+-1 overflow 7 segment high efficiency red, https://docs.broadcom.com/docs/AV02-2553EN -+-1 overflow 7 segment high efficiency red -0 -10 -10 -Display_7Segment -HDSP-7801 -One digit 7 segment green, https://docs.broadcom.com/docs/AV02-2553EN -One digit 7 segment green -0 -10 -10 -Display_7Segment -HDSP-7807 -+-1 overflow 7 segment green, https://docs.broadcom.com/docs/AV02-2553EN -+-1 overflow 7 segment green -0 -10 -10 -Display_7Segment -HDSP-A151 -One digit 7 segment red, https://docs.broadcom.com/docs/AV02-2553EN -One digit 7 segment high efficiency red -0 -10 -10 -Display_7Segment -HDSP-A401 -One digit 7 segment orange, common anode, https://docs.broadcom.com/docs/AV02-2553EN -One digit 7 segment orange common anode -0 -10 -10 -Display_7Segment -KCSC02-105 -http://www.kingbright.com/attachments/file/psearch/000/00/00/KCSC02-105(Ver.9A).pdf -Single digit 7 segement hyper red LED -0 -10 -10 -Display_7Segment -KCSC02-106 -http://www.kingbright.com/attachments/file/psearch/000/00/00/KCSC02-106(Ver.10A).pdf -Single digit 7 segement super bright orange LED -0 -10 -10 -Display_7Segment -KCSC02-107 -http://www.kingbright.com/attachments/file/psearch/000/00/00/KCSC02-107(Ver.9A).pdf -Single digit 7 segement super bright yellow LED -0 -10 -10 -Display_7Segment -KCSC02-123 -http://www.kingbright.com/attachments/file/psearch/000/00/00/KCSC02-123(Ver.10A).pdf -Single digit 7 segement super bright yellow LED -0 -10 -10 -Display_7Segment -KCSC02-136 -http://www.kingbright.com/attachments/file/psearch/000/00/00/KCSC02-136(Ver.6B).pdf -Single digit 7 segement super bright yellow LED -0 -10 -10 -Display_7Segment -LTC-4627Jx -http://optoelectronics.liteon.com/upload/download/DS30-2001-393/C4627JG.pdf -4 digit 7 segment LED -0 -14 -14 -Display_7Segment -MAN71A -https://www.digchip.com/datasheets/parts/datasheet/161/MAN3640A-pdf.php -One digit 7 segment red LED with right dot -0 -14 -14 -Display_7Segment -MAN72A -https://www.digchip.com/datasheets/parts/datasheet/161/MAN3640A-pdf.php -One digit 7 segment red LED with left dot -0 -14 -14 -Display_7Segment -MAN73A -https://www.digchip.com/datasheets/parts/datasheet/161/MAN3640A-pdf.php -Overflow +- 1 red LED -0 -14 -14 -Display_7Segment -MAN3410A -https://www.digchip.com/datasheets/parts/datasheet/161/MAN3640A-pdf.php -One digit 7 segment green LED with dot -0 -14 -14 -Display_7Segment -MAN3420A -https://www.digchip.com/datasheets/parts/datasheet/161/MAN3640A-pdf.php -One digit 7 segment green LED with left dot -0 -14 -14 -Display_7Segment -MAN3610A -https://www.digchip.com/datasheets/parts/datasheet/161/MAN3640A-pdf.php -One digit 7 segment orange LED with right dot -0 -14 -14 -Display_7Segment -MAN3620A -https://www.digchip.com/datasheets/parts/datasheet/161/MAN3640A-pdf.php -One digit 7 segment orange LED with left dot -0 -14 -14 -Display_7Segment -MAN3630A -https://www.digchip.com/datasheets/parts/datasheet/161/MAN3640A-pdf.php -Overflow +- 1 orange LED -0 -14 -14 -Display_7Segment -MAN3810A -https://www.digchip.com/datasheets/parts/datasheet/161/MAN3640A-pdf.php -One digit 7 segment yellow LED with right dot -0 -14 -14 -Display_7Segment -MAN3820A -https://www.digchip.com/datasheets/parts/datasheet/161/MAN3640A-pdf.php -One digit 7 segment yellow LED with left dot -0 -14 -14 -Display_7Segment -SA15-11xxx -http://www.kingbrightusa.com/images/catalog/SPEC/SA15-11SRWA.pdf -SA15-11xxx single digit 7 segment display 38.1mm 1.5inch -0 -10 -10 -Display_7Segment -SBC18-11SURKCGKWA -http://www.kingbright.com/attachments/file/psearch/000/00/00/SBC18-11SURKCGKWA(Ver.6A).pdf -single digit 7 segemnt red/green LED -0 -10 -10 -Display_7Segment -Sx39-1xxxxx -Single digit 7 segment LED display in red, yellow or green colour http://www.kingbrightusa.com/images/catalog/SPEC/sa39-11ewa.pdf -One digit LED 7 segment SA39-11 SC39-11 SA39-12 SC39-12 -0 -10 -10 -Ferrite_THT -LairdTech_28C0236-0JW-10 -Ferrite, vertical, LairdTech 28C0236-0JW-10, https://assets.lairdtech.com/home/brandworld/files/28C0236-0JW-10.pdf, JW Miller core https://www.bourns.com/products/magnetic-products/j.w.-miller-through-hole-ferrite-beads-emi-filters -Ferrite vertical LairdTech 28C0236-0JW-10 -0 -2 -2 -Fiducial -Fiducial_0.5mm_Mask1.5mm -Circular Fiducial, 0.5mm bare copper, 1.5mm soldermask opening -fiducial -0 -1 -0 -Fiducial -Fiducial_0.5mm_Mask1mm -Circular Fiducial, 0.5mm bare copper, 1mm soldermask opening (Level C) -fiducial -0 -1 -0 -Fiducial -Fiducial_0.75mm_Mask1.5mm -Circular Fiducial, 0.75mm bare copper, 1.5mm soldermask opening (Level B) -fiducial -0 -1 -0 -Fiducial -Fiducial_0.75mm_Mask2.25mm -Circular Fiducial, 0.75mm bare copper, 2.25mm soldermask opening -fiducial -0 -1 -0 -Fiducial -Fiducial_1.5mm_Mask3mm -Circular Fiducial, 1.5mm bare copper, 3mm soldermask opening -fiducial -0 -1 -0 -Fiducial -Fiducial_1.5mm_Mask4.5mm -Circular Fiducial, 1.5mm bare copper, 4.5mm soldermask opening -fiducial -0 -1 -0 -Fiducial -Fiducial_1mm_Mask2mm -Circular Fiducial, 1mm bare copper, 2mm soldermask opening (Level A) -fiducial -0 -1 -0 -Fiducial -Fiducial_1mm_Mask3mm -Circular Fiducial, 1mm bare copper, 3mm soldermask opening (recommended) -fiducial -0 -1 -0 -Filter -Filter_1109-5_1.1x0.9mm -5-pin SAW filter package - 1.1x0.9 mm Body; (see https://www.murata.com/~/media/webrenewal/support/library/catalog/products/filter/rf/p73e.ashx?la=en-gb) -Filter 5 -0 -5 -5 -Filter -Filter_1411-5_1.4x1.1mm -5-pin filter package - 1.4x1.1 mm Body; (see https://global.kyocera.com/prdct/electro/product/pdf/sf14_tdlte.pdf) -Filter 5 -0 -5 -5 -Filter -Filter_Bourns_SRF0905_6.0x9.2mm -https://www.bourns.com/docs/Product-Datasheets/SRF0905.pdf -Line Filter -0 -4 -4 -Filter -Filter_FILTERCON_1FPxx -0.5A, 250VAC, 50/60Hz line filter (https://filtercon.com.pl/wp-content/uploads/2019/07/Karta-katalogowa-FP-12-1.pdf) -EMI filter -0 -4 -4 -Filter -Filter_Mini-Circuits_FV1206 -Mini-Circuits Filter SMD 1206 https://ww2.minicircuits.com/case_style/FV1206.pdf -Mini-Circuits Filter SMD 1206 -0 -6 -4 -Filter -Filter_Mini-Circuits_FV1206-1 -Mini-Circuits Filter SMD 1206 https://ww2.minicircuits.com/case_style/FV1206-1.pdf -Mini-Circuits Filter SMD 1206 -0 -6 -6 -Filter -Filter_Mini-Circuits_FV1206-4 -Mini-Circuits Filter SMD 1206 https://ww2.minicircuits.com/case_style/FV1206-4.pdf -Mini-Circuits Filter SMD 1206 -0 -8 -4 -Filter -Filter_Mini-Circuits_FV1206-5 -Mini-Circuits Filter SMD 1206 https://ww2.minicircuits.com/case_style/FV1206-5.pdf -Mini-Circuits Filter SMD 1206 -0 -8 -4 -Filter -Filter_Mini-Circuits_FV1206-6 -Mini-Circuits Filter SMD 1206 https://ww2.minicircuits.com/case_style/FV1206-6.pdf -Mini-Circuits Filter SMD 1206 -0 -14 -8 -Filter -Filter_Mini-Circuits_FV1206-7 -Mini-Circuits Filter SMD 1206 https://ww2.minicircuits.com/case_style/FV1206-7.pdf -Mini-Circuits Filter SMD 1206 -0 -5 -3 -Filter -Filter_Murata_BNX025 -https://www.murata.com/en-us/products/productdata/8796778004510/QNFH9101.pdf?1496719830000 -EMI Filter -0 -6 -4 -Filter -Filter_Murata_BNX025_ThermalVias -https://www.murata.com/en-us/products/productdata/8796778004510/QNFH9101.pdf?1496719830000 -EMI Filter -0 -19 -4 -Filter -Filter_Murata_SFECF-6 -SMD Type 10.7MHz Ceramic Filter https://www.murata.com/en-us/products/filter/cerafil/sfecf -10.7MHz smd ceramic -0 -6 -6 -Filter -Filter_Murata_SFECF-6_HandSoldering -SMD Type 10.7MHz Ceramic Filter https://www.murata.com/en-us/products/filter/cerafil/sfecf -10.7MHz smd ceramic -0 -6 -6 -Filter -Filter_SAW-6_3.8x3.8mm -6-pin 3.8 x 3.8mm SAW filter package, https://www.golledge.com/media/3785/mp08167.pdf -SAW filter 6-pin -0 -6 -6 -Filter -Filter_SAW-8_3.8x3.8mm -8-pin 3.8x3.8mm SAW filter, https://www.golledge.com/media/1831/ma05497.pdf -SAW filter 8-pin -0 -8 -8 -Filter -Filter_SAW_Epcos_DCC6C_3x3mm -EPCOS/TDK Electronics/Qualcomm DCC6c SAW filter package based on EPCOS app note 93 (https://www.catagle.com/45-2/PDF_AN93.htm) -SAW filter 6-pin -0 -6 -6 -Filter -Filter_Schaffner_FN405 -Compact PCB mounting EMI filter (https://www.schaffner.com/de/produkte/download/product/datasheet/fn-405-pcb-mounting-filter/) -EMI filter -0 -5 -5 -Filter -Filter_Schaffner_FN406 -Ultra Compact EMC Filter (https://www.schaffner.com/products/download/product/datasheet/fn-406-ultra-compact-emc-filter/) -emi filter -0 -5 -5 -Fuse -Fuse_0402_1005Metric -Fuse SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator -fuse -0 -2 -2 -Fuse -Fuse_0402_1005Metric_Pad0.77x0.64mm_HandSolder -Fuse SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator -fuse handsolder -0 -2 -2 -Fuse -Fuse_0603_1608Metric -Fuse SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator -fuse -0 -2 -2 -Fuse -Fuse_0603_1608Metric_Pad1.05x0.95mm_HandSolder -Fuse SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator -fuse handsolder -0 -2 -2 -Fuse -Fuse_0805_2012Metric -Fuse SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator -fuse -0 -2 -2 -Fuse -Fuse_0805_2012Metric_Pad1.15x1.40mm_HandSolder -Fuse SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator -fuse handsolder -0 -2 -2 -Fuse -Fuse_1206_3216Metric -Fuse SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator -fuse -0 -2 -2 -Fuse -Fuse_1206_3216Metric_Pad1.42x1.75mm_HandSolder -Fuse SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator -fuse handsolder -0 -2 -2 -Fuse -Fuse_1210_3225Metric -Fuse SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator -fuse -0 -2 -2 -Fuse -Fuse_1210_3225Metric_Pad1.42x2.65mm_HandSolder -Fuse SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator -fuse handsolder -0 -2 -2 -Fuse -Fuse_1812_4532Metric -Fuse SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), generated with kicad-footprint-generator -fuse -0 -2 -2 -Fuse -Fuse_1812_4532Metric_Pad1.30x3.40mm_HandSolder -Fuse SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), generated with kicad-footprint-generator -fuse handsolder -0 -2 -2 -Fuse -Fuse_2010_5025Metric -Fuse SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator -fuse -0 -2 -2 -Fuse -Fuse_2010_5025Metric_Pad1.52x2.65mm_HandSolder -Fuse SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator -fuse handsolder -0 -2 -2 -Fuse -Fuse_2512_6332Metric -Fuse SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator -fuse -0 -2 -2 -Fuse -Fuse_2512_6332Metric_Pad1.52x3.35mm_HandSolder -Fuse SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator -fuse handsolder -0 -2 -2 -Fuse -Fuse_2920_7451Metric -Fuse SMD 2920 (7451 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://www.megastar.com/products/fusetronic/polyswitch/PDF/smd2920.pdf), generated with kicad-footprint-generator -fuse -0 -2 -2 -Fuse -Fuse_2920_7451Metric_Pad2.10x5.45mm_HandSolder -Fuse SMD 2920 (7451 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: http://www.megastar.com/products/fusetronic/polyswitch/PDF/smd2920.pdf), generated with kicad-footprint-generator -fuse handsolder -0 -2 -2 -Fuse -Fuse_BelFuse_0ZRE0005FF_L8.3mm_W3.8mm -Fuse 0ZRE0005FF, BelFuse, Radial Leaded PTC, https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf -0ZRE BelFuse radial PTC -0 -2 -2 -Fuse -Fuse_BelFuse_0ZRE0008FF_L8.3mm_W3.8mm -Fuse 0ZRE0008FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf -0ZRE BelFuse radial PTC -0 -2 -2 -Fuse -Fuse_BelFuse_0ZRE0012FF_L8.3mm_W3.8mm -Fuse 0ZRE0012FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf -0ZRE BelFuse radial PTC -0 -2 -2 -Fuse -Fuse_BelFuse_0ZRE0016FF_L9.9mm_W3.8mm -Fuse 0ZRE0016FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf -0ZRE BelFuse radial PTC -0 -2 -2 -Fuse -Fuse_BelFuse_0ZRE0025FF_L9.6mm_W3.8mm -Fuse 0ZRE0025FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf -0ZRE BelFuse radial PTC -0 -2 -2 -Fuse -Fuse_BelFuse_0ZRE0033FF_L11.4mm_W3.8mm -Fuse 0ZRE0033FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf -0ZRE BelFuse radial PTC -0 -2 -2 -Fuse -Fuse_BelFuse_0ZRE0040FF_L11.5mm_W3.8mm -Fuse 0ZRE0040FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf -0ZRE BelFuse radial PTC -0 -2 -2 -Fuse -Fuse_BelFuse_0ZRE0055FF_L14.0mm_W4.1mm -Fuse 0ZRE0055FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf -0ZRE BelFuse radial PTC -0 -2 -2 -Fuse -Fuse_BelFuse_0ZRE0075FF_L11.5mm_W4.8mm -Fuse 0ZRE0075FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf -0ZRE BelFuse radial PTC -0 -2 -2 -Fuse -Fuse_BelFuse_0ZRE0100FF_L18.7mm_W5.1mm -Fuse 0ZRE0100FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf -0ZRE BelFuse radial PTC -0 -2 -2 -Fuse -Fuse_BelFuse_0ZRE0125FF_L21.2mm_W5.3mm -Fuse 0ZRE0125FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf -0ZRE BelFuse radial PTC -0 -2 -2 -Fuse -Fuse_BelFuse_0ZRE0150FF_L23.4mm_W5.3mm -Fuse 0ZRE0150FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf -0ZRE BelFuse radial PTC -0 -2 -2 -Fuse -Fuse_BelFuse_0ZRE0200FF_L24.9mm_W6.1mm -Fuse 0ZRE0200FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf -0ZRE BelFuse radial PTC -0 -2 -2 -Fuse -Fuse_Blade_ATO_directSolder -car blade fuse direct solder -car blade fuse -0 -2 -2 -Fuse -Fuse_Blade_Mini_directSolder -car blade fuse mini, direct solder -car blade fuse mini -0 -2 -2 -Fuse -Fuse_Bourns_MF-RG300 -PTC Resettable Fuse, Ihold = 3.0A, Itrip=5.1A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf -ptc resettable fuse polyfuse THT -0 -2 -2 -Fuse -Fuse_Bourns_MF-RG400 -PTC Resettable Fuse, Ihold = 4.0A, Itrip=6.8A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf -ptc resettable fuse polyfuse THT -0 -2 -2 -Fuse -Fuse_Bourns_MF-RG500 -PTC Resettable Fuse, Ihold = 5.0A, Itrip=8.5A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf -ptc resettable fuse polyfuse THT -0 -2 -2 -Fuse -Fuse_Bourns_MF-RG600 -PTC Resettable Fuse, Ihold = 6.0A, Itrip=10.2A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf -ptc resettable fuse polyfuse THT -0 -2 -2 -Fuse -Fuse_Bourns_MF-RG650 -PTC Resettable Fuse, Ihold = 6.5A, Itrip=11.1A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf -ptc resettable fuse polyfuse THT -0 -2 -2 -Fuse -Fuse_Bourns_MF-RG700 -PTC Resettable Fuse, Ihold = 7.0A, Itrip=11.9A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf -ptc resettable fuse polyfuse THT -0 -2 -2 -Fuse -Fuse_Bourns_MF-RG800 -PTC Resettable Fuse, Ihold = 8.0A, Itrip=13.6A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf -ptc resettable fuse polyfuse THT -0 -2 -2 -Fuse -Fuse_Bourns_MF-RG900 -PTC Resettable Fuse, Ihold = 9.0A, Itrip=15.3A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf -ptc resettable fuse polyfuse THT -0 -2 -2 -Fuse -Fuse_Bourns_MF-RG1000 -PTC Resettable Fuse, Ihold = 10.0A, Itrip=17.0A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf -ptc resettable fuse polyfuse THT -0 -2 -2 -Fuse -Fuse_Bourns_MF-RG1100 -PTC Resettable Fuse, Ihold = 11.0A, Itrip=18.7A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf -ptc resettable fuse polyfuse THT -0 -2 -2 -Fuse -Fuse_Bourns_MF-RHT050 -PTC Resettable Fuse, Ihold = 0.5A, Itrip=0.92A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf -ptc resettable fuse polyfuse THT -0 -2 -2 -Fuse -Fuse_Bourns_MF-RHT070 -PTC Resettable Fuse, Ihold = 0.7A, Itrip=1.4A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf -ptc resettable fuse polyfuse THT -0 -2 -2 -Fuse -Fuse_Bourns_MF-RHT100 -PTC Resettable Fuse, Ihold = 1.0A, Itrip=1.8A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf -ptc resettable fuse polyfuse THT -0 -2 -2 -Fuse -Fuse_Bourns_MF-RHT200 -PTC Resettable Fuse, Ihold = 2.0A, Itrip=3.8A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf -ptc resettable fuse polyfuse THT -0 -2 -2 -Fuse -Fuse_Bourns_MF-RHT300 -PTC Resettable Fuse, Ihold = 3.0A, Itrip=6.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf -ptc resettable fuse polyfuse THT -0 -2 -2 -Fuse -Fuse_Bourns_MF-RHT400 -PTC Resettable Fuse, Ihold = 4.0A, Itrip=7.5A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf -ptc resettable fuse polyfuse THT -0 -2 -2 -Fuse -Fuse_Bourns_MF-RHT500 -PTC Resettable Fuse, Ihold = 5.0A, Itrip=9.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf -ptc resettable fuse polyfuse THT -0 -2 -2 -Fuse -Fuse_Bourns_MF-RHT550 -PTC Resettable Fuse, Ihold = 5.5A, Itrip=10.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf -ptc resettable fuse polyfuse THT -0 -2 -2 -Fuse -Fuse_Bourns_MF-RHT600 -PTC Resettable Fuse, Ihold = 6.0A, Itrip=10.8A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf -ptc resettable fuse polyfuse THT -0 -2 -2 -Fuse -Fuse_Bourns_MF-RHT650 -PTC Resettable Fuse, Ihold = 6.5A, Itrip=12.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf -ptc resettable fuse polyfuse THT -0 -2 -2 -Fuse -Fuse_Bourns_MF-RHT700 -PTC Resettable Fuse, Ihold = 7.0A, Itrip=13.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf -ptc resettable fuse polyfuse THT -0 -2 -2 -Fuse -Fuse_Bourns_MF-RHT750 -PTC Resettable Fuse, Ihold = 7.5A, Itrip=13.1A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf -ptc resettable fuse polyfuse THT -0 -2 -2 -Fuse -Fuse_Bourns_MF-RHT800 -PTC Resettable Fuse, Ihold = 8.0A, Itrip=15.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf -ptc resettable fuse polyfuse THT -0 -2 -2 -Fuse -Fuse_Bourns_MF-RHT900 -PTC Resettable Fuse, Ihold = 9.0A, Itrip=16.5A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf -ptc resettable fuse polyfuse THT -0 -2 -2 -Fuse -Fuse_Bourns_MF-RHT1000 -PTC Resettable Fuse, Ihold = 10.0A, Itrip=18.5A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf -ptc resettable fuse polyfuse THT -0 -2 -2 -Fuse -Fuse_Bourns_MF-RHT1100 -PTC Resettable Fuse, Ihold = 11.0A, Itrip=20.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf -ptc resettable fuse polyfuse THT -0 -2 -2 -Fuse -Fuse_Bourns_MF-RHT1300 -PTC Resettable Fuse, Ihold = 13.0A, Itrip=24.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf -ptc resettable fuse polyfuse THT -0 -2 -2 -Fuse -Fuse_Bourns_MF-SM_7.98x5.44mm -https://www.bourns.com/docs/Product-Datasheets/mfsm.pdf -bourns ptc resettable fuse polyfuse MF-SM MF-SMHT -0 -2 -2 -Fuse -Fuse_Bourns_MF-SM_9.5x6.71mm -https://www.bourns.com/docs/Product-Datasheets/mfsm.pdf -bourns ptc resettable fuse polyfuse MF-SM MF-SMHT -0 -2 -2 -Fuse -Fuse_Bourns_TBU-CA -Bourns TBU-CA Fuse, 2 Pin (https://www.bourns.com/data/global/pdfs/TBU-CA.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -Bourns Fuse NoLead -0 -3 -3 -Fuse -Fuse_Littelfuse-LVR100 -Littelfuse, resettable fuse, PTC, polyswitch LVR100, Ih 1A http://www.littelfuse.com/~/media/electronics/datasheets/resettable_ptcs/littelfuse_ptc_lvr_catalog_datasheet.pdf.pdf -LVR100 PTC resettable polyswitch -0 -2 -2 -Fuse -Fuse_Littelfuse-LVR125 -Littelfuse, resettable fuse, PTC, polyswitch LVR125, Ih 1.25A, http://www.littelfuse.com/~/media/electronics/datasheets/resettable_ptcs/littelfuse_ptc_lvr_catalog_datasheet.pdf.pdf -LVR125 PTC resettable polyswitch -0 -2 -2 -Fuse -Fuse_Littelfuse-LVR200 -Littelfuse, resettable fuse, PTC, polyswitch LVR200, Ih 2A, http://www.littelfuse.com/~/media/electronics/datasheets/resettable_ptcs/littelfuse_ptc_lvr_catalog_datasheet.pdf.pdf -LVR200 PTC resettable polyswitch -0 -2 -2 -Fuse -Fuse_Littelfuse-NANO2-451_453 -Littelfuse NANO2 https://www.littelfuse.com/~/media/electronics/datasheets/fuses/littelfuse_fuse_451_453_datasheet.pdf.pdf -Fuse Nano2 -0 -2 -2 -Fuse -Fuse_Littelfuse_372_D8.50mm -Fuse, Littelfuse, 372, 8.5x8mm, https://www.littelfuse.com/~/media/electronics/datasheets/fuses/littelfuse_fuse_372_datasheet.pdf.pdf -fuse tht radial -0 -2 -2 -Fuse -Fuse_Littelfuse_395Series -Fuse, TE5, Littelfuse/Wickmann, No. 460, No560, -Fuse TE5 Littelfuse/Wickmann No. 460 No560 -0 -2 -2 -Fuse -Fuse_Schurter_UMT250 -Surface Mount Fuse, 3 x 10.1 mm, Time-Lag T, 250 VAC, 125 VDC (https://us.schurter.com/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_UMT_250.pdf) -Schurter fuse smd -0 -2 -2 -Fuse -Fuse_Schurter_UMZ250 -Surface Mount Fuse with Clip, 4.2 x 11.1 mm, Time-Lag T, 250 VAC, 125 VDC (https://us.schurter.com/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_UMZ_250.pdf) -fuse smd mount holder -0 -2 -2 -Fuse -Fuse_SunFuse-6HP -SunFuse Ceramic Slow Blow Fuse 6H_6HP.PDF -UL/CSA 6x32mm Ceramic Slow Blow Fuse -0 -2 -2 -Fuse -Fuseholder_Blade_ATO_Littelfuse_Pudenz_2_Pin -Fuseholder ATO Blade littelfuse Pudenz 2 Pin -Fuseholder ATO Blade littelfuse Pudenz 2 Pin -0 -2 -2 -Fuse -Fuseholder_Blade_Mini_Keystone_3568 -fuse holder, car blade fuse mini, http://www.keyelco.com/product-pdf.cfm?p=306 -car blade fuse mini -0 -4 -2 -Fuse -Fuseholder_Clip-5x20mm_Bel_FC-203-22_Lateral_P17.80x5.00mm_D1.17mm_Horizontal -Fuseholder Clips, 5x20mm Cylinder Fuse, Pins Lateral, Horizontal, Bel FC-203-22, https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0672-fuse-clips-series.pdf -fuse clip open -0 -4 -2 -Fuse -Fuseholder_Clip-5x20mm_Eaton_1A5601-01_Inline_P20.80x6.76mm_D1.70mm_Horizontal -Fuseholder Clips, 5x20mm Cylinder Fuse, Pins Inline, Horizontal, Eaton 1A5601-01, https://www.eaton.com/content/dam/eaton/products/electronic-components/resources/data-sheet/eaton-1axxxx-pcb-fuse-clips-atc-atm-blade-data-sheet.pdf -fuse clip open -0 -4 -2 -Fuse -Fuseholder_Clip-5x20mm_Keystone_3512P_Inline_P23.62x7.27mm_D1.02x2.41x1.02x1.57mm_Horizontal -Fuseholder Clips, 5x20mm Cylinder Fuse, Pins Inline, Horizontal, Keystone 3512P, http://www.keyelco.com/product-pdf.cfm?p=1386 -fuse clip open -0 -4 -2 -Fuse -Fuseholder_Clip-5x20mm_Keystone_3512_Inline_P23.62x7.27mm_D1.02x1.57mm_Horizontal -Fuseholder Clips, 5x20mm Cylinder Fuse, Pins Inline, Horizontal, Keystone 3512, http://www.keyelco.com/product-pdf.cfm?p=356 -fuse clip open -0 -4 -2 -Fuse -Fuseholder_Clip-5x20mm_Keystone_3517_Inline_P23.11x6.76mm_D1.70mm_Horizontal -Fuseholder Clips, 5x20mm Cylinder Fuse, Pins Inline, Horizontal, Keystone 3517, http://www.keyelco.com/product-pdf.cfm?p=354 -fuse clip open -0 -4 -2 -Fuse -Fuseholder_Clip-5x20mm_Keystone_3518P_Inline_P23.11x6.76mm_D2.44x1.70mm_Horizontal -Fuseholder Clips, 5x20mm Cylinder Fuse, Pins Inline, Horizontal, Keystone 3518P, http://www.keyelco.com/product-pdf.cfm?p=1387 -fuse clip open -0 -4 -2 -Fuse -Fuseholder_Clip-5x20mm_Littelfuse_100_Inline_P20.50x4.60mm_D1.30mm_Horizontal -Fuseholder Clips, 5x20mm Cylinder Fuse, Pins Inline, Horizontal, Littelfuse 100, https://m.littelfuse.com/~/media/electronics/datasheets/fuse_clips/littelfuse_fuse_clip_100_445_030_520_datasheet.pdf.pdf -fuse clip open -0 -4 -2 -Fuse -Fuseholder_Clip-5x20mm_Littelfuse_111_Inline_P20.00x5.00mm_D1.05mm_Horizontal -Fuseholder Clips, 5x20mm Cylinder Fuse, Pins Inline, Horizontal, Littelfuse 111, https://m.littelfuse.com/~/media/electronics/datasheets/fuse_clips/littelfuse_fuse_clip_111_519_datasheet.pdf.pdf -fuse clip open -0 -4 -2 -Fuse -Fuseholder_Clip-5x20mm_Littelfuse_111_Lateral_P18.80x5.00mm_D1.17mm_Horizontal -Fuseholder Clips, 5x20mm Cylinder Fuse, Pins Inline, Horizontal, Littelfuse 111 (501 and 506), https://m.littelfuse.com/~/media/electronics/datasheets/fuse_clips/littelfuse_fuse_clip_111_datasheet.pdf.pdf -fuse clip open -0 -4 -2 -Fuse -Fuseholder_Clip-5x20mm_Littelfuse_445-030_Inline_P20.50x5.20mm_D1.30mm_Horizontal -Fuseholder Clips, 5x20mm Cylinder Fuse, Pins Inline, Horizontal, Littelfuse 445/030, https://m.littelfuse.com/~/media/electronics/datasheets/fuse_clips/littelfuse_fuse_clip_100_445_030_520_datasheet.pdf.pdf -fuse clip open -0 -4 -2 -Fuse -Fuseholder_Clip-5x20mm_Littelfuse_519_Inline_P20.60x5.00mm_D1.00mm_Horizontal -Fuseholder Clips, 5x20mm Cylinder Fuse, Pins Inline, Horizontal, Littelfuse 519, https://m.littelfuse.com/~/media/electronics/datasheets/fuse_clips/littelfuse_fuse_clip_111_519_datasheet.pdf.pdf -fuse clip open -0 -4 -2 -Fuse -Fuseholder_Clip-5x20mm_Littelfuse_520_Inline_P20.50x5.80mm_D1.30mm_Horizontal -Fuseholder Clips, 5x20mm Cylinder Fuse, Pins Inline, Horizontal, Littelfuse 520, https://m.littelfuse.com/~/media/electronics/datasheets/fuse_clips/littelfuse_fuse_clip_100_445_030_520_datasheet.pdf.pdf -fuse clip open -0 -4 -2 -Fuse -Fuseholder_Clip-5x20mm_Littelfuse_521_Lateral_P17.00x5.00mm_D1.30mm_Horizontal -Fuseholder Clips, 5x20mm Cylinder Fuse, Pins Inline, Horizontal, Littelfuse 521, https://www.littelfuse.com/~/media/electronics/datasheets/fuse_clips/littelfuse_fuse_clip_520_521_102071_datasheet.pdf.pdf -fuse clip open -0 -4 -2 -Fuse -Fuseholder_Clip-5x20mm_Schurter_CQM_Inline_P20.60x5.00mm_D1.00mm_Horizontal -Fuseholder Clips, 5x20mm Cylinder Fuse, Pins Inline, Horizontal, Schurter CQM (0752), https://www.schurter.com/en/datasheet/typ_CQM.pdf -fuse clip open -0 -4 -2 -Fuse -Fuseholder_Clip-5x20mm_Schurter_OG_Lateral_P15.00x5.00mm_D1.3mm_Horizontal -Fuseholder Clips, 5x20mm Cylinder Fuse, Pins Inline, Horizontal, Schurter OG, https://ch.schurter.com/en/datasheet/typ_OG__Clip__5x20.pdf -fuse clip open -0 -4 -2 -Fuse -Fuseholder_Clip-6.3x32mm_Littelfuse_102_122_Inline_P34.21x7.62mm_D1.98mm_Horizontal -Fuseholder Clips, 6.3x32mm Cylinder Fuse, Pins Inline, Horizontal, Littelfuse 102/122 Straight Leads, https://www.littelfuse.com/~/media/electronics/datasheets/fuse_clips/littelfuse_fuse_clip_102_122_datasheet.pdf.pdf -fuse clip open -0 -4 -2 -Fuse -Fuseholder_Clip-6.3x32mm_Littelfuse_102_Inline_P34.21x7.62mm_D2.54mm_Horizontal -Fuseholder Clips, 6.3x32mm Cylinder Fuse, Pins Inline, Horizontal, Littelfuse 102 Bowed Leads, https://www.littelfuse.com/~/media/electronics/datasheets/fuse_clips/littelfuse_fuse_clip_102_122_datasheet.pdf.pdf -fuse clip open -0 -4 -2 -Fuse -Fuseholder_Clip-6.3x32mm_Littelfuse_122_Inline_P34.21x7.62mm_D2.54mm_Horizontal -Fuseholder Clips, 6.3x32mm Cylinder Fuse, Pins Inline, Horizontal, Littelfuse 122 Bowed Leads, https://www.littelfuse.com/~/media/electronics/datasheets/fuse_clips/littelfuse_fuse_clip_102_122_datasheet.pdf.pdf -fuse clip open -0 -4 -2 -Fuse -Fuseholder_Clip-6.3x32mm_Littelfuse_102071_Inline_P34.70x7.60mm_D2.00mm_Horizontal -Fuseholder Clips, 6.3x32mm Cylinder Fuse, Pins Inline, Horizontal, Littelfuse 102071, https://www.littelfuse.com/~/media/electronics/datasheets/fuse_clips/littelfuse_fuse_clip_520_521_102071_datasheet.pdf.pdf -fuse clip open -0 -4 -2 -Fuse -Fuseholder_Cylinder-5x20mm_Bulgin_FX0456_Vertical_Closed -Fuseholder, 5x20, closed, vertical, Bulgin, FX0456, https://www.bulgin.com/products/pub/media/bulgin/data/Fuseholders.pdf -Fuseholder 5x20 closed vertical Bulgin FX0456 Sicherungshalter -0 -2 -2 -Fuse -Fuseholder_Cylinder-5x20mm_Bulgin_FX0457_Horizontal_Closed -Fuseholder, 5x20, closed, horizontal, Bulgin, FX0457, Sicherungshalter, -Fuseholder 5x20 closed horizontal Bulgin FX0457 Sicherungshalter -0 -2 -2 -Fuse -Fuseholder_Cylinder-5x20mm_EATON_H15-V-1_Vertical_Closed -PCB fuse holders for 5 mm x 20 mm fuses; 250V; 10A (http://www.cooperindustries.com/content/dam/public/bussmann/Electronics/Resources/product-datasheets/bus-elx-ds-4426-h15.pdf) -fuse holder vertical 5x20mm -0 -2 -2 -Fuse -Fuseholder_Cylinder-5x20mm_EATON_HBV_Vertical_Closed -5 mm x 20 mm fuse holders; Vertical w/ Stability Pins; 250V; 6.3-16A (http://www.cooperindustries.com/content/dam/public/bussmann/Electronics/Resources/product-datasheets/Bus_Elx_DS_2118_HB_PCB_Series.pdf) -fuse holder vertical 5x20mm -0 -2 -2 -Fuse -Fuseholder_Cylinder-5x20mm_EATON_HBW_Vertical_Closed -5 mm x 20 mm fuse holders; Vertical w/o Stability Pins; 250V; 6.3-16A (http://www.cooperindustries.com/content/dam/public/bussmann/Electronics/Resources/product-datasheets/Bus_Elx_DS_2118_HB_PCB_Series.pdf) -fuse holder vertical 5x20mm -0 -2 -2 -Fuse -Fuseholder_Cylinder-5x20mm_Schurter_0031_8201_Horizontal_Open -Fuseholder horizontal open, 5x20mm, 500V, 16A, Schurter 0031.8201, https://us.schurter.com/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_OGN.pdf -Fuseholder horizontal open 5x20 Schurter 0031.8201 -0 -2 -2 -Fuse -Fuseholder_Cylinder-5x20mm_Schurter_FAB_0031-355x_Horizontal_Closed -Fuseholder 5x20mm horizontal Shurter model FAB, Suitable for order numbers 0031.3551 and 0031.3558 (https://www.schurter.com/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_FAB.pdf) -Fuseholder 5x20mm closed horizontal -0 -2 -2 -Fuse -Fuseholder_Cylinder-5x20mm_Schurter_FPG4_Vertical_Closed -Shock-Safe Fuseholder, 5 x 20 mm, Slotted Cap/Fingergrip, vertical, IEC 60335-1; 250VAC/10A VDE; 500V/16A UL/CSA (https://us.schurter.com/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_FPG4.pdf) -fuse holder vertical 5x20mm -0 -4 -2 -Fuse -Fuseholder_Cylinder-5x20mm_Schurter_FUP_0031.2510_Horizontal_Closed -Shock-Safe closed Fuseholder, Schurter FUP Series, 5.0 x 20mm, Slotted Cap, horizontal, 500 VAC 4W/16A (VDE), 600V 30A (UL/CSA), order numbers: 0031.2510 (0031.2500 + 0031.2323), http://www.schurter.ch/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_FUP.pdf -Fuseholder 5x20mm horizontal closed -0 -3 -2 -Fuse -Fuseholder_Cylinder-5x20mm_Schurter_OGN-SMD_Horizontal_Open -Fuseholder horizontal open, 5x20mm, 500V, 16A (https://us.schurter.com/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_OGN-SMD.pdf) -Fuseholder horizontal open 5x20 Schurter 0031.8221 -0 -2 -2 -Fuse -Fuseholder_Cylinder-5x20mm_Stelvio-Kontek_PTF78_Horizontal_Open -https://www.tme.eu/en/Document/3b48dbe2b9714a62652c97b08fcd464b/PTF78.pdf -Fuseholder horizontal open 5x20 Stelvio-Kontek PTF/78 -0 -2 -2 -Fuse -Fuseholder_Cylinder-5x20mm_Wuerth_696103101002-SMD_Horizontal_Open -Fuseholder horizontal open 5x20mm 250V 10A Würth 696103101002 -Fuseholder horizontal open 5x20mm 250V 10A -0 -2 -2 -Fuse -Fuseholder_Cylinder-6.3x32mm_Schurter_0031-8002_Horizontal_Open -Fuseholder, horizontal, open, 6.3x32, Schurter, 0031.8002, https://www.schurter.com/en/datasheet/typ_OG__Holder__6.3x32.pdf -Fuseholder horizontal open 6.3x32 Schurter 0031.8002 -0 -2 -2 -Fuse -Fuseholder_Cylinder-6.3x32mm_Schurter_FUP_0031.2520_Horizontal_Closed -Shock-Safe closed Fuseholder, Schurter FUP Series, 6.3 x 32 mm, Slotted Cap, horizontal, 500 VAC 4W/16A (VDE), 600V 30A (UL/CSA), order numbers: 0031.2520 (0031.2500 + 0031.2321), http://www.schurter.ch/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_FUP.pdf -Fuseholder 6.3x32mm horizontal closed -0 -3 -2 -Fuse -Fuseholder_Keystone_3555-2 -Maxi APX ATX Automotive Blade Fuse Clip Holder https://www.keyelco.com/userAssets/file/M65p40.pdf -Maxi APX ATX Automotive Blade Fuse Clip Holder -0 -4 -2 -Fuse -Fuseholder_Littelfuse_100_series_5x20mm -Littelfuse clips, https://www.littelfuse.com/~/media/electronics/datasheets/fuse_clips/littelfuse_fuse_clip_100_445_030_520_datasheet.pdf.pdf -Fuseholder clips -0 -4 -2 -Fuse -Fuseholder_Littelfuse_100_series_5x25mm -Littelfuse clips, https://www.littelfuse.com/~/media/electronics/datasheets/fuse_clips/littelfuse_fuse_clip_100_445_030_520_datasheet.pdf.pdf -Fuseholder clips -0 -4 -2 -Fuse -Fuseholder_Littelfuse_100_series_5x30mm -Littelfuse clips, https://www.littelfuse.com/~/media/electronics/datasheets/fuse_clips/littelfuse_fuse_clip_100_445_030_520_datasheet.pdf.pdf -Fuseholder clips -0 -4 -2 -Fuse -Fuseholder_Littelfuse_445_030_series_5x20mm -Littelfuse clips, https://www.littelfuse.com/~/media/electronics/datasheets/fuse_clips/littelfuse_fuse_clip_100_445_030_520_datasheet.pdf.pdf -Fuseholder clips -0 -4 -2 -Fuse -Fuseholder_Littelfuse_445_030_series_5x25mm -Littelfuse clips, https://www.littelfuse.com/~/media/electronics/datasheets/fuse_clips/littelfuse_fuse_clip_100_445_030_520_datasheet.pdf.pdf -Fuseholder clips -0 -4 -2 -Fuse -Fuseholder_Littelfuse_445_030_series_5x30mm -Littelfuse clips, https://www.littelfuse.com/~/media/electronics/datasheets/fuse_clips/littelfuse_fuse_clip_100_445_030_520_datasheet.pdf.pdf -Fuseholder clips -0 -4 -2 -Fuse -Fuseholder_Littelfuse_Nano2_154x -Littelfuse NANO2 holder, https://www.littelfuse.com/~/media/electronics/datasheets/fuses/littelfuse_fuse_154_154t_154l_154tl_datasheet.pdf.pdf -SMD Nano2 holder -0 -2 -2 -Fuse -Fuseholder_Littelfuse_Nano2_157x -Littelfuse NANO2 holder, https://www.littelfuse.com/~/media/electronics/datasheets/fuses/littelfuse_fuse_157_datasheet.pdf.pdf -SMD Nano2 holder -0 -2 -2 -Fuse -Fuseholder_TR5_Littelfuse_No560_No460 -Fuse, Fuseholder, TR5, Littelfuse/Wickmann, No. 460, No560, https://www.littelfuse.com/~/media/electronics/datasheets/fuse_holders/littelfuse_fuse_holder_559_560_datasheet.pdf.pdf -Fuse Fuseholder TR5 Littelfuse/Wickmann No. 460 No560 -0 -2 -2 -Heatsink -Heatsink_35x26mm_1xFixation3mm_Fischer-SK486-35 -Heatsink, 35mm x 26mm, 1x Fixation 3mm, Fischer SK486-35 -heatsink -0 -1 -1 -Heatsink -Heatsink_38x38mm_SpringFixation -Heatsink, 38x38mm, Spring Fixation, diagonal, -heatsink -0 -4 -1 -Heatsink -Heatsink_62x40mm_2xFixation3mm -Heatsink, 62 x 40mm, 2x 3mm Drills, -heatsink -0 -2 -1 -Heatsink -Heatsink_125x35x50mm_3xFixationM3 -Heatsink, 125x35x50mm, 3 fixation holes 3.2mm -heatsink -0 -0 -0 -Heatsink -Heatsink_AAVID_573300D00010G_TO-263 -Heatsink, 12.70mm x 26.16mm x 10.16, SMD, 18K/W, TO-263, D2 Pak, https://www.shopaavid.com/Product/573300D00000G -Heatsink AAVID TO-263 D2 Pak -0 -2 -1 -Heatsink -Heatsink_AAVID_576802B03900G -Heatsink, 14.48x12.7x19.05mm, TO-220/ TO-262, https://www.boydcorp.com/aavid-datasheets/Board-Level-Cooling-Plug-In-5768.pdf -heatsink -0 -1 -1 -Heatsink -Heatsink_AAVID_590302B03600G -Heatsink, 25.4x25.4x42.54mm, TO-220, https://www.boydcorp.com/aavid-datasheets/Board-Level-Cooling-Channel-5903.pdf -heatsink -0 -2 -2 -Heatsink -Heatsink_AAVID_TV5G_TO220_Horizontal -Heatsink TV5G TO-220 Horizontal, https://www.shopaavid.com/Product/TV-5G -Heatsink TV5G TO-220 Horizontal -0 -0 -0 -Heatsink -Heatsink_Fischer_FK224xx2201_25x8.3mm -25x8.3mm Heatsink, 18K/W, TO-220, https://www.fischerelektronik.de/web_fischer/en_GB/$catalogue/fischerData/PR/FK224_220_1_/datasheet.xhtml?branch=heatsinks -heatsink TO-220 -0 -2 -1 -Heatsink -Heatsink_Fischer_FK24413D2PAK_26x13mm -26x13 mm SMD heatsink for TO-252 TO-263 TO-268, https://www.fischerelektronik.de/pim/upload/fischerData/cadpdf/base/fk_244_13_d2_pak.pdf -heatsink TO-252 TO-263 TO-268 -0 -2 -1 -Heatsink -Heatsink_Fischer_FK24413DPAK_23x13mm -23x13 mm SMD heatsink for TO-252 TO-263 TO-268, https://www.fischerelektronik.de/pim/upload/fischerData/cadpdf/base/fk_244_13_d_pak.pdf -heatsink TO-252 TO-263 TO-268 -0 -2 -1 -Heatsink -Heatsink_Fischer_SK104-STC-STIC_35x13mm_2xDrill2.5mm -Heatsink, 35mm x 13mm, 2x Fixation 2,5mm Drill, Soldering, Fischer SK104-STC-STIC, -Heatsink fischer TO-220 -0 -2 -1 -Heatsink -Heatsink_Fischer_SK104-STCB_35x13mm__2xDrill3.5mm_ScrewM3 -Heatsink, 35mm x 13mm, 2x Fixation 2,5mm Drill, Soldering, Fischer SK104-STC-STIC, -Heatsink fischer TO-220 -0 -2 -1 -Heatsink -Heatsink_Fischer_SK129-STS_42x25mm_2xDrill2.5mm -Heatsink, Fischer SK129 -heatsink fischer -0 -2 -1 -Heatsink -Heatsink_SheetType_50x7mm_2Fixations -Heatsink, Sheet type, 50x7mm, 2 fixations (solder), -Heatsink sheet -0 -2 -1 -Heatsink -Heatsink_Stonecold_HS-132_32x14mm_2xFixation1.5mm -Heatsink, StoneCold HS -heatsink -0 -2 -1 -Inductor_SMD -L_6.3x6.3_H3 -Choke, SMD, 6.3x6.3mm 3mm height -Choke SMD -0 -2 -2 -Inductor_SMD -L_7.3x7.3_H3.5 -Choke, SMD, 7.3x7.3mm 3.5mm height -Choke SMD -0 -2 -2 -Inductor_SMD -L_7.3x7.3_H4.5 -Choke, SMD, 7.3x7.3mm 4.5mm height -Choke SMD -0 -2 -2 -Inductor_SMD -L_10.4x10.4_H4.8 -Choke, SMD, 10.4x10.4mm 4.8mm height -Choke SMD -0 -2 -2 -Inductor_SMD -L_12x12mm_H4.5mm -Choke, SMD, 12x12mm 4.5mm height -Choke SMD -0 -2 -2 -Inductor_SMD -L_12x12mm_H6mm -Choke, SMD, 12x12mm 6mm height -Choke SMD -0 -2 -2 -Inductor_SMD -L_12x12mm_H8mm -Choke, SMD, 12x12mm 8mm height -Choke SMD -0 -2 -2 -Inductor_SMD -L_0201_0603Metric -Inductor SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), generated with kicad-footprint-generator -inductor -0 -4 -2 -Inductor_SMD -L_0201_0603Metric_Pad0.64x0.40mm_HandSolder -Inductor SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), generated with kicad-footprint-generator -inductor handsolder -0 -4 -2 -Inductor_SMD -L_0402_1005Metric -Inductor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator -inductor -0 -2 -2 -Inductor_SMD -L_0402_1005Metric_Pad0.77x0.64mm_HandSolder -Inductor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator -inductor handsolder -0 -2 -2 -Inductor_SMD -L_0603_1608Metric -Inductor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator -inductor -0 -2 -2 -Inductor_SMD -L_0603_1608Metric_Pad1.05x0.95mm_HandSolder -Inductor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator -inductor handsolder -0 -2 -2 -Inductor_SMD -L_0805_2012Metric -Inductor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 80, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator -inductor -0 -2 -2 -Inductor_SMD -L_0805_2012Metric_Pad1.05x1.20mm_HandSolder -Inductor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 80, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator -inductor handsolder -0 -2 -2 -Inductor_SMD -L_0805_2012Metric_Pad1.15x1.40mm_HandSolder -Inductor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator -inductor handsolder -0 -2 -2 -Inductor_SMD -L_01005_0402Metric -Inductor SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), generated with kicad-footprint-generator -inductor -0 -4 -2 -Inductor_SMD -L_01005_0402Metric_Pad0.57x0.30mm_HandSolder -Inductor SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), generated with kicad-footprint-generator -inductor handsolder -0 -4 -2 -Inductor_SMD -L_1008_2520Metric -Inductor SMD 1008 (2520 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://ecsxtal.com/store/pdf/ECS-MPI2520-SMD-POWER-INDUCTOR.pdf), generated with kicad-footprint-generator -inductor -0 -2 -2 -Inductor_SMD -L_1008_2520Metric_Pad1.43x2.20mm_HandSolder -Inductor SMD 1008 (2520 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://ecsxtal.com/store/pdf/ECS-MPI2520-SMD-POWER-INDUCTOR.pdf), generated with kicad-footprint-generator -inductor handsolder -0 -2 -2 -Inductor_SMD -L_1206_3216Metric -Inductor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 80, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator -inductor -0 -2 -2 -Inductor_SMD -L_1206_3216Metric_Pad1.22x1.90mm_HandSolder -Inductor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 80, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator -inductor handsolder -0 -2 -2 -Inductor_SMD -L_1206_3216Metric_Pad1.42x1.75mm_HandSolder -Inductor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator -inductor handsolder -0 -2 -2 -Inductor_SMD -L_1210_3225Metric -Inductor SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator -inductor -0 -2 -2 -Inductor_SMD -L_1210_3225Metric_Pad1.42x2.65mm_HandSolder -Inductor SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator -inductor handsolder -0 -2 -2 -Inductor_SMD -L_1806_4516Metric -Inductor SMD 1806 (4516 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 80, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator -inductor -0 -2 -2 -Inductor_SMD -L_1806_4516Metric_Pad1.45x1.90mm_HandSolder -Inductor SMD 1806 (4516 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 80, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator -inductor handsolder -0 -2 -2 -Inductor_SMD -L_1812_4532Metric -Inductor SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), generated with kicad-footprint-generator -inductor -0 -2 -2 -Inductor_SMD -L_1812_4532Metric_Pad1.30x3.40mm_HandSolder -Inductor SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), generated with kicad-footprint-generator -inductor handsolder -0 -2 -2 -Inductor_SMD -L_2010_5025Metric -Inductor SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator -inductor -0 -2 -2 -Inductor_SMD -L_2010_5025Metric_Pad1.52x2.65mm_HandSolder -Inductor SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator -inductor handsolder -0 -2 -2 -Inductor_SMD -L_2512_6332Metric -Inductor SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator -inductor -0 -2 -2 -Inductor_SMD -L_2512_6332Metric_Pad1.52x3.35mm_HandSolder -Inductor SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator -inductor handsolder -0 -2 -2 -Inductor_SMD -L_AVX_LMLP07A7 -Inductor, AVX Kyocera, LMLP Series, style D, 6.6mmx7.3mm, 3.0mm height. (Script generated with StandardBox.py) (https://datasheets.avx.com/LMLPD.pdf) -Inductor LMLP -0 -2 -2 -Inductor_SMD -L_Abracon_ASPI-0630LR -smd shielded power inductor https://abracon.com/Magnetics/power/ASPI-0630LR.pdf -inductor abracon smd shielded -0 -2 -2 -Inductor_SMD -L_Abracon_ASPI-3012S -smd shielded power inductor http://www.abracon.com/Magnetics/power/ASPI-3012S.pdf -inductor abracon smd shielded -0 -2 -2 -Inductor_SMD -L_Abracon_ASPI-4030S -smd shielded power inductor 4x4x3mm, Abracon ASPI-4030S, https://abracon.com/Magnetics/power/ASPI-4030S.pdf -inductor abracon smd shielded -0 -2 -2 -Inductor_SMD -L_Bourns-SRN1060 -Bourns SRN1060 series SMD inductor https://www.bourns.com/docs/Product-Datasheets/SRN1060.pdf -Bourns SRN1060 SMD inductor -0 -2 -2 -Inductor_SMD -L_Bourns-SRN4018 -Bourns SRN4018 series SMD inductor, https://www.bourns.com/docs/Product-Datasheets/SRN4018.pdf -Bourns SRN4018 SMD inductor -0 -2 -2 -Inductor_SMD -L_Bourns-SRN6028 -Bourns SRN6028 series SMD inductor -Bourns SRN6028 SMD inductor -0 -2 -2 -Inductor_SMD -L_Bourns-SRN8040_8x8.15mm -Bourns SRN8040 series SMD inductor 8x8.15mm, https://www.bourns.com/docs/Product-Datasheets/SRN8040.pdf -Bourns SRN8040 SMD inductor -0 -2 -2 -Inductor_SMD -L_Bourns-SRR1005 -Bourns SRR1005 series SMD inductor -Bourns SRR1005 SMD inductor -0 -2 -2 -Inductor_SMD -L_Bourns-SRU1028_10.0x10.0mm -Bourns SRU1028 series SMD inductor, https://www.bourns.com/docs/Product-Datasheets/SRU1028.pdf -Bourns SRU1028 SMD inductor -0 -2 -2 -Inductor_SMD -L_Bourns-SRU8028_8.0x8.0mm -Bourns SRU8028 series SMD inductor -Bourns SRU8028 SMD inductor -0 -2 -2 -Inductor_SMD -L_Bourns-SRU8043 -Bourns SRU8043 series SMD inductor -Bourns SRU8043 SMD inductor -0 -2 -2 -Inductor_SMD -L_Bourns_SDR1806 -https://www.bourns.com/docs/Product-Datasheets/SDR1806.pdf -Bourns SDR1806 -0 -2 -2 -Inductor_SMD -L_Bourns_SRF1260 -Inductor, Bourns, SRF1260, 12.5mmx12.5mm (Script generated with StandardBox.py) (https://www.bourns.com/docs/Product-Datasheets/SRF1260.pdf) -Inductor Bourns_SRF1260 -0 -4 -4 -Inductor_SMD -L_Bourns_SRN6045TA -http://www.bourns.com/docs/product-datasheets/srn6045ta.pdf -Semi-shielded Power Inductor -0 -2 -2 -Inductor_SMD -L_Bourns_SRN8040TA -https://www.bourns.com/docs/product-datasheets/srn8040ta.pdf -Inductor -0 -2 -2 -Inductor_SMD -L_Bourns_SRP1038C_10.0x10.0mm -Bourns SRP1038C series SMD inductor http://www.bourns.com/docs/Product-Datasheets/SRP1038C.pdf -Bourns SRP1038C SMD inductor -0 -2 -2 -Inductor_SMD -L_Bourns_SRP1245A -Bourns SRP1245A series SMD inductor http://www.bourns.com/docs/Product-Datasheets/SRP1245A.pdf -Bourns SRP1245A SMD inductor -0 -2 -2 -Inductor_SMD -L_Bourns_SRP1770TA_16.9x16.9mm -Bourns SRP1770TA series SMD Inductor http://www.bourns.com/docs/Product-Datasheets/SRP1770TA.pdf -Bourns SRP1770TA series SMD Inductor -0 -2 -2 -Inductor_SMD -L_Bourns_SRP2313AA -Bourns SRR1260 series SMD inductor http://www.bourns.com/docs/product-datasheets/srp2313aa.pdf -Bourns SRR1260 SMD inductor -0 -4 -2 -Inductor_SMD -L_Bourns_SRP5030T -Inductor, Bourns, SRP5030T, 5.7mmx5.2mm (Script generated with StandardBox.py) (https://www.bourns.com/data/global/pdfs/SRP5030T.pdf) -Inductor Bourns_SRP5030T -0 -2 -2 -Inductor_SMD -L_Bourns_SRP7028A_7.3x6.6mm -Shielded Power Inductors (https://www.bourns.com/docs/product-datasheets/srp7028a.pdf) -Shielded Inductors Bourns SMD SRP7028A -0 -2 -2 -Inductor_SMD -L_Bourns_SRR1208_12.7x12.7mm -Bourns SRP1208 series SMD inductor https://www.bourns.com/pdfs/SRR1208.pdf -Bourns SRP1208 SMD inductor -0 -2 -2 -Inductor_SMD -L_Bourns_SRR1210A -Bourns SRR1210A series SMD inductor https://www.bourns.com/docs/Product-Datasheets/SRR1210A.pdf -Bourns SRR1210A SMD inductor -0 -2 -2 -Inductor_SMD -L_Bourns_SRR1260 -Bourns SRR1260 series SMD inductor http://www.bourns.com/docs/Product-Datasheets/SRR1260.pdf -Bourns SRR1260 SMD inductor -0 -2 -2 -Inductor_SMD -L_Changjiang_FNR3010S -Inductor, Changjiang, FNR3010S, 3.0x3.0x1.0mm, https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf -Inductor wirewound power shielded -0 -2 -2 -Inductor_SMD -L_Changjiang_FNR3012S -Inductor, Changjiang, FNR3012S, 3.0x3.0x1.2mm, https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf -Inductor wirewound power shielded -0 -2 -2 -Inductor_SMD -L_Changjiang_FNR3015S -Inductor, Changjiang, FNR3015S, 3.0x3.0x1.5mm, https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf -Inductor wirewound power shielded -0 -2 -2 -Inductor_SMD -L_Changjiang_FNR3021S -Inductor, Changjiang, FNR3021S, 3.0x3.0x2.35mm, https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf -Inductor wirewound power shielded -0 -2 -2 -Inductor_SMD -L_Changjiang_FNR4010S -Inductor, Changjiang, FNR4010S, 4.0x4.0x1.0mm, https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf -Inductor wirewound power shielded -0 -2 -2 -Inductor_SMD -L_Changjiang_FNR4012S -Inductor, Changjiang, FNR4012S, 4.0x4.0x1.2mm, https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf -Inductor wirewound power shielded -0 -2 -2 -Inductor_SMD -L_Changjiang_FNR4015S -Inductor, Changjiang, FNR4015S, 4.0x4.0x1.65mm, https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf -Inductor wirewound power shielded -0 -2 -2 -Inductor_SMD -L_Changjiang_FNR4018S -Inductor, Changjiang, FNR4018S, 4.0x4.0x1.8mm, https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf -Inductor wirewound power shielded -0 -2 -2 -Inductor_SMD -L_Changjiang_FNR4020S -Inductor, Changjiang, FNR4020S, 4.0x4.0x2.0mm, https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf -Inductor wirewound power shielded -0 -2 -2 -Inductor_SMD -L_Changjiang_FNR4026S -Inductor, Changjiang, FNR4026S, 4.0x4.0x2.6mm, https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf -Inductor wirewound power shielded -0 -2 -2 -Inductor_SMD -L_Changjiang_FNR4030S -Inductor, Changjiang, FNR4030S, 4.0x4.0x3.0mm, https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf -Inductor wirewound power shielded -0 -2 -2 -Inductor_SMD -L_Changjiang_FNR5012S -Inductor, Changjiang, FNR5012S, 5.0x5.0x1.2mm, https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf -Inductor wirewound power shielded -0 -2 -2 -Inductor_SMD -L_Changjiang_FNR5015S -Inductor, Changjiang, FNR5015S, 5.0x5.0x1.5mm, https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf -Inductor wirewound power shielded -0 -2 -2 -Inductor_SMD -L_Changjiang_FNR5020S -Inductor, Changjiang, FNR5020S, 5.0x5.0x2.0mm, https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf -Inductor wirewound power shielded -0 -2 -2 -Inductor_SMD -L_Changjiang_FNR5030S -Inductor, Changjiang, FNR5030S, 5.0x5.0x3.0mm, https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf -Inductor wirewound power shielded -0 -2 -2 -Inductor_SMD -L_Changjiang_FNR5040S -Inductor, Changjiang, FNR5040S, 5.0x5.0x4.0mm, https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf -Inductor wirewound power shielded -0 -2 -2 -Inductor_SMD -L_Changjiang_FNR5045S -Inductor, Changjiang, FNR5045S, 5.0x5.0x4.5mm, https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf -Inductor wirewound power shielded -0 -2 -2 -Inductor_SMD -L_Changjiang_FNR6020S -Inductor, Changjiang, FNR6020S, 6.0x6.0x2.0mm, https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf -Inductor wirewound power shielded -0 -2 -2 -Inductor_SMD -L_Changjiang_FNR6028S -Inductor, Changjiang, FNR6028S, 6.0x6.0x2.8mm, https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf -Inductor wirewound power shielded -0 -2 -2 -Inductor_SMD -L_Changjiang_FNR6040S -Inductor, Changjiang, FNR6040S, 6.0x6.0x4.0mm, https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf -Inductor wirewound power shielded -0 -2 -2 -Inductor_SMD -L_Changjiang_FNR6045S -Inductor, Changjiang, FNR6045S, 6.0x6.0x4.5mm, https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf -Inductor wirewound power shielded -0 -2 -2 -Inductor_SMD -L_Changjiang_FNR8040S -Inductor, Changjiang, FNR8040S, 8.0x8.0x4.0mm, https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf -Inductor wirewound power shielded -0 -2 -2 -Inductor_SMD -L_Changjiang_FNR8050S -Inductor, Changjiang, FNR8050S, 8.0x8.0x5.0mm, https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf -Inductor wirewound power shielded -0 -2 -2 -Inductor_SMD -L_Changjiang_FNR8065S -Inductor, Changjiang, FNR8065S, 8.0x8.0x6.5mm, https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf -Inductor wirewound power shielded -0 -2 -2 -Inductor_SMD -L_Changjiang_FNR252010S -Inductor, Changjiang, FNR252010S, 2.5x2.0x1.0mm, https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf -Inductor wirewound power shielded -0 -2 -2 -Inductor_SMD -L_Changjiang_FNR252012S -Inductor, Changjiang, FNR252012S, 2.5x2.0x1.2mm, https://datasheet.lcsc.com/lcsc/1806131217_cjiang-Changjiang-Microelectronics-Tech-FNR5040S3R3NT_C167960.pdf -Inductor wirewound power shielded -0 -2 -2 -Inductor_SMD -L_Chilisin_BMRA00040415 -Inductor, Chilisin, BMRA00040415, 4.6x4.1x1.5mm, https://www.chilisin.com/upload/media/product/power/file/BMRx_Series.pdf -Inductor bmrx mchi -0 -2 -2 -Inductor_SMD -L_Chilisin_BMRA00040420 -Inductor, Chilisin, BMRA00040420, 4.6x4.1x2.0mm, https://www.chilisin.com/upload/media/product/power/file/BMRx_Series.pdf -Inductor bmrx mchi -0 -2 -2 -Inductor_SMD -L_Chilisin_BMRA00050520 -Inductor, Chilisin, BMRA00050520, 5.7x5.4x1.8mm, https://www.chilisin.com/upload/media/product/power/file/BMRx_Series.pdf -Inductor bmrx mchi -0 -2 -2 -Inductor_SMD -L_Chilisin_BMRA00050530 -Inductor, Chilisin, BMRA00050530, 5.7x5.4x3.0mm, https://www.chilisin.com/upload/media/product/power/file/BMRx_Series.pdf -Inductor bmrx mchi -0 -2 -2 -Inductor_SMD -L_Chilisin_BMRB00050512 -Inductor, Chilisin, BMRB00050512, 5.7x5.4x1.2mm, https://www.chilisin.com/upload/media/product/power/file/BMRx_Series.pdf -Inductor bmrx mchi -0 -2 -2 -Inductor_SMD -L_Chilisin_BMRB00050518 -Inductor, Chilisin, BMRB00050518, 5.7x5.4x1.8mm, https://www.chilisin.com/upload/media/product/power/file/BMRx_Series.pdf -Inductor bmrx mchi -0 -2 -2 -Inductor_SMD -L_Chilisin_BMRB00050518-B -Inductor, Chilisin, BMRB00050518-B, 5.4x5.2x1.6mm, https://www.chilisin.com/upload/media/product/power/file/BMRx_Series.pdf -Inductor bmrx mchi -0 -2 -2 -Inductor_SMD -L_Chilisin_BMRB00060612 -Inductor, Chilisin, BMRB00060612, 7.3x6.6x1.2mm, https://www.chilisin.com/upload/media/product/power/file/BMRx_Series.pdf -Inductor bmrx mchi -0 -2 -2 -Inductor_SMD -L_Chilisin_BMRB00060618 -Inductor, Chilisin, BMRB00060618, 7.3x6.6x1.6mm, https://www.chilisin.com/upload/media/product/power/file/BMRx_Series.pdf -Inductor bmrx mchi -0 -2 -2 -Inductor_SMD -L_Chilisin_BMRB00060624 -Inductor, Chilisin, BMRB00060624, 7.3x6.6x2.4mm, https://www.chilisin.com/upload/media/product/power/file/BMRx_Series.pdf -Inductor bmrx mchi -0 -2 -2 -Inductor_SMD -L_Chilisin_BMRB00060650 -Inductor, Chilisin, BMRB00060650, 7.3x6.6x5.0mm, https://www.chilisin.com/upload/media/product/power/file/BMRx_Series.pdf -Inductor bmrx mchi -0 -2 -2 -Inductor_SMD -L_Chilisin_BMRF00101040 -Inductor, Chilisin, BMRF00101040, 11.6x10.1x4.0mm, https://www.chilisin.com/upload/media/product/power/file/BMRx_Series.pdf -Inductor bmrx mchi -0 -2 -2 -Inductor_SMD -L_Chilisin_BMRF00131350 -Inductor, Chilisin, BMRF00131350, 13.8x12.6x5.0mm, https://www.chilisin.com/upload/media/product/power/file/BMRx_Series.pdf -Inductor bmrx mchi -0 -2 -2 -Inductor_SMD -L_Chilisin_BMRF00131360 -Inductor, Chilisin, BMRF00131360, 13.8x12.6x5.8mm, https://www.chilisin.com/upload/media/product/power/file/BMRx_Series.pdf -Inductor bmrx mchi -0 -2 -2 -Inductor_SMD -L_Chilisin_BMRF00171770 -Inductor, Chilisin, BMRF00171770, 17.15x17.15x6.8mm, https://www.chilisin.com/upload/media/product/power/file/BMRx_Series.pdf -Inductor bmrx mchi -0 -2 -2 -Inductor_SMD -L_Chilisin_BMRG00101030 -Inductor, Chilisin, BMRG00101030, 11.6x10.1x3.0mm, https://www.chilisin.com/upload/media/product/power/file/BMRx_Series.pdf -Inductor bmrx mchi -0 -2 -2 -Inductor_SMD -L_Chilisin_BMRG00131360 -Inductor, Chilisin, BMRG00131360, 13.8x12.6x6.0mm, https://www.chilisin.com/upload/media/product/power/file/BMRx_Series.pdf -Inductor bmrx mchi -0 -2 -2 -Inductor_SMD -L_Chilisin_BMRx00040412 -Inductor, Chilisin, BMRx00040412, 4.6x4.1x1.2mm, https://www.chilisin.com/upload/media/product/power/file/BMRx_Series.pdf -Inductor bmrx mchi -0 -2 -2 -Inductor_SMD -L_Chilisin_BMRx00050512-B -Inductor, Chilisin, BMRx00050512-B, 5.4x5.2x1.2mm, https://www.chilisin.com/upload/media/product/power/file/BMRx_Series.pdf -Inductor bmrx mchi -0 -2 -2 -Inductor_SMD -L_Chilisin_BMRx00050515 -Inductor, Chilisin, BMRx00050515, 5.7x5.4x1.5mm, https://www.chilisin.com/upload/media/product/power/file/BMRx_Series.pdf -Inductor bmrx mchi -0 -2 -2 -Inductor_SMD -L_Chilisin_BMRx00060615 -Inductor, Chilisin, BMRx00060615, 7.3x6.6x1.3mm, https://www.chilisin.com/upload/media/product/power/file/BMRx_Series.pdf -Inductor bmrx mchi -0 -2 -2 -Inductor_SMD -L_Chilisin_BMRx00060630 -Inductor, Chilisin, BMRx00060630, 7.3x6.6x3.0mm, https://www.chilisin.com/upload/media/product/power/file/BMRx_Series.pdf -Inductor bmrx mchi -0 -2 -2 -Inductor_SMD -L_Coilcraft_LPS3010 -Shielded Power Inductor SMD 3x3x1mm, Coilcraft LPS3010, https://www.coilcraft.com/pdfs/lps3010.pdf -inductor low profile -0 -2 -2 -Inductor_SMD -L_Coilcraft_LPS3314 -SMD Inductor, 3.3x3.3x1.4mm, Coilcraft LPS3314, https://www.coilcraft.com/pdfs/lps3314.pdf -L Coilcraft LPS3314 -0 -2 -2 -Inductor_SMD -L_Coilcraft_LPS4018 -SMD Inductor Coilcraft LPS4018 https://www.coilcraft.com/pdfs/lps4018.pdf -L Coilcraft LPS4018 -0 -2 -2 -Inductor_SMD -L_Coilcraft_LPS5030 -Shielded Power Inductor SMD, Coilcraft LPS5030, https://www.coilcraft.com/pdfs/lps5030.pdf, StepUp generated footprint -inductor -0 -2 -2 -Inductor_SMD -L_Coilcraft_XAL1010-XXX -Inductor, Coilcraft, XAL1010-XXX, 10.5x11.8x10.0mm, https://www.coilcraft.com/getmedia/dd74e670-e705-456a-9a69-585fe02eaf3c/xal1010.pdf -Inductor xal -0 -2 -2 -Inductor_SMD -L_Coilcraft_XAL1030-XXX -Inductor, Coilcraft, XAL1030-XXX, 10.5x11.8x3.1mm, https://www.coilcraft.com/getmedia/7b108457-7731-456d-9256-ca72f2e1a551/xal1030.pdf -Inductor xal -0 -2 -2 -Inductor_SMD -L_Coilcraft_XAL1060-XXX -Inductor, Coilcraft, XAL1060-XXX, 10.5x11.8x6.0mm, https://www.coilcraft.com/getmedia/8909f858-b441-4d60-acff-8b8ca36f9ede/xal1060.pdf -Inductor xal -0 -2 -2 -Inductor_SMD -L_Coilcraft_XAL1350-XXX -Inductor, Coilcraft, XAL1350-XXX, 13.2x14.2x5.0mm, https://www.coilcraft.com/getmedia/dc536f86-3a3b-454f-950e-8e153260e61c/xal1350.pdf -Inductor xal -0 -2 -2 -Inductor_SMD -L_Coilcraft_XAL1510-103 -Inductor, Coilcraft, XAL1510-103, 15.4x16.4x10.0mm, https://www.coilcraft.com/getmedia/cd1cef27-13f0-4568-8894-f7311475209b/xal1510.pdf -Inductor xal -0 -2 -2 -Inductor_SMD -L_Coilcraft_XAL1510-153 -Inductor, Coilcraft, XAL1510-153, 15.4x16.4x10.0mm, https://www.coilcraft.com/getmedia/cd1cef27-13f0-4568-8894-f7311475209b/xal1510.pdf -Inductor xal -0 -2 -2 -Inductor_SMD -L_Coilcraft_XAL1510-223 -Inductor, Coilcraft, XAL1510-223, 15.4x16.4x10.0mm, https://www.coilcraft.com/getmedia/cd1cef27-13f0-4568-8894-f7311475209b/xal1510.pdf -Inductor xal -0 -2 -2 -Inductor_SMD -L_Coilcraft_XAL1510-333 -Inductor, Coilcraft, XAL1510-333, 15.4x16.4x11.0mm, https://www.coilcraft.com/getmedia/cd1cef27-13f0-4568-8894-f7311475209b/xal1510.pdf -Inductor xal -0 -2 -2 -Inductor_SMD -L_Coilcraft_XAL1510-472 -Inductor, Coilcraft, XAL1510-472, 15.4x16.4x10.0mm, https://www.coilcraft.com/getmedia/cd1cef27-13f0-4568-8894-f7311475209b/xal1510.pdf -Inductor xal -0 -2 -2 -Inductor_SMD -L_Coilcraft_XAL1510-682 -Inductor, Coilcraft, XAL1510-682, 15.4x16.4x10.0mm, https://www.coilcraft.com/getmedia/cd1cef27-13f0-4568-8894-f7311475209b/xal1510.pdf -Inductor xal -0 -2 -2 -Inductor_SMD -L_Coilcraft_XAL1510-822 -Inductor, Coilcraft, XAL1510-822, 15.4x16.4x10.0mm, https://www.coilcraft.com/getmedia/cd1cef27-13f0-4568-8894-f7311475209b/xal1510.pdf -Inductor xal -0 -2 -2 -Inductor_SMD -L_Coilcraft_XAL1513-153 -Inductor, Coilcraft, XAL1513-153, 15.4x16.4x13.0mm, https://www.coilcraft.com/getmedia/129ad6f3-0445-47fd-a0b3-edeb49177c17/xal1513.pdf -Inductor xal -0 -2 -2 -Inductor_SMD -L_Coilcraft_XAL1580-102 -Inductor, Coilcraft, XAL1580-102, 15.4x16.4x8.2mm, https://www.coilcraft.com/getmedia/7fdfd306-5217-4ddc-b6b7-a2659ceeb6e3/xal1580.pdf -Inductor xal -0 -2 -2 -Inductor_SMD -L_Coilcraft_XAL1580-132 -Inductor, Coilcraft, XAL1580-132, 15.4x16.4x8.0mm, https://www.coilcraft.com/getmedia/7fdfd306-5217-4ddc-b6b7-a2659ceeb6e3/xal1580.pdf -Inductor xal -0 -2 -2 -Inductor_SMD -L_Coilcraft_XAL1580-182 -Inductor, Coilcraft, XAL1580-182, 15.4x16.4x8.0mm, https://www.coilcraft.com/getmedia/7fdfd306-5217-4ddc-b6b7-a2659ceeb6e3/xal1580.pdf -Inductor xal -0 -2 -2 -Inductor_SMD -L_Coilcraft_XAL1580-202 -Inductor, Coilcraft, XAL1580-202, 15.4x16.4x8.0mm, https://www.coilcraft.com/getmedia/7fdfd306-5217-4ddc-b6b7-a2659ceeb6e3/xal1580.pdf -Inductor xal -0 -2 -2 -Inductor_SMD -L_Coilcraft_XAL1580-302 -Inductor, Coilcraft, XAL1580-302, 15.4x16.4x8.0mm, https://www.coilcraft.com/getmedia/7fdfd306-5217-4ddc-b6b7-a2659ceeb6e3/xal1580.pdf -Inductor xal -0 -2 -2 -Inductor_SMD -L_Coilcraft_XAL1580-401 -Inductor, Coilcraft, XAL1580-401, 15.4x16.4x8.2mm, https://www.coilcraft.com/getmedia/7fdfd306-5217-4ddc-b6b7-a2659ceeb6e3/xal1580.pdf -Inductor xal -0 -2 -2 -Inductor_SMD -L_Coilcraft_XAL1580-452 -Inductor, Coilcraft, XAL1580-452, 15.4x16.4x8.0mm, https://www.coilcraft.com/getmedia/7fdfd306-5217-4ddc-b6b7-a2659ceeb6e3/xal1580.pdf -Inductor xal -0 -2 -2 -Inductor_SMD -L_Coilcraft_XAL1580-532 -Inductor, Coilcraft, XAL1580-532, 15.4x16.4x8.0mm, https://www.coilcraft.com/getmedia/7fdfd306-5217-4ddc-b6b7-a2659ceeb6e3/xal1580.pdf -Inductor xal -0 -2 -2 -Inductor_SMD -L_Coilcraft_XAL1580-612 -Inductor, Coilcraft, XAL1580-612, 15.4x16.4x8.0mm, https://www.coilcraft.com/getmedia/7fdfd306-5217-4ddc-b6b7-a2659ceeb6e3/xal1580.pdf -Inductor xal -0 -2 -2 -Inductor_SMD -L_Coilcraft_XAL1580-741 -Inductor, Coilcraft, XAL1580-741, 15.4x16.4x8.2mm, https://www.coilcraft.com/getmedia/7fdfd306-5217-4ddc-b6b7-a2659ceeb6e3/xal1580.pdf -Inductor xal -0 -2 -2 -Inductor_SMD -L_Coilcraft_XAL4020-XXX -Inductor, Coilcraft, XAL4020-XXX, 4.3x4.3x2.1mm, https://www.coilcraft.com/getmedia/6adcb47d-8b55-416c-976e-1e22e0d2848c/xal4000.pdf -Inductor xal -0 -2 -2 -Inductor_SMD -L_Coilcraft_XAL4030-XXX -Inductor, Coilcraft, XAL4030-XXX, 4.3x4.3x3.1mm, https://www.coilcraft.com/getmedia/6adcb47d-8b55-416c-976e-1e22e0d2848c/xal4000.pdf -Inductor xal -0 -2 -2 -Inductor_SMD -L_Coilcraft_XAL4040-XXX -Inductor, Coilcraft, XAL4040-XXX, 4.3x4.3x4.1mm, https://www.coilcraft.com/getmedia/6adcb47d-8b55-416c-976e-1e22e0d2848c/xal4000.pdf -Inductor xal -0 -2 -2 -Inductor_SMD -L_Coilcraft_XAL5020-XXX -Inductor, Coilcraft, XAL5020-XXX, 5.48x5.68x2.0mm, https://www.coilcraft.com/getmedia/1941eff1-c018-493c-8cd6-d88d2edf5029/xal5020.pdf -Inductor xal -0 -2 -2 -Inductor_SMD -L_Coilcraft_XAL5030-XXX -Inductor, Coilcraft, XAL5030-XXX, 5.48x5.68x3.1mm, https://www.coilcraft.com/getmedia/49bc46c8-4b2c-45b9-9b6c-2eaa235ea698/xal50xx.pdf -Inductor xal -0 -2 -2 -Inductor_SMD -L_Coilcraft_XAL5050-XXX -Inductor, Coilcraft, XAL5050-XXX, 5.48x5.68x5.1mm, https://www.coilcraft.com/getmedia/49bc46c8-4b2c-45b9-9b6c-2eaa235ea698/xal50xx.pdf -Inductor xal -0 -2 -2 -Inductor_SMD -L_Coilcraft_XAL6020-XXX -Inductor, Coilcraft, XAL6020-XXX, 6.56x6.76x2.1mm, https://www.coilcraft.com/getmedia/467ff589-8942-4e57-92d0-5bef6e04ce09/xal6020.pdf -Inductor xal -0 -2 -2 -Inductor_SMD -L_Coilcraft_XAL6030-XXX -Inductor, Coilcraft, XAL6030-XXX, 6.56x6.76x3.1mm, https://www.coilcraft.com/getmedia/ea51f14b-7f32-4dc6-8dfe-d4b70549040f/xal60xx.pdf -Inductor xal -0 -2 -2 -Inductor_SMD -L_Coilcraft_XAL6060-XXX -Inductor, Coilcraft, XAL6060-XXX, 6.56x6.76x6.1mm, https://www.coilcraft.com/getmedia/ea51f14b-7f32-4dc6-8dfe-d4b70549040f/xal60xx.pdf -Inductor xal -0 -2 -2 -Inductor_SMD -L_Coilcraft_XAL7020-102 -Inductor, Coilcraft, XAL7020-102, 8.0x8.0x2.0mm, https://www.coilcraft.com/getmedia/0197e98c-67f7-4375-9e38-14d7376a46f3/xal7020.pdf -Inductor xal -0 -2 -2 -Inductor_SMD -L_Coilcraft_XAL7020-122 -Inductor, Coilcraft, XAL7020-122, 8.0x8.0x2.0mm, https://www.coilcraft.com/getmedia/0197e98c-67f7-4375-9e38-14d7376a46f3/xal7020.pdf -Inductor xal -0 -2 -2 -Inductor_SMD -L_Coilcraft_XAL7020-151 -Inductor, Coilcraft, XAL7020-151, 8.0x8.0x2.05mm, https://www.coilcraft.com/getmedia/0197e98c-67f7-4375-9e38-14d7376a46f3/xal7020.pdf -Inductor xal -0 -2 -2 -Inductor_SMD -L_Coilcraft_XAL7020-152 -Inductor, Coilcraft, XAL7020-152, 8.0x8.0x2.0mm, https://www.coilcraft.com/getmedia/0197e98c-67f7-4375-9e38-14d7376a46f3/xal7020.pdf -Inductor xal -0 -2 -2 -Inductor_SMD -L_Coilcraft_XAL7020-222 -Inductor, Coilcraft, XAL7020-222, 8.0x8.0x2.0mm, https://www.coilcraft.com/getmedia/0197e98c-67f7-4375-9e38-14d7376a46f3/xal7020.pdf -Inductor xal -0 -2 -2 -Inductor_SMD -L_Coilcraft_XAL7020-271 -Inductor, Coilcraft, XAL7020-271, 8.0x8.0x2.05mm, https://www.coilcraft.com/getmedia/0197e98c-67f7-4375-9e38-14d7376a46f3/xal7020.pdf -Inductor xal -0 -2 -2 -Inductor_SMD -L_Coilcraft_XAL7020-331 -Inductor, Coilcraft, XAL7020-331, 8.0x8.0x2.0mm, https://www.coilcraft.com/getmedia/0197e98c-67f7-4375-9e38-14d7376a46f3/xal7020.pdf -Inductor xal -0 -2 -2 -Inductor_SMD -L_Coilcraft_XAL7020-471 -Inductor, Coilcraft, XAL7020-471, 8.0x8.0x2.0mm, https://www.coilcraft.com/getmedia/0197e98c-67f7-4375-9e38-14d7376a46f3/xal7020.pdf -Inductor xal -0 -2 -2 -Inductor_SMD -L_Coilcraft_XAL7020-681 -Inductor, Coilcraft, XAL7020-681, 8.0x8.0x2.0mm, https://www.coilcraft.com/getmedia/0197e98c-67f7-4375-9e38-14d7376a46f3/xal7020.pdf -Inductor xal -0 -2 -2 -Inductor_SMD -L_Coilcraft_XAL7030-102 -Inductor, Coilcraft, XAL7030-102, 8.0x8.0x3.1mm, https://www.coilcraft.com/getmedia/0d05a05e-d55d-4a0c-911d-46bd73686633/xal7030.pdf -Inductor xal -0 -2 -2 -Inductor_SMD -L_Coilcraft_XAL7030-103 -Inductor, Coilcraft, XAL7030-103, 8.0x8.0x3.1mm, https://www.coilcraft.com/getmedia/0d05a05e-d55d-4a0c-911d-46bd73686633/xal7030.pdf -Inductor xal -0 -2 -2 -Inductor_SMD -L_Coilcraft_XAL7030-152 -Inductor, Coilcraft, XAL7030-152, 8.0x8.0x3.1mm, https://www.coilcraft.com/getmedia/0d05a05e-d55d-4a0c-911d-46bd73686633/xal7030.pdf -Inductor xal -0 -2 -2 -Inductor_SMD -L_Coilcraft_XAL7030-161 -Inductor, Coilcraft, XAL7030-161, 8.0x8.0x3.1mm, https://www.coilcraft.com/getmedia/0d05a05e-d55d-4a0c-911d-46bd73686633/xal7030.pdf -Inductor xal -0 -2 -2 -Inductor_SMD -L_Coilcraft_XAL7030-222 -Inductor, Coilcraft, XAL7030-222, 8.0x8.0x3.1mm, https://www.coilcraft.com/getmedia/0d05a05e-d55d-4a0c-911d-46bd73686633/xal7030.pdf -Inductor xal -0 -2 -2 -Inductor_SMD -L_Coilcraft_XAL7030-272 -Inductor, Coilcraft, XAL7030-272, 8.0x8.0x3.1mm, https://www.coilcraft.com/getmedia/0d05a05e-d55d-4a0c-911d-46bd73686633/xal7030.pdf -Inductor xal -0 -2 -2 -Inductor_SMD -L_Coilcraft_XAL7030-301 -Inductor, Coilcraft, XAL7030-301, 8.0x8.0x3.1mm, https://www.coilcraft.com/getmedia/0d05a05e-d55d-4a0c-911d-46bd73686633/xal7030.pdf -Inductor xal -0 -2 -2 -Inductor_SMD -L_Coilcraft_XAL7030-332 -Inductor, Coilcraft, XAL7030-332, 8.0x8.0x3.1mm, https://www.coilcraft.com/getmedia/0d05a05e-d55d-4a0c-911d-46bd73686633/xal7030.pdf -Inductor xal -0 -2 -2 -Inductor_SMD -L_Coilcraft_XAL7030-472 -Inductor, Coilcraft, XAL7030-472, 8.0x8.0x3.1mm, https://www.coilcraft.com/getmedia/0d05a05e-d55d-4a0c-911d-46bd73686633/xal7030.pdf -Inductor xal -0 -2 -2 -Inductor_SMD -L_Coilcraft_XAL7030-562 -Inductor, Coilcraft, XAL7030-562, 8.0x8.0x3.1mm, https://www.coilcraft.com/getmedia/0d05a05e-d55d-4a0c-911d-46bd73686633/xal7030.pdf -Inductor xal -0 -2 -2 -Inductor_SMD -L_Coilcraft_XAL7030-601 -Inductor, Coilcraft, XAL7030-601, 8.0x8.0x3.1mm, https://www.coilcraft.com/getmedia/0d05a05e-d55d-4a0c-911d-46bd73686633/xal7030.pdf -Inductor xal -0 -2 -2 -Inductor_SMD -L_Coilcraft_XAL7030-682 -Inductor, Coilcraft, XAL7030-682, 8.0x8.0x3.1mm, https://www.coilcraft.com/getmedia/0d05a05e-d55d-4a0c-911d-46bd73686633/xal7030.pdf -Inductor xal -0 -2 -2 -Inductor_SMD -L_Coilcraft_XAL7030-822 -Inductor, Coilcraft, XAL7030-822, 8.0x8.0x3.1mm, https://www.coilcraft.com/getmedia/0d05a05e-d55d-4a0c-911d-46bd73686633/xal7030.pdf -Inductor xal -0 -2 -2 -Inductor_SMD -L_Coilcraft_XAL7050-XXX -Inductor, Coilcraft, XAL7050-XXX, 7.7x8.0x5.0mm, https://www.coilcraft.com/getmedia/13a991b3-4273-4be3-81ba-f3cf372b4691/xal7050.pdf -Inductor xal -0 -2 -2 -Inductor_SMD -L_Coilcraft_XAL7070-XXX -Inductor, Coilcraft, XAL7070-XXX, 7.7x8.0x7.0mm, https://www.coilcraft.com/getmedia/1ba55433-bcc8-4838-9b21-382f497e12e0/xal7070.pdf -Inductor xal -0 -2 -2 -Inductor_SMD -L_Coilcraft_XAL8050-223 -Inductor, Coilcraft, XAL8050-223, 8.3x8.8x5.0mm, https://www.coilcraft.com/getmedia/5885ede8-ea4f-464a-9dcb-18dbf143a845/xal8050.pdf -Inductor xal -0 -2 -2 -Inductor_SMD -L_Coilcraft_XAL8080-XXX -Inductor, Coilcraft, XAL8080-XXX, 8.3x8.8x8.0mm, https://www.coilcraft.com/getmedia/345e50d6-a804-4ecb-9a92-5185221faf3e/xal8080.pdf -Inductor xal -0 -2 -2 -Inductor_SMD -L_Coilcraft_XFL2010 -Coilcraft XFL2010, Shielded power inductor, 0808, 1.9x2.0mm, https://www.coilcraft.com/getmedia/50382b97-998f-4b75-b5ee-4a93b0ac4411/xfl2010.pdf -miniature -0 -2 -2 -Inductor_SMD -L_Coilcraft_XxL4020 -L_Coilcraft_XxL4020 https://www.coilcraft.com/pdfs/xfl4020.pdf -L Coilcraft XxL4020 -0 -2 -2 -Inductor_SMD -L_Coilcraft_XxL4030 -L_Coilcraft_XxL4030 https://www.coilcraft.com/pdfs/xfl4030.pdf -L Coilcraft XxL4030 -0 -2 -2 -Inductor_SMD -L_Coilcraft_XxL4040 -L_Coilcraft_XxL4040 https://www.coilcraft.com/pdfs/xal4000.pdf -L Coilcraft XxL4040 -0 -2 -2 -Inductor_SMD -L_CommonModeChoke_Coilcraft_0603USB -Coilcraft 0603USB Series Common Mode Choke, https://www.coilcraft.com/pdfs/0603usb.pdf -surface mount common mode bead -0 -4 -4 -Inductor_SMD -L_CommonModeChoke_Coilcraft_0805USB -Coilcraft 0805USB Series Common Mode Choke, https://www.coilcraft.com/pdfs/0805usb.pdf -surface mount common mode bead -0 -4 -4 -Inductor_SMD -L_CommonModeChoke_Coilcraft_1812CAN -Coilcraft 1812CAN Series Common Mode Choke, https://www.coilcraft.com/pdfs/1812can.pdf -surface mount common mode bead -0 -4 -4 -Inductor_SMD -L_CommonModeChoke_Murata_DLW5BTMxxxSQ2x_5x5mm -Wire Wound Chip Common Mode Choke Coil SMD, Murata DLW5BTxxxSQ2x, https://www.murata.com/products/productdata/8796762701854/EFLC0020.pdf, manual footprint -inductor common mode choke -0 -4 -4 -Inductor_SMD -L_CommonModeChoke_Wuerth_WE-SL5 -WE-SL5 SMT Common Mode Line Filter, https://www.we-online.de/katalog/en/WE-SL5/, https://www.we-online.de/katalog/datasheet/744272471.pdf -SMT Common Mode Line Filter -0 -4 -4 -Inductor_SMD -L_CommonMode_Delevan_4222 -API Delevan, Surface Mount Common Mode Bead, 4222 4222R, http://www.delevan.com/seriesPDFs/4222.pdf -surface mount common mode bead -0 -4 -4 -Inductor_SMD -L_CommonMode_Wuerth_WE-SL2 -http://katalog.we-online.de/en/pbs/WE-SL2?sid=5fbec16187#vs_t1:c1_ct:1 -Wuerth WE-SL2 -0 -4 -4 -Inductor_SMD -L_Eaton_MCL2012V1 -Inductor, Eaton, MCL2012V1, 2.0x1.2x0.9mm, https://eu.mouser.com/datasheet/2/87/eaton-mcl2012v1-multilayer-chip-inductor-data-shee-1622891.pdf -Inductor ferrite multilayer power -0 -2 -2 -Inductor_SMD -L_Fastron_PISN -Choke, Drossel, PISN, SMD, Fastron, -Choke Drossel PISN SMD Fastron -0 -2 -2 -Inductor_SMD -L_Fastron_PISN_Handsoldering -Choke, Drossel, PISN, SMD, Fastron, -Choke Drossel PISN SMD Fastron -0 -2 -2 -Inductor_SMD -L_Fastron_PISR -Choke, Drossel, PISR, Fastron, SMD, -Choke Drossel PISR Fastron SMD -0 -2 -2 -Inductor_SMD -L_Fastron_PISR_Handsoldering -Choke, Drossel, PISR, Fastron, SMD, -Choke Drossel PISR Fastron SMD -0 -2 -2 -Inductor_SMD -L_Ferrocore_DLG-0302 -Ferrocore DLG-0302 unshielded SMD power inductor, 3.0x2.8x2.5mm, https://www.tme.eu/Document/bda580f72a60a2225c2f6576c2740ae1/dlg-0504.pdf -smd inductor dlg-0302 -0 -2 -2 -Inductor_SMD -L_Ferrocore_DLG-0403 - Ferrocore DLG-0403 unshielded SMD power inductor, 4.5x4.0x3.2mm, https://www.tme.eu/Document/bda580f72a60a2225c2f6576c2740ae1/dlg-0504.pdf -smd inductor dlg-0403 -0 -2 -2 -Inductor_SMD -L_Ferrocore_DLG-0504 -Ferrocore DLG-0504 unshielded SMD power inductor, 5.8x5.2x4.5mm, https://www.tme.eu/Document/bda580f72a60a2225c2f6576c2740ae1/dlg-0504.pdf -smd inductor dlg-0504 -0 -2 -2 -Inductor_SMD -L_Ferrocore_DLG-0703 -Ferrocore DLG-0703 unshielded SMD power inductor, 7.8x7.0x3.5mm, https://www.tme.eu/Document/bda580f72a60a2225c2f6576c2740ae1/dlg-0504.pdf -smd inductor dlg-0703 -0 -2 -2 -Inductor_SMD -L_Ferrocore_DLG-0705 -Ferrocore DLG-0705 unshielded SMD power inductor, 7.8x7.0x5.0mm, https://www.tme.eu/Document/bda580f72a60a2225c2f6576c2740ae1/dlg-0504.pdf -smd inductor dlg-0705 -0 -2 -2 -Inductor_SMD -L_Ferrocore_DLG-1004 -Ferrocore DLG-1004 unshielded SMD power inductor, 10.0x9.0x4.0mm, https://www.tme.eu/Document/bda580f72a60a2225c2f6576c2740ae1/dlg-0504.pdf -smd inductor dlg-1004 -0 -2 -2 -Inductor_SMD -L_Ferrocore_DLG-1005 -Ferrocore DLG-1005 unshielded SMD power inductor, 10.0x9.0x5.4mm, https://www.tme.eu/Document/bda580f72a60a2225c2f6576c2740ae1/dlg-0504.pdf -smd inductor dlg-1005 -0 -2 -2 -Inductor_SMD -L_Murata_DEM35xxC -https://www.murata.com/~/media/webrenewal/products/inductor/chip/tokoproducts/wirewoundferritetypeforpl/m_dem3518c.ashx -Inductor SMD DEM35xxC -0 -2 -2 -Inductor_SMD -L_Murata_DFE201610P -Inductor, Murata, DFE201610P, 2.0x1.6x1.0mm, https://www.murata.com/~/media/webrenewal/products/inductor/chip/tokoproducts/wirewoundmetalalloychiptype/m_dfe201610p.ashx -Inductor power chip flatwire -0 -2 -2 -Inductor_SMD -L_Murata_LQH2MCNxxxx02_2.0x1.6mm -Inductor, Murata, LQH2MCN_02 series, 1.6x2.0x0.9mm (https://search.murata.co.jp/Ceramy/image/img/P02/JELF243A-0053.pdf) -chip coil inductor Murata LQH2MC -0 -2 -2 -Inductor_SMD -L_Murata_LQH55DN_5.7x5.0mm -Inductor, SMD, 5.7x5.0x4.7mm, https://search.murata.co.jp/Ceramy/image/img/P02/JELF243A-0045.pdf -inductor smd -0 -2 -2 -Inductor_SMD -L_Neosid_Air-Coil_SML_1turn_HDM0131A -Neosid, Air-Coil, SML, 1turn, HDM0131A, -Neosid Air-Coil SML 1turn HDM0131A -0 -2 -2 -Inductor_SMD -L_Neosid_Air-Coil_SML_2turn_HAM0231A -Neosid, Air-Coil, SML, 2turn, HAM0231A, -Neosid Air-Coil SML 2turn HAM0231A -0 -2 -2 -Inductor_SMD -L_Neosid_Air-Coil_SML_2turn_HDM0231A -Neosid, Air-Coil, SML, 2turn, HDM0231A, -Neosid Air-Coil SML 2turn HDM0231A -0 -2 -2 -Inductor_SMD -L_Neosid_Air-Coil_SML_3turn_HAM0331A -Neosid, Air-Coil, SML, 2turn, HAM0331A, -Neosid Air-Coil SML 3turn HAM0331A -0 -2 -2 -Inductor_SMD -L_Neosid_Air-Coil_SML_3turn_HDM0331A -Neosid, Air-Coil, SML, 3turn, HDM0331A, -Neosid Air-Coil SML 3turn HDM0331A -0 -2 -2 -Inductor_SMD -L_Neosid_Air-Coil_SML_4turn_HAM0431A -Neosid, Air-Coil, SML, 4turn, HAM0431A, -Neosid Air-Coil SML 4turn HAM0431A -0 -2 -2 -Inductor_SMD -L_Neosid_Air-Coil_SML_4turn_HDM0431A -Neosid, Air-Coil, SML, 4turn, HDM0431A, -Neosid Air-Coil SML 4turn HDM0431A -0 -2 -2 -Inductor_SMD -L_Neosid_Air-Coil_SML_5turn_HAM0531A -Neosid, Air-Coil, SML, 5turn, HAM0531A, -Neosid Air-Coil SML 5turn HAM0531A -0 -2 -2 -Inductor_SMD -L_Neosid_Air-Coil_SML_5turn_HDM0531A -Neosid, Air-Coil, SML, 5turn, HDM0531A, -Neosid Air-Coil SML 5turn HDM0531A -0 -2 -2 -Inductor_SMD -L_Neosid_Air-Coil_SML_6-10turn_HAM0631A-HAM1031A -Neosid, Air-Coil, SML, 6-10turn, HAM0631A-HAM1031A, -Neosid Air-Coil SML 6-10turn HAM0631A-HAM1031A -0 -2 -2 -Inductor_SMD -L_Neosid_Air-Coil_SML_6-10turn_HDM0431A-HDM1031A -Neosid, Air-Coil, SML, 6-10turn, HDM0431A-HDM1031A, -Neosid Air-Coil SML 6-10turn HDM0431A-HDM1031A -0 -2 -2 -Inductor_SMD -L_Neosid_Air-Coil_SML_6turn_HAM0631A -Neosid, Air-Coil, SML, 6turn, HAM0631A, -Neosid Air-Coil SML 6turn HAM0631A -0 -2 -2 -Inductor_SMD -L_Neosid_MicroCoil_Ms36-L -Neosid, Micro Coil, Inductor, Ms36-L, SMD, Fixed inductor, anti clockwise, https://neosid.de/en/products/inductors/rod-core-chokes/smd-rod-core-chokes/52026/ms-36/7-h?c=94 -Neosid Micro Coil Inductor Ms36-L SMD Fixed inductor anti clockwise -0 -2 -2 -Inductor_SMD -L_Neosid_Ms42 -Neosid, Inductor, SMs42, Fixed inductor, SMD, magneticaly shielded, https://neosid.de/import-data/product-pdf/neoFestind_Ms42.pdf -Neosid Inductor SMs42 Fixed inductor SMD magneticaly shielded -0 -2 -2 -Inductor_SMD -L_Neosid_Ms50 -Neosid, Power Inductor, Ms50, SMD, Fixed inductor, https://neosid.de/import-data/product-pdf/neoFestind_Ms50.pdf -Neosid Power Inductor Ms50 SMD Fixed inductor -0 -2 -2 -Inductor_SMD -L_Neosid_Ms50T -Neosid, Power Inductor, Ms50T, SMD, Fixed inductor, high temperature, https://neosid.de/import-data/product-pdf/neoFestind_Ms50T.pdf -Neosid Power Inductor Ms50T SMD Fixed inductor high temperature -0 -2 -2 -Inductor_SMD -L_Neosid_Ms85 -Neosid, Ms85, Ms85T, SMD Inductor, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_Ms85.pdf -Neosid Ms85 Ms85T SMD Inductor Fixed inductor SMD -0 -2 -2 -Inductor_SMD -L_Neosid_Ms85T -Neosid, Ms85, Ms85T, SMD Inductor, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_Ms85T.pdf -Neosid Ms85 Ms85T SMD Inductor Fixed inductor SMD -0 -2 -2 -Inductor_SMD -L_Neosid_Ms95 -Neosid,Inductor,Ms95, Ms95a, Ms95T, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_Ms95.pdf -NeosidInductorMs95 Ms95a Ms95T Fixed inductor SMD -0 -2 -2 -Inductor_SMD -L_Neosid_Ms95T -Neosid,Inductor,Ms95, Ms95a, Ms95T, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_Ms95T.pdf -NeosidInductorMs95 Ms95a Ms95T Fixed inductor SMD -0 -2 -2 -Inductor_SMD -L_Neosid_Ms95a -Neosid,Inductor,Ms95, Ms95a, Ms95T, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_Ms95a.pdf -NeosidInductorMs95 Ms95a Ms95T Fixed inductor SMD -0 -2 -2 -Inductor_SMD -L_Neosid_SM-NE95H -Neosid, Inductor,SM-NE95H, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_SMNE95H.pdf -Neosid Inductor SM-NE95H Fixed inductor SMD -0 -2 -2 -Inductor_SMD -L_Neosid_SM-NE127 -Neosid, Inductor, SM-NE127, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_SMNE127.pdf -Neosid Inductor SM-NE127 Fixed inductor SMD -0 -2 -2 -Inductor_SMD -L_Neosid_SM-NE127_HandSoldering -Neosid, Inductor, SM-NE127, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_SMNE127.pdf -Neosid Inductor SM-NE127 Fixed inductor SMD -0 -2 -2 -Inductor_SMD -L_Neosid_SM-NE150 -Neosid, Inductor, SM-NE150, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_SMNE150.pdf -Neosid Inductor SM-NE150 Fixed inductor SMD -0 -2 -2 -Inductor_SMD -L_Neosid_SM-PIC0512H -Neosid, Inductor, PIC0512H, Power Inductor, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_SMPIC0512H.pdf -Neosid Inductor PIC0512H Power Inductor Fixed inductor SMD -0 -2 -2 -Inductor_SMD -L_Neosid_SM-PIC0602H -Neosid, Power Inductor, SM-PIC0602H, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_SMPIC0602H.pdf -Neosid Power Inductor SM-PIC0602H Fixed inductor SMD -0 -2 -2 -Inductor_SMD -L_Neosid_SM-PIC0612H -Neosid, Power Inductor, SM-PIC0612H, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_SMPIC0612H.pdf -Neosid Power Inductor SM-PIC0612H Fixed inductor SMD -0 -2 -2 -Inductor_SMD -L_Neosid_SM-PIC1004H -Neosid, Inductor, SM-PIC1004H, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_SMPIC1004H.pdf -Neosid Inductor SM-PIC1004H Fixed inductor SMD -0 -2 -2 -Inductor_SMD -L_Neosid_SMS-ME3010 -Neosid, Inductor, SMS-ME3010, Fixed inductor, SMD, magnetically shielded, https://neosid.de/import-data/product-pdf/neoFestind_SMSME3010.pdf -Neosid Inductor SMS-ME3010 Fixed inductor SMD magnetically shielded -0 -2 -2 -Inductor_SMD -L_Neosid_SMS-ME3015 -Neosid, Power Inductor, SMS-ME3015, Fixed inductor, SMD, magnetically shielded, https://neosid.de/import-data/product-pdf/neoFestind_SMSME3015.pdf -Neosid Power Inductor SMS-ME3015 Fixed inductor SMD magnetically shielded -0 -2 -2 -Inductor_SMD -L_Neosid_SMs42 -Neosid, Inductor, SMs42, Fixed inductor, SMD, magneticaly shielded, https://neosid.de/import-data/product-pdf/neoFestind_ma_SMs42.pdf -Neosid Inductor SMs42 Fixed inductor SMD magneticaly shielded -0 -2 -2 -Inductor_SMD -L_Neosid_SMs50 -Neosid, Inductor, SMs50, Fixed inductor, SMD, magneticaly shielded, https://neosid.de/import-data/product-pdf/neoFestind_ma_SMs50.pdf -Neosid Inductor SMs50 Fixed inductor SMD magneticaly shielded -0 -2 -2 -Inductor_SMD -L_Neosid_SMs85 -Neosid, Inductor, SMs85, Fixed inductor, SMD, magnetically shielded, https://neosid.de/import-data/product-pdf/neoFestind_ma_SMs85.pdf -Neosid Inductor SMs85 Fixed inductor SMD magnetically shielded -0 -2 -2 -Inductor_SMD -L_Neosid_SMs95_SMs95p -Neosid, Inductor, SMs95, Fixed inductor, SMD, magnetically shielded, https://neosid.de/import-data/product-pdf/neoFestind_SMs95SMs95p.pdf -Neosid Inductor SMs95 Fixed inductor SMD magnetically shielded -0 -2 -2 -Inductor_SMD -L_Pulse_P059x -1:1, Power Inductor, https://productfinder.pulseelectronics.com/api/open/product-attachments/datasheet/p0599nl -inductor coil choke -0 -4 -4 -Inductor_SMD -L_Pulse_PA4320 -Inductor SMD Pulse PA4320 http://productfinder.pulseeng.com/products/datasheets/P787.pdf -Inductor SMD Pulse PA4320 -0 -2 -2 -Inductor_SMD -L_Pulse_PA4344 -Pulse PA4344 / PM4344 Series SMD Inductors https://productfinder.pulseelectronics.com/api/public/uploads/product-attachments/datasheet_p771_1608107700.pdf -Pulse PA4344 PM4344 Series SMD Inductors -0 -2 -2 -Inductor_SMD -L_Pulse_PA4349 -Shielded Molded High Current Power Inductors 23.5x22mm, https://productfinder.pulseelectronics.com/api/open/product-attachments/datasheet/pa4349.104anlt -Shielded Molded High Current Power Inductor -0 -2 -2 -Inductor_SMD -L_Sagami_CER1242B -Inductor, Sagami, h=4.5mm, http://www.sagami-elec.co.jp/file/CER1242B-CER1257B-CER1277B.pdf -inductor sagami cer12xxb smd -0 -2 -2 -Inductor_SMD -L_Sagami_CER1257B -Inductor, Sagami, h=6.0mm, http://www.sagami-elec.co.jp/file/CER1242B-CER1257B-CER1277B.pdf -inductor sagami cer12xxb smd -0 -2 -2 -Inductor_SMD -L_Sagami_CER1277B -Inductor, Sagami, h=8.0mm, http://www.sagami-elec.co.jp/file/CER1242B-CER1257B-CER1277B.pdf -inductor sagami cer12xxb smd -0 -2 -2 -Inductor_SMD -L_Sagami_CWR1242C -Sagami power inductor, CWR1242C, H=4.5mm (http://www.sagami-elec.co.jp/file/16Car_SMDCwr.pdf) -inductor sagami cwr12xx smd -0 -4 -2 -Inductor_SMD -L_Sagami_CWR1257C -Sagami power inductor, CWR1242C, H=6.0mm (http://www.sagami-elec.co.jp/file/16Car_SMDCwr.pdf) -inductor sagami cwr12xx smd -0 -4 -2 -Inductor_SMD -L_Sagami_CWR1277C -Sagami power inductor, CWR1242C, H=7.7mm (http://www.sagami-elec.co.jp/file/16Car_SMDCwr.pdf) -inductor sagami cwr12xx smd -0 -4 -2 -Inductor_SMD -L_SigTra_SC3316F -http://www.signaltransformer.com/sites/all/pdf/smd/P080_SC3316F.pdf -Choke -0 -2 -2 -Inductor_SMD -L_Sumida_CDMC6D28_7.25x6.5mm -SMD Power Inductor (http://products.sumida.com/products/pdf/CDMC6D28.pdf) -Inductor Sumida SMD CDMC6D28 -0 -2 -2 -Inductor_SMD -L_Sumida_CR75 -Inductor, Sumida, 8.1mm × 7.3mm × 5.5 mm, Unshielded, http://products.sumida.com/products/pdf/CR75.pdf -Inductor SMD CR75 Unshielded -0 -2 -2 -Inductor_SMD -L_Sunlord_MWSA0402S -Inductor, Sunlord, MWSA0402S, 4.4x4.2x1.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en -Inductor mwsa -0 -2 -2 -Inductor_SMD -L_Sunlord_MWSA0412S -Inductor, Sunlord, MWSA0412S, 4.4x4.2x1.0mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en -Inductor mwsa -0 -2 -2 -Inductor_SMD -L_Sunlord_MWSA0503S -Inductor, Sunlord, MWSA0503S, 5.4x5.2x2.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en -Inductor mwsa -0 -2 -2 -Inductor_SMD -L_Sunlord_MWSA0518S -Inductor, Sunlord, MWSA0518S, 5.4x5.2x1.6mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en -Inductor mwsa -0 -2 -2 -Inductor_SMD -L_Sunlord_MWSA0602S -Inductor, Sunlord, MWSA0602S, 7.0x6.6x1.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en -Inductor mwsa -0 -2 -2 -Inductor_SMD -L_Sunlord_MWSA0603S -Inductor, Sunlord, MWSA0603S, 7.0x6.6x2.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en -Inductor mwsa -0 -2 -2 -Inductor_SMD -L_Sunlord_MWSA0604S -Inductor, Sunlord, MWSA0604S, 7.0x6.6x3.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en -Inductor mwsa -0 -2 -2 -Inductor_SMD -L_Sunlord_MWSA0605S -Inductor, Sunlord, MWSA0605S, 7.0x6.6x4.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en -Inductor mwsa -0 -2 -2 -Inductor_SMD -L_Sunlord_MWSA0615S -Inductor, Sunlord, MWSA0615S, 7.0x6.6x1.3mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en -Inductor mwsa -0 -2 -2 -Inductor_SMD -L_Sunlord_MWSA0618S -Inductor, Sunlord, MWSA0618S, 7.0x6.6x1.6mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en -Inductor mwsa -0 -2 -2 -Inductor_SMD -L_Sunlord_MWSA0624S -Inductor, Sunlord, MWSA0624S, 7.0x6.6x2.2mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en -Inductor mwsa -0 -2 -2 -Inductor_SMD -L_Sunlord_MWSA0804S -Inductor, Sunlord, MWSA0804S, 8.2x8.8x3.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en -Inductor mwsa -0 -2 -2 -Inductor_SMD -L_Sunlord_MWSA1003S -Inductor, Sunlord, MWSA1003S, 11.5x10.0x2.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en -Inductor mwsa -0 -2 -2 -Inductor_SMD -L_Sunlord_MWSA1004S -Inductor, Sunlord, MWSA1004S, 11.0x10.0x3.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en -Inductor mwsa -0 -2 -2 -Inductor_SMD -L_Sunlord_MWSA1005S -Inductor, Sunlord, MWSA1005S, 11.5x10.0x4.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en -Inductor mwsa -0 -2 -2 -Inductor_SMD -L_Sunlord_MWSA1204S-1R0 -Inductor, Sunlord, MWSA1204S-1R0, 13.45x12.8x4.0mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en -Inductor mwsa -0 -2 -2 -Inductor_SMD -L_Sunlord_MWSA1204S-1R5 -Inductor, Sunlord, MWSA1204S-1R5, 13.45x12.8x4.0mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en -Inductor mwsa -0 -2 -2 -Inductor_SMD -L_Sunlord_MWSA1204S-2R2 -Inductor, Sunlord, MWSA1204S-2R2, 13.45x12.8x4.0mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en -Inductor mwsa -0 -2 -2 -Inductor_SMD -L_Sunlord_MWSA1204S-3R3 -Inductor, Sunlord, MWSA1204S-3R3, 13.45x12.8x4.0mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en -Inductor mwsa -0 -2 -2 -Inductor_SMD -L_Sunlord_MWSA1204S-4R7 -Inductor, Sunlord, MWSA1204S-4R7, 13.45x12.8x4.0mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en -Inductor mwsa -0 -2 -2 -Inductor_SMD -L_Sunlord_MWSA1204S-6R8 -Inductor, Sunlord, MWSA1204S-6R8, 13.45x12.8x4.0mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en -Inductor mwsa -0 -2 -2 -Inductor_SMD -L_Sunlord_MWSA1204S-100 -Inductor, Sunlord, MWSA1204S-100, 13.45x12.8x4.0mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en -Inductor mwsa -0 -2 -2 -Inductor_SMD -L_Sunlord_MWSA1204S-150 -Inductor, Sunlord, MWSA1204S-150, 13.45x12.8x4.0mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en -Inductor mwsa -0 -2 -2 -Inductor_SMD -L_Sunlord_MWSA1204S-220 -Inductor, Sunlord, MWSA1204S-220, 13.45x12.8x4.0mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en -Inductor mwsa -0 -2 -2 -Inductor_SMD -L_Sunlord_MWSA1204S-R22 -Inductor, Sunlord, MWSA1204S-R22, 13.45x12.8x4.0mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en -Inductor mwsa -0 -2 -2 -Inductor_SMD -L_Sunlord_MWSA1204S-R47 -Inductor, Sunlord, MWSA1204S-R47, 13.45x12.8x4.0mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en -Inductor mwsa -0 -2 -2 -Inductor_SMD -L_Sunlord_MWSA1204S-R68 -Inductor, Sunlord, MWSA1204S-R68, 13.45x12.8x4.0mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en -Inductor mwsa -0 -2 -2 -Inductor_SMD -L_Sunlord_MWSA1204S-R82 -Inductor, Sunlord, MWSA1204S-R82, 13.45x12.8x4.0mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en -Inductor mwsa -0 -2 -2 -Inductor_SMD -L_Sunlord_MWSA1205S-1R0 -Inductor, Sunlord, MWSA1205S-1R0, 13.45x12.6x4.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en -Inductor mwsa -0 -2 -2 -Inductor_SMD -L_Sunlord_MWSA1205S-1R5 -Inductor, Sunlord, MWSA1205S-1R5, 13.45x12.6x4.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en -Inductor mwsa -0 -2 -2 -Inductor_SMD -L_Sunlord_MWSA1205S-2R2 -Inductor, Sunlord, MWSA1205S-2R2, 13.45x12.6x4.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en -Inductor mwsa -0 -2 -2 -Inductor_SMD -L_Sunlord_MWSA1205S-3R3 -Inductor, Sunlord, MWSA1205S-3R3, 13.45x12.6x4.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en -Inductor mwsa -0 -2 -2 -Inductor_SMD -L_Sunlord_MWSA1205S-4R7 -Inductor, Sunlord, MWSA1205S-4R7, 13.45x12.6x4.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en -Inductor mwsa -0 -2 -2 -Inductor_SMD -L_Sunlord_MWSA1205S-6R8 -Inductor, Sunlord, MWSA1205S-6R8, 13.45x12.6x4.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en -Inductor mwsa -0 -2 -2 -Inductor_SMD -L_Sunlord_MWSA1205S-100 -Inductor, Sunlord, MWSA1205S-100, 13.45x12.6x4.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en -Inductor mwsa -0 -2 -2 -Inductor_SMD -L_Sunlord_MWSA1205S-150 -Inductor, Sunlord, MWSA1205S-150, 13.45x12.6x4.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en -Inductor mwsa -0 -2 -2 -Inductor_SMD -L_Sunlord_MWSA1205S-220 -Inductor, Sunlord, MWSA1205S-220, 13.45x12.6x4.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en -Inductor mwsa -0 -2 -2 -Inductor_SMD -L_Sunlord_MWSA1205S-330 -Inductor, Sunlord, MWSA1205S-330, 13.45x12.6x4.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en -Inductor mwsa -0 -2 -2 -Inductor_SMD -L_Sunlord_MWSA1205S-470 -Inductor, Sunlord, MWSA1205S-470, 13.45x12.6x4.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en -Inductor mwsa -0 -2 -2 -Inductor_SMD -L_Sunlord_MWSA1205S-R22 -Inductor, Sunlord, MWSA1205S-R22, 13.45x12.6x4.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en -Inductor mwsa -0 -2 -2 -Inductor_SMD -L_Sunlord_MWSA1205S-R36 -Inductor, Sunlord, MWSA1205S-R36, 13.45x12.6x4.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en -Inductor mwsa -0 -2 -2 -Inductor_SMD -L_Sunlord_MWSA1205S-R50 -Inductor, Sunlord, MWSA1205S-R50, 13.45x12.6x4.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en -Inductor mwsa -0 -2 -2 -Inductor_SMD -L_Sunlord_MWSA1205S-R68 -Inductor, Sunlord, MWSA1205S-R68, 13.45x12.6x4.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en -Inductor mwsa -0 -2 -2 -Inductor_SMD -L_Sunlord_MWSA1205S-R82 -Inductor, Sunlord, MWSA1205S-R82, 13.45x12.6x4.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en -Inductor mwsa -0 -2 -2 -Inductor_SMD -L_Sunlord_MWSA1206S-1R5 -Inductor, Sunlord, MWSA1206S-1R5, 13.45x12.6x5.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en -Inductor mwsa -0 -2 -2 -Inductor_SMD -L_Sunlord_MWSA1206S-2R2 -Inductor, Sunlord, MWSA1206S-2R2, 13.45x12.6x5.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en -Inductor mwsa -0 -2 -2 -Inductor_SMD -L_Sunlord_MWSA1206S-3R3 -Inductor, Sunlord, MWSA1206S-3R3, 13.45x12.6x5.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en -Inductor mwsa -0 -2 -2 -Inductor_SMD -L_Sunlord_MWSA1206S-4R7 -Inductor, Sunlord, MWSA1206S-4R7, 13.45x12.6x5.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en -Inductor mwsa -0 -2 -2 -Inductor_SMD -L_Sunlord_MWSA1206S-5R6 -Inductor, Sunlord, MWSA1206S-5R6, 13.45x12.6x5.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en -Inductor mwsa -0 -2 -2 -Inductor_SMD -L_Sunlord_MWSA1206S-6R8 -Inductor, Sunlord, MWSA1206S-6R8, 13.45x12.6x5.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en -Inductor mwsa -0 -2 -2 -Inductor_SMD -L_Sunlord_MWSA1206S-8R2 -Inductor, Sunlord, MWSA1206S-8R2, 13.45x12.6x5.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en -Inductor mwsa -0 -2 -2 -Inductor_SMD -L_Sunlord_MWSA1206S-100 -Inductor, Sunlord, MWSA1206S-100, 13.45x12.6x5.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en -Inductor mwsa -0 -2 -2 -Inductor_SMD -L_Sunlord_MWSA1206S-101 -Inductor, Sunlord, MWSA1206S-101, 13.45x12.6x5.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en -Inductor mwsa -0 -2 -2 -Inductor_SMD -L_Sunlord_MWSA1206S-120 -Inductor, Sunlord, MWSA1206S-120, 13.45x12.6x5.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en -Inductor mwsa -0 -2 -2 -Inductor_SMD -L_Sunlord_MWSA1206S-121 -Inductor, Sunlord, MWSA1206S-121, 13.45x12.6x5.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en -Inductor mwsa -0 -2 -2 -Inductor_SMD -L_Sunlord_MWSA1206S-150 -Inductor, Sunlord, MWSA1206S-150, 13.45x12.6x5.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en -Inductor mwsa -0 -2 -2 -Inductor_SMD -L_Sunlord_MWSA1206S-151 -Inductor, Sunlord, MWSA1206S-151, 13.45x12.6x5.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en -Inductor mwsa -0 -2 -2 -Inductor_SMD -L_Sunlord_MWSA1206S-180 -Inductor, Sunlord, MWSA1206S-180, 13.45x12.6x5.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en -Inductor mwsa -0 -2 -2 -Inductor_SMD -L_Sunlord_MWSA1206S-220 -Inductor, Sunlord, MWSA1206S-220, 13.45x12.6x5.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en -Inductor mwsa -0 -2 -2 -Inductor_SMD -L_Sunlord_MWSA1206S-270 -Inductor, Sunlord, MWSA1206S-270, 13.45x12.6x5.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en -Inductor mwsa -0 -2 -2 -Inductor_SMD -L_Sunlord_MWSA1206S-330 -Inductor, Sunlord, MWSA1206S-330, 13.45x12.6x5.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en -Inductor mwsa -0 -2 -2 -Inductor_SMD -L_Sunlord_MWSA1206S-470 -Inductor, Sunlord, MWSA1206S-470, 13.45x12.6x5.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en -Inductor mwsa -0 -2 -2 -Inductor_SMD -L_Sunlord_MWSA1206S-680 -Inductor, Sunlord, MWSA1206S-680, 13.45x12.6x5.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en -Inductor mwsa -0 -2 -2 -Inductor_SMD -L_Sunlord_MWSA1206S-R68 -Inductor, Sunlord, MWSA1206S-R68, 13.45x12.6x5.8mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en -Inductor mwsa -0 -2 -2 -Inductor_SMD -L_Sunlord_MWSA1265S -Inductor, Sunlord, MWSA1265S, 13.45x12.6x6.5mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en -Inductor mwsa -0 -2 -2 -Inductor_SMD -L_Sunlord_MWSA1707S -Inductor, Sunlord, MWSA1707S, 17.15x17.15x6.7mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en -Inductor mwsa -0 -2 -2 -Inductor_SMD -L_Sunlord_MWSA2213S -Inductor, Sunlord, MWSA2213S, 23.5x22.0x12.6mm, https://sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMjExMTUxNDQ4MDU0NTQucGRm&lan=en -Inductor mwsa -0 -2 -2 -Inductor_SMD -L_Sunlord_SWPA3010S -Inductor, Sunlord, SWPA3010S, 3.0x3.0x1.0mm, https://www.sunlordinc.com/UploadFiles/PDF_Cat/20120704094224784.pdf -Inductor swpa -0 -2 -2 -Inductor_SMD -L_Sunlord_SWPA3012S -Inductor, Sunlord, SWPA3012S, 3.0x3.0x1.2mm, https://www.sunlordinc.com/UploadFiles/PDF_Cat/20120704094224784.pdf -Inductor swpa -0 -2 -2 -Inductor_SMD -L_Sunlord_SWPA3015S -Inductor, Sunlord, SWPA3015S, 3.0x3.0x1.5mm, https://www.sunlordinc.com/UploadFiles/PDF_Cat/20120704094224784.pdf -Inductor swpa -0 -2 -2 -Inductor_SMD -L_Sunlord_SWPA4010S -Inductor, Sunlord, SWPA4010S, 4.0x4.0x1.0mm, https://www.sunlordinc.com/UploadFiles/PDF_Cat/20120704094224784.pdf -Inductor swpa -0 -2 -2 -Inductor_SMD -L_Sunlord_SWPA4012S -Inductor, Sunlord, SWPA4012S, 4.0x4.0x1.2mm, https://www.sunlordinc.com/UploadFiles/PDF_Cat/20120704094224784.pdf -Inductor swpa -0 -2 -2 -Inductor_SMD -L_Sunlord_SWPA4018S -Inductor, Sunlord, SWPA4018S, 4.0x4.0x1.8mm, https://www.sunlordinc.com/UploadFiles/PDF_Cat/20120704094224784.pdf -Inductor swpa -0 -2 -2 -Inductor_SMD -L_Sunlord_SWPA4020S -Inductor, Sunlord, SWPA4020S, 4.0x4.0x2.0mm, https://www.sunlordinc.com/UploadFiles/PDF_Cat/20120704094224784.pdf -Inductor swpa -0 -2 -2 -Inductor_SMD -L_Sunlord_SWPA4026S -Inductor, Sunlord, SWPA4026S, 4.0x4.0x2.6mm, https://www.sunlordinc.com/UploadFiles/PDF_Cat/20120704094224784.pdf -Inductor swpa -0 -2 -2 -Inductor_SMD -L_Sunlord_SWPA4030S -Inductor, Sunlord, SWPA4030S, 4.0x4.0x3.0mm, https://www.sunlordinc.com/UploadFiles/PDF_Cat/20120704094224784.pdf -Inductor swpa -0 -2 -2 -Inductor_SMD -L_Sunlord_SWPA5012S -Inductor, Sunlord, SWPA5012S, 5.0x5.0x1.2mm, https://www.sunlordinc.com/UploadFiles/PDF_Cat/20120704094224784.pdf -Inductor swpa -0 -2 -2 -Inductor_SMD -L_Sunlord_SWPA5020S -Inductor, Sunlord, SWPA5020S, 5.0x5.0x2.0mm, https://www.sunlordinc.com/UploadFiles/PDF_Cat/20120704094224784.pdf -Inductor swpa -0 -2 -2 -Inductor_SMD -L_Sunlord_SWPA5040S -Inductor, Sunlord, SWPA5040S, 5.0x5.0x4.0mm, https://www.sunlordinc.com/UploadFiles/PDF_Cat/20120704094224784.pdf -Inductor swpa -0 -2 -2 -Inductor_SMD -L_Sunlord_SWPA6020S -Inductor, Sunlord, SWPA6020S, 6.0x6.0x2.0mm, https://www.sunlordinc.com/UploadFiles/PDF_Cat/20120704094224784.pdf -Inductor swpa -0 -2 -2 -Inductor_SMD -L_Sunlord_SWPA6028S -Inductor, Sunlord, SWPA6028S, 6.0x6.0x2.8mm, https://www.sunlordinc.com/UploadFiles/PDF_Cat/20120704094224784.pdf -Inductor swpa -0 -2 -2 -Inductor_SMD -L_Sunlord_SWPA6040S -Inductor, Sunlord, SWPA6040S, 6.0x6.0x4.0mm, https://www.sunlordinc.com/UploadFiles/PDF_Cat/20120704094224784.pdf -Inductor swpa -0 -2 -2 -Inductor_SMD -L_Sunlord_SWPA6045S -Inductor, Sunlord, SWPA6045S, 6.0x6.0x4.5mm, https://www.sunlordinc.com/UploadFiles/PDF_Cat/20120704094224784.pdf -Inductor swpa -0 -2 -2 -Inductor_SMD -L_Sunlord_SWPA8040S -Inductor, Sunlord, SWPA8040S, 8.0x8.0x4.2mm, https://www.sunlordinc.com/UploadFiles/PDF_Cat/20120704094224784.pdf -Inductor swpa -0 -2 -2 -Inductor_SMD -L_Sunlord_SWPA252010S -Inductor, Sunlord, SWPA252010S, 2.5x2.0x1.0mm, https://www.sunlordinc.com/UploadFiles/PDF_Cat/20120704094224784.pdf -Inductor swpa -0 -2 -2 -Inductor_SMD -L_Sunlord_SWPA252012S -Inductor, Sunlord, SWPA252012S, 2.5x2.0x1.2mm, https://www.sunlordinc.com/UploadFiles/PDF_Cat/20120704094224784.pdf -Inductor swpa -0 -2 -2 -Inductor_SMD -L_Sunlord_SWRB1204S -Inductor, Sunlord, SWRB1204S, 12.5x12.5x5.0mm, https://www.sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMTA2MTAxMTMyMzc4MTEucGRm&lan=en -Inductor swrb -0 -2 -2 -Inductor_SMD -L_Sunlord_SWRB1205S -Inductor, Sunlord, SWRB1205S, 12.5x12.5x6.0mm, https://www.sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMTA2MTAxMTMyMzc4MTEucGRm&lan=en -Inductor swrb -0 -2 -2 -Inductor_SMD -L_Sunlord_SWRB1207S -Inductor, Sunlord, SWRB1207S, 12.5x12.5x8.0mm, https://www.sunlordinc.com/Download.aspx?file=L1VwbG9hZEZpbGVzL1BERl9DYXQvMjAyMTA2MTAxMTMyMzc4MTEucGRm&lan=en -Inductor swrb -0 -2 -2 -Inductor_SMD -L_TDK_MLZ1608 -Inductor, TDK, MLZ1608, 1.6x0.8x0.8mm, "https://product.tdk.com/system/files/dam/doc/product/inductor/inductor/smd/catalog/inductor_commercial_decoupling_mlz1608_en.pdf" -Inductor MLZ -0 -2 -2 -Inductor_SMD -L_TDK_MLZ2012_h0.85mm -Inductor, TDK, MLZ2012_h0.85mm, 2.0x1.25x0.85mm, "https://product.tdk.com/system/files/dam/doc/product/inductor/inductor/smd/catalog/inductor_commercial_decoupling_mlz2012_en.pdf" -Inductor MLZ -0 -2 -2 -Inductor_SMD -L_TDK_MLZ2012_h1.25mm -Inductor, TDK, MLZ2012_h1.25mm, 2.0x1.25x1.25mm, "https://product.tdk.com/system/files/dam/doc/product/inductor/inductor/smd/catalog/inductor_commercial_decoupling_mlz2012_en.pdf" -Inductor MLZ -0 -2 -2 -Inductor_SMD -L_TDK_NLV25_2.5x2.0mm -TDK NLV25, 2.5x2.0x1.8mm, https://product.tdk.com/info/en/catalog/datasheets/inductor_commercial_standard_nlv25-ef_en.pdf -tdk nlv25 nlcv25 nlfv25 -0 -2 -2 -Inductor_SMD -L_TDK_NLV32_3.2x2.5mm -TDK NLV32, 3.2x2.5x2.2mm, https://product.tdk.com/info/en/catalog/datasheets/inductor_commercial_standard_nlv32-ef_en.pdf -tdk nlv32 nlcv32 nlfv32 -0 -2 -2 -Inductor_SMD -L_TDK_SLF6025 -Inductor, TDK, SLF6025, 6.0mmx6.0mm (Script generated with StandardBox.py) (https://product.tdk.com/info/en/document/catalog/smd/inductor_commercial_power_slf6025_en.pdf) -Inductor TDK_SLF6025 -0 -2 -2 -Inductor_SMD -L_TDK_SLF6028 -Inductor, TDK, SLF6028, 6.0mmx6.0mm (Script generated with StandardBox.py) (https://product.tdk.com/info/en/document/catalog/smd/inductor_commercial_power_slf6028_en.pdf) -Inductor TDK_SLF6028 -0 -2 -2 -Inductor_SMD -L_TDK_SLF6045 -Inductor, TDK, SLF6045, 6.0mmx6.0mm (Script generated with StandardBox.py) (https://product.tdk.com/info/en/document/catalog/smd/inductor_commercial_power_slf6045_en.pdf) -Inductor TDK_SLF6045 -0 -2 -2 -Inductor_SMD -L_TDK_SLF7032 -Inductor, TDK, SLF7032, 7.0mmx7.0mm (Script generated with StandardBox.py) (https://product.tdk.com/info/en/document/catalog/smd/inductor_commercial_power_slf7032_en.pdf) -Inductor TDK_SLF7032 -0 -2 -2 -Inductor_SMD -L_TDK_SLF7045 -Inductor, TDK, SLF7045, 7.0mmx7.0mm (Script generated with StandardBox.py) (https://product.tdk.com/info/en/document/catalog/smd/inductor_commercial_power_slf7045_en.pdf) -Inductor TDK_SLF7045 -0 -2 -2 -Inductor_SMD -L_TDK_SLF7055 -Inductor, TDK, SLF7055, 7.0mmx7.0mm (Script generated with StandardBox.py) (https://product.tdk.com/info/en/document/catalog/smd/inductor_commercial_power_slf7055_en.pdf) -Inductor TDK_SLF7055 -0 -2 -2 -Inductor_SMD -L_TDK_SLF10145 -Inductor, TDK, SLF10145, 10.1mmx10.1mm (Script generated with StandardBox.py) (https://product.tdk.com/info/en/catalog/datasheets/inductor_automotive_power_slf10145-h_en.pdf) -Inductor TDK_SLF10145 -0 -2 -2 -Inductor_SMD -L_TDK_SLF10165 -Inductor, TDK, SLF10165, 10.1mmx10.1mm (Script generated with StandardBox.py) (https://product.tdk.com/info/en/catalog/datasheets/inductor_commercial_power_slf10165_en.pdf) -Inductor TDK_SLF10165 -0 -2 -2 -Inductor_SMD -L_TDK_SLF12555 -Inductor, TDK, SLF12555, 12.5mmx12.5mm (Script generated with StandardBox.py) (https://product.tdk.com/info/en/catalog/datasheets/inductor_commercial_power_slf12555_en.pdf) -Inductor SLF12555 -0 -2 -2 -Inductor_SMD -L_TDK_SLF12565 -Inductor, TDK, SLF12565, 12.5mmx12.5mm (Script generated with StandardBox.py) (https://product.tdk.com/info/en/catalog/datasheets/inductor_automotive_power_slf12565-h_en.pdf) -Inductor SLF12565 -0 -2 -2 -Inductor_SMD -L_TDK_SLF12575 -Inductor, TDK, SLF12575, 12.5mmx12.5mm (Script generated with StandardBox.py) (https://product.tdk.com/info/en/catalog/datasheets/inductor_automotive_power_slf12575-h_en.pdf) -Inductor SLF12575 -0 -2 -2 -Inductor_SMD -L_TDK_VLF10040 -Inductor,TDK, TDK-VLP-8040, 8.6mmx8.6mm -inductor TDK VLP smd VLF10040 -0 -2 -2 -Inductor_SMD -L_TDK_VLP8040 -Inductor,TDK, TDK-VLP-8040, 8.6mmx8.6mm -inductor TDK VLP smd VLP8040 -0 -2 -2 -Inductor_SMD -L_TDK_VLS6045EX_VLS6045AF -Inductor,TDK, VLS-6045, 6x6x4.5mm, https://product.tdk.com/system/files/dam/doc/product/inductor/inductor/smd/catalog/inductor_commercial_power_vls6045ex_en.pdf -inductor TDK VLS SMD VLS6045EF VLS6045AF -0 -2 -2 -Inductor_SMD -L_TaiTech_TMPC1265_13.5x12.5mm -Tai Tech TMPC1265 series SMD inductor https://datasheet.lcsc.com/lcsc/2009171439_TAI-TECH-TMPC1265HP-100MG-D_C305223.pdf, 13.5x12.5x6.2mm -Tai Tech TMPC1265 SMD inductor -0 -2 -2 -Inductor_SMD -L_Taiyo-Yuden_BK_Array_1206_3216Metric -Ferrite Bead Array 4x0603, Taiyo Yuden BK Series (see https://www.yuden.co.jp/productdata/catalog/mlci09_e.pdf) -ferrite bead array -0 -8 -8 -Inductor_SMD -L_Taiyo-Yuden_MD-1616 -Inductor, Taiyo Yuden, MD series, Taiyo-Yuden_MD-1616, 1.6mmx1.6mm -inductor taiyo-yuden md smd -0 -2 -2 -Inductor_SMD -L_Taiyo-Yuden_MD-2020 -Inductor, Taiyo Yuden, MD series, Taiyo-Yuden_MD-2020, 2.0mmx2.0mm -inductor taiyo-yuden md smd -0 -2 -2 -Inductor_SMD -L_Taiyo-Yuden_MD-3030 -Inductor, Taiyo Yuden, MD series, Taiyo-Yuden_MD-3030, 3.0mmx3.0mm -inductor taiyo-yuden md smd -0 -2 -2 -Inductor_SMD -L_Taiyo-Yuden_MD-4040 -Inductor, Taiyo Yuden, MD series, Taiyo-Yuden_MD-4040, 4.0mmx4.0mm -inductor taiyo-yuden md smd -0 -2 -2 -Inductor_SMD -L_Taiyo-Yuden_MD-5050 -Inductor, Taiyo Yuden, MD series, Taiyo-Yuden_MD-5050, 5.0mmx5.0mm -inductor taiyo-yuden md smd -0 -2 -2 -Inductor_SMD -L_Taiyo-Yuden_NR-20xx -Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-20xx, 2.0mmx2.0mm -inductor taiyo-yuden nr smd -0 -2 -2 -Inductor_SMD -L_Taiyo-Yuden_NR-20xx_HandSoldering -Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-20xx, 2.0mmx2.0mm -inductor taiyo-yuden nr smd -0 -2 -2 -Inductor_SMD -L_Taiyo-Yuden_NR-24xx -Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-24xx, 2.4mmx2.4mm -inductor taiyo-yuden nr smd -0 -2 -2 -Inductor_SMD -L_Taiyo-Yuden_NR-24xx_HandSoldering -Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-24xx, 2.4mmx2.4mm -inductor taiyo-yuden nr smd -0 -2 -2 -Inductor_SMD -L_Taiyo-Yuden_NR-30xx -Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-30xx, 3.0mmx3.0mm -inductor taiyo-yuden nr smd -0 -2 -2 -Inductor_SMD -L_Taiyo-Yuden_NR-30xx_HandSoldering -Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-30xx, 3.0mmx3.0mm -inductor taiyo-yuden nr smd -0 -2 -2 -Inductor_SMD -L_Taiyo-Yuden_NR-40xx -Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-40xx, 4.0mmx4.0mm -inductor taiyo-yuden nr smd -0 -2 -2 -Inductor_SMD -L_Taiyo-Yuden_NR-40xx_HandSoldering -Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-40xx, 4.0mmx4.0mm -inductor taiyo-yuden nr smd -0 -2 -2 -Inductor_SMD -L_Taiyo-Yuden_NR-50xx -Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-50xx, 4.9mmx4.9mm -inductor taiyo-yuden nr smd -0 -2 -2 -Inductor_SMD -L_Taiyo-Yuden_NR-50xx_HandSoldering -Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-50xx, 4.9mmx4.9mm -inductor taiyo-yuden nr smd -0 -2 -2 -Inductor_SMD -L_Taiyo-Yuden_NR-60xx -Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-60xx, 6.0mmx6.0mm -inductor taiyo-yuden nr smd -0 -2 -2 -Inductor_SMD -L_Taiyo-Yuden_NR-60xx_HandSoldering -Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-60xx, 6.0mmx6.0mm -inductor taiyo-yuden nr smd -0 -2 -2 -Inductor_SMD -L_Taiyo-Yuden_NR-80xx -Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-80xx, 8.0mmx8.0mm -inductor taiyo-yuden nr smd -0 -2 -2 -Inductor_SMD -L_Taiyo-Yuden_NR-80xx_HandSoldering -Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-80xx, 8.0mmx8.0mm -inductor taiyo-yuden nr smd -0 -2 -2 -Inductor_SMD -L_Taiyo-Yuden_NR-10050_9.8x10.0mm -Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-10050, 9.8mmx10.0mm, https://ds.yuden.co.jp/TYCOMPAS/or/specSheet?pn=NR10050T1R3N -inductor taiyo-yuden nr smd -0 -2 -2 -Inductor_SMD -L_Taiyo-Yuden_NR-10050_9.8x10.0mm_HandSoldering -Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-10050, 9.8mmx10.0mm, https://ds.yuden.co.jp/TYCOMPAS/or/specSheet?pn=NR10050T1R3N -inductor taiyo-yuden nr smd -0 -2 -2 -Inductor_SMD -L_TracoPower_TCK-047_5.2x5.8mm -Inductor, Traco, TCK-047, 5.2x5.8mm, https://www.tracopower.com/products/tck047.pdf -inductor smd traco -0 -2 -2 -Inductor_SMD -L_TracoPower_TCK-141 -Choke, SMD, 4.0x4.0mm 2.1mm height, https://www.tracopower.com/products/tck141.pdf -Choke SMD -0 -2 -2 -Inductor_SMD -L_Vishay_IFSC-1515AH_4x4x1.8mm -Low Profile, High Current Inductors (https://www.vishay.com/docs/34295/sc15ah01.pdf) -SMD Vishay Inductor Low Profile -0 -2 -2 -Inductor_SMD -L_Vishay_IHLP-1212 -Inductor, Vishay, IHLP series, 3.0mmx3.0mm -inductor vishay ihlp smd -0 -2 -2 -Inductor_SMD -L_Vishay_IHLP-1616 -Inductor, Vishay, IHLP series, 4.1mmx4.1mm -inductor vishay ihlp smd -0 -2 -2 -Inductor_SMD -L_Vishay_IHLP-2020 -Inductor, Vishay, IHLP series, 5.1mmx5.1mm -inductor vishay ihlp smd -0 -2 -2 -Inductor_SMD -L_Vishay_IHLP-2525 -Inductor, Vishay, IHLP series, 6.3mmx6.3mm -inductor vishay ihlp smd -0 -2 -2 -Inductor_SMD -L_Vishay_IHLP-4040 -Inductor, Vishay, IHLP series, 10.2mmx10.2mm -inductor vishay ihlp smd -0 -2 -2 -Inductor_SMD -L_Vishay_IHLP-5050 -Inductor, Vishay, IHLP series, 12.7mmx12.7mm -inductor vishay ihlp smd -0 -2 -2 -Inductor_SMD -L_Vishay_IHLP-6767 -Inductor, Vishay, IHLP series, 17.0mmx17.0mm -inductor vishay ihlp smd -0 -2 -2 -Inductor_SMD -L_Vishay_IHSM-3825 -Inductor, Vishay, Vishay_IHSM-3825, http://www.vishay.com/docs/34018/ihsm3825.pdf, 11.2mmx6.3mm -inductor vishay icsm smd -0 -2 -2 -Inductor_SMD -L_Vishay_IHSM-4825 -Inductor, Vishay, Vishay_IHSM-4825, http://www.vishay.com/docs/34019/ihsm4825.pdf, 13.7mmx6.3mm -inductor vishay icsm smd -0 -2 -2 -Inductor_SMD -L_Vishay_IHSM-5832 -Inductor, Vishay, Vishay_IHSM-5832, http://www.vishay.com/docs/34020/ihsm5832.pdf, 16.3mmx8.1mm -inductor vishay icsm smd -0 -2 -2 -Inductor_SMD -L_Vishay_IHSM-7832 -Inductor, Vishay, Vishay_IHSM-7832, http://www.vishay.com/docs/34021/ihsm7832.pdf, 19.8mmx8.1mm -inductor vishay icsm smd -0 -2 -2 -Inductor_SMD -L_Walsin_WLFM201209x -Inductor, Walsin, WLFM201209x, 2.0x1.25x0.9mm, http://www.passivecomponent.com/wp-content/uploads/inductor/WLFM_C_series.pdf -Inductor ferrite multilayer power -0 -2 -2 -Inductor_SMD -L_Walsin_WLFM201609x -Inductor, Walsin, WLFM201609x, 2.0x1.6x0.9mm, http://www.passivecomponent.com/wp-content/uploads/inductor/WLFM_C_series.pdf -Inductor ferrite multilayer power -0 -2 -2 -Inductor_SMD -L_Walsin_WLFM252009x -Inductor, Walsin, WLFM252009x, 2.5x2.0x0.9mm, http://www.passivecomponent.com/wp-content/uploads/inductor/WLFM_C_series.pdf -Inductor ferrite multilayer power -0 -2 -2 -Inductor_SMD -L_Wuerth_HCF-2013 -7443630070, http://katalog.we-online.de/pbs/datasheet/7443630070.pdf -inductor shielded wuerth hcf -0 -3 -2 -Inductor_SMD -L_Wuerth_HCF-2815 -74436410150, http://katalog.we-online.de/pbs/datasheet/74436410150.pdf -inductor shielded wuerth hcf -0 -3 -2 -Inductor_SMD -L_Wuerth_HCF-2818 -7443640330, http://katalog.we-online.de/pbs/datasheet/7443640330.pdf -inductor shielded wuerth hcf -0 -3 -2 -Inductor_SMD -L_Wuerth_HCI-1030 -Inductor, Wuerth Elektronik, Wuerth_HCI-1030, 10.6mmx10.6mm -inductor Wuerth hci smd -0 -2 -2 -Inductor_SMD -L_Wuerth_HCI-1040 -Inductor, Wuerth Elektronik, Wuerth_HCI-1040, 10.2mmx10.2mm -inductor Wuerth hci smd -0 -2 -2 -Inductor_SMD -L_Wuerth_HCI-1050 -Inductor, Wuerth Elektronik, Wuerth_HCI-1050, 10.2mmx10.2mm -inductor Wuerth hci smd -0 -2 -2 -Inductor_SMD -L_Wuerth_HCI-1335 -Inductor, Wuerth Elektronik, Wuerth_HCI-1335, 12.8mmx12.8mm -inductor Wuerth hci smd -0 -2 -2 -Inductor_SMD -L_Wuerth_HCI-1350 -Inductor, Wuerth Elektronik, Wuerth_HCI-1350, 12.8mmx12.8mm -inductor Wuerth hci smd -0 -2 -2 -Inductor_SMD -L_Wuerth_HCI-1365 -Inductor, Wuerth Elektronik, Wuerth_HCI-1365, 12.8mmx12.8mm -inductor Wuerth hci smd -0 -2 -2 -Inductor_SMD -L_Wuerth_HCI-1890 -Inductor, Wuerth Elektronik, Wuerth_HCI-1890, 18.2mmx18.2mm -inductor Wuerth hci smd -0 -2 -2 -Inductor_SMD -L_Wuerth_HCI-2212 -Inductor, Wuerth Elektronik, Wuerth_HCI-2212, 22.5mmx22.0mm -inductor Wuerth hci smd -0 -2 -2 -Inductor_SMD -L_Wuerth_HCI-5040 -Inductor, Wuerth Elektronik, Wuerth_HCI-5040, 5.5mmx5.2mm -inductor Wuerth hci smd -0 -2 -2 -Inductor_SMD -L_Wuerth_HCI-7030 -Inductor, Wuerth Elektronik, Wuerth_HCI-7030, 6.9mmx6.9mm -inductor Wuerth hci smd -0 -2 -2 -Inductor_SMD -L_Wuerth_HCI-7040 -Inductor, Wuerth Elektronik, Wuerth_HCI-7040, 6.9mmx6.9mm -inductor Wuerth hci smd -0 -2 -2 -Inductor_SMD -L_Wuerth_HCI-7050 -Inductor, Wuerth Elektronik, Wuerth_HCI-7050, 6.9mmx6.9mm -inductor Wuerth hci smd -0 -2 -2 -Inductor_SMD -L_Wuerth_HCM-1050 -Inductor, Wuerth Elektronik, Wuerth_HCM-1050, 10.2mmx7.0mm -inductor Wuerth hcm smd -0 -2 -2 -Inductor_SMD -L_Wuerth_HCM-1052 -Inductor, Wuerth Elektronik, Wuerth_HCM-1052, 10.5mmx10.3mm -inductor Wuerth hcm smd -0 -2 -2 -Inductor_SMD -L_Wuerth_HCM-1070 -Inductor, Wuerth Elektronik, Wuerth_HCM-1070, 10.1mmx7.0mm -inductor Wuerth hcm smd -0 -2 -2 -Inductor_SMD -L_Wuerth_HCM-1078 -Inductor, Wuerth Elektronik, Wuerth_HCM-1078, 9.4mmx6.2mm -inductor Wuerth hcm smd -0 -2 -2 -Inductor_SMD -L_Wuerth_HCM-1190 -Inductor, Wuerth Elektronik, Wuerth_HCM-1190, 10.5mmx11.0mm -inductor Wuerth hcm smd -0 -2 -2 -Inductor_SMD -L_Wuerth_HCM-1240 -Inductor, Wuerth Elektronik, Wuerth_HCM-1240, 10.0mmx11.8mm -inductor Wuerth hcm smd -0 -2 -2 -Inductor_SMD -L_Wuerth_HCM-1350 -Inductor, Wuerth Elektronik, Wuerth_HCM-1350, 13.5mmx13.3mm -inductor Wuerth hcm smd -0 -2 -2 -Inductor_SMD -L_Wuerth_HCM-1390 -Inductor, Wuerth Elektronik, Wuerth_HCM-1390, 12.5mmx13.0mm -inductor Wuerth hcm smd -0 -2 -2 -Inductor_SMD -L_Wuerth_HCM-7050 -Inductor, Wuerth Elektronik, Wuerth_HCM-7050, 7.2mmx7.0mm -inductor Wuerth hcm smd -0 -2 -2 -Inductor_SMD -L_Wuerth_HCM-7070 -Inductor, Wuerth Elektronik, Wuerth_HCM-7070, 7.4mmx7.2mm -inductor Wuerth hcm smd -0 -2 -2 -Inductor_SMD -L_Wuerth_MAPI-1610 -Inductor, Wuerth Elektronik, Wuerth_MAPI-1610, 1.6mmx1.6mm -inductor Wuerth smd -0 -2 -2 -Inductor_SMD -L_Wuerth_MAPI-2010 -Inductor, Wuerth Elektronik, Wuerth_MAPI-2010, 2.0mmx1.6mm -inductor Wuerth smd -0 -2 -2 -Inductor_SMD -L_Wuerth_MAPI-2506 -Inductor, Wuerth Elektronik, Wuerth_MAPI-2506, 2.5mmx2.0mm -inductor Wuerth smd -0 -2 -2 -Inductor_SMD -L_Wuerth_MAPI-2508 -Inductor, Wuerth Elektronik, Wuerth_MAPI-2508, 2.5mmx2.0mm -inductor Wuerth smd -0 -2 -2 -Inductor_SMD -L_Wuerth_MAPI-2510 -Inductor, Wuerth Elektronik, Wuerth_MAPI-2510, 2.5mmx2.0mm -inductor Wuerth smd -0 -2 -2 -Inductor_SMD -L_Wuerth_MAPI-2512 -Inductor, Wuerth Elektronik, Wuerth_MAPI-2512, 2.5mmx2.0mm -inductor Wuerth smd -0 -2 -2 -Inductor_SMD -L_Wuerth_MAPI-3010 -Inductor, Wuerth Elektronik, Wuerth_MAPI-3010, 3.0mmx3.0mm -inductor Wuerth smd -0 -2 -2 -Inductor_SMD -L_Wuerth_MAPI-3012 -Inductor, Wuerth Elektronik, Wuerth_MAPI-3012, 3.0mmx3.0mm -inductor Wuerth smd -0 -2 -2 -Inductor_SMD -L_Wuerth_MAPI-3015 -Inductor, Wuerth Elektronik, Wuerth_MAPI-3015, 3.0mmx3.0mm -inductor Wuerth smd -0 -2 -2 -Inductor_SMD -L_Wuerth_MAPI-3020 -Inductor, Wuerth Elektronik, Wuerth_MAPI-3020, 3.0mmx3.0mm -inductor Wuerth smd -0 -2 -2 -Inductor_SMD -L_Wuerth_MAPI-4020 -Inductor, Wuerth Elektronik, Wuerth_MAPI-4020, 4.0mmx4.0mm -inductor Wuerth smd -0 -2 -2 -Inductor_SMD -L_Wuerth_MAPI-4030 -Inductor, Wuerth Elektronik, Wuerth_MAPI-4030, 4.0mmx4.0mm -inductor Wuerth smd -0 -2 -2 -Inductor_SMD -L_Wuerth_WE-DD-Typ-L-Typ-XL-Typ-XXL -Shielded Coupled Inductor, Wuerth Elektronik, WE-DD, SMD, Typ L, Typ XL, Typ XXL, https://katalog.we-online.com/pbs/datasheet/744874001.pdf -Choke Coupled Double Inductor SMD Wuerth WE-DD TypL TypXL TypXXL -0 -4 -4 -Inductor_SMD -L_Wuerth_WE-DD-Typ-M-Typ-S -Shielded Coupled Inductor, Wuerth Elektronik, WE-DD, SMD, Typ M, Typ S, https://katalog.we-online.com/pbs/datasheet/744878001.pdf, https://katalog.we-online.de/pbs/datasheet/744877001.pdf -Choke Coupled Double Inductor SMD Wuerth WE-DD TypM TypS -0 -4 -4 -Inductor_SMD -L_Wuerth_WE-GF-1210 -Unshielded Inductor, Wuerth Elektronik, WE-GF, SMD, 1210, https://www.we-online.de/katalog/datasheet/74476401.pdf -Unshielded Inductor WE-GF 1210 Wuerth -0 -2 -2 -Inductor_SMD -L_Wuerth_WE-PD-Typ-7345 -Shielded Power Inductor, Wuerth Elektronik, WE-PD, SMD, 7345, https://katalog.we-online.com/pbs/datasheet/744777001.pdf -Choke Shielded Power Inductor WE-PD 7345 Wuerth -0 -2 -2 -Inductor_SMD -L_Wuerth_WE-PD-Typ-LS -Shielded Power Inductor, Wuerth Elektronik, WE-PD, SMD, Typ LS, https://katalog.we-online.com/pbs/datasheet/7447715906.pdf -Choke Shielded Power Inductor WE-PD TypLS Wuerth -0 -2 -2 -Inductor_SMD -L_Wuerth_WE-PD-Typ-LS_Handsoldering -Shielded Power Inductor, Wuerth Elektronik, WE-PD, SMD, Typ LS, Handsoldering, https://katalog.we-online.com/pbs/datasheet/7447715906.pdf -Choke Shielded Power Inductor WE-PD TypLS Wuerth -0 -2 -2 -Inductor_SMD -L_Wuerth_WE-PD-Typ-M-Typ-S -Shielded Power Inductor, Wuerth Elektronik, WE-PD, SMT, Typ M, Typ S, https://katalog.we-online.com/pbs/datasheet/744778005.pdf -Choke Shielded Power Inductor WE-PD TypM TypS Wuerth -0 -2 -2 -Inductor_SMD -L_Wuerth_WE-PD-Typ-M-Typ-S_Handsoldering -Shielded Power Inductor, Wuerth Elektronik, WE-PD, SMT, Typ M, Typ S, Handsoldering, https://katalog.we-online.com/pbs/datasheet/744778005.pdf -Choke Shielded Power Inductor WE-PD TypM TypS Wuerth -0 -2 -2 -Inductor_SMD -L_Wuerth_WE-PD2-Typ-L -Power Inductor, Wuerth Elektronik, WE-PD2, SMD, Typ L, , https://katalog.we-online.com/pbs/datasheet/74477510.pdf -Choke Power Inductor WE-PD2 TypL Wuerth -0 -2 -2 -Inductor_SMD -L_Wuerth_WE-PD2-Typ-MS -Power Inductor, Wuerth Elektronik, WE-PD2, SMD, Typ MS, https://katalog.we-online.com/pbs/datasheet/744774022.pdf -Choke Power Inductor WE-PD2 TypMS Wuerth -0 -2 -2 -Inductor_SMD -L_Wuerth_WE-PD2-Typ-XL -Power Inductor, Wuerth Elektronik, WE-PD2, SMT, Typ XL, https://katalog.we-online.com/pbs/datasheet/744776012.pdf -Choke Power Inductor WE-PD2 TypXL Wuerth -0 -2 -2 -Inductor_SMD -L_Wuerth_WE-PD4-Typ-X -Power Inductor, Wuerth Elektronik, WE-PD4, SMT, Typ X, https://katalog.we-online.de/pbs/datasheet/74458001.pdf -Choke Power Inductor WE-PD4 TypX Wuerth -0 -2 -2 -Inductor_SMD -L_Wuerth_WE-PDF -Shielded Power Inductor, Wuerth Elektronik, WE-PDF, SMD, https://katalog.we-online.de/pbs/datasheet/7447797022.pdf -Choke Shielded Power Inductor WE-PDF Wuerth -0 -2 -2 -Inductor_SMD -L_Wuerth_WE-PDF_Handsoldering -Shielded Power Inductor, Wuerth Elektronik, WE-PDF, SMD, Handsoldering, https://katalog.we-online.de/pbs/datasheet/7447797022.pdf -Choke Shielded Power Inductor WE-PDF Wuerth Handsoldering -0 -2 -2 -Inductor_SMD -L_Wuerth_WE-TPC-3816 -L_Wuerth_WE-TPC-3816 StepUp generated footprint, http://katalog.we-online.de/pbs/datasheet/7440310047.pdf -wurth wuerth smd inductor -0 -2 -2 -Inductor_SMD_Wurth -L_Wurth_WE-LQSH-2010 -Semi-Shielded High Saturation Power Inductor, body 2x1.6mm, https://www.we-online.com/catalog/en/WE-LQSH#/articles/WE-LQSH-2010 -SMT -0 -2 -2 -Inductor_SMD_Wurth -L_Wurth_WE-LQSH-2512 -Semi-Shielded High Saturation Power Inductor, body 2.5x2mm, https://www.we-online.com/catalog/en/WE-LQSH#/articles/WE-LQSH-2512 -SMT -0 -2 -2 -Inductor_SMD_Wurth -L_Wurth_WE-LQSH-3012 -Semi-Shielded High Saturation Power Inductor, body 3x3mm, https://www.we-online.com/catalog/en/WE-LQSH#/articles/WE-LQSH-3012 -SMT -0 -2 -2 -Inductor_SMD_Wurth -L_Wurth_WE-LQSH-4020 -Semi-Shielded High Saturation Power Inductor, body 4x4mm, https://www.we-online.com/catalog/en/WE-LQSH#/articles/WE-LQSH-4020 -SMT -0 -2 -2 -Inductor_THT -Choke_EPCOS_B82722A -Current-Compensated Ring Core Double Chokes, EPCOS, B82722A, 22.3mmx22.7mm, https://en.tdk.eu/inf/30/db/ind_2008/b82722a_j.pdf -chokes epcos tht -0 -4 -4 -Inductor_THT -Choke_Schaffner_RN102-04-14.0x14.0mm -Current-compensated Chokes, Schaffner, RN102-04, 14.0mmx14.0mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/ -chokes schaffner tht -0 -4 -4 -Inductor_THT -Choke_Schaffner_RN112-04-17.7x17.1mm -Current-compensated Chokes, Schaffner, RN112-04, 17.7mmx17.1mm https://www.schaffner.com/fileadmin/user_upload/pim/products/datasheets/RN_series.pdf -chokes schaffner tht -0 -4 -4 -Inductor_THT -Choke_Schaffner_RN114-04-22.5x21.5mm -Current-compensated Chokes, Schaffner, RN114-04, 22.5mmx21.5mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/ -chokes schaffner tht -0 -4 -4 -Inductor_THT -Choke_Schaffner_RN116-04-22.5x21.5mm -Current-compensated Chokes, Schaffner, RN116-04, 22.5mmx21.5mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/ -chokes schaffner tht -0 -4 -4 -Inductor_THT -Choke_Schaffner_RN122-04-28.0x27.0mm -Current-compensated Chokes, Schaffner, RN122-04, 28.0mmx27.0mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/ -chokes schaffner tht -0 -4 -4 -Inductor_THT -Choke_Schaffner_RN142-04-33.1x32.5mm -Current-compensated Chokes, Schaffner, RN142-04, 33.1mmx32.5mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/ -chokes schaffner tht -0 -4 -4 -Inductor_THT -Choke_Schaffner_RN143-04-33.1x32.5mm -Current-compensated Chokes, Schaffner, RN143-04, 33.1mmx32.5mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/ -chokes schaffner tht -0 -4 -4 -Inductor_THT -Choke_Schaffner_RN152-04-43.0x41.8mm -Current-compensated Chokes, Schaffner, RN152-04, 43.0mmx41.8mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/ -chokes schaffner tht -0 -4 -4 -Inductor_THT -Choke_Schaffner_RN202-04-8.8x18.2mm -Current-compensated Chokes, Schaffner, RN202-04, 8.8mmx18.2mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/ -chokes schaffner tht -0 -4 -4 -Inductor_THT -Choke_Schaffner_RN204-04-9.0x14.0mm -Current-compensated Chokes, Schaffner, RN204-04, 9.0mmx14.0mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/ -chokes schaffner tht -0 -4 -4 -Inductor_THT -Choke_Schaffner_RN212-04-12.5x18.0mm -Current-compensated Chokes, Schaffner, RN212-04, 12.5mmx18.0mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/ -chokes schaffner tht -0 -4 -4 -Inductor_THT -Choke_Schaffner_RN214-04-15.5x23.0mm -Current-compensated Chokes, Schaffner, RN214-04, 15.5mmx23.0mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/ -chokes schaffner tht -0 -4 -4 -Inductor_THT -Choke_Schaffner_RN216-04-15.5x23.0mm -Current-compensated Chokes, Schaffner, RN216-04, 15.5mmx23.0mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/ -chokes schaffner tht -0 -4 -4 -Inductor_THT -Choke_Schaffner_RN218-04-12.5x18.0mm -Current-compensated Chokes, Schaffner, RN218-04, 12.5mmx18.0mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/ -chokes schaffner tht -0 -4 -4 -Inductor_THT -Choke_Schaffner_RN222-04-18.0x31.0mm -Current-compensated Chokes, Schaffner, RN222-04, 18.0mmx31.0mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/ -chokes schaffner tht -0 -4 -4 -Inductor_THT -Choke_Schaffner_RN232-04-18.0x31.0mm -Current-compensated Chokes, Schaffner, RN232-04, 18.0mmx31.0mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/ -chokes schaffner tht -0 -4 -4 -Inductor_THT -Choke_Schaffner_RN242-04-18.0x31.0mm -Current-compensated Chokes, Schaffner, RN242-04, 18.0mmx31.0mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/ -chokes schaffner tht -0 -4 -4 -Inductor_THT -L_Axial_L5.0mm_D3.6mm_P10.00mm_Horizontal_Murata_BL01RN1A2A2 -Inductor, Murata BL01RN1A2A2, Axial, Horizontal, pin pitch=10.00mm, length*diameter=5*3.6mm, https://www.murata.com/en-global/products/productdetail?partno=BL01RN1A2A2%23 -inductor axial horizontal -0 -2 -2 -Inductor_THT -L_Axial_L5.3mm_D2.2mm_P2.54mm_Vertical_Vishay_IM-1 -Inductor, Axial series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=5.3*2.2mm^2, Vishay, IM-1, http://www.vishay.com/docs/34030/im.pdf -Inductor Axial series Axial Vertical pin pitch 2.54mm length 5.3mm diameter 2.2mm Vishay IM-1 -0 -2 -2 -Inductor_THT -L_Axial_L5.3mm_D2.2mm_P7.62mm_Horizontal_Vishay_IM-1 -Inductor, Axial series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=5.3*2.2mm^2, Vishay, IM-1, http://www.vishay.com/docs/34030/im.pdf -Inductor Axial series Axial Horizontal pin pitch 7.62mm length 5.3mm diameter 2.2mm Vishay IM-1 -0 -2 -2 -Inductor_THT -L_Axial_L5.3mm_D2.2mm_P10.16mm_Horizontal_Vishay_IM-1 -Inductor, Axial series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=5.3*2.2mm^2, Vishay, IM-1, http://www.vishay.com/docs/34030/im.pdf -Inductor Axial series Axial Horizontal pin pitch 10.16mm length 5.3mm diameter 2.2mm Vishay IM-1 -0 -2 -2 -Inductor_THT -L_Axial_L6.6mm_D2.7mm_P2.54mm_Vertical_Vishay_IM-2 -Inductor, Axial series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=6.6*2.7mm^2, Vishay, IM-2, http://www.vishay.com/docs/34030/im.pdf -Inductor Axial series Axial Vertical pin pitch 2.54mm length 6.6mm diameter 2.7mm Vishay IM-2 -0 -2 -2 -Inductor_THT -L_Axial_L6.6mm_D2.7mm_P10.16mm_Horizontal_Vishay_IM-2 -Inductor, Axial series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=6.6*2.7mm^2, Vishay, IM-2, http://www.vishay.com/docs/34030/im.pdf -Inductor Axial series Axial Horizontal pin pitch 10.16mm length 6.6mm diameter 2.7mm Vishay IM-2 -0 -2 -2 -Inductor_THT -L_Axial_L7.0mm_D3.3mm_P2.54mm_Vertical_Fastron_MICC -Inductor, Axial series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=7*3.3mm^2, Fastron, MICC, http://www.fastrongroup.com/image-show/70/MICC.pdf?type=Complete-DataSheet&productType=series -Inductor Axial series Axial Vertical pin pitch 2.54mm length 7mm diameter 3.3mm Fastron MICC -0 -2 -2 -Inductor_THT -L_Axial_L7.0mm_D3.3mm_P5.08mm_Vertical_Fastron_MICC -Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=7*3.3mm^2, Fastron, MICC, http://www.fastrongroup.com/image-show/70/MICC.pdf?type=Complete-DataSheet&productType=series -Inductor Axial series Axial Vertical pin pitch 5.08mm length 7mm diameter 3.3mm Fastron MICC -0 -2 -2 -Inductor_THT -L_Axial_L7.0mm_D3.3mm_P10.16mm_Horizontal_Fastron_MICC -Inductor, Axial series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=7*3.3mm^2, Fastron, MICC, http://www.fastrongroup.com/image-show/70/MICC.pdf?type=Complete-DataSheet&productType=series -Inductor Axial series Axial Horizontal pin pitch 10.16mm length 7mm diameter 3.3mm Fastron MICC -0 -2 -2 -Inductor_THT -L_Axial_L7.0mm_D3.3mm_P12.70mm_Horizontal_Fastron_MICC -Inductor, Axial series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=7*3.3mm^2, Fastron, MICC, http://www.fastrongroup.com/image-show/70/MICC.pdf?type=Complete-DataSheet&productType=series -Inductor Axial series Axial Horizontal pin pitch 12.7mm length 7mm diameter 3.3mm Fastron MICC -0 -2 -2 -Inductor_THT -L_Axial_L9.5mm_D4.0mm_P2.54mm_Vertical_Fastron_SMCC -Inductor, Axial series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=9.5*4mm^2, Fastron, SMCC, http://cdn-reichelt.de/documents/datenblatt/B400/DS_SMCC_NEU.pdf, http://cdn-reichelt.de/documents/datenblatt/B400/LEADEDINDUCTORS.pdf -Inductor Axial series Axial Vertical pin pitch 2.54mm length 9.5mm diameter 4mm Fastron SMCC -0 -2 -2 -Inductor_THT -L_Axial_L9.5mm_D4.0mm_P5.08mm_Vertical_Fastron_SMCC -Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.5*4mm^2, Fastron, SMCC, http://cdn-reichelt.de/documents/datenblatt/B400/DS_SMCC_NEU.pdf, http://cdn-reichelt.de/documents/datenblatt/B400/LEADEDINDUCTORS.pdf -Inductor Axial series Axial Vertical pin pitch 5.08mm length 9.5mm diameter 4mm Fastron SMCC -0 -2 -2 -Inductor_THT -L_Axial_L9.5mm_D4.0mm_P12.70mm_Horizontal_Fastron_SMCC -Inductor, Axial series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9.5*4mm^2, Fastron, SMCC, http://cdn-reichelt.de/documents/datenblatt/B400/DS_SMCC_NEU.pdf, http://cdn-reichelt.de/documents/datenblatt/B400/LEADEDINDUCTORS.pdf -Inductor Axial series Axial Horizontal pin pitch 12.7mm length 9.5mm diameter 4mm Fastron SMCC -0 -2 -2 -Inductor_THT -L_Axial_L9.5mm_D4.0mm_P15.24mm_Horizontal_Fastron_SMCC -Inductor, Axial series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9.5*4mm^2, Fastron, SMCC, http://cdn-reichelt.de/documents/datenblatt/B400/DS_SMCC_NEU.pdf, http://cdn-reichelt.de/documents/datenblatt/B400/LEADEDINDUCTORS.pdf -Inductor Axial series Axial Horizontal pin pitch 15.24mm length 9.5mm diameter 4mm Fastron SMCC -0 -2 -2 -Inductor_THT -L_Axial_L11.0mm_D4.5mm_P5.08mm_Vertical_Fastron_MECC -Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=11*4.5mm^2, Fastron, MECC, http://www.fastrongroup.com/image-show/21/MECC.pdf?type=Complete-DataSheet&productType=series -Inductor Axial series Axial Vertical pin pitch 5.08mm length 11mm diameter 4.5mm Fastron MECC -0 -2 -2 -Inductor_THT -L_Axial_L11.0mm_D4.5mm_P7.62mm_Vertical_Fastron_MECC -Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=11*4.5mm^2, Fastron, MECC, http://www.fastrongroup.com/image-show/21/MECC.pdf?type=Complete-DataSheet&productType=series -Inductor Axial series Axial Vertical pin pitch 7.62mm length 11mm diameter 4.5mm Fastron MECC -0 -2 -2 -Inductor_THT -L_Axial_L11.0mm_D4.5mm_P15.24mm_Horizontal_Fastron_MECC -Inductor, Axial series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=11*4.5mm^2, Fastron, MECC, http://www.fastrongroup.com/image-show/21/MECC.pdf?type=Complete-DataSheet&productType=series -Inductor Axial series Axial Horizontal pin pitch 15.24mm length 11mm diameter 4.5mm Fastron MECC -0 -2 -2 -Inductor_THT -L_Axial_L12.0mm_D5.0mm_P5.08mm_Vertical_Fastron_MISC -Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=12*5mm^2, Fastron, MISC, http://cdn-reichelt.de/documents/datenblatt/B400/DS_MISC.pdf -Inductor Axial series Axial Vertical pin pitch 5.08mm length 12mm diameter 5mm Fastron MISC -0 -2 -2 -Inductor_THT -L_Axial_L12.0mm_D5.0mm_P7.62mm_Vertical_Fastron_MISC -Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=12*5mm^2, Fastron, MISC, http://cdn-reichelt.de/documents/datenblatt/B400/DS_MISC.pdf -Inductor Axial series Axial Vertical pin pitch 7.62mm length 12mm diameter 5mm Fastron MISC -0 -2 -2 -Inductor_THT -L_Axial_L12.0mm_D5.0mm_P15.24mm_Horizontal_Fastron_MISC -Inductor, Axial series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=12*5mm^2, Fastron, MISC, http://cdn-reichelt.de/documents/datenblatt/B400/DS_MISC.pdf -Inductor Axial series Axial Horizontal pin pitch 15.24mm length 12mm diameter 5mm Fastron MISC -0 -2 -2 -Inductor_THT -L_Axial_L12.8mm_D5.8mm_P5.08mm_Vertical_Fastron_HBCC -Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=12.8*5.8mm^2, Fastron, HBCC, http://www.fastrongroup.com/image-show/18/HBCC.pdf?type=Complete-DataSheet&productType=series -Inductor Axial series Axial Vertical pin pitch 5.08mm length 12.8mm diameter 5.8mm Fastron HBCC -0 -2 -2 -Inductor_THT -L_Axial_L12.8mm_D5.8mm_P7.62mm_Vertical_Fastron_HBCC -Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=12.8*5.8mm^2, Fastron, HBCC, http://www.fastrongroup.com/image-show/18/HBCC.pdf?type=Complete-DataSheet&productType=series -Inductor Axial series Axial Vertical pin pitch 7.62mm length 12.8mm diameter 5.8mm Fastron HBCC -0 -2 -2 -Inductor_THT -L_Axial_L12.8mm_D5.8mm_P20.32mm_Horizontal_Fastron_HBCC -Inductor, Axial series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=12.8*5.8mm^2, Fastron, HBCC, http://www.fastrongroup.com/image-show/18/HBCC.pdf?type=Complete-DataSheet&productType=series -Inductor Axial series Axial Horizontal pin pitch 20.32mm length 12.8mm diameter 5.8mm Fastron HBCC -0 -2 -2 -Inductor_THT -L_Axial_L12.8mm_D5.8mm_P25.40mm_Horizontal_Fastron_HBCC -Inductor, Axial series, Axial, Horizontal, pin pitch=25.4mm, , length*diameter=12.8*5.8mm^2, Fastron, HBCC, http://www.fastrongroup.com/image-show/18/HBCC.pdf?type=Complete-DataSheet&productType=series -Inductor Axial series Axial Horizontal pin pitch 25.4mm length 12.8mm diameter 5.8mm Fastron HBCC -0 -2 -2 -Inductor_THT -L_Axial_L13.0mm_D4.5mm_P5.08mm_Vertical_Fastron_HCCC -Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=13*4.5mm^2, Fastron, HCCC, http://www.fastrongroup.com/image-show/19/HCCC.pdf?type=Complete-DataSheet&productType=series -Inductor Axial series Axial Vertical pin pitch 5.08mm length 13mm diameter 4.5mm Fastron HCCC -0 -2 -2 -Inductor_THT -L_Axial_L13.0mm_D4.5mm_P7.62mm_Vertical_Fastron_HCCC -Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=13*4.5mm^2, Fastron, HCCC, http://www.fastrongroup.com/image-show/19/HCCC.pdf?type=Complete-DataSheet&productType=series -Inductor Axial series Axial Vertical pin pitch 7.62mm length 13mm diameter 4.5mm Fastron HCCC -0 -2 -2 -Inductor_THT -L_Axial_L13.0mm_D4.5mm_P15.24mm_Horizontal_Fastron_HCCC -Inductor, Axial series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=13*4.5mm^2, Fastron, HCCC, http://www.fastrongroup.com/image-show/19/HCCC.pdf?type=Complete-DataSheet&productType=series -Inductor Axial series Axial Horizontal pin pitch 15.24mm length 13mm diameter 4.5mm Fastron HCCC -0 -2 -2 -Inductor_THT -L_Axial_L14.0mm_D4.5mm_P5.08mm_Vertical_Fastron_LACC -Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=14*4.5mm^2, Fastron, LACC, http://www.fastrongroup.com/image-show/20/LACC.pdf?type=Complete-DataSheet&productType=series -Inductor Axial series Axial Vertical pin pitch 5.08mm length 14mm diameter 4.5mm Fastron LACC -0 -2 -2 -Inductor_THT -L_Axial_L14.0mm_D4.5mm_P7.62mm_Vertical_Fastron_LACC -Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=14*4.5mm^2, Fastron, LACC, http://www.fastrongroup.com/image-show/20/LACC.pdf?type=Complete-DataSheet&productType=series -Inductor Axial series Axial Vertical pin pitch 7.62mm length 14mm diameter 4.5mm Fastron LACC -0 -2 -2 -Inductor_THT -L_Axial_L14.0mm_D4.5mm_P15.24mm_Horizontal_Fastron_LACC -Inductor, Axial series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=14*4.5mm^2, Fastron, LACC, http://www.fastrongroup.com/image-show/20/LACC.pdf?type=Complete-DataSheet&productType=series -Inductor Axial series Axial Horizontal pin pitch 15.24mm length 14mm diameter 4.5mm Fastron LACC -0 -2 -2 -Inductor_THT -L_Axial_L14.5mm_D5.8mm_P5.08mm_Vertical_Fastron_HBCC -Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=14.5*5.8mm^2, Fastron, HBCC, http://www.fastrongroup.com/image-show/18/HBCC.pdf?type=Complete-DataSheet&productType=series -Inductor Axial series Axial Vertical pin pitch 5.08mm length 14.5mm diameter 5.8mm Fastron HBCC -0 -2 -2 -Inductor_THT -L_Axial_L14.5mm_D5.8mm_P7.62mm_Vertical_Fastron_HBCC -Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=14.5*5.8mm^2, Fastron, HBCC, http://www.fastrongroup.com/image-show/18/HBCC.pdf?type=Complete-DataSheet&productType=series -Inductor Axial series Axial Vertical pin pitch 7.62mm length 14.5mm diameter 5.8mm Fastron HBCC -0 -2 -2 -Inductor_THT -L_Axial_L14.5mm_D5.8mm_P20.32mm_Horizontal_Fastron_HBCC -Inductor, Axial series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=14.5*5.8mm^2, Fastron, HBCC, http://www.fastrongroup.com/image-show/18/HBCC.pdf?type=Complete-DataSheet&productType=series -Inductor Axial series Axial Horizontal pin pitch 20.32mm length 14.5mm diameter 5.8mm Fastron HBCC -0 -2 -2 -Inductor_THT -L_Axial_L14.5mm_D5.8mm_P25.40mm_Horizontal_Fastron_HBCC -Inductor, Axial series, Axial, Horizontal, pin pitch=25.4mm, , length*diameter=14.5*5.8mm^2, Fastron, HBCC, http://www.fastrongroup.com/image-show/18/HBCC.pdf?type=Complete-DataSheet&productType=series -Inductor Axial series Axial Horizontal pin pitch 25.4mm length 14.5mm diameter 5.8mm Fastron HBCC -0 -2 -2 -Inductor_THT -L_Axial_L16.0mm_D6.3mm_P5.08mm_Vertical_Fastron_VHBCC -Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=16*6.3mm^2, Fastron, VHBCC, http://www.fastrongroup.com/image-show/25/VHBCC.pdf?type=Complete-DataSheet&productType=series -Inductor Axial series Axial Vertical pin pitch 5.08mm length 16mm diameter 6.3mm Fastron VHBCC -0 -2 -2 -Inductor_THT -L_Axial_L16.0mm_D6.3mm_P7.62mm_Vertical_Fastron_VHBCC -Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=16*6.3mm^2, Fastron, VHBCC, http://www.fastrongroup.com/image-show/25/VHBCC.pdf?type=Complete-DataSheet&productType=series -Inductor Axial series Axial Vertical pin pitch 7.62mm length 16mm diameter 6.3mm Fastron VHBCC -0 -2 -2 -Inductor_THT -L_Axial_L16.0mm_D6.3mm_P20.32mm_Horizontal_Fastron_VHBCC -Inductor, Axial series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=16*6.3mm^2, Fastron, VHBCC, http://www.fastrongroup.com/image-show/25/VHBCC.pdf?type=Complete-DataSheet&productType=series -Inductor Axial series Axial Horizontal pin pitch 20.32mm length 16mm diameter 6.3mm Fastron VHBCC -0 -2 -2 -Inductor_THT -L_Axial_L16.0mm_D6.3mm_P25.40mm_Horizontal_Fastron_VHBCC -Inductor, Axial series, Axial, Horizontal, pin pitch=25.4mm, , length*diameter=16*6.3mm^2, Fastron, VHBCC, http://www.fastrongroup.com/image-show/25/VHBCC.pdf?type=Complete-DataSheet&productType=series -Inductor Axial series Axial Horizontal pin pitch 25.4mm length 16mm diameter 6.3mm Fastron VHBCC -0 -2 -2 -Inductor_THT -L_Axial_L16.0mm_D7.5mm_P5.08mm_Vertical_Fastron_XHBCC -Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=16*7.5mm^2, Fastron, XHBCC, http://www.fastrongroup.com/image-show/26/XHBCC.pdf?type=Complete-DataSheet&productType=series -Inductor Axial series Axial Vertical pin pitch 5.08mm length 16mm diameter 7.5mm Fastron XHBCC -0 -2 -2 -Inductor_THT -L_Axial_L16.0mm_D7.5mm_P7.62mm_Vertical_Fastron_XHBCC -Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=16*7.5mm^2, Fastron, XHBCC, http://www.fastrongroup.com/image-show/26/XHBCC.pdf?type=Complete-DataSheet&productType=series -Inductor Axial series Axial Vertical pin pitch 7.62mm length 16mm diameter 7.5mm Fastron XHBCC -0 -2 -2 -Inductor_THT -L_Axial_L16.0mm_D7.5mm_P20.32mm_Horizontal_Fastron_XHBCC -Inductor, Axial series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=16*7.5mm^2, Fastron, XHBCC, http://www.fastrongroup.com/image-show/26/XHBCC.pdf?type=Complete-DataSheet&productType=series -Inductor Axial series Axial Horizontal pin pitch 20.32mm length 16mm diameter 7.5mm Fastron XHBCC -0 -2 -2 -Inductor_THT -L_Axial_L16.0mm_D7.5mm_P25.40mm_Horizontal_Fastron_XHBCC -Inductor, Axial series, Axial, Horizontal, pin pitch=25.4mm, , length*diameter=16*7.5mm^2, Fastron, XHBCC, http://www.fastrongroup.com/image-show/26/XHBCC.pdf?type=Complete-DataSheet&productType=series -Inductor Axial series Axial Horizontal pin pitch 25.4mm length 16mm diameter 7.5mm Fastron XHBCC -0 -2 -2 -Inductor_THT -L_Axial_L16.0mm_D9.5mm_P5.08mm_Vertical_Vishay_IM-10-37 -Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=16*9.5mm^2, Vishay, IM-10-37, http://www.vishay.com/docs/34030/im10.pdf -Inductor Axial series Axial Vertical pin pitch 5.08mm length 16mm diameter 9.5mm Vishay IM-10-37 -0 -2 -2 -Inductor_THT -L_Axial_L16.0mm_D9.5mm_P20.32mm_Horizontal_Vishay_IM-10-37 -Inductor, Axial series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=16*9.5mm^2, Vishay, IM-10-37, http://www.vishay.com/docs/34030/im10.pdf -Inductor Axial series Axial Horizontal pin pitch 20.32mm length 16mm diameter 9.5mm Vishay IM-10-37 -0 -2 -2 -Inductor_THT -L_Axial_L17.5mm_D12.0mm_P7.62mm_Vertical_Vishay_IM-10-46 -Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=17.5*12mm^2, Vishay, IM-10-46, http://www.vishay.com/docs/34030/im10.pdf -Inductor Axial series Axial Vertical pin pitch 7.62mm length 17.5mm diameter 12mm Vishay IM-10-46 -0 -2 -2 -Inductor_THT -L_Axial_L17.5mm_D12.0mm_P20.32mm_Horizontal_Vishay_IM-10-46 -Inductor, Axial series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=17.5*12mm^2, Vishay, IM-10-46, http://www.vishay.com/docs/34030/im10.pdf -Inductor Axial series Axial Horizontal pin pitch 20.32mm length 17.5mm diameter 12mm Vishay IM-10-46 -0 -2 -2 -Inductor_THT -L_Axial_L20.0mm_D8.0mm_P5.08mm_Vertical -Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=20*8mm^2 -Inductor Axial series Axial Vertical pin pitch 5.08mm length 20mm diameter 8mm -0 -2 -2 -Inductor_THT -L_Axial_L20.0mm_D8.0mm_P7.62mm_Vertical -Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=20*8mm^2 -Inductor Axial series Axial Vertical pin pitch 7.62mm length 20mm diameter 8mm -0 -2 -2 -Inductor_THT -L_Axial_L20.0mm_D8.0mm_P25.40mm_Horizontal -Inductor, Axial series, Axial, Horizontal, pin pitch=25.4mm, , length*diameter=20*8mm^2 -Inductor Axial series Axial Horizontal pin pitch 25.4mm length 20mm diameter 8mm -0 -2 -2 -Inductor_THT -L_Axial_L20.3mm_D12.1mm_P7.62mm_Vertical_Vishay_IHA-101 -Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=20.32*12.07mm^2, Vishay, IHA-101, http://www.vishay.com/docs/34014/iha.pdf -Inductor Axial series Axial Vertical pin pitch 7.62mm length 20.32mm diameter 12.07mm Vishay IHA-101 -0 -2 -2 -Inductor_THT -L_Axial_L20.3mm_D12.1mm_P28.50mm_Horizontal_Vishay_IHA-101 -Inductor, Axial series, Axial, Horizontal, pin pitch=28.5mm, , length*diameter=20.32*12.07mm^2, Vishay, IHA-101, http://www.vishay.com/docs/34014/iha.pdf -Inductor Axial series Axial Horizontal pin pitch 28.5mm length 20.32mm diameter 12.07mm Vishay IHA-101 -0 -2 -2 -Inductor_THT -L_Axial_L20.3mm_D12.7mm_P7.62mm_Vertical_Vishay_IHA-201 -Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=20.32*12.7mm^2, Vishay, IHA-201, http://www.vishay.com/docs/34014/iha.pdf -Inductor Axial series Axial Vertical pin pitch 7.62mm length 20.32mm diameter 12.7mm Vishay IHA-201 -0 -2 -2 -Inductor_THT -L_Axial_L20.3mm_D12.7mm_P25.40mm_Horizontal_Vishay_IHA-201 -Inductor, Axial series, Axial, Horizontal, pin pitch=25.4mm, , length*diameter=20.32*12.7mm^2, Vishay, IHA-201, http://www.vishay.com/docs/34014/iha.pdf -Inductor Axial series Axial Horizontal pin pitch 25.4mm length 20.32mm diameter 12.7mm Vishay IHA-201 -0 -2 -2 -Inductor_THT -L_Axial_L23.4mm_D12.7mm_P7.62mm_Vertical_Vishay_IHA-203 -Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=23.37*12.7mm^2, Vishay, IHA-203, http://www.vishay.com/docs/34014/iha.pdf -Inductor Axial series Axial Vertical pin pitch 7.62mm length 23.37mm diameter 12.7mm Vishay IHA-203 -0 -2 -2 -Inductor_THT -L_Axial_L23.4mm_D12.7mm_P32.00mm_Horizontal_Vishay_IHA-203 -Inductor, Axial series, Axial, Horizontal, pin pitch=32mm, , length*diameter=23.37*12.7mm^2, Vishay, IHA-203, http://www.vishay.com/docs/34014/iha.pdf -Inductor Axial series Axial Horizontal pin pitch 32mm length 23.37mm diameter 12.7mm Vishay IHA-203 -0 -2 -2 -Inductor_THT -L_Axial_L24.0mm_D7.1mm_P5.08mm_Vertical_Vishay_IM-10-28 -Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=24*7.1mm^2, Vishay, IM-10-28, http://www.vishay.com/docs/34035/im10.pdf -Inductor Axial series Axial Vertical pin pitch 5.08mm length 24mm diameter 7.1mm Vishay IM-10-28 -0 -2 -2 -Inductor_THT -L_Axial_L24.0mm_D7.1mm_P30.48mm_Horizontal_Vishay_IM-10-28 -Inductor, Axial series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=24*7.1mm^2, Vishay, IM-10-28, http://www.vishay.com/docs/34035/im10.pdf -Inductor Axial series Axial Horizontal pin pitch 30.48mm length 24mm diameter 7.1mm Vishay IM-10-28 -0 -2 -2 -Inductor_THT -L_Axial_L24.0mm_D7.5mm_P5.08mm_Vertical_Fastron_MESC -Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=24*7.5mm^2, Fastron, MESC, http://cdn-reichelt.de/documents/datenblatt/B400/DS_MESC.pdf -Inductor Axial series Axial Vertical pin pitch 5.08mm length 24mm diameter 7.5mm Fastron MESC -0 -2 -2 -Inductor_THT -L_Axial_L24.0mm_D7.5mm_P7.62mm_Vertical_Fastron_MESC -Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=24*7.5mm^2, Fastron, MESC, http://cdn-reichelt.de/documents/datenblatt/B400/DS_MESC.pdf -Inductor Axial series Axial Vertical pin pitch 7.62mm length 24mm diameter 7.5mm Fastron MESC -0 -2 -2 -Inductor_THT -L_Axial_L24.0mm_D7.5mm_P27.94mm_Horizontal_Fastron_MESC -Inductor, Axial series, Axial, Horizontal, pin pitch=27.94mm, , length*diameter=24*7.5mm^2, Fastron, MESC, http://cdn-reichelt.de/documents/datenblatt/B400/DS_MESC.pdf -Inductor Axial series Axial Horizontal pin pitch 27.94mm length 24mm diameter 7.5mm Fastron MESC -0 -2 -2 -Inductor_THT -L_Axial_L26.0mm_D9.0mm_P5.08mm_Vertical_Fastron_77A -Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=26*9mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf -Inductor Axial series Axial Vertical pin pitch 5.08mm length 26mm diameter 9mm Fastron 77A -0 -2 -2 -Inductor_THT -L_Axial_L26.0mm_D9.0mm_P7.62mm_Vertical_Fastron_77A -Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=26*9mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf -Inductor Axial series Axial Vertical pin pitch 7.62mm length 26mm diameter 9mm Fastron 77A -0 -2 -2 -Inductor_THT -L_Axial_L26.0mm_D9.0mm_P30.48mm_Horizontal_Fastron_77A -Inductor, Axial series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=26*9mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf -Inductor Axial series Axial Horizontal pin pitch 30.48mm length 26mm diameter 9mm Fastron 77A -0 -2 -2 -Inductor_THT -L_Axial_L26.0mm_D10.0mm_P5.08mm_Vertical_Fastron_77A -Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=26*10mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf -Inductor Axial series Axial Vertical pin pitch 5.08mm length 26mm diameter 10mm Fastron 77A -0 -2 -2 -Inductor_THT -L_Axial_L26.0mm_D10.0mm_P7.62mm_Vertical_Fastron_77A -Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=26*10mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf -Inductor Axial series Axial Vertical pin pitch 7.62mm length 26mm diameter 10mm Fastron 77A -0 -2 -2 -Inductor_THT -L_Axial_L26.0mm_D10.0mm_P30.48mm_Horizontal_Fastron_77A -Inductor, Axial series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=26*10mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf -Inductor Axial series Axial Horizontal pin pitch 30.48mm length 26mm diameter 10mm Fastron 77A -0 -2 -2 -Inductor_THT -L_Axial_L26.0mm_D11.0mm_P5.08mm_Vertical_Fastron_77A -Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=26*11mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf -Inductor Axial series Axial Vertical pin pitch 5.08mm length 26mm diameter 11mm Fastron 77A -0 -2 -2 -Inductor_THT -L_Axial_L26.0mm_D11.0mm_P7.62mm_Vertical_Fastron_77A -Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=26*11mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf -Inductor Axial series Axial Vertical pin pitch 7.62mm length 26mm diameter 11mm Fastron 77A -0 -2 -2 -Inductor_THT -L_Axial_L26.0mm_D11.0mm_P30.48mm_Horizontal_Fastron_77A -Inductor, Axial series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=26*11mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf -Inductor Axial series Axial Horizontal pin pitch 30.48mm length 26mm diameter 11mm Fastron 77A -0 -2 -2 -Inductor_THT -L_Axial_L26.7mm_D12.1mm_P7.62mm_Vertical_Vishay_IHA-103 -Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=26.67*12.07mm^2, Vishay, IHA-103, http://www.vishay.com/docs/34014/iha.pdf -Inductor Axial series Axial Vertical pin pitch 7.62mm length 26.67mm diameter 12.07mm Vishay IHA-103 -0 -2 -2 -Inductor_THT -L_Axial_L26.7mm_D12.1mm_P35.00mm_Horizontal_Vishay_IHA-103 -Inductor, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=26.67*12.07mm^2, Vishay, IHA-103, http://www.vishay.com/docs/34014/iha.pdf -Inductor Axial series Axial Horizontal pin pitch 35mm length 26.67mm diameter 12.07mm Vishay IHA-103 -0 -2 -2 -Inductor_THT -L_Axial_L26.7mm_D14.0mm_P7.62mm_Vertical_Vishay_IHA-104 -Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=26.67*13.97mm^2, Vishay, IHA-104, http://www.vishay.com/docs/34014/iha.pdf -Inductor Axial series Axial Vertical pin pitch 7.62mm length 26.67mm diameter 13.97mm Vishay IHA-104 -0 -2 -2 -Inductor_THT -L_Axial_L26.7mm_D14.0mm_P35.00mm_Horizontal_Vishay_IHA-104 -Inductor, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=26.67*13.97mm^2, Vishay, IHA-104, http://www.vishay.com/docs/34014/iha.pdf -Inductor Axial series Axial Horizontal pin pitch 35mm length 26.67mm diameter 13.97mm Vishay IHA-104 -0 -2 -2 -Inductor_THT -L_Axial_L29.9mm_D14.0mm_P7.62mm_Vertical_Vishay_IHA-105 -Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=29.85*13.97mm^2, Vishay, IHA-105, http://www.vishay.com/docs/34014/iha.pdf -Inductor Axial series Axial Vertical pin pitch 7.62mm length 29.85mm diameter 13.97mm Vishay IHA-105 -0 -2 -2 -Inductor_THT -L_Axial_L29.9mm_D14.0mm_P38.00mm_Horizontal_Vishay_IHA-105 -Inductor, Axial series, Axial, Horizontal, pin pitch=38mm, , length*diameter=29.85*13.97mm^2, Vishay, IHA-105, http://www.vishay.com/docs/34014/iha.pdf -Inductor Axial series Axial Horizontal pin pitch 38mm length 29.85mm diameter 13.97mm Vishay IHA-105 -0 -2 -2 -Inductor_THT -L_Axial_L30.0mm_D8.0mm_P5.08mm_Vertical_Fastron_77A -Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=30*8mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf -Inductor Axial series Axial Vertical pin pitch 5.08mm length 30mm diameter 8mm Fastron 77A -0 -2 -2 -Inductor_THT -L_Axial_L30.0mm_D8.0mm_P7.62mm_Vertical_Fastron_77A -Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=30*8mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf -Inductor Axial series Axial Vertical pin pitch 7.62mm length 30mm diameter 8mm Fastron 77A -0 -2 -2 -Inductor_THT -L_Axial_L30.0mm_D8.0mm_P35.56mm_Horizontal_Fastron_77A -Inductor, Axial series, Axial, Horizontal, pin pitch=35.56mm, , length*diameter=30*8mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf -Inductor Axial series Axial Horizontal pin pitch 35.56mm length 30mm diameter 8mm Fastron 77A -0 -2 -2 -Inductor_THT -L_CommonMode_PulseElectronics_PH9455x105NL_1 -common mode, inductor, filter, https://productfinder.pulseelectronics.com/api/open/product-attachments/datasheet/ph9455.105nl -cmode choke dual -0 -4 -4 -Inductor_THT -L_CommonMode_PulseElectronics_PH9455x155NL_1 -common mode, inductor, filter, https://productfinder.pulseelectronics.com/api/open/product-attachments/datasheet/ph9455.105nl -cmode choke dual -0 -4 -4 -Inductor_THT -L_CommonMode_PulseElectronics_PH9455x205NL_1 -common mode, inductor, filter, https://productfinder.pulseelectronics.com/api/open/product-attachments/datasheet/ph9455.105nl -cmode choke dual -0 -4 -4 -Inductor_THT -L_CommonMode_PulseElectronics_PH9455x405NL_1 -common mode, inductor, filter, https://productfinder.pulseelectronics.com/api/open/product-attachments/datasheet/ph9455.105nl -cmode choke dual -0 -4 -4 -Inductor_THT -L_CommonMode_PulseElectronics_PH9455x705NL_1 -common mode, inductor, filter, https://productfinder.pulseelectronics.com/api/open/product-attachments/datasheet/ph9455.105nl -cmode choke dual -0 -4 -4 -Inductor_THT -L_CommonMode_PulseElectronics_PH9455xxx6NL_2 -common mode, inductor, filter, https://productfinder.pulseelectronics.com/api/open/product-attachments/datasheet/ph9455.105nl -cmode choke dual -0 -4 -4 -Inductor_THT -L_CommonMode_Toroid_Vertical_L19.3mm_W10.8mm_Px6.35mm_Py15.24mm_Bourns_8100 -L_CommonMode_Toroid, Vertical series, Radial, pin pitch=6.35*15.24mm^2, , length*width=19.304*10.795mm^2, Bourns, 8100, http://datasheet.octopart.com/8120-RC-Bourns-datasheet-10228452.pdf -L_CommonMode_Toroid Vertical series Radial pin pitch 6.35*15.24mm^2 length 19.304mm width 10.795mm Bourns 8100 -0 -4 -4 -Inductor_THT -L_CommonMode_Toroid_Vertical_L21.0mm_W10.0mm_Px5.08mm_Py12.70mm_Murata_5100 -L_CommonMode_Toroid, Vertical series, Radial, pin pitch=5.08*12.70mm^2, , length*width=21*10mm^2, muRATA, 5100, http://www.murata-ps.com/data/magnetics/kmp_5100.pdf -L_CommonMode_Toroid Vertical series Radial pin pitch 5.08*12.70mm^2 length 21mm width 10mm muRATA 5100 -0 -4 -4 -Inductor_THT -L_CommonMode_Toroid_Vertical_L24.0mm_W16.3mm_Px10.16mm_Py20.32mm_Murata_5200 -L_CommonMode_Toroid, Vertical series, Radial, pin pitch=10.16*20.32mm^2, , length*width=24*16.3mm^2, muRATA, 5200, http://www.murata-ps.com/data/magnetics/kmp_5200.pdf -L_CommonMode_Toroid Vertical series Radial pin pitch 10.16*20.32mm^2 length 24mm width 16.3mm muRATA 5200 -0 -4 -4 -Inductor_THT -L_CommonMode_Toroid_Vertical_L30.5mm_W15.2mm_Px10.16mm_Py20.32mm_Bourns_8100 -L_CommonMode_Toroid, Vertical series, Radial, pin pitch=10.16*20.32mm^2, , length*width=30.479999999999997*15.239999999999998mm^2, Bourns, 8100, http://datasheet.octopart.com/8120-RC-Bourns-datasheet-10228452.pdf -L_CommonMode_Toroid Vertical series Radial pin pitch 10.16*20.32mm^2 length 30.479999999999997mm width 15.239999999999998mm Bourns 8100 -0 -4 -4 -Inductor_THT -L_CommonMode_Toroid_Vertical_L34.3mm_W20.3mm_Px15.24mm_Py22.86mm_Bourns_8100 -L_CommonMode_Toroid, Vertical series, Radial, pin pitch=15.24*22.86mm^2, , length*width=34.29*20.32mm^2, Bourns, 8100, http://datasheet.octopart.com/8120-RC-Bourns-datasheet-10228452.pdf -L_CommonMode_Toroid Vertical series Radial pin pitch 15.24*22.86mm^2 length 34.29mm width 20.32mm Bourns 8100 -0 -4 -4 -Inductor_THT -L_CommonMode_Toroid_Vertical_L36.8mm_W20.3mm_Px15.24mm_Py22.86mm_Bourns_8100 -L_CommonMode_Toroid, Vertical series, Radial, pin pitch=15.24*22.86mm^2, , length*width=36.83*20.32mm^2, Bourns, 8100, http://datasheet.octopart.com/8120-RC-Bourns-datasheet-10228452.pdf -L_CommonMode_Toroid Vertical series Radial pin pitch 15.24*22.86mm^2 length 36.83mm width 20.32mm Bourns 8100 -0 -4 -4 -Inductor_THT -L_CommonMode_Toroid_Vertical_L38.1mm_W20.3mm_Px15.24mm_Py22.86mm_Bourns_8100 -L_CommonMode_Toroid, Vertical series, Radial, pin pitch=15.24*22.86mm^2, , length*width=38.099999999999994*20.32mm^2, Bourns, 8100, http://datasheet.octopart.com/8120-RC-Bourns-datasheet-10228452.pdf -L_CommonMode_Toroid Vertical series Radial pin pitch 15.24*22.86mm^2 length 38.099999999999994mm width 20.32mm Bourns 8100 -0 -4 -4 -Inductor_THT -L_CommonMode_Toroid_Vertical_L39.4mm_W20.3mm_Px15.24mm_Py22.86mm_Bourns_8100 -L_CommonMode_Toroid, Vertical series, Radial, pin pitch=15.24*22.86mm^2, , length*width=39.37*20.32mm^2, Bourns, 8100, http://datasheet.octopart.com/8120-RC-Bourns-datasheet-10228452.pdf -L_CommonMode_Toroid Vertical series Radial pin pitch 15.24*22.86mm^2 length 39.37mm width 20.32mm Bourns 8100 -0 -4 -4 -Inductor_THT -L_CommonMode_Toroid_Vertical_L41.9mm_W20.3mm_Px15.24mm_Py22.86mm_Bourns_8100 -L_CommonMode_Toroid, Vertical series, Radial, pin pitch=15.24*22.86mm^2, , length*width=41.91*20.32mm^2, Bourns, 8100, http://datasheet.octopart.com/8120-RC-Bourns-datasheet-10228452.pdf -L_CommonMode_Toroid Vertical series Radial pin pitch 15.24*22.86mm^2 length 41.91mm width 20.32mm Bourns 8100 -0 -4 -4 -Inductor_THT -L_CommonMode_Toroid_Vertical_L43.2mm_W22.9mm_Px17.78mm_Py30.48mm_Bourns_8100 -L_CommonMode_Toroid, Vertical series, Radial, pin pitch=17.78*30.48mm^2, , length*width=43.18*22.86mm^2, Bourns, 8100, http://datasheet.octopart.com/8120-RC-Bourns-datasheet-10228452.pdf -L_CommonMode_Toroid Vertical series Radial pin pitch 17.78*30.48mm^2 length 43.18mm width 22.86mm Bourns 8100 -0 -4 -4 -Inductor_THT -L_CommonMode_VAC_T60405-S6123-X140 -3 Phase, CM Choke, https://vacuumschmelze.com/03_Documents/Datasheets%20-%20Drawings/Commom-Mode-Chokes/6123-X140.pdf -common mode filter -0 -6 -6 -Inductor_THT -L_CommonMode_VAC_T60405-S6123-X240 -3 Phase, CM Choke, https://vacuumschmelze.com/03_Documents/Datasheets%20-%20Drawings/Commom-Mode-Chokes/6123-X240.pdf -common mode filter -0 -6 -6 -Inductor_THT -L_CommonMode_Wuerth_WE-CMB-L -Wuerth, WE-CMB, Bauform L, -CommonModeChoke Gleichtaktdrossel -0 -4 -4 -Inductor_THT -L_CommonMode_Wuerth_WE-CMB-M -Wuerth, WE-CMB, Bauform M, -CommonModeChoke Gleichtaktdrossel -0 -4 -4 -Inductor_THT -L_CommonMode_Wuerth_WE-CMB-S -Wuerth, WE-CMB, Bauform S, -CommonModeChoke Gleichtaktdrossel -0 -4 -4 -Inductor_THT -L_CommonMode_Wuerth_WE-CMB-XL -Wuerth, WE-CMB, Bauform XL, -CommonModeChoke Gleichtaktdrossel -0 -4 -4 -Inductor_THT -L_CommonMode_Wuerth_WE-CMB-XS -Wuerth, WE-CMB, Bauform XS, -CommonModeChoke Gleichtaktdrossel -0 -4 -4 -Inductor_THT -L_CommonMode_Wuerth_WE-CMB-XXL -Wuerth, WE-CMB, Bauform XXL, -CommonModeChoke Gleichtaktdrossel -0 -4 -4 -Inductor_THT -L_Mount_Lodestone_VTM120 -Lodestone Pacific, 30.48mm diameter vertical toroid mount, 16AWG/1.27mm holes, http://www.lodestonepacific.com/CatKpdf/VTM_Series.pdf -vertical inductor toroid mount -0 -4 -4 -Inductor_THT -L_Mount_Lodestone_VTM160 -Lodestone Pacific, 40.64mm diameter vertical toroid mount, 16AWG/1.27mm holes, http://www.lodestonepacific.com/CatKpdf/VTM_Series.pdf -vertical inductor toroid mount -0 -4 -4 -Inductor_THT -L_Mount_Lodestone_VTM254 -Lodestone Pacific, 64.51mm diameter vertical toroid mount, 16AWG/1.27mm holes, http://www.lodestonepacific.com/CatKpdf/VTM_Series.pdf -vertical inductor toroid mount -0 -4 -4 -Inductor_THT -L_Mount_Lodestone_VTM280 -Lodestone Pacific, 71.12mm diameter vertical toroid mount, 16AWG/1.27mm holes, http://www.lodestonepacific.com/CatKpdf/VTM_Series.pdf -vertical inductor toroid mount -0 -4 -4 -Inductor_THT -L_Mount_Lodestone_VTM950-6 -Lodestone Pacific, vertical toroid mount, 11x19mm, 6 pins, http://www.lodestonepacific.com/CatKpdf/VTM950-6.pdf -vertical inductor toroid mount -0 -6 -6 -Inductor_THT -L_Radial_D6.0mm_P4.00mm -Inductor, Radial series, Radial, pin pitch=4.00mm, , diameter=6.0mm, http://www.abracon.com/Magnetics/radial/AIUR-07.pdf -Inductor Radial series Radial pin pitch 4.00mm diameter 6.0mm -0 -2 -2 -Inductor_THT -L_Radial_D7.0mm_P3.00mm -Inductor, Radial series, Radial, pin pitch=3.00mm, , diameter=7mm, http://www.abracon.com/Magnetics/radial/AIUR-16.pdf -Inductor Radial series Radial pin pitch 3.00mm diameter 7mm -0 -2 -2 -Inductor_THT -L_Radial_D7.2mm_P3.00mm_Murata_1700 -Inductor, Radial series, Radial, pin pitch=3.00mm, , diameter=7.2mm, MuRATA, 1700, http://www.murata-ps.com/data/magnetics/kmp_1700.pdf -Inductor Radial series Radial pin pitch 3.00mm diameter 7.2mm MuRATA 1700 -0 -2 -2 -Inductor_THT -L_Radial_D7.5mm_P3.50mm_Fastron_07P -Inductor, Radial series, Radial, pin pitch=3.50mm, , diameter=7.5mm, Fastron, 07P, http://www.fastrongroup.com/image-show/39/07P.pdf?type=Complete-DataSheet&productType=series -Inductor Radial series Radial pin pitch 3.50mm diameter 7.5mm Fastron 07P -0 -2 -2 -Inductor_THT -L_Radial_D7.5mm_P5.00mm_Fastron_07P -Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=7.5mm, Fastron, 07P, http://www.fastrongroup.com/image-show/39/07P.pdf?type=Complete-DataSheet&productType=series -Inductor Radial series Radial pin pitch 5.00mm diameter 7.5mm Fastron 07P -0 -2 -2 -Inductor_THT -L_Radial_D7.8mm_P5.00mm_Fastron_07HCP -Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=7.8mm, Fastron, 07HCP, http://www.abracon.com/Magnetics/radial/AISR875.pdf -Inductor Radial series Radial pin pitch 5.00mm diameter 7.8mm Fastron 07HCP -0 -2 -2 -Inductor_THT -L_Radial_D8.7mm_P5.00mm_Fastron_07HCP -Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=8.7mm, Fastron, 07HCP, http://cdn-reichelt.de/documents/datenblatt/B400/DS_07HCP.pdf -Inductor Radial series Radial pin pitch 5.00mm diameter 8.7mm Fastron 07HCP -0 -2 -2 -Inductor_THT -L_Radial_D9.5mm_P5.00mm_Fastron_07HVP -Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=9.5mm, Fastron, 07HVP, http://www.fastrongroup.com/image-show/107/07HVP%2007HVP_T.pdf?type=Complete-DataSheet&productType=series -Inductor Radial series Radial pin pitch 5.00mm diameter 9.5mm Fastron 07HVP -0 -2 -2 -Inductor_THT -L_Radial_D10.0mm_P5.00mm_Fastron_07M -Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=10mm, Fastron, 07M, http://www.fastrongroup.com/image-show/37/07M.pdf?type=Complete-DataSheet&productType=series -Inductor Radial series Radial pin pitch 5.00mm diameter 10mm Fastron 07M -0 -2 -2 -Inductor_THT -L_Radial_D10.0mm_P5.00mm_Fastron_07P -Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=10mm, Fastron, 07P, http://www.fastrongroup.com/image-show/37/07M.pdf?type=Complete-DataSheet&productType=series -Inductor Radial series Radial pin pitch 5.00mm diameter 10mm Fastron 07P -0 -2 -2 -Inductor_THT -L_Radial_D10.0mm_P5.00mm_Neosid_SD12_style3 -Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=10.0mm, Neosid, SD12, style3, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_Sd12.pdf -Inductor Radial series Radial pin pitch 5.00mm diameter 10.0mm Neosid SD12 style3 -0 -2 -2 -Inductor_THT -L_Radial_D10.0mm_P5.00mm_Neosid_SD12k_style3 -Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=10.0mm, Neosid, SD12k, style3, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_Sd12k.pdf -Inductor Radial series Radial pin pitch 5.00mm diameter 10.0mm Neosid SD12k style3 -0 -2 -2 -Inductor_THT -L_Radial_D10.5mm_P4.00x5.00mm_Murata_1200RS -Inductor, Radial, Pitch=4.00x5.00mm, Diameter=10.5mm, Murata 1200RS, http://www.murata-ps.com/data/magnetics/kmp_1200rs.pdf -Inductor Radial Murata 1200RS -0 -4 -2 -Inductor_THT -L_Radial_D10.5mm_P5.00mm_Abacron_AISR-01 -Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=10.5mm, Abacron, AISR-01, http://www.abracon.com/Magnetics/radial/AISR-01.pdf -Inductor Radial series Radial pin pitch 5.00mm diameter 10.5mm Abacron AISR-01 -0 -2 -2 -Inductor_THT -L_Radial_D12.0mm_P5.00mm_Fastron_11P -Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=12.0mm, Fastron, 11P, http://cdn-reichelt.de/documents/datenblatt/B400/DS_11P.pdf -Inductor Radial series Radial pin pitch 5.00mm diameter 12.0mm Fastron 11P -0 -2 -2 -Inductor_THT -L_Radial_D12.0mm_P5.00mm_Neosid_SD12_style2 -Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=12.0mm, Neosid, SD12, style2, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_Sd12.pdf -Inductor Radial series Radial pin pitch 5.00mm diameter 12.0mm Neosid SD12 style2 -0 -2 -2 -Inductor_THT -L_Radial_D12.0mm_P5.00mm_Neosid_SD12k_style2 -Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=12.0mm, Neosid, SD12k, style2, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_Sd12k.pdf -Inductor Radial series Radial pin pitch 5.00mm diameter 12.0mm Neosid SD12k style2 -0 -2 -2 -Inductor_THT -L_Radial_D12.0mm_P6.00mm_Murata_1900R -Inductor, Radial series, Radial, pin pitch=6.00mm, , diameter=12.0mm, MuRATA, 1900R, http://www.murata-ps.com/data/magnetics/kmp_1900r.pdf -Inductor Radial series Radial pin pitch 6.00mm diameter 12.0mm MuRATA 1900R -0 -2 -2 -Inductor_THT -L_Radial_D12.0mm_P10.00mm_Neosid_SD12_style1 -Inductor, Radial series, Radial, pin pitch=10.00mm, , diameter=12.0mm, Neosid, SD12, style1, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_Sd12.pdf -Inductor Radial series Radial pin pitch 10.00mm diameter 12.0mm Neosid SD12 style1 -0 -2 -2 -Inductor_THT -L_Radial_D12.0mm_P10.00mm_Neosid_SD12k_style1 -Inductor, Radial series, Radial, pin pitch=10.00mm, , diameter=12.0mm, Neosid, SD12k, style1, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_Sd12k.pdf -Inductor Radial series Radial pin pitch 10.00mm diameter 12.0mm Neosid SD12k style1 -0 -2 -2 -Inductor_THT -L_Radial_D12.5mm_P7.00mm_Fastron_09HCP -Inductor, Radial series, Radial, pin pitch=7.00mm, , diameter=12.5mm, Fastron, 09HCP, http://cdn-reichelt.de/documents/datenblatt/B400/DS_09HCP.pdf -Inductor Radial series Radial pin pitch 7.00mm diameter 12.5mm Fastron 09HCP -0 -2 -2 -Inductor_THT -L_Radial_D12.5mm_P9.00mm_Fastron_09HCP -Inductor, Radial series, Radial, pin pitch=9.00mm, , diameter=12.5mm, Fastron, 09HCP, http://cdn-reichelt.de/documents/datenblatt/B400/DS_09HCP.pdf -Inductor Radial series Radial pin pitch 9.00mm diameter 12.5mm Fastron 09HCP -0 -2 -2 -Inductor_THT -L_Radial_D13.5mm_P7.00mm_Fastron_09HCP -Inductor, Radial series, Radial, pin pitch=7.00mm, , diameter=13.5mm, Fastron, 09HCP, http://cdn-reichelt.de/documents/datenblatt/B400/DS_09HCP.pdf -Inductor Radial series Radial pin pitch 7.00mm diameter 13.5mm Fastron 09HCP -0 -2 -2 -Inductor_THT -L_Radial_D14.2mm_P10.00mm_Neosid_SD14 -Inductor, Radial series, Radial, pin pitch=10.00mm, , diameter=14.2mm, Neosid, SD14, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_Sd14.pdf -Inductor Radial series Radial pin pitch 10.00mm diameter 14.2mm Neosid SD14 -0 -2 -2 -Inductor_THT -L_Radial_D16.8mm_P11.43mm_Vishay_IHB-1 -Inductor, Radial series, Radial, pin pitch=11.43mm, , diameter=16.8mm, Vishay, IHB-1, http://www.vishay.com/docs/34015/ihb.pdf -Inductor Radial series Radial pin pitch 11.43mm diameter 16.8mm Vishay IHB-1 -0 -2 -2 -Inductor_THT -L_Radial_D16.8mm_P12.07mm_Vishay_IHB-1 -Inductor, Radial series, Radial, pin pitch=12.07mm, , diameter=16.8mm, Vishay, IHB-1, http://www.vishay.com/docs/34015/ihb.pdf -Inductor Radial series Radial pin pitch 12.07mm diameter 16.8mm Vishay IHB-1 -0 -2 -2 -Inductor_THT -L_Radial_D16.8mm_P12.70mm_Vishay_IHB-1 -Inductor, Radial series, Radial, pin pitch=12.70mm, , diameter=16.8mm, Vishay, IHB-1, http://www.vishay.com/docs/34015/ihb.pdf -Inductor Radial series Radial pin pitch 12.70mm diameter 16.8mm Vishay IHB-1 -0 -2 -2 -Inductor_THT -L_Radial_D18.0mm_P10.00mm -Inductor, Radial series, Radial, pin pitch=10.00mm, , diameter=18mm, http://www.abracon.com/Magnetics/radial/AIUR-15.pdf -Inductor Radial series Radial pin pitch 10.00mm diameter 18mm -0 -2 -2 -Inductor_THT -L_Radial_D21.0mm_P14.61mm_Vishay_IHB-2 -Inductor, Radial series, Radial, pin pitch=14.61mm, , diameter=21mm, Vishay, IHB-2, http://www.vishay.com/docs/34015/ihb.pdf -Inductor Radial series Radial pin pitch 14.61mm diameter 21mm Vishay IHB-2 -0 -2 -2 -Inductor_THT -L_Radial_D21.0mm_P15.00mm_Vishay_IHB-2 -Inductor, Radial series, Radial, pin pitch=15.00mm, , diameter=21mm, Vishay, IHB-2, http://www.vishay.com/docs/34015/ihb.pdf -Inductor Radial series Radial pin pitch 15.00mm diameter 21mm Vishay IHB-2 -0 -2 -2 -Inductor_THT -L_Radial_D21.0mm_P15.24mm_Vishay_IHB-2 -Inductor, Radial series, Radial, pin pitch=15.24mm, , diameter=21mm, Vishay, IHB-2, http://www.vishay.com/docs/34015/ihb.pdf -Inductor Radial series Radial pin pitch 15.24mm diameter 21mm Vishay IHB-2 -0 -2 -2 -Inductor_THT -L_Radial_D21.0mm_P15.75mm_Vishay_IHB-2 -Inductor, Radial series, Radial, pin pitch=15.75mm, , diameter=21mm, Vishay, IHB-2, http://www.vishay.com/docs/34015/ihb.pdf -Inductor Radial series Radial pin pitch 15.75mm diameter 21mm Vishay IHB-2 -0 -2 -2 -Inductor_THT -L_Radial_D21.0mm_P19.00mm -Inductor, Radial series, Radial, pin pitch=19.00mm, , diameter=21mm, http://www.abracon.com/Magnetics/radial/AIRD02.pdf -Inductor Radial series Radial pin pitch 19.00mm diameter 21mm -0 -2 -2 -Inductor_THT -L_Radial_D24.0mm_P24.00mm -Inductor, Radial series, Radial, pin pitch=24.00mm, , diameter=24mm -Inductor Radial series Radial pin pitch 24.00mm diameter 24mm -0 -2 -2 -Inductor_THT -L_Radial_D24.4mm_P22.90mm_Murata_1400series -Inductor, Radial series, Radial, pin pitch=22.90mm, , diameter=24.4mm, muRATA, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf -Inductor Radial series Radial pin pitch 22.90mm diameter 24.4mm muRATA 1400series -0 -2 -2 -Inductor_THT -L_Radial_D24.4mm_P23.10mm_Murata_1400series -Inductor, Radial series, Radial, pin pitch=23.10mm, , diameter=24.4mm, muRATA, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf -Inductor Radial series Radial pin pitch 23.10mm diameter 24.4mm muRATA 1400series -0 -2 -2 -Inductor_THT -L_Radial_D24.4mm_P23.40mm_Murata_1400series -Inductor, Radial series, Radial, pin pitch=23.40mm, , diameter=24.4mm, muRATA, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf -Inductor Radial series Radial pin pitch 23.40mm diameter 24.4mm muRATA 1400series -0 -2 -2 -Inductor_THT -L_Radial_D24.4mm_P23.70mm_Murata_1400series -Inductor, Radial series, Radial, pin pitch=23.70mm, , diameter=24.4mm, muRATA, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf -Inductor Radial series Radial pin pitch 23.70mm diameter 24.4mm muRATA 1400series -0 -2 -2 -Inductor_THT -L_Radial_D24.4mm_P23.90mm_Murata_1400series -Inductor, Radial series, Radial, pin pitch=23.90mm, , diameter=24.4mm, muRATA, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf -Inductor Radial series Radial pin pitch 23.90mm diameter 24.4mm muRATA 1400series -0 -2 -2 -Inductor_THT -L_Radial_D27.9mm_P18.29mm_Vishay_IHB-3 -Inductor, Radial series, Radial, pin pitch=18.29mm, , diameter=27.9mm, Vishay, IHB-3, http://www.vishay.com/docs/34015/ihb.pdf -Inductor Radial series Radial pin pitch 18.29mm diameter 27.9mm Vishay IHB-3 -0 -2 -2 -Inductor_THT -L_Radial_D27.9mm_P19.05mm_Vishay_IHB-3 -Inductor, Radial series, Radial, pin pitch=19.05mm, , diameter=27.9mm, Vishay, IHB-3, http://www.vishay.com/docs/34015/ihb.pdf -Inductor Radial series Radial pin pitch 19.05mm diameter 27.9mm Vishay IHB-3 -0 -2 -2 -Inductor_THT -L_Radial_D27.9mm_P20.07mm_Vishay_IHB-3 -Inductor, Radial series, Radial, pin pitch=20.07mm, , diameter=27.9mm, Vishay, IHB-3, http://www.vishay.com/docs/34015/ihb.pdf -Inductor Radial series Radial pin pitch 20.07mm diameter 27.9mm Vishay IHB-3 -0 -2 -2 -Inductor_THT -L_Radial_D28.0mm_P29.20mm -Inductor, Radial series, Radial, pin pitch=29.20mm, , diameter=28mm -Inductor Radial series Radial pin pitch 29.20mm diameter 28mm -0 -2 -2 -Inductor_THT -L_Radial_D29.8mm_P28.30mm_Murata_1400series -Inductor, Radial series, Radial, pin pitch=28.30mm, , diameter=29.8mm, muRATA, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf -Inductor Radial series Radial pin pitch 28.30mm diameter 29.8mm muRATA 1400series -0 -2 -2 -Inductor_THT -L_Radial_D29.8mm_P28.50mm_Murata_1400series -Inductor, Radial series, Radial, pin pitch=28.50mm, , diameter=29.8mm, muRATA, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf -Inductor Radial series Radial pin pitch 28.50mm diameter 29.8mm muRATA 1400series -0 -2 -2 -Inductor_THT -L_Radial_D29.8mm_P28.80mm_Murata_1400series -Inductor, Radial series, Radial, pin pitch=28.80mm, , diameter=29.8mm, muRATA, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf -Inductor Radial series Radial pin pitch 28.80mm diameter 29.8mm muRATA 1400series -0 -2 -2 -Inductor_THT -L_Radial_D29.8mm_P29.00mm_Murata_1400series -Inductor, Radial series, Radial, pin pitch=29.00mm, , diameter=29.8mm, muRATA, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf -Inductor Radial series Radial pin pitch 29.00mm diameter 29.8mm muRATA 1400series -0 -2 -2 -Inductor_THT -L_Radial_D29.8mm_P29.30mm_Murata_1400series -Inductor, Radial series, Radial, pin pitch=29.30mm, , diameter=29.8mm, muRATA, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf -Inductor Radial series Radial pin pitch 29.30mm diameter 29.8mm muRATA 1400series -0 -2 -2 -Inductor_THT -L_Radial_D40.6mm_P26.16mm_Vishay_IHB-5 -Inductor, Radial series, Radial, pin pitch=26.16mm, , diameter=40.64mm, Vishay, IHB-5, http://www.vishay.com/docs/34015/ihb.pdf -Inductor Radial series Radial pin pitch 26.16mm diameter 40.64mm Vishay IHB-5 -0 -2 -2 -Inductor_THT -L_Radial_D40.6mm_P27.18mm_Vishay_IHB-4 -Inductor, Radial series, Radial, pin pitch=27.18mm, , diameter=40.64mm, Vishay, IHB-4, http://www.vishay.com/docs/34015/ihb.pdf -Inductor Radial series Radial pin pitch 27.18mm diameter 40.64mm Vishay IHB-4 -0 -2 -2 -Inductor_THT -L_Radial_D40.6mm_P27.94mm_Vishay_IHB-4 -Inductor, Radial series, Radial, pin pitch=27.94mm, , diameter=40.64mm, Vishay, IHB-4, http://www.vishay.com/docs/34015/ihb.pdf -Inductor Radial series Radial pin pitch 27.94mm diameter 40.64mm Vishay IHB-4 -0 -2 -2 -Inductor_THT -L_Radial_D40.6mm_P27.94mm_Vishay_IHB-5 -Inductor, Radial series, Radial, pin pitch=27.94mm, , diameter=40.64mm, Vishay, IHB-5, http://www.vishay.com/docs/34015/ihb.pdf -Inductor Radial series Radial pin pitch 27.94mm diameter 40.64mm Vishay IHB-5 -0 -2 -2 -Inductor_THT -L_Radial_D40.6mm_P28.70mm_Vishay_IHB-5 -Inductor, Radial series, Radial, pin pitch=28.70mm, , diameter=40.64mm, Vishay, IHB-5, http://www.vishay.com/docs/34015/ihb.pdf -Inductor Radial series Radial pin pitch 28.70mm diameter 40.64mm Vishay IHB-5 -0 -2 -2 -Inductor_THT -L_Radial_D50.8mm_P33.27mm_Vishay_IHB-6 -Inductor, Radial series, Radial, pin pitch=33.27mm, , diameter=50.8mm, Vishay, IHB-6, http://www.vishay.com/docs/34015/ihb.pdf -Inductor Radial series Radial pin pitch 33.27mm diameter 50.8mm Vishay IHB-6 -0 -2 -2 -Inductor_THT -L_Radial_D50.8mm_P34.29mm_Vishay_IHB-6 -Inductor, Radial series, Radial, pin pitch=34.29mm, , diameter=50.8mm, Vishay, IHB-6, http://www.vishay.com/docs/34015/ihb.pdf -Inductor Radial series Radial pin pitch 34.29mm diameter 50.8mm Vishay IHB-6 -0 -2 -2 -Inductor_THT -L_Radial_D50.8mm_P35.81mm_Vishay_IHB-6 -Inductor, Radial series, Radial, pin pitch=35.81mm, , diameter=50.8mm, Vishay, IHB-6, http://www.vishay.com/docs/34015/ihb.pdf -Inductor Radial series Radial pin pitch 35.81mm diameter 50.8mm Vishay IHB-6 -0 -2 -2 -Inductor_THT -L_Radial_D50.8mm_P36.32mm_Vishay_IHB-6 -Inductor, Radial series, Radial, pin pitch=36.32mm, , diameter=50.8mm, Vishay, IHB-6, http://www.vishay.com/docs/34015/ihb.pdf -Inductor Radial series Radial pin pitch 36.32mm diameter 50.8mm Vishay IHB-6 -0 -2 -2 -Inductor_THT -L_Radial_D50.8mm_P38.86mm_Vishay_IHB-6 -Inductor, Radial series, Radial, pin pitch=38.86mm, , diameter=50.8mm, Vishay, IHB-6, http://www.vishay.com/docs/34015/ihb.pdf -Inductor Radial series Radial pin pitch 38.86mm diameter 50.8mm Vishay IHB-6 -0 -2 -2 -Inductor_THT -L_Radial_L7.5mm_W4.6mm_P5.00mm_Neosid_SD75 -Inductor, Radial series, Radial, pin pitch=5.00mm, , length*width=7.5*4.6mm^2, Neosid, SD75, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_Sd75.pdf -Inductor Radial series Radial pin pitch 5.00mm length 7.5mm width 4.6mm Neosid SD75 -0 -2 -2 -Inductor_THT -L_Radial_L8.0mm_W8.0mm_P5.00mm_Neosid_NE-CPB-07E -Inductor, Radial series, Radial, pin pitch=5.00mm, , length*width=8*8mm^2, Neosid, NE-CPB-07E, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_NE_CPB07E.pdf -Inductor Radial series Radial pin pitch 5.00mm length 8mm width 8mm Neosid NE-CPB-07E -0 -2 -2 -Inductor_THT -L_Radial_L8.0mm_W8.0mm_P5.00mm_Neosid_SD8 -Inductor, Radial series, Radial, pin pitch=5.00mm, , length*width=8*8mm^2, Neosid, SD8, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_Sd8.pdf -Inductor Radial series Radial pin pitch 5.00mm length 8mm width 8mm Neosid SD8 -0 -2 -2 -Inductor_THT -L_Radial_L9.1mm_W9.1mm_Px6.35mm_Py6.35mm_Pulse_LP-25 -Inductor, Radial series, Radial, pin pitch=6.35*6.35mm^2, , length*width=9.14*9.14mm^2, Pulse, LP-25, http://datasheet.octopart.com/PE-54044NL-Pulse-datasheet-5313493.pdf -Inductor Radial series Radial pin pitch 6.35*6.35mm^2 length 9.14mm width 9.14mm Pulse LP-25 -0 -2 -2 -Inductor_THT -L_Radial_L10.2mm_W10.2mm_Px7.62mm_Py7.62mm_Pulse_LP-30 -Inductor, Radial series, Radial, pin pitch=7.62*7.62mm^2, , length*width=10.16*10.16mm^2, Pulse, LP-30, http://datasheet.octopart.com/PE-54044NL-Pulse-datasheet-5313493.pdf -Inductor Radial series Radial pin pitch 7.62*7.62mm^2 length 10.16mm width 10.16mm Pulse LP-30 -0 -2 -2 -Inductor_THT -L_Radial_L11.5mm_W11.5mm_Px6.00mm_Py6.00mm_Neosid_NE-CPB-11EN_Drill1.3mm -Inductor, Radial series, Radial, pin pitch=6.00*6.00mm^2, , length*width=11.5*11.5mm^2, Neosid, NE-CPB-11EN, Drill1.3mm, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_NE_CPB11EN.pdf -Inductor Radial series Radial pin pitch 6.00*6.00mm^2 length 11.5mm width 11.5mm Neosid NE-CPB-11EN Drill1.3mm -0 -2 -2 -Inductor_THT -L_Radial_L11.5mm_W11.5mm_Px6.00mm_Py6.00mm_Neosid_NE-CPB-11EN_Drill1.5mm -Inductor, Radial series, Radial, pin pitch=6.00*6.00mm^2, , length*width=11.5*11.5mm^2, Neosid, NE-CPB-11EN, Drill1.5mm, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_NE_CPB11EN.pdf -Inductor Radial series Radial pin pitch 6.00*6.00mm^2 length 11.5mm width 11.5mm Neosid NE-CPB-11EN Drill1.5mm -0 -2 -2 -Inductor_THT -L_Radial_L11.5mm_W11.5mm_Px6.00mm_Py6.00mm_Neosid_NE-CPB-11EN_Drill1.7mm -Inductor, Radial series, Radial, pin pitch=6.00*6.00mm^2, , length*width=11.5*11.5mm^2, Neosid, NE-CPB-11EN, Drill1.7mm, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_NE_CPB11EN.pdf -Inductor Radial series Radial pin pitch 6.00*6.00mm^2 length 11.5mm width 11.5mm Neosid NE-CPB-11EN Drill1.7mm -0 -2 -2 -Inductor_THT -L_Radial_L11.5mm_W11.5mm_Px6.00mm_Py6.00mm_Neosid_NE-CPB-11EN_Drill1.8mm -Inductor, Radial series, Radial, pin pitch=6.00*6.00mm^2, , length*width=11.5*11.5mm^2, Neosid, NE-CPB-11EN, Drill1.8mm, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_NE_CPB11EN.pdf -Inductor Radial series Radial pin pitch 6.00*6.00mm^2 length 11.5mm width 11.5mm Neosid NE-CPB-11EN Drill1.8mm -0 -2 -2 -Inductor_THT -L_Radial_L12.6mm_W12.6mm_Px9.52mm_Py9.52mm_Pulse_LP-37 -Inductor, Radial series, Radial, pin pitch=9.52*9.52mm^2, , length*width=12.57*12.57mm^2, Pulse, LP-37, http://datasheet.octopart.com/PE-54044NL-Pulse-datasheet-5313493.pdf -Inductor Radial series Radial pin pitch 9.52*9.52mm^2 length 12.57mm width 12.57mm Pulse LP-37 -0 -2 -2 -Inductor_THT -L_Radial_L16.1mm_W16.1mm_Px7.62mm_Py12.70mm_Pulse_LP-44 -Inductor, Radial series, Radial, pin pitch=7.62*12.70mm^2, , length*width=16.13*16.13mm^2, Pulse, LP-44, http://datasheet.octopart.com/PE-54044NL-Pulse-datasheet-5313493.pdf -Inductor Radial series Radial pin pitch 7.62*12.70mm^2 length 16.13mm width 16.13mm Pulse LP-44 -0 -2 -2 -Inductor_THT -L_SELF1408 -Self Ferrite 14 - 08 -SELF -0 -7 -3 -Inductor_THT -L_SELF1418 -Self Ferrite 14 - 18 -SELF -0 -10 -4 -Inductor_THT -L_Toroid_Horizontal_D3.2mm_P6.40mm_Diameter3-5mm_Amidon-T12 -L_Toroid, Horizontal series, Radial, pin pitch=6.40mm, , diameter=3.175mm, Diameter3-5mm, Amidon-T12 -L_Toroid Horizontal series Radial pin pitch 6.40mm diameter 3.175mm Diameter3-5mm Amidon-T12 -0 -2 -2 -Inductor_THT -L_Toroid_Horizontal_D4.1mm_P8.00mm_Diameter4-5mm_Amidon-T16 -L_Toroid, Horizontal series, Radial, pin pitch=8.00mm, , diameter=4.064mm, Diameter4-5mm, Amidon-T16 -L_Toroid Horizontal series Radial pin pitch 8.00mm diameter 4.064mm Diameter4-5mm Amidon-T16 -0 -2 -2 -Inductor_THT -L_Toroid_Horizontal_D5.1mm_P9.00mm_Diameter6-5mm_Amidon-T20 -L_Toroid, Horizontal series, Radial, pin pitch=9.00mm, , diameter=5.08mm, Diameter6-5mm, Amidon-T20 -L_Toroid Horizontal series Radial pin pitch 9.00mm diameter 5.08mm Diameter6-5mm Amidon-T20 -0 -2 -2 -Inductor_THT -L_Toroid_Horizontal_D6.5mm_P10.00mm_Diameter7-5mm_Amidon-T25 -L_Toroid, Horizontal series, Radial, pin pitch=10.00mm, , diameter=6.476999999999999mm, Diameter7-5mm, Amidon-T25 -L_Toroid Horizontal series Radial pin pitch 10.00mm diameter 6.476999999999999mm Diameter7-5mm Amidon-T25 -0 -2 -2 -Inductor_THT -L_Toroid_Horizontal_D7.8mm_P13.00mm_Diameter9-5mm_Amidon-T30 -L_Toroid, Horizontal series, Radial, pin pitch=13.00mm, , diameter=7.7978mm, Diameter9-5mm, Amidon-T30 -L_Toroid Horizontal series Radial pin pitch 13.00mm diameter 7.7978mm Diameter9-5mm Amidon-T30 -0 -2 -2 -Inductor_THT -L_Toroid_Horizontal_D9.5mm_P15.00mm_Diameter10-5mm_Amidon-T37 -L_Toroid, Horizontal series, Radial, pin pitch=15.00mm, , diameter=9.524999999999999mm, Diameter10-5mm, Amidon-T37 -L_Toroid Horizontal series Radial pin pitch 15.00mm diameter 9.524999999999999mm Diameter10-5mm Amidon-T37 -0 -2 -2 -Inductor_THT -L_Toroid_Horizontal_D11.2mm_P17.00mm_Diameter12-5mm_Amidon-T44 -L_Toroid, Horizontal series, Radial, pin pitch=17.00mm, , diameter=11.176mm, Diameter12-5mm, Amidon-T44 -L_Toroid Horizontal series Radial pin pitch 17.00mm diameter 11.176mm Diameter12-5mm Amidon-T44 -0 -2 -2 -Inductor_THT -L_Toroid_Horizontal_D12.7mm_P20.00mm_Diameter14-5mm_Amidon-T50 -L_Toroid, Horizontal series, Radial, pin pitch=20.00mm, , diameter=12.7mm, Diameter14-5mm, Amidon-T50 -L_Toroid Horizontal series Radial pin pitch 20.00mm diameter 12.7mm Diameter14-5mm Amidon-T50 -0 -2 -2 -Inductor_THT -L_Toroid_Horizontal_D16.8mm_P14.70mm_Vishay_TJ3 -L_Toroid, Horizontal series, Radial, pin pitch=14.70mm, , diameter=16.8mm, Vishay, TJ3, http://www.vishay.com/docs/34079/tj.pdf -L_Toroid Horizontal series Radial pin pitch 14.70mm diameter 16.8mm Vishay TJ3 -0 -2 -2 -Inductor_THT -L_Toroid_Horizontal_D16.8mm_P14.70mm_Vishay_TJ3_BigPads -L_Toroid, Horizontal series, Radial, pin pitch=14.70mm, , diameter=16.8mm, Vishay, TJ3, BigPads, http://www.vishay.com/docs/34079/tj.pdf -L_Toroid Horizontal series Radial pin pitch 14.70mm diameter 16.8mm Vishay TJ3 BigPads -0 -2 -2 -Inductor_THT -L_Toroid_Horizontal_D17.3mm_P15.24mm_Bourns_2000 -L_Toroid, Horizontal series, Radial, pin pitch=15.24mm, , diameter=17.3mm, Bourns, 2000, http://www.bourns.com/docs/Product-Datasheets/2000_series.pdf?sfvrsn=5 -L_Toroid Horizontal series Radial pin pitch 15.24mm diameter 17.3mm Bourns 2000 -0 -2 -2 -Inductor_THT -L_Toroid_Horizontal_D21.8mm_P19.10mm_Bourns_2100 -L_Toroid, Horizontal series, Radial, pin pitch=19.10mm, , diameter=21.8mm, Bourns, 2100, http://www.bourns.com/docs/Product-Datasheets/2100_series.pdf?sfvrsn=3 -L_Toroid Horizontal series Radial pin pitch 19.10mm diameter 21.8mm Bourns 2100 -0 -2 -2 -Inductor_THT -L_Toroid_Horizontal_D21.8mm_P19.60mm_Bourns_2100 -L_Toroid, Horizontal series, Radial, pin pitch=19.60mm, , diameter=21.8mm, Bourns, 2100, http://www.bourns.com/docs/Product-Datasheets/2100_series.pdf?sfvrsn=3 -L_Toroid Horizontal series Radial pin pitch 19.60mm diameter 21.8mm Bourns 2100 -0 -2 -2 -Inductor_THT -L_Toroid_Horizontal_D22.4mm_P19.80mm_Vishay_TJ4 -L_Toroid, Horizontal series, Radial, pin pitch=19.80mm, , diameter=22.4mm, Vishay, TJ4, http://www.vishay.com/docs/34079/tj.pdf -L_Toroid Horizontal series Radial pin pitch 19.80mm diameter 22.4mm Vishay TJ4 -0 -2 -2 -Inductor_THT -L_Toroid_Horizontal_D24.1mm_P21.80mm_Bourns_2200 -L_Toroid, Horizontal series, Radial, pin pitch=21.80mm, , diameter=24.1mm, Bourns, 2200, http://www.bourns.com/docs/Product-Datasheets/2100_series.pdf?sfvrsn=3 -L_Toroid Horizontal series Radial pin pitch 21.80mm diameter 24.1mm Bourns 2200 -0 -2 -2 -Inductor_THT -L_Toroid_Horizontal_D24.1mm_P23.10mm_Bourns_2200 -L_Toroid, Horizontal series, Radial, pin pitch=23.10mm, , diameter=24.1mm, Bourns, 2200, http://www.bourns.com/docs/Product-Datasheets/2100_series.pdf?sfvrsn=3 -L_Toroid Horizontal series Radial pin pitch 23.10mm diameter 24.1mm Bourns 2200 -0 -2 -2 -Inductor_THT -L_Toroid_Horizontal_D25.4mm_P22.90mm_Vishay_TJ5 -L_Toroid, Horizontal series, Radial, pin pitch=22.90mm, , diameter=25.4mm, Vishay, TJ5, http://www.vishay.com/docs/34079/tj.pdf -L_Toroid Horizontal series Radial pin pitch 22.90mm diameter 25.4mm Vishay TJ5 -0 -2 -2 -Inductor_THT -L_Toroid_Horizontal_D25.4mm_P22.90mm_Vishay_TJ5_BigPads -L_Toroid, Horizontal series, Radial, pin pitch=22.90mm, , diameter=25.4mm, Vishay, TJ5, BigPads, http://www.vishay.com/docs/34079/tj.pdf -L_Toroid Horizontal series Radial pin pitch 22.90mm diameter 25.4mm Vishay TJ5 BigPads -0 -2 -2 -Inductor_THT -L_Toroid_Horizontal_D26.0mm_P5.08mm -inductor 26mm diameter toroid -SELF INDUCTOR -0 -3 -2 -Inductor_THT -L_Toroid_Horizontal_D28.0mm_P25.10mm_Bourns_2200 -L_Toroid, Horizontal series, Radial, pin pitch=25.10mm, , diameter=28mm, Bourns, 2200, http://www.bourns.com/docs/Product-Datasheets/2100_series.pdf?sfvrsn=3 -L_Toroid Horizontal series Radial pin pitch 25.10mm diameter 28mm Bourns 2200 -0 -2 -2 -Inductor_THT -L_Toroid_Horizontal_D28.0mm_P26.67mm_Bourns_2200 -L_Toroid, Horizontal series, Radial, pin pitch=26.67mm, , diameter=28mm, Bourns, 2200, http://www.bourns.com/docs/Product-Datasheets/2100_series.pdf?sfvrsn=3 -L_Toroid Horizontal series Radial pin pitch 26.67mm diameter 28mm Bourns 2200 -0 -2 -2 -Inductor_THT -L_Toroid_Horizontal_D32.5mm_P28.90mm_Bourns_2300 -L_Toroid, Horizontal series, Radial, pin pitch=28.90mm, , diameter=32.5mm, Bourns, 2300, http://www.bourns.com/docs/Product-Datasheets/2300_series.pdf?sfvrsn=3 -L_Toroid Horizontal series Radial pin pitch 28.90mm diameter 32.5mm Bourns 2300 -0 -2 -2 -Inductor_THT -L_Toroid_Horizontal_D32.5mm_P30.00mm_Bourns_2300 -L_Toroid, Horizontal series, Radial, pin pitch=30.00mm, , diameter=32.5mm, Bourns, 2300, http://www.bourns.com/docs/Product-Datasheets/2300_series.pdf?sfvrsn=3 -L_Toroid Horizontal series Radial pin pitch 30.00mm diameter 32.5mm Bourns 2300 -0 -2 -2 -Inductor_THT -L_Toroid_Horizontal_D35.1mm_P31.00mm_Vishay_TJ6 -L_Toroid, Horizontal series, Radial, pin pitch=31.00mm, , diameter=35.1mm, Vishay, TJ6, http://www.vishay.com/docs/34079/tj.pdf -L_Toroid Horizontal series Radial pin pitch 31.00mm diameter 35.1mm Vishay TJ6 -0 -2 -2 -Inductor_THT -L_Toroid_Horizontal_D40.0mm_P48.26mm -L_Toroid, Horizontal series, Radial, pin pitch=48.26mm, , diameter=40mm -L_Toroid Horizontal series Radial pin pitch 48.26mm diameter 40mm -0 -2 -2 -Inductor_THT -L_Toroid_Horizontal_D41.9mm_P37.60mm_Vishay_TJ7 -L_Toroid, Horizontal series, Radial, pin pitch=37.60mm, , diameter=41.9mm, Vishay, TJ7, http://www.vishay.com/docs/34079/tj.pdf -L_Toroid Horizontal series Radial pin pitch 37.60mm diameter 41.9mm Vishay TJ7 -0 -2 -2 -Inductor_THT -L_Toroid_Horizontal_D49.3mm_P44.60mm_Vishay_TJ8 -L_Toroid, Horizontal series, Radial, pin pitch=44.60mm, , diameter=49.3mm, Vishay, TJ8, http://www.vishay.com/docs/34079/tj.pdf -L_Toroid Horizontal series Radial pin pitch 44.60mm diameter 49.3mm Vishay TJ8 -0 -2 -2 -Inductor_THT -L_Toroid_Horizontal_D69.1mm_P63.20mm_Vishay_TJ9 -L_Toroid, Horizontal series, Radial, pin pitch=63.20mm, , diameter=69.1mm, Vishay, TJ9, http://www.vishay.com/docs/34079/tj.pdf -L_Toroid Horizontal series Radial pin pitch 63.20mm diameter 69.1mm Vishay TJ9 -0 -2 -2 -Inductor_THT -L_Toroid_Vertical_L10.0mm_W5.0mm_P5.08mm -L_Toroid, Vertical series, Radial, pin pitch=5.08mm, , length*width=10*5mm^2 -L_Toroid Vertical series Radial pin pitch 5.08mm length 10mm width 5mm -0 -2 -2 -Inductor_THT -L_Toroid_Vertical_L13.0mm_W6.5mm_P5.60mm -L_Toroid, Vertical series, Radial, pin pitch=5.60mm, , length*width=13*6.5mm^2 -L_Toroid Vertical series Radial pin pitch 5.60mm length 13mm width 6.5mm -0 -2 -2 -Inductor_THT -L_Toroid_Vertical_L14.0mm_W5.6mm_P5.30mm_Bourns_5700 -L_Toroid, Vertical series, Radial, pin pitch=5.30mm, , length*width=14*5.6mm^2, Bourns, 5700, http://www.bourns.com/docs/Product-Datasheets/5700_series.pdf -L_Toroid Vertical series Radial pin pitch 5.30mm length 14mm width 5.6mm Bourns 5700 -0 -2 -2 -Inductor_THT -L_Toroid_Vertical_L14.0mm_W6.3mm_P4.57mm_Pulse_A -L_Toroid, Vertical series, Radial, pin pitch=4.57mm, , length*width=13.97*6.35mm^2, Pulse, A, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf -L_Toroid Vertical series Radial pin pitch 4.57mm length 13.97mm width 6.35mm Pulse A -0 -2 -2 -Inductor_THT -L_Toroid_Vertical_L14.7mm_W8.6mm_P5.58mm_Pulse_KM-1 -L_Toroid, Vertical series, Radial, pin pitch=5.58mm, , length*width=14.73*8.64mm^2, Pulse, KM-1, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf -L_Toroid Vertical series Radial pin pitch 5.58mm length 14.73mm width 8.64mm Pulse KM-1 -0 -2 -2 -Inductor_THT -L_Toroid_Vertical_L16.0mm_W8.0mm_P7.62mm -L_Toroid, Vertical series, Radial, pin pitch=7.62mm, , length*width=16*8mm^2 -L_Toroid Vertical series Radial pin pitch 7.62mm length 16mm width 8mm -0 -2 -2 -Inductor_THT -L_Toroid_Vertical_L16.3mm_W7.1mm_P7.11mm_Pulse_H -L_Toroid, Vertical series, Radial, pin pitch=7.11mm, , length*width=16.26*7.11mm^2, Pulse, H, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf -L_Toroid Vertical series Radial pin pitch 7.11mm length 16.26mm width 7.11mm Pulse H -0 -2 -2 -Inductor_THT -L_Toroid_Vertical_L16.4mm_W7.6mm_P6.60mm_Vishay_TJ3 -L_Toroid, Vertical series, Radial, pin pitch=6.60mm, , length*width=16.4*7.6mm^2, Vishay, TJ3, http://www.vishay.com/docs/34079/tj.pdf -L_Toroid Vertical series Radial pin pitch 6.60mm length 16.4mm width 7.6mm Vishay TJ3 -0 -2 -2 -Inductor_THT -L_Toroid_Vertical_L16.5mm_W11.4mm_P7.62mm_Pulse_KM-2 -L_Toroid, Vertical series, Radial, pin pitch=7.62mm, , length*width=16.51*11.43mm^2, Pulse, KM-2, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf -L_Toroid Vertical series Radial pin pitch 7.62mm length 16.51mm width 11.43mm Pulse KM-2 -0 -2 -2 -Inductor_THT -L_Toroid_Vertical_L16.8mm_W9.2mm_P7.10mm_Vishay_TJ3 -L_Toroid, Vertical series, Radial, pin pitch=7.10mm, , length*width=16.8*9.2mm^2, Vishay, TJ3, http://www.vishay.com/docs/34079/tj.pdf -L_Toroid Vertical series Radial pin pitch 7.10mm length 16.8mm width 9.2mm Vishay TJ3 -0 -2 -2 -Inductor_THT -L_Toroid_Vertical_L16.8mm_W9.2mm_P7.10mm_Vishay_TJ3_BigPads -L_Toroid, Vertical series, Radial, pin pitch=7.10mm, , length*width=16.8*9.2mm^2, Vishay, TJ3, BigPads, http://www.vishay.com/docs/34079/tj.pdf -L_Toroid Vertical series Radial pin pitch 7.10mm length 16.8mm width 9.2mm Vishay TJ3 BigPads -0 -2 -2 -Inductor_THT -L_Toroid_Vertical_L17.8mm_W8.1mm_P7.62mm_Bourns_5700 -L_Toroid, Vertical series, Radial, pin pitch=7.62mm, , length*width=17.8*8.1mm^2, Bourns, 5700, http://www.bourns.com/docs/Product-Datasheets/5700_series.pdf -L_Toroid Vertical series Radial pin pitch 7.62mm length 17.8mm width 8.1mm Bourns 5700 -0 -2 -2 -Inductor_THT -L_Toroid_Vertical_L17.8mm_W9.7mm_P7.11mm_Pulse_B -L_Toroid, Vertical series, Radial, pin pitch=7.11mm, , length*width=17.78*9.65mm^2, Pulse, B, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf -L_Toroid Vertical series Radial pin pitch 7.11mm length 17.78mm width 9.65mm Pulse B -0 -2 -2 -Inductor_THT -L_Toroid_Vertical_L19.1mm_W8.1mm_P7.10mm_Bourns_5700 -L_Toroid, Vertical series, Radial, pin pitch=7.10mm, , length*width=19.1*8.1mm^2, Bourns, 5700, http://www.bourns.com/docs/Product-Datasheets/5700_series.pdf -L_Toroid Vertical series Radial pin pitch 7.10mm length 19.1mm width 8.1mm Bourns 5700 -0 -2 -2 -Inductor_THT -L_Toroid_Vertical_L21.6mm_W8.4mm_P8.38mm_Pulse_G -L_Toroid, Vertical series, Radial, pin pitch=8.38mm, , length*width=21.59*8.38mm^2, Pulse, G, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf -L_Toroid Vertical series Radial pin pitch 8.38mm length 21.59mm width 8.38mm Pulse G -0 -2 -2 -Inductor_THT -L_Toroid_Vertical_L21.6mm_W9.1mm_P8.40mm_Bourns_5700 -L_Toroid, Vertical series, Radial, pin pitch=8.40mm, , length*width=21.6*9.1mm^2, Bourns, 5700, http://www.bourns.com/docs/Product-Datasheets/5700_series.pdf -L_Toroid Vertical series Radial pin pitch 8.40mm length 21.6mm width 9.1mm Bourns 5700 -0 -2 -2 -Inductor_THT -L_Toroid_Vertical_L21.6mm_W9.5mm_P7.11mm_Pulse_C -L_Toroid, Vertical series, Radial, pin pitch=7.11mm, , length*width=21.59*9.53mm^2, Pulse, C, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf -L_Toroid Vertical series Radial pin pitch 7.11mm length 21.59mm width 9.53mm Pulse C -0 -2 -2 -Inductor_THT -L_Toroid_Vertical_L21.6mm_W11.4mm_P7.62mm_Pulse_KM-3 -L_Toroid, Vertical series, Radial, pin pitch=7.62mm, , length*width=21.59*11.43mm^2, Pulse, KM-3, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf -L_Toroid Vertical series Radial pin pitch 7.62mm length 21.59mm width 11.43mm Pulse KM-3 -0 -2 -2 -Inductor_THT -L_Toroid_Vertical_L22.4mm_W10.2mm_P7.90mm_Vishay_TJ4 -L_Toroid, Vertical series, Radial, pin pitch=7.90mm, , length*width=22.4*10.2mm^2, Vishay, TJ4, http://www.vishay.com/docs/34079/tj.pdf -L_Toroid Vertical series Radial pin pitch 7.90mm length 22.4mm width 10.2mm Vishay TJ4 -0 -2 -2 -Inductor_THT -L_Toroid_Vertical_L24.6mm_W15.5mm_P11.44mm_Pulse_KM-4 -L_Toroid, Vertical series, Radial, pin pitch=11.44mm, , length*width=24.64*15.5mm^2, Pulse, KM-4, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf -L_Toroid Vertical series Radial pin pitch 11.44mm length 24.64mm width 15.5mm Pulse KM-4 -0 -2 -2 -Inductor_THT -L_Toroid_Vertical_L25.4mm_W14.7mm_P12.20mm_Vishay_TJ5 -L_Toroid, Vertical series, Radial, pin pitch=12.20mm, , length*width=25.4*14.7mm^2, Vishay, TJ5, http://www.vishay.com/docs/34079/tj.pdf -L_Toroid Vertical series Radial pin pitch 12.20mm length 25.4mm width 14.7mm Vishay TJ5 -0 -2 -2 -Inductor_THT -L_Toroid_Vertical_L25.4mm_W14.7mm_P12.20mm_Vishay_TJ5_BigPads -L_Toroid, Vertical series, Radial, pin pitch=12.20mm, , length*width=25.4*14.7mm^2, Vishay, TJ5, BigPads, http://www.vishay.com/docs/34079/tj.pdf -L_Toroid Vertical series Radial pin pitch 12.20mm length 25.4mm width 14.7mm Vishay TJ5 BigPads -0 -2 -2 -Inductor_THT -L_Toroid_Vertical_L26.7mm_W14.0mm_P10.16mm_Pulse_D -L_Toroid, Vertical series, Radial, pin pitch=10.16mm, , length*width=26.67*13.97mm^2, Pulse, D, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf -L_Toroid Vertical series Radial pin pitch 10.16mm length 26.67mm width 13.97mm Pulse D -0 -2 -2 -Inductor_THT -L_Toroid_Vertical_L28.6mm_W14.3mm_P11.43mm_Bourns_5700 -L_Toroid, Vertical series, Radial, pin pitch=11.43mm, , length*width=28.6*14.3mm^2, Bourns, 5700, http://www.bourns.com/docs/Product-Datasheets/5700_series.pdf -L_Toroid Vertical series Radial pin pitch 11.43mm length 28.6mm width 14.3mm Bourns 5700 -0 -2 -2 -Inductor_THT -L_Toroid_Vertical_L31.8mm_W15.9mm_P13.50mm_Bourns_5700 -L_Toroid, Vertical series, Radial, pin pitch=13.50mm, , length*width=31.8*15.9mm^2, Bourns, 5700, http://www.bourns.com/docs/Product-Datasheets/5700_series.pdf -L_Toroid Vertical series Radial pin pitch 13.50mm length 31.8mm width 15.9mm Bourns 5700 -0 -2 -2 -Inductor_THT -L_Toroid_Vertical_L33.0mm_W17.8mm_P12.70mm_Pulse_KM-5 -L_Toroid, Vertical series, Radial, pin pitch=12.70mm, , length*width=33.02*17.78mm^2, Pulse, KM-5, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf -L_Toroid Vertical series Radial pin pitch 12.70mm length 33.02mm width 17.78mm Pulse KM-5 -0 -2 -2 -Inductor_THT -L_Toroid_Vertical_L35.1mm_W21.1mm_P18.50mm_Vishay_TJ6 -L_Toroid, Vertical series, Radial, pin pitch=18.50mm, , length*width=35.1*21.1mm^2, Vishay, TJ6, http://www.vishay.com/docs/34079/tj.pdf -L_Toroid Vertical series Radial pin pitch 18.50mm length 35.1mm width 21.1mm Vishay TJ6 -0 -2 -2 -Inductor_THT -L_Toroid_Vertical_L35.6mm_W17.8mm_P12.70mm_Pulse_E -L_Toroid, Vertical series, Radial, pin pitch=12.70mm, , length*width=35.56*17.78mm^2, Pulse, E, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf -L_Toroid Vertical series Radial pin pitch 12.70mm length 35.56mm width 17.78mm Pulse E -0 -2 -2 -Inductor_THT -L_Toroid_Vertical_L41.9mm_W17.8mm_P12.70mm_Pulse_F -L_Toroid, Vertical series, Radial, pin pitch=12.70mm, , length*width=41.91*17.78mm^2, Pulse, F, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf -L_Toroid Vertical series Radial pin pitch 12.70mm length 41.91mm width 17.78mm Pulse F -0 -2 -2 -Inductor_THT -L_Toroid_Vertical_L41.9mm_W19.1mm_P15.80mm_Vishay_TJ7 -L_Toroid, Vertical series, Radial, pin pitch=15.80mm, , length*width=41.9*19.1mm^2, Vishay, TJ7, http://www.vishay.com/docs/34079/tj.pdf -L_Toroid Vertical series Radial pin pitch 15.80mm length 41.9mm width 19.1mm Vishay TJ7 -0 -2 -2 -Inductor_THT -L_Toroid_Vertical_L46.0mm_W19.1mm_P21.80mm_Bourns_5700 -L_Toroid, Vertical series, Radial, pin pitch=21.80mm, , length*width=46*19.1mm^2, Bourns, 5700, http://www.bourns.com/docs/Product-Datasheets/5700_series.pdf -L_Toroid Vertical series Radial pin pitch 21.80mm length 46mm width 19.1mm Bourns 5700 -0 -2 -2 -Inductor_THT -L_Toroid_Vertical_L48.8mm_W25.4mm_P20.80mm_Vishay_TJ8 -L_Toroid, Vertical series, Radial, pin pitch=20.80mm, , length*width=48.8*25.4mm^2, Vishay, TJ8, http://www.vishay.com/docs/34079/tj.pdf -L_Toroid Vertical series Radial pin pitch 20.80mm length 48.8mm width 25.4mm Vishay TJ8 -0 -2 -2 -Inductor_THT -L_Toroid_Vertical_L54.0mm_W23.8mm_P20.10mm_Bourns_5700 -L_Toroid, Vertical series, Radial, pin pitch=20.10mm, , length*width=54*23.8mm^2, Bourns, 5700, http://www.bourns.com/docs/Product-Datasheets/5700_series.pdf -L_Toroid Vertical series Radial pin pitch 20.10mm length 54mm width 23.8mm Bourns 5700 -0 -2 -2 -Inductor_THT -L_Toroid_Vertical_L67.6mm_W36.1mm_P31.80mm_Vishay_TJ9 -L_Toroid, Vertical series, Radial, pin pitch=31.80mm, , length*width=67.6*36.1mm^2, Vishay, TJ9, http://www.vishay.com/docs/34079/tj.pdf -L_Toroid Vertical series Radial pin pitch 31.80mm length 67.6mm width 36.1mm Vishay TJ9 -0 -2 -2 -Inductor_THT_Wurth -L_Wurth_WE-HCFT-2012_LeadDiameter1.2mm -Shielded High Current Inductor, body 17x22mm, https://www.we-online.com/catalog/en/WE-HCFT#/articles/WE-HCFT-2012-ROUND -THT -0 -2 -2 -Inductor_THT_Wurth -L_Wurth_WE-HCFT-2012_LeadDiameter1.5mm -Shielded High Current Inductor, body 17x22mm, https://www.we-online.com/catalog/en/WE-HCFT#/articles/WE-HCFT-2012-ROUND -THT -0 -2 -2 -Inductor_THT_Wurth -L_Wurth_WE-HCFT-2504 -Shielded High Current Inductor, body 22x25.7mm, https://www.we-online.com/catalog/en/WE-HCFT#/articles/WE-HCFT_SIZE_2504 -THT -0 -2 -2 -Inductor_THT_Wurth -L_Wurth_WE-HCFT-3521 -Shielded High Current Inductor, body 21.5x36mm, https://www.we-online.com/catalog/en/WE-HCFT#/articles/WE-HCFT-3521 -THT -0 -4 -2 -Inductor_THT_Wurth -L_Wurth_WE-HCFT-3533_LeadDiameter1.8mm -Shielded High Current Inductor, body 34.5x36mm, https://www.we-online.com/catalog/en/WE-HCFT#/articles/WE-HCFT-3533-ROUND -THT -0 -4 -2 -Inductor_THT_Wurth -L_Wurth_WE-HCFT-3533_LeadDiameter2.0mm -Shielded High Current Inductor, body 34.5x36mm, https://www.we-online.com/catalog/en/WE-HCFT#/articles/WE-HCFT-3533-ROUND -THT -0 -4 -2 -Inductor_THT_Wurth -L_Wurth_WE-HCFT-3540_LeadDiameter0.8mm -Shielded High Current Inductor, body 41x36mm, https://www.we-online.com/catalog/en/WE-HCFT#/articles/WE-HCFT-3540 -THT -0 -4 -2 -Inductor_THT_Wurth -L_Wurth_WE-HCFT-3540_LeadDiameter1.3mm -Shielded High Current Inductor, body 41x36mm, https://www.we-online.com/catalog/en/WE-HCFT#/articles/WE-HCFT-3540 -THT -0 -4 -2 -Inductor_THT_Wurth -L_Wurth_WE-HCFT-3540_LeadDiameter1.5mm -Shielded High Current Inductor, body 41x36mm, https://www.we-online.com/catalog/en/WE-HCFT#/articles/WE-HCFT-3540 -THT -0 -4 -2 -Inductor_THT_Wurth -L_Wurth_WE-HCFT-3540_LeadDiameter2.0mm -Shielded High Current Inductor, body 41x36mm, https://www.we-online.com/catalog/en/WE-HCFT#/articles/WE-HCFT-3540 -THT -0 -4 -2 -Jumper -SolderJumper-2_P1.3mm_Bridged2Bar_Pad1.0x1.5mm -SMD Solder Jumper, 1x1.5mm Pads, 0.3mm gap, bridged with 2 copper strips -net tie solder jumper bridged -0 -2 -2 -Jumper -SolderJumper-2_P1.3mm_Bridged2Bar_RoundedPad1.0x1.5mm -SMD Solder Jumper, 1x1.5mm, rounded Pads, 0.3mm gap, bridged with 2 copper strips -net tie solder jumper bridged -0 -2 -2 -Jumper -SolderJumper-2_P1.3mm_Bridged_Pad1.0x1.5mm -SMD Solder Jumper, 1x1.5mm Pads, 0.3mm gap, bridged with 1 copper strip -net tie solder jumper bridged -0 -2 -2 -Jumper -SolderJumper-2_P1.3mm_Bridged_RoundedPad1.0x1.5mm -SMD Solder Jumper, 1x1.5mm, rounded Pads, 0.3mm gap, bridged with 1 copper strip -net tie solder jumper bridged -0 -2 -2 -Jumper -SolderJumper-2_P1.3mm_Open_Pad1.0x1.5mm -SMD Solder Jumper, 1x1.5mm Pads, 0.3mm gap, open -solder jumper open -0 -2 -2 -Jumper -SolderJumper-2_P1.3mm_Open_RoundedPad1.0x1.5mm -SMD Solder Jumper, 1x1.5mm, rounded Pads, 0.3mm gap, open -solder jumper open -0 -2 -2 -Jumper -SolderJumper-2_P1.3mm_Open_TrianglePad1.0x1.5mm -SMD Solder Jumper, 1x1.5mm Triangular Pads, 0.3mm gap, open -solder jumper open -0 -2 -2 -Jumper -SolderJumper-3_P1.3mm_Bridged2Bar12_Pad1.0x1.5mm -SMD Solder 3-pad Jumper, 1x1.5mm Pads, 0.3mm gap, pads 1-2 Bridged2Bar with 2 copper strip -net tie solder jumper bridged -0 -3 -3 -Jumper -SolderJumper-3_P1.3mm_Bridged2Bar12_Pad1.0x1.5mm_NumberLabels -SMD Solder Jumper, 1x1.5mm Pads, 0.3mm gap, pads 1-2 Bridged2Bar with 2 copper strip, labeled with numbers -net tie solder jumper bridged -0 -3 -3 -Jumper -SolderJumper-3_P1.3mm_Bridged2Bar12_RoundedPad1.0x1.5mm -SMD Solder 3-pad Jumper, 1x1.5mm rounded Pads, 0.3mm gap, pads 1-2 Bridged2Bar with 2 copper strip -net tie solder jumper bridged -0 -3 -3 -Jumper -SolderJumper-3_P1.3mm_Bridged2Bar12_RoundedPad1.0x1.5mm_NumberLabels -SMD Solder 3-pad Jumper, 1x1.5mm rounded Pads, 0.3mm gap, pads 1-2 Bridged2Bar with 2 copper strip, labeled with numbers -net tie solder jumper bridged -0 -3 -3 -Jumper -SolderJumper-3_P1.3mm_Bridged12_Pad1.0x1.5mm -SMD Solder 3-pad Jumper, 1x1.5mm Pads, 0.3mm gap, pads 1-2 bridged with 1 copper strip -net tie solder jumper bridged -0 -3 -3 -Jumper -SolderJumper-3_P1.3mm_Bridged12_Pad1.0x1.5mm_NumberLabels -SMD Solder Jumper, 1x1.5mm Pads, 0.3mm gap, pads 1-2 bridged with 1 copper strip, labeled with numbers -net tie solder jumper bridged -0 -3 -3 -Jumper -SolderJumper-3_P1.3mm_Bridged12_RoundedPad1.0x1.5mm -SMD Solder 3-pad Jumper, 1x1.5mm rounded Pads, 0.3mm gap, pads 1-2 bridged with 1 copper strip -net tie solder jumper bridged -0 -3 -3 -Jumper -SolderJumper-3_P1.3mm_Bridged12_RoundedPad1.0x1.5mm_NumberLabels -SMD Solder 3-pad Jumper, 1x1.5mm rounded Pads, 0.3mm gap, pads 1-2 bridged with 1 copper strip, labeled with numbers -net tie solder jumper bridged -0 -3 -3 -Jumper -SolderJumper-3_P1.3mm_Open_Pad1.0x1.5mm -SMD Solder 3-pad Jumper, 1x1.5mm Pads, 0.3mm gap, open -solder jumper open -0 -3 -3 -Jumper -SolderJumper-3_P1.3mm_Open_Pad1.0x1.5mm_NumberLabels -SMD Solder Jumper, 1x1.5mm Pads, 0.3mm gap, open, labeled with numbers -solder jumper open -0 -3 -3 -Jumper -SolderJumper-3_P1.3mm_Open_RoundedPad1.0x1.5mm -SMD Solder 3-pad Jumper, 1x1.5mm rounded Pads, 0.3mm gap, open -solder jumper open -0 -3 -3 -Jumper -SolderJumper-3_P1.3mm_Open_RoundedPad1.0x1.5mm_NumberLabels -SMD Solder 3-pad Jumper, 1x1.5mm rounded Pads, 0.3mm gap, open, labeled with numbers -solder jumper open -0 -3 -3 -Jumper -SolderJumper-3_P2.0mm_Open_TrianglePad1.0x1.5mm -SMD Solder Jumper, 1x1.5mm Triangular Pads, 0.3mm gap, open -solder jumper open -0 -5 -3 -Jumper -SolderJumper-3_P2.0mm_Open_TrianglePad1.0x1.5mm_NumberLabels -SMD Solder Jumper, 1x1.5mm Triangular Pads, 0.3mm gap, open, labeled with numbers -solder jumper open -0 -5 -3 -LED_SMD -LED-APA102-2020 -http://www.led-color.com/upload/201604/APA102-2020%20SMD%20LED.pdf -LED RGB SPI -0 -8 -6 -LED_SMD -LED-L1T2_LUMILEDS -http://www.lumileds.com/uploads/438/DS133-pdf -LUMILEDS LUXEON TX L1T2 LED -0 -3 -3 -LED_SMD -LED_1W_3W_R8 -https://www.gme.cz/data/attachments/dsh.518-234.1.pdf -LED 1W 3W 5W -0 -3 -3 -LED_SMD -LED_0201_0603Metric -LED SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), generated with kicad-footprint-generator -LED -0 -4 -2 -LED_SMD -LED_0201_0603Metric_Pad0.64x0.40mm_HandSolder -LED SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), generated with kicad-footprint-generator -LED handsolder -0 -4 -2 -LED_SMD -LED_0402_1005Metric -LED SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator -LED -0 -2 -2 -LED_SMD -LED_0402_1005Metric_Pad0.77x0.64mm_HandSolder -LED SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator -LED handsolder -0 -2 -2 -LED_SMD -LED_0603_1608Metric -LED SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator -LED -0 -2 -2 -LED_SMD -LED_0603_1608Metric_Pad1.05x0.95mm_HandSolder -LED SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator -LED handsolder -0 -2 -2 -LED_SMD -LED_0805_2012Metric -LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator -LED -0 -2 -2 -LED_SMD -LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder -LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator -LED handsolder -0 -2 -2 -LED_SMD -LED_1206_3216Metric -LED SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator -LED -0 -2 -2 -LED_SMD -LED_1206_3216Metric_Pad1.42x1.75mm_HandSolder -LED SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator -LED handsolder -0 -2 -2 -LED_SMD -LED_1206_3216Metric_ReverseMount_Hole1.8x2.4mm -LED SMD 1206 (3216 Metric), reverse mount, square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator -diode reverse -0 -2 -2 -LED_SMD -LED_1210_3225Metric -LED SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator -LED -0 -2 -2 -LED_SMD -LED_1210_3225Metric_Pad1.42x2.65mm_HandSolder -LED SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator -LED handsolder -0 -2 -2 -LED_SMD -LED_1812_4532Metric -LED SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), generated with kicad-footprint-generator -LED -0 -2 -2 -LED_SMD -LED_1812_4532Metric_Pad1.30x3.40mm_HandSolder -LED SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), generated with kicad-footprint-generator -LED handsolder -0 -2 -2 -LED_SMD -LED_2010_5025Metric -LED SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator -LED -0 -2 -2 -LED_SMD -LED_2010_5025Metric_Pad1.52x2.65mm_HandSolder -LED SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator -LED handsolder -0 -2 -2 -LED_SMD -LED_2512_6332Metric -LED SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator -LED -0 -2 -2 -LED_SMD -LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder -LED SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator -LED handsolder -0 -2 -2 -LED_SMD -LED_ASMB-KTF0-0A306 -2220 Tricolor PLCC-4 LED, https://docs.broadcom.com/docs/ASMB-KTF0-0A306-DS100 -Tricolor LED -0 -4 -4 -LED_SMD -LED_Avago_PLCC4_3.2x2.8mm_CW -https://docs.broadcom.com/docs/AV02-4186EN -LED Avago PLCC-4 ASMB-MTB0-0A3A2 -0 -4 -4 -LED_SMD -LED_Avago_PLCC6_3x2.8mm -https://docs.broadcom.com/docs/AV02-3793EN -LED Avago PLCC-6 ASMT-YTB7-0AA02 -0 -6 -6 -LED_SMD -LED_CSP_Samsung_LH181B_2.36x2.36mm -High Power CSP LED, 2.36mm x 2.36mm, 1.4A max, https://cdn.samsung.com/led/file/resource/2021/01/Data_Sheet_LH181B_Rev.4.0.pdf -LED Samsung LH181B -0 -2 -2 -LED_SMD -LED_Cree-PLCC4_2x2mm_CW -2.0mm x 2.0mm PLCC4 LED, http://www.cree.com/~/media/Files/Cree/LED-Components-and-Modules/HB/Data-Sheets/CLMVBFKA.pdf -LED Cree PLCC-4 -0 -4 -4 -LED_SMD -LED_Cree-PLCC4_3.2x2.8mm_CCW -3.2mm x 2.8mm PLCC4 LED, http://www.cree.com/led-components/media/documents/CLV1AFKB(874).pdf -LED Cree PLCC-4 -0 -4 -4 -LED_SMD -LED_Cree-PLCC4_5x5mm_CW -5.0mm x 5.0mm PLCC4 LED -LED Cree PLCC-4 -0 -4 -4 -LED_SMD -LED_Cree-PLCC6_4.7x1.5mm -4.7mm x 1.5mm PLCC6 LED, http://www.cree.com/led-components/media/documents/1381-QLS6AFKW.pdf -LED Cree PLCC-6 -0 -6 -6 -LED_SMD -LED_Cree-XB -http://www.cree.com/~/media/Files/Cree/LED-Components-and-Modules/XLamp/Data-and-Binning/XLampXBD.pdf -LED Cree XB -0 -5 -3 -LED_SMD -LED_Cree-XH -http://www.cree.com/~/media/Files/Cree/LED-Components-and-Modules/XLamp/Data-and-Binning/ds-XHB.pdf -LED Cree XH -0 -8 -2 -LED_SMD -LED_Cree-XHP35 -http://www.cree.com/~/media/Files/Cree/LED-Components-and-Modules/XLamp/Data-and-Binning/ds--XHP35.pdf -LED Cree XHP35 -0 -6 -3 -LED_SMD -LED_Cree-XHP50_6V -Cree XHP50, 6V footprint, http://www.cree.com/~/media/Files/Cree/LED%20Components%20and%20Modules/XLamp/Data%20and%20Binning/ds%20XHP50.pdf -LED Cree XHP50 -0 -15 -3 -LED_SMD -LED_Cree-XHP50_12V -Cree XHP50, 12V footprint, http://www.cree.com/~/media/Files/Cree/LED%20Components%20and%20Modules/XLamp/Data%20and%20Binning/ds%20XHP50.pdf -LED XHP50 Cree -0 -15 -3 -LED_SMD -LED_Cree-XHP70_6V -Cree XHP70 LED, 6V version, http://www.cree.com/~/media/Files/Cree/LED%20Components%20and%20Modules/XLamp/Data%20and%20Binning/ds%20XHP70.pdf -LED Cree XHP70 -0 -15 -3 -LED_SMD -LED_Cree-XHP70_12V -Cree XHP70 LED, 12V version, http://www.cree.com/~/media/Files/Cree/LED%20Components%20and%20Modules/XLamp/Data%20and%20Binning/ds%20XHP70.pdf -LED Cree XHP70 -0 -15 -3 -LED_SMD -LED_Cree-XP -LED Cree-XP http://www.cree.com/~/media/Files/Cree/LED-Components-and-Modules/XLamp/Data-and-Binning/XLampXPE2.pdf -LED Cree XP -0 -6 -3 -LED_SMD -LED_Cree-XP-G -LED Cree-XP-G http://www.cree.com/~/media/Files/Cree/LED%20Components%20and%20Modules/XLamp/Data%20and%20Binning/XLampXPG.pdf -LED Cree XP-G -0 -6 -3 -LED_SMD -LED_Cree-XQ -LED Cree-XQ http://www.cree.com/~/media/Files/Cree/LED-Components-and-Modules/XLamp/Data-and-Binning/ds-XQB.pdf -LED Cree XQ -0 -2 -2 -LED_SMD -LED_Cree-XQ_HandSoldering -LED Cree-XQ handsoldering pads http://www.cree.com/~/media/Files/Cree/LED-Components-and-Modules/XLamp/Data-and-Binning/ds-XQB.pdf -LED Cree XQ -0 -2 -2 -LED_SMD -LED_Dialight_591 -LED SMD 3mm Right Angle series (http://www.dialightsignalsandcomponents.com/Assets/Drawings/2D_Drawings_DrawingDetailedSpec/C17354.pdf) -LED Dialight 591 -0 -2 -2 -LED_SMD -LED_Inolux_IN-PI554FCH_PLCC4_5.0x5.0mm_P3.2mm -http://www.inolux-corp.com/datasheet/SMDLED/Addressable%20LED/IN-PI554FCH.pdf -RGB LED NeoPixel addressable -0 -4 -4 -LED_SMD -LED_Kingbright_AAA3528ESGCT -Kingbright, dual LED, 3.5 x 2.8 mm Surface Mount LED Lamp (http://www.kingbrightusa.com/images/catalog/SPEC/AAA3528ESGCT.pdf) -dual led smd -0 -4 -4 -LED_SMD -LED_Kingbright_APDA3020VBCD -LED, SMD, APDA3020VBC/D, https://www.kingbrightusa.com/images/catalog/SPEC/APDA3020VBC-D.pdf -LED APDA3020VBC/D Kingbright -0 -2 -2 -LED_SMD -LED_Kingbright_APFA3010_3x1.5mm_Horizontal -LED RGB, APFA3010, http://www.kingbrightusa.com/images/catalog/SPEC/APFA3010LSEEZGKQBKC.pdf -LED RGB APFA3010 KINGBRIGHT 3x1.5mm -0 -4 -4 -LED_SMD -LED_Kingbright_APHBM2012_2x1.25mm -Dual LED SMD https://www.kingbrightusa.com/KCpack.asp?txtPack=APHBM2012 -LED Kingbright APHM2012 -0 -4 -4 -LED_SMD -LED_Kingbright_KPBD-3224 -Kingbright, dual LED, red-green, dome lens, 3.2 x 2.4 mm Surface Mount LED Lamp (https://www.kingbright.com/attachments/file/psearch/000/00/00/KPBD-3224SURKCGKC(Ver.20A).pdf) -Kingbright dual LED KPBD-3224 -0 -4 -4 -LED_SMD -LED_LiteOn_LTST-C19HE1WT -LiteOn RGB LED; https://optoelectronics.liteon.com/upload/download/DS22-2008-0044/LTST-C19HE1WT.pdf -LED RGB Chip SMD -0 -4 -4 -LED_SMD -LED_LiteOn_LTST-C295K_1.6x0.8mm -Topview dual http://optoelectronics.liteon.com/upload/download/DS22-2009-0072/LTST-C295KGKRKT.PDF -SMD Top view Dual colour -0 -4 -4 -LED_SMD -LED_LiteOn_LTST-S326 -http://optoelectronics.liteon.com/upload/download/DS22-2000-287/LTST-S326KGJRKT.PDF -LED SMD right angle CCA -0 -3 -3 -LED_SMD -LED_Lumex_SML-LX0303SIUPGUSB -Lumex RGB LED, clear, SMD, https://www.lumex.com/spec/SML-LX0303SIUPGUSB.pdf -LED RGB -0 -4 -4 -LED_SMD -LED_Lumex_SML-LX0404SIUPGUSB -Lumex RGB LED, clear, SMD, https://www.lumex.com/spec/SML-LX0404SIUPGUSB.pdf -LED RGB -0 -4 -4 -LED_SMD -LED_Luminus_MP-3030-1100_3.0x3.0mm -Mid Power LED, Luminus MP-3030-1100, 3.0x3.0mm, 816mW, https://download.luminus.com/datasheets/Luminus_MP3030_1100_Datasheet.pdf -LED Luminus MP-3030-1100 -0 -5 -2 -LED_SMD -LED_Osram_Lx_P47F_D2mm_ReverseMount -OSRAM, reverse-mount LED, SMD, 2mm diameter, http://www.farnell.com/datasheets/2711587.pdf -LED ReverseMount Reverse -0 -4 -2 -LED_SMD -LED_PLCC-2_3.4x3.0mm_AK -LED PLCC-2 SMD package, orientation marker at anode, https://dammedia.osram.info/media/resource/hires/osram-dam-5824137/SFH%204257_EN.pdf -LED PLCC-2 SMD TOPLED -0 -2 -2 -LED_SMD -LED_PLCC-2_3.4x3.0mm_KA -LED PLCC-2 SMD package, orientation marker at cathode, https://dammedia.osram.info/media/resource/hires/osram-dam-6035009/SFH%204253_EN.pdf -LED PLCC-2 SMD TOPLED -0 -2 -2 -LED_SMD -LED_PLCC-2_3x2mm_AK -LED, SMD, PLCC-2, 3.0 x 2.0mm, orientation marker at anode, https://media.digikey.com/pdf/Data%20Sheets/CREE%20Power/CLM3A-BKW,GKW.pdf -LED PLCC-2 SMD -0 -2 -2 -LED_SMD -LED_PLCC-2_3x2mm_KA -LED, SMD, PLCC-2, 3.0 x 2.0mm, orientation marker at cathode, https://optoelectronics.liteon.com/upload/download/DS22-2009-0099/LTW-M670ZVS-M5_0906.pdf -LED PLCC-2 SMD -0 -2 -2 -LED_SMD -LED_PLCC_2835 -https://www.luckylight.cn/media/component/data-sheet/R2835BC-B2M-M10.pdf -LED -0 -2 -2 -LED_SMD -LED_PLCC_2835_Handsoldering -https://www.luckylight.cn/media/component/data-sheet/R2835BC-B2M-M10.pdf -LED -0 -2 -2 -LED_SMD -LED_RGB_1210 -RGB LED 3.2x2.7mm http://www.avagotech.com/docs/AV02-0610EN -LED 3227 -0 -4 -4 -LED_SMD -LED_RGB_5050-6 -http://cdn.sparkfun.com/datasheets/Components/LED/5060BRG4.pdf -RGB LED 5050-6 -0 -6 -6 -LED_SMD -LED_RGB_Cree-PLCC-6_6x5mm_P2.1mm -http://www.farnell.com/datasheets/2003905.pdf -LED RGB PLCC-6 CLP6C-FBK -0 -6 -6 -LED_SMD -LED_RGB_Everlight_EASV3015RGBA0_Horizontal -LED, RGB, right-angle, clear, https://everlightamericas.com/index.php?controller=attachment&id_attachment=3220 -LED RGB right-angle -0 -4 -4 -LED_SMD -LED_RGB_Getian_GT-P6PRGB4303 -https://www.gme.sk/img/cache/doc/518/177/vykonova-led-getian-gt-p6prgb4303-datasheet-1.pdf -LED RGB -0 -7 -7 -LED_SMD -LED_RGB_PLCC-6 -RGB LED PLCC-6 -RGB LED PLCC-6 -0 -6 -6 -LED_SMD -LED_RGB_Wuerth-PLCC4_3.2x2.8mm_150141M173100 -3.2mm x 2.8mm PLCC4 LED, https://www.we-online.de/katalog/datasheet/150141M173100.pdf -LED RGB Wurth PLCC-4 -0 -4 -4 -LED_SMD -LED_ROHM_SMLVN6 -https://www.rohm.com/datasheet/SMLVN6RGB1U -LED ROHM SMLVN6 -0 -6 -6 -LED_SMD -LED_SK6805_PLCC4_2.4x2.7mm_P1.3mm -https://cdn-shop.adafruit.com/product-files/3484/3484_Datasheet.pdf -LED RGB NeoPixel Nano -0 -4 -4 -LED_SMD -LED_SK6812MINI_PLCC4_3.5x3.5mm_P1.75mm -https://cdn-shop.adafruit.com/product-files/2686/SK6812MINI_REV.01-1-2.pdf -LED RGB NeoPixel Mini -0 -4 -4 -LED_SMD -LED_SK6812_EC15_1.5x1.5mm -http://www.newstar-ledstrip.com/product/20181119172602110.pdf -LED RGB NeoPixel -0 -4 -4 -LED_SMD -LED_SK6812_PLCC4_5.0x5.0mm_P3.2mm -https://cdn-shop.adafruit.com/product-files/1138/SK6812+LED+datasheet+.pdf -LED RGB NeoPixel -0 -4 -4 -LED_SMD -LED_WS2812B-2020_PLCC4_2.0x2.0mm -Addressable RGB LED NeoPixel Nano, 12 mA, https://cdn-shop.adafruit.com/product-files/4684/4684_WS2812B-2020_V1.3_EN.pdf -LED RGB NeoPixel Nano 2020 -0 -4 -4 -LED_SMD -LED_WS2812B_PLCC4_5.0x5.0mm_P3.2mm -https://cdn-shop.adafruit.com/datasheets/WS2812B.pdf -LED RGB NeoPixel -0 -4 -4 -LED_SMD -LED_WS2812_PLCC6_5.0x5.0mm_P1.6mm -https://cdn-shop.adafruit.com/datasheets/WS2812.pdf -LED RGB NeoPixel -0 -6 -6 -LED_SMD -LED_Wurth_150044M155260 -Wurth Common anode RGB LED, SMD, 0404, 1x1x1.65mm, https://www.we-online.com/catalog/datasheet/150044M155260.pdf -LED RGB ARGB -0 -4 -4 -LED_SMD -LED_Yuji_5730 -LED,Yuji,5730,https://cdn.shopify.com/s/files/1/0344/6401/files/YJWJ014-1.1_YJ-BC-5730L-G02.pdf -LED Yuji 5730 -0 -3 -2 -LED_SMD -LED_miniPLCC_2315 -https://docs.broadcom.com/cs/Satellite?blobcol=urldata&blobheader=application%2Fpdf&blobheadername1=Content-Disposition&blobheadername2=Content-Type&blobheadername3=MDT-Type&blobheadervalue1=attachment%3Bfilename%3DAV02-2205EN_DS_ASMT-TxBM_2014-05-09.pdf&blobheadervalue2=application%2Fx-download&blobheadervalue3=abinary%253B%2Bcharset%253DUTF-8&blobkey=id&blobnocache=true&blobtable=MungoBlobs&blobwhere=1430858274704&ssbinary=true -LED -0 -2 -2 -LED_SMD -LED_miniPLCC_2315_Handsoldering -https://docs.broadcom.com/cs/Satellite?blobcol=urldata&blobheader=application%2Fpdf&blobheadername1=Content-Disposition&blobheadername2=Content-Type&blobheadername3=MDT-Type&blobheadervalue1=attachment%3Bfilename%3DAV02-2205EN_DS_ASMT-TxBM_2014-05-09.pdf&blobheadervalue2=application%2Fx-download&blobheadervalue3=abinary%253B%2Bcharset%253DUTF-8&blobkey=id&blobnocache=true&blobtable=MungoBlobs&blobwhere=1430858274704&ssbinary=true -LED -0 -2 -2 -LED_THT -LED_BL-FL7680RGB -'Piranha' RGB LED, through hole, common anode, 7.62x7.62mm, BGRA pin order, https://cdn-shop.adafruit.com/datasheets/BL-FL7680RGB.pdf -RGB LED Piranha Super-Flux BetLux -0 -4 -4 -LED_THT -LED_D1.8mm_W1.8mm_H2.4mm_Horizontal_O1.27mm_Z1.6mm -LED, , diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins -LED diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins -0 -2 -2 -LED_THT -LED_D1.8mm_W1.8mm_H2.4mm_Horizontal_O1.27mm_Z4.9mm -LED, , diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm, 2 pins -LED diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm 2 pins -0 -2 -2 -LED_THT -LED_D1.8mm_W1.8mm_H2.4mm_Horizontal_O1.27mm_Z8.2mm -LED, , diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 8.2mm, 2 pins -LED diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 8.2mm 2 pins -0 -2 -2 -LED_THT -LED_D1.8mm_W1.8mm_H2.4mm_Horizontal_O3.81mm_Z1.6mm -LED, , diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins -LED diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins -0 -2 -2 -LED_THT -LED_D1.8mm_W1.8mm_H2.4mm_Horizontal_O3.81mm_Z4.9mm -LED, , diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm, 2 pins -LED diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm 2 pins -0 -2 -2 -LED_THT -LED_D1.8mm_W1.8mm_H2.4mm_Horizontal_O3.81mm_Z8.2mm -LED, , diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 8.2mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 8.2mm, 2 pins -LED diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 8.2mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 8.2mm 2 pins -0 -2 -2 -LED_THT -LED_D1.8mm_W1.8mm_H2.4mm_Horizontal_O6.35mm_Z1.6mm -LED, , diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins -LED diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins -0 -2 -2 -LED_THT -LED_D1.8mm_W1.8mm_H2.4mm_Horizontal_O6.35mm_Z4.9mm -LED, , diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm, 2 pins -LED diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm 2 pins -0 -2 -2 -LED_THT -LED_D1.8mm_W1.8mm_H2.4mm_Horizontal_O6.35mm_Z8.2mm -LED, , diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 8.2mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 8.2mm, 2 pins, diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 8.2mm, 2 pins -LED diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 1.6mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 4.9mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 8.2mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 8.2mm 2 pins diameter 1.8mm size 1.8x2.4mm^2 z-position of LED center 8.2mm 2 pins -0 -2 -2 -LED_THT -LED_D1.8mm_W3.3mm_H2.4mm -LED, Round, Rectangular size 3.3x2.4mm^2 diameter 1.8mm, 2 pins -LED Round Rectangular size 3.3x2.4mm^2 diameter 1.8mm 2 pins -0 -2 -2 -LED_THT -LED_D2.0mm_W4.0mm_H2.8mm_FlatTop -LED, Round, FlatTop, Rectangular size 4.0x2.8mm^2 diameter 2.0mm, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-1034IDT(Ver.9A).pdf -LED Round FlatTop Rectangular size 4.0x2.8mm^2 diameter 2.0mm 2 pins -0 -2 -2 -LED_THT -LED_D2.0mm_W4.8mm_H2.5mm_FlatTop -LED, Round, FlatTop, Rectangular size 4.8x2.5mm^2 diameter 2.0mm, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-13GD(Ver.11B).pdf -LED Round FlatTop Rectangular size 4.8x2.5mm^2 diameter 2.0mm 2 pins -0 -2 -2 -LED_THT -LED_D3.0mm -LED, diameter 3.0mm, 2 pins -LED diameter 3.0mm 2 pins -0 -2 -2 -LED_THT -LED_D3.0mm-3 -LED, diameter 3.0mm, 2 pins, diameter 3.0mm, 3 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-3VSURKCGKC(Ver.8A).pdf -LED diameter 3.0mm 2 pins diameter 3.0mm 3 pins -0 -3 -3 -LED_THT -LED_D3.0mm_Clear -IR-LED, diameter 3.0mm, 2 pins, color: clear -IR infrared LED diameter 3.0mm 2 pins clear -0 -2 -2 -LED_THT -LED_D3.0mm_FlatTop -LED, Round, FlatTop, diameter 3.0mm, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-47XEC(Ver.9A).pdf -LED Round FlatTop diameter 3.0mm 2 pins -0 -2 -2 -LED_THT -LED_D3.0mm_Horizontal_O1.27mm_Z2.0mm -LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins -LED diameter 3.0mm z-position of LED center 2.0mm 2 pins -0 -2 -2 -LED_THT -LED_D3.0mm_Horizontal_O1.27mm_Z2.0mm_Clear -LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins -LED diameter 3.0mm z-position of LED center 2.0mm 2 pins -0 -2 -2 -LED_THT -LED_D3.0mm_Horizontal_O1.27mm_Z2.0mm_IRBlack -LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins -LED diameter 3.0mm z-position of LED center 2.0mm 2 pins -0 -2 -2 -LED_THT -LED_D3.0mm_Horizontal_O1.27mm_Z2.0mm_IRGrey -LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins -LED diameter 3.0mm z-position of LED center 2.0mm 2 pins -0 -2 -2 -LED_THT -LED_D3.0mm_Horizontal_O1.27mm_Z6.0mm -LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, diameter 3.0mm z-position of LED center 6.0mm, 2 pins -LED diameter 3.0mm z-position of LED center 2.0mm 2 pins diameter 3.0mm z-position of LED center 2.0mm 2 pins diameter 3.0mm z-position of LED center 2.0mm 2 pins diameter 3.0mm z-position of LED center 6.0mm 2 pins -0 -2 -2 -LED_THT -LED_D3.0mm_Horizontal_O1.27mm_Z10.0mm -LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, diameter 3.0mm z-position of LED center 6.0mm, 2 pins, diameter 3.0mm z-position of LED center 6.0mm, 2 pins, diameter 3.0mm z-position of LED center 6.0mm, 2 pins, diameter 3.0mm z-position of LED center 10.0mm, 2 pins -LED diameter 3.0mm z-position of LED center 2.0mm 2 pins diameter 3.0mm z-position of LED center 2.0mm 2 pins diameter 3.0mm z-position of LED center 2.0mm 2 pins diameter 3.0mm z-position of LED center 6.0mm 2 pins diameter 3.0mm z-position of LED center 6.0mm 2 pins diameter 3.0mm z-position of LED center 6.0mm 2 pins diameter 3.0mm z-position of LED center 10.0mm 2 pins -0 -2 -2 -LED_THT -LED_D3.0mm_Horizontal_O3.81mm_Z2.0mm -LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, diameter 3.0mm z-position of LED center 2.0mm, 2 pins -LED diameter 3.0mm z-position of LED center 2.0mm 2 pins diameter 3.0mm z-position of LED center 2.0mm 2 pins -0 -2 -2 -LED_THT -LED_D3.0mm_Horizontal_O3.81mm_Z6.0mm -LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, diameter 3.0mm z-position of LED center 6.0mm, 2 pins, diameter 3.0mm z-position of LED center 6.0mm, 2 pins -LED diameter 3.0mm z-position of LED center 2.0mm 2 pins diameter 3.0mm z-position of LED center 2.0mm 2 pins diameter 3.0mm z-position of LED center 2.0mm 2 pins diameter 3.0mm z-position of LED center 6.0mm 2 pins diameter 3.0mm z-position of LED center 6.0mm 2 pins -0 -2 -2 -LED_THT -LED_D3.0mm_Horizontal_O3.81mm_Z10.0mm -LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, diameter 3.0mm z-position of LED center 6.0mm, 2 pins, diameter 3.0mm z-position of LED center 6.0mm, 2 pins, diameter 3.0mm z-position of LED center 6.0mm, 2 pins, diameter 3.0mm z-position of LED center 10.0mm, 2 pins, diameter 3.0mm z-position of LED center 10.0mm, 2 pins -LED diameter 3.0mm z-position of LED center 2.0mm 2 pins diameter 3.0mm z-position of LED center 2.0mm 2 pins diameter 3.0mm z-position of LED center 2.0mm 2 pins diameter 3.0mm z-position of LED center 6.0mm 2 pins diameter 3.0mm z-position of LED center 6.0mm 2 pins diameter 3.0mm z-position of LED center 6.0mm 2 pins diameter 3.0mm z-position of LED center 10.0mm 2 pins diameter 3.0mm z-position of LED center 10.0mm 2 pins -0 -2 -2 -LED_THT -LED_D3.0mm_Horizontal_O6.35mm_Z2.0mm -LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, diameter 3.0mm z-position of LED center 2.0mm, 2 pins -LED diameter 3.0mm z-position of LED center 2.0mm 2 pins diameter 3.0mm z-position of LED center 2.0mm 2 pins diameter 3.0mm z-position of LED center 2.0mm 2 pins -0 -2 -2 -LED_THT -LED_D3.0mm_Horizontal_O6.35mm_Z6.0mm -LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, diameter 3.0mm z-position of LED center 6.0mm, 2 pins, diameter 3.0mm z-position of LED center 6.0mm, 2 pins, diameter 3.0mm z-position of LED center 6.0mm, 2 pins -LED diameter 3.0mm z-position of LED center 2.0mm 2 pins diameter 3.0mm z-position of LED center 2.0mm 2 pins diameter 3.0mm z-position of LED center 2.0mm 2 pins diameter 3.0mm z-position of LED center 6.0mm 2 pins diameter 3.0mm z-position of LED center 6.0mm 2 pins diameter 3.0mm z-position of LED center 6.0mm 2 pins -0 -2 -2 -LED_THT -LED_D3.0mm_Horizontal_O6.35mm_Z10.0mm -LED, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, diameter 3.0mm z-position of LED center 2.0mm, 2 pins, diameter 3.0mm z-position of LED center 6.0mm, 2 pins, diameter 3.0mm z-position of LED center 6.0mm, 2 pins, diameter 3.0mm z-position of LED center 6.0mm, 2 pins, diameter 3.0mm z-position of LED center 10.0mm, 2 pins, diameter 3.0mm z-position of LED center 10.0mm, 2 pins, diameter 3.0mm z-position of LED center 10.0mm, 2 pins -LED diameter 3.0mm z-position of LED center 2.0mm 2 pins diameter 3.0mm z-position of LED center 2.0mm 2 pins diameter 3.0mm z-position of LED center 2.0mm 2 pins diameter 3.0mm z-position of LED center 6.0mm 2 pins diameter 3.0mm z-position of LED center 6.0mm 2 pins diameter 3.0mm z-position of LED center 6.0mm 2 pins diameter 3.0mm z-position of LED center 10.0mm 2 pins diameter 3.0mm z-position of LED center 10.0mm 2 pins diameter 3.0mm z-position of LED center 10.0mm 2 pins -0 -2 -2 -LED_THT -LED_D3.0mm_IRBlack -IR-ED, diameter 3.0mm, 2 pins, color: black -IR infrared LED diameter 3.0mm 2 pins black -0 -2 -2 -LED_THT -LED_D3.0mm_IRGrey -IR-LED, diameter 3.0mm, 2 pins, color: grey -IR infrared LED diameter 3.0mm 2 pins grey -0 -2 -2 -LED_THT -LED_D4.0mm -LED, diameter 4.0mm, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-43GD(Ver.12B).pdf -LED diameter 4.0mm 2 pins -0 -2 -2 -LED_THT -LED_D5.0mm -LED, diameter 5.0mm, 2 pins, http://cdn-reichelt.de/documents/datenblatt/A500/LL-504BC2E-009.pdf -LED diameter 5.0mm 2 pins -0 -2 -2 -LED_THT -LED_D5.0mm-3 -LED, diameter 5.0mm, 2 pins, diameter 5.0mm, 3 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-59EGC(Ver.17A).pdf -LED diameter 5.0mm 2 pins diameter 5.0mm 3 pins -0 -3 -3 -LED_THT -LED_D5.0mm-3_Horizontal_O3.81mm_Z3.0mm -LED, diameter 5.0mm z-position of LED center 3.0mm, 3 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins -LED diameter 5.0mm z-position of LED center 3.0mm 3 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins -0 -3 -3 -LED_THT -LED_D5.0mm-4_RGB -LED, diameter 5.0mm, 4 pins, WP154A4, https://www.kingbright.com/attachments/file/psearch/000/00/00/L-154A4SUREQBFZGEW(Ver.11A).pdf -LED diameter 5.0mm 2 pins diameter 5.0mm 3 pins diameter 5.0mm 4 pins RGB RGBLED -0 -4 -4 -LED_THT -LED_D5.0mm-4_RGB_Staggered_Pins -LED, diameter 5.0mm, 4 pins, WP154A4, https://www.kingbright.com/attachments/file/psearch/000/00/00/L-154A4SUREQBFZGEW(Ver.11A).pdf -rgb led -0 -4 -4 -LED_THT -LED_D5.0mm-4_RGB_Wide_Pins -LED, diameter 5.0mm, 4 pins, WP154A4, https://www.kingbright.com/attachments/file/psearch/000/00/00/L-154A4SUREQBFZGEW(Ver.11A).pdf -LED diameter 5.0mm 2 pins diameter 5.0mm 3 pins diameter 5.0mm 4 pins RGB RGBLED -0 -4 -4 -LED_THT -LED_D5.0mm_Clear -LED, diameter 5.0mm, 2 pins, http://cdn-reichelt.de/documents/datenblatt/A500/LL-504BC2E-009.pdf -LED diameter 5.0mm 2 pins -0 -2 -2 -LED_THT -LED_D5.0mm_FlatTop -LED, Round, FlatTop, diameter 5.0mm, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-483GDT(Ver.15B).pdf -LED Round FlatTop diameter 5.0mm 2 pins -0 -2 -2 -LED_THT -LED_D5.0mm_Horizontal_O1.27mm_Z3.0mm -LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins -LED diameter 5.0mm z-position of LED center 3.0mm 2 pins -0 -2 -2 -LED_THT -LED_D5.0mm_Horizontal_O1.27mm_Z3.0mm_Clear -LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins -LED diameter 5.0mm z-position of LED center 3.0mm 2 pins -0 -2 -2 -LED_THT -LED_D5.0mm_Horizontal_O1.27mm_Z3.0mm_IRBlack -LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins -LED diameter 5.0mm z-position of LED center 3.0mm 2 pins -0 -2 -2 -LED_THT -LED_D5.0mm_Horizontal_O1.27mm_Z3.0mm_IRGrey -LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins -LED diameter 5.0mm z-position of LED center 3.0mm 2 pins -0 -2 -2 -LED_THT -LED_D5.0mm_Horizontal_O1.27mm_Z9.0mm -LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins -LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins -0 -2 -2 -LED_THT -LED_D5.0mm_Horizontal_O1.27mm_Z15.0mm -LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 15.0mm, 2 pins -LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 15.0mm 2 pins -0 -2 -2 -LED_THT -LED_D5.0mm_Horizontal_O3.81mm_Z3.0mm -LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins -LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins -0 -2 -2 -LED_THT -LED_D5.0mm_Horizontal_O3.81mm_Z9.0mm -LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins -LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins -0 -2 -2 -LED_THT -LED_D5.0mm_Horizontal_O3.81mm_Z15.0mm -LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 15.0mm, 2 pins, diameter 5.0mm z-position of LED center 15.0mm, 2 pins -LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 15.0mm 2 pins diameter 5.0mm z-position of LED center 15.0mm 2 pins -0 -2 -2 -LED_THT -LED_D5.0mm_Horizontal_O6.35mm_Z3.0mm -LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins -LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins -0 -2 -2 -LED_THT -LED_D5.0mm_Horizontal_O6.35mm_Z9.0mm -LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins -LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins -0 -2 -2 -LED_THT -LED_D5.0mm_Horizontal_O6.35mm_Z15.0mm -LED, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 3.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 9.0mm, 2 pins, diameter 5.0mm z-position of LED center 15.0mm, 2 pins, diameter 5.0mm z-position of LED center 15.0mm, 2 pins, diameter 5.0mm z-position of LED center 15.0mm, 2 pins -LED diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 3.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 9.0mm 2 pins diameter 5.0mm z-position of LED center 15.0mm 2 pins diameter 5.0mm z-position of LED center 15.0mm 2 pins diameter 5.0mm z-position of LED center 15.0mm 2 pins -0 -2 -2 -LED_THT -LED_D5.0mm_IRBlack -LED, diameter 5.0mm, 2 pins, http://cdn-reichelt.de/documents/datenblatt/A500/LL-504BC2E-009.pdf -LED diameter 5.0mm 2 pins -0 -2 -2 -LED_THT -LED_D5.0mm_IRGrey -LED, diameter 5.0mm, 2 pins, http://cdn-reichelt.de/documents/datenblatt/A500/LL-504BC2E-009.pdf -LED diameter 5.0mm 2 pins -0 -2 -2 -LED_THT -LED_D8.0mm -LED, diameter 8.0mm, 2 pins, http://cdn-reichelt.de/documents/datenblatt/A500/LED8MMGE_LED8MMGN_LED8MMRT%23KIN.pdf -LED diameter 8.0mm 2 pins -0 -2 -2 -LED_THT -LED_D8.0mm-3 -LED, diameter 8.0mm, 2 pins, diameter 8.0mm, 3 pins -LED diameter 8.0mm 2 pins diameter 8.0mm 3 pins -0 -3 -3 -LED_THT -LED_D10.0mm -LED, diameter 10.0mm, 2 pins, http://cdn-reichelt.de/documents/datenblatt/A500/LED10-4500RT%23KIN.pdf -LED diameter 10.0mm 2 pins -0 -2 -2 -LED_THT -LED_D10.0mm-3 -LED, diameter 10.0mm, 2 pins, diameter 10.0mm, 3 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-819EGW(Ver.14A).pdf -LED diameter 10.0mm 2 pins diameter 10.0mm 3 pins -0 -3 -3 -LED_THT -LED_D20.0mm -LED, diameter 20.0mm, 2 pins, http://cdn-reichelt.de/documents/datenblatt/A500/DLC2-6GD%28V6%29.pdf -LED diameter 20.0mm 2 pins -0 -2 -2 -LED_THT -LED_Oval_W5.2mm_H3.8mm -LED_Oval, Oval, Oval size 5.2x3.8mm^2, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-5603QBC-D(Ver.12B).pdf -LED_Oval Oval Oval size 5.2x3.8mm^2 2 pins -0 -2 -2 -LED_THT -LED_Rectangular_W3.0mm_H2.0mm -LED_Rectangular, Rectangular, Rectangular size 3.0x2.0mm^2, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-169XCGDK(Ver.9B).pdf -LED_Rectangular Rectangular Rectangular size 3.0x2.0mm^2 2 pins -0 -2 -2 -LED_THT -LED_Rectangular_W3.9mm_H1.8mm -LED_Rectangular, Rectangular, Rectangular size 3.9x1.8mm^2, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-2774GD(Ver.7B).pdf -LED_Rectangular Rectangular Rectangular size 3.9x1.8mm^2 2 pins -0 -2 -2 -LED_THT -LED_Rectangular_W3.9mm_H1.8mm_FlatTop -LED_Rectangular, Rectangular, Rectangular size 3.9x1.8mm^2, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-2774GD(Ver.7B).pdf -LED_Rectangular Rectangular Rectangular size 3.9x1.8mm^2 2 pins -0 -2 -2 -LED_THT -LED_Rectangular_W3.9mm_H1.9mm -LED_Rectangular, Rectangular, Rectangular size 3.9x1.9mm^2, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-144GDT(Ver.14B).pdf -LED_Rectangular Rectangular Rectangular size 3.9x1.9mm^2 2 pins -0 -2 -2 -LED_THT -LED_Rectangular_W5.0mm_H2.0mm -LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-169XCGDK(Ver.9B).pdf -LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 2 pins -0 -2 -2 -LED_THT -LED_Rectangular_W5.0mm_H2.0mm-3Pins -LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2, 3 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-169XCGDK(Ver.9B).pdf -LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 3 pins -0 -3 -3 -LED_THT -LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O1.27mm_Z1.0mm -LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins -LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins -0 -2 -2 -LED_THT -LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O1.27mm_Z3.0mm -LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins -LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins -0 -2 -2 -LED_THT -LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O1.27mm_Z5.0mm -LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 5.0mm, 2 pins -LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 5.0mm 2 pins -0 -2 -2 -LED_THT -LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O3.81mm_Z1.0mm -LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins -LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins -0 -2 -2 -LED_THT -LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O3.81mm_Z3.0mm -LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins -LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins -0 -2 -2 -LED_THT -LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O3.81mm_Z5.0mm -LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 5.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 5.0mm, 2 pins -LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 5.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 5.0mm 2 pins -0 -2 -2 -LED_THT -LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O6.35mm_Z1.0mm -LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins -LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins -0 -2 -2 -LED_THT -LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O6.35mm_Z3.0mm -LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins -LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins -0 -2 -2 -LED_THT -LED_Rectangular_W5.0mm_H2.0mm_Horizontal_O6.35mm_Z5.0mm -LED_Rectangular, Rectangular, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 5.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 5.0mm, 2 pins, Rectangular size 5.0x2.0mm^2 z-position of LED center 5.0mm, 2 pins -LED_Rectangular Rectangular Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 1.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 3.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 5.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 5.0mm 2 pins Rectangular size 5.0x2.0mm^2 z-position of LED center 5.0mm 2 pins -0 -2 -2 -LED_THT -LED_Rectangular_W5.0mm_H5.0mm -LED_Rectangular, Rectangular, Rectangular size 5.0x5.0mm^2, 2 pins, http://www.kingbright.com/attachments/file/psearch/000/00/00/L-169XCGDK(Ver.9B).pdf -LED_Rectangular Rectangular Rectangular size 5.0x5.0mm^2 2 pins -0 -2 -2 -LED_THT -LED_Rectangular_W7.62mm_H4.55mm_P5.08mm_R3 -Datasheet can be found at https://www.gme.cz/data/attachments/dsh.511-795.1.pdf -LED automotive super flux 7.62mm -0 -4 -2 -LED_THT -LED_SideEmitter_Rectangular_W4.5mm_H1.6mm -LED_SideEmitter_Rectangular, Rectangular, SideEmitter, Rectangular size 4.5x1.6mm^2, 2 pins, http://cdn-reichelt.de/documents/datenblatt/A500/LED15MMGE_LED15MMGN%23KIN.pdf -LED_SideEmitter_Rectangular Rectangular SideEmitter Rectangular size 4.5x1.6mm^2 2 pins -0 -2 -2 -LED_THT -LED_VCCLite_5381H1_6.35x6.35mm -Red 5381 Series LED VCCLite https://vcclite.com/wp-content/uploads/wpallimport/files/files/5381Series.pdf http://static.vcclite.com/pdf/Mounting%20Hole%20Pattern%202.pdf -Red 5381 Series LED -0 -2 -2 -LED_THT -LED_VCCLite_5381H3_6.35x6.35mm -Amber 5381 Series LED VCCLite https://vcclite.com/wp-content/uploads/wpallimport/files/files/5381Series.pdf http://static.vcclite.com/pdf/Mounting%20Hole%20Pattern%202.pdf -Amber 5381 Series LED -0 -2 -2 -LED_THT -LED_VCCLite_5381H5_6.35x6.35mm -Green 5381 Series LED VCCLite https://vcclite.com/wp-content/uploads/wpallimport/files/files/5381Series.pdf http://static.vcclite.com/pdf/Mounting%20Hole%20Pattern%202.pdf -Green 5381 Series LED -0 -2 -2 -LED_THT -LED_VCCLite_5381H7_6.35x6.35mm -Yellow 5381 Series LED VCCLite https://vcclite.com/wp-content/uploads/wpallimport/files/files/5381Series.pdf http://static.vcclite.com/pdf/Mounting%20Hole%20Pattern%202.pdf -Yellow 5381 Series LED -0 -2 -2 -Module -A20_OLINUXINO_LIME2 -A20 Olinuxino LIME2, 1.2GHz, 512-1024MB RAM, Micro-SD, NAND or eMMC, 1000Mbit Ethernet -A20 Olimex Olinuxino LIME2 development board -0 -180 -180 -Module -Adafruit_Feather -Common footprint for the Adafruit Feather series of boards, https://learn.adafruit.com/adafruit-feather/feather-specification -Adafruit Feather -0 -28 -28 -Module -Adafruit_Feather_32u4_FONA -Footprint for the Adafruit Feather 32u4 FONA board, https://learn.adafruit.com/adafruit-feather-32u4-fona -Adafruit Feather 32u4 FONA -0 -28 -28 -Module -Adafruit_Feather_32u4_FONA_WithMountingHoles -Footprint for the Adafruit Feather 32u4 FONA board, https://learn.adafruit.com/adafruit-feather-32u4-fona -Adafruit Feather 32u4 FONA -0 -28 -28 -Module -Adafruit_Feather_32u4_RFM -Footprint for the Adafruit Feather 32u4 RFM series of boards, https://learn.adafruit.com/adafruit-feather-32u4-radio-with-rfm69hcw-module -Adafruit Feather 32u4 RFM -0 -31 -31 -Module -Adafruit_Feather_32u4_RFM_WithMountingHoles -Footprint for the Adafruit Feather 32u4 RFM series of boards, https://learn.adafruit.com/adafruit-feather-32u4-radio-with-rfm69hcw-module -Adafruit Feather 32u4 RFM -0 -31 -31 -Module -Adafruit_Feather_M0_RFM -Footprint for the Adafruit Feather M0 RFM series of boards, e.g. https://learn.adafruit.com/adafruit-feather-m0-radio-with-rfm69-packet-radio -Adafruit Feather M0 RFM -0 -32 -32 -Module -Adafruit_Feather_M0_RFM_WithMountingHoles -Footprint for the Adafruit Feather M0 RFM series of boards, e.g. https://learn.adafruit.com/adafruit-feather-m0-radio-with-rfm69-packet-radio - Adafruit Feather M0 RFM -0 -32 -32 -Module -Adafruit_Feather_M0_Wifi -Footprint for the Adafruit Feather M0 Wifi board, https://learn.adafruit.com/adafruit-feather-m0-wifi-atwinc1500/ -Adafruit Feather M0 Wifi -0 -28 -28 -Module -Adafruit_Feather_M0_Wifi_WithMountingHoles -Footprint for the Adafruit Feather M0 Wifi board, https://learn.adafruit.com/adafruit-feather-m0-wifi-atwinc1500/ -Adafruit Feather M0 Wifi -0 -28 -28 -Module -Adafruit_Feather_WICED -Footprint for the Adafruit Feather WICED Wifi board, https://learn.adafruit.com/introducing-the-adafruit-wiced-feather-wifi -Adafruit Feather WICED Wifi -0 -29 -29 -Module -Adafruit_Feather_WICED_WithMountingHoles -Footprint for the Adafruit Feather WICED Wifi board, https://learn.adafruit.com/introducing-the-adafruit-wiced-feather-wifi -Adafruit Feather WICED Wifi -0 -29 -29 -Module -Adafruit_Feather_WithMountingHoles -Common footprint for the Adafruit Feather series of boards, https://learn.adafruit.com/adafruit-feather/feather-specification -Adafruit Feather -0 -28 -28 -Module -Adafruit_HUZZAH_ESP8266_breakout -32-bit microcontroller module with WiFi, https://www.adafruit.com/product/2471 -ESP8266 WiFi microcontroller -0 -20 -20 -Module -Adafruit_HUZZAH_ESP8266_breakout_WithMountingHoles -32-bit microcontroller module with WiFi, https://www.adafruit.com/product/2471 -ESP8266 WiFi microcontroller -0 -20 -20 -Module -Arduino_Nano -Arduino Nano, http://www.mouser.com/pdfdocs/Gravitech_Arduino_Nano3_0.pdf -Arduino Nano -0 -30 -30 -Module -Arduino_Nano_WithMountingHoles -Arduino Nano, http://www.mouser.com/pdfdocs/Gravitech_Arduino_Nano3_0.pdf -Arduino Nano -0 -30 -30 -Module -Arduino_UNO_R2 -Arduino UNO R2, http://www.mouser.com/pdfdocs/Gravitech_Arduino_Nano3_0.pdf -Arduino UNO R2 -0 -30 -30 -Module -Arduino_UNO_R2_WithMountingHoles -Arduino UNO R2, http://www.mouser.com/pdfdocs/Gravitech_Arduino_Nano3_0.pdf -Arduino UNO R2 -0 -30 -30 -Module -Arduino_UNO_R3 -Arduino UNO R3, http://www.mouser.com/pdfdocs/Gravitech_Arduino_Nano3_0.pdf -Arduino UNO R3 -0 -32 -32 -Module -Arduino_UNO_R3_WithMountingHoles -Arduino UNO R3, http://www.mouser.com/pdfdocs/Gravitech_Arduino_Nano3_0.pdf -Arduino UNO R3 -0 -32 -32 -Module -BeagleBoard_PocketBeagle -PocketBeagle, https://github.com/beagleboard/pocketbeagle/wiki/System-Reference-Manual#71_Expansion_Header_Connectors -PocketBeagle -0 -72 -72 -Module -Carambola2 -8devices Carambola2, OpenWRT, industrial SoM computer, https://www.8devices.com/media/products/carambola2/downloads/carambola2-datasheet.pdf -carambola2 8devices -0 -104 -52 -Module -Electrosmith_Daisy_Seed -Embedded platform for audio applications. 96kHz / 24-bit audio hardware. 64MB of SDRAM for up to 10 minute long audio. ARM Cortex-M7 MCU, running at 480MHz. 31 total GPIO pins with configurable functionality. 12-bit Digital to Analog Converters (x2). SD card interfaces. PWM outputs. Serial Protocols for connecting external sensors and devices (SPI, UART, I2S, I2C). Dedicated VIN pin for power. Micro USB port, and additional USB pins for full OTG-support as host and device. https://static1.squarespace.com/static/58d03fdc1b10e3bf442567b8/t/6227e6236f02fb68d1577146/1646781988478/Daisy_Seed_datasheet_v1.0.3.pdf -Electrosmith Daisy Seed Microcontroller Module ARM Cortex-M7 Audio Codec -0 -40 -40 -Module -Maple_Mini -Maple Mini, http://docs.leaflabs.com/static.leaflabs.com/pub/leaflabs/maple-docs/0.0.12/hardware/maple-mini.html -Maple Mini -0 -40 -40 -Module -Olimex_MOD-WIFI-ESP8266-DEV -ESP8266 development board https://www.olimex.com/Products/IoT/ESP8266/MOD-WIFI-ESP8266-DEV/resources/dimensions-WIFI-ESP8266-DEV.png -ESP8266 -0 -22 -22 -Module -Onion_Omega2+ -https://onion.io/omega2/ -Omega Onion module -0 -32 -32 -Module -Onion_Omega2S -https://github.com/OnionIoT/Omega2/raw/master/Documents/Omega2S%20Datasheet.pdf -onion omega module -0 -89 -64 -Module -Pololu_Breakout-16_15.2x20.3mm -Pololu Breakout 16-pin 15.2x20.3mm 0.6x0.8\ -Pololu Breakout -0 -16 -16 -Module -Raspberry_Pi_Zero_Socketed_THT_FaceDown_MountingHoles -Raspberry Pi Zero using through hole straight pin socket, 2x20, 2.54mm pitch, https://www.raspberrypi.org/documentation/hardware/raspberrypi/mechanical/rpi_MECH_Zero_1p2.pdf -raspberry pi zero through hole -0 -40 -40 -Module -ST_Morpho_Connector_144_STLink -ST Morpho Connector 144 With STLink -ST Morpho Connector 144 STLink -0 -148 -148 -Module -ST_Morpho_Connector_144_STLink_MountingHoles -ST Morpho Connector 144 With STLink -ST Morpho Connector 144 STLink -0 -148 -148 -Module -Sipeed-M1 -AI accelerated MCU with optional wifi, https://dl.sipeed.com/MAIX/HDK/Sipeed-M1&M1W/Specifications -AI Kendryte K210 RISC-V -0 -85 -77 -Module -Texas_EUK_R-PDSS-T7_THT -Texas Instruments EUK 7 Pin Double Sided Module -module pcb -0 -7 -7 -Module -Texas_EUS_R-PDSS-T5_THT -Texas Instruments EUS 5 Pin Double Sided Module -module pcb -0 -5 -5 -Module -Texas_EUW_R-PDSS-T7_THT -Texas Instruments EUW 7 Pin Double Sided Module -module pcb -0 -7 -7 -Module -WEMOS_D1_mini_light -16-pin module, column spacing 22.86 mm (900 mils), https://wiki.wemos.cc/products:d1:d1_mini, https://c1.staticflickr.com/1/734/31400410271_f278b087db_z.jpg -ESP8266 WiFi microcontroller -0 -16 -16 -Motors -Vybronics_VZ30C1T8219732L -Vibration motor, 2.3-3.2V, 14000rpm, 0.7G, https://www.vybronics.com/wp-content/uploads/datasheet-files/Vybronics-VZ30C1T8219732L-datasheet.pdf -vibration motor Vybronics -0 -12 -3 -MountingEquipment -DINRailAdapter_3xM3_PhoenixContact_1201578 -https://www.phoenixcontact.com/online/portal/us?uri=pxc-oc-itemdetail:pid=1201578&library=usen&tab=1 -DIN rail adapter universal three M3 clearance holes -0 -0 -0 -MountingHole -MountingHole_2.1mm -Mounting Hole 2.1mm, no annular -mounting hole 2.1mm no annular -0 -0 -0 -MountingHole -MountingHole_2.2mm_M2 -Mounting Hole 2.2mm, no annular, M2 -mounting hole 2.2mm no annular m2 -0 -0 -0 -MountingHole -MountingHole_2.2mm_M2_DIN965 -Mounting Hole 2.2mm, no annular, M2, DIN965 -mounting hole 2.2mm no annular m2 din965 -0 -0 -0 -MountingHole -MountingHole_2.2mm_M2_DIN965_Pad -Mounting Hole 2.2mm, M2, DIN965 -mounting hole 2.2mm m2 din965 -0 -1 -1 -MountingHole -MountingHole_2.2mm_M2_DIN965_Pad_TopBottom -Mounting Hole 2.2mm, M2, DIN965 -mounting hole 2.2mm m2 din965 -0 -3 -1 -MountingHole -MountingHole_2.2mm_M2_DIN965_Pad_TopOnly -Mounting Hole 2.2mm, M2, DIN965 -mounting hole 2.2mm m2 din965 -0 -2 -1 -MountingHole -MountingHole_2.2mm_M2_ISO7380 -Mounting Hole 2.2mm, no annular, M2, ISO7380 -mounting hole 2.2mm no annular m2 iso7380 -0 -0 -0 -MountingHole -MountingHole_2.2mm_M2_ISO7380_Pad -Mounting Hole 2.2mm, M2, ISO7380 -mounting hole 2.2mm m2 iso7380 -0 -1 -1 -MountingHole -MountingHole_2.2mm_M2_ISO7380_Pad_TopBottom -Mounting Hole 2.2mm, M2, ISO7380 -mounting hole 2.2mm m2 iso7380 -0 -3 -1 -MountingHole -MountingHole_2.2mm_M2_ISO7380_Pad_TopOnly -Mounting Hole 2.2mm, M2, ISO7380 -mounting hole 2.2mm m2 iso7380 -0 -2 -1 -MountingHole -MountingHole_2.2mm_M2_ISO14580 -Mounting Hole 2.2mm, no annular, M2, ISO14580 -mounting hole 2.2mm no annular m2 iso14580 -0 -0 -0 -MountingHole -MountingHole_2.2mm_M2_ISO14580_Pad -Mounting Hole 2.2mm, M2, ISO14580 -mounting hole 2.2mm m2 iso14580 -0 -1 -1 -MountingHole -MountingHole_2.2mm_M2_ISO14580_Pad_TopBottom -Mounting Hole 2.2mm, M2, ISO14580 -mounting hole 2.2mm m2 iso14580 -0 -3 -1 -MountingHole -MountingHole_2.2mm_M2_ISO14580_Pad_TopOnly -Mounting Hole 2.2mm, M2, ISO14580 -mounting hole 2.2mm m2 iso14580 -0 -2 -1 -MountingHole -MountingHole_2.2mm_M2_Pad -Mounting Hole 2.2mm, M2 -mounting hole 2.2mm m2 -0 -1 -1 -MountingHole -MountingHole_2.2mm_M2_Pad_TopBottom -Mounting Hole 2.2mm, M2 -mounting hole 2.2mm m2 -0 -3 -1 -MountingHole -MountingHole_2.2mm_M2_Pad_TopOnly -Mounting Hole 2.2mm, M2 -mounting hole 2.2mm m2 -0 -2 -1 -MountingHole -MountingHole_2.2mm_M2_Pad_Via -Mounting Hole 2.2mm, M2 -mounting hole 2.2mm m2 -0 -9 -1 -MountingHole -MountingHole_2.5mm -Mounting Hole 2.5mm, no annular -mounting hole 2.5mm no annular -0 -0 -0 -MountingHole -MountingHole_2.5mm_Pad -Mounting Hole 2.5mm -mounting hole 2.5mm -0 -1 -1 -MountingHole -MountingHole_2.5mm_Pad_TopBottom -Mounting Hole 2.5mm -mounting hole 2.5mm -0 -3 -1 -MountingHole -MountingHole_2.5mm_Pad_TopOnly -Mounting Hole 2.5mm -mounting hole 2.5mm -0 -2 -1 -MountingHole -MountingHole_2.5mm_Pad_Via -Mounting Hole 2.5mm -mounting hole 2.5mm -0 -9 -1 -MountingHole -MountingHole_2.7mm -Mounting Hole 2.7mm, no annular -mounting hole 2.7mm no annular -0 -0 -0 -MountingHole -MountingHole_2.7mm_M2.5 -Mounting Hole 2.7mm, no annular, M2.5 -mounting hole 2.7mm no annular m2.5 -0 -0 -0 -MountingHole -MountingHole_2.7mm_M2.5_DIN965 -Mounting Hole 2.7mm, no annular, M2.5, DIN965 -mounting hole 2.7mm no annular m2.5 din965 -0 -0 -0 -MountingHole -MountingHole_2.7mm_M2.5_DIN965_Pad -Mounting Hole 2.7mm, M2.5, DIN965 -mounting hole 2.7mm m2.5 din965 -0 -1 -1 -MountingHole -MountingHole_2.7mm_M2.5_DIN965_Pad_TopBottom -Mounting Hole 2.7mm, M2.5, DIN965 -mounting hole 2.7mm m2.5 din965 -0 -3 -1 -MountingHole -MountingHole_2.7mm_M2.5_DIN965_Pad_TopOnly -Mounting Hole 2.7mm, M2.5, DIN965 -mounting hole 2.7mm m2.5 din965 -0 -2 -1 -MountingHole -MountingHole_2.7mm_M2.5_ISO7380 -Mounting Hole 2.7mm, no annular, M2.5, ISO7380 -mounting hole 2.7mm no annular m2.5 iso7380 -0 -0 -0 -MountingHole -MountingHole_2.7mm_M2.5_ISO7380_Pad -Mounting Hole 2.7mm, M2.5, ISO7380 -mounting hole 2.7mm m2.5 iso7380 -0 -1 -1 -MountingHole -MountingHole_2.7mm_M2.5_ISO7380_Pad_TopBottom -Mounting Hole 2.7mm, M2.5, ISO7380 -mounting hole 2.7mm m2.5 iso7380 -0 -3 -1 -MountingHole -MountingHole_2.7mm_M2.5_ISO7380_Pad_TopOnly -Mounting Hole 2.7mm, M2.5, ISO7380 -mounting hole 2.7mm m2.5 iso7380 -0 -2 -1 -MountingHole -MountingHole_2.7mm_M2.5_ISO14580 -Mounting Hole 2.7mm, no annular, M2.5, ISO14580 -mounting hole 2.7mm no annular m2.5 iso14580 -0 -0 -0 -MountingHole -MountingHole_2.7mm_M2.5_ISO14580_Pad -Mounting Hole 2.7mm, M2.5, ISO14580 -mounting hole 2.7mm m2.5 iso14580 -0 -1 -1 -MountingHole -MountingHole_2.7mm_M2.5_ISO14580_Pad_TopBottom -Mounting Hole 2.7mm, M2.5, ISO14580 -mounting hole 2.7mm m2.5 iso14580 -0 -3 -1 -MountingHole -MountingHole_2.7mm_M2.5_ISO14580_Pad_TopOnly -Mounting Hole 2.7mm, M2.5, ISO14580 -mounting hole 2.7mm m2.5 iso14580 -0 -2 -1 -MountingHole -MountingHole_2.7mm_M2.5_Pad -Mounting Hole 2.7mm, M2.5 -mounting hole 2.7mm m2.5 -0 -1 -1 -MountingHole -MountingHole_2.7mm_M2.5_Pad_TopBottom -Mounting Hole 2.7mm, M2.5 -mounting hole 2.7mm m2.5 -0 -3 -1 -MountingHole -MountingHole_2.7mm_M2.5_Pad_TopOnly -Mounting Hole 2.7mm, M2.5 -mounting hole 2.7mm m2.5 -0 -2 -1 -MountingHole -MountingHole_2.7mm_M2.5_Pad_Via -Mounting Hole 2.7mm -mounting hole 2.7mm -0 -9 -1 -MountingHole -MountingHole_2.7mm_Pad -Mounting Hole 2.7mm -mounting hole 2.7mm -0 -1 -1 -MountingHole -MountingHole_2.7mm_Pad_TopBottom -Mounting Hole 2.7mm -mounting hole 2.7mm -0 -3 -1 -MountingHole -MountingHole_2.7mm_Pad_TopOnly -Mounting Hole 2.7mm -mounting hole 2.7mm -0 -2 -1 -MountingHole -MountingHole_2.7mm_Pad_Via -Mounting Hole 2.7mm -mounting hole 2.7mm -0 -9 -1 -MountingHole -MountingHole_2mm -Mounting Hole 2mm, no annular -mounting hole 2mm no annular -0 -0 -0 -MountingHole -MountingHole_3.2mm_M3 -Mounting Hole 3.2mm, no annular, M3 -mounting hole 3.2mm no annular m3 -0 -0 -0 -MountingHole -MountingHole_3.2mm_M3_DIN965 -Mounting Hole 3.2mm, no annular, M3, DIN965 -mounting hole 3.2mm no annular m3 din965 -0 -0 -0 -MountingHole -MountingHole_3.2mm_M3_DIN965_Pad -Mounting Hole 3.2mm, M3, DIN965 -mounting hole 3.2mm m3 din965 -0 -1 -1 -MountingHole -MountingHole_3.2mm_M3_DIN965_Pad_TopBottom -Mounting Hole 3.2mm, M3, DIN965 -mounting hole 3.2mm m3 din965 -0 -3 -1 -MountingHole -MountingHole_3.2mm_M3_DIN965_Pad_TopOnly -Mounting Hole 3.2mm, M3, DIN965 -mounting hole 3.2mm m3 din965 -0 -2 -1 -MountingHole -MountingHole_3.2mm_M3_ISO7380 -Mounting Hole 3.2mm, no annular, M3, ISO7380 -mounting hole 3.2mm no annular m3 iso7380 -0 -0 -0 -MountingHole -MountingHole_3.2mm_M3_ISO7380_Pad -Mounting Hole 3.2mm, M3, ISO7380 -mounting hole 3.2mm m3 iso7380 -0 -1 -1 -MountingHole -MountingHole_3.2mm_M3_ISO7380_Pad_TopBottom -Mounting Hole 3.2mm, M3, ISO7380 -mounting hole 3.2mm m3 iso7380 -0 -3 -1 -MountingHole -MountingHole_3.2mm_M3_ISO7380_Pad_TopOnly -Mounting Hole 3.2mm, M3, ISO7380 -mounting hole 3.2mm m3 iso7380 -0 -2 -1 -MountingHole -MountingHole_3.2mm_M3_ISO14580 -Mounting Hole 3.2mm, no annular, M3, ISO14580 -mounting hole 3.2mm no annular m3 iso14580 -0 -0 -0 -MountingHole -MountingHole_3.2mm_M3_ISO14580_Pad -Mounting Hole 3.2mm, M3, ISO14580 -mounting hole 3.2mm m3 iso14580 -0 -1 -1 -MountingHole -MountingHole_3.2mm_M3_ISO14580_Pad_TopBottom -Mounting Hole 3.2mm, M3, ISO14580 -mounting hole 3.2mm m3 iso14580 -0 -3 -1 -MountingHole -MountingHole_3.2mm_M3_ISO14580_Pad_TopOnly -Mounting Hole 3.2mm, M3, ISO14580 -mounting hole 3.2mm m3 iso14580 -0 -2 -1 -MountingHole -MountingHole_3.2mm_M3_Pad -Mounting Hole 3.2mm, M3 -mounting hole 3.2mm m3 -0 -1 -1 -MountingHole -MountingHole_3.2mm_M3_Pad_TopBottom -Mounting Hole 3.2mm, M3 -mounting hole 3.2mm m3 -0 -3 -1 -MountingHole -MountingHole_3.2mm_M3_Pad_TopOnly -Mounting Hole 3.2mm, M3 -mounting hole 3.2mm m3 -0 -2 -1 -MountingHole -MountingHole_3.2mm_M3_Pad_Via -Mounting Hole 3.2mm, M3 -mounting hole 3.2mm m3 -0 -9 -1 -MountingHole -MountingHole_3.5mm -Mounting Hole 3.5mm, no annular -mounting hole 3.5mm no annular -0 -0 -0 -MountingHole -MountingHole_3.5mm_Pad -Mounting Hole 3.5mm -mounting hole 3.5mm -0 -1 -1 -MountingHole -MountingHole_3.5mm_Pad_TopBottom -Mounting Hole 3.5mm -mounting hole 3.5mm -0 -3 -1 -MountingHole -MountingHole_3.5mm_Pad_TopOnly -Mounting Hole 3.5mm -mounting hole 3.5mm -0 -2 -1 -MountingHole -MountingHole_3.5mm_Pad_Via -Mounting Hole 3.5mm -mounting hole 3.5mm -0 -9 -1 -MountingHole -MountingHole_3.7mm -Mounting Hole 3.7mm, no annular -mounting hole 3.7mm no annular -0 -0 -0 -MountingHole -MountingHole_3.7mm_Pad -Mounting Hole 3.7mm -mounting hole 3.7mm -0 -1 -1 -MountingHole -MountingHole_3.7mm_Pad_TopBottom -Mounting Hole 3.7mm -mounting hole 3.7mm -0 -3 -1 -MountingHole -MountingHole_3.7mm_Pad_TopOnly -Mounting Hole 3.7mm -mounting hole 3.7mm -0 -2 -1 -MountingHole -MountingHole_3.7mm_Pad_Via -Mounting Hole 3.7mm -mounting hole 3.7mm -0 -9 -1 -MountingHole -MountingHole_3mm -Mounting Hole 3mm, no annular -mounting hole 3mm no annular -0 -0 -0 -MountingHole -MountingHole_3mm_Pad -Mounting Hole 3mm -mounting hole 3mm -0 -1 -1 -MountingHole -MountingHole_3mm_Pad_TopBottom -Mounting Hole 3mm -mounting hole 3mm -0 -3 -1 -MountingHole -MountingHole_3mm_Pad_TopOnly -Mounting Hole 3mm -mounting hole 3mm -0 -2 -1 -MountingHole -MountingHole_3mm_Pad_Via -Mounting Hole 3mm -mounting hole 3mm -0 -9 -1 -MountingHole -MountingHole_4.3mm_M4 -Mounting Hole 4.3mm, no annular, M4 -mounting hole 4.3mm no annular m4 -0 -0 -0 -MountingHole -MountingHole_4.3mm_M4_DIN965 -Mounting Hole 4.3mm, no annular, M4, DIN965 -mounting hole 4.3mm no annular m4 din965 -0 -0 -0 -MountingHole -MountingHole_4.3mm_M4_DIN965_Pad -Mounting Hole 4.3mm, M4, DIN965 -mounting hole 4.3mm m4 din965 -0 -1 -1 -MountingHole -MountingHole_4.3mm_M4_DIN965_Pad_TopBottom -Mounting Hole 4.3mm, M4, DIN965 -mounting hole 4.3mm m4 din965 -0 -3 -1 -MountingHole -MountingHole_4.3mm_M4_DIN965_Pad_TopOnly -Mounting Hole 4.3mm, M4, DIN965 -mounting hole 4.3mm m4 din965 -0 -2 -1 -MountingHole -MountingHole_4.3mm_M4_ISO7380 -Mounting Hole 4.3mm, no annular, M4, ISO7380 -mounting hole 4.3mm no annular m4 iso7380 -0 -0 -0 -MountingHole -MountingHole_4.3mm_M4_ISO7380_Pad -Mounting Hole 4.3mm, M4, ISO7380 -mounting hole 4.3mm m4 iso7380 -0 -1 -1 -MountingHole -MountingHole_4.3mm_M4_ISO7380_Pad_TopBottom -Mounting Hole 4.3mm, M4, ISO7380 -mounting hole 4.3mm m4 iso7380 -0 -3 -1 -MountingHole -MountingHole_4.3mm_M4_ISO7380_Pad_TopOnly -Mounting Hole 4.3mm, M4, ISO7380 -mounting hole 4.3mm m4 iso7380 -0 -2 -1 -MountingHole -MountingHole_4.3mm_M4_ISO14580 -Mounting Hole 4.3mm, no annular, M4, ISO14580 -mounting hole 4.3mm no annular m4 iso14580 -0 -0 -0 -MountingHole -MountingHole_4.3mm_M4_ISO14580_Pad -Mounting Hole 4.3mm, M4, ISO14580 -mounting hole 4.3mm m4 iso14580 -0 -1 -1 -MountingHole -MountingHole_4.3mm_M4_ISO14580_Pad_TopBottom -Mounting Hole 4.3mm, M4, ISO14580 -mounting hole 4.3mm m4 iso14580 -0 -3 -1 -MountingHole -MountingHole_4.3mm_M4_ISO14580_Pad_TopOnly -Mounting Hole 4.3mm, M4, ISO14580 -mounting hole 4.3mm m4 iso14580 -0 -2 -1 -MountingHole -MountingHole_4.3mm_M4_Pad -Mounting Hole 4.3mm, M4 -mounting hole 4.3mm m4 -0 -1 -1 -MountingHole -MountingHole_4.3mm_M4_Pad_TopBottom -Mounting Hole 4.3mm, M4 -mounting hole 4.3mm m4 -0 -3 -1 -MountingHole -MountingHole_4.3mm_M4_Pad_TopOnly -Mounting Hole 4.3mm, M4 -mounting hole 4.3mm m4 -0 -2 -1 -MountingHole -MountingHole_4.3mm_M4_Pad_Via -Mounting Hole 4.3mm, M4 -mounting hole 4.3mm m4 -0 -9 -1 -MountingHole -MountingHole_4.3x6.2mm_M4_Pad -Mounting Hole 4.3x6.2mm, M4 -mounting hole 4.3x6.2mm m4 -0 -1 -1 -MountingHole -MountingHole_4.3x6.2mm_M4_Pad_Via -Mounting Hole 4.3x6.2mm, M4 -mounting hole 4.3x6.2mm m4 -0 -17 -1 -MountingHole -MountingHole_4.5mm -Mounting Hole 4.5mm, no annular -mounting hole 4.5mm no annular -0 -0 -0 -MountingHole -MountingHole_4.5mm_Pad -Mounting Hole 4.5mm -mounting hole 4.5mm -0 -1 -1 -MountingHole -MountingHole_4.5mm_Pad_TopBottom -Mounting Hole 4.5mm -mounting hole 4.5mm -0 -3 -1 -MountingHole -MountingHole_4.5mm_Pad_TopOnly -Mounting Hole 4.5mm -mounting hole 4.5mm -0 -2 -1 -MountingHole -MountingHole_4.5mm_Pad_Via -Mounting Hole 4.5mm -mounting hole 4.5mm -0 -9 -1 -MountingHole -MountingHole_4mm -Mounting Hole 4mm, no annular -mounting hole 4mm no annular -0 -0 -0 -MountingHole -MountingHole_4mm_Pad -Mounting Hole 4mm -mounting hole 4mm -0 -1 -1 -MountingHole -MountingHole_4mm_Pad_TopBottom -Mounting Hole 4mm -mounting hole 4mm -0 -3 -1 -MountingHole -MountingHole_4mm_Pad_TopOnly -Mounting Hole 4mm -mounting hole 4mm -0 -2 -1 -MountingHole -MountingHole_4mm_Pad_Via -Mounting Hole 4mm -mounting hole 4mm -0 -9 -1 -MountingHole -MountingHole_5.3mm_M5 -Mounting Hole 5.3mm, no annular, M5 -mounting hole 5.3mm no annular m5 -0 -0 -0 -MountingHole -MountingHole_5.3mm_M5_DIN965 -Mounting Hole 5.3mm, no annular, M5, DIN965 -mounting hole 5.3mm no annular m5 din965 -0 -0 -0 -MountingHole -MountingHole_5.3mm_M5_DIN965_Pad -Mounting Hole 5.3mm, M5, DIN965 -mounting hole 5.3mm m5 din965 -0 -1 -1 -MountingHole -MountingHole_5.3mm_M5_DIN965_Pad_TopBottom -Mounting Hole 5.3mm, M5, DIN965 -mounting hole 5.3mm m5 din965 -0 -3 -1 -MountingHole -MountingHole_5.3mm_M5_DIN965_Pad_TopOnly -Mounting Hole 5.3mm, M5, DIN965 -mounting hole 5.3mm m5 din965 -0 -2 -1 -MountingHole -MountingHole_5.3mm_M5_ISO7380 -Mounting Hole 5.3mm, no annular, M5, ISO7380 -mounting hole 5.3mm no annular m5 iso7380 -0 -0 -0 -MountingHole -MountingHole_5.3mm_M5_ISO7380_Pad -Mounting Hole 5.3mm, M5, ISO7380 -mounting hole 5.3mm m5 iso7380 -0 -1 -1 -MountingHole -MountingHole_5.3mm_M5_ISO7380_Pad_TopBottom -Mounting Hole 5.3mm, M5, ISO7380 -mounting hole 5.3mm m5 iso7380 -0 -3 -1 -MountingHole -MountingHole_5.3mm_M5_ISO7380_Pad_TopOnly -Mounting Hole 5.3mm, M5, ISO7380 -mounting hole 5.3mm m5 iso7380 -0 -2 -1 -MountingHole -MountingHole_5.3mm_M5_ISO14580 -Mounting Hole 5.3mm, no annular, M5, ISO14580 -mounting hole 5.3mm no annular m5 iso14580 -0 -0 -0 -MountingHole -MountingHole_5.3mm_M5_ISO14580_Pad -Mounting Hole 5.3mm, M5, ISO14580 -mounting hole 5.3mm m5 iso14580 -0 -1 -1 -MountingHole -MountingHole_5.3mm_M5_ISO14580_Pad_TopBottom -Mounting Hole 5.3mm, M5, ISO14580 -mounting hole 5.3mm m5 iso14580 -0 -3 -1 -MountingHole -MountingHole_5.3mm_M5_ISO14580_Pad_TopOnly -Mounting Hole 5.3mm, M5, ISO14580 -mounting hole 5.3mm m5 iso14580 -0 -2 -1 -MountingHole -MountingHole_5.3mm_M5_Pad -Mounting Hole 5.3mm, M5 -mounting hole 5.3mm m5 -0 -1 -1 -MountingHole -MountingHole_5.3mm_M5_Pad_TopBottom -Mounting Hole 5.3mm, M5 -mounting hole 5.3mm m5 -0 -3 -1 -MountingHole -MountingHole_5.3mm_M5_Pad_TopOnly -Mounting Hole 5.3mm, M5 -mounting hole 5.3mm m5 -0 -2 -1 -MountingHole -MountingHole_5.3mm_M5_Pad_Via -Mounting Hole 5.3mm, M5 -mounting hole 5.3mm m5 -0 -9 -1 -MountingHole -MountingHole_5.5mm -Mounting Hole 5.5mm, no annular -mounting hole 5.5mm no annular -0 -0 -0 -MountingHole -MountingHole_5.5mm_Pad -Mounting Hole 5.5mm -mounting hole 5.5mm -0 -1 -1 -MountingHole -MountingHole_5.5mm_Pad_TopBottom -Mounting Hole 5.5mm -mounting hole 5.5mm -0 -3 -1 -MountingHole -MountingHole_5.5mm_Pad_TopOnly -Mounting Hole 5.5mm -mounting hole 5.5mm -0 -2 -1 -MountingHole -MountingHole_5.5mm_Pad_Via -Mounting Hole 5.5mm -mounting hole 5.5mm -0 -9 -1 -MountingHole -MountingHole_5mm -Mounting Hole 5mm, no annular -mounting hole 5mm no annular -0 -0 -0 -MountingHole -MountingHole_5mm_Pad -Mounting Hole 5mm -mounting hole 5mm -0 -1 -1 -MountingHole -MountingHole_5mm_Pad_TopBottom -Mounting Hole 5mm -mounting hole 5mm -0 -3 -1 -MountingHole -MountingHole_5mm_Pad_TopOnly -Mounting Hole 5mm -mounting hole 5mm -0 -2 -1 -MountingHole -MountingHole_5mm_Pad_Via -Mounting Hole 5mm -mounting hole 5mm -0 -9 -1 -MountingHole -MountingHole_6.4mm_M6 -Mounting Hole 6.4mm, no annular, M6 -mounting hole 6.4mm no annular m6 -0 -0 -0 -MountingHole -MountingHole_6.4mm_M6_DIN965 -Mounting Hole 6.4mm, no annular, M6, DIN965 -mounting hole 6.4mm no annular m6 din965 -0 -0 -0 -MountingHole -MountingHole_6.4mm_M6_DIN965_Pad -Mounting Hole 6.4mm, M6, DIN965 -mounting hole 6.4mm m6 din965 -0 -1 -1 -MountingHole -MountingHole_6.4mm_M6_DIN965_Pad_TopBottom -Mounting Hole 6.4mm, M6, DIN965 -mounting hole 6.4mm m6 din965 -0 -3 -1 -MountingHole -MountingHole_6.4mm_M6_DIN965_Pad_TopOnly -Mounting Hole 6.4mm, M6, DIN965 -mounting hole 6.4mm m6 din965 -0 -2 -1 -MountingHole -MountingHole_6.4mm_M6_ISO7380 -Mounting Hole 6.4mm, no annular, M6, ISO7380 -mounting hole 6.4mm no annular m6 iso7380 -0 -0 -0 -MountingHole -MountingHole_6.4mm_M6_ISO7380_Pad -Mounting Hole 6.4mm, M6, ISO7380 -mounting hole 6.4mm m6 iso7380 -0 -1 -1 -MountingHole -MountingHole_6.4mm_M6_ISO7380_Pad_TopBottom -Mounting Hole 6.4mm, M6, ISO7380 -mounting hole 6.4mm m6 iso7380 -0 -3 -1 -MountingHole -MountingHole_6.4mm_M6_ISO7380_Pad_TopOnly -Mounting Hole 6.4mm, M6, ISO7380 -mounting hole 6.4mm m6 iso7380 -0 -2 -1 -MountingHole -MountingHole_6.4mm_M6_ISO14580 -Mounting Hole 6.4mm, no annular, M6, ISO14580 -mounting hole 6.4mm no annular m6 iso14580 -0 -0 -0 -MountingHole -MountingHole_6.4mm_M6_ISO14580_Pad -Mounting Hole 6.4mm, M6, ISO14580 -mounting hole 6.4mm m6 iso14580 -0 -1 -1 -MountingHole -MountingHole_6.4mm_M6_ISO14580_Pad_TopBottom -Mounting Hole 6.4mm, M6, ISO14580 -mounting hole 6.4mm m6 iso14580 -0 -3 -1 -MountingHole -MountingHole_6.4mm_M6_ISO14580_Pad_TopOnly -Mounting Hole 6.4mm, M6, ISO14580 -mounting hole 6.4mm m6 iso14580 -0 -2 -1 -MountingHole -MountingHole_6.4mm_M6_Pad -Mounting Hole 6.4mm, M6 -mounting hole 6.4mm m6 -0 -1 -1 -MountingHole -MountingHole_6.4mm_M6_Pad_TopBottom -Mounting Hole 6.4mm, M6 -mounting hole 6.4mm m6 -0 -3 -1 -MountingHole -MountingHole_6.4mm_M6_Pad_TopOnly -Mounting Hole 6.4mm, M6 -mounting hole 6.4mm m6 -0 -2 -1 -MountingHole -MountingHole_6.4mm_M6_Pad_Via -Mounting Hole 6.4mm, M6 -mounting hole 6.4mm m6 -0 -9 -1 -MountingHole -MountingHole_6.5mm -Mounting Hole 6.5mm, no annular -mounting hole 6.5mm no annular -0 -0 -0 -MountingHole -MountingHole_6.5mm_Pad -Mounting Hole 6.5mm -mounting hole 6.5mm -0 -1 -1 -MountingHole -MountingHole_6.5mm_Pad_TopBottom -Mounting Hole 6.5mm -mounting hole 6.5mm -0 -3 -1 -MountingHole -MountingHole_6.5mm_Pad_TopOnly -Mounting Hole 6.5mm -mounting hole 6.5mm -0 -2 -1 -MountingHole -MountingHole_6.5mm_Pad_Via -Mounting Hole 6.5mm -mounting hole 6.5mm -0 -9 -1 -MountingHole -MountingHole_6mm -Mounting Hole 6mm, no annular -mounting hole 6mm no annular -0 -0 -0 -MountingHole -MountingHole_6mm_Pad -Mounting Hole 6mm -mounting hole 6mm -0 -1 -1 -MountingHole -MountingHole_6mm_Pad_TopBottom -Mounting Hole 6mm -mounting hole 6mm -0 -3 -1 -MountingHole -MountingHole_6mm_Pad_TopOnly -Mounting Hole 6mm -mounting hole 6mm -0 -2 -1 -MountingHole -MountingHole_6mm_Pad_Via -Mounting Hole 6mm -mounting hole 6mm -0 -9 -1 -MountingHole -MountingHole_8.4mm_M8 -Mounting Hole 8.4mm, no annular, M8 -mounting hole 8.4mm no annular m8 -0 -0 -0 -MountingHole -MountingHole_8.4mm_M8_Pad -Mounting Hole 8.4mm, M8 -mounting hole 8.4mm m8 -0 -1 -1 -MountingHole -MountingHole_8.4mm_M8_Pad_TopBottom -Mounting Hole 8.4mm, M8 -mounting hole 8.4mm m8 -0 -3 -1 -MountingHole -MountingHole_8.4mm_M8_Pad_TopOnly -Mounting Hole 8.4mm, M8 -mounting hole 8.4mm m8 -0 -2 -1 -MountingHole -MountingHole_8.4mm_M8_Pad_Via -Mounting Hole 8.4mm, M8 -mounting hole 8.4mm m8 -0 -9 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSE-ExternalM3_H5mm_9771050360 -Mounting Hardware, external M3, height 5, Wuerth electronics 9771050360 (https://katalog.we-online.com/em/datasheet/9771050360.pdf), generated with kicad-footprint-generator -Mounting M3 9771050360 -0 -6 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSE-ExternalM3_H6mm_9771060360 -Mounting Hardware, external M3, height 6, Wuerth electronics 9771060360 (https://katalog.we-online.com/em/datasheet/9771060360.pdf), generated with kicad-footprint-generator -Mounting M3 9771060360 -0 -6 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSE-ExternalM3_H7mm_9771070360 -Mounting Hardware, external M3, height 7, Wuerth electronics 9771070360 (https://katalog.we-online.com/em/datasheet/9771070360.pdf), generated with kicad-footprint-generator -Mounting M3 9771070360 -0 -6 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSE-ExternalM3_H8mm_9771080360 -Mounting Hardware, external M3, height 8, Wuerth electronics 9771080360 (https://katalog.we-online.com/em/datasheet/9771080360.pdf), generated with kicad-footprint-generator -Mounting M3 9771080360 -0 -6 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSE-ExternalM3_H9mm_9771090360 -Mounting Hardware, external M3, height 9, Wuerth electronics 9771090360 (https://katalog.we-online.com/em/datasheet/9771090360.pdf), generated with kicad-footprint-generator -Mounting M3 9771090360 -0 -6 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSE-ExternalM3_H10mm_9771100360 -Mounting Hardware, external M3, height 10, Wuerth electronics 9771100360 (https://katalog.we-online.com/em/datasheet/9771100360.pdf), generated with kicad-footprint-generator -Mounting M3 9771100360 -0 -6 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSE-ExternalM3_H11mm_9771110360 -Mounting Hardware, external M3, height 11, Wuerth electronics 9771110360 (https://katalog.we-online.com/em/datasheet/9771110360.pdf), generated with kicad-footprint-generator -Mounting M3 9771110360 -0 -6 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSE-ExternalM3_H12mm_9771120360 -Mounting Hardware, external M3, height 12, Wuerth electronics 9771120360 (https://katalog.we-online.com/em/datasheet/9771120360.pdf), generated with kicad-footprint-generator -Mounting M3 9771120360 -0 -6 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSE-ExternalM3_H13mm_9771130360 -Mounting Hardware, external M3, height 13, Wuerth electronics 9771130360 (https://katalog.we-online.com/em/datasheet/9771130360.pdf), generated with kicad-footprint-generator -Mounting M3 9771130360 -0 -6 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSE-ExternalM3_H14mm_9771140360 -Mounting Hardware, external M3, height 14, Wuerth electronics 9771140360 (https://katalog.we-online.com/em/datasheet/9771140360.pdf), generated with kicad-footprint-generator -Mounting M3 9771140360 -0 -6 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSE-ExternalM3_H15mm_9771150360 -Mounting Hardware, external M3, height 15, Wuerth electronics 9771150360 (https://katalog.we-online.com/em/datasheet/9771150360.pdf), generated with kicad-footprint-generator -Mounting M3 9771150360 -0 -6 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSI-4.5mm_H1mm_9774010482 -Mounting Hardware, inside through hole 4.5mm, height 1, Wuerth electronics 9774010482 (https://katalog.we-online.de/em/datasheet/9774010482.pdf), generated with kicad-footprint-generator -Mounting 4.5mm 9774010482 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSI-4.5mm_H2mm_9774020482 -Mounting Hardware, inside through hole 4.5mm, height 2, Wuerth electronics 9774020482 (https://katalog.we-online.de/em/datasheet/9774020482.pdf), generated with kicad-footprint-generator -Mounting 4.5mm 9774020482 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSI-4.5mm_H3mm_9774030482 -Mounting Hardware, inside through hole 4.5mm, height 3, Wuerth electronics 9774030482 (https://katalog.we-online.de/em/datasheet/9774030482.pdf), generated with kicad-footprint-generator -Mounting 4.5mm 9774030482 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSI-4.5mm_H4mm_9774040482 -Mounting Hardware, inside through hole 4.5mm, height 4, Wuerth electronics 9774040482 (https://katalog.we-online.de/em/datasheet/9774040482.pdf), generated with kicad-footprint-generator -Mounting 4.5mm 9774040482 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSI-4.5mm_H5mm_9774050482 -Mounting Hardware, inside through hole 4.5mm, height 5, Wuerth electronics 9774050482 (https://katalog.we-online.de/em/datasheet/9774050482.pdf), generated with kicad-footprint-generator -Mounting 4.5mm 9774050482 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSI-4.5mm_H6mm_9774060482 -Mounting Hardware, inside through hole 4.5mm, height 6, Wuerth electronics 9774060482 (https://katalog.we-online.de/em/datasheet/9774060482.pdf), generated with kicad-footprint-generator -Mounting 4.5mm 9774060482 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSI-4.5mm_H7mm_9774070482 -Mounting Hardware, inside through hole 4.5mm, height 7, Wuerth electronics 9774070482 (https://katalog.we-online.de/em/datasheet/9774070482.pdf), generated with kicad-footprint-generator -Mounting 4.5mm 9774070482 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSI-4.5mm_H8mm_9774080482 -Mounting Hardware, inside through hole 4.5mm, height 8, Wuerth electronics 9774080482 (https://katalog.we-online.de/em/datasheet/9774080482.pdf), generated with kicad-footprint-generator -Mounting 4.5mm 9774080482 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSI-4.5mm_H9mm_9774090482 -Mounting Hardware, inside through hole 4.5mm, height 9, Wuerth electronics 9774090482 (https://katalog.we-online.de/em/datasheet/9774090482.pdf), generated with kicad-footprint-generator -Mounting 4.5mm 9774090482 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSI-4.5mm_H10mm_9774100482 -Mounting Hardware, inside through hole 4.5mm, height 10, Wuerth electronics 9774100482 (https://katalog.we-online.de/em/datasheet/9774100482.pdf), generated with kicad-footprint-generator -Mounting 4.5mm 9774100482 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSI-M1.6_H1.5mm_9774015633 -Mounting Hardware, inside through hole M1.6, height 1.5, Wuerth electronics 9774015633 (https://katalog.we-online.com/em/datasheet/9774015633.pdf), generated with kicad-footprint-generator -Mounting M1.6 9774015633 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSI-M1.6_H1mm_9774010633 -Mounting Hardware, inside through hole M1.6, height 1, Wuerth electronics 9774010633 (https://katalog.we-online.com/em/datasheet/9774010633.pdf), generated with kicad-footprint-generator -Mounting M1.6 9774010633 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSI-M1.6_H2.5mm_9774025633 -Mounting Hardware, inside through hole M1.6, height 2.5, Wuerth electronics 9774025633 (https://katalog.we-online.com/em/datasheet/9774025633.pdf), generated with kicad-footprint-generator -Mounting M1.6 9774025633 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSI-M1.6_H2.5mm_ThreadDepth1.5mm_97730256332 -Mounting Hardware, inside blind hole M1.6, height 2.5, Wuerth electronics 97730256332 (https://katalog.we-online.com/em/datasheet/97730256332.pdf), generated with kicad-footprint-generator -Mounting M1.6 97730256332 -0 -6 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSI-M1.6_H2.5mm_ThreadDepth1.5mm_NoNPTH_97730256330 -Mounting Hardware, inside blind hole M1.6, height 2.5, Wuerth electronics 97730256330 (https://katalog.we-online.com/em/datasheet/97730256330R.pdf), generated with kicad-footprint-generator -Mounting M1.6 97730256330 -0 -5 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSI-M1.6_H2mm_9774020633 -Mounting Hardware, inside through hole M1.6, height 2, Wuerth electronics 9774020633 (https://katalog.we-online.com/em/datasheet/9774020633.pdf), generated with kicad-footprint-generator -Mounting M1.6 9774020633 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSI-M1.6_H3.5mm_ThreadDepth2mm_97730356332 -Mounting Hardware, inside blind hole M1.6, height 3.5, Wuerth electronics 97730356332 (https://katalog.we-online.com/em/datasheet/97730356332.pdf), generated with kicad-footprint-generator -Mounting M1.6 97730356332 -0 -6 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSI-M1.6_H3.5mm_ThreadDepth2mm_97730356334 -Mounting Hardware, inside blind hole M1.6, height 3.5, Wuerth electronics 97730356334 (https://katalog.we-online.com/em/datasheet/97730356334.pdf), generated with kicad-footprint-generator -Mounting M1.6 97730356334 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSI-M1.6_H3.5mm_ThreadDepth2mm_NoNPTH_97730356330 -Mounting Hardware, inside blind hole M1.6, height 3.5, Wuerth electronics 97730356330 (https://katalog.we-online.com/em/datasheet/97730356330.pdf), generated with kicad-footprint-generator -Mounting M1.6 97730356330 -0 -5 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSI-M1.6_H3mm_9774030633 -Mounting Hardware, inside through hole M1.6, height 3, Wuerth electronics 9774030633 (https://katalog.we-online.com/em/datasheet/9774030633.pdf), generated with kicad-footprint-generator -Mounting M1.6 9774030633 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSI-M1.6_H3mm_ThreadDepth1.8mm_97730306332 -Mounting Hardware, inside blind hole M1.6, height 3, Wuerth electronics 97730306332 (https://katalog.we-online.com/em/datasheet/97730306332.pdf), generated with kicad-footprint-generator -Mounting M1.6 97730306332 -0 -6 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSI-M1.6_H3mm_ThreadDepth1.8mm_NoNPTH_97730306330 -Mounting Hardware, inside blind hole M1.6, height 3, Wuerth electronics 97730306330 (https://katalog.we-online.com/em/datasheet/97730306330.pdf), generated with kicad-footprint-generator -Mounting M1.6 97730306330 -0 -5 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSI-M1.6_H4.5mm_ThreadDepth2mm_97730456332 -Mounting Hardware, inside blind hole M1.6, height 4.5, Wuerth electronics 97730456332 (https://katalog.we-online.com/em/datasheet/97730456332.pdf), generated with kicad-footprint-generator -Mounting M1.6 97730456332 -0 -6 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSI-M1.6_H4.5mm_ThreadDepth2mm_97730456334 -Mounting Hardware, inside blind hole M1.6, height 4.5, Wuerth electronics 97730456334 (https://katalog.we-online.com/em/datasheet/97730456334.pdf), generated with kicad-footprint-generator -Mounting M1.6 97730456334 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSI-M1.6_H4.5mm_ThreadDepth2mm_NoNPTH_97730456330 -Mounting Hardware, inside blind hole M1.6, height 4.5, Wuerth electronics 97730456330 (https://katalog.we-online.com/em/datasheet/97730456330.pdf), generated with kicad-footprint-generator -Mounting M1.6 97730456330 -0 -5 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSI-M1.6_H4mm_ThreadDepth2mm_97730406332 -Mounting Hardware, inside blind hole M1.6, height 4, Wuerth electronics 97730406332 (https://katalog.we-online.com/em/datasheet/97730406332.pdf), generated with kicad-footprint-generator -Mounting M1.6 97730406332 -0 -6 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSI-M1.6_H4mm_ThreadDepth2mm_97730406334 -Mounting Hardware, inside blind hole M1.6, height 4, Wuerth electronics 97730406334 (https://katalog.we-online.com/em/datasheet/97730406334.pdf), generated with kicad-footprint-generator -Mounting M1.6 97730406334 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSI-M1.6_H4mm_ThreadDepth2mm_NoNPTH_97730406330 -Mounting Hardware, inside blind hole M1.6, height 4, Wuerth electronics 97730406330 (https://katalog.we-online.com/em/datasheet/97730406330.pdf), generated with kicad-footprint-generator -Mounting M1.6 97730406330 -0 -5 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSI-M1.6_H5mm_ThreadDepth2mm_97730506332 -Mounting Hardware, inside blind hole M1.6, height 5, Wuerth electronics 97730506332 (https://katalog.we-online.com/em/datasheet/97730506332.pdf), generated with kicad-footprint-generator -Mounting M1.6 97730506332 -0 -6 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSI-M1.6_H5mm_ThreadDepth2mm_97730506334 -Mounting Hardware, inside blind hole M1.6, height 5, Wuerth electronics 97730506334 (https://katalog.we-online.com/em/datasheet/97730506334.pdf), generated with kicad-footprint-generator -Mounting M1.6 97730506334 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSI-M1.6_H5mm_ThreadDepth2mm_NoNPTH_97730506330 -Mounting Hardware, inside blind hole M1.6, height 5, Wuerth electronics 97730506330 (https://katalog.we-online.com/em/datasheet/97730506330.pdf), generated with kicad-footprint-generator -Mounting M1.6 97730506330 -0 -5 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSI-M1.6_H6mm_ThreadDepth2mm_97730606332 -Mounting Hardware, inside blind hole M1.6, height 6, Wuerth electronics 97730606332 (https://katalog.we-online.com/em/datasheet/97730606332.pdf), generated with kicad-footprint-generator -Mounting M1.6 97730606332 -0 -6 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSI-M1.6_H6mm_ThreadDepth2mm_97730606334 -Mounting Hardware, inside blind hole M1.6, height 6, Wuerth electronics 97730606334 (https://katalog.we-online.com/em/datasheet/97730606334.pdf), generated with kicad-footprint-generator -Mounting M1.6 97730606334 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSI-M1.6_H6mm_ThreadDepth2mm_NoNPTH_97730606330 -Mounting Hardware, inside blind hole M1.6, height 6, Wuerth electronics 97730606330 (https://katalog.we-online.com/em/datasheet/97730606330.pdf), generated with kicad-footprint-generator -Mounting M1.6 97730606330 -0 -5 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSI-M2_H1.5mm_9774015243 -Mounting Hardware, inside through hole M2, height 1.5, Wuerth electronics 9774015243 (https://katalog.we-online.de/em/datasheet/9774015243.pdf), generated with kicad-footprint-generator -Mounting M2 9774015243 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSI-M2_H1mm_9774010243 -Mounting Hardware, inside through hole M2, height 1, Wuerth electronics 9774010243 (https://katalog.we-online.de/em/datasheet/9774010243.pdf), generated with kicad-footprint-generator -Mounting M2 9774010243 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSI-M2_H2.5mm_9774025243 -Mounting Hardware, inside through hole M2, height 2.5, Wuerth electronics 9774025243 (https://katalog.we-online.de/em/datasheet/9774025243.pdf), generated with kicad-footprint-generator -Mounting M2 9774025243 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSI-M2_H2mm_9774020243 -Mounting Hardware, inside through hole M2, height 2, Wuerth electronics 9774020243 (https://katalog.we-online.de/em/datasheet/9774020243.pdf), generated with kicad-footprint-generator -Mounting M2 9774020243 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSI-M2_H3.5mm_9774035243 -Mounting Hardware, inside through hole M2, height 3.5, Wuerth electronics 9774035243 (https://katalog.we-online.de/em/datasheet/9774035243.pdf), generated with kicad-footprint-generator -Mounting M2 9774035243 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSI-M2_H3mm_9774030243 -Mounting Hardware, inside through hole M2, height 3, Wuerth electronics 9774030243 (https://katalog.we-online.de/em/datasheet/9774030243.pdf), generated with kicad-footprint-generator -Mounting M2 9774030243 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSI-M2_H4.5mm_9774045243 -Mounting Hardware, inside through hole M2, height 4.5, Wuerth electronics 9774045243 (https://katalog.we-online.de/em/datasheet/9774045243.pdf), generated with kicad-footprint-generator -Mounting M2 9774045243 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSI-M2_H4mm_9774040243 -Mounting Hardware, inside through hole M2, height 4, Wuerth electronics 9774040243 (https://katalog.we-online.de/em/datasheet/9774040243.pdf), generated with kicad-footprint-generator -Mounting M2 9774040243 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSI-M2_H5mm_9774050243 -Mounting Hardware, inside through hole M2, height 5, Wuerth electronics 9774050243 (https://katalog.we-online.de/em/datasheet/9774050243.pdf), generated with kicad-footprint-generator -Mounting M2 9774050243 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSI-M2_H6mm_9774060243 -Mounting Hardware, inside through hole M2, height 6, Wuerth electronics 9774060243 (https://katalog.we-online.de/em/datasheet/9774060243.pdf), generated with kicad-footprint-generator -Mounting M2 9774060243 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSI-M2_H7mm_9774070243 -Mounting Hardware, inside through hole M2, height 7, Wuerth electronics 9774070243 (https://katalog.we-online.de/em/datasheet/9774070243.pdf), generated with kicad-footprint-generator -Mounting M2 9774070243 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSI-M2_H8mm_9774080243 -Mounting Hardware, inside through hole M2, height 8, Wuerth electronics 9774080243 (https://katalog.we-online.de/em/datasheet/9774080243.pdf), generated with kicad-footprint-generator -Mounting M2 9774080243 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSI-M3_H1.5mm_9774015360 -Mounting Hardware, inside through hole M3, height 1.5, Wuerth electronics 9774015360 (https://katalog.we-online.de/em/datasheet/9774015360.pdf), generated with kicad-footprint-generator -Mounting M3 9774015360 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSI-M3_H1mm_9774010360 -Mounting Hardware, inside through hole M3, height 1, Wuerth electronics 9774010360 (https://katalog.we-online.de/em/datasheet/9774010360.pdf), generated with kicad-footprint-generator -Mounting M3 9774010360 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSI-M3_H2.5mm_9774025360 -Mounting Hardware, inside through hole M3, height 2.5, Wuerth electronics 9774025360 (https://katalog.we-online.de/em/datasheet/9774025360.pdf), generated with kicad-footprint-generator -Mounting M3 9774025360 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSI-M3_H2mm_9774020360 -Mounting Hardware, inside through hole M3, height 2, Wuerth electronics 9774020360 (https://katalog.we-online.de/em/datasheet/9774020360.pdf), generated with kicad-footprint-generator -Mounting M3 9774020360 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSI-M3_H3mm_9774030360 -Mounting Hardware, inside through hole M3, height 3, Wuerth electronics 9774030360 (https://katalog.we-online.de/em/datasheet/9774030360R.pdf), generated with kicad-footprint-generator -Mounting M3 9774030360 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSI-M3_H4mm_9774040360 -Mounting Hardware, inside through hole M3, height 4, Wuerth electronics 9774040360 (https://katalog.we-online.de/em/datasheet/9774040360.pdf), generated with kicad-footprint-generator -Mounting M3 9774040360 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSI-M3_H5mm_9774050360 -Mounting Hardware, inside through hole M3, height 5, Wuerth electronics 9774050360 (https://katalog.we-online.de/em/datasheet/9774050360.pdf), generated with kicad-footprint-generator -Mounting M3 9774050360 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSI-M3_H6mm_9774060360 -Mounting Hardware, inside through hole M3, height 6, Wuerth electronics 9774060360 (https://katalog.we-online.de/em/datasheet/9774060360.pdf), generated with kicad-footprint-generator -Mounting M3 9774060360 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSI-M3_H7mm_9774070360 -Mounting Hardware, inside through hole M3, height 7, Wuerth electronics 9774070360 (https://katalog.we-online.de/em/datasheet/9774070360.pdf), generated with kicad-footprint-generator -Mounting M3 9774070360 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSI-M3_H8mm_9774080360 -Mounting Hardware, inside through hole M3, height 8, Wuerth electronics 9774080360 (https://katalog.we-online.de/em/datasheet/9774080360.pdf), generated with kicad-footprint-generator -Mounting M3 9774080360 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSI-M3_H9mm_9774090360 -Mounting Hardware, inside through hole M3, height 9, Wuerth electronics 9774090360 (https://katalog.we-online.de/em/datasheet/9774090360.pdf), generated with kicad-footprint-generator -Mounting M3 9774090360 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSI-M3_H10mm_9774100360 -Mounting Hardware, inside through hole M3, height 10, Wuerth electronics 9774100360 (https://katalog.we-online.de/em/datasheet/9774100360.pdf), generated with kicad-footprint-generator -Mounting M3 9774100360 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSI-M3_H11mm_9774110360 -Mounting Hardware, inside through hole M3, height 11, Wuerth electronics 9774110360 (https://katalog.we-online.de/em/datasheet/9774110360.pdf), generated with kicad-footprint-generator -Mounting M3 9774110360 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSI-M3_H12mm_9774120360 -Mounting Hardware, inside through hole M3, height 12, Wuerth electronics 9774120360 (https://katalog.we-online.de/em/datasheet/9774120360.pdf), generated with kicad-footprint-generator -Mounting M3 9774120360 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSI-M3_H13mm_9774130360 -Mounting Hardware, inside through hole M3, height 13, Wuerth electronics 9774130360 (https://katalog.we-online.de/em/datasheet/9774130360.pdf), generated with kicad-footprint-generator -Mounting M3 9774130360 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSI-M3_H14mm_9774140360 -Mounting Hardware, inside through hole M3, height 14, Wuerth electronics 9774140360 (https://katalog.we-online.de/em/datasheet/9774140360.pdf), generated with kicad-footprint-generator -Mounting M3 9774140360 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSI-M3_H15mm_9774150360 -Mounting Hardware, inside through hole M3, height 15, Wuerth electronics 9774150360 (https://katalog.we-online.de/em/datasheet/9774150360.pdf), generated with kicad-footprint-generator -Mounting M3 9774150360 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSR-3.2mm_H2.6mm_ReverseMount_9775026960 -Mounting Hardware, inside through hole 3.2mm, height 2.6, Wuerth electronics 9775026960 (https://katalog.we-online.com/em/datasheet/9775026960R.pdf), generated with kicad-footprint-generator -Mounting 3.2mm 9775026960 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSR-3.2mm_H3.1mm_ReverseMount_9775031960 -Mounting Hardware, inside through hole 3.2mm, height 3.1, Wuerth electronics 9775031960 (https://katalog.we-online.com/em/datasheet/9775031960.pdf), generated with kicad-footprint-generator -Mounting 3.2mm 9775031960 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSR-3.2mm_H3.6mm_ReverseMount_9775036960 -Mounting Hardware, inside through hole 3.2mm, height 3.6, Wuerth electronics 9775036960 (https://katalog.we-online.com/em/datasheet/9775036960.pdf), generated with kicad-footprint-generator -Mounting 3.2mm 9775036960 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSR-3.2mm_H4.1mm_ReverseMount_9775041960 -Mounting Hardware, inside through hole 3.2mm, height 4.1, Wuerth electronics 9775041960 (https://katalog.we-online.com/em/datasheet/9775041960.pdf), generated with kicad-footprint-generator -Mounting 3.2mm 9775041960 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSR-3.2mm_H4.6mm_ReverseMount_9775046960 -Mounting Hardware, inside through hole 3.2mm, height 4.6, Wuerth electronics 9775046960 (https://katalog.we-online.com/em/datasheet/9775046960.pdf), generated with kicad-footprint-generator -Mounting 3.2mm 9775046960 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSR-3.2mm_H5.1mm_ReverseMount_9775051960 -Mounting Hardware, inside through hole 3.2mm, height 5.1, Wuerth electronics 9775051960 (https://katalog.we-online.com/em/datasheet/9775051960.pdf), generated with kicad-footprint-generator -Mounting 3.2mm 9775051960 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSR-3.2mm_H5.6mm_ReverseMount_9775056960 -Mounting Hardware, inside through hole 3.2mm, height 5.6, Wuerth electronics 9775056960 (https://katalog.we-online.com/em/datasheet/9775056960.pdf), generated with kicad-footprint-generator -Mounting 3.2mm 9775056960 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSR-3.2mm_H6.6mm_ReverseMount_9775066960 -Mounting Hardware, inside through hole 3.2mm, height 6.6, Wuerth electronics 9775066960 (https://katalog.we-online.com/em/datasheet/9775066960.pdf), generated with kicad-footprint-generator -Mounting 3.2mm 9775066960 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSR-3.2mm_H7.6mm_ReverseMount_9775076960 -Mounting Hardware, inside through hole 3.2mm, height 7.6, Wuerth electronics 9775076960 (https://katalog.we-online.com/em/datasheet/9775076960.pdf), generated with kicad-footprint-generator -Mounting 3.2mm 9775076960 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSR-3.2mm_H8.6mm_ReverseMount_9775086960 -Mounting Hardware, inside through hole 3.2mm, height 8.6, Wuerth electronics 9775086960 (https://katalog.we-online.com/em/datasheet/9775086960.pdf), generated with kicad-footprint-generator -Mounting 3.2mm 9775086960 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSR-3.2mm_H9.6mm_ReverseMount_9775096960 -Mounting Hardware, inside through hole 3.2mm, height 9.6, Wuerth electronics 9775096960 (https://katalog.we-online.com/em/datasheet/9775096960.pdf), generated with kicad-footprint-generator -Mounting 3.2mm 9775096960 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSR-3.2mm_H10.6mm_ReverseMount_9775106960 -Mounting Hardware, inside through hole 3.2mm, height 10.6, Wuerth electronics 9775106960 (https://katalog.we-online.com/em/datasheet/9775106960.pdf), generated with kicad-footprint-generator -Mounting 3.2mm 9775106960 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSR-3.2mm_H11.6mm_ReverseMount_9775116960 -Mounting Hardware, inside through hole 3.2mm, height 11.6, Wuerth electronics 9775116960 (https://katalog.we-online.com/em/datasheet/9775116960.pdf), generated with kicad-footprint-generator -Mounting 3.2mm 9775116960 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSR-M3_H2.6mm_ReverseMount_9775026360 -Mounting Hardware, inside through hole M3, height 2.6, Wuerth electronics 9775026360 (https://katalog.we-online.com/em/datasheet/9775026360.pdf), generated with kicad-footprint-generator -Mounting M3 9775026360 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSR-M3_H3.1mm_ReverseMount_9775031360 -Mounting Hardware, inside through hole M3, height 3.1, Wuerth electronics 9775031360 (https://katalog.we-online.com/em/datasheet/9775031360.pdf), generated with kicad-footprint-generator -Mounting M3 9775031360 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSR-M3_H3.6mm_ReverseMount_9775036360 -Mounting Hardware, inside through hole M3, height 3.6, Wuerth electronics 9775036360 (https://katalog.we-online.com/em/datasheet/9775036360.pdf), generated with kicad-footprint-generator -Mounting M3 9775036360 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSR-M3_H4.1mm_ReverseMount_9775041360 -Mounting Hardware, inside through hole M3, height 4.1, Wuerth electronics 9775041360 (https://katalog.we-online.com/em/datasheet/9775041360.pdf), generated with kicad-footprint-generator -Mounting M3 9775041360 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSR-M3_H4.6mm_ReverseMount_9775046360 -Mounting Hardware, inside through hole M3, height 4.6, Wuerth electronics 9775046360 (https://katalog.we-online.com/em/datasheet/9775046360.pdf), generated with kicad-footprint-generator -Mounting M3 9775046360 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSR-M3_H5.1mm_ReverseMount_9775051360 -Mounting Hardware, inside through hole M3, height 5.1, Wuerth electronics 9775051360 (https://katalog.we-online.com/em/datasheet/9775051360.pdf), generated with kicad-footprint-generator -Mounting M3 9775051360 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSR-M3_H5.6mm_ReverseMount_9775056360 -Mounting Hardware, inside through hole M3, height 5.6, Wuerth electronics 9775056360 (https://katalog.we-online.com/em/datasheet/9775056360.pdf), generated with kicad-footprint-generator -Mounting M3 9775056360 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSR-M3_H6.6mm_ReverseMount_9775066360 -Mounting Hardware, inside through hole M3, height 6.6, Wuerth electronics 9775066360 (https://katalog.we-online.com/em/datasheet/9775066360.pdf), generated with kicad-footprint-generator -Mounting M3 9775066360 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSR-M3_H7.6mm_ReverseMount_9775076360 -Mounting Hardware, inside through hole M3, height 7.6, Wuerth electronics 9775076360 (https://katalog.we-online.com/em/datasheet/9775076360.pdf), generated with kicad-footprint-generator -Mounting M3 9775076360 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSR-M3_H8.6mm_ReverseMount_9775086360 -Mounting Hardware, inside through hole M3, height 8.6, Wuerth electronics 9775086360 (https://katalog.we-online.com/em/datasheet/9775086360.pdf), generated with kicad-footprint-generator -Mounting M3 9775086360 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSR-M3_H9.6mm_ReverseMount_9775096360 -Mounting Hardware, inside through hole M3, height 9.6, Wuerth electronics 9775096360 (https://katalog.we-online.com/em/datasheet/9775096360.pdf), generated with kicad-footprint-generator -Mounting M3 9775096360 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSR-M3_H10.6mm_ReverseMount_9775106360 -Mounting Hardware, inside through hole M3, height 10.6, Wuerth electronics 9775106360 (https://katalog.we-online.com/em/datasheet/9775106360.pdf), generated with kicad-footprint-generator -Mounting M3 9775106360 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSR-M3_H11.6mm_ReverseMount_9775116360 -Mounting Hardware, inside through hole M3, height 11.6, Wuerth electronics 9775116360 (https://katalog.we-online.com/em/datasheet/9775116360.pdf), generated with kicad-footprint-generator -Mounting M3 9775116360 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSSR-3.3mm_H2.5mm_SnapRivet_9776025960 -Mounting Hardware, inside through hole 3.3mm, height 2.5, Wuerth electronics 9776025960 (https://katalog.we-online.com/em/datasheet/9776025960.pdf), generated with kicad-footprint-generator -Mounting 3.3mm 9776025960 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSSR-3.3mm_H2mm_SnapRivet_9776020960 -Mounting Hardware, inside through hole 3.3mm, height 2, Wuerth electronics 9776020960 (https://katalog.we-online.com/em/datasheet/9776020960.pdf), generated with kicad-footprint-generator -Mounting 3.3mm 9776020960 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSSR-3.3mm_H3mm_SnapRivet_9776030960 -Mounting Hardware, inside through hole 3.3mm, height 3, Wuerth electronics 9776030960 (https://katalog.we-online.com/em/datasheet/9776030960.pdf), generated with kicad-footprint-generator -Mounting 3.3mm 9776030960 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSSR-3.3mm_H4mm_SnapRivet_9776040960 -Mounting Hardware, inside through hole 3.3mm, height 4, Wuerth electronics 9776040960 (https://katalog.we-online.com/em/datasheet/9776040960.pdf), generated with kicad-footprint-generator -Mounting 3.3mm 9776040960 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSSR-3.3mm_H5mm_SnapRivet_9776050960 -Mounting Hardware, inside through hole 3.3mm, height 5, Wuerth electronics 9776050960 (https://katalog.we-online.com/em/datasheet/9776050960.pdf), generated with kicad-footprint-generator -Mounting 3.3mm 9776050960 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSSR-3.3mm_H6mm_SnapRivet_9776060960 -Mounting Hardware, inside through hole 3.3mm, height 6, Wuerth electronics 9776060960 (https://katalog.we-online.com/em/datasheet/9776060960.pdf), generated with kicad-footprint-generator -Mounting 3.3mm 9776060960 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSSR-3.3mm_H7mm_SnapRivet_9776070960 -Mounting Hardware, inside through hole 3.3mm, height 7, Wuerth electronics 9776070960 (https://katalog.we-online.com/em/datasheet/9776070960.pdf), generated with kicad-footprint-generator -Mounting 3.3mm 9776070960 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSSR-3.3mm_H8mm_SnapRivet_9776080960 -Mounting Hardware, inside through hole 3.3mm, height 8, Wuerth electronics 9776080960 (https://katalog.we-online.com/em/datasheet/9776080960.pdf), generated with kicad-footprint-generator -Mounting 3.3mm 9776080960 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSSR-3.3mm_H9mm_SnapRivet_9776090960 -Mounting Hardware, inside through hole 3.3mm, height 9, Wuerth electronics 9776090960 (https://katalog.we-online.com/em/datasheet/9776090960.pdf), generated with kicad-footprint-generator -Mounting 3.3mm 9776090960 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMSSR-3.3mm_H10mm_SnapRivet_9776100960 -Mounting Hardware, inside through hole 3.3mm, height 10, Wuerth electronics 9776100960 (https://katalog.we-online.com/em/datasheet/9776100960R.pdf), generated with kicad-footprint-generator -Mounting 3.3mm 9776100960 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMST-2.7mm_H1.5mm_9774015951 -Mounting Hardware, inside through hole 2.7mm, height 1.5, Wuerth electronics 9774015951 (https://katalog.we-online.de/em/datasheet/9774015951.pdf), generated with kicad-footprint-generator -Mounting 2.7mm 9774015951 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMST-2.7mm_H1mm_9774010951 -Mounting Hardware, inside through hole 2.7mm, height 1, Wuerth electronics 9774010951 (https://katalog.we-online.de/em/datasheet/9774010951.pdf), generated with kicad-footprint-generator -Mounting 2.7mm 9774010951 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMST-2.7mm_H2.5mm_9774025951 -Mounting Hardware, inside through hole 2.7mm, height 2.5, Wuerth electronics 9774025951 (https://katalog.we-online.de/em/datasheet/9774025951.pdf), generated with kicad-footprint-generator -Mounting 2.7mm 9774025951 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMST-2.7mm_H2mm_9774020951 -Mounting Hardware, inside through hole 2.7mm, height 2, Wuerth electronics 9774020951 (https://katalog.we-online.de/em/datasheet/9774020951.pdf), generated with kicad-footprint-generator -Mounting 2.7mm 9774020951 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMST-2.7mm_H3mm_9774030951 -Mounting Hardware, inside through hole 2.7mm, height 3, Wuerth electronics 9774030951 (https://katalog.we-online.de/em/datasheet/9774030951.pdf), generated with kicad-footprint-generator -Mounting 2.7mm 9774030951 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMST-2.7mm_H4mm_9774040951 -Mounting Hardware, inside through hole 2.7mm, height 4, Wuerth electronics 9774040951 (https://katalog.we-online.de/em/datasheet/9774040951.pdf), generated with kicad-footprint-generator -Mounting 2.7mm 9774040951 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMST-2.7mm_H5.5mm_9774055951 -Mounting Hardware, inside through hole 2.7mm, height 5.5, Wuerth electronics 9774055951 (https://katalog.we-online.de/em/datasheet/9774055951.pdf), generated with kicad-footprint-generator -Mounting 2.7mm 9774055951 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMST-2.7mm_H5mm_9774050951 -Mounting Hardware, inside through hole 2.7mm, height 5, Wuerth electronics 9774050951 (https://katalog.we-online.de/em/datasheet/9774050951.pdf), generated with kicad-footprint-generator -Mounting 2.7mm 9774050951 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMST-2.7mm_H6.5mm_9774065951 -Mounting Hardware, inside through hole 2.7mm, height 6.5, Wuerth electronics 9774065951 (https://katalog.we-online.de/em/datasheet/9774065951.pdf), generated with kicad-footprint-generator -Mounting 2.7mm 9774065951 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMST-2.7mm_H6mm_9774060951 -Mounting Hardware, inside through hole 2.7mm, height 6, Wuerth electronics 9774060951 (https://katalog.we-online.de/em/datasheet/9774060951.pdf), generated with kicad-footprint-generator -Mounting 2.7mm 9774060951 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMST-2.7mm_H7mm_9774070951 -Mounting Hardware, inside through hole 2.7mm, height 7, Wuerth electronics 9774070951 (https://katalog.we-online.de/em/datasheet/9774070951.pdf), generated with kicad-footprint-generator -Mounting 2.7mm 9774070951 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMST-2.7mm_H8mm_9774080951 -Mounting Hardware, inside through hole 2.7mm, height 8, Wuerth electronics 9774080951 (https://katalog.we-online.de/em/datasheet/9774080951.pdf), generated with kicad-footprint-generator -Mounting 2.7mm 9774080951 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMST-2.7mm_H9mm_9774090951 -Mounting Hardware, inside through hole 2.7mm, height 9, Wuerth electronics 9774090951 (https://katalog.we-online.de/em/datasheet/9774090951.pdf), generated with kicad-footprint-generator -Mounting 2.7mm 9774090951 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMST-2.7mm_H10mm_9774100951 -Mounting Hardware, inside through hole 2.7mm, height 10, Wuerth electronics 9774100951 (https://katalog.we-online.de/em/datasheet/9774100951.pdf), generated with kicad-footprint-generator -Mounting 2.7mm 9774100951 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMST-2.25mm_H1.5mm_9774015943 -Mounting Hardware, inside through hole 2.25mm, height 1.5, Wuerth electronics 9774015943 (https://katalog.we-online.de/em/datasheet/9774015943.pdf), generated with kicad-footprint-generator -Mounting 2.25mm 9774015943 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMST-2.25mm_H1mm_9774010943 -Mounting Hardware, inside through hole 2.25mm, height 1, Wuerth electronics 9774010943 (https://katalog.we-online.de/em/datasheet/9774010943.pdf), generated with kicad-footprint-generator -Mounting 2.25mm 9774010943 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMST-2.25mm_H2.5mm_9774025943 -Mounting Hardware, inside through hole 2.25mm, height 2.5, Wuerth electronics 9774025943 (https://katalog.we-online.de/em/datasheet/9774025943.pdf), generated with kicad-footprint-generator -Mounting 2.25mm 9774025943 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMST-2.25mm_H2mm_9774020943 -Mounting Hardware, inside through hole 2.25mm, height 2, Wuerth electronics 9774020943 (https://katalog.we-online.de/em/datasheet/9774020943.pdf), generated with kicad-footprint-generator -Mounting 2.25mm 9774020943 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMST-2.25mm_H3.5mm_9774035943 -Mounting Hardware, inside through hole 2.25mm, height 3.5, Wuerth electronics 9774035943 (https://katalog.we-online.de/em/datasheet/9774035943.pdf), generated with kicad-footprint-generator -Mounting 2.25mm 9774035943 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMST-2.25mm_H3mm_9774030943 -Mounting Hardware, inside through hole 2.25mm, height 3, Wuerth electronics 9774030943 (https://katalog.we-online.de/em/datasheet/9774030943.pdf), generated with kicad-footprint-generator -Mounting 2.25mm 9774030943 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMST-2.25mm_H4.5mm_9774045943 -Mounting Hardware, inside through hole 2.25mm, height 4.5, Wuerth electronics 9774045943 (https://katalog.we-online.de/em/datasheet/9774045943.pdf), generated with kicad-footprint-generator -Mounting 2.25mm 9774045943 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMST-2.25mm_H4mm_9774040943 -Mounting Hardware, inside through hole 2.25mm, height 4, Wuerth electronics 9774040943 (https://katalog.we-online.de/em/datasheet/9774040943.pdf), generated with kicad-footprint-generator -Mounting 2.25mm 9774040943 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMST-2.25mm_H5mm_9774050943 -Mounting Hardware, inside through hole 2.25mm, height 5, Wuerth electronics 9774050943 (https://katalog.we-online.de/em/datasheet/9774050943.pdf), generated with kicad-footprint-generator -Mounting 2.25mm 9774050943 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMST-2.25mm_H6mm_9774060943 -Mounting Hardware, inside through hole 2.25mm, height 6, Wuerth electronics 9774060943 (https://katalog.we-online.de/em/datasheet/9774060943.pdf), generated with kicad-footprint-generator -Mounting 2.25mm 9774060943 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMST-2.25mm_H7mm_9774070943 -Mounting Hardware, inside through hole 2.25mm, height 7, Wuerth electronics 9774070943 (https://katalog.we-online.de/em/datasheet/9774070943.pdf), generated with kicad-footprint-generator -Mounting 2.25mm 9774070943 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMST-2.25mm_H8mm_9774080943 -Mounting Hardware, inside through hole 2.25mm, height 8, Wuerth electronics 9774080943 (https://katalog.we-online.de/em/datasheet/9774080943.pdf), generated with kicad-footprint-generator -Mounting 2.25mm 9774080943 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMST-3.3mm_H1.5mm_9774015960 -Mounting Hardware, inside through hole 3.3mm, height 1.5, Wuerth electronics 9774015960 (https://katalog.we-online.de/em/datasheet/9774015960.pdf,), generated with kicad-footprint-generator -Mounting 3.3mm 9774015960 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMST-3.3mm_H1mm_9774010960 -Mounting Hardware, inside through hole 3.3mm, height 1, Wuerth electronics 9774010960 (https://katalog.we-online.de/em/datasheet/9774010960.pdf,), generated with kicad-footprint-generator -Mounting 3.3mm 9774010960 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMST-3.3mm_H2.5mm_9774025960 -Mounting Hardware, inside through hole 3.3mm, height 2.5, Wuerth electronics 9774025960 (https://katalog.we-online.de/em/datasheet/9774025960.pdf,), generated with kicad-footprint-generator -Mounting 3.3mm 9774025960 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMST-3.3mm_H2mm_9774020960 -Mounting Hardware, inside through hole 3.3mm, height 2, Wuerth electronics 9774020960 (https://katalog.we-online.de/em/datasheet/9774020960.pdf,), generated with kicad-footprint-generator -Mounting 3.3mm 9774020960 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMST-3.3mm_H3mm_9774030960 -Mounting Hardware, inside through hole 3.3mm, height 3, Wuerth electronics 9774030960 (https://katalog.we-online.de/em/datasheet/9774030960.pdf,), generated with kicad-footprint-generator -Mounting 3.3mm 9774030960 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMST-3.3mm_H4mm_9774040960 -Mounting Hardware, inside through hole 3.3mm, height 4, Wuerth electronics 9774040960 (https://katalog.we-online.de/em/datasheet/9774040960.pdf,), generated with kicad-footprint-generator -Mounting 3.3mm 9774040960 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMST-3.3mm_H5mm_9774050960 -Mounting Hardware, inside through hole 3.3mm, height 5, Wuerth electronics 9774050960 (https://katalog.we-online.de/em/datasheet/9774050960.pdf,), generated with kicad-footprint-generator -Mounting 3.3mm 9774050960 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMST-3.3mm_H6mm_9774060960 -Mounting Hardware, inside through hole 3.3mm, height 6, Wuerth electronics 9774060960 (https://katalog.we-online.de/em/datasheet/9774060960.pdf,), generated with kicad-footprint-generator -Mounting 3.3mm 9774060960 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMST-3.3mm_H7mm_9774070960 -Mounting Hardware, inside through hole 3.3mm, height 7, Wuerth electronics 9774070960 (https://katalog.we-online.de/em/datasheet/9774070960.pdf,), generated with kicad-footprint-generator -Mounting 3.3mm 9774070960 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMST-3.3mm_H8mm_9774080960 -Mounting Hardware, inside through hole 3.3mm, height 8, Wuerth electronics 9774080960 (https://katalog.we-online.de/em/datasheet/9774080960.pdf,), generated with kicad-footprint-generator -Mounting 3.3mm 9774080960 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMST-3.3mm_H9mm_9774090960 -Mounting Hardware, inside through hole 3.3mm, height 9, Wuerth electronics 9774090960 (https://katalog.we-online.de/em/datasheet/9774090960.pdf,), generated with kicad-footprint-generator -Mounting 3.3mm 9774090960 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMST-3.3mm_H10mm_9774100960 -Mounting Hardware, inside through hole 3.3mm, height 10, Wuerth electronics 9774100960 (https://katalog.we-online.de/em/datasheet/9774100960.pdf,), generated with kicad-footprint-generator -Mounting 3.3mm 9774100960 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMST-3.3mm_H11mm_9774110960 -Mounting Hardware, inside through hole 3.3mm, height 11, Wuerth electronics 9774110960 (https://katalog.we-online.de/em/datasheet/9774110960.pdf,), generated with kicad-footprint-generator -Mounting 3.3mm 9774110960 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMST-3.3mm_H12mm_9774120960 -Mounting Hardware, inside through hole 3.3mm, height 12, Wuerth electronics 9774120960 (https://katalog.we-online.de/em/datasheet/9774120960.pdf,), generated with kicad-footprint-generator -Mounting 3.3mm 9774120960 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMST-3.3mm_H13mm_9774130960 -Mounting Hardware, inside through hole 3.3mm, height 13, Wuerth electronics 9774130960 (https://katalog.we-online.de/em/datasheet/9774130960.pdf,), generated with kicad-footprint-generator -Mounting 3.3mm 9774130960 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMST-3.3mm_H14mm_9774140960 -Mounting Hardware, inside through hole 3.3mm, height 14, Wuerth electronics 9774140960 (https://katalog.we-online.de/em/datasheet/9774140960.pdf,), generated with kicad-footprint-generator -Mounting 3.3mm 9774140960 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMST-3.3mm_H15mm_9774150960 -Mounting Hardware, inside through hole 3.3mm, height 15, Wuerth electronics 9774150960 (https://katalog.we-online.de/em/datasheet/9774150960.pdf,), generated with kicad-footprint-generator -Mounting 3.3mm 9774150960 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMST-4.5mm_H1mm_9774010982 -Mounting Hardware, inside through hole 4.5mm, height 1, Wuerth electronics 9774010982 (https://katalog.we-online.de/em/datasheet/9774010982.pdf), generated with kicad-footprint-generator -Mounting 4.5mm 9774010982 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMST-4.5mm_H2mm_9774020982 -Mounting Hardware, inside through hole 4.5mm, height 2, Wuerth electronics 9774020982 (https://katalog.we-online.de/em/datasheet/9774020982.pdf), generated with kicad-footprint-generator -Mounting 4.5mm 9774020982 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMST-4.5mm_H3mm_9774030982 -Mounting Hardware, inside through hole 4.5mm, height 3, Wuerth electronics 9774030982 (https://katalog.we-online.de/em/datasheet/9774030982.pdf), generated with kicad-footprint-generator -Mounting 4.5mm 9774030982 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMST-4.5mm_H4mm_9774040982 -Mounting Hardware, inside through hole 4.5mm, height 4, Wuerth electronics 9774040982 (https://katalog.we-online.de/em/datasheet/9774040982.pdf), generated with kicad-footprint-generator -Mounting 4.5mm 9774040982 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMST-4.5mm_H5mm_9774050982 -Mounting Hardware, inside through hole 4.5mm, height 5, Wuerth electronics 9774050982 (https://katalog.we-online.de/em/datasheet/9774050982.pdf), generated with kicad-footprint-generator -Mounting 4.5mm 9774050982 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMST-4.5mm_H6mm_9774060982 -Mounting Hardware, inside through hole 4.5mm, height 6, Wuerth electronics 9774060982 (https://katalog.we-online.de/em/datasheet/9774060982.pdf), generated with kicad-footprint-generator -Mounting 4.5mm 9774060982 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMST-4.5mm_H7mm_9774070982 -Mounting Hardware, inside through hole 4.5mm, height 7, Wuerth electronics 9774070982 (https://katalog.we-online.de/em/datasheet/9774070982.pdf), generated with kicad-footprint-generator -Mounting 4.5mm 9774070982 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMST-4.5mm_H8mm_9774080982 -Mounting Hardware, inside through hole 4.5mm, height 8, Wuerth electronics 9774080982 (https://katalog.we-online.de/em/datasheet/9774080982.pdf), generated with kicad-footprint-generator -Mounting 4.5mm 9774080982 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMST-4.5mm_H9mm_9774090982 -Mounting Hardware, inside through hole 4.5mm, height 9, Wuerth electronics 9774090982 (https://katalog.we-online.de/em/datasheet/9774090982.pdf), generated with kicad-footprint-generator -Mounting 4.5mm 9774090982 -0 -8 -1 -Mounting_Wuerth -Mounting_Wuerth_WA-SMST-4.5mm_H10mm_9774100982 -Mounting Hardware, inside through hole 4.5mm, height 10, Wuerth electronics 9774100982 (https://katalog.we-online.de/em/datasheet/9774100982.pdf), generated with kicad-footprint-generator -Mounting 4.5mm 9774100982 -0 -8 -1 -NetTie -NetTie-2_SMD_Pad0.5mm -Net tie, 2 pin, 0.5mm square SMD pads -net tie -0 -2 -2 -NetTie -NetTie-2_SMD_Pad2.0mm -Net tie, 2 pin, 2.0mm square SMD pads -net tie -0 -2 -2 -NetTie -NetTie-2_THT_Pad0.3mm -Net tie, 2 pin, 0.3mm round THT pads -net tie -0 -2 -2 -NetTie -NetTie-2_THT_Pad1.0mm -Net tie, 2 pin, 1.0mm round THT pads -net tie -0 -2 -2 -NetTie -NetTie-3_SMD_Pad0.5mm -Net tie, 3 pin, 0.5mm square SMD pads -net tie -0 -3 -3 -NetTie -NetTie-3_SMD_Pad2.0mm -Net tie, 3 pin, 2.0mm square SMD pads -net tie -0 -3 -3 -NetTie -NetTie-3_THT_Pad0.3mm -Net tie, 3 pin, 0.3mm round THT pads -net tie -0 -3 -3 -NetTie -NetTie-3_THT_Pad1.0mm -Net tie, 3 pin, 1.0mm round THT pads -net tie -0 -3 -3 -NetTie -NetTie-4_SMD_Pad0.5mm -Net tie, 4 pin, 0.5mm square SMD pads -net tie -0 -4 -4 -NetTie -NetTie-4_SMD_Pad2.0mm -Net tie, 4 pin, 2.0mm square SMD pads -net tie -0 -4 -4 -NetTie -NetTie-4_THT_Pad0.3mm -Net tie, 4 pin, 0.3mm round THT pads -net tie -0 -4 -4 -NetTie -NetTie-4_THT_Pad1.0mm -Net tie, 4 pin, 1.0mm round THT pads -net tie -0 -4 -4 -OptoDevice -ADNS-9800 -Laser Gaming Sensor ADNS-9800 -MOUSE MOUSE_SENSOR LASER_GAMING_SENSOR -0 -16 -16 -OptoDevice -AGILENT_HFBR-152x -Fiberoptic Transmitter TX, HFBR series (https://docs.broadcom.com/docs/AV02-3283EN) -Fiberoptic Transmitter -0 -6 -6 -OptoDevice -AGILENT_HFBR-252x -Fiberoptic Receiver RX, HFBR series (https://docs.broadcom.com/docs/AV02-3283EN) -Fiberoptic Transmitter -0 -6 -6 -OptoDevice -AMS_TSL2550_SMD -http://ams.com/eng/content/download/250130/975613/142977 -TSL2550 ambient light sensor -0 -4 -4 -OptoDevice -Broadcom_AFBR-16xxZ_Horizontal -Fiber Optic Transmitter and Receiver, https://docs.broadcom.com/docs/AV02-4369EN -Fiber Optic Transmitter and Receiver -0 -6 -6 -OptoDevice -Broadcom_AFBR-16xxZ_Tilted -Fiber Optic Transmitter and Receiver, https://docs.broadcom.com/docs/AV02-4369EN -Fiber Optic Transmitter and Receiver -0 -6 -6 -OptoDevice -Broadcom_AFBR-16xxZ_Vertical -Fiber Optic Transmitter and Receiver, https://docs.broadcom.com/docs/AV02-4369EN -Fiber Optic Transmitter and Receiver -0 -6 -6 -OptoDevice -Broadcom_APDS-9301 -ambient light sensor, i2c interface, 6-pin chipled package, https://docs.broadcom.com/docs/AV02-2315EN -ambient light sensor chipled -0 -6 -6 -OptoDevice -Broadcom_DFN-6_2x2mm_P0.65mm -Broadcom DFN, 6 Pin (https://docs.broadcom.com/docs/AV02-4755EN), generated with kicad-footprint-generator ipc_noLead_generator.py -Broadcom DFN NoLead -0 -6 -6 -OptoDevice -Broadcom_LGA-8_2x2mm_P0.5mm -Broadcom LGA, 8 Pin (https://docs.broadcom.com/doc/APDS-9251-001-DS#page=19), generated with kicad-footprint-generator ipc_noLead_generator.py -Broadcom LGA NoLead -0 -8 -8 -OptoDevice -Broadcom_LGA-8_2x2mm_P0.53mm -Broadcom LGA, 8 Pin (https://docs.broadcom.com/docs/AV02-4755EN), generated with kicad-footprint-generator ipc_noLead_generator.py -Broadcom LGA NoLead -0 -8 -8 -OptoDevice -Everlight_ITR1201SR10AR -package for Everlight ITR1201SR10AR, light-direction upwards, see https://www.everlight.com/file/ProductFile/ITR1201SR10AR-TR.pdf -reflective opto couple photo coupler -0 -4 -4 -OptoDevice -Everlight_ITR8307 -package for Everlight ITR8307 with PCB cutout, light-direction upwards, see http://www.everlight.com/file/ProductFile/ITR8307.pdf -refective opto couple photo coupler -0 -4 -4 -OptoDevice -Everlight_ITR8307F43 -package for Everlight ITR8307/F43, see https://everlighteurope.com/index.php?controller=attachment&id_attachment=5385 -refective opto couple photo coupler -0 -4 -4 -OptoDevice -Everlight_ITR8307_Reverse -package for Everlight ITR8307 with PCB cutout, light-direction downwards, see http://www.everlight.com/file/ProductFile/ITR8307.pdf -refective opto couple photo coupler -0 -4 -4 -OptoDevice -Everlight_ITR9608-F -Fork-type photointerrupter (https://everlighteurope.com/index.php?controller=attachment&id_attachment=5389) -Photointerrupter infrared LED -0 -4 -4 -OptoDevice -Finder_34.81 -Relay SPST, Finder Type 34.81 (opto relays/coupler), vertical/standing form, see https://gfinder.findernet.com/public/attachments/34/EN/S34USAEN.pdf -Relay SPST Finder -0 -4 -4 -OptoDevice -Hamamatsu_C12880 -Hamamatsu spectrometer, see http://www.hamamatsu.com/resources/pdf/ssd/c12880ma_kacc1226e.pdf -opto spectrometer Hamamatsu -0 -10 -10 -OptoDevice -Hamamatsu_S13360-30CS -SiPM, 2pin -Hamamatsu SiPM -0 -2 -2 -OptoDevice -Kingbright_KPS-3227 -3.2mmx2.7mm, light sensor, https://www.kingbright.com/attachments/file/psearch/000/00/00/KPS-3227SP1C(Ver.16).pdf -KPS-3227 Ambient Light Photo Sensor -0 -4 -4 -OptoDevice -Kingbright_KPS-5130 -http://www.kingbright.com/attachments/file/psearch/000/00/00/KPS-5130PD7C(Ver.14).pdf -KPS-5130 photodiode RGB sensor -0 -4 -4 -OptoDevice -Kingbright_KRC011_Horizontal -Subminiature Reflective Optical Sensor, http://www.kingbright.com/attachments/file/psearch/000/00/00/KRC011(Ver.15).pdf -Subminiature Reflective Optical Sensor -0 -4 -4 -OptoDevice -Kingbright_KRC011_Vertical -Subminiature Reflective Optical Sensor, http://www.kingbright.com/attachments/file/psearch/000/00/00/KRC011(Ver.15).pdf -Subminiature Reflective Optical Sensor -0 -4 -4 -OptoDevice -Kodenshi_LG206D -http://kodenshi.co.jp/products/pdf/sensor/photointerrupter_ic/LG206D.pdf -Photointerrupter infrared LED with photo IC -0 -5 -5 -OptoDevice -Kodenshi_LG206L -http://kodenshi.co.jp/products/pdf/sensor/photointerrupter_ic/LG205L.pdf -Photointerrupter infrared LED with photo IC -0 -5 -5 -OptoDevice -Kodenshi_SG105 -package for Kodenshi SG-105 with PCB cutout, light-direction upwards, see http://www.kodenshi.co.jp/products/pdf/sensor/photointerrupter_ref/SG-105.pdf -refective opto couple photo coupler -0 -4 -4 -OptoDevice -Kodenshi_SG105F -package for Kodenshi SG-105F, see http://www.kodenshi.co.jp/products/pdf/sensor/photointerrupter_ref/SG-105F.pdf -refective opto couple photo coupler -0 -4 -4 -OptoDevice -Kodenshi_SG105_Reverse -package for Kodenshi SG-105 with PCB cutout, light-direction downwards, see http://www.kodenshi.co.jp/products/pdf/sensor/photointerrupter_ref/SG-105.pdf -refective opto couple photo coupler -0 -4 -4 -OptoDevice -LaserDiode_TO3.3-D3.3-3 -Laser Diode, TO-3.3mm, 3pin -Laser Diode TO3.3 -0 -3 -3 -OptoDevice -LaserDiode_TO5-D9-3 -Laser Diode, TO5-like (D=9mm), 3pin -Laser Diode TO5-like -0 -3 -3 -OptoDevice -LaserDiode_TO18-D5.6-3 -Laser Diode, TO18-like (D=5.6mm), 3pin -Laser Diode TO18-like -0 -3 -3 -OptoDevice -LaserDiode_TO38ICut-3 -Laser Diode, TO-38-ICut, 3pin -Laser Diode TO38-ICut -0 -3 -3 -OptoDevice -LaserDiode_TO56-3 -Laser Diode, TO-56, 3pin -Laser Diode TO56 -0 -3 -3 -OptoDevice -Lightpipe_Bivar_RLP1-400-650 -1-way, 2.8mm lightpipe, 10mm lens output height, 17mm protrusion, https://www.bivar.com/parts_content/Datasheets/RLP1-XXX-XXX.pdf -planar light pipe 1 way 3mm -0 -0 -0 -OptoDevice -Lightpipe_Dialight_515-1064F -https://www.dialightsignalsandcomponents.com/515-optopipe-light-pipe-trilevel-2-5mm-rnd-flat-diff-lens-press-fit/#tab-resources -lightpipe triple tower right angle 3mm -0 -0 -0 -OptoDevice -Lightpipe_LPF-C012303S -https://www.lumex.com/spec/LPF-C012303S.pdf -lightpipe dual tower right angle 3mm -0 -0 -0 -OptoDevice -Lightpipe_LPF-C013301S -https://www.lumex.com/spec/LPF-C013301S.pdf -lightpipe triple tower right angle 3mm -0 -0 -0 -OptoDevice -Lightpipe_Mentor_1275.x00x -https://www.mentor-bauelemente.de/katalog/ll/MENTOR-LL.pdf -spherical light pipe 4 way 3mm PLCC-2 PLCC-4 -0 -0 -0 -OptoDevice -Lightpipe_Mentor_1276.1004 -https://www.mentor-bauelemente.de/katalog/ll/MENTOR-LL.pdf -spherical light pipe 4 way 3mm PLCC-2 PLCC-4 -0 -0 -0 -OptoDevice -Lightpipe_Mentor_1276.2004 -https://www.mentor-bauelemente.de/katalog/ll/MENTOR-LL.pdf -planar light pipe 4 way 3mm PLCC-2 PLCC-4 -0 -0 -0 -OptoDevice -Lite-On_LTR-303ALS-01 -ambient light sensor, i2c interface, 6-pin chipled package, http://optoelectronics.liteon.com/upload/download/DS86-2013-0004/LTR-303ALS-01_DS_V1.pdf -ambient light sensor chipled -0 -6 -6 -OptoDevice -Luna_NSL-32 -Optoisolator with LED and photoresistor -optoisolator -0 -4 -4 -OptoDevice -Maxim_OLGA-14_3.3x5.6mm_P0.8mm -https://pdfserv.maximintegrated.com/land_patterns/90-0602.PDF -OLGA-14 OESIP-14 -0 -14 -14 -OptoDevice -ONSemi_QSE15x -3 Lead Plastic Package -ONSemi QSE158 QSE159 -0 -3 -3 -OptoDevice -OnSemi_CASE100AQ -OnSemi CASE 100AQ for QRE1113, see https://www.onsemi.com/pub/Collateral/QRE1113-D.PDF -reflective opto couple photo coupler -0 -4 -4 -OptoDevice -OnSemi_CASE100CY -OnSemi CASE 100CY, light-direction upwards, see http://www.onsemi.com/pub/Collateral/QRE1113-D.PDF -refective opto couple photo coupler -0 -4 -4 -OptoDevice -Osram_BP104-SMD -PhotoDiode, plastic SMD DIL, 4.5x4mm, area: 2.2x2.2mm, https://dammedia.osram.info/media/resource/hires/osram-dam-5989350/BP%20104%20FAS_EN.pdf -PhotoDiode plastic SMD DIL -0 -6 -2 -OptoDevice -Osram_BPW34S-SMD -PhotoDiode, plastic SMD DIL, 4.5x4mm, area: 2.65x2.65mm, https://dammedia.osram.info/media/resource/hires/osram-dam-5488319/BPW%2034%20S_EN.pdf -PhotoDiode plastic SMD DIL -0 -6 -2 -OptoDevice -Osram_BPW82 -PhotoDiode, BPW82, RM2.54 -PhotoDiode BPW82 RM2.54 -0 -2 -2 -OptoDevice -Osram_DIL2_4.3x4.65mm_P5.08mm -PhotoDiode, plastic DIL, 4.3x4.65mm², RM5.08 -PhotoDiode plastic DIL RM5.08 -0 -2 -2 -OptoDevice -Osram_LPT80A -PhotoTransistor, sidelooker package, RM2.54 -PhotoTransistor sidelooker package RM2.54 -0 -2 -2 -OptoDevice -Osram_SFH9x0x -package for Osram SFH9x0x series of reflective photo interrupters/couplers, see http://www.osram-os.com/Graphics/XPic6/00200860_0.pdf -reflective photo interrupter SMD -0 -6 -6 -OptoDevice -Osram_SFH205 -PhotoDiode, SFH205, RM2.54 -PhotoDiode SFH205 RM2.54 -0 -2 -2 -OptoDevice -Osram_SFH225 -PhotoDiode, SFH225, RM2.54 -PhotoDiode SFH225 RM2.54 -0 -2 -2 -OptoDevice -Osram_SFH2201 -PhotoDiode, Clear Silicone, Osram TOPLED, 4x5.09mm, area: 2.85x2.85mm, Orientation mark at cathode, https://dammedia.osram.info/media/resource/hires/osram-dam-25688470/SFH%202201%20A01_EN.pdf -PhotoDiode silicone -0 -6 -2 -OptoDevice -Osram_SFH2430 -PhotoDiode, plastic SMD DIL, 4.5x4mm, area: 2.65x2.65mm, https://dammedia.osram.info/media/resource/hires/osram-dam-5467144/SFH%202430_EN.pdf -PhotoDiode plastic SMD DIL -0 -6 -2 -OptoDevice -Osram_SFH2440 -PhotoDiode, plastic SMD DIL, 4.5x4mm, area: 2.65x2.65mm, https://dammedia.osram.info/media/resource/hires/osram-dam-5467146/SFH%202440_EN.pdf -PhotoDiode plastic SMD DIL -0 -6 -2 -OptoDevice -Osram_SMD-SmartDIL -PhotoDiode, plastic SMD SmatDIL -PhotoDiode plastic SMD SmatDIL -0 -3 -3 -OptoDevice -Panasonic_APV-AQY_SSOP-4_4.45x2.65mm_P1.27mm -https://www.panasonic-electric-works.com/cps/rde/xbcr/pew_eu_en/technical_information_photomos_en.pdf -SSOP4 APV21 AQY22 -0 -4 -4 -OptoDevice -PerkinElmer_VTL5C -Axial Vactrol (http://www.qsl.net/wa1ion/vactrol/vactrol.pdf) -vactrol -0 -4 -4 -OptoDevice -PerkinElmer_VTL5Cx2 -Axial Vactrol (http://www.qsl.net/wa1ion/vactrol/vactrol.pdf) -vactrol -0 -5 -5 -OptoDevice -R_LDR_4.9x4.2mm_P2.54mm_Vertical -Resistor, LDR 4.9x4.2mm -Resistor LDR4.9x4.2 -0 -2 -2 -OptoDevice -R_LDR_5.0x4.1mm_P3mm_Vertical -Resistor, LDR 5x4.1mm, see http://cdn-reichelt.de/documents/datenblatt/A500/A90xxxx%23PE.pdf -Resistor LDR5x4.1mm -0 -2 -2 -OptoDevice -R_LDR_5.1x4.3mm_P3.4mm_Vertical -Resistor, LDR 5.1x3.4mm, see http://yourduino.com/docs/Photoresistor-5516-datasheet.pdf -Resistor LDR5.1x3.4mm -0 -2 -2 -OptoDevice -R_LDR_5.2x5.2mm_P3.5mm_Horizontal -Resistor, LDR 5.2x5.2, upright, see http://cdn-reichelt.de/documents/datenblatt/A500/M996011A.pdf -Resistor LDR5.2x5.2 -0 -2 -2 -OptoDevice -R_LDR_7x6mm_P5.1mm_Vertical -Resistor, LDR 7x6mm -Resistor LDR7x6mm -0 -2 -2 -OptoDevice -R_LDR_10x8.5mm_P7.6mm_Vertical -Resistor, LDR 10x8.5mm -Resistor LDR10.8.5mm -0 -2 -2 -OptoDevice -R_LDR_11x9.4mm_P8.2mm_Vertical -Resistor, LDR 11x9.4mm -Resistor LDR11x9.4mm -0 -2 -2 -OptoDevice -R_LDR_12x10.8mm_P9.0mm_Vertical -Resistor, LDR 12x10.8mm, see http://yourduino.com/docs/Photoresistor-5516-datasheet.pdf -Resistor LDR12x10.8mm -0 -2 -2 -OptoDevice -R_LDR_D6.4mm_P3.4mm_Vertical -Resistor, LDR D=6.4mm, see http://yourduino.com/docs/Photoresistor-5516-datasheet.pdf -Resistor LDRD=6.4mm -0 -2 -2 -OptoDevice -R_LDR_D13.8mm_P9.0mm_Vertical -Resistor, diameter 13.8mm pitch 9mm, see http://yourduino.com/docs/Photoresistor-5516-datasheet.pdf -Resistor LDR -0 -2 -2 -OptoDevice -R_LDR_D20mm_P17.5mm_Vertical -Resistor, LDR 20mm diameter, pin pitch 17.5mm, see http://yourduino.com/docs/Photoresistor-5516-datasheet.pdf -Resistor LDR -0 -2 -2 -OptoDevice -ST_VL53L0X -https://www.st.com/resource/en/datasheet/vl53l1x.pdf -laser-ranging sensor -0 -12 -12 -OptoDevice -ST_VL53L1X -https://www.st.com/resource/en/datasheet/vl53l1x.pdf -laser-ranging sensor -0 -12 -12 -OptoDevice -Sharp_GP2Y0A41SK0F -http://www.sharp-world.com/products/device/lineup/data/pdf/datasheet/gp2y0a41sk_e.pdf -Distance Sensor Sharp -0 -2 -2 -OptoDevice -Sharp_IS471F -Sharp OPIC IS471F, see http://pdf.datasheetcatalog.com/datasheet/Sharp/mXvrzty.pdf -Sharp OPIC IS471F -0 -4 -4 -OptoDevice -Sharp_IS485 -Sharp OPIC, IS485, IS486, see http://microrato.ua.pt/main/Actividades/Estagios/Docs/IS485_6.pdf -Sharp OPIC IS485 IS486 -0 -3 -3 -OptoDevice -Siemens_SFH900 -package for Siemens SFH900 reflex photo interrupter/coupler/object detector, see https://www.batronix.com/pdf/sfh900.pdf -Siemens SFH900 reflex photo interrupter coupler object detector -0 -3 -3 -OptoDevice -Toshiba_TORX170_TORX173_TORX193_TORX194 -Fiberoptic Reciver, RX, Toshiba, Toslink, TORX170, TORX173, TORX193, TORX194 -Fiberoptic Reciver RX Toshiba Toslink TORX170 TORX173 TORX193 TORX194 -0 -6 -6 -OptoDevice -Toshiba_TOTX170_TOTX173_TOTX193_TOTX194 -Fiberoptic Reciver, RX, Toshiba, Toslink, TORX170, TORX173, TORX193, TORX194 -Fiberoptic Reciver RX Toshiba Toslink TORX170 TORX173 TORX193 TORX194 -0 -6 -6 -OptoDevice -Vishay_CAST-3Pin -IR Receiver Vishay TSOP-xxxx, CAST package, see https://www.vishay.com/docs/82493/tsop311.pdf -IRReceiverVishayTSOP-xxxx CAST -0 -3 -3 -OptoDevice -Vishay_CNY70 -package for Vishay CNY70 refective photo coupler/interrupter -Vishay CNY70 refective photo coupler -0 -4 -4 -OptoDevice -Vishay_MINICAST-3Pin -IR Receiver Vishay TSOP-xxxx, MINICAST package, see https://www.vishay.com/docs/82669/tsop32s40f.pdf -IR Receiver Vishay TSOP-xxxx MINICAST -0 -3 -3 -OptoDevice -Vishay_MINIMOLD-3Pin -IR Receiver Vishay TSOP-xxxx, MINIMOLD package, see https://www.vishay.com/docs/82742/tsop331.pdf -IR Receiver Vishay TSOP-xxxx MINIMOLD -0 -3 -3 -OptoDevice -Vishay_MOLD-3Pin -IR Receiver Vishay TSOP-xxxx, MOLD package, see https://www.vishay.com/docs/82669/tsop32s40f.pdf -IR Receiver Vishay TSOP-xxxx MOLD -0 -3 -3 -Oscillator -Oscillator_DIP-8 -Oscillator, DIP8,http://cdn-reichelt.de/documents/datenblatt/B400/OSZI.pdf -oscillator -0 -4 -4 -Oscillator -Oscillator_DIP-8_LargePads -Oscillator, DIP8, Large Pads, http://cdn-reichelt.de/documents/datenblatt/B400/OSZI.pdf -oscillator -0 -4 -4 -Oscillator -Oscillator_DIP-14 -Oscillator, DIP14, http://cdn-reichelt.de/documents/datenblatt/B400/OSZI.pdf -oscillator -0 -4 -4 -Oscillator -Oscillator_DIP-14_LargePads -Oscillator, DIP14, Large Pads, http://cdn-reichelt.de/documents/datenblatt/B400/OSZI.pdf -oscillator -0 -4 -4 -Oscillator -Oscillator_OCXO_Morion_MV267 -http://www.morion.com.ru/catalog_pdf/MV267.pdf -OCXO -0 -5 -5 -Oscillator -Oscillator_OCXO_Morion_MV317 -https://www.morion-us.com/catalog_pdf/mv317.pdf -OCXO -0 -5 -5 -Oscillator -Oscillator_SMD_Abracon_ABLNO -https://abracon.com/Precisiontiming/ABLNO.pdf -VCXO XO -0 -4 -4 -Oscillator -Oscillator_SMD_Abracon_ASCO-4Pin_1.6x1.2mm -Miniature Crystal Clock Oscillator Abracon ASCO series, https://abracon.com/Oscillators/ASCO.pdf, 1.6x1.2mm^2 package -SMD SMT crystal oscillator -0 -4 -4 -Oscillator -Oscillator_SMD_Abracon_ASDMB-4Pin_2.5x2.0mm -Miniature Crystal Clock Oscillator Abracon ASDMB series, 2.5x2.0mm package, http://www.abracon.com/Oscillators/ASDMB.pdf -SMD SMT crystal oscillator -0 -4 -4 -Oscillator -Oscillator_SMD_Abracon_ASE-4Pin_3.2x2.5mm -Miniature Crystal Clock Oscillator Abracon ASE series, http://www.abracon.com/Oscillators/ASEseries.pdf, 3.2x2.5mm^2 package -SMD SMT crystal oscillator -0 -4 -4 -Oscillator -Oscillator_SMD_Abracon_ASE-4Pin_3.2x2.5mm_HandSoldering -Miniature Crystal Clock Oscillator Abracon ASE series, http://www.abracon.com/Oscillators/ASEseries.pdf, hand-soldering, 3.2x2.5mm^2 package -SMD SMT crystal oscillator hand-soldering -0 -4 -4 -Oscillator -Oscillator_SMD_Abracon_ASV-4Pin_7.0x5.1mm -Miniature Crystal Clock Oscillator Abracon ASV series, http://www.abracon.com/Oscillators/ASV.pdf, 7.0x5.1mm^2 package -SMD SMT crystal oscillator -0 -4 -4 -Oscillator -Oscillator_SMD_Abracon_ASV-4Pin_7.0x5.1mm_HandSoldering -Miniature Crystal Clock Oscillator Abracon ASV series, http://www.abracon.com/Oscillators/ASV.pdf, hand-soldering, 7.0x5.1mm^2 package -SMD SMT crystal oscillator hand-soldering -0 -4 -4 -Oscillator -Oscillator_SMD_Diodes_FN-4Pin_7.0x5.0mm -FN Series Crystal Clock Oscillator (XO) (https://www.diodes.com/assets/Datasheets/FN_3-3V.pdf) -Oscillator Crystal SMD SMT -0 -4 -4 -Oscillator -Oscillator_SMD_ECS_2520MV-xxx-xx-4Pin_2.5x2.0mm -Miniature Crystal Clock Oscillator ECS 2520MV series, https://www.ecsxtal.com/store/pdf/ECS-2520MV.pdf -Miniature Crystal Clock Oscillator ECS 2520MV series SMD SMT HCMOS -0 -4 -4 -Oscillator -Oscillator_SMD_EuroQuartz_XO32-4Pin_3.2x2.5mm -Miniature Crystal Clock Oscillator EuroQuartz XO32 series, http://cdn-reichelt.de/documents/datenblatt/B400/XO32.pdf, 3.2x2.5mm^2 package -SMD SMT crystal oscillator -0 -4 -4 -Oscillator -Oscillator_SMD_EuroQuartz_XO32-4Pin_3.2x2.5mm_HandSoldering -Miniature Crystal Clock Oscillator EuroQuartz XO32 series, http://cdn-reichelt.de/documents/datenblatt/B400/XO32.pdf, hand-soldering, 3.2x2.5mm^2 package -SMD SMT crystal oscillator hand-soldering -0 -4 -4 -Oscillator -Oscillator_SMD_EuroQuartz_XO53-4Pin_5.0x3.2mm -Miniature Crystal Clock Oscillator EuroQuartz XO53 series, http://cdn-reichelt.de/documents/datenblatt/B400/XO53.pdf, 5.0x3.2mm^2 package -SMD SMT crystal oscillator -0 -4 -4 -Oscillator -Oscillator_SMD_EuroQuartz_XO53-4Pin_5.0x3.2mm_HandSoldering -Miniature Crystal Clock Oscillator EuroQuartz XO53 series, http://cdn-reichelt.de/documents/datenblatt/B400/XO53.pdf, hand-soldering, 5.0x3.2mm^2 package -SMD SMT crystal oscillator hand-soldering -0 -4 -4 -Oscillator -Oscillator_SMD_EuroQuartz_XO91-4Pin_7.0x5.0mm -Miniature Crystal Clock Oscillator EuroQuartz XO91 series, http://cdn-reichelt.de/documents/datenblatt/B400/XO91.pdf, 7.0x5.0mm^2 package -SMD SMT crystal oscillator -0 -4 -4 -Oscillator -Oscillator_SMD_EuroQuartz_XO91-4Pin_7.0x5.0mm_HandSoldering -Miniature Crystal Clock Oscillator EuroQuartz XO91 series, http://cdn-reichelt.de/documents/datenblatt/B400/XO91.pdf, hand-soldering, 7.0x5.0mm^2 package -SMD SMT crystal oscillator hand-soldering -0 -4 -4 -Oscillator -Oscillator_SMD_Fordahl_DFAS1-6Pin_14.8x9.1mm -Miniature Crystal Clock Oscillator TXCO Fordahl DFA S1-KHZ/LHZ, http://www.iqdfrequencyproducts.com/products/details/iqxo-70-11-30.pdf, 14.8x9.1mm^2 package -SMD SMT crystal oscillator -0 -6 -6 -Oscillator -Oscillator_SMD_Fordahl_DFAS2-4Pin_7.3x5.1mm -Mminiature Crystal Clock Oscillator TXCO Fordahl DFA S2-KS/LS/US, http://www.iqdfrequencyproducts.com/products/details/iqxo-70-11-30.pdf, 7.3x5.1mm^2 package -SMD SMT crystal oscillator -0 -4 -4 -Oscillator -Oscillator_SMD_Fordahl_DFAS2-4Pin_7.3x5.1mm_HandSoldering -Mminiature Crystal Clock Oscillator TXCO Fordahl DFA S2-KS/LS/US, http://www.iqdfrequencyproducts.com/products/details/iqxo-70-11-30.pdf, hand-soldering, 7.3x5.1mm^2 package -SMD SMT crystal oscillator hand-soldering -0 -4 -4 -Oscillator -Oscillator_SMD_Fordahl_DFAS3-4Pin_9.1x7.2mm -Miniature Crystal Clock Oscillator TXCO Fordahl DFA S3-KS/LS/US, http://www.iqdfrequencyproducts.com/products/details/iqxo-70-11-30.pdf, 9.1x7.2mm^2 package -SMD SMT crystal oscillator -0 -4 -4 -Oscillator -Oscillator_SMD_Fordahl_DFAS3-4Pin_9.1x7.2mm_HandSoldering -Miniature Crystal Clock Oscillator TXCO Fordahl DFA S3-KS/LS/US, http://www.iqdfrequencyproducts.com/products/details/iqxo-70-11-30.pdf, hand-soldering, 9.1x7.2mm^2 package -SMD SMT crystal oscillator hand-soldering -0 -4 -4 -Oscillator -Oscillator_SMD_Fordahl_DFAS7-4Pin_19.9x12.9mm -Miniature Crystal Clock Oscillator TXCO Fordahl DFA S7-K/L, http://www.iqdfrequencyproducts.com/products/details/iqxo-70-11-30.pdf, 19.9x12.9mm^2 package -SMD SMT crystal oscillator -0 -4 -4 -Oscillator -Oscillator_SMD_Fordahl_DFAS7-4Pin_19.9x12.9mm_HandSoldering -Miniature Crystal Clock Oscillator TXCO Fordahl DFA S7-K/L, http://www.iqdfrequencyproducts.com/products/details/iqxo-70-11-30.pdf, hand-soldering, 19.9x12.9mm^2 package -SMD SMT crystal oscillator hand-soldering -0 -4 -4 -Oscillator -Oscillator_SMD_Fordahl_DFAS11-4Pin_7.0x5.0mm -Miniature Crystal Clock Oscillator TXCO Fordahl DFA S11-OV/UOV, http://www.iqdfrequencyproducts.com/products/details/iqxo-70-11-30.pdf, 7.0x5.0mm^2 package -SMD SMT crystal oscillator -0 -4 -4 -Oscillator -Oscillator_SMD_Fordahl_DFAS11-4Pin_7.0x5.0mm_HandSoldering -Miniature Crystal Clock Oscillator TXCO Fordahl DFA S11-OV/UOV, http://www.iqdfrequencyproducts.com/products/details/iqxo-70-11-30.pdf, hand-soldering, 7.0x5.0mm^2 package -SMD SMT crystal oscillator hand-soldering -0 -4 -4 -Oscillator -Oscillator_SMD_Fordahl_DFAS15-4Pin_5.0x3.2mm -Ultraminiature Crystal Clock Oscillator TXCO Fordahl DFA S15-OV/UOV, http://www.iqdfrequencyproducts.com/products/details/iqxo-70-11-30.pdf, 5.0x3.2mm^2 package -SMD SMT crystal oscillator -0 -4 -4 -Oscillator -Oscillator_SMD_Fordahl_DFAS15-4Pin_5.0x3.2mm_HandSoldering -Ultraminiature Crystal Clock Oscillator TXCO Fordahl DFA S15-OV/UOV, http://www.iqdfrequencyproducts.com/products/details/iqxo-70-11-30.pdf, hand-soldering, 5.0x3.2mm^2 package -SMD SMT crystal oscillator hand-soldering -0 -4 -4 -Oscillator -Oscillator_SMD_Fox_FT5H_5.0x3.2mm -https://foxonline.com/wp-content/uploads/pdfs/T5HN_T5HV.pdf -Fox TXCO temperature compensated oscillator -0 -4 -4 -Oscillator -Oscillator_SMD_IDT_JS6-6_5.0x3.2mm_P1.27mm -SMD Crystal Oscillator IDT https://www.idt.com/document/dst/xu-family-datasheet#page=15, 5.0x3.2mm -SMD SMT crystal oscillator -0 -6 -6 -Oscillator -Oscillator_SMD_IDT_JU6-6_7.0x5.0mm_P2.54mm -SMD Crystal Oscillator IDT https://www.idt.com/document/dst/xu-family-datasheet#page=17, 7.0x5.0mm -SMD SMT crystal oscillator -0 -6 -6 -Oscillator -Oscillator_SMD_IQD_IQXO70-4Pin_7.5x5.0mm -IQD Crystal Clock Oscillator IQXO-70, http://www.iqdfrequencyproducts.com/products/details/iqxo-70-11-30.pdf, 7.5x5.0mm^2 package -SMD SMT crystal oscillator -0 -4 -4 -Oscillator -Oscillator_SMD_IQD_IQXO70-4Pin_7.5x5.0mm_HandSoldering -IQD Crystal Clock Oscillator IQXO-70, http://www.iqdfrequencyproducts.com/products/details/iqxo-70-11-30.pdf, hand-soldering, 7.5x5.0mm^2 package -SMD SMT crystal oscillator hand-soldering -0 -4 -4 -Oscillator -Oscillator_SMD_Kyocera_2520-6Pin_2.5x2.0mm -https://global.kyocera.com/prdct/electro/product/pdf/kt2520_e.pdf -2.5mm 2mm SMD -0 -6 -6 -Oscillator -Oscillator_SMD_Kyocera_KC2520Z-4Pin_2.5x2.0mm -https://global.kyocera.com/prdct/electro/product/pdf/clock_z_xz_e.pdf -2.5mm 2mm SMD -0 -4 -4 -Oscillator -Oscillator_SMD_OCXO_ConnorWinfield_OH300 -http://www.conwin.com/datasheets/cx/cx282.pdf -OCXO -0 -7 -7 -Oscillator -Oscillator_SMD_SI570_SI571_HandSoldering -SI570, SI571, Programmable oscillator, Standard -SI570 SI571 Programmable oscillator Standard -0 -8 -8 -Oscillator -Oscillator_SMD_SI570_SI571_Standard -SI570, SI571, Programmable oscillator, Standard -SI570 SI571 Programmable oscillator Standard -0 -8 -8 -Oscillator -Oscillator_SMD_SeikoEpson_SG210-4Pin_2.5x2.0mm -SMD Crystal Oscillator Seiko Epson SG-210 https://support.epson.biz/td/api/doc_check.php?mode=dl&lang=en&Parts=SG-210SED, 2.5x2.0mm^2 package -SMD SMT crystal oscillator -0 -4 -4 -Oscillator -Oscillator_SMD_SeikoEpson_SG210-4Pin_2.5x2.0mm_HandSoldering -SMD Crystal Oscillator Seiko Epson SG-210 https://support.epson.biz/td/api/doc_check.php?mode=dl&lang=en&Parts=SG-210SED, hand-soldering, 2.5x2.0mm^2 package -SMD SMT crystal oscillator hand-soldering -0 -4 -4 -Oscillator -Oscillator_SMD_SeikoEpson_SG3030CM -SMD Crystal Oscillator Seiko Epson SG-3030CM package -SMD SMT crystal oscillator -0 -4 -4 -Oscillator -Oscillator_SMD_SeikoEpson_SG8002CA-4Pin_7.0x5.0mm -SMD Crystal Oscillator Seiko Epson SG-8002CA https://support.epson.biz/td/api/doc_check.php?mode=dl&lang=en&Parts=SG-8002DC, 7.0x5.0mm^2 package -SMD SMT crystal oscillator -0 -4 -4 -Oscillator -Oscillator_SMD_SeikoEpson_SG8002CA-4Pin_7.0x5.0mm_HandSoldering -SMD Crystal Oscillator Seiko Epson SG-8002CA https://support.epson.biz/td/api/doc_check.php?mode=dl&lang=en&Parts=SG-8002DC, hand-soldering, 7.0x5.0mm^2 package -SMD SMT crystal oscillator hand-soldering -0 -4 -4 -Oscillator -Oscillator_SMD_SeikoEpson_SG8002CE-4Pin_3.2x2.5mm -SMD Crystal Oscillator Seiko Epson SG-8002CE https://support.epson.biz/td/api/doc_check.php?mode=dl&lang=en&Parts=SG-8002DC, 3.2x2.5mm^2 package -SMD SMT crystal oscillator -0 -4 -4 -Oscillator -Oscillator_SMD_SeikoEpson_SG8002CE-4Pin_3.2x2.5mm_HandSoldering -SMD Crystal Oscillator Seiko Epson SG-8002CE https://support.epson.biz/td/api/doc_check.php?mode=dl&lang=en&Parts=SG-8002DC, hand-soldering, 3.2x2.5mm^2 package -SMD SMT crystal oscillator hand-soldering -0 -4 -4 -Oscillator -Oscillator_SMD_SeikoEpson_SG8002JA-4Pin_14.0x8.7mm -SMD Crystal Oscillator Seiko Epson SG-8002JA https://support.epson.biz/td/api/doc_check.php?mode=dl&lang=en&Parts=SG-8002DC, 14.0x8.7mm^2 package -SMD SMT crystal oscillator -0 -4 -4 -Oscillator -Oscillator_SMD_SeikoEpson_SG8002JA-4Pin_14.0x8.7mm_HandSoldering -SMD Crystal Oscillator Seiko Epson SG-8002JA https://support.epson.biz/td/api/doc_check.php?mode=dl&lang=en&Parts=SG-8002DC, hand-soldering, 14.0x8.7mm^2 package -SMD SMT crystal oscillator hand-soldering -0 -4 -4 -Oscillator -Oscillator_SMD_SeikoEpson_SG8002JC-4Pin_10.5x5.0mm -SMD Crystal Oscillator Seiko Epson SG-8002JC https://support.epson.biz/td/api/doc_check.php?mode=dl&lang=en&Parts=SG-8002DC, 10.5x5.0mm^2 package -SMD SMT crystal oscillator -0 -4 -4 -Oscillator -Oscillator_SMD_SeikoEpson_SG8002JC-4Pin_10.5x5.0mm_HandSoldering -SMD Crystal Oscillator Seiko Epson SG-8002JC https://support.epson.biz/td/api/doc_check.php?mode=dl&lang=en&Parts=SG-8002DC, hand-soldering, 10.5x5.0mm^2 package -SMD SMT crystal oscillator hand-soldering -0 -4 -4 -Oscillator -Oscillator_SMD_SeikoEpson_SG8002LB-4Pin_5.0x3.2mm -SMD Crystal Oscillator Seiko Epson SG-8002LB https://support.epson.biz/td/api/doc_check.php?mode=dl&lang=en&Parts=SG-8002DC, 5.0x3.2mm^2 package -SMD SMT crystal oscillator -0 -4 -4 -Oscillator -Oscillator_SMD_SeikoEpson_SG8002LB-4Pin_5.0x3.2mm_HandSoldering -SMD Crystal Oscillator Seiko Epson SG-8002LB https://support.epson.biz/td/api/doc_check.php?mode=dl&lang=en&Parts=SG-8002DC, hand-soldering, 5.0x3.2mm^2 package -SMD SMT crystal oscillator hand-soldering -0 -4 -4 -Oscillator -Oscillator_SMD_SeikoEpson_TG2520SMN-xxx-xxxxxx-4Pin_2.5x2.0mm -Miniature Crystal Clock Oscillator TG2520 series, https://support.epson.biz/td/api/doc_check.php?dl=app_TG2520SMN&lang=en -Miniature Crystal Clock Oscillator TG2520 series SMD SMT -0 -4 -4 -Oscillator -Oscillator_SMD_SiTime_PQFD-6L_3.2x2.5mm -3.2x2.5mm, 6-pin QFN (https://www.sitime.com/datasheet/SiT9365 page 13) -SMD SMT mems oscillator -0 -6 -6 -Oscillator -Oscillator_SMD_SiTime_SiT9121-6Pin_3.2x2.5mm -3.2x2.5mm, 1-220MHz High Performance Differential Oscillator SiTime SiT9121 https://www.sitime.com/datasheet/SiT9121 -SMD SMT crystal oscillator -0 -6 -6 -Oscillator -Oscillator_SMD_Silicon_Labs_LGA-6_2.5x3.2mm_P1.25mm -Silicon_Labs LGA, 6 Pin (https://www.silabs.com/documents/public/data-sheets/si512-13.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -Silicon_Labs LGA NoLead -0 -6 -6 -Oscillator -Oscillator_SMD_TCXO_G158 -TCXO -TCXO -0 -4 -4 -Oscillator -Oscillator_SMD_TXC_7C-4Pin_5.0x3.2mm -Miniature Crystal Clock Oscillator TXC 7C series, http://www.txccorp.com/download/products/osc/7C_o.pdf, 5.0x3.2mm^2 package -SMD SMT crystal oscillator -0 -4 -4 -Oscillator -Oscillator_SMD_TXC_7C-4Pin_5.0x3.2mm_HandSoldering -Miniature Crystal Clock Oscillator TXC 7C series, http://www.txccorp.com/download/products/osc/7C_o.pdf, hand-soldering, 5.0x3.2mm^2 package -SMD SMT crystal oscillator hand-soldering -0 -4 -4 -Oscillator -Oscillator_SeikoEpson_SG-8002DB -14-lead dip package, row spacing 7.62 mm (300 mils) -DIL DIP PDIP 2.54mm 7.62mm 300mil -0 -4 -4 -Oscillator -Oscillator_SeikoEpson_SG-8002DC -8-lead dip package, row spacing 7.62 mm (300 mils) -DIL DIP PDIP 2.54mm 7.62mm 300mil -0 -4 -4 -PCM_Capacitor_SMD_AKL -CP_Elec_5x3 -SMD capacitor, aluminum electrolytic, Nichicon, 5.0x3.0mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_AKL -CP_Elec_5x3.9 -SMD capacitor, aluminum electrolytic, Nichicon, 5.0x3.9mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_AKL -CP_Elec_5x4.4 -SMD capacitor, aluminum electrolytic, Panasonic B45, 5.0x4.4mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_AKL -CP_Elec_5x4.5 -SMD capacitor, aluminum electrolytic, Nichicon, 5.0x4.5mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_AKL -CP_Elec_5x5.3 -SMD capacitor, aluminum electrolytic, Nichicon, 5.0x5.3mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_AKL -CP_Elec_5x5.4 -SMD capacitor, aluminum electrolytic, Nichicon, 5.0x5.4mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_AKL -CP_Elec_5x5.7 -SMD capacitor, aluminum electrolytic, United Chemi-Con, 5.0x5.7mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_AKL -CP_Elec_5x5.8 -SMD capacitor, aluminum electrolytic, Panasonic, 5.0x5.8mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_AKL -CP_Elec_5x5.9 -SMD capacitor, aluminum electrolytic, Panasonic B6, 5.0x5.9mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_AKL -CP_Elec_6.3x3 -SMD capacitor, aluminum electrolytic, Nichicon, 6.3x3.0mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_AKL -CP_Elec_6.3x3.9 -SMD capacitor, aluminum electrolytic, Nichicon, 6.3x3.9mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_AKL -CP_Elec_6.3x4.5 -SMD capacitor, aluminum electrolytic, Nichicon, 6.3x4.5mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_AKL -CP_Elec_6.3x4.9 -SMD capacitor, aluminum electrolytic, Panasonic C5, 6.3x4.9mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_AKL -CP_Elec_6.3x5.2 -SMD capacitor, aluminum electrolytic, United Chemi-Con, 6.3x5.2mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_AKL -CP_Elec_6.3x5.3 -SMD capacitor, aluminum electrolytic, Cornell Dubilier, 6.3x5.3mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_AKL -CP_Elec_6.3x5.4 -SMD capacitor, aluminum electrolytic, Panasonic C55, 6.3x5.4mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_AKL -CP_Elec_6.3x5.4_Nichicon -SMD capacitor, aluminum electrolytic, Nichicon, 6.3x5.4mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_AKL -CP_Elec_6.3x5.7 -SMD capacitor, aluminum electrolytic, United Chemi-Con, 6.3x5.7mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_AKL -CP_Elec_6.3x5.8 -SMD capacitor, aluminum electrolytic, Nichicon, 6.3x5.8mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_AKL -CP_Elec_6.3x5.9 -SMD capacitor, aluminum electrolytic, Panasonic C6, 6.3x5.9mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_AKL -CP_Elec_6.3x7.7 -SMD capacitor, aluminum electrolytic, Nichicon, 6.3x7.7mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_AKL -CP_Elec_6.3x9.9 -SMD capacitor, aluminum electrolytic, Panasonic C10, 6.3x9.9mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_AKL -CP_Elec_8x5.4 -SMD capacitor, aluminum electrolytic, Nichicon, 8.0x5.4mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_AKL -CP_Elec_8x6.2 -SMD capacitor, aluminum electrolytic, Nichicon, 8.0x6.2mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_AKL -CP_Elec_8x6.5 -SMD capacitor, aluminum electrolytic, Rubycon, 8.0x6.5mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_AKL -CP_Elec_8x6.7 -SMD capacitor, aluminum electrolytic, United Chemi-Con, 8.0x6.7mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_AKL -CP_Elec_8x6.9 -SMD capacitor, aluminum electrolytic, Panasonic E7, 8.0x6.9mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_AKL -CP_Elec_8x10 -SMD capacitor, aluminum electrolytic, Nichicon, 8.0x10mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_AKL -CP_Elec_8x10.5 -SMD capacitor, aluminum electrolytic, Vishay 0810, 8.0x10.5mm, http://www.vishay.com/docs/28395/150crz.pdf, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_AKL -CP_Elec_8x11.9 -SMD capacitor, aluminum electrolytic, Panasonic E12, 8.0x11.9mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_AKL -CP_Elec_10x7.7 -SMD capacitor, aluminum electrolytic, Nichicon, 10.0x7.7mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_AKL -CP_Elec_10x7.9 -SMD capacitor, aluminum electrolytic, Panasonic F8, 10.0x7.9mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_AKL -CP_Elec_10x10 -SMD capacitor, aluminum electrolytic, Nichicon, 10.0x10.0mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_AKL -CP_Elec_10x10.5 -SMD capacitor, aluminum electrolytic, Vishay 1010, 10.0x10.5mm, http://www.vishay.com/docs/28395/150crz.pdf, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_AKL -CP_Elec_10x12.5 -SMD capacitor, aluminum electrolytic, Vishay 1012, 10.0x12.5mm, http://www.vishay.com/docs/28395/150crz.pdf, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_AKL -CP_Elec_10x12.6 -SMD capacitor, aluminum electrolytic, Panasonic F12, 10.0x12.6mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_AKL -CP_Elec_10x14.3 -SMD capacitor, aluminum electrolytic, Vishay 1014, 10.0x14.3mm, http://www.vishay.com/docs/28395/150crz.pdf, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_AKL -CP_Elec_16x17.5 -SMD capacitor, aluminum electrolytic, Vishay 1616, 16.0x17.5mm, http://www.vishay.com/docs/28395/150crz.pdf, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_AKL -CP_Elec_16x22 -SMD capacitor, aluminum electrolytic, Vishay 1621, 16.0x22.0mm, http://www.vishay.com/docs/28395/150crz.pdf, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_AKL -CP_Elec_18x17.5 -SMD capacitor, aluminum electrolytic, Vishay 1816, 18.0x17.5mm, http://www.vishay.com/docs/28395/150crz.pdf, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_AKL -CP_Elec_18x22 -SMD capacitor, aluminum electrolytic, Vishay 1821, 18.0x22.0mm, http://www.vishay.com/docs/28395/150crz.pdf, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_AKL -C_0201_0603Metric -Capacitor SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), Alternate KiCad Library -capacitor -0 -4 -2 -PCM_Capacitor_SMD_AKL -C_0201_0603Metric_Pad0.64x0.40mm -Capacitor SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), Alternate KiCad Library -capacitor handsolder -0 -4 -2 -PCM_Capacitor_SMD_AKL -C_0201_0603Metric_Pad0.64x0.40mm_HandSolder -Capacitor SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), Alternate KiCad Library -capacitor handsolder -0 -4 -2 -PCM_Capacitor_SMD_AKL -C_0402_1005Metric -Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library -capacitor -0 -2 -2 -PCM_Capacitor_SMD_AKL -C_0402_1005Metric_Pad0.74x0.62mm -Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library -capacitor handsolder -0 -2 -2 -PCM_Capacitor_SMD_AKL -C_0402_1005Metric_Pad0.74x0.62mm_HandSolder -Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library -capacitor handsolder -0 -2 -2 -PCM_Capacitor_SMD_AKL -C_0504_1310Metric -Capacitor SMD 0504 (1310 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library -capacitor -0 -2 -2 -PCM_Capacitor_SMD_AKL -C_0504_1310Metric_Pad0.83x1.28mm -Capacitor SMD 0504 (1310 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library -capacitor handsolder -0 -2 -2 -PCM_Capacitor_SMD_AKL -C_0504_1310Metric_Pad0.83x1.28mm_HandSolder -Capacitor SMD 0504 (1310 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library -capacitor handsolder -0 -2 -2 -PCM_Capacitor_SMD_AKL -C_0603_1608Metric -Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library -capacitor -0 -2 -2 -PCM_Capacitor_SMD_AKL -C_0603_1608Metric_Pad1.05x0.95mm -Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -capacitor handsolder -0 -2 -2 -PCM_Capacitor_SMD_AKL -C_0603_1608Metric_Pad1.05x0.95mm_HandSolder -Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -capacitor handsolder -0 -2 -2 -PCM_Capacitor_SMD_AKL -C_0603_1608Metric_Pad1.08x0.95mm -Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library -capacitor handsolder -0 -2 -2 -PCM_Capacitor_SMD_AKL -C_0603_1608Metric_Pad1.08x0.95mm_HandSolder -Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library -capacitor handsolder -0 -2 -2 -PCM_Capacitor_SMD_AKL -C_0805_2012Metric -Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), Alternate KiCad Library -capacitor -0 -2 -2 -PCM_Capacitor_SMD_AKL -C_0805_2012Metric_Pad1.15x1.40mm -Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), Alternate KiCad Library -capacitor handsolder -0 -2 -2 -PCM_Capacitor_SMD_AKL -C_0805_2012Metric_Pad1.15x1.40mm_HandSolder -Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), Alternate KiCad Library -capacitor handsolder -0 -2 -2 -PCM_Capacitor_SMD_AKL -C_0805_2012Metric_Pad1.18x1.45mm -Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), Alternate KiCad Library -capacitor handsolder -0 -2 -2 -PCM_Capacitor_SMD_AKL -C_0805_2012Metric_Pad1.18x1.45mm_HandSolder -Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), Alternate KiCad Library -capacitor handsolder -0 -2 -2 -PCM_Capacitor_SMD_AKL -C_01005_0402Metric -Capacitor SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), Alternate KiCad Library -capacitor -0 -4 -2 -PCM_Capacitor_SMD_AKL -C_01005_0402Metric_Pad0.57x0.30mm -Capacitor SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), Alternate KiCad Library -capacitor handsolder -0 -4 -2 -PCM_Capacitor_SMD_AKL -C_01005_0402Metric_Pad0.57x0.30mm_HandSolder -Capacitor SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), Alternate KiCad Library -capacitor handsolder -0 -4 -2 -PCM_Capacitor_SMD_AKL -C_1206_3216Metric -Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library -capacitor -0 -2 -2 -PCM_Capacitor_SMD_AKL -C_1206_3216Metric_Pad1.33x1.80mm -Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library -capacitor handsolder -0 -2 -2 -PCM_Capacitor_SMD_AKL -C_1206_3216Metric_Pad1.33x1.80mm_HandSolder -Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library -capacitor handsolder -0 -2 -2 -PCM_Capacitor_SMD_AKL -C_1206_3216Metric_Pad1.42x1.75mm -Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -capacitor handsolder -0 -2 -2 -PCM_Capacitor_SMD_AKL -C_1206_3216Metric_Pad1.42x1.75mm_HandSolder -Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -capacitor handsolder -0 -2 -2 -PCM_Capacitor_SMD_AKL -C_1210_3225Metric -Capacitor SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library -capacitor -0 -2 -2 -PCM_Capacitor_SMD_AKL -C_1210_3225Metric_Pad1.33x2.70mm -Capacitor SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library -capacitor handsolder -0 -2 -2 -PCM_Capacitor_SMD_AKL -C_1210_3225Metric_Pad1.33x2.70mm_HandSolder -Capacitor SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library -capacitor handsolder -0 -2 -2 -PCM_Capacitor_SMD_AKL -C_1210_3225Metric_Pad1.42x2.65mm -Capacitor SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -capacitor handsolder -0 -2 -2 -PCM_Capacitor_SMD_AKL -C_1210_3225Metric_Pad1.42x2.65mm_HandSolder -Capacitor SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -capacitor handsolder -0 -2 -2 -PCM_Capacitor_SMD_AKL -C_1806_4516Metric -Capacitor SMD 1806 (4516 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.modelithics.com/models/Vendor/MuRata/BLM41P.pdf), Alternate KiCad Library -capacitor -0 -2 -2 -PCM_Capacitor_SMD_AKL -C_1806_4516Metric_Pad1.57x1.80mm -Capacitor SMD 1806 (4516 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.modelithics.com/models/Vendor/MuRata/BLM41P.pdf), Alternate KiCad Library -capacitor handsolder -0 -2 -2 -PCM_Capacitor_SMD_AKL -C_1806_4516Metric_Pad1.57x1.80mm_HandSolder -Capacitor SMD 1806 (4516 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.modelithics.com/models/Vendor/MuRata/BLM41P.pdf), Alternate KiCad Library -capacitor handsolder -0 -2 -2 -PCM_Capacitor_SMD_AKL -C_1812_4532Metric -Capacitor SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library -capacitor -0 -2 -2 -PCM_Capacitor_SMD_AKL -C_1812_4532Metric_Pad1.30x3.40mm -Capacitor SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), Alternate KiCad Library -capacitor handsolder -0 -2 -2 -PCM_Capacitor_SMD_AKL -C_1812_4532Metric_Pad1.30x3.40mm_HandSolder -Capacitor SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), Alternate KiCad Library -capacitor handsolder -0 -2 -2 -PCM_Capacitor_SMD_AKL -C_1812_4532Metric_Pad1.57x3.40mm -Capacitor SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library -capacitor handsolder -0 -2 -2 -PCM_Capacitor_SMD_AKL -C_1812_4532Metric_Pad1.57x3.40mm_HandSolder -Capacitor SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library -capacitor handsolder -0 -2 -2 -PCM_Capacitor_SMD_AKL -C_1825_4564Metric -Capacitor SMD 1825 (4564 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library -capacitor -0 -2 -2 -PCM_Capacitor_SMD_AKL -C_1825_4564Metric_Pad1.57x6.80mm -Capacitor SMD 1825 (4564 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library -capacitor handsolder -0 -2 -2 -PCM_Capacitor_SMD_AKL -C_1825_4564Metric_Pad1.57x6.80mm_HandSolder -Capacitor SMD 1825 (4564 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library -capacitor handsolder -0 -2 -2 -PCM_Capacitor_SMD_AKL -C_1825_4564Metric_Pad1.88x6.70mm -Capacitor SMD 1825 (4564 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: http://datasheets.avx.com/AVX-HV_MLCC.pdf), Alternate KiCad Library -capacitor handsolder -0 -2 -2 -PCM_Capacitor_SMD_AKL -C_1825_4564Metric_Pad1.88x6.70mm_HandSolder -Capacitor SMD 1825 (4564 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: http://datasheets.avx.com/AVX-HV_MLCC.pdf), Alternate KiCad Library -capacitor handsolder -0 -2 -2 -PCM_Capacitor_SMD_AKL -C_2010_5025Metric -Capacitor SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -capacitor -0 -2 -2 -PCM_Capacitor_SMD_AKL -C_2010_5025Metric_Pad1.52x2.65mm -Capacitor SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -capacitor handsolder -0 -2 -2 -PCM_Capacitor_SMD_AKL -C_2010_5025Metric_Pad1.52x2.65mm_HandSolder -Capacitor SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -capacitor handsolder -0 -2 -2 -PCM_Capacitor_SMD_AKL -C_2220_5650Metric -Capacitor SMD 2220 (5650 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://datasheets.avx.com/AVX-HV_MLCC.pdf), Alternate KiCad Library -capacitor -0 -2 -2 -PCM_Capacitor_SMD_AKL -C_2220_5650Metric_Pad1.97x5.40mm -Capacitor SMD 2220 (5650 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: http://datasheets.avx.com/AVX-HV_MLCC.pdf), Alternate KiCad Library -capacitor handsolder -0 -2 -2 -PCM_Capacitor_SMD_AKL -C_2220_5650Metric_Pad1.97x5.40mm_HandSolder -Capacitor SMD 2220 (5650 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: http://datasheets.avx.com/AVX-HV_MLCC.pdf), Alternate KiCad Library -capacitor handsolder -0 -2 -2 -PCM_Capacitor_SMD_AKL -C_2225_5664Metric -Capacitor SMD 2225 (5664 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://datasheets.avx.com/AVX-HV_MLCC.pdf), Alternate KiCad Library -capacitor -0 -2 -2 -PCM_Capacitor_SMD_AKL -C_2225_5664Metric_Pad1.80x6.60mm -Capacitor SMD 2225 (5664 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: http://datasheets.avx.com/AVX-HV_MLCC.pdf), Alternate KiCad Library -capacitor handsolder -0 -2 -2 -PCM_Capacitor_SMD_AKL -C_2225_5664Metric_Pad1.80x6.60mm_HandSolder -Capacitor SMD 2225 (5664 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: http://datasheets.avx.com/AVX-HV_MLCC.pdf), Alternate KiCad Library -capacitor handsolder -0 -2 -2 -PCM_Capacitor_SMD_AKL -C_2512_6332Metric -Capacitor SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -capacitor -0 -2 -2 -PCM_Capacitor_SMD_AKL -C_2512_6332Metric_Pad1.52x3.35mm -Capacitor SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -capacitor handsolder -0 -2 -2 -PCM_Capacitor_SMD_AKL -C_2512_6332Metric_Pad1.52x3.35mm_HandSolder -Capacitor SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -capacitor handsolder -0 -2 -2 -PCM_Capacitor_SMD_AKL -C_2816_7142Metric -Capacitor SMD 2816 (7142 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), Alternate KiCad Library -capacitor -0 -2 -2 -PCM_Capacitor_SMD_AKL -C_2816_7142Metric_Pad3.20x4.45mm -Capacitor SMD 2816 (7142 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), Alternate KiCad Library -capacitor handsolder -0 -2 -2 -PCM_Capacitor_SMD_AKL -C_2816_7142Metric_Pad3.20x4.45mm_HandSolder -Capacitor SMD 2816 (7142 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), Alternate KiCad Library -capacitor handsolder -0 -2 -2 -PCM_Capacitor_SMD_AKL -C_3640_9110Metric -Capacitor SMD 3640 (9110 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://datasheets.avx.com/AVX-HV_MLCC.pdf), Alternate KiCad Library -capacitor -0 -2 -2 -PCM_Capacitor_SMD_AKL -C_3640_9110Metric_Pad2.10x10.45mm -Capacitor SMD 3640 (9110 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: http://datasheets.avx.com/AVX-HV_MLCC.pdf), Alternate KiCad Library -capacitor handsolder -0 -2 -2 -PCM_Capacitor_SMD_AKL -C_3640_9110Metric_Pad2.10x10.45mm_HandSolder -Capacitor SMD 3640 (9110 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: http://datasheets.avx.com/AVX-HV_MLCC.pdf), Alternate KiCad Library -capacitor handsolder -0 -2 -2 -PCM_Capacitor_SMD_AKL -C_Elec_5x5.4 -SMD capacitor, aluminum electrolytic nonpolar, 5.0x5.4mm, Alternate KiCad Library -capacitor electrolyic nonpolar -0 -2 -2 -PCM_Capacitor_SMD_AKL -C_Elec_5x5.8 -SMD capacitor, aluminum electrolytic nonpolar, 5.0x5.8mm, Alternate KiCad Library -capacitor electrolyic nonpolar -0 -2 -2 -PCM_Capacitor_SMD_AKL -C_Elec_6.3x5.4 -SMD capacitor, aluminum electrolytic nonpolar, 6.3x5.4mm, Alternate KiCad Library -capacitor electrolyic nonpolar -0 -2 -2 -PCM_Capacitor_SMD_AKL -C_Elec_6.3x5.8 -SMD capacitor, aluminum electrolytic nonpolar, 6.3x5.8mm, Alternate KiCad Library -capacitor electrolyic nonpolar -0 -2 -2 -PCM_Capacitor_SMD_AKL -C_Elec_6.3x7.7 -SMD capacitor, aluminum electrolytic nonpolar, 6.3x7.7mm, Alternate KiCad Library -capacitor electrolyic nonpolar -0 -2 -2 -PCM_Capacitor_SMD_AKL -C_Elec_8x5.4 -SMD capacitor, aluminum electrolytic nonpolar, 8.0x5.4mm, Alternate KiCad Library -capacitor electrolyic nonpolar -0 -2 -2 -PCM_Capacitor_SMD_AKL -C_Elec_8x6.2 -SMD capacitor, aluminum electrolytic nonpolar, 8.0x6.2mm, Alternate KiCad Library -capacitor electrolyic nonpolar -0 -2 -2 -PCM_Capacitor_SMD_AKL -C_Elec_8x10.2 -SMD capacitor, aluminum electrolytic nonpolar, 8.0x10.2mm, Alternate KiCad Library -capacitor electrolyic nonpolar -0 -2 -2 -PCM_Capacitor_SMD_AKL -C_Elec_10x10.2 -SMD capacitor, aluminum electrolytic nonpolar, 10.0x10.2mm, Alternate KiCad Library -capacitor electrolyic nonpolar -0 -2 -2 -PCM_Capacitor_SMD_AKL -C_Trimmer_Murata_TZB4-A -trimmer capacitor SMD horizontal, http://www.murata.com/~/media/webrenewal/support/library/catalog/products/capacitor/trimmer/t13e.ashx?la=en-gb, Alternate KiCad Library - Murata TZB4 TZB4-A -0 -2 -2 -PCM_Capacitor_SMD_AKL -C_Trimmer_Murata_TZB4-B -trimmer capacitor SMD horizontal, http://www.murata.com/~/media/webrenewal/support/library/catalog/products/capacitor/trimmer/t13e.ashx?la=en-gb, Alternate KiCad Library - Murata TZB4 TZB4-A -0 -2 -2 -PCM_Capacitor_SMD_AKL -C_Trimmer_Murata_TZC3 -trimmer capacitor SMD horizontal, http://www.murata.com/~/media/webrenewal/support/library/catalog/products/capacitor/trimmer/t13e.ashx?la=en-gb, Alternate KiCad Library - Murata TZC3 -0 -2 -2 -PCM_Capacitor_SMD_AKL -C_Trimmer_Murata_TZR1 -trimmer capacitor SMD horizontal, http://www.murata.com/~/media/webrenewal/support/library/catalog/products/capacitor/trimmer/t13e.ashx?la=en-gb, Alternate KiCad Library - Murata TZR1 -0 -2 -2 -PCM_Capacitor_SMD_AKL -C_Trimmer_Murata_TZW4 -trimmer capacitor SMD horizontal, http://www.murata.com/~/media/webrenewal/support/library/catalog/products/capacitor/trimmer/t13e.ashx?la=en-gb, Alternate KiCad Library - Murata TZW4 -0 -2 -2 -PCM_Capacitor_SMD_AKL -C_Trimmer_Murata_TZY2 -trimmer capacitor SMD horizontal, http://www.murata.com/~/media/webrenewal/support/library/catalog/products/capacitor/trimmer/t13e.ashx?la=en-gb, Alternate KiCad Library - Murata TZY2 -0 -2 -2 -PCM_Capacitor_SMD_AKL -C_Trimmer_Sprague-Goodman_SGC3 -trimmer capacitor SMD horizontal, http://media.wix.com/ugd/d86717_38d9821e12823a7aa9cef38c6c2a73cc.pdf, Alternate KiCad Library - Sprague Goodman SGC3 -0 -2 -2 -PCM_Capacitor_SMD_AKL -C_Trimmer_Voltronics_JN -trimmer capacitor SMD horizontal, http://www.knowlescapacitors.com/File%20Library/Voltronics/English/GlobalNavigation/Products/Trimmer%20Capacitors/CerChipTrimCap.pdf, Alternate KiCad Library - Voltronics JN -0 -2 -2 -PCM_Capacitor_SMD_AKL -C_Trimmer_Voltronics_JQ -trimmer capacitor SMD horizontal, http://www.knowlescapacitors.com/File%20Library/Voltronics/English/GlobalNavigation/Products/Trimmer%20Capacitors/CerChipTrimCap.pdf, Alternate KiCad Library - Voltronics JQ -0 -2 -2 -PCM_Capacitor_SMD_AKL -C_Trimmer_Voltronics_JR -trimmer capacitor SMD horizontal, http://www.knowlescapacitors.com/File%20Library/Voltronics/English/GlobalNavigation/Products/Trimmer%20Capacitors/CerChipTrimCap.pdf, Alternate KiCad Library - Voltronics JR -0 -2 -2 -PCM_Capacitor_SMD_AKL -C_Trimmer_Voltronics_JV -trimmer capacitor SMD horizontal, http://www.knowlescapacitors.com/File%20Library/Voltronics/English/GlobalNavigation/Products/Trimmer%20Capacitors/CerChipTrimCap.pdf, Alternate KiCad Library - Voltronics JV -0 -2 -2 -PCM_Capacitor_SMD_AKL -C_Trimmer_Voltronics_JZ -trimmer capacitor SMD horizontal, http://www.knowlescapacitors.com/File%20Library/Voltronics/English/GlobalNavigation/Products/Trimmer%20Capacitors/CerChipTrimCap.pdf, Alternate KiCad Library - Voltronics JR -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -CP_Elec_5x3 -SMD capacitor, aluminum electrolytic, Nichicon, 5.0x3.0mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -CP_Elec_5x3.9 -SMD capacitor, aluminum electrolytic, Nichicon, 5.0x3.9mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -CP_Elec_5x4.4 -SMD capacitor, aluminum electrolytic, Panasonic B45, 5.0x4.4mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -CP_Elec_5x4.5 -SMD capacitor, aluminum electrolytic, Nichicon, 5.0x4.5mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -CP_Elec_5x5.3 -SMD capacitor, aluminum electrolytic, Nichicon, 5.0x5.3mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -CP_Elec_5x5.4 -SMD capacitor, aluminum electrolytic, Nichicon, 5.0x5.4mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -CP_Elec_5x5.7 -SMD capacitor, aluminum electrolytic, United Chemi-Con, 5.0x5.7mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -CP_Elec_5x5.8 -SMD capacitor, aluminum electrolytic, Panasonic, 5.0x5.8mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -CP_Elec_5x5.9 -SMD capacitor, aluminum electrolytic, Panasonic B6, 5.0x5.9mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -CP_Elec_6.3x3 -SMD capacitor, aluminum electrolytic, Nichicon, 6.3x3.0mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -CP_Elec_6.3x3.9 -SMD capacitor, aluminum electrolytic, Nichicon, 6.3x3.9mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -CP_Elec_6.3x4.5 -SMD capacitor, aluminum electrolytic, Nichicon, 6.3x4.5mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -CP_Elec_6.3x4.9 -SMD capacitor, aluminum electrolytic, Panasonic C5, 6.3x4.9mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -CP_Elec_6.3x5.2 -SMD capacitor, aluminum electrolytic, United Chemi-Con, 6.3x5.2mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -CP_Elec_6.3x5.3 -SMD capacitor, aluminum electrolytic, Cornell Dubilier, 6.3x5.3mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -CP_Elec_6.3x5.4 -SMD capacitor, aluminum electrolytic, Panasonic C55, 6.3x5.4mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -CP_Elec_6.3x5.4_Nichicon -SMD capacitor, aluminum electrolytic, Nichicon, 6.3x5.4mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -CP_Elec_6.3x5.7 -SMD capacitor, aluminum electrolytic, United Chemi-Con, 6.3x5.7mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -CP_Elec_6.3x5.8 -SMD capacitor, aluminum electrolytic, Nichicon, 6.3x5.8mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -CP_Elec_6.3x5.9 -SMD capacitor, aluminum electrolytic, Panasonic C6, 6.3x5.9mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -CP_Elec_6.3x7.7 -SMD capacitor, aluminum electrolytic, Nichicon, 6.3x7.7mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -CP_Elec_6.3x9.9 -SMD capacitor, aluminum electrolytic, Panasonic C10, 6.3x9.9mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -CP_Elec_8x5.4 -SMD capacitor, aluminum electrolytic, Nichicon, 8.0x5.4mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -CP_Elec_8x6.2 -SMD capacitor, aluminum electrolytic, Nichicon, 8.0x6.2mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -CP_Elec_8x6.5 -SMD capacitor, aluminum electrolytic, Rubycon, 8.0x6.5mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -CP_Elec_8x6.7 -SMD capacitor, aluminum electrolytic, United Chemi-Con, 8.0x6.7mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -CP_Elec_8x6.9 -SMD capacitor, aluminum electrolytic, Panasonic E7, 8.0x6.9mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -CP_Elec_8x10 -SMD capacitor, aluminum electrolytic, Nichicon, 8.0x10mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -CP_Elec_8x10.5 -SMD capacitor, aluminum electrolytic, Vishay 0810, 8.0x10.5mm, http://www.vishay.com/docs/28395/150crz.pdf, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -CP_Elec_8x11.9 -SMD capacitor, aluminum electrolytic, Panasonic E12, 8.0x11.9mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -CP_Elec_10x7.7 -SMD capacitor, aluminum electrolytic, Nichicon, 10.0x7.7mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -CP_Elec_10x7.9 -SMD capacitor, aluminum electrolytic, Panasonic F8, 10.0x7.9mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -CP_Elec_10x10 -SMD capacitor, aluminum electrolytic, Nichicon, 10.0x10.0mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -CP_Elec_10x10.5 -SMD capacitor, aluminum electrolytic, Vishay 1010, 10.0x10.5mm, http://www.vishay.com/docs/28395/150crz.pdf, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -CP_Elec_10x12.5 -SMD capacitor, aluminum electrolytic, Vishay 1012, 10.0x12.5mm, http://www.vishay.com/docs/28395/150crz.pdf, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -CP_Elec_10x12.6 -SMD capacitor, aluminum electrolytic, Panasonic F12, 10.0x12.6mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -CP_Elec_10x14.3 -SMD capacitor, aluminum electrolytic, Vishay 1014, 10.0x14.3mm, http://www.vishay.com/docs/28395/150crz.pdf, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -CP_Elec_16x17.5 -SMD capacitor, aluminum electrolytic, Vishay 1616, 16.0x17.5mm, http://www.vishay.com/docs/28395/150crz.pdf, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -CP_Elec_16x22 -SMD capacitor, aluminum electrolytic, Vishay 1621, 16.0x22.0mm, http://www.vishay.com/docs/28395/150crz.pdf, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -CP_Elec_18x17.5 -SMD capacitor, aluminum electrolytic, Vishay 1816, 18.0x17.5mm, http://www.vishay.com/docs/28395/150crz.pdf, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -CP_Elec_18x22 -SMD capacitor, aluminum electrolytic, Vishay 1821, 18.0x22.0mm, http://www.vishay.com/docs/28395/150crz.pdf, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -C_0201_0603Metric -Capacitor SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), Alternate KiCad Library -capacitor -0 -4 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -C_0201_0603Metric_Pad0.64x0.40mm -Capacitor SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), Alternate KiCad Library -capacitor handsolder -0 -4 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -C_0402_1005Metric -Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library -capacitor -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -C_0402_1005Metric_Pad0.74x0.62mm -Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library -capacitor handsolder -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -C_0504_1310Metric -Capacitor SMD 0504 (1310 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library -capacitor -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -C_0504_1310Metric_Pad0.83x1.28mm -Capacitor SMD 0504 (1310 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library -capacitor handsolder -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -C_0603_1608Metric -Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library -capacitor -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -C_0603_1608Metric_Pad1.05x0.95mm -Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -capacitor handsolder -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -C_0603_1608Metric_Pad1.08x0.95mm -Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library -capacitor handsolder -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -C_0805_2012Metric -Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), Alternate KiCad Library -capacitor -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -C_0805_2012Metric_Pad1.15x1.40mm -Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), Alternate KiCad Library -capacitor handsolder -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -C_0805_2012Metric_Pad1.18x1.45mm -Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), Alternate KiCad Library -capacitor handsolder -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -C_01005_0402Metric -Capacitor SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), Alternate KiCad Library -capacitor -0 -4 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -C_01005_0402Metric_Pad0.57x0.30mm -Capacitor SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), Alternate KiCad Library -capacitor handsolder -0 -4 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -C_1206_3216Metric -Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library -capacitor -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -C_1206_3216Metric_Pad1.33x1.80mm -Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library -capacitor handsolder -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -C_1206_3216Metric_Pad1.42x1.75mm -Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -capacitor handsolder -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -C_1210_3225Metric -Capacitor SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library -capacitor -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -C_1210_3225Metric_Pad1.33x2.70mm -Capacitor SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library -capacitor handsolder -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -C_1210_3225Metric_Pad1.42x2.65mm -Capacitor SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -capacitor handsolder -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -C_1806_4516Metric -Capacitor SMD 1806 (4516 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.modelithics.com/models/Vendor/MuRata/BLM41P.pdf), Alternate KiCad Library -capacitor -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -C_1806_4516Metric_Pad1.57x1.80mm -Capacitor SMD 1806 (4516 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.modelithics.com/models/Vendor/MuRata/BLM41P.pdf), Alternate KiCad Library -capacitor handsolder -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -C_1812_4532Metric -Capacitor SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library -capacitor -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -C_1812_4532Metric_Pad1.30x3.40mm -Capacitor SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), Alternate KiCad Library -capacitor handsolder -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -C_1812_4532Metric_Pad1.57x3.40mm -Capacitor SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library -capacitor handsolder -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -C_1825_4564Metric -Capacitor SMD 1825 (4564 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library -capacitor -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -C_1825_4564Metric_Pad1.57x6.80mm -Capacitor SMD 1825 (4564 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library -capacitor handsolder -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -C_1825_4564Metric_Pad1.88x6.70mm -Capacitor SMD 1825 (4564 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: http://datasheets.avx.com/AVX-HV_MLCC.pdf), Alternate KiCad Library -capacitor handsolder -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -C_2010_5025Metric -Capacitor SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -capacitor -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -C_2010_5025Metric_Pad1.52x2.65mm -Capacitor SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -capacitor handsolder -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -C_2220_5650Metric -Capacitor SMD 2220 (5650 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://datasheets.avx.com/AVX-HV_MLCC.pdf), Alternate KiCad Library -capacitor -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -C_2220_5650Metric_Pad1.97x5.40mm -Capacitor SMD 2220 (5650 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: http://datasheets.avx.com/AVX-HV_MLCC.pdf), Alternate KiCad Library -capacitor handsolder -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -C_2225_5664Metric -Capacitor SMD 2225 (5664 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://datasheets.avx.com/AVX-HV_MLCC.pdf), Alternate KiCad Library -capacitor -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -C_2225_5664Metric_Pad1.80x6.60mm -Capacitor SMD 2225 (5664 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: http://datasheets.avx.com/AVX-HV_MLCC.pdf), Alternate KiCad Library -capacitor handsolder -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -C_2512_6332Metric -Capacitor SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -capacitor -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -C_2512_6332Metric_Pad1.52x3.35mm -Capacitor SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -capacitor handsolder -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -C_2816_7142Metric -Capacitor SMD 2816 (7142 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), Alternate KiCad Library -capacitor -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -C_2816_7142Metric_Pad3.20x4.45mm -Capacitor SMD 2816 (7142 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), Alternate KiCad Library -capacitor handsolder -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -C_3640_9110Metric -Capacitor SMD 3640 (9110 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://datasheets.avx.com/AVX-HV_MLCC.pdf), Alternate KiCad Library -capacitor -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -C_3640_9110Metric_Pad2.10x10.45mm -Capacitor SMD 3640 (9110 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: http://datasheets.avx.com/AVX-HV_MLCC.pdf), Alternate KiCad Library -capacitor handsolder -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -C_Elec_5x5.4 -SMD capacitor, aluminum electrolytic nonpolar, 5.0x5.4mm, Alternate KiCad Library -capacitor electrolyic nonpolar -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -C_Elec_5x5.8 -SMD capacitor, aluminum electrolytic nonpolar, 5.0x5.8mm, Alternate KiCad Library -capacitor electrolyic nonpolar -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -C_Elec_6.3x5.4 -SMD capacitor, aluminum electrolytic nonpolar, 6.3x5.4mm, Alternate KiCad Library -capacitor electrolyic nonpolar -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -C_Elec_6.3x5.8 -SMD capacitor, aluminum electrolytic nonpolar, 6.3x5.8mm, Alternate KiCad Library -capacitor electrolyic nonpolar -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -C_Elec_6.3x7.7 -SMD capacitor, aluminum electrolytic nonpolar, 6.3x7.7mm, Alternate KiCad Library -capacitor electrolyic nonpolar -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -C_Elec_8x5.4 -SMD capacitor, aluminum electrolytic nonpolar, 8.0x5.4mm, Alternate KiCad Library -capacitor electrolyic nonpolar -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -C_Elec_8x6.2 -SMD capacitor, aluminum electrolytic nonpolar, 8.0x6.2mm, Alternate KiCad Library -capacitor electrolyic nonpolar -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -C_Elec_8x10.2 -SMD capacitor, aluminum electrolytic nonpolar, 8.0x10.2mm, Alternate KiCad Library -capacitor electrolyic nonpolar -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -C_Elec_10x10.2 -SMD capacitor, aluminum electrolytic nonpolar, 10.0x10.2mm, Alternate KiCad Library -capacitor electrolyic nonpolar -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -C_Trimmer_Murata_TZB4-A -trimmer capacitor SMD horizontal, http://www.murata.com/~/media/webrenewal/support/library/catalog/products/capacitor/trimmer/t13e.ashx?la=en-gb, Alternate KiCad Library - Murata TZB4 TZB4-A -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -C_Trimmer_Murata_TZB4-B -trimmer capacitor SMD horizontal, http://www.murata.com/~/media/webrenewal/support/library/catalog/products/capacitor/trimmer/t13e.ashx?la=en-gb, Alternate KiCad Library - Murata TZB4 TZB4-A -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -C_Trimmer_Murata_TZC3 -trimmer capacitor SMD horizontal, http://www.murata.com/~/media/webrenewal/support/library/catalog/products/capacitor/trimmer/t13e.ashx?la=en-gb, Alternate KiCad Library - Murata TZC3 -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -C_Trimmer_Murata_TZR1 -trimmer capacitor SMD horizontal, http://www.murata.com/~/media/webrenewal/support/library/catalog/products/capacitor/trimmer/t13e.ashx?la=en-gb, Alternate KiCad Library - Murata TZR1 -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -C_Trimmer_Murata_TZW4 -trimmer capacitor SMD horizontal, http://www.murata.com/~/media/webrenewal/support/library/catalog/products/capacitor/trimmer/t13e.ashx?la=en-gb, Alternate KiCad Library - Murata TZW4 -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -C_Trimmer_Murata_TZY2 -trimmer capacitor SMD horizontal, http://www.murata.com/~/media/webrenewal/support/library/catalog/products/capacitor/trimmer/t13e.ashx?la=en-gb, Alternate KiCad Library - Murata TZY2 -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -C_Trimmer_Sprague-Goodman_SGC3 -trimmer capacitor SMD horizontal, http://media.wix.com/ugd/d86717_38d9821e12823a7aa9cef38c6c2a73cc.pdf, Alternate KiCad Library - Sprague Goodman SGC3 -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -C_Trimmer_Voltronics_JN -trimmer capacitor SMD horizontal, http://www.knowlescapacitors.com/File%20Library/Voltronics/English/GlobalNavigation/Products/Trimmer%20Capacitors/CerChipTrimCap.pdf, Alternate KiCad Library - Voltronics JN -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -C_Trimmer_Voltronics_JQ -trimmer capacitor SMD horizontal, http://www.knowlescapacitors.com/File%20Library/Voltronics/English/GlobalNavigation/Products/Trimmer%20Capacitors/CerChipTrimCap.pdf, Alternate KiCad Library - Voltronics JQ -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -C_Trimmer_Voltronics_JR -trimmer capacitor SMD horizontal, http://www.knowlescapacitors.com/File%20Library/Voltronics/English/GlobalNavigation/Products/Trimmer%20Capacitors/CerChipTrimCap.pdf, Alternate KiCad Library - Voltronics JR -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -C_Trimmer_Voltronics_JV -trimmer capacitor SMD horizontal, http://www.knowlescapacitors.com/File%20Library/Voltronics/English/GlobalNavigation/Products/Trimmer%20Capacitors/CerChipTrimCap.pdf, Alternate KiCad Library - Voltronics JV -0 -2 -2 -PCM_Capacitor_SMD_Handsoldering_AKL -C_Trimmer_Voltronics_JZ -trimmer capacitor SMD horizontal, http://www.knowlescapacitors.com/File%20Library/Voltronics/English/GlobalNavigation/Products/Trimmer%20Capacitors/CerChipTrimCap.pdf, Alternate KiCad Library - Voltronics JR -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -CP_Elec_5x3 -SMD capacitor, aluminum electrolytic, Nichicon, 5.0x3.0mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -CP_Elec_5x3.9 -SMD capacitor, aluminum electrolytic, Nichicon, 5.0x3.9mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -CP_Elec_5x4.4 -SMD capacitor, aluminum electrolytic, Panasonic B45, 5.0x4.4mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -CP_Elec_5x4.5 -SMD capacitor, aluminum electrolytic, Nichicon, 5.0x4.5mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -CP_Elec_5x5.3 -SMD capacitor, aluminum electrolytic, Nichicon, 5.0x5.3mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -CP_Elec_5x5.4 -SMD capacitor, aluminum electrolytic, Nichicon, 5.0x5.4mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -CP_Elec_5x5.7 -SMD capacitor, aluminum electrolytic, United Chemi-Con, 5.0x5.7mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -CP_Elec_5x5.8 -SMD capacitor, aluminum electrolytic, Panasonic, 5.0x5.8mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -CP_Elec_5x5.9 -SMD capacitor, aluminum electrolytic, Panasonic B6, 5.0x5.9mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -CP_Elec_6.3x3 -SMD capacitor, aluminum electrolytic, Nichicon, 6.3x3.0mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -CP_Elec_6.3x3.9 -SMD capacitor, aluminum electrolytic, Nichicon, 6.3x3.9mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -CP_Elec_6.3x4.5 -SMD capacitor, aluminum electrolytic, Nichicon, 6.3x4.5mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -CP_Elec_6.3x4.9 -SMD capacitor, aluminum electrolytic, Panasonic C5, 6.3x4.9mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -CP_Elec_6.3x5.2 -SMD capacitor, aluminum electrolytic, United Chemi-Con, 6.3x5.2mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -CP_Elec_6.3x5.3 -SMD capacitor, aluminum electrolytic, Cornell Dubilier, 6.3x5.3mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -CP_Elec_6.3x5.4 -SMD capacitor, aluminum electrolytic, Panasonic C55, 6.3x5.4mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -CP_Elec_6.3x5.4_Nichicon -SMD capacitor, aluminum electrolytic, Nichicon, 6.3x5.4mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -CP_Elec_6.3x5.7 -SMD capacitor, aluminum electrolytic, United Chemi-Con, 6.3x5.7mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -CP_Elec_6.3x5.8 -SMD capacitor, aluminum electrolytic, Nichicon, 6.3x5.8mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -CP_Elec_6.3x5.9 -SMD capacitor, aluminum electrolytic, Panasonic C6, 6.3x5.9mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -CP_Elec_6.3x7.7 -SMD capacitor, aluminum electrolytic, Nichicon, 6.3x7.7mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -CP_Elec_6.3x9.9 -SMD capacitor, aluminum electrolytic, Panasonic C10, 6.3x9.9mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -CP_Elec_8x5.4 -SMD capacitor, aluminum electrolytic, Nichicon, 8.0x5.4mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -CP_Elec_8x6.2 -SMD capacitor, aluminum electrolytic, Nichicon, 8.0x6.2mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -CP_Elec_8x6.5 -SMD capacitor, aluminum electrolytic, Rubycon, 8.0x6.5mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -CP_Elec_8x6.7 -SMD capacitor, aluminum electrolytic, United Chemi-Con, 8.0x6.7mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -CP_Elec_8x6.9 -SMD capacitor, aluminum electrolytic, Panasonic E7, 8.0x6.9mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -CP_Elec_8x10 -SMD capacitor, aluminum electrolytic, Nichicon, 8.0x10mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -CP_Elec_8x10.5 -SMD capacitor, aluminum electrolytic, Vishay 0810, 8.0x10.5mm, http://www.vishay.com/docs/28395/150crz.pdf, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -CP_Elec_8x11.9 -SMD capacitor, aluminum electrolytic, Panasonic E12, 8.0x11.9mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -CP_Elec_10x7.7 -SMD capacitor, aluminum electrolytic, Nichicon, 10.0x7.7mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -CP_Elec_10x7.9 -SMD capacitor, aluminum electrolytic, Panasonic F8, 10.0x7.9mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -CP_Elec_10x10 -SMD capacitor, aluminum electrolytic, Nichicon, 10.0x10.0mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -CP_Elec_10x10.5 -SMD capacitor, aluminum electrolytic, Vishay 1010, 10.0x10.5mm, http://www.vishay.com/docs/28395/150crz.pdf, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -CP_Elec_10x12.5 -SMD capacitor, aluminum electrolytic, Vishay 1012, 10.0x12.5mm, http://www.vishay.com/docs/28395/150crz.pdf, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -CP_Elec_10x12.6 -SMD capacitor, aluminum electrolytic, Panasonic F12, 10.0x12.6mm, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -CP_Elec_10x14.3 -SMD capacitor, aluminum electrolytic, Vishay 1014, 10.0x14.3mm, http://www.vishay.com/docs/28395/150crz.pdf, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -CP_Elec_16x17.5 -SMD capacitor, aluminum electrolytic, Vishay 1616, 16.0x17.5mm, http://www.vishay.com/docs/28395/150crz.pdf, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -CP_Elec_16x22 -SMD capacitor, aluminum electrolytic, Vishay 1621, 16.0x22.0mm, http://www.vishay.com/docs/28395/150crz.pdf, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -CP_Elec_18x17.5 -SMD capacitor, aluminum electrolytic, Vishay 1816, 18.0x17.5mm, http://www.vishay.com/docs/28395/150crz.pdf, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -CP_Elec_18x22 -SMD capacitor, aluminum electrolytic, Vishay 1821, 18.0x22.0mm, http://www.vishay.com/docs/28395/150crz.pdf, Alternate KiCad Library -capacitor electrolytic -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -C_0201_0603Metric -Capacitor SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), Alternate KiCad Library -capacitor -0 -4 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -C_0201_0603Metric_Pad0.64x0.40mm -Capacitor SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), Alternate KiCad Library -capacitor handsolder -0 -4 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -C_0402_1005Metric -Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library -capacitor -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -C_0402_1005Metric_Pad0.74x0.62mm -Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library -capacitor handsolder -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -C_0504_1310Metric -Capacitor SMD 0504 (1310 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library -capacitor -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -C_0504_1310Metric_Pad0.83x1.28mm -Capacitor SMD 0504 (1310 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library -capacitor handsolder -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -C_0603_1608Metric -Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library -capacitor -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -C_0603_1608Metric_Pad1.05x0.95mm -Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -capacitor handsolder -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -C_0603_1608Metric_Pad1.08x0.95mm -Capacitor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library -capacitor handsolder -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -C_0805_2012Metric -Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), Alternate KiCad Library -capacitor -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -C_0805_2012Metric_Pad1.15x1.40mm -Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), Alternate KiCad Library -capacitor handsolder -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -C_0805_2012Metric_Pad1.18x1.45mm -Capacitor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf, https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), Alternate KiCad Library -capacitor handsolder -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -C_01005_0402Metric -Capacitor SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), Alternate KiCad Library -capacitor -0 -4 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -C_01005_0402Metric_Pad0.57x0.30mm -Capacitor SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), Alternate KiCad Library -capacitor handsolder -0 -4 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -C_1206_3216Metric -Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library -capacitor -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -C_1206_3216Metric_Pad1.33x1.80mm -Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library -capacitor handsolder -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -C_1206_3216Metric_Pad1.42x1.75mm -Capacitor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -capacitor handsolder -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -C_1210_3225Metric -Capacitor SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library -capacitor -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -C_1210_3225Metric_Pad1.33x2.70mm -Capacitor SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library -capacitor handsolder -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -C_1210_3225Metric_Pad1.42x2.65mm -Capacitor SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -capacitor handsolder -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -C_1806_4516Metric -Capacitor SMD 1806 (4516 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.modelithics.com/models/Vendor/MuRata/BLM41P.pdf), Alternate KiCad Library -capacitor -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -C_1806_4516Metric_Pad1.57x1.80mm -Capacitor SMD 1806 (4516 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.modelithics.com/models/Vendor/MuRata/BLM41P.pdf), Alternate KiCad Library -capacitor handsolder -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -C_1812_4532Metric -Capacitor SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library -capacitor -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -C_1812_4532Metric_Pad1.30x3.40mm -Capacitor SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), Alternate KiCad Library -capacitor handsolder -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -C_1812_4532Metric_Pad1.57x3.40mm -Capacitor SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library -capacitor handsolder -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -C_1825_4564Metric -Capacitor SMD 1825 (4564 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library -capacitor -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -C_1825_4564Metric_Pad1.57x6.80mm -Capacitor SMD 1825 (4564 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library -capacitor handsolder -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -C_1825_4564Metric_Pad1.88x6.70mm -Capacitor SMD 1825 (4564 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: http://datasheets.avx.com/AVX-HV_MLCC.pdf), Alternate KiCad Library -capacitor handsolder -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -C_2010_5025Metric -Capacitor SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -capacitor -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -C_2010_5025Metric_Pad1.52x2.65mm -Capacitor SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -capacitor handsolder -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -C_2220_5650Metric -Capacitor SMD 2220 (5650 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://datasheets.avx.com/AVX-HV_MLCC.pdf), Alternate KiCad Library -capacitor -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -C_2220_5650Metric_Pad1.97x5.40mm -Capacitor SMD 2220 (5650 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: http://datasheets.avx.com/AVX-HV_MLCC.pdf), Alternate KiCad Library -capacitor handsolder -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -C_2225_5664Metric -Capacitor SMD 2225 (5664 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://datasheets.avx.com/AVX-HV_MLCC.pdf), Alternate KiCad Library -capacitor -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -C_2225_5664Metric_Pad1.80x6.60mm -Capacitor SMD 2225 (5664 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: http://datasheets.avx.com/AVX-HV_MLCC.pdf), Alternate KiCad Library -capacitor handsolder -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -C_2512_6332Metric -Capacitor SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -capacitor -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -C_2512_6332Metric_Pad1.52x3.35mm -Capacitor SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -capacitor handsolder -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -C_2816_7142Metric -Capacitor SMD 2816 (7142 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), Alternate KiCad Library -capacitor -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -C_2816_7142Metric_Pad3.20x4.45mm -Capacitor SMD 2816 (7142 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), Alternate KiCad Library -capacitor handsolder -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -C_3640_9110Metric -Capacitor SMD 3640 (9110 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://datasheets.avx.com/AVX-HV_MLCC.pdf), Alternate KiCad Library -capacitor -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -C_3640_9110Metric_Pad2.10x10.45mm -Capacitor SMD 3640 (9110 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: http://datasheets.avx.com/AVX-HV_MLCC.pdf), Alternate KiCad Library -capacitor handsolder -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -C_Elec_5x5.4 -SMD capacitor, aluminum electrolytic nonpolar, 5.0x5.4mm, Alternate KiCad Library -capacitor electrolyic nonpolar -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -C_Elec_5x5.8 -SMD capacitor, aluminum electrolytic nonpolar, 5.0x5.8mm, Alternate KiCad Library -capacitor electrolyic nonpolar -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -C_Elec_6.3x5.4 -SMD capacitor, aluminum electrolytic nonpolar, 6.3x5.4mm, Alternate KiCad Library -capacitor electrolyic nonpolar -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -C_Elec_6.3x5.8 -SMD capacitor, aluminum electrolytic nonpolar, 6.3x5.8mm, Alternate KiCad Library -capacitor electrolyic nonpolar -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -C_Elec_6.3x7.7 -SMD capacitor, aluminum electrolytic nonpolar, 6.3x7.7mm, Alternate KiCad Library -capacitor electrolyic nonpolar -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -C_Elec_8x5.4 -SMD capacitor, aluminum electrolytic nonpolar, 8.0x5.4mm, Alternate KiCad Library -capacitor electrolyic nonpolar -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -C_Elec_8x6.2 -SMD capacitor, aluminum electrolytic nonpolar, 8.0x6.2mm, Alternate KiCad Library -capacitor electrolyic nonpolar -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -C_Elec_8x10.2 -SMD capacitor, aluminum electrolytic nonpolar, 8.0x10.2mm, Alternate KiCad Library -capacitor electrolyic nonpolar -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -C_Elec_10x10.2 -SMD capacitor, aluminum electrolytic nonpolar, 10.0x10.2mm, Alternate KiCad Library -capacitor electrolyic nonpolar -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -C_Trimmer_Murata_TZB4-A -trimmer capacitor SMD horizontal, http://www.murata.com/~/media/webrenewal/support/library/catalog/products/capacitor/trimmer/t13e.ashx?la=en-gb, Alternate KiCad Library - Murata TZB4 TZB4-A -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -C_Trimmer_Murata_TZB4-B -trimmer capacitor SMD horizontal, http://www.murata.com/~/media/webrenewal/support/library/catalog/products/capacitor/trimmer/t13e.ashx?la=en-gb, Alternate KiCad Library - Murata TZB4 TZB4-A -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -C_Trimmer_Murata_TZC3 -trimmer capacitor SMD horizontal, http://www.murata.com/~/media/webrenewal/support/library/catalog/products/capacitor/trimmer/t13e.ashx?la=en-gb, Alternate KiCad Library - Murata TZC3 -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -C_Trimmer_Murata_TZR1 -trimmer capacitor SMD horizontal, http://www.murata.com/~/media/webrenewal/support/library/catalog/products/capacitor/trimmer/t13e.ashx?la=en-gb, Alternate KiCad Library - Murata TZR1 -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -C_Trimmer_Murata_TZW4 -trimmer capacitor SMD horizontal, http://www.murata.com/~/media/webrenewal/support/library/catalog/products/capacitor/trimmer/t13e.ashx?la=en-gb, Alternate KiCad Library - Murata TZW4 -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -C_Trimmer_Murata_TZY2 -trimmer capacitor SMD horizontal, http://www.murata.com/~/media/webrenewal/support/library/catalog/products/capacitor/trimmer/t13e.ashx?la=en-gb, Alternate KiCad Library - Murata TZY2 -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -C_Trimmer_Sprague-Goodman_SGC3 -trimmer capacitor SMD horizontal, http://media.wix.com/ugd/d86717_38d9821e12823a7aa9cef38c6c2a73cc.pdf, Alternate KiCad Library - Sprague Goodman SGC3 -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -C_Trimmer_Voltronics_JN -trimmer capacitor SMD horizontal, http://www.knowlescapacitors.com/File%20Library/Voltronics/English/GlobalNavigation/Products/Trimmer%20Capacitors/CerChipTrimCap.pdf, Alternate KiCad Library - Voltronics JN -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -C_Trimmer_Voltronics_JQ -trimmer capacitor SMD horizontal, http://www.knowlescapacitors.com/File%20Library/Voltronics/English/GlobalNavigation/Products/Trimmer%20Capacitors/CerChipTrimCap.pdf, Alternate KiCad Library - Voltronics JQ -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -C_Trimmer_Voltronics_JR -trimmer capacitor SMD horizontal, http://www.knowlescapacitors.com/File%20Library/Voltronics/English/GlobalNavigation/Products/Trimmer%20Capacitors/CerChipTrimCap.pdf, Alternate KiCad Library - Voltronics JR -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -C_Trimmer_Voltronics_JV -trimmer capacitor SMD horizontal, http://www.knowlescapacitors.com/File%20Library/Voltronics/English/GlobalNavigation/Products/Trimmer%20Capacitors/CerChipTrimCap.pdf, Alternate KiCad Library - Voltronics JV -0 -2 -2 -PCM_Capacitor_SMD_US_Handsoldering_AKL -C_Trimmer_Voltronics_JZ -trimmer capacitor SMD horizontal, http://www.knowlescapacitors.com/File%20Library/Voltronics/English/GlobalNavigation/Products/Trimmer%20Capacitors/CerChipTrimCap.pdf, Alternate KiCad Library - Voltronics JR -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L10.0mm_D4.5mm_P15.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=10*4.5mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 15mm length 10mm diameter 4.5mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L10.0mm_D6.0mm_P15.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=10*6mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 15mm length 10mm diameter 6mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L11.0mm_D5.0mm_P18.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=18mm, , length*diameter=11*5mm^2, Electrolytic Capacitor, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 18mm length 11mm diameter 5mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L11.0mm_D6.0mm_P18.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=18mm, , length*diameter=11*6mm^2, Electrolytic Capacitor, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 18mm length 11mm diameter 6mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L11.0mm_D8.0mm_P15.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=11*8mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 15mm length 11mm diameter 8mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L18.0mm_D6.5mm_P25.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=18*6.5mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 25mm length 18mm diameter 6.5mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L18.0mm_D8.0mm_P25.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=18*8mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 25mm length 18mm diameter 8mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L18.0mm_D10.0mm_P25.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=18*10mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 25mm length 18mm diameter 10mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L20.0mm_D10.0mm_P26.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=26mm, , length*diameter=20*10mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 26mm length 20mm diameter 10mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L20.0mm_D13.0mm_P26.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=26mm, , length*diameter=20*13mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 26mm length 20mm diameter 13mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L21.0mm_D8.0mm_P28.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=28mm, , length*diameter=21*8mm^2, Electrolytic Capacitor, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 28mm length 21mm diameter 8mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L25.0mm_D10.0mm_P30.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=30mm, , length*diameter=25*10mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 30mm length 25mm diameter 10mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L25.0mm_D10.0mm_P30.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=30mm, , length*diameter=25*10mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 30mm length 25mm diameter 10mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L26.5mm_D20.0mm_P33.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=33mm, , length*diameter=26.5*20mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 33mm length 26.5mm diameter 20mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L26.5mm_D20.0mm_P33.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=33mm, , length*diameter=26.5*20mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 33mm length 26.5mm diameter 20mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L29.0mm_D10.0mm_P35.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=29*10mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 35mm length 29mm diameter 10mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L29.0mm_D10.0mm_P35.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=35mm, , length*diameter=29*10mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 35mm length 29mm diameter 10mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L29.0mm_D13.0mm_P35.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=29*13mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 35mm length 29mm diameter 13mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L29.0mm_D13.0mm_P35.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=35mm, , length*diameter=29*13mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 35mm length 29mm diameter 13mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L29.0mm_D16.0mm_P35.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=29*16mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 35mm length 29mm diameter 16mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L29.0mm_D16.0mm_P35.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=35mm, , length*diameter=29*16mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 35mm length 29mm diameter 16mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L29.0mm_D20.0mm_P35.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=29*20mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 35mm length 29mm diameter 20mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L29.0mm_D20.0mm_P35.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=35mm, , length*diameter=29*20mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 35mm length 29mm diameter 20mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L30.0mm_D10.0mm_P35.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=30*10mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 35mm length 30mm diameter 10mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L30.0mm_D10.0mm_P35.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=35mm, , length*diameter=30*10mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 35mm length 30mm diameter 10mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L30.0mm_D12.5mm_P35.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=30*12.5mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 35mm length 30mm diameter 12.5mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L30.0mm_D12.5mm_P35.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=35mm, , length*diameter=30*12.5mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 35mm length 30mm diameter 12.5mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L30.0mm_D15.0mm_P35.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=30*15mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 35mm length 30mm diameter 15mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L30.0mm_D15.0mm_P35.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=35mm, , length*diameter=30*15mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 35mm length 30mm diameter 15mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L30.0mm_D18.0mm_P35.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=30*18mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 35mm length 30mm diameter 18mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L30.0mm_D18.0mm_P35.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=35mm, , length*diameter=30*18mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 35mm length 30mm diameter 18mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L34.5mm_D20.0mm_P41.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=41mm, , length*diameter=34.5*20mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 41mm length 34.5mm diameter 20mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L34.5mm_D20.0mm_P41.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=41mm, , length*diameter=34.5*20mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 41mm length 34.5mm diameter 20mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L37.0mm_D13.0mm_P43.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=43mm, , length*diameter=37*13mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 43mm length 37mm diameter 13mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L37.0mm_D13.0mm_P43.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=43mm, , length*diameter=37*13mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 43mm length 37mm diameter 13mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L37.0mm_D16.0mm_P43.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=43mm, , length*diameter=37*16mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 43mm length 37mm diameter 16mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L37.0mm_D16.0mm_P43.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=43mm, , length*diameter=37*16mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 43mm length 37mm diameter 16mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L37.0mm_D20.0mm_P43.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=43mm, , length*diameter=37*20mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 43mm length 37mm diameter 20mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L37.0mm_D20.0mm_P43.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=43mm, , length*diameter=37*20mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 43mm length 37mm diameter 20mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L38.0mm_D18.0mm_P44.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=44mm, , length*diameter=38*18mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 44mm length 38mm diameter 18mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L38.0mm_D18.0mm_P44.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=44mm, , length*diameter=38*18mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 44mm length 38mm diameter 18mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L38.0mm_D21.0mm_P44.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=44mm, , length*diameter=38*21mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 44mm length 38mm diameter 21mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L38.0mm_D21.0mm_P44.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=44mm, , length*diameter=38*21mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 44mm length 38mm diameter 21mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L40.0mm_D16.0mm_P48.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=48mm, , length*diameter=40*16mm^2, Electrolytic Capacitor, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 48mm length 40mm diameter 16mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L40.0mm_D16.0mm_P48.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=48mm, , length*diameter=40*16mm^2, Electrolytic Capacitor, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 48mm length 40mm diameter 16mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L42.0mm_D23.0mm_P45.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=45mm, , length*diameter=42*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 23.0mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L42.0mm_D23.0mm_P45.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=45mm, , length*diameter=42*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 23.0mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L42.0mm_D26.0mm_P45.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=45mm, , length*diameter=42*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 26mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L42.0mm_D26.0mm_P45.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=45mm, , length*diameter=42*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 26mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L42.0mm_D29.0mm_P45.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=45mm, , length*diameter=42*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 29.0mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L42.0mm_D29.0mm_P45.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=45mm, , length*diameter=42*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 29.0mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L42.0mm_D32.0mm_P45.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=45mm, , length*diameter=42*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 32.0mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L42.0mm_D32.0mm_P45.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=45mm, , length*diameter=42*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 32.0mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L42.0mm_D35.0mm_P45.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=45mm, , length*diameter=42*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 35.0mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L42.0mm_D35.0mm_P45.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=45mm, , length*diameter=42*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 35.0mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L42.5mm_D20.0mm_P49.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=49mm, , length*diameter=42.5*20mm^2, Electrolytic Capacitor, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 49mm length 42.5mm diameter 20mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L42.5mm_D20.0mm_P49.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=49mm, , length*diameter=42.5*20mm^2, Electrolytic Capacitor, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 49mm length 42.5mm diameter 20mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L46.0mm_D20.0mm_P52.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=52mm, , length*diameter=46*20mm^2, Electrolytic Capacitor, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 52mm length 46mm diameter 20mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L46.0mm_D20.0mm_P52.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=52mm, , length*diameter=46*20mm^2, Electrolytic Capacitor, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 52mm length 46mm diameter 20mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L55.0mm_D23.0mm_P60.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=60mm, , length*diameter=55*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 23.0mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L55.0mm_D23.0mm_P60.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=60mm, , length*diameter=55*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 23.0mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L55.0mm_D26.0mm_P60.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=60mm, , length*diameter=55*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 26mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L55.0mm_D26.0mm_P60.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=60mm, , length*diameter=55*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 26mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L55.0mm_D29.0mm_P60.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=60mm, , length*diameter=55*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 29.0mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L55.0mm_D29.0mm_P60.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=60mm, , length*diameter=55*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 29.0mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L55.0mm_D32.0mm_P60.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=60mm, , length*diameter=55*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 32.0mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L55.0mm_D32.0mm_P60.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=60mm, , length*diameter=55*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 32.0mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L55.0mm_D35.0mm_P60.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=60mm, , length*diameter=55*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 35.0mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L55.0mm_D35.0mm_P60.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=60mm, , length*diameter=55*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 35.0mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L67.0mm_D23.0mm_P75.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=75mm, , length*diameter=67*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 23.0mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L67.0mm_D23.0mm_P75.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=75mm, , length*diameter=67*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 23.0mm Electrolytic Capacitor Support -0 -8 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L67.0mm_D26.0mm_P75.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=75mm, , length*diameter=67*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 26mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L67.0mm_D26.0mm_P75.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=75mm, , length*diameter=67*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 26mm Electrolytic Capacitor Support -0 -8 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L67.0mm_D29.0mm_P75.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=75mm, , length*diameter=67*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 29.0mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L67.0mm_D29.0mm_P75.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=75mm, , length*diameter=67*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 29.0mm Electrolytic Capacitor Support -0 -8 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L67.0mm_D32.0mm_P75.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=75mm, , length*diameter=67*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 32.0mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L67.0mm_D32.0mm_P75.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=75mm, , length*diameter=67*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 32.0mm Electrolytic Capacitor Support -0 -8 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L67.0mm_D35.0mm_P75.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=75mm, , length*diameter=67*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 35.0mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L67.0mm_D35.0mm_P75.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=75mm, , length*diameter=67*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 35.0mm Electrolytic Capacitor Support -0 -8 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L80.0mm_D23.0mm_P85.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=85mm, , length*diameter=80*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 23.0mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L80.0mm_D23.0mm_P85.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=85mm, , length*diameter=80*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 23.0mm Electrolytic Capacitor Support -0 -8 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L80.0mm_D26.0mm_P85.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=85mm, , length*diameter=80*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 26mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L80.0mm_D26.0mm_P85.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=85mm, , length*diameter=80*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 26mm Electrolytic Capacitor Support -0 -8 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L80.0mm_D29.0mm_P85.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=85mm, , length*diameter=80*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 29.0mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L80.0mm_D29.0mm_P85.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=85mm, , length*diameter=80*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 29.0mm Electrolytic Capacitor Support -0 -8 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L80.0mm_D32.0mm_P85.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=85mm, , length*diameter=80*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 32.0mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L80.0mm_D32.0mm_P85.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=85mm, , length*diameter=80*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 32.0mm Electrolytic Capacitor Support -0 -8 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L80.0mm_D35.0mm_P85.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=85mm, , length*diameter=80*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 35.0mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L80.0mm_D35.0mm_P85.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=85mm, , length*diameter=80*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 35.0mm Electrolytic Capacitor Support -0 -8 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L93.0mm_D23.0mm_P100.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=100mm, , length*diameter=93*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 23.0mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L93.0mm_D23.0mm_P100.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=100mm, , length*diameter=93*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 23.0mm Electrolytic Capacitor Support -0 -8 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L93.0mm_D26.0mm_P100.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=100mm, , length*diameter=93*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 26mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L93.0mm_D26.0mm_P100.00mm_Horizontal_Supported -CP, Axial series, Axial, Additional holes for supports, Horizontal, pin pitch=100mm, , length*diameter=93*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 26mm Electrolytic Capacitor Support -0 -8 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L93.0mm_D29.0mm_P100.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=100mm, , length*diameter=93*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 29.0mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L93.0mm_D29.0mm_P100.00mm_Horizontal_Supported -CP, Axial series, Axial, Additional holes for supports, Horizontal, pin pitch=100mm, , length*diameter=93*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 29.0mm Electrolytic Capacitor Support -0 -8 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L93.0mm_D32.0mm_P100.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=100mm, , length*diameter=93*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 32.0mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L93.0mm_D32.0mm_P100.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=100mm, , length*diameter=93*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 32.0mm Electrolytic Capacitor Support -0 -8 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L93.0mm_D35.0mm_P100.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=100mm, , length*diameter=93*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 35.0mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Axial_L93.0mm_D35.0mm_P100.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=100mm, , length*diameter=93*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 35.0mm Electrolytic Capacitor Support -0 -8 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D4.0mm_P1.50mm -CP, Radial series, Radial, pin pitch=1.50mm, , diameter=4mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 1.50mm diameter 4mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D4.0mm_P2.00mm -CP, Radial series, Radial, pin pitch=2.00mm, , diameter=4mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 2.00mm diameter 4mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D5.0mm_P2.00mm -CP, Radial series, Radial, pin pitch=2.00mm, , diameter=5mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 2.00mm diameter 5mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D5.0mm_P2.50mm -CP, Radial series, Radial, pin pitch=2.50mm, , diameter=5mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 2.50mm diameter 5mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D6.3mm_P2.50mm -CP, Radial series, Radial, pin pitch=2.50mm, , diameter=6.3mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 2.50mm diameter 6.3mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D7.5mm_P2.50mm -CP, Radial series, Radial, pin pitch=2.50mm, , diameter=7.5mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 2.50mm diameter 7.5mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D8.0mm_P2.50mm -CP, Radial series, Radial, pin pitch=2.50mm, , diameter=8mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 2.50mm diameter 8mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D8.0mm_P3.50mm -CP, Radial series, Radial, pin pitch=3.50mm, , diameter=8mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 3.50mm diameter 8mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D8.0mm_P3.50mm_H20mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=3.50mm, diameter=8mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 20mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D8.0mm_P3.50mm_H20mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 20mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D8.0mm_P3.50mm_H20mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=3.50mm, , diameter=8mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 20mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D8.0mm_P3.50mm_H20mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 20mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D8.0mm_P3.50mm_H30mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=3.50mm, , diameter=8mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 30mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D8.0mm_P3.50mm_H30mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 30mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D8.0mm_P3.50mm_H30mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=3.50mm, , diameter=8mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 30mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D8.0mm_P3.50mm_H30mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 30mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D8.0mm_P3.50mm_H40mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=3.50mm, , diameter=8mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 40mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D8.0mm_P3.50mm_H40mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 40mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D8.0mm_P3.50mm_H40mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=3.50mm, , diameter=8mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 40mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D8.0mm_P3.50mm_H40mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 40mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D8.0mm_P3.80mm -CP, Radial series, Radial, pin pitch=3.80mm, , diameter=8mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 3.80mm diameter 8mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D8.0mm_P5.00mm -CP, Radial series, Radial, pin pitch=5.00mm, , diameter=8mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 5.00mm diameter 8mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D8.0mm_P5mm_H20mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=3.50mm, , diameter=8mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 20mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D8.0mm_P5mm_H20mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 20mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D8.0mm_P5mm_H20mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=3.50mm, , diameter=8mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 20mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D8.0mm_P5mm_H20mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 20mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D8.0mm_P5mm_H30mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=3.50mm, , diameter=8mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 30mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D8.0mm_P5mm_H30mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 30mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D8.0mm_P5mm_H30mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=3.50mm, , diameter=8mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 30mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D8.0mm_P5mm_H30mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 30mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D8.0mm_P5mm_H40mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=3.50mm, , diameter=8mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 40mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D8.0mm_P5mm_H40mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 40mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D8.0mm_P5mm_H40mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=3.50mm, , diameter=8mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 40mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D8.0mm_P5mm_H40mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 40mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D10.0mm_P2.50mm -CP, Radial series, Radial, pin pitch=2.50mm, , diameter=10mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 2.50mm diameter 10mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D10.0mm_P2.50mm_P5.00mm -CP, Radial series, Radial, pin pitch=2.50mm 5.00mm, , diameter=10mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 2.50mm 5.00mm diameter 10mm Electrolytic Capacitor -0 -4 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D10.0mm_P3.50mm -CP, Radial series, Radial, pin pitch=3.50mm, , diameter=10mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 3.50mm diameter 10mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D10.0mm_P3.80mm -CP, Radial series, Radial, pin pitch=3.80mm, , diameter=10mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 3.80mm diameter 10mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D10.0mm_P5.00mm -CP, Radial series, Radial, pin pitch=5.00mm, , diameter=10mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 5.00mm diameter 10mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D10.0mm_P5.00mm_H20mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=10mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 20mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D10.0mm_P5.00mm_H20mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 20mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D10.0mm_P5.00mm_H20mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=10mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 20mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D10.0mm_P5.00mm_H20mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 20mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D10.0mm_P5.00mm_H21mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=10mm, height = 21mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 21mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D10.0mm_P5.00mm_H21mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 21mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 21mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D10.0mm_P5.00mm_H21mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=10mm, height = 21mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 21mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D10.0mm_P5.00mm_H21mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 21mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 21mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D10.0mm_P5.00mm_H23mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=10mm, height = 23mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 23mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D10.0mm_P5.00mm_H23mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 23mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 23mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D10.0mm_P5.00mm_H23mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=10mm, height = 23mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 23mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D10.0mm_P5.00mm_H23mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 23mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 23mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D10.0mm_P5.00mm_H25mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=10mm, height = 25mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 25mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D10.0mm_P5.00mm_H25mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 25mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 25mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D10.0mm_P5.00mm_H25mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=10mm, height = 25mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 25mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D10.0mm_P5.00mm_H25mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 25mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 25mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D10.0mm_P5.00mm_H30mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=10mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 30mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D10.0mm_P5.00mm_H30mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 30mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D10.0mm_P5.00mm_H30mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=10mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 30mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D10.0mm_P5.00mm_H30mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 30mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D10.0mm_P5.00mm_H31.5mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=10mm, height = 31.5mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 31.5mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D10.0mm_P5.00mm_H31.5mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 31.5mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 31.5mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D10.0mm_P5.00mm_H31.5mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=10mm, height = 31.5mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 31.5mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D10.0mm_P5.00mm_H31.5mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 31.5mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 31.5mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D10.0mm_P5.00mm_H35mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=10mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 35mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D10.0mm_P5.00mm_H35mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 35mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D10.0mm_P5.00mm_H35mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=10mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 35mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D10.0mm_P5.00mm_H35mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 35mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D10.0mm_P5.00mm_H40mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=10mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 40mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D10.0mm_P5.00mm_H40mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 40mm Electrolytic Capacitor Support -0 -6 -3 -PCM_Capacitor_THT_AKL -CP_Radial_D10.0mm_P5.00mm_H40mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=10mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 40mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D10.0mm_P5.00mm_H40mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 40mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D10.0mm_P5.00mm_H45mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=10mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 45mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D10.0mm_P5.00mm_H45mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 45mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D10.0mm_P5.00mm_H45mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=10mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 45mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D10.0mm_P5.00mm_H45mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 45mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D10.0mm_P5.00mm_H50mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=10mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 50mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D10.0mm_P5.00mm_H50mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 50mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D10.0mm_P5.00mm_H50mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=10mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 50mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D10.0mm_P5.00mm_H50mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 50mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D10.0mm_P5.00mm_H60mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=10mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 60mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D10.0mm_P5.00mm_H60mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 60mm Electrolytic Capacitor Support -0 -8 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D10.0mm_P5.00mm_H60mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=10mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 60mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D10.0mm_P5.00mm_H60mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 60mm Electrolytic Capacitor Support -0 -8 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D10.0mm_P5.00mm_P7.50mm -CP, Radial series, Radial, pin pitch=5.00mm 7.50mm, , diameter=10mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 5.00mm 7.50mm diameter 10mm Electrolytic Capacitor -0 -4 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D10.0mm_P7.50mm -CP, Radial series, Radial, pin pitch=7.50mm, , diameter=10mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 7.50mm diameter 10mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D12.5mm_P2.50mm -CP, Radial series, Radial, pin pitch=2.50mm, , diameter=12.5mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 2.50mm diameter 12.5mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D12.5mm_P5.00mm -CP, Radial series, Radial, pin pitch=5.00mm, , diameter=12.5mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 5.00mm diameter 12.5mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D12.5mm_P5.00mm_H25mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=12.5mm, height = 25mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 25mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D12.5mm_P5.00mm_H25mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 25mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 25mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D12.5mm_P5.00mm_H25mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=12.5mm, height = 25mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 25mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D12.5mm_P5.00mm_H25mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 25mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 25mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D12.5mm_P5.00mm_H30mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=12.5mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 30mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D12.5mm_P5.00mm_H30mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 30mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D12.5mm_P5.00mm_H30mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=12.5mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 30mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D12.5mm_P5.00mm_H30mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 30mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D12.5mm_P5.00mm_H31.5mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=12.5mm, height = 31.5mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 31.5mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D12.5mm_P5.00mm_H31.5mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 31.5mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 31.5mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D12.5mm_P5.00mm_H31.5mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=12.5mm, height = 31.5mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 31.5mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D12.5mm_P5.00mm_H31.5mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 31.5mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 31.5mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D12.5mm_P5.00mm_H35mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=12.5mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 35mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D12.5mm_P5.00mm_H35mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 35mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D12.5mm_P5.00mm_H35mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=12.5mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 35mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D12.5mm_P5.00mm_H35mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 35mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D12.5mm_P5.00mm_H40mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=12.5mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 40mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D12.5mm_P5.00mm_H40mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 40mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D12.5mm_P5.00mm_H40mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=12.5mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 40mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D12.5mm_P5.00mm_H40mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 40mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D12.5mm_P5.00mm_H45mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=12.5mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 45mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D12.5mm_P5.00mm_H45mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 45mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D12.5mm_P5.00mm_H45mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=12.5mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 45mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D12.5mm_P5.00mm_H45mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 45mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D12.5mm_P5.00mm_H50mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=12.5mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 50mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D12.5mm_P5.00mm_H50mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 50mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D12.5mm_P5.00mm_H50mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=12.5mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 50mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D12.5mm_P5.00mm_H50mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 50mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D12.5mm_P5.00mm_H60mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=12.5mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 60mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D12.5mm_P5.00mm_H60mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 60mm Electrolytic Capacitor Support -0 -8 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D12.5mm_P5.00mm_H60mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=12.5mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 60mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D12.5mm_P5.00mm_H60mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 60mm Electrolytic Capacitor Support -0 -8 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D12.5mm_P7.50mm -CP, Radial series, Radial, pin pitch=7.50mm, , diameter=12.5mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 7.50mm diameter 12.5mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D13.0mm_P2.50mm -CP, Radial series, Radial, pin pitch=2.50mm, , diameter=13mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 2.50mm diameter 13mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D13.0mm_P5.00mm -CP, Radial series, Radial, pin pitch=5.00mm, , diameter=13mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 5.00mm diameter 13mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D13.0mm_P7.50mm -CP, Radial series, Radial, pin pitch=7.50mm, , diameter=13mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 7.50mm diameter 13mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D14.0mm_P5.00mm -CP, Radial series, Radial, pin pitch=5.00mm, , diameter=14mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 5.00mm diameter 14mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D14.0mm_P7.50mm -CP, Radial series, Radial, pin pitch=7.50mm, , diameter=14mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 7.50mm diameter 14mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D16.0mm_P7.50mm -CP, Radial series, Radial, pin pitch=7.50mm, , diameter=16mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 7.50mm diameter 16mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D16.0mm_P7.50mm_H35mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=7.50mm, , diameter=16mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 16mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D16.0mm_P7.50mm_H35mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=7.50mm, , diameter=16mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 16mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D16.0mm_P7.50mm_H35mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=7.50mm, , diameter=16mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 16mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D16.0mm_P7.50mm_H35mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=7.50mm, , diameter=16mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 16mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D16.0mm_P7.50mm_H40mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=7.50mm, , diameter=16mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 40mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D16.0mm_P7.50mm_H40mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=7.50mm, , diameter=16mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 40mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D16.0mm_P7.50mm_H40mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=7.50mm, , diameter=16mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 40mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D16.0mm_P7.50mm_H40mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=7.50mm, , diameter=16mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 40mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D16.0mm_P7.50mm_H45mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=7.50mm, , diameter=16mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 45mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D16.0mm_P7.50mm_H45mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=7.50mm, , diameter=16mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 45mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D16.0mm_P7.50mm_H45mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=7.50mm, , diameter=16mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 45mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D16.0mm_P7.50mm_H45mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=7.50mm, , diameter=16mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 45mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D16.0mm_P7.50mm_H50mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=7.50mm, , diameter=16mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 50mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D16.0mm_P7.50mm_H50mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=7.50mm, , diameter=16mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 50mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D16.0mm_P7.50mm_H50mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=7.50mm, , diameter=16mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 50mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D16.0mm_P7.50mm_H50mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=7.50mm, , diameter=16mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 50mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D16.0mm_P7.50mm_H60mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=7.50mm, , diameter=16mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 60mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D16.0mm_P7.50mm_H60mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=7.50mm, , diameter=16mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 60mm Electrolytic Capacitor Support -0 -8 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D16.0mm_P7.50mm_H60mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=7.50mm, , diameter=16mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 60mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D16.0mm_P7.50mm_H60mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=7.50mm, , diameter=16mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 60mm Electrolytic Capacitor Support -0 -8 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D17.0mm_P7.50mm -CP, Radial series, Radial, pin pitch=7.50mm, , diameter=17mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 7.50mm diameter 17mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D18.0mm_P7.50mm -CP, Radial series, Radial, pin pitch=7.50mm, , diameter=18mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 7.50mm diameter 18mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D18.0mm_P7.50mm_H40mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=7.50mm, , diameter=18mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 40mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D18.0mm_P7.50mm_H40mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=7.50mm, , diameter=18mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 40mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D18.0mm_P7.50mm_H40mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=7.50mm, , diameter=18mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 40mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D18.0mm_P7.50mm_H40mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=7.50mm, , diameter=18mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 40mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D18.0mm_P7.50mm_H45mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=7.50mm, , diameter=18mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 45mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D18.0mm_P7.50mm_H45mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=7.50mm, , diameter=18mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 45mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D18.0mm_P7.50mm_H45mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=7.50mm, , diameter=18mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 45mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D18.0mm_P7.50mm_H45mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=7.50mm, , diameter=18mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 45mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D18.0mm_P7.50mm_H50mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=7.50mm, , diameter=18mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 50mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D18.0mm_P7.50mm_H50mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=7.50mm, , diameter=18mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 50mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D18.0mm_P7.50mm_H50mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=7.50mm, , diameter=18mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 50mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D18.0mm_P7.50mm_H50mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=7.50mm, , diameter=18mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 50mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D18.0mm_P7.50mm_H60mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=7.50mm, , diameter=18mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 60mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D18.0mm_P7.50mm_H60mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=7.50mm, , diameter=18mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 60mm Electrolytic Capacitor Support -0 -8 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D18.0mm_P7.50mm_H60mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=7.50mm, , diameter=18mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 60mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D18.0mm_P7.50mm_H60mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=7.50mm, , diameter=18mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 18mm Electrolytic height 60mm Capacitor Support -0 -8 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D22.0mm_P10.00mm_3pin_SnapIn -CP, Radial series, Radial, pin pitch=10.00mm, , diameter=22mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf -CP Radial series Radial pin pitch 10.00mm diameter 22mm Electrolytic Capacitor -0 -3 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D22.0mm_P10.00mm_SnapIn -CP, Radial series, Radial, pin pitch=10.00mm, , diameter=22mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf -CP Radial series Radial pin pitch 10.00mm diameter 22mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D24.0mm_P10.00mm_3pin_SnapIn -CP, Radial series, Radial, pin pitch=10.00mm, , diameter=24mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf -CP Radial series Radial pin pitch 10.00mm diameter 24mm Electrolytic Capacitor -0 -3 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D24.0mm_P10.00mm_SnapIn -CP, Radial series, Radial, pin pitch=10.00mm, , diameter=24mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf -CP Radial series Radial pin pitch 10.00mm diameter 24mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D25.0mm_P10.00mm_3pin_SnapIn -CP, Radial series, Radial, pin pitch=10.00mm, , diameter=25mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf -CP Radial series Radial pin pitch 10.00mm diameter 25mm Electrolytic Capacitor -0 -3 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D25.0mm_P10.00mm_SnapIn -CP, Radial series, Radial, pin pitch=10.00mm, , diameter=25mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf -CP Radial series Radial pin pitch 10.00mm diameter 25mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D26.0mm_P10.00mm_3pin_SnapIn -CP, Radial series, Radial, pin pitch=10.00mm, , diameter=26mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf -CP Radial series Radial pin pitch 10.00mm diameter 26mm Electrolytic Capacitor -0 -3 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D26.0mm_P10.00mm_SnapIn -CP, Radial series, Radial, pin pitch=10.00mm, , diameter=26mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf -CP Radial series Radial pin pitch 10.00mm diameter 26mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D30.0mm_P10.00mm_3pin_SnapIn -CP, Radial series, Radial, pin pitch=10.00mm, , diameter=30mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf -CP Radial series Radial pin pitch 10.00mm diameter 30mm Electrolytic Capacitor -0 -3 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D30.0mm_P10.00mm_SnapIn -CP, Radial series, Radial, pin pitch=10.00mm, , diameter=30mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf -CP Radial series Radial pin pitch 10.00mm diameter 30mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D35.0mm_P10.00mm_3pin_SnapIn -CP, Radial series, Radial, pin pitch=10.00mm, , diameter=35mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf -CP Radial series Radial pin pitch 10.00mm diameter 35mm Electrolytic Capacitor -0 -3 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D35.0mm_P10.00mm_SnapIn -CP, Radial series, Radial, pin pitch=10.00mm, , diameter=35mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf -CP Radial series Radial pin pitch 10.00mm diameter 35mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D40.0mm_P10.00mm_3pin_SnapIn -CP, Radial series, Radial, pin pitch=10.00mm, , diameter=40mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf -CP Radial series Radial pin pitch 10.00mm diameter 40mm Electrolytic Capacitor -0 -3 -2 -PCM_Capacitor_THT_AKL -CP_Radial_D40.0mm_P10.00mm_SnapIn -CP, Radial series, Radial, pin pitch=10.00mm, , diameter=40mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf -CP Radial series Radial pin pitch 10.00mm diameter 40mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_Tantal_D4.5mm_P2.50mm -CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=4.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf -CP Radial_Tantal series Radial pin pitch 2.50mm diameter 4.5mm Tantal Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_Tantal_D4.5mm_P5.00mm -CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=4.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf, Alternate KiCad Library -CP Radial_Tantal series Radial pin pitch 5.00mm diameter 4.5mm Tantal Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_Tantal_D5.0mm_P2.50mm -CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=5.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf -CP Radial_Tantal series Radial pin pitch 2.50mm diameter 5.0mm Tantal Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_Tantal_D5.0mm_P5.00mm -CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=5.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf, Alternate KiCad Library -CP Radial_Tantal series Radial pin pitch 5.00mm diameter 5.0mm Tantal Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_Tantal_D5.5mm_P2.50mm -CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=5.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf -CP Radial_Tantal series Radial pin pitch 2.50mm diameter 5.5mm Tantal Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_Tantal_D5.5mm_P5.00mm -CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=5.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf, Alternate KiCad Library -CP Radial_Tantal series Radial pin pitch 5.00mm diameter 5.5mm Tantal Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_Tantal_D6.0mm_P2.50mm -CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=6.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf -CP Radial_Tantal series Radial pin pitch 2.50mm diameter 6.0mm Tantal Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_Tantal_D6.0mm_P5.00mm -CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=6.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf, Alternate KiCad Library -CP Radial_Tantal series Radial pin pitch 5.00mm diameter 6.0mm Tantal Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_Tantal_D7.0mm_P2.50mm -CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=7.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf -CP Radial_Tantal series Radial pin pitch 2.50mm diameter 7.0mm Tantal Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_Tantal_D7.0mm_P5.00mm -CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=7.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf, Alternate KiCad Library -CP Radial_Tantal series Radial pin pitch 5.00mm diameter 7.0mm Tantal Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_Tantal_D8.0mm_P2.50mm -CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=8.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf -CP Radial_Tantal series Radial pin pitch 2.50mm diameter 8.0mm Tantal Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_Tantal_D8.0mm_P5.00mm -CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=8.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf, Alternate KiCad Library -CP Radial_Tantal series Radial pin pitch 5.00mm diameter 8.0mm Tantal Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_Tantal_D9.0mm_P2.50mm -CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=9.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf -CP Radial_Tantal series Radial pin pitch 2.50mm diameter 9.0mm Tantal Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_Tantal_D9.0mm_P5.00mm -CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=9.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf, Alternate KiCad Library -CP Radial_Tantal series Radial pin pitch 5.00mm diameter 9.0mm Tantal Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_Tantal_D10.5mm_P2.50mm -CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=10.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf -CP Radial_Tantal series Radial pin pitch 2.50mm diameter 10.5mm Tantal Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -CP_Radial_Tantal_D10.5mm_P5.00mm -CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=10.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf, Alternate KiCad Library -CP Radial_Tantal series Radial pin pitch 5.00mm diameter 10.5mm Tantal Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Axial_L3.0mm_D2.3mm_P5.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 7.5mm length 3.8mm diameter 2.6mm -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Axial_L3.0mm_D2.3mm_P7.50mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 7.5mm length 3.8mm diameter 2.6mm -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Axial_L3.0mm_D2.3mm_P10.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 7.5mm length 3.8mm diameter 2.6mm -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Axial_L3.0mm_D2.3mm_P12.50mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 7.5mm length 3.8mm diameter 2.6mm -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Axial_L3.0mm_D2.3mm_P15.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 7.5mm length 3.8mm diameter 2.6mm -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Axial_L3.0mm_D2.3mm_P17.50mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 7.5mm length 3.8mm diameter 2.6mm -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Axial_L3.0mm_D2.3mm_P20.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 7.5mm length 3.8mm diameter 2.6mm -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Axial_L3.0mm_D2.3mm_P25.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 7.5mm length 3.8mm diameter 2.6mm -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Axial_L3.0mm_D2.3mm_P30.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 7.5mm length 3.8mm diameter 2.6mm -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Axial_L3.8mm_D2.6mm_P7.50mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 7.5mm length 3.8mm diameter 2.6mm -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Axial_L3.8mm_D2.6mm_P10.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=10mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 10mm length 3.8mm diameter 2.6mm -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Axial_L3.8mm_D2.6mm_P12.50mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=12.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 12.5mm length 3.8mm diameter 2.6mm -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Axial_L3.8mm_D2.6mm_P15.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 15mm length 3.8mm diameter 2.6mm -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Axial_L3.8mm_D2.6mm_P17.50mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 15mm length 3.8mm diameter 2.6mm -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Axial_L3.8mm_D2.6mm_P20.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 15mm length 3.8mm diameter 2.6mm -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Axial_L3.8mm_D2.6mm_P25.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 15mm length 3.8mm diameter 2.6mm -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Axial_L3.8mm_D2.6mm_P30.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 15mm length 3.8mm diameter 2.6mm -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Axial_L5.1mm_D3.1mm_P7.50mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=5.1*3.1mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 7.5mm length 5.1mm diameter 3.1mm -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Axial_L5.1mm_D3.1mm_P10.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=10mm, , length*diameter=5.1*3.1mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 10mm length 5.1mm diameter 3.1mm -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Axial_L5.1mm_D3.1mm_P12.50mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=12.5mm, , length*diameter=5.1*3.1mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 12.5mm length 5.1mm diameter 3.1mm -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Axial_L5.1mm_D3.1mm_P15.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=5.1*3.1mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 15mm length 5.1mm diameter 3.1mm -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Axial_L5.1mm_D3.1mm_P17.50mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=5.1*3.1mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 15mm length 5.1mm diameter 3.1mm -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Axial_L5.1mm_D3.1mm_P20.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=5.1*3.1mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 15mm length 5.1mm diameter 3.1mm -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Axial_L5.1mm_D3.1mm_P25.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=5.1*3.1mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 15mm length 5.1mm diameter 3.1mm -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Axial_L5.1mm_D3.1mm_P30.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=5.1*3.1mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 15mm length 5.1mm diameter 3.1mm -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Axial_L12.0mm_D6.5mm_P15.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=12*6.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 15mm length 12mm diameter 6.5mm -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Axial_L12.0mm_D6.5mm_P20.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*6.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 6.5mm -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Axial_L12.0mm_D6.5mm_P25.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*6.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 6.5mm -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Axial_L12.0mm_D6.5mm_P30.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*6.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 6.5mm -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Axial_L12.0mm_D7.5mm_P15.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=12*7.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 15mm length 12mm diameter 7.5mm -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Axial_L12.0mm_D7.5mm_P20.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*7.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 7.5mm -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Axial_L12.0mm_D7.5mm_P25.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*7.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 7.5mm -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Axial_L12.0mm_D7.5mm_P30.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*7.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 7.5mm -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Axial_L12.0mm_D8.5mm_P15.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=12*8.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 15mm length 12mm diameter 8.5mm -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Axial_L12.0mm_D8.5mm_P20.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*8.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 8.5mm -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Axial_L12.0mm_D8.5mm_P25.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*8.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 8.5mm -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Axial_L12.0mm_D8.5mm_P30.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*8.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 8.5mm -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Axial_L12.0mm_D9.5mm_P15.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=12*9.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 15mm length 12mm diameter 9.5mm -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Axial_L12.0mm_D9.5mm_P20.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*9.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 9.5mm -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Axial_L12.0mm_D9.5mm_P25.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*9.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 9.5mm -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Axial_L12.0mm_D9.5mm_P30.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*9.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 9.5mm -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Axial_L12.0mm_D10.5mm_P15.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=12*10.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 15mm length 12mm diameter 10.5mm -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Axial_L12.0mm_D10.5mm_P20.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*10.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 10.5mm -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Axial_L12.0mm_D10.5mm_P25.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*10.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 10.5mm -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Axial_L17.0mm_D6.5mm_P20.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=17*6.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 20mm length 17mm diameter 6.5mm -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Axial_L17.0mm_D6.5mm_P25.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=17*6.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 25mm length 17mm diameter 6.5mm -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Axial_L17.0mm_D6.5mm_P30.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=17*6.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 25mm length 17mm diameter 6.5mm -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Axial_L17.0mm_D7.0mm_P20.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=17*7.0mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 20mm length 17mm diameter 7.0mm -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Axial_L17.0mm_D7.0mm_P25.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=17*7.0mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 25mm length 17mm diameter 7.0mm -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Axial_L17.0mm_D7.0mm_P30.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=17*7.0mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 25mm length 17mm diameter 7.0mm -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Axial_L19.0mm_D7.5mm_P25.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=19*7.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 25mm length 19mm diameter 7.5mm -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Axial_L19.0mm_D8.0mm_P25.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=19*8.0mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 25mm length 19mm diameter 8.0mm -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Axial_L19.0mm_D9.0mm_P25.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=19*9mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 25mm length 19mm diameter 9mm -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Axial_L19.0mm_D9.5mm_P25.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=19*9.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 25mm length 19mm diameter 9.5mm -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Axial_L22.0mm_D9.5mm_P27.50mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=27.5mm, , length*diameter=22*9.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 27.5mm length 22mm diameter 9.5mm -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Axial_L22.0mm_D10.5mm_P27.50mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=27.5mm, , length*diameter=22*10.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 27.5mm length 22mm diameter 10.5mm -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Disc_D3.0mm_W1.6mm_P2.50mm -C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3.0*1.6mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 2.50mm diameter 3.0mm width 1.6mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Disc_D3.0mm_W2.0mm_P2.50mm -C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3*2mm^2, Capacitor, Alternate KiCad Library -C Disc series Radial pin pitch 2.50mm diameter 3mm width 2mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Disc_D3.4mm_W2.1mm_P2.50mm -C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3.4*2.1mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 2.50mm diameter 3.4mm width 2.1mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Disc_D3.8mm_W2.6mm_P2.50mm -C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3.8*2.6mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 2.50mm diameter 3.8mm width 2.6mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Disc_D4.3mm_W1.9mm_P5.00mm -C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=4.3*1.9mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 5.00mm diameter 4.3mm width 1.9mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Disc_D4.7mm_W2.5mm_P5.00mm -C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=4.7*2.5mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 5.00mm diameter 4.7mm width 2.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Disc_D5.0mm_W2.5mm_P2.50mm -C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=5*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 2.50mm diameter 5mm width 2.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Disc_D5.0mm_W2.5mm_P5.00mm -C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=5*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 5.00mm diameter 5mm width 2.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Disc_D5.1mm_W3.2mm_P5.00mm -C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=5.1*3.2mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 5.00mm diameter 5.1mm width 3.2mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Disc_D6.0mm_W2.5mm_P5.00mm -C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=6*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 5.00mm diameter 6mm width 2.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Disc_D6.0mm_W4.4mm_P5.00mm -C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=6*4.4mm^2, Capacitor, Alternate KiCad Library -C Disc series Radial pin pitch 5.00mm diameter 6mm width 4.4mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Disc_D7.0mm_W2.5mm_P5.00mm -C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=7*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 5.00mm diameter 7mm width 2.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Disc_D7.5mm_W2.5mm_P5.00mm -C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=7.5*2.5mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 5.00mm diameter 7.5mm width 2.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Disc_D7.5mm_W4.4mm_P5.00mm -C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=7.5*4.4mm^2, Capacitor, Alternate KiCad Library -C Disc series Radial pin pitch 5.00mm diameter 7.5mm width 4.4mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Disc_D7.5mm_W5.0mm_P5.00mm -C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=7.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 5.00mm diameter 7.5mm width 5.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Disc_D7.5mm_W5.0mm_P7.50mm -C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=7.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 7.50mm diameter 7.5mm width 5.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Disc_D7.5mm_W5.0mm_P10.00mm -C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=7.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 10.00mm diameter 7.5mm width 5.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Disc_D8.0mm_W2.5mm_P5.00mm -C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=8*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 5.00mm diameter 8mm width 2.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Disc_D8.0mm_W5.0mm_P5.00mm -C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=8*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 5.00mm diameter 8mm width 5.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Disc_D8.0mm_W5.0mm_P7.50mm -C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=8*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 7.50mm diameter 8mm width 5.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Disc_D8.0mm_W5.0mm_P10.00mm -C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=8*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 10.00mm diameter 8mm width 5.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Disc_D9.0mm_W2.5mm_P5.00mm -C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=9*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 5.00mm diameter 9mm width 2.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Disc_D9.0mm_W5.0mm_P5.00mm -C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=9*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 5.00mm diameter 9mm width 5.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Disc_D9.0mm_W5.0mm_P7.50mm -C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=9*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 7.50mm diameter 9mm width 5.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Disc_D9.0mm_W5.0mm_P10.00mm -C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=9*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 10.00mm diameter 9mm width 5.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Disc_D10.0mm_W2.5mm_P5.00mm -C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=10*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 5.00mm diameter 10mm width 2.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Disc_D10.5mm_W5.0mm_P5.00mm -C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=10.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 5.00mm diameter 10.5mm width 5.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Disc_D10.5mm_W5.0mm_P7.50mm -C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=10.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 7.50mm diameter 10.5mm width 5.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Disc_D10.5mm_W5.0mm_P10.00mm -C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=10.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 10.00mm diameter 10.5mm width 5.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Disc_D11.0mm_W5.0mm_P5.00mm -C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=11*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 5.00mm diameter 11mm width 5.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Disc_D11.0mm_W5.0mm_P7.50mm -C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=11*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 7.50mm diameter 11mm width 5.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Disc_D11.0mm_W5.0mm_P10.00mm -C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=11*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 10.00mm diameter 11mm width 5.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Disc_D12.0mm_W4.4mm_P7.75mm -C, Disc series, Radial, pin pitch=7.75mm, , diameter*width=12*4.4mm^2, Capacitor, Alternate KiCad Library -C Disc series Radial pin pitch 7.75mm diameter 12mm width 4.4mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Disc_D12.5mm_W5.0mm_P7.50mm -C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=12.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 7.50mm diameter 12.5mm width 5.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Disc_D12.5mm_W5.0mm_P10.00mm -C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=12.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 10.00mm diameter 12.5mm width 5.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Disc_D14.5mm_W5.0mm_P7.50mm -C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=14.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 7.50mm diameter 14.5mm width 5.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Disc_D14.5mm_W5.0mm_P10.00mm -C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=14.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 10.00mm diameter 14.5mm width 5.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Disc_D16.0mm_W5.0mm_P7.50mm -C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=16.0*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 7.50mm diameter 16.0mm width 5.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Disc_D16.0mm_W5.0mm_P10.00mm -C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=16.0*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 10.00mm diameter 16.0mm width 5.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Radial_D4.0mm_H5.0mm_P1.50mm -C, Radial series, Radial, pin pitch=1.50mm, diameter=4mm, height=5mm, Non-Polar Electrolytic Capacitor -C Radial series Radial pin pitch 1.50mm diameter 4mm height 5mm Non-Polar Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Radial_D4.0mm_H7.0mm_P1.50mm -C, Radial series, Radial, pin pitch=1.50mm, diameter=4mm, height=7mm, Non-Polar Electrolytic Capacitor -C Radial series Radial pin pitch 1.50mm diameter 4mm height 7mm Non-Polar Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Radial_D5.0mm_H5.0mm_P2.00mm -C, Radial series, Radial, pin pitch=2.00mm, diameter=5mm, height=5mm, Non-Polar Electrolytic Capacitor -C Radial series Radial pin pitch 2.00mm diameter 5mm height 5mm Non-Polar Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Radial_D5.0mm_H7.0mm_P2.00mm -C, Radial series, Radial, pin pitch=2.00mm, diameter=5mm, height=7mm, Non-Polar Electrolytic Capacitor -C Radial series Radial pin pitch 2.00mm diameter 5mm height 7mm Non-Polar Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Radial_D5.0mm_H11.0mm_P2.00mm -C, Radial series, Radial, pin pitch=2.00mm, diameter=5mm, height=11mm, Non-Polar Electrolytic Capacitor -C Radial series Radial pin pitch 2.00mm diameter 5mm height 11mm Non-Polar Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Radial_D6.3mm_H5.0mm_P2.50mm -C, Radial series, Radial, pin pitch=2.50mm, diameter=6.3mm, height=5mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library -C Radial series Radial pin pitch 2.50mm diameter 6.3mm height 5mm Non-Polar Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Radial_D6.3mm_H7.0mm_P2.50mm -C, Radial series, Radial, pin pitch=2.50mm, diameter=6.3mm, height=7mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library -C Radial series Radial pin pitch 2.50mm diameter 6.3mm height 7mm Non-Polar Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Radial_D6.3mm_H11.0mm_P2.50mm -C, Radial series, Radial, pin pitch=2.50mm, diameter=6.3mm, height=11mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library -C Radial series Radial pin pitch 2.50mm diameter 6.3mm height 11mm Non-Polar Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Radial_D8.0mm_H7.0mm_P3.50mm -C, Radial series, Radial, pin pitch=3.50mm, diameter=8mm, height=7mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library -C Radial series Radial pin pitch 3.50mm diameter 8mm height 7mm Non-Polar Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Radial_D8.0mm_H11.5mm_P3.50mm -C, Radial series, Radial, pin pitch=3.50mm, diameter=8mm, height=11.5mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library -C Radial series Radial pin pitch 3.50mm diameter 8mm height 11.5mm Non-Polar Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Radial_D10.0mm_H12.5mm_P5.00mm -C, Radial series, Radial, pin pitch=5.00mm, diameter=10mm, height=12.5mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library -C Radial series Radial pin pitch 5.00mm diameter 10mm height 12.5mm Non-Polar Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Radial_D10.0mm_H16.0mm_P5.00mm -C, Radial series, Radial, pin pitch=5.00mm, diameter=10mm, height=16mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library -C Radial series Radial pin pitch 5.00mm diameter 10mm height 16mm Non-Polar Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Radial_D10.0mm_H20.0mm_P5.00mm -C, Radial series, Radial, pin pitch=5.00mm, diameter=10mm, height=20mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library -C Radial series Radial pin pitch 5.00mm diameter 10mm height 20mm Non-Polar Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Radial_D12.5mm_H20.0mm_P5.00mm -C, Radial series, Radial, pin pitch=5.00mm, diameter=12.5mm, height=20mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library -C Radial series Radial pin pitch 5.00mm diameter 12.5mm height 20mm Non-Polar Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Radial_D12.5mm_H25.0mm_P5.00mm -C, Radial series, Radial, pin pitch=5.00mm, diameter=12.5mm, height=25mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library -C Radial series Radial pin pitch 5.00mm diameter 12.5mm height 25mm Non-Polar Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Radial_D16.0mm_H25.0mm_P7.50mm -C, Radial series, Radial, pin pitch=7.50mm, diameter=16mm, height=25mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library -C Radial series Radial pin pitch 7.50mm diameter 16mm height 25mm Non-Polar Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Radial_D16.0mm_H31.5mm_P7.50mm -C, Radial series, Radial, pin pitch=7.50mm, diameter=16mm, height=31.5mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library -C Radial series Radial pin pitch 7.50mm diameter 16mm height 31.5mm Non-Polar Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Radial_D18.0mm_H35.5mm_P7.50mm -C, Radial series, Radial, pin pitch=7.50mm, diameter=18mm, height=35.5mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library -C Radial series Radial pin pitch 7.50mm diameter 18mm height 35.5mm Non-Polar Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L4.0mm_W2.5mm_P2.50mm -C, Rect series, Radial, pin pitch=2.50mm, , length*width=4*2.5mm^2, Capacitor, Alternate KiCad Library -C Rect series Radial pin pitch 2.50mm length 4mm width 2.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L4.6mm_W2.0mm_P2.50mm_MKS02_FKP02 -C, Rect series, Radial, pin pitch=2.50mm, , length*width=4.6*2mm^2, Capacitor, http://www.wima.de/DE/WIMA_MKS_02.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 2.50mm length 4.6mm width 2mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L4.6mm_W3.0mm_P2.50mm_MKS02_FKP02 -C, Rect series, Radial, pin pitch=2.50mm, , length*width=4.6*3.0mm^2, Capacitor, http://www.wima.de/DE/WIMA_MKS_02.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 2.50mm length 4.6mm width 3.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L4.6mm_W3.8mm_P2.50mm_MKS02_FKP02 -C, Rect series, Radial, pin pitch=2.50mm, , length*width=4.6*3.8mm^2, Capacitor, http://www.wima.de/DE/WIMA_MKS_02.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 2.50mm length 4.6mm width 3.8mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L4.6mm_W4.6mm_P2.50mm_MKS02_FKP02 -C, Rect series, Radial, pin pitch=2.50mm, , length*width=4.6*4.6mm^2, Capacitor, http://www.wima.de/DE/WIMA_MKS_02.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 2.50mm length 4.6mm width 4.6mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L4.6mm_W5.5mm_P2.50mm_MKS02_FKP02 -C, Rect series, Radial, pin pitch=2.50mm, , length*width=4.6*5.5mm^2, Capacitor, http://www.wima.de/DE/WIMA_MKS_02.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 2.50mm length 4.6mm width 5.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L7.0mm_W2.0mm_P5.00mm -C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*2mm^2, Capacitor, Alternate KiCad Library -C Rect series Radial pin pitch 5.00mm length 7mm width 2mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L7.0mm_W2.5mm_P5.00mm -C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*2.5mm^2, Capacitor, Alternate KiCad Library -C Rect series Radial pin pitch 5.00mm length 7mm width 2.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L7.0mm_W3.5mm_P2.50mm_P5.00mm -C, Rect series, Radial, pin pitch=2.50mm 5.00mm, , length*width=7*3.5mm^2, Capacitor, Alternate KiCad Library -C Rect series Radial pin pitch 2.50mm 5.00mm length 7mm width 3.5mm Capacitor -0 -4 -2 -PCM_Capacitor_THT_AKL -C_Rect_L7.0mm_W3.5mm_P5.00mm -C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*3.5mm^2, Capacitor, Alternate KiCad Library -C Rect series Radial pin pitch 5.00mm length 7mm width 3.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L7.0mm_W4.5mm_P5.00mm -C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*4.5mm^2, Capacitor, Alternate KiCad Library -C Rect series Radial pin pitch 5.00mm length 7mm width 4.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L7.0mm_W6.0mm_P5.00mm -C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*6mm^2, Capacitor, Alternate KiCad Library -C Rect series Radial pin pitch 5.00mm length 7mm width 6mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L7.0mm_W6.5mm_P5.00mm -C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*6.5mm^2, Capacitor, Alternate KiCad Library -C Rect series Radial pin pitch 5.00mm length 7mm width 6.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L7.2mm_W2.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2 -C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*2.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 5.00mm length 7.2mm width 2.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L7.2mm_W3.0mm_P5.00mm_FKS2_FKP2_MKS2_MKP2 -C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*3.0mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 5.00mm length 7.2mm width 3.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L7.2mm_W3.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2 -C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*3.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 5.00mm length 7.2mm width 3.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L7.2mm_W4.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2 -C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*4.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 5.00mm length 7.2mm width 4.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L7.2mm_W5.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2 -C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*5.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 5.00mm length 7.2mm width 5.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L7.2mm_W7.2mm_P5.00mm_FKS2_FKP2_MKS2_MKP2 -C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*7.2mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 5.00mm length 7.2mm width 7.2mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L7.2mm_W8.5mm_P5.00mm_FKP2_FKP2_MKS2_MKP2 -C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*8.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 5.00mm length 7.2mm width 8.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L7.2mm_W11.0mm_P5.00mm_FKS2_FKP2_MKS2_MKP2 -C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*11mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 5.00mm length 7.2mm width 11mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L7.5mm_W6.5mm_P5.00mm -C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.5*6.5mm^2, Capacitor, Alternate KiCad Library -C Rect series Radial pin pitch 5.00mm length 7.5mm width 6.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L9.0mm_W2.5mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*2.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 9mm width 2.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L9.0mm_W2.6mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*2.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 9mm width 2.6mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L9.0mm_W2.7mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*2.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 9mm width 2.7mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L9.0mm_W3.2mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*3.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 9mm width 3.2mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L9.0mm_W3.3mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*3.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 9mm width 3.3mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L9.0mm_W3.4mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*3.4mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 9mm width 3.4mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L9.0mm_W3.6mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*3.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 9mm width 3.6mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L9.0mm_W3.8mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*3.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 9mm width 3.8mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L9.0mm_W3.9mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*3.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 9mm width 3.9mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L9.0mm_W4.0mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*4.0mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 9mm width 4.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L9.0mm_W4.2mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*4.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 9mm width 4.2mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L9.0mm_W4.9mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*4.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 9mm width 4.9mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L9.0mm_W5.1mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*5.1mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 9mm width 5.1mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L9.0mm_W5.7mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*5.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 9mm width 5.7mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L9.0mm_W6.4mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*6.4mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 9mm width 6.4mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L9.0mm_W6.7mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*6.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 9mm width 6.7mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L9.0mm_W7.7mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*7.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 9mm width 7.7mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L9.0mm_W8.5mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*8.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 9mm width 8.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L9.0mm_W9.5mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*9.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 9mm width 9.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L9.0mm_W9.8mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*9.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 9mm width 9.8mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L10.0mm_W2.5mm_P7.50mm_MKS4 -C, Rect series, Radial, pin pitch=7.50mm, , length*width=10*2.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 10mm width 2.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L10.0mm_W3.0mm_P7.50mm_FKS3_FKP3 -C, Rect series, Radial, pin pitch=7.50mm, , length*width=10*3mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 10mm width 3mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L10.0mm_W3.0mm_P7.50mm_MKS4 -C, Rect series, Radial, pin pitch=7.50mm, , length*width=10*3.0mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 10mm width 3.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L10.0mm_W4.0mm_P7.50mm_FKS3_FKP3 -C, Rect series, Radial, pin pitch=7.50mm, , length*width=10*4mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 10mm width 4mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L10.0mm_W4.0mm_P7.50mm_MKS4 -C, Rect series, Radial, pin pitch=7.50mm, , length*width=10*4.0mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 10mm width 4.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L10.0mm_W5.0mm_P5.00mm_P7.50mm -C, Rect series, Radial, pin pitch=5.00mm 7.50mm, , length*width=10*5mm^2, Capacitor, Alternate KiCad Library -C Rect series Radial pin pitch 5.00mm 7.50mm length 10mm width 5mm Capacitor -0 -4 -2 -PCM_Capacitor_THT_AKL -C_Rect_L10.3mm_W4.5mm_P7.50mm_MKS4 -C, Rect series, Radial, pin pitch=7.50mm, , length*width=10.3*4.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 10.3mm width 4.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L10.3mm_W5.0mm_P7.50mm_MKS4 -C, Rect series, Radial, pin pitch=7.50mm, , length*width=10.3*5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 10.3mm width 5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L10.3mm_W5.7mm_P7.50mm_MKS4 -C, Rect series, Radial, pin pitch=7.50mm, , length*width=10.3*5.7mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 10.3mm width 5.7mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L10.3mm_W7.2mm_P7.50mm_MKS4 -C, Rect series, Radial, pin pitch=7.50mm, , length*width=10.3*7.2mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 10.3mm width 7.2mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L11.0mm_W2.8mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*2.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.0mm width 2.8mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L11.0mm_W3.4mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*3.4mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.0mm width 3.4mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L11.0mm_W3.5mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*3.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.0mm width 3.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L11.0mm_W4.2mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*4.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.0mm width 4.2mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L11.0mm_W4.3mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*4.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.0mm width 4.3mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L11.0mm_W5.1mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*5.1mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.0mm width 5.1mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L11.0mm_W5.3mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*5.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.0mm width 5.3mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L11.0mm_W6.3mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*6.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.0mm width 6.3mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L11.0mm_W6.4mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*6.4mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.0mm width 6.4mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L11.0mm_W7.3mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*7.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.0mm width 7.3mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L11.0mm_W8.8mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*8.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.0mm width 8.8mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L11.5mm_W2.0mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 2mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L11.5mm_W2.6mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*2.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 2.6mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L11.5mm_W2.8mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*2.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 2.8mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L11.5mm_W3.2mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*3.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 3.2mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L11.5mm_W3.5mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*3.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 3.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L11.5mm_W3.6mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*3.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 3.6mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L11.5mm_W4.0mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*4.0mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 4.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L11.5mm_W4.3mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*4.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 4.3mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L11.5mm_W4.5mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*4.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 4.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L11.5mm_W5.0mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L11.5mm_W5.1mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*5.1mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 5.1mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L11.5mm_W5.2mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*5.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 5.2mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L11.5mm_W5.6mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*5.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 5.6mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L11.5mm_W6.4mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*6.4mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 6.4mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L11.5mm_W6.6mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*6.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 6.6mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L11.5mm_W6.9mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*6.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 6.9mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L11.5mm_W7.3mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*7.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 7.3mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L11.5mm_W7.5mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*7.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 7.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L11.5mm_W7.8mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*7.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 7.8mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L11.5mm_W8.0mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*8.0mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 8.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L11.5mm_W8.8mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*8.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 8.8mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L11.5mm_W9.5mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*9.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 9.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L11.5mm_W9.8mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*9.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 9.8mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L13.0mm_W3.0mm_P10.00mm_FKS3_FKP3_MKS4 -C, Rect series, Radial, pin pitch=10.00mm, , length*width=13*3mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 13mm width 3mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L13.0mm_W4.0mm_P10.00mm_FKS3_FKP3_MKS4 -C, Rect series, Radial, pin pitch=10.00mm, , length*width=13*4mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 13mm width 4mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L13.0mm_W5.0mm_P10.00mm_FKS3_FKP3_MKS4 -C, Rect series, Radial, pin pitch=10.00mm, , length*width=13*5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 13mm width 5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L13.0mm_W6.0mm_P10.00mm_FKS3_FKP3_MKS4 -C, Rect series, Radial, pin pitch=10.00mm, , length*width=13*6mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 13mm width 6mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L13.0mm_W6.5mm_P7.50mm_P10.00mm -C, Rect series, Radial, pin pitch=7.50mm 10.00mm, , length*width=13*6.5mm^2, Capacitor, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm 10.00mm length 13mm width 6.5mm Capacitor -0 -4 -2 -PCM_Capacitor_THT_AKL -C_Rect_L13.0mm_W8.0mm_P10.00mm_FKS3_FKP3_MKS4 -C, Rect series, Radial, pin pitch=10.00mm, , length*width=13*8mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 13mm width 8mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L13.5mm_W4.0mm_P10.00mm_FKS3_FKP3_MKS4 -C, Rect series, Radial, pin pitch=10.00mm, , length*width=13.5*4mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 13.5mm width 4mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L13.5mm_W5.0mm_P10.00mm_FKS3_FKP3_MKS4 -C, Rect series, Radial, pin pitch=10.00mm, , length*width=13.5*5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 13.5mm width 5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L15mm_W15mm_P10x10mm -C Rectangular, 15x15mm size, 10x10mm Pin Pitch, Measurements based on a physical example, no datasheet available, Alternate KiCad Library -C rect 15x15 10x10 -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L16.5mm_W4.7mm_P15.00mm_MKT -C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*4.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 16.5mm width 4.7mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L16.5mm_W4.9mm_P15.00mm_MKT -C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*4.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 16.5mm width 4.9mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L16.5mm_W5.0mm_P15.00mm_MKT -C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 16.5mm width 5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L16.5mm_W6.0mm_P15.00mm_MKT -C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 16.5mm width 6mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L16.5mm_W7.0mm_P15.00mm_MKT -C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 16.5mm width 7mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L16.5mm_W7.3mm_P15.00mm_MKT -C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*7.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 16.5mm width 7.3mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L16.5mm_W8.7mm_P15.00mm_MKT -C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*8.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 16.5mm width 8.7mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L16.5mm_W8.9mm_P15.00mm_MKT -C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*8.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 16.5mm width 8.9mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L16.5mm_W9.0mm_P15.00mm_MKT -C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 16.5mm width 9mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L16.5mm_W9.2mm_P15.00mm_MKT -C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*9.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 16.5mm width 9.2mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L16.5mm_W10.7mm_P15.00mm_MKT -C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*10.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 16.5mm width 10.7mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L16.5mm_W10.9mm_P15.00mm_MKT -C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*10.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 16.5mm width 10.9mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L16.5mm_W11.2mm_P15.00mm_MKT -C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*11.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 16.5mm width 11.2mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L16.5mm_W11.8mm_P15.00mm_MKT -C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*11.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 16.5mm width 11.8mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L16.5mm_W13.5mm_P15.00mm_MKT -C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*13.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 16.5mm width 13.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L16.5mm_W13.7mm_P15.00mm_MKT -C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*13.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 16.5mm width 13.7mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L16.5mm_W13.9mm_P15.00mm_MKT -C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*13.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 16.5mm width 13.9mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L17mm_W8.5mm_P12.50mm -C, Rect series, Radial, pin pitch=12.50mm, , length*width=17*8.5mm^2, Measurements based on a physical example, no datasheet available, Alternate KiCad Library -C Rect series Radial pin pitch 12.50mm length 17mm width 8.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L18.0mm_W5.0mm_P15.00mm_FKS3_FKP3 -C, Rect series, Radial, pin pitch=15.00mm, , length*width=18*5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 18mm width 5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L18.0mm_W6.0mm_P15.00mm_FKS3_FKP3 -C, Rect series, Radial, pin pitch=15.00mm, , length*width=18*6mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 18mm width 6mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L18.0mm_W7.0mm_P15.00mm_FKS3_FKP3 -C, Rect series, Radial, pin pitch=15.00mm, , length*width=18*7mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 18mm width 7mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L18.0mm_W8.0mm_P15.00mm_FKS3_FKP3 -C, Rect series, Radial, pin pitch=15.00mm, , length*width=18*8mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 18mm width 8mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L18.0mm_W9.0mm_P15.00mm_FKS3_FKP3 -C, Rect series, Radial, pin pitch=15.00mm, , length*width=18*9mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 18mm width 9mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L18.0mm_W11.0mm_P15.00mm_FKS3_FKP3 -C, Rect series, Radial, pin pitch=15.00mm, , length*width=18*11mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 18mm width 11mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L19.0mm_W5.0mm_P15.00mm_MKS4 -C, Rect series, Radial, pin pitch=15.00mm, , length*width=19*5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 19mm width 5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L19.0mm_W6.0mm_P15.00mm_MKS4 -C, Rect series, Radial, pin pitch=15.00mm, , length*width=19*6mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 19mm width 6mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L19.0mm_W7.0mm_P15.00mm_MKS4 -C, Rect series, Radial, pin pitch=15.00mm, , length*width=19*7mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 19mm width 7mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L19.0mm_W8.0mm_P15.00mm_MKS4 -C, Rect series, Radial, pin pitch=15.00mm, , length*width=19*8mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 19mm width 8mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L19.0mm_W9.0mm_P15.00mm_MKS4 -C, Rect series, Radial, pin pitch=15.00mm, , length*width=19*9mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 19mm width 9mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L19.0mm_W11.0mm_P15.00mm_MKS4 -C, Rect series, Radial, pin pitch=15.00mm, , length*width=19*11mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 19mm width 11mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L24.0mm_W7.0mm_P22.50mm_MKT -C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 22.50mm length 24mm width 7mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L24.0mm_W8.3mm_P22.50mm_MKT -C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*8.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 22.50mm length 24mm width 8.3mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L24.0mm_W8.6mm_P22.50mm_MKT -C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*8.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 22.50mm length 24mm width 8.6mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L24.0mm_W10.1mm_P22.50mm_MKT -C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*10.1mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 22.50mm length 24mm width 10.1mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L24.0mm_W10.3mm_P22.50mm_MKT -C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*10.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 22.50mm length 24mm width 10.3mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L24.0mm_W10.9mm_P22.50mm_MKT -C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*10.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 22.50mm length 24mm width 10.9mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L24.0mm_W12.2mm_P22.50mm_MKT -C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*12.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 22.50mm length 24mm width 12.2mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L24.0mm_W12.6mm_P22.50mm_MKT -C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*12.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 22.50mm length 24mm width 12.6mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L24.0mm_W12.8mm_P22.50mm_MKT -C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*12.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 22.50mm length 24mm width 12.8mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L26.5mm_W5.0mm_P22.50mm_MKS4 -C, Rect series, Radial, pin pitch=22.50mm, , length*width=26.5*5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 22.50mm length 26.5mm width 5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L26.5mm_W6.0mm_P22.50mm_MKS4 -C, Rect series, Radial, pin pitch=22.50mm, , length*width=26.5*6mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 22.50mm length 26.5mm width 6mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L26.5mm_W7.0mm_P22.50mm_MKS4 -C, Rect series, Radial, pin pitch=22.50mm, , length*width=26.5*7mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 22.50mm length 26.5mm width 7mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L26.5mm_W8.5mm_P22.50mm_MKS4 -C, Rect series, Radial, pin pitch=22.50mm, , length*width=26.5*8.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 22.50mm length 26.5mm width 8.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L26.5mm_W10.5mm_P22.50mm_MKS4 -C, Rect series, Radial, pin pitch=22.50mm, , length*width=26.5*10.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 22.50mm length 26.5mm width 10.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L26.5mm_W11.5mm_P22.50mm_MKS4 -C, Rect series, Radial, pin pitch=22.50mm, , length*width=26.5*11.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 22.50mm length 26.5mm width 11.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L27.0mm_W9.0mm_P22.00mm -C, Rect series, Radial, pin pitch=22.00mm, , length*width=27*9mm^2, Capacitor, Alternate KiCad Library -C Rect series Radial pin pitch 22.00mm length 27mm width 9mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L27.0mm_W9.0mm_P23.00mm -C, Rect series, Radial, pin pitch=23.00mm, , length*width=27*9mm^2, Capacitor, Alternate KiCad Library -C Rect series Radial pin pitch 23.00mm length 27mm width 9mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L27.0mm_W11.0mm_P22.00mm -C, Rect series, Radial, pin pitch=22.00mm, , length*width=27*11mm^2, Capacitor, Alternate KiCad Library -C Rect series Radial pin pitch 22.00mm length 27mm width 11mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L28.0mm_W8.0mm_P22.50mm_MKS4 -C, Rect series, Radial, pin pitch=22.50mm, , length*width=28*8mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 22.50mm length 28mm width 8mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L28.0mm_W10.0mm_P22.50mm_MKS4 -C, Rect series, Radial, pin pitch=22.50mm, , length*width=28*10mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 22.50mm length 28mm width 10mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L28.0mm_W12.0mm_P22.50mm_MKS4 -C, Rect series, Radial, pin pitch=22.50mm, , length*width=28*12mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 22.50mm length 28mm width 12mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L29.0mm_W7.6mm_P27.50mm_MKT -C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*7.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 27.50mm length 29mm width 7.6mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L29.0mm_W7.8mm_P27.50mm_MKT -C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*7.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 27.50mm length 29mm width 7.8mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L29.0mm_W7.9mm_P27.50mm_MKT -C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*7.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 27.50mm length 29mm width 7.9mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L29.0mm_W9.1mm_P27.50mm_MKT -C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*9.1mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 27.50mm length 29mm width 9.1mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L29.0mm_W9.6mm_P27.50mm_MKT -C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*9.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 27.50mm length 29mm width 9.6mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L29.0mm_W11.0mm_P27.50mm_MKT -C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*11mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 27.50mm length 29mm width 11mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L29.0mm_W11.9mm_P27.50mm_MKT -C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*11.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 27.50mm length 29mm width 11.9mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L29.0mm_W12.2mm_P27.50mm_MKT -C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*12.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 27.50mm length 29mm width 12.2mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L29.0mm_W13.0mm_P27.50mm_MKT -C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*13mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 27.50mm length 29mm width 13mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L29.0mm_W13.8mm_P27.50mm_MKT -C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*13.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 27.50mm length 29mm width 13.8mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L29.0mm_W14.2mm_P27.50mm_MKT -C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*14.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 27.50mm length 29mm width 14.2mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L29.0mm_W16.0mm_P27.50mm_MKT -C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*16mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 27.50mm length 29mm width 16mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L31.5mm_W9.0mm_P27.50mm_MKS4 -C, Rect series, Radial, pin pitch=27.50mm, , length*width=31.5*9mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 27.50mm length 31.5mm width 9mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L31.5mm_W11.0mm_P27.50mm_MKS4 -C, Rect series, Radial, pin pitch=27.50mm, , length*width=31.5*11mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 27.50mm length 31.5mm width 11mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L31.5mm_W13.0mm_P27.50mm_MKS4 -C, Rect series, Radial, pin pitch=27.50mm, , length*width=31.5*13mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 27.50mm length 31.5mm width 13mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L31.5mm_W15.0mm_P27.50mm_MKS4 -C, Rect series, Radial, pin pitch=27.50mm, , length*width=31.5*15mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 27.50mm length 31.5mm width 15mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L31.5mm_W17.0mm_P27.50mm_MKS4 -C, Rect series, Radial, pin pitch=27.50mm, , length*width=31.5*17mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 27.50mm length 31.5mm width 17mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L31.5mm_W20.0mm_P27.50mm_MKS4 -C, Rect series, Radial, pin pitch=27.50mm, , length*width=31.5*20mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 27.50mm length 31.5mm width 20mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L32.0mm_W15.0mm_P27.00mm -C, Rect series, Radial, pin pitch=27.00mm, , length*width=32*15mm^2, Capacitor, Alternate KiCad Library -C Rect series Radial pin pitch 27.00mm length 32mm width 15mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L33.0mm_W13.0mm_P27.50mm_MKS4 -C, Rect series, Radial, pin pitch=27.50mm, , length*width=33*13mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 27.50mm length 33mm width 13mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L33.0mm_W15.0mm_P27.50mm_MKS4 -C, Rect series, Radial, pin pitch=27.50mm, , length*width=33*15mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 27.50mm length 33mm width 15mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L33.0mm_W20.0mm_P27.50mm_MKS4 -C, Rect series, Radial, pin pitch=27.50mm, , length*width=33*20mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 27.50mm length 33mm width 20mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L36.5mm_W15mm_P32.50mm -C, Rect series, Radial, pin pitch=32.50mm, , length*width=36.5*15mm^2, Measurements based on physical example, no datasheet available, Alternate KiCad Library -C Rect series Radial pin pitch 32.50mm length 36.5mm width 15mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L41.5mm_W9.0mm_P37.50mm_MKS4 -C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*9mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 37.50mm length 41.5mm width 9mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L41.5mm_W11.0mm_P37.50mm_MKS4 -C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*11mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 37.50mm length 41.5mm width 11mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L41.5mm_W13.0mm_P37.50mm_MKS4 -C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*13mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 37.50mm length 41.5mm width 13mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L41.5mm_W15.0mm_P37.50mm_MKS4 -C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*15mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 37.50mm length 41.5mm width 15mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L41.5mm_W17.0mm_P37.50mm_MKS4 -C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*17mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 37.50mm length 41.5mm width 17mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L41.5mm_W19.0mm_P37.50mm_MKS4 -C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*19mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 37.50mm length 41.5mm width 19mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L41.5mm_W20.0mm_P37.50mm_MKS4 -C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*20mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 37.50mm length 41.5mm width 20mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L41.5mm_W24.0mm_P37.50mm_MKS4 -C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*24mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 37.50mm length 41.5mm width 24mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L41.5mm_W31.0mm_P37.50mm_MKS4 -C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*31mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 37.50mm length 41.5mm width 31mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L41.5mm_W35.0mm_P37.50mm_MKS4 -C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*35mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 37.50mm length 41.5mm width 35mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Rect_L41.5mm_W40.0mm_P37.50mm_MKS4 -C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*40mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 37.50mm length 41.5mm width 40mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Trimmer_BFC2-808_L7.3mm_W5.5mm_P5.6mm -C, Trimmer BFC2-808 series Pitch = 5.6mm, Width = 5.5mm, Length = 7.3mm https://www.vishay.com/docs/28526/bfc2808-5mm.pdf, Alternate KiCad Library -C trimmer BFC2 808 pitch 5.6mm width 5.5mm length 7.3mm nohole -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Trimmer_BFC2-808_L7.3mm_W5.5mm_P5.6mm_Hole -C, Trimmer BFC2-808 series Pitch = 5.6mm, Width = 5.5mm, Length = 7.3mm https://www.vishay.com/docs/28526/bfc2808-5mm.pdf, Alternate KiCad Library -C trimmer BFC2 808 pitch 5.6mm width 5.5mm length 7.3mm nohole -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Trimmer_BFC2-808_L7.3mm_W5.5mm_P5.08mm -C, Trimmer BFC2-808 series Pitch = 5.08mm, Width = 5.5mm, Length = 7.3mm https://www.vishay.com/docs/28526/bfc2808-5mm.pdf, Alternate KiCad Library -C trimmer BFC2 808 pitch 5.08mm width 5.5mm length 7.3mm nohole -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Trimmer_BFC2-808_L10.8mm_W10.6mm_P5mm -C, Trimmer BFC2-808 series Pitch = 5mm, Width = 10.6mm, Length = 10.8mm https://www.vishay.com/docs/28528/bfc2808-10mm.pdf, Alternate KiCad Library -C trimmer BFC2 808 pitch 5mm width 10.6mm length 10.8mm nohole -0 -3 -2 -PCM_Capacitor_THT_AKL -C_Trimmer_BFC2-808_L10.8mm_W10.6mm_P5mm_Hole -C, Trimmer BFC2-808 series, Bottom adjustment hole, Pitch = 5mm, Width = 10.6mm, Length = 10.8mm https://www.vishay.com/docs/28528/bfc2808-10mm.pdf, Alternate KiCad Library -C trimmer BFC2 808 pitch 5mm width 10.6mm length 10.8mm hole -0 -3 -2 -PCM_Capacitor_THT_AKL -C_Trimmer_BFC2-808_L10.8mm_W10.6mm_P10mm -C, Trimmer BFC2-808 series Pitch = 10mm, Width = 10.6mm, Length = 10.8mm https://www.vishay.com/docs/28528/bfc2808-10mm.pdf, Alternate KiCad Library -C trimmer BFC2 808 pitch 10mm width 10.6mm length 10.8mm nohole -0 -3 -2 -PCM_Capacitor_THT_AKL -C_Trimmer_BFC2-808_L10.8mm_W10.6mm_P10mm_Hole -C, Trimmer BFC2-808 series, Bottom adjustment hole, Pitch = 10mm, Width = 10.6mm, Length = 10.8mm https://www.vishay.com/docs/28528/bfc2808-10mm.pdf, Alternate KiCad Library -C trimmer BFC2 808 pitch 10mm width 10.6mm length 10.8mm hole -0 -3 -2 -PCM_Capacitor_THT_AKL -C_Trimmer_GKG15_L6.0mm_W6.0mm_P5.0mm -C, Trimmer GKG15 series Pitch = 5.0mm, Width = 6.0mm, Length = 6.0mm https://www.digikey.com/htmldatasheets/production/174846/0/0/1/gkp-gky-gkg-series.html, Alternate KiCad Library -C trimmer GKG15 pitch 5mm width 6mm length 6mm nohole -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Trimmer_GKG16_L6.0mm_W6.0mm_P6.3mm_Hole -C, Trimmer GKG16 series Pitch = 6.3mm, Width = 6.0mm, Length = 6.0mm https://www.digikey.com/htmldatasheets/production/174846/0/0/1/gkp-gky-gkg-series.html, Alternate KiCad Library -C trimmer GKG16 pitch 6.3mm width 6mm length 6mm hole -0 -2 -2 -PCM_Capacitor_THT_AKL -C_Trimmer_GKT_L7.0mm_W7.0mm_P7.0mm -C, Trimmer GKU series Pitch = 5.8mm, Width = 5.0mm, Length = 5.6mm https://www.digikey.com/htmldatasheets/production/174846/0/0/1/gkp-gky-gkg-series.html, Alternate KiCad Library -C trimmer GKU pitch 5mm width 5mm length 5.6mm -0 -3 -2 -PCM_Capacitor_THT_AKL -C_Trimmer_GKU_L5.6mm_W5.0mm_P5.8mm -C, Trimmer GKU series Pitch = 5.8mm, Width = 5.0mm, Length = 5.6mm https://www.digikey.com/htmldatasheets/production/174846/0/0/1/gkp-gky-gkg-series.html, Alternate KiCad Library -C trimmer GKU pitch 5mm width 5mm length 5.6mm -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L10.0mm_D4.5mm_P15.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=10*4.5mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 15mm length 10mm diameter 4.5mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L10.0mm_D6.0mm_P15.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=10*6mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 15mm length 10mm diameter 6mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L11.0mm_D5.0mm_P18.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=18mm, , length*diameter=11*5mm^2, Electrolytic Capacitor, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 18mm length 11mm diameter 5mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L11.0mm_D6.0mm_P18.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=18mm, , length*diameter=11*6mm^2, Electrolytic Capacitor, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 18mm length 11mm diameter 6mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L11.0mm_D8.0mm_P15.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=11*8mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 15mm length 11mm diameter 8mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L18.0mm_D6.5mm_P25.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=18*6.5mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 25mm length 18mm diameter 6.5mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L18.0mm_D8.0mm_P25.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=18*8mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 25mm length 18mm diameter 8mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L18.0mm_D10.0mm_P25.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=18*10mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 25mm length 18mm diameter 10mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L20.0mm_D10.0mm_P26.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=26mm, , length*diameter=20*10mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 26mm length 20mm diameter 10mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L20.0mm_D13.0mm_P26.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=26mm, , length*diameter=20*13mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 26mm length 20mm diameter 13mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L21.0mm_D8.0mm_P28.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=28mm, , length*diameter=21*8mm^2, Electrolytic Capacitor, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 28mm length 21mm diameter 8mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L25.0mm_D10.0mm_P30.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=30mm, , length*diameter=25*10mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 30mm length 25mm diameter 10mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L25.0mm_D10.0mm_P30.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=30mm, , length*diameter=25*10mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 30mm length 25mm diameter 10mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L26.5mm_D20.0mm_P33.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=33mm, , length*diameter=26.5*20mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 33mm length 26.5mm diameter 20mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L26.5mm_D20.0mm_P33.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=33mm, , length*diameter=26.5*20mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 33mm length 26.5mm diameter 20mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L29.0mm_D10.0mm_P35.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=29*10mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 35mm length 29mm diameter 10mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L29.0mm_D10.0mm_P35.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=35mm, , length*diameter=29*10mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 35mm length 29mm diameter 10mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L29.0mm_D13.0mm_P35.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=29*13mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 35mm length 29mm diameter 13mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L29.0mm_D13.0mm_P35.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=35mm, , length*diameter=29*13mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 35mm length 29mm diameter 13mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L29.0mm_D16.0mm_P35.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=29*16mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 35mm length 29mm diameter 16mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L29.0mm_D16.0mm_P35.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=35mm, , length*diameter=29*16mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 35mm length 29mm diameter 16mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L29.0mm_D20.0mm_P35.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=29*20mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 35mm length 29mm diameter 20mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L29.0mm_D20.0mm_P35.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=35mm, , length*diameter=29*20mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 35mm length 29mm diameter 20mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L30.0mm_D10.0mm_P35.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=30*10mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 35mm length 30mm diameter 10mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L30.0mm_D10.0mm_P35.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=35mm, , length*diameter=30*10mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 35mm length 30mm diameter 10mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L30.0mm_D12.5mm_P35.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=30*12.5mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 35mm length 30mm diameter 12.5mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L30.0mm_D12.5mm_P35.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=35mm, , length*diameter=30*12.5mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 35mm length 30mm diameter 12.5mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L30.0mm_D15.0mm_P35.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=30*15mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 35mm length 30mm diameter 15mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L30.0mm_D15.0mm_P35.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=35mm, , length*diameter=30*15mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 35mm length 30mm diameter 15mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L30.0mm_D18.0mm_P35.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=30*18mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 35mm length 30mm diameter 18mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L30.0mm_D18.0mm_P35.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=35mm, , length*diameter=30*18mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 35mm length 30mm diameter 18mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L34.5mm_D20.0mm_P41.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=41mm, , length*diameter=34.5*20mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 41mm length 34.5mm diameter 20mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L34.5mm_D20.0mm_P41.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=41mm, , length*diameter=34.5*20mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 41mm length 34.5mm diameter 20mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L37.0mm_D13.0mm_P43.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=43mm, , length*diameter=37*13mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 43mm length 37mm diameter 13mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L37.0mm_D13.0mm_P43.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=43mm, , length*diameter=37*13mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 43mm length 37mm diameter 13mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L37.0mm_D16.0mm_P43.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=43mm, , length*diameter=37*16mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 43mm length 37mm diameter 16mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L37.0mm_D16.0mm_P43.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=43mm, , length*diameter=37*16mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 43mm length 37mm diameter 16mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L37.0mm_D20.0mm_P43.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=43mm, , length*diameter=37*20mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 43mm length 37mm diameter 20mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L37.0mm_D20.0mm_P43.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=43mm, , length*diameter=37*20mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 43mm length 37mm diameter 20mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L38.0mm_D18.0mm_P44.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=44mm, , length*diameter=38*18mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 44mm length 38mm diameter 18mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L38.0mm_D18.0mm_P44.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=44mm, , length*diameter=38*18mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 44mm length 38mm diameter 18mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L38.0mm_D21.0mm_P44.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=44mm, , length*diameter=38*21mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 44mm length 38mm diameter 21mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L38.0mm_D21.0mm_P44.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=44mm, , length*diameter=38*21mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 44mm length 38mm diameter 21mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L40.0mm_D16.0mm_P48.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=48mm, , length*diameter=40*16mm^2, Electrolytic Capacitor, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 48mm length 40mm diameter 16mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L40.0mm_D16.0mm_P48.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=48mm, , length*diameter=40*16mm^2, Electrolytic Capacitor, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 48mm length 40mm diameter 16mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L42.0mm_D23.0mm_P45.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=45mm, , length*diameter=42*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 23.0mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L42.0mm_D23.0mm_P45.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=45mm, , length*diameter=42*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 23.0mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L42.0mm_D26.0mm_P45.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=45mm, , length*diameter=42*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 26mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L42.0mm_D26.0mm_P45.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=45mm, , length*diameter=42*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 26mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L42.0mm_D29.0mm_P45.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=45mm, , length*diameter=42*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 29.0mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L42.0mm_D29.0mm_P45.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=45mm, , length*diameter=42*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 29.0mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L42.0mm_D32.0mm_P45.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=45mm, , length*diameter=42*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 32.0mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L42.0mm_D32.0mm_P45.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=45mm, , length*diameter=42*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 32.0mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L42.0mm_D35.0mm_P45.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=45mm, , length*diameter=42*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 35.0mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L42.0mm_D35.0mm_P45.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=45mm, , length*diameter=42*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 35.0mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L42.5mm_D20.0mm_P49.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=49mm, , length*diameter=42.5*20mm^2, Electrolytic Capacitor, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 49mm length 42.5mm diameter 20mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L42.5mm_D20.0mm_P49.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=49mm, , length*diameter=42.5*20mm^2, Electrolytic Capacitor, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 49mm length 42.5mm diameter 20mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L46.0mm_D20.0mm_P52.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=52mm, , length*diameter=46*20mm^2, Electrolytic Capacitor, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 52mm length 46mm diameter 20mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L46.0mm_D20.0mm_P52.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=52mm, , length*diameter=46*20mm^2, Electrolytic Capacitor, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 52mm length 46mm diameter 20mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L55.0mm_D23.0mm_P60.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=60mm, , length*diameter=55*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 23.0mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L55.0mm_D23.0mm_P60.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=60mm, , length*diameter=55*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 23.0mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L55.0mm_D26.0mm_P60.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=60mm, , length*diameter=55*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 26mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L55.0mm_D26.0mm_P60.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=60mm, , length*diameter=55*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 26mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L55.0mm_D29.0mm_P60.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=60mm, , length*diameter=55*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 29.0mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L55.0mm_D29.0mm_P60.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=60mm, , length*diameter=55*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 29.0mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L55.0mm_D32.0mm_P60.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=60mm, , length*diameter=55*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 32.0mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L55.0mm_D32.0mm_P60.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=60mm, , length*diameter=55*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 32.0mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L55.0mm_D35.0mm_P60.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=60mm, , length*diameter=55*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 35.0mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L55.0mm_D35.0mm_P60.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=60mm, , length*diameter=55*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 35.0mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L67.0mm_D23.0mm_P75.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=75mm, , length*diameter=67*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 23.0mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L67.0mm_D23.0mm_P75.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=75mm, , length*diameter=67*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 23.0mm Electrolytic Capacitor Support -0 -8 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L67.0mm_D26.0mm_P75.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=75mm, , length*diameter=67*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 26mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L67.0mm_D26.0mm_P75.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=75mm, , length*diameter=67*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 26mm Electrolytic Capacitor Support -0 -8 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L67.0mm_D29.0mm_P75.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=75mm, , length*diameter=67*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 29.0mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L67.0mm_D29.0mm_P75.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=75mm, , length*diameter=67*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 29.0mm Electrolytic Capacitor Support -0 -8 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L67.0mm_D32.0mm_P75.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=75mm, , length*diameter=67*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 32.0mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L67.0mm_D32.0mm_P75.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=75mm, , length*diameter=67*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 32.0mm Electrolytic Capacitor Support -0 -8 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L67.0mm_D35.0mm_P75.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=75mm, , length*diameter=67*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 35.0mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L67.0mm_D35.0mm_P75.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=75mm, , length*diameter=67*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 35.0mm Electrolytic Capacitor Support -0 -8 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L80.0mm_D23.0mm_P85.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=85mm, , length*diameter=80*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 23.0mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L80.0mm_D23.0mm_P85.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=85mm, , length*diameter=80*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 23.0mm Electrolytic Capacitor Support -0 -8 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L80.0mm_D26.0mm_P85.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=85mm, , length*diameter=80*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 26mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L80.0mm_D26.0mm_P85.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=85mm, , length*diameter=80*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 26mm Electrolytic Capacitor Support -0 -8 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L80.0mm_D29.0mm_P85.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=85mm, , length*diameter=80*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 29.0mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L80.0mm_D29.0mm_P85.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=85mm, , length*diameter=80*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 29.0mm Electrolytic Capacitor Support -0 -8 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L80.0mm_D32.0mm_P85.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=85mm, , length*diameter=80*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 32.0mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L80.0mm_D32.0mm_P85.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=85mm, , length*diameter=80*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 32.0mm Electrolytic Capacitor Support -0 -8 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L80.0mm_D35.0mm_P85.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=85mm, , length*diameter=80*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 35.0mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L80.0mm_D35.0mm_P85.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=85mm, , length*diameter=80*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 35.0mm Electrolytic Capacitor Support -0 -8 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L93.0mm_D23.0mm_P100.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=100mm, , length*diameter=93*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 23.0mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L93.0mm_D23.0mm_P100.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=100mm, , length*diameter=93*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 23.0mm Electrolytic Capacitor Support -0 -8 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L93.0mm_D26.0mm_P100.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=100mm, , length*diameter=93*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 26mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L93.0mm_D26.0mm_P100.00mm_Horizontal_Supported -CP, Axial series, Axial, Additional holes for supports, Horizontal, pin pitch=100mm, , length*diameter=93*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 26mm Electrolytic Capacitor Support -0 -8 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L93.0mm_D29.0mm_P100.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=100mm, , length*diameter=93*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 29.0mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L93.0mm_D29.0mm_P100.00mm_Horizontal_Supported -CP, Axial series, Axial, Additional holes for supports, Horizontal, pin pitch=100mm, , length*diameter=93*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 29.0mm Electrolytic Capacitor Support -0 -8 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L93.0mm_D32.0mm_P100.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=100mm, , length*diameter=93*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 32.0mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L93.0mm_D32.0mm_P100.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=100mm, , length*diameter=93*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 32.0mm Electrolytic Capacitor Support -0 -8 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L93.0mm_D35.0mm_P100.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=100mm, , length*diameter=93*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 35.0mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Axial_L93.0mm_D35.0mm_P100.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=100mm, , length*diameter=93*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 35.0mm Electrolytic Capacitor Support -0 -8 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D4.0mm_P1.50mm -CP, Radial series, Radial, pin pitch=1.50mm, , diameter=4mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 1.50mm diameter 4mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D4.0mm_P2.00mm -CP, Radial series, Radial, pin pitch=2.00mm, , diameter=4mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 2.00mm diameter 4mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D5.0mm_P2.00mm -CP, Radial series, Radial, pin pitch=2.00mm, , diameter=5mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 2.00mm diameter 5mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D5.0mm_P2.50mm -CP, Radial series, Radial, pin pitch=2.50mm, , diameter=5mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 2.50mm diameter 5mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D6.3mm_P2.50mm -CP, Radial series, Radial, pin pitch=2.50mm, , diameter=6.3mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 2.50mm diameter 6.3mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D7.5mm_P2.50mm -CP, Radial series, Radial, pin pitch=2.50mm, , diameter=7.5mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 2.50mm diameter 7.5mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D8.0mm_P2.50mm -CP, Radial series, Radial, pin pitch=2.50mm, , diameter=8mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 2.50mm diameter 8mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D8.0mm_P3.50mm -CP, Radial series, Radial, pin pitch=3.50mm, , diameter=8mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 3.50mm diameter 8mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D8.0mm_P3.50mm_H20mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=3.50mm, diameter=8mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 20mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D8.0mm_P3.50mm_H20mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 20mm Electrolytic Capacitor Support -0 -4 -3 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D8.0mm_P3.50mm_H20mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=3.50mm, , diameter=8mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 20mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D8.0mm_P3.50mm_H20mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 20mm Electrolytic Capacitor Support -0 -4 -3 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D8.0mm_P3.50mm_H30mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=3.50mm, , diameter=8mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 30mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D8.0mm_P3.50mm_H30mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 30mm Electrolytic Capacitor Support -0 -4 -3 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D8.0mm_P3.50mm_H30mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=3.50mm, , diameter=8mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 30mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D8.0mm_P3.50mm_H30mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 30mm Electrolytic Capacitor Support -0 -4 -3 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D8.0mm_P3.50mm_H40mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=3.50mm, , diameter=8mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 40mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D8.0mm_P3.50mm_H40mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 40mm Electrolytic Capacitor Support -0 -6 -3 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D8.0mm_P3.50mm_H40mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=3.50mm, , diameter=8mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 40mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D8.0mm_P3.50mm_H40mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 40mm Electrolytic Capacitor Support -0 -6 -3 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D8.0mm_P3.80mm -CP, Radial series, Radial, pin pitch=3.80mm, , diameter=8mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 3.80mm diameter 8mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D8.0mm_P5.00mm -CP, Radial series, Radial, pin pitch=5.00mm, , diameter=8mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 5.00mm diameter 8mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D8.0mm_P5mm_H20mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=3.50mm, , diameter=8mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 20mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D8.0mm_P5mm_H20mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 20mm Electrolytic Capacitor Support -0 -4 -3 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D8.0mm_P5mm_H20mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=3.50mm, , diameter=8mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 20mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D8.0mm_P5mm_H20mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 20mm Electrolytic Capacitor Support -0 -4 -3 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D8.0mm_P5mm_H30mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=3.50mm, , diameter=8mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 30mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D8.0mm_P5mm_H30mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 30mm Electrolytic Capacitor Support -0 -4 -3 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D8.0mm_P5mm_H30mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=3.50mm, , diameter=8mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 30mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D8.0mm_P5mm_H30mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 30mm Electrolytic Capacitor Support -0 -4 -3 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D8.0mm_P5mm_H40mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=3.50mm, , diameter=8mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 40mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D8.0mm_P5mm_H40mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 40mm Electrolytic Capacitor Support -0 -6 -3 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D8.0mm_P5mm_H40mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=3.50mm, , diameter=8mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 40mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D8.0mm_P5mm_H40mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 40mm Electrolytic Capacitor Support -0 -6 -3 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D10.0mm_P2.50mm -CP, Radial series, Radial, pin pitch=2.50mm, , diameter=10mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 2.50mm diameter 10mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D10.0mm_P2.50mm_P5.00mm -CP, Radial series, Radial, pin pitch=2.50mm 5.00mm, , diameter=10mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 2.50mm 5.00mm diameter 10mm Electrolytic Capacitor -0 -4 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D10.0mm_P3.50mm -CP, Radial series, Radial, pin pitch=3.50mm, , diameter=10mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 3.50mm diameter 10mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D10.0mm_P3.80mm -CP, Radial series, Radial, pin pitch=3.80mm, , diameter=10mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 3.80mm diameter 10mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D10.0mm_P5.00mm -CP, Radial series, Radial, pin pitch=5.00mm, , diameter=10mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 5.00mm diameter 10mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D10.0mm_P5.00mm_H20mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=10mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 20mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D10.0mm_P5.00mm_H20mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 20mm Electrolytic Capacitor Support -0 -4 -3 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D10.0mm_P5.00mm_H20mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=10mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 20mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D10.0mm_P5.00mm_H20mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 20mm Electrolytic Capacitor Support -0 -4 -3 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D10.0mm_P5.00mm_H21mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=10mm, height = 21mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 21mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D10.0mm_P5.00mm_H21mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 21mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 21mm Electrolytic Capacitor Support -0 -4 -3 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D10.0mm_P5.00mm_H21mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=10mm, height = 21mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 21mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D10.0mm_P5.00mm_H21mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 21mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 21mm Electrolytic Capacitor Support -0 -4 -3 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D10.0mm_P5.00mm_H23mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=10mm, height = 23mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 23mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D10.0mm_P5.00mm_H23mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 23mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 23mm Electrolytic Capacitor Support -0 -4 -3 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D10.0mm_P5.00mm_H23mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=10mm, height = 23mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 23mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D10.0mm_P5.00mm_H23mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 23mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 23mm Electrolytic Capacitor Support -0 -4 -3 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D10.0mm_P5.00mm_H25mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=10mm, height = 25mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 25mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D10.0mm_P5.00mm_H25mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 25mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 25mm Electrolytic Capacitor Support -0 -4 -3 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D10.0mm_P5.00mm_H25mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=10mm, height = 25mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 25mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D10.0mm_P5.00mm_H25mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 25mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 25mm Electrolytic Capacitor Support -0 -4 -3 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D10.0mm_P5.00mm_H30mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=10mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 30mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D10.0mm_P5.00mm_H30mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 30mm Electrolytic Capacitor Support -0 -4 -3 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D10.0mm_P5.00mm_H30mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=10mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 30mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D10.0mm_P5.00mm_H30mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 30mm Electrolytic Capacitor Support -0 -4 -3 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D10.0mm_P5.00mm_H31.5mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=10mm, height = 31.5mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 31.5mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D10.0mm_P5.00mm_H31.5mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 31.5mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 31.5mm Electrolytic Capacitor Support -0 -4 -3 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D10.0mm_P5.00mm_H31.5mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=10mm, height = 31.5mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 31.5mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D10.0mm_P5.00mm_H31.5mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 31.5mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 31.5mm Electrolytic Capacitor Support -0 -4 -3 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D10.0mm_P5.00mm_H35mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=10mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 35mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D10.0mm_P5.00mm_H35mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 35mm Electrolytic Capacitor Support -0 -4 -3 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D10.0mm_P5.00mm_H35mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=10mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 35mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D10.0mm_P5.00mm_H35mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 35mm Electrolytic Capacitor Support -0 -4 -3 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D10.0mm_P5.00mm_H40mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=10mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 40mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D10.0mm_P5.00mm_H40mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 40mm Electrolytic Capacitor Support -0 -6 -3 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D10.0mm_P5.00mm_H40mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=10mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 40mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D10.0mm_P5.00mm_H40mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 40mm Electrolytic Capacitor Support -0 -6 -3 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D10.0mm_P5.00mm_H45mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=10mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 45mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D10.0mm_P5.00mm_H45mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 45mm Electrolytic Capacitor Support -0 -6 -3 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D10.0mm_P5.00mm_H45mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=10mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 45mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D10.0mm_P5.00mm_H45mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 45mm Electrolytic Capacitor Support -0 -6 -3 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D10.0mm_P5.00mm_H50mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=10mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 50mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D10.0mm_P5.00mm_H50mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 50mm Electrolytic Capacitor Support -0 -6 -3 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D10.0mm_P5.00mm_H50mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=10mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 50mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D10.0mm_P5.00mm_H50mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 50mm Electrolytic Capacitor Support -0 -6 -3 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D10.0mm_P5.00mm_H60mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=10mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 60mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D10.0mm_P5.00mm_H60mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 60mm Electrolytic Capacitor Support -0 -8 -3 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D10.0mm_P5.00mm_H60mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=10mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 60mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D10.0mm_P5.00mm_H60mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 60mm Electrolytic Capacitor Support -0 -8 -3 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D10.0mm_P5.00mm_P7.50mm -CP, Radial series, Radial, pin pitch=5.00mm 7.50mm, , diameter=10mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 5.00mm 7.50mm diameter 10mm Electrolytic Capacitor -0 -4 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D10.0mm_P7.50mm -CP, Radial series, Radial, pin pitch=7.50mm, , diameter=10mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 7.50mm diameter 10mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D12.5mm_P2.50mm -CP, Radial series, Radial, pin pitch=2.50mm, , diameter=12.5mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 2.50mm diameter 12.5mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D12.5mm_P5.00mm -CP, Radial series, Radial, pin pitch=5.00mm, , diameter=12.5mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 5.00mm diameter 12.5mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D12.5mm_P5.00mm_H25mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=12.5mm, height = 25mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 25mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D12.5mm_P5.00mm_H25mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 25mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 25mm Electrolytic Capacitor Support -0 -4 -3 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D12.5mm_P5.00mm_H25mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=12.5mm, height = 25mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 25mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D12.5mm_P5.00mm_H25mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 25mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 25mm Electrolytic Capacitor Support -0 -4 -3 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D12.5mm_P5.00mm_H30mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=12.5mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 30mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D12.5mm_P5.00mm_H30mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 30mm Electrolytic Capacitor Support -0 -4 -3 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D12.5mm_P5.00mm_H30mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=12.5mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 30mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D12.5mm_P5.00mm_H30mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 30mm Electrolytic Capacitor Support -0 -4 -3 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D12.5mm_P5.00mm_H31.5mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=12.5mm, height = 31.5mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 31.5mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D12.5mm_P5.00mm_H31.5mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 31.5mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 31.5mm Electrolytic Capacitor Support -0 -4 -3 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D12.5mm_P5.00mm_H31.5mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=12.5mm, height = 31.5mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 31.5mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D12.5mm_P5.00mm_H31.5mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 31.5mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 31.5mm Electrolytic Capacitor Support -0 -4 -3 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D12.5mm_P5.00mm_H35mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=12.5mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 35mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D12.5mm_P5.00mm_H35mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 35mm Electrolytic Capacitor Support -0 -4 -3 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D12.5mm_P5.00mm_H35mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=12.5mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 35mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D12.5mm_P5.00mm_H35mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 35mm Electrolytic Capacitor Support -0 -4 -3 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D12.5mm_P5.00mm_H40mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=12.5mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 40mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D12.5mm_P5.00mm_H40mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 40mm Electrolytic Capacitor Support -0 -6 -3 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D12.5mm_P5.00mm_H40mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=12.5mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 40mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D12.5mm_P5.00mm_H40mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 40mm Electrolytic Capacitor Support -0 -6 -3 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D12.5mm_P5.00mm_H45mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=12.5mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 45mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D12.5mm_P5.00mm_H45mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 45mm Electrolytic Capacitor Support -0 -6 -3 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D12.5mm_P5.00mm_H45mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=12.5mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 45mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D12.5mm_P5.00mm_H45mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 45mm Electrolytic Capacitor Support -0 -6 -3 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D12.5mm_P5.00mm_H50mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=12.5mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 50mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D12.5mm_P5.00mm_H50mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 50mm Electrolytic Capacitor Support -0 -6 -3 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D12.5mm_P5.00mm_H50mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=12.5mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 50mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D12.5mm_P5.00mm_H50mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 50mm Electrolytic Capacitor Support -0 -6 -3 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D12.5mm_P5.00mm_H60mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=12.5mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 60mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D12.5mm_P5.00mm_H60mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 60mm Electrolytic Capacitor Support -0 -8 -3 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D12.5mm_P5.00mm_H60mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=12.5mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 60mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D12.5mm_P5.00mm_H60mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 60mm Electrolytic Capacitor Support -0 -8 -3 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D12.5mm_P7.50mm -CP, Radial series, Radial, pin pitch=7.50mm, , diameter=12.5mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 7.50mm diameter 12.5mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D13.0mm_P2.50mm -CP, Radial series, Radial, pin pitch=2.50mm, , diameter=13mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 2.50mm diameter 13mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D13.0mm_P5.00mm -CP, Radial series, Radial, pin pitch=5.00mm, , diameter=13mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 5.00mm diameter 13mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D13.0mm_P7.50mm -CP, Radial series, Radial, pin pitch=7.50mm, , diameter=13mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 7.50mm diameter 13mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D14.0mm_P5.00mm -CP, Radial series, Radial, pin pitch=5.00mm, , diameter=14mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 5.00mm diameter 14mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D14.0mm_P7.50mm -CP, Radial series, Radial, pin pitch=7.50mm, , diameter=14mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 7.50mm diameter 14mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D16.0mm_P7.50mm -CP, Radial series, Radial, pin pitch=7.50mm, , diameter=16mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 7.50mm diameter 16mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D16.0mm_P7.50mm_H35mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=7.50mm, , diameter=16mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 16mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D16.0mm_P7.50mm_H35mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=7.50mm, , diameter=16mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 16mm Electrolytic Capacitor Support -0 -4 -3 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D16.0mm_P7.50mm_H35mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=7.50mm, , diameter=16mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 16mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D16.0mm_P7.50mm_H35mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=7.50mm, , diameter=16mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 16mm Electrolytic Capacitor Support -0 -4 -3 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D16.0mm_P7.50mm_H40mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=7.50mm, , diameter=16mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 40mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D16.0mm_P7.50mm_H40mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=7.50mm, , diameter=16mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 40mm Electrolytic Capacitor Support -0 -6 -3 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D16.0mm_P7.50mm_H40mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=7.50mm, , diameter=16mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 40mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D16.0mm_P7.50mm_H40mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=7.50mm, , diameter=16mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 40mm Electrolytic Capacitor Support -0 -6 -3 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D16.0mm_P7.50mm_H45mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=7.50mm, , diameter=16mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 45mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D16.0mm_P7.50mm_H45mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=7.50mm, , diameter=16mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 45mm Electrolytic Capacitor Support -0 -6 -3 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D16.0mm_P7.50mm_H45mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=7.50mm, , diameter=16mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 45mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D16.0mm_P7.50mm_H45mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=7.50mm, , diameter=16mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 45mm Electrolytic Capacitor Support -0 -6 -3 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D16.0mm_P7.50mm_H50mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=7.50mm, , diameter=16mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 50mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D16.0mm_P7.50mm_H50mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=7.50mm, , diameter=16mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 50mm Electrolytic Capacitor Support -0 -6 -3 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D16.0mm_P7.50mm_H50mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=7.50mm, , diameter=16mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 50mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D16.0mm_P7.50mm_H50mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=7.50mm, , diameter=16mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 50mm Electrolytic Capacitor Support -0 -6 -3 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D16.0mm_P7.50mm_H60mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=7.50mm, , diameter=16mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 60mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D16.0mm_P7.50mm_H60mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=7.50mm, , diameter=16mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 60mm Electrolytic Capacitor Support -0 -8 -3 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D16.0mm_P7.50mm_H60mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=7.50mm, , diameter=16mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 60mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D16.0mm_P7.50mm_H60mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=7.50mm, , diameter=16mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 60mm Electrolytic Capacitor Support -0 -8 -3 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D17.0mm_P7.50mm -CP, Radial series, Radial, pin pitch=7.50mm, , diameter=17mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 7.50mm diameter 17mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D18.0mm_P7.50mm -CP, Radial series, Radial, pin pitch=7.50mm, , diameter=18mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 7.50mm diameter 18mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D18.0mm_P7.50mm_H40mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=7.50mm, , diameter=18mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 40mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D18.0mm_P7.50mm_H40mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=7.50mm, , diameter=18mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 40mm Electrolytic Capacitor Support -0 -6 -3 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D18.0mm_P7.50mm_H40mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=7.50mm, , diameter=18mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 40mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D18.0mm_P7.50mm_H40mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=7.50mm, , diameter=18mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 40mm Electrolytic Capacitor Support -0 -6 -3 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D18.0mm_P7.50mm_H45mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=7.50mm, , diameter=18mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 45mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D18.0mm_P7.50mm_H45mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=7.50mm, , diameter=18mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 45mm Electrolytic Capacitor Support -0 -6 -3 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D18.0mm_P7.50mm_H45mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=7.50mm, , diameter=18mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 45mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D18.0mm_P7.50mm_H45mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=7.50mm, , diameter=18mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 45mm Electrolytic Capacitor Support -0 -6 -3 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D18.0mm_P7.50mm_H50mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=7.50mm, , diameter=18mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 50mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D18.0mm_P7.50mm_H50mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=7.50mm, , diameter=18mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 50mm Electrolytic Capacitor Support -0 -6 -3 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D18.0mm_P7.50mm_H50mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=7.50mm, , diameter=18mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 50mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D18.0mm_P7.50mm_H50mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=7.50mm, , diameter=18mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 50mm Electrolytic Capacitor Support -0 -6 -3 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D18.0mm_P7.50mm_H60mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=7.50mm, , diameter=18mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 60mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D18.0mm_P7.50mm_H60mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=7.50mm, , diameter=18mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 60mm Electrolytic Capacitor Support -0 -8 -3 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D18.0mm_P7.50mm_H60mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=7.50mm, , diameter=18mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 60mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D18.0mm_P7.50mm_H60mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=7.50mm, , diameter=18mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 18mm Electrolytic height 60mm Capacitor Support -0 -8 -3 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D22.0mm_P10.00mm_3pin_SnapIn -CP, Radial series, Radial, pin pitch=10.00mm, , diameter=22mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf -CP Radial series Radial pin pitch 10.00mm diameter 22mm Electrolytic Capacitor -0 -3 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D22.0mm_P10.00mm_SnapIn -CP, Radial series, Radial, pin pitch=10.00mm, , diameter=22mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf -CP Radial series Radial pin pitch 10.00mm diameter 22mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D24.0mm_P10.00mm_3pin_SnapIn -CP, Radial series, Radial, pin pitch=10.00mm, , diameter=24mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf -CP Radial series Radial pin pitch 10.00mm diameter 24mm Electrolytic Capacitor -0 -3 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D24.0mm_P10.00mm_SnapIn -CP, Radial series, Radial, pin pitch=10.00mm, , diameter=24mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf -CP Radial series Radial pin pitch 10.00mm diameter 24mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D25.0mm_P10.00mm_3pin_SnapIn -CP, Radial series, Radial, pin pitch=10.00mm, , diameter=25mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf -CP Radial series Radial pin pitch 10.00mm diameter 25mm Electrolytic Capacitor -0 -3 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D25.0mm_P10.00mm_SnapIn -CP, Radial series, Radial, pin pitch=10.00mm, , diameter=25mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf -CP Radial series Radial pin pitch 10.00mm diameter 25mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D26.0mm_P10.00mm_3pin_SnapIn -CP, Radial series, Radial, pin pitch=10.00mm, , diameter=26mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf -CP Radial series Radial pin pitch 10.00mm diameter 26mm Electrolytic Capacitor -0 -3 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D26.0mm_P10.00mm_SnapIn -CP, Radial series, Radial, pin pitch=10.00mm, , diameter=26mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf -CP Radial series Radial pin pitch 10.00mm diameter 26mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D30.0mm_P10.00mm_3pin_SnapIn -CP, Radial series, Radial, pin pitch=10.00mm, , diameter=30mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf -CP Radial series Radial pin pitch 10.00mm diameter 30mm Electrolytic Capacitor -0 -3 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D30.0mm_P10.00mm_SnapIn -CP, Radial series, Radial, pin pitch=10.00mm, , diameter=30mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf -CP Radial series Radial pin pitch 10.00mm diameter 30mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D35.0mm_P10.00mm_3pin_SnapIn -CP, Radial series, Radial, pin pitch=10.00mm, , diameter=35mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf -CP Radial series Radial pin pitch 10.00mm diameter 35mm Electrolytic Capacitor -0 -3 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D35.0mm_P10.00mm_SnapIn -CP, Radial series, Radial, pin pitch=10.00mm, , diameter=35mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf -CP Radial series Radial pin pitch 10.00mm diameter 35mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D40.0mm_P10.00mm_3pin_SnapIn -CP, Radial series, Radial, pin pitch=10.00mm, , diameter=40mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf -CP Radial series Radial pin pitch 10.00mm diameter 40mm Electrolytic Capacitor -0 -3 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_D40.0mm_P10.00mm_SnapIn -CP, Radial series, Radial, pin pitch=10.00mm, , diameter=40mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf -CP Radial series Radial pin pitch 10.00mm diameter 40mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_Tantal_D4.5mm_P2.50mm -CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=4.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf -CP Radial_Tantal series Radial pin pitch 2.50mm diameter 4.5mm Tantal Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_Tantal_D4.5mm_P5.00mm -CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=4.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf, Alternate KiCad Library -CP Radial_Tantal series Radial pin pitch 5.00mm diameter 4.5mm Tantal Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_Tantal_D5.0mm_P2.50mm -CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=5.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf -CP Radial_Tantal series Radial pin pitch 2.50mm diameter 5.0mm Tantal Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_Tantal_D5.0mm_P5.00mm -CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=5.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf, Alternate KiCad Library -CP Radial_Tantal series Radial pin pitch 5.00mm diameter 5.0mm Tantal Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_Tantal_D5.5mm_P2.50mm -CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=5.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf -CP Radial_Tantal series Radial pin pitch 2.50mm diameter 5.5mm Tantal Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_Tantal_D5.5mm_P5.00mm -CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=5.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf, Alternate KiCad Library -CP Radial_Tantal series Radial pin pitch 5.00mm diameter 5.5mm Tantal Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_Tantal_D6.0mm_P2.50mm -CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=6.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf -CP Radial_Tantal series Radial pin pitch 2.50mm diameter 6.0mm Tantal Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_Tantal_D6.0mm_P5.00mm -CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=6.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf, Alternate KiCad Library -CP Radial_Tantal series Radial pin pitch 5.00mm diameter 6.0mm Tantal Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_Tantal_D7.0mm_P2.50mm -CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=7.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf -CP Radial_Tantal series Radial pin pitch 2.50mm diameter 7.0mm Tantal Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_Tantal_D7.0mm_P5.00mm -CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=7.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf, Alternate KiCad Library -CP Radial_Tantal series Radial pin pitch 5.00mm diameter 7.0mm Tantal Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_Tantal_D8.0mm_P2.50mm -CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=8.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf -CP Radial_Tantal series Radial pin pitch 2.50mm diameter 8.0mm Tantal Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_Tantal_D8.0mm_P5.00mm -CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=8.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf, Alternate KiCad Library -CP Radial_Tantal series Radial pin pitch 5.00mm diameter 8.0mm Tantal Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_Tantal_D9.0mm_P2.50mm -CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=9.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf -CP Radial_Tantal series Radial pin pitch 2.50mm diameter 9.0mm Tantal Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_Tantal_D9.0mm_P5.00mm -CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=9.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf, Alternate KiCad Library -CP Radial_Tantal series Radial pin pitch 5.00mm diameter 9.0mm Tantal Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_Tantal_D10.5mm_P2.50mm -CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=10.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf -CP Radial_Tantal series Radial pin pitch 2.50mm diameter 10.5mm Tantal Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -CP_Radial_Tantal_D10.5mm_P5.00mm -CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=10.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf, Alternate KiCad Library -CP Radial_Tantal series Radial pin pitch 5.00mm diameter 10.5mm Tantal Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Axial_L3.0mm_D2.3mm_P5.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 7.5mm length 3.8mm diameter 2.6mm -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Axial_L3.0mm_D2.3mm_P7.50mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 7.5mm length 3.8mm diameter 2.6mm -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Axial_L3.0mm_D2.3mm_P10.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 7.5mm length 3.8mm diameter 2.6mm -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Axial_L3.0mm_D2.3mm_P12.50mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 7.5mm length 3.8mm diameter 2.6mm -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Axial_L3.0mm_D2.3mm_P15.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 7.5mm length 3.8mm diameter 2.6mm -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Axial_L3.0mm_D2.3mm_P17.50mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 7.5mm length 3.8mm diameter 2.6mm -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Axial_L3.0mm_D2.3mm_P20.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 7.5mm length 3.8mm diameter 2.6mm -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Axial_L3.0mm_D2.3mm_P25.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 7.5mm length 3.8mm diameter 2.6mm -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Axial_L3.0mm_D2.3mm_P30.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 7.5mm length 3.8mm diameter 2.6mm -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Axial_L3.8mm_D2.6mm_P7.50mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 7.5mm length 3.8mm diameter 2.6mm -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Axial_L3.8mm_D2.6mm_P10.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=10mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 10mm length 3.8mm diameter 2.6mm -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Axial_L3.8mm_D2.6mm_P12.50mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=12.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 12.5mm length 3.8mm diameter 2.6mm -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Axial_L3.8mm_D2.6mm_P15.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 15mm length 3.8mm diameter 2.6mm -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Axial_L3.8mm_D2.6mm_P17.50mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 15mm length 3.8mm diameter 2.6mm -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Axial_L3.8mm_D2.6mm_P20.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 15mm length 3.8mm diameter 2.6mm -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Axial_L3.8mm_D2.6mm_P25.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 15mm length 3.8mm diameter 2.6mm -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Axial_L3.8mm_D2.6mm_P30.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 15mm length 3.8mm diameter 2.6mm -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Axial_L5.1mm_D3.1mm_P7.50mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=5.1*3.1mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 7.5mm length 5.1mm diameter 3.1mm -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Axial_L5.1mm_D3.1mm_P10.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=10mm, , length*diameter=5.1*3.1mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 10mm length 5.1mm diameter 3.1mm -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Axial_L5.1mm_D3.1mm_P12.50mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=12.5mm, , length*diameter=5.1*3.1mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 12.5mm length 5.1mm diameter 3.1mm -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Axial_L5.1mm_D3.1mm_P15.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=5.1*3.1mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 15mm length 5.1mm diameter 3.1mm -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Axial_L5.1mm_D3.1mm_P17.50mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=5.1*3.1mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 15mm length 5.1mm diameter 3.1mm -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Axial_L5.1mm_D3.1mm_P20.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=5.1*3.1mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 15mm length 5.1mm diameter 3.1mm -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Axial_L5.1mm_D3.1mm_P25.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=5.1*3.1mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 15mm length 5.1mm diameter 3.1mm -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Axial_L5.1mm_D3.1mm_P30.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=5.1*3.1mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 15mm length 5.1mm diameter 3.1mm -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Axial_L12.0mm_D6.5mm_P15.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=12*6.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 15mm length 12mm diameter 6.5mm -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Axial_L12.0mm_D6.5mm_P20.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*6.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 6.5mm -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Axial_L12.0mm_D6.5mm_P25.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*6.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 6.5mm -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Axial_L12.0mm_D6.5mm_P30.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*6.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 6.5mm -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Axial_L12.0mm_D7.5mm_P15.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=12*7.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 15mm length 12mm diameter 7.5mm -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Axial_L12.0mm_D7.5mm_P20.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*7.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 7.5mm -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Axial_L12.0mm_D7.5mm_P25.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*7.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 7.5mm -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Axial_L12.0mm_D7.5mm_P30.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*7.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 7.5mm -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Axial_L12.0mm_D8.5mm_P15.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=12*8.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 15mm length 12mm diameter 8.5mm -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Axial_L12.0mm_D8.5mm_P20.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*8.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 8.5mm -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Axial_L12.0mm_D8.5mm_P25.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*8.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 8.5mm -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Axial_L12.0mm_D8.5mm_P30.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*8.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 8.5mm -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Axial_L12.0mm_D9.5mm_P15.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=12*9.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 15mm length 12mm diameter 9.5mm -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Axial_L12.0mm_D9.5mm_P20.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*9.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 9.5mm -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Axial_L12.0mm_D9.5mm_P25.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*9.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 9.5mm -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Axial_L12.0mm_D9.5mm_P30.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*9.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 9.5mm -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Axial_L12.0mm_D10.5mm_P15.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=12*10.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 15mm length 12mm diameter 10.5mm -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Axial_L12.0mm_D10.5mm_P20.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*10.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 10.5mm -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Axial_L12.0mm_D10.5mm_P25.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*10.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 10.5mm -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Axial_L17.0mm_D6.5mm_P20.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=17*6.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 20mm length 17mm diameter 6.5mm -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Axial_L17.0mm_D6.5mm_P25.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=17*6.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 25mm length 17mm diameter 6.5mm -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Axial_L17.0mm_D6.5mm_P30.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=17*6.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 25mm length 17mm diameter 6.5mm -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Axial_L17.0mm_D7.0mm_P20.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=17*7.0mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 20mm length 17mm diameter 7.0mm -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Axial_L17.0mm_D7.0mm_P25.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=17*7.0mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 25mm length 17mm diameter 7.0mm -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Axial_L17.0mm_D7.0mm_P30.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=17*7.0mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 25mm length 17mm diameter 7.0mm -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Axial_L19.0mm_D7.5mm_P25.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=19*7.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 25mm length 19mm diameter 7.5mm -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Axial_L19.0mm_D8.0mm_P25.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=19*8.0mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 25mm length 19mm diameter 8.0mm -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Axial_L19.0mm_D9.0mm_P25.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=19*9mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 25mm length 19mm diameter 9mm -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Axial_L19.0mm_D9.5mm_P25.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=19*9.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 25mm length 19mm diameter 9.5mm -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Axial_L22.0mm_D9.5mm_P27.50mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=27.5mm, , length*diameter=22*9.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 27.5mm length 22mm diameter 9.5mm -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Axial_L22.0mm_D10.5mm_P27.50mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=27.5mm, , length*diameter=22*10.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 27.5mm length 22mm diameter 10.5mm -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Disc_D3.0mm_W1.6mm_P2.50mm -C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3.0*1.6mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 2.50mm diameter 3.0mm width 1.6mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Disc_D3.0mm_W2.0mm_P2.50mm -C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3*2mm^2, Capacitor, Alternate KiCad Library -C Disc series Radial pin pitch 2.50mm diameter 3mm width 2mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Disc_D3.4mm_W2.1mm_P2.50mm -C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3.4*2.1mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 2.50mm diameter 3.4mm width 2.1mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Disc_D3.8mm_W2.6mm_P2.50mm -C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3.8*2.6mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 2.50mm diameter 3.8mm width 2.6mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Disc_D4.3mm_W1.9mm_P5.00mm -C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=4.3*1.9mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 5.00mm diameter 4.3mm width 1.9mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Disc_D4.7mm_W2.5mm_P5.00mm -C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=4.7*2.5mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 5.00mm diameter 4.7mm width 2.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Disc_D5.0mm_W2.5mm_P2.50mm -C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=5*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 2.50mm diameter 5mm width 2.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Disc_D5.0mm_W2.5mm_P5.00mm -C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=5*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 5.00mm diameter 5mm width 2.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Disc_D5.1mm_W3.2mm_P5.00mm -C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=5.1*3.2mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 5.00mm diameter 5.1mm width 3.2mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Disc_D6.0mm_W2.5mm_P5.00mm -C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=6*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 5.00mm diameter 6mm width 2.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Disc_D6.0mm_W4.4mm_P5.00mm -C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=6*4.4mm^2, Capacitor, Alternate KiCad Library -C Disc series Radial pin pitch 5.00mm diameter 6mm width 4.4mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Disc_D7.0mm_W2.5mm_P5.00mm -C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=7*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 5.00mm diameter 7mm width 2.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Disc_D7.5mm_W2.5mm_P5.00mm -C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=7.5*2.5mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 5.00mm diameter 7.5mm width 2.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Disc_D7.5mm_W4.4mm_P5.00mm -C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=7.5*4.4mm^2, Capacitor, Alternate KiCad Library -C Disc series Radial pin pitch 5.00mm diameter 7.5mm width 4.4mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Disc_D7.5mm_W5.0mm_P5.00mm -C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=7.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 5.00mm diameter 7.5mm width 5.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Disc_D7.5mm_W5.0mm_P7.50mm -C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=7.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 7.50mm diameter 7.5mm width 5.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Disc_D7.5mm_W5.0mm_P10.00mm -C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=7.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 10.00mm diameter 7.5mm width 5.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Disc_D8.0mm_W2.5mm_P5.00mm -C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=8*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 5.00mm diameter 8mm width 2.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Disc_D8.0mm_W5.0mm_P5.00mm -C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=8*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 5.00mm diameter 8mm width 5.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Disc_D8.0mm_W5.0mm_P7.50mm -C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=8*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 7.50mm diameter 8mm width 5.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Disc_D8.0mm_W5.0mm_P10.00mm -C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=8*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 10.00mm diameter 8mm width 5.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Disc_D9.0mm_W2.5mm_P5.00mm -C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=9*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 5.00mm diameter 9mm width 2.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Disc_D9.0mm_W5.0mm_P5.00mm -C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=9*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 5.00mm diameter 9mm width 5.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Disc_D9.0mm_W5.0mm_P7.50mm -C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=9*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 7.50mm diameter 9mm width 5.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Disc_D9.0mm_W5.0mm_P10.00mm -C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=9*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 10.00mm diameter 9mm width 5.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Disc_D10.0mm_W2.5mm_P5.00mm -C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=10*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 5.00mm diameter 10mm width 2.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Disc_D10.5mm_W5.0mm_P5.00mm -C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=10.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 5.00mm diameter 10.5mm width 5.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Disc_D10.5mm_W5.0mm_P7.50mm -C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=10.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 7.50mm diameter 10.5mm width 5.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Disc_D10.5mm_W5.0mm_P10.00mm -C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=10.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 10.00mm diameter 10.5mm width 5.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Disc_D11.0mm_W5.0mm_P5.00mm -C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=11*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 5.00mm diameter 11mm width 5.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Disc_D11.0mm_W5.0mm_P7.50mm -C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=11*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 7.50mm diameter 11mm width 5.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Disc_D11.0mm_W5.0mm_P10.00mm -C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=11*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 10.00mm diameter 11mm width 5.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Disc_D12.0mm_W4.4mm_P7.75mm -C, Disc series, Radial, pin pitch=7.75mm, , diameter*width=12*4.4mm^2, Capacitor, Alternate KiCad Library -C Disc series Radial pin pitch 7.75mm diameter 12mm width 4.4mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Disc_D12.5mm_W5.0mm_P7.50mm -C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=12.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 7.50mm diameter 12.5mm width 5.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Disc_D12.5mm_W5.0mm_P10.00mm -C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=12.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 10.00mm diameter 12.5mm width 5.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Disc_D14.5mm_W5.0mm_P7.50mm -C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=14.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 7.50mm diameter 14.5mm width 5.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Disc_D14.5mm_W5.0mm_P10.00mm -C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=14.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 10.00mm diameter 14.5mm width 5.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Disc_D16.0mm_W5.0mm_P7.50mm -C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=16.0*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 7.50mm diameter 16.0mm width 5.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Disc_D16.0mm_W5.0mm_P10.00mm -C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=16.0*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 10.00mm diameter 16.0mm width 5.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Radial_D4.0mm_H5.0mm_P1.50mm -C, Radial series, Radial, pin pitch=1.50mm, diameter=4mm, height=5mm, Non-Polar Electrolytic Capacitor -C Radial series Radial pin pitch 1.50mm diameter 4mm height 5mm Non-Polar Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Radial_D4.0mm_H7.0mm_P1.50mm -C, Radial series, Radial, pin pitch=1.50mm, diameter=4mm, height=7mm, Non-Polar Electrolytic Capacitor -C Radial series Radial pin pitch 1.50mm diameter 4mm height 7mm Non-Polar Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Radial_D5.0mm_H5.0mm_P2.00mm -C, Radial series, Radial, pin pitch=2.00mm, diameter=5mm, height=5mm, Non-Polar Electrolytic Capacitor -C Radial series Radial pin pitch 2.00mm diameter 5mm height 5mm Non-Polar Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Radial_D5.0mm_H7.0mm_P2.00mm -C, Radial series, Radial, pin pitch=2.00mm, diameter=5mm, height=7mm, Non-Polar Electrolytic Capacitor -C Radial series Radial pin pitch 2.00mm diameter 5mm height 7mm Non-Polar Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Radial_D5.0mm_H11.0mm_P2.00mm -C, Radial series, Radial, pin pitch=2.00mm, diameter=5mm, height=11mm, Non-Polar Electrolytic Capacitor -C Radial series Radial pin pitch 2.00mm diameter 5mm height 11mm Non-Polar Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Radial_D6.3mm_H5.0mm_P2.50mm -C, Radial series, Radial, pin pitch=2.50mm, diameter=6.3mm, height=5mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library -C Radial series Radial pin pitch 2.50mm diameter 6.3mm height 5mm Non-Polar Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Radial_D6.3mm_H7.0mm_P2.50mm -C, Radial series, Radial, pin pitch=2.50mm, diameter=6.3mm, height=7mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library -C Radial series Radial pin pitch 2.50mm diameter 6.3mm height 7mm Non-Polar Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Radial_D6.3mm_H11.0mm_P2.50mm -C, Radial series, Radial, pin pitch=2.50mm, diameter=6.3mm, height=11mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library -C Radial series Radial pin pitch 2.50mm diameter 6.3mm height 11mm Non-Polar Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Radial_D8.0mm_H7.0mm_P3.50mm -C, Radial series, Radial, pin pitch=3.50mm, diameter=8mm, height=7mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library -C Radial series Radial pin pitch 3.50mm diameter 8mm height 7mm Non-Polar Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Radial_D8.0mm_H11.5mm_P3.50mm -C, Radial series, Radial, pin pitch=3.50mm, diameter=8mm, height=11.5mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library -C Radial series Radial pin pitch 3.50mm diameter 8mm height 11.5mm Non-Polar Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Radial_D10.0mm_H12.5mm_P5.00mm -C, Radial series, Radial, pin pitch=5.00mm, diameter=10mm, height=12.5mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library -C Radial series Radial pin pitch 5.00mm diameter 10mm height 12.5mm Non-Polar Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Radial_D10.0mm_H16.0mm_P5.00mm -C, Radial series, Radial, pin pitch=5.00mm, diameter=10mm, height=16mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library -C Radial series Radial pin pitch 5.00mm diameter 10mm height 16mm Non-Polar Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Radial_D10.0mm_H20.0mm_P5.00mm -C, Radial series, Radial, pin pitch=5.00mm, diameter=10mm, height=20mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library -C Radial series Radial pin pitch 5.00mm diameter 10mm height 20mm Non-Polar Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Radial_D12.5mm_H20.0mm_P5.00mm -C, Radial series, Radial, pin pitch=5.00mm, diameter=12.5mm, height=20mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library -C Radial series Radial pin pitch 5.00mm diameter 12.5mm height 20mm Non-Polar Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Radial_D12.5mm_H25.0mm_P5.00mm -C, Radial series, Radial, pin pitch=5.00mm, diameter=12.5mm, height=25mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library -C Radial series Radial pin pitch 5.00mm diameter 12.5mm height 25mm Non-Polar Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Radial_D16.0mm_H25.0mm_P7.50mm -C, Radial series, Radial, pin pitch=7.50mm, diameter=16mm, height=25mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library -C Radial series Radial pin pitch 7.50mm diameter 16mm height 25mm Non-Polar Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Radial_D16.0mm_H31.5mm_P7.50mm -C, Radial series, Radial, pin pitch=7.50mm, diameter=16mm, height=31.5mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library -C Radial series Radial pin pitch 7.50mm diameter 16mm height 31.5mm Non-Polar Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Radial_D18.0mm_H35.5mm_P7.50mm -C, Radial series, Radial, pin pitch=7.50mm, diameter=18mm, height=35.5mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library -C Radial series Radial pin pitch 7.50mm diameter 18mm height 35.5mm Non-Polar Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L4.0mm_W2.5mm_P2.50mm -C, Rect series, Radial, pin pitch=2.50mm, , length*width=4*2.5mm^2, Capacitor, Alternate KiCad Library -C Rect series Radial pin pitch 2.50mm length 4mm width 2.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L4.6mm_W2.0mm_P2.50mm_MKS02_FKP02 -C, Rect series, Radial, pin pitch=2.50mm, , length*width=4.6*2mm^2, Capacitor, http://www.wima.de/DE/WIMA_MKS_02.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 2.50mm length 4.6mm width 2mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L4.6mm_W3.0mm_P2.50mm_MKS02_FKP02 -C, Rect series, Radial, pin pitch=2.50mm, , length*width=4.6*3.0mm^2, Capacitor, http://www.wima.de/DE/WIMA_MKS_02.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 2.50mm length 4.6mm width 3.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L4.6mm_W3.8mm_P2.50mm_MKS02_FKP02 -C, Rect series, Radial, pin pitch=2.50mm, , length*width=4.6*3.8mm^2, Capacitor, http://www.wima.de/DE/WIMA_MKS_02.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 2.50mm length 4.6mm width 3.8mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L4.6mm_W4.6mm_P2.50mm_MKS02_FKP02 -C, Rect series, Radial, pin pitch=2.50mm, , length*width=4.6*4.6mm^2, Capacitor, http://www.wima.de/DE/WIMA_MKS_02.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 2.50mm length 4.6mm width 4.6mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L4.6mm_W5.5mm_P2.50mm_MKS02_FKP02 -C, Rect series, Radial, pin pitch=2.50mm, , length*width=4.6*5.5mm^2, Capacitor, http://www.wima.de/DE/WIMA_MKS_02.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 2.50mm length 4.6mm width 5.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L7.0mm_W2.0mm_P5.00mm -C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*2mm^2, Capacitor, Alternate KiCad Library -C Rect series Radial pin pitch 5.00mm length 7mm width 2mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L7.0mm_W2.5mm_P5.00mm -C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*2.5mm^2, Capacitor, Alternate KiCad Library -C Rect series Radial pin pitch 5.00mm length 7mm width 2.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L7.0mm_W3.5mm_P2.50mm_P5.00mm -C, Rect series, Radial, pin pitch=2.50mm 5.00mm, , length*width=7*3.5mm^2, Capacitor, Alternate KiCad Library -C Rect series Radial pin pitch 2.50mm 5.00mm length 7mm width 3.5mm Capacitor -0 -4 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L7.0mm_W3.5mm_P5.00mm -C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*3.5mm^2, Capacitor, Alternate KiCad Library -C Rect series Radial pin pitch 5.00mm length 7mm width 3.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L7.0mm_W4.5mm_P5.00mm -C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*4.5mm^2, Capacitor, Alternate KiCad Library -C Rect series Radial pin pitch 5.00mm length 7mm width 4.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L7.0mm_W6.0mm_P5.00mm -C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*6mm^2, Capacitor, Alternate KiCad Library -C Rect series Radial pin pitch 5.00mm length 7mm width 6mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L7.0mm_W6.5mm_P5.00mm -C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*6.5mm^2, Capacitor, Alternate KiCad Library -C Rect series Radial pin pitch 5.00mm length 7mm width 6.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L7.2mm_W2.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2 -C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*2.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 5.00mm length 7.2mm width 2.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L7.2mm_W3.0mm_P5.00mm_FKS2_FKP2_MKS2_MKP2 -C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*3.0mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 5.00mm length 7.2mm width 3.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L7.2mm_W3.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2 -C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*3.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 5.00mm length 7.2mm width 3.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L7.2mm_W4.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2 -C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*4.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 5.00mm length 7.2mm width 4.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L7.2mm_W5.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2 -C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*5.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 5.00mm length 7.2mm width 5.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L7.2mm_W7.2mm_P5.00mm_FKS2_FKP2_MKS2_MKP2 -C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*7.2mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 5.00mm length 7.2mm width 7.2mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L7.2mm_W8.5mm_P5.00mm_FKP2_FKP2_MKS2_MKP2 -C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*8.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 5.00mm length 7.2mm width 8.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L7.2mm_W11.0mm_P5.00mm_FKS2_FKP2_MKS2_MKP2 -C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*11mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 5.00mm length 7.2mm width 11mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L7.5mm_W6.5mm_P5.00mm -C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.5*6.5mm^2, Capacitor, Alternate KiCad Library -C Rect series Radial pin pitch 5.00mm length 7.5mm width 6.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L9.0mm_W2.5mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*2.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 9mm width 2.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L9.0mm_W2.6mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*2.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 9mm width 2.6mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L9.0mm_W2.7mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*2.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 9mm width 2.7mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L9.0mm_W3.2mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*3.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 9mm width 3.2mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L9.0mm_W3.3mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*3.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 9mm width 3.3mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L9.0mm_W3.4mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*3.4mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 9mm width 3.4mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L9.0mm_W3.6mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*3.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 9mm width 3.6mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L9.0mm_W3.8mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*3.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 9mm width 3.8mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L9.0mm_W3.9mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*3.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 9mm width 3.9mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L9.0mm_W4.0mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*4.0mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 9mm width 4.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L9.0mm_W4.2mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*4.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 9mm width 4.2mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L9.0mm_W4.9mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*4.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 9mm width 4.9mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L9.0mm_W5.1mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*5.1mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 9mm width 5.1mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L9.0mm_W5.7mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*5.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 9mm width 5.7mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L9.0mm_W6.4mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*6.4mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 9mm width 6.4mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L9.0mm_W6.7mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*6.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 9mm width 6.7mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L9.0mm_W7.7mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*7.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 9mm width 7.7mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L9.0mm_W8.5mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*8.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 9mm width 8.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L9.0mm_W9.5mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*9.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 9mm width 9.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L9.0mm_W9.8mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*9.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 9mm width 9.8mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L10.0mm_W2.5mm_P7.50mm_MKS4 -C, Rect series, Radial, pin pitch=7.50mm, , length*width=10*2.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 10mm width 2.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L10.0mm_W3.0mm_P7.50mm_FKS3_FKP3 -C, Rect series, Radial, pin pitch=7.50mm, , length*width=10*3mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 10mm width 3mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L10.0mm_W3.0mm_P7.50mm_MKS4 -C, Rect series, Radial, pin pitch=7.50mm, , length*width=10*3.0mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 10mm width 3.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L10.0mm_W4.0mm_P7.50mm_FKS3_FKP3 -C, Rect series, Radial, pin pitch=7.50mm, , length*width=10*4mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 10mm width 4mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L10.0mm_W4.0mm_P7.50mm_MKS4 -C, Rect series, Radial, pin pitch=7.50mm, , length*width=10*4.0mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 10mm width 4.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L10.0mm_W5.0mm_P5.00mm_P7.50mm -C, Rect series, Radial, pin pitch=5.00mm 7.50mm, , length*width=10*5mm^2, Capacitor, Alternate KiCad Library -C Rect series Radial pin pitch 5.00mm 7.50mm length 10mm width 5mm Capacitor -0 -4 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L10.3mm_W4.5mm_P7.50mm_MKS4 -C, Rect series, Radial, pin pitch=7.50mm, , length*width=10.3*4.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 10.3mm width 4.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L10.3mm_W5.0mm_P7.50mm_MKS4 -C, Rect series, Radial, pin pitch=7.50mm, , length*width=10.3*5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 10.3mm width 5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L10.3mm_W5.7mm_P7.50mm_MKS4 -C, Rect series, Radial, pin pitch=7.50mm, , length*width=10.3*5.7mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 10.3mm width 5.7mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L10.3mm_W7.2mm_P7.50mm_MKS4 -C, Rect series, Radial, pin pitch=7.50mm, , length*width=10.3*7.2mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 10.3mm width 7.2mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L11.0mm_W2.8mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*2.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.0mm width 2.8mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L11.0mm_W3.4mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*3.4mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.0mm width 3.4mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L11.0mm_W3.5mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*3.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.0mm width 3.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L11.0mm_W4.2mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*4.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.0mm width 4.2mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L11.0mm_W4.3mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*4.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.0mm width 4.3mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L11.0mm_W5.1mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*5.1mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.0mm width 5.1mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L11.0mm_W5.3mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*5.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.0mm width 5.3mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L11.0mm_W6.3mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*6.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.0mm width 6.3mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L11.0mm_W6.4mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*6.4mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.0mm width 6.4mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L11.0mm_W7.3mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*7.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.0mm width 7.3mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L11.0mm_W8.8mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*8.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.0mm width 8.8mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L11.5mm_W2.0mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 2mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L11.5mm_W2.6mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*2.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 2.6mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L11.5mm_W2.8mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*2.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 2.8mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L11.5mm_W3.2mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*3.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 3.2mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L11.5mm_W3.5mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*3.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 3.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L11.5mm_W3.6mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*3.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 3.6mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L11.5mm_W4.0mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*4.0mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 4.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L11.5mm_W4.3mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*4.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 4.3mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L11.5mm_W4.5mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*4.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 4.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L11.5mm_W5.0mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L11.5mm_W5.1mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*5.1mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 5.1mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L11.5mm_W5.2mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*5.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 5.2mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L11.5mm_W5.6mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*5.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 5.6mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L11.5mm_W6.4mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*6.4mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 6.4mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L11.5mm_W6.6mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*6.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 6.6mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L11.5mm_W6.9mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*6.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 6.9mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L11.5mm_W7.3mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*7.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 7.3mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L11.5mm_W7.5mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*7.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 7.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L11.5mm_W7.8mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*7.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 7.8mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L11.5mm_W8.0mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*8.0mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 8.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L11.5mm_W8.8mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*8.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 8.8mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L11.5mm_W9.5mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*9.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 9.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L11.5mm_W9.8mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*9.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 9.8mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L13.0mm_W3.0mm_P10.00mm_FKS3_FKP3_MKS4 -C, Rect series, Radial, pin pitch=10.00mm, , length*width=13*3mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 13mm width 3mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L13.0mm_W4.0mm_P10.00mm_FKS3_FKP3_MKS4 -C, Rect series, Radial, pin pitch=10.00mm, , length*width=13*4mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 13mm width 4mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L13.0mm_W5.0mm_P10.00mm_FKS3_FKP3_MKS4 -C, Rect series, Radial, pin pitch=10.00mm, , length*width=13*5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 13mm width 5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L13.0mm_W6.0mm_P10.00mm_FKS3_FKP3_MKS4 -C, Rect series, Radial, pin pitch=10.00mm, , length*width=13*6mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 13mm width 6mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L13.0mm_W6.5mm_P7.50mm_P10.00mm -C, Rect series, Radial, pin pitch=7.50mm 10.00mm, , length*width=13*6.5mm^2, Capacitor, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm 10.00mm length 13mm width 6.5mm Capacitor -0 -4 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L13.0mm_W8.0mm_P10.00mm_FKS3_FKP3_MKS4 -C, Rect series, Radial, pin pitch=10.00mm, , length*width=13*8mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 13mm width 8mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L13.5mm_W4.0mm_P10.00mm_FKS3_FKP3_MKS4 -C, Rect series, Radial, pin pitch=10.00mm, , length*width=13.5*4mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 13.5mm width 4mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L13.5mm_W5.0mm_P10.00mm_FKS3_FKP3_MKS4 -C, Rect series, Radial, pin pitch=10.00mm, , length*width=13.5*5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 13.5mm width 5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L15mm_W15mm_P10x10mm -C Rectangular, 15x15mm size, 10x10mm Pin Pitch, Measurements based on a physical example, no datasheet available, Alternate KiCad Library -C rect 15x15 10x10 -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L16.5mm_W4.7mm_P15.00mm_MKT -C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*4.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 16.5mm width 4.7mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L16.5mm_W4.9mm_P15.00mm_MKT -C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*4.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 16.5mm width 4.9mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L16.5mm_W5.0mm_P15.00mm_MKT -C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 16.5mm width 5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L16.5mm_W6.0mm_P15.00mm_MKT -C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 16.5mm width 6mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L16.5mm_W7.0mm_P15.00mm_MKT -C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 16.5mm width 7mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L16.5mm_W7.3mm_P15.00mm_MKT -C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*7.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 16.5mm width 7.3mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L16.5mm_W8.7mm_P15.00mm_MKT -C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*8.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 16.5mm width 8.7mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L16.5mm_W8.9mm_P15.00mm_MKT -C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*8.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 16.5mm width 8.9mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L16.5mm_W9.0mm_P15.00mm_MKT -C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 16.5mm width 9mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L16.5mm_W9.2mm_P15.00mm_MKT -C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*9.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 16.5mm width 9.2mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L16.5mm_W10.7mm_P15.00mm_MKT -C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*10.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 16.5mm width 10.7mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L16.5mm_W10.9mm_P15.00mm_MKT -C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*10.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 16.5mm width 10.9mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L16.5mm_W11.2mm_P15.00mm_MKT -C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*11.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 16.5mm width 11.2mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L16.5mm_W11.8mm_P15.00mm_MKT -C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*11.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 16.5mm width 11.8mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L16.5mm_W13.5mm_P15.00mm_MKT -C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*13.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 16.5mm width 13.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L16.5mm_W13.7mm_P15.00mm_MKT -C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*13.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 16.5mm width 13.7mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L16.5mm_W13.9mm_P15.00mm_MKT -C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*13.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 16.5mm width 13.9mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L17mm_W8.5mm_P12.50mm -C, Rect series, Radial, pin pitch=12.50mm, , length*width=17*8.5mm^2, Measurements based on a physical example, no datasheet available, Alternate KiCad Library -C Rect series Radial pin pitch 12.50mm length 17mm width 8.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L18.0mm_W5.0mm_P15.00mm_FKS3_FKP3 -C, Rect series, Radial, pin pitch=15.00mm, , length*width=18*5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 18mm width 5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L18.0mm_W6.0mm_P15.00mm_FKS3_FKP3 -C, Rect series, Radial, pin pitch=15.00mm, , length*width=18*6mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 18mm width 6mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L18.0mm_W7.0mm_P15.00mm_FKS3_FKP3 -C, Rect series, Radial, pin pitch=15.00mm, , length*width=18*7mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 18mm width 7mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L18.0mm_W8.0mm_P15.00mm_FKS3_FKP3 -C, Rect series, Radial, pin pitch=15.00mm, , length*width=18*8mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 18mm width 8mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L18.0mm_W9.0mm_P15.00mm_FKS3_FKP3 -C, Rect series, Radial, pin pitch=15.00mm, , length*width=18*9mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 18mm width 9mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L18.0mm_W11.0mm_P15.00mm_FKS3_FKP3 -C, Rect series, Radial, pin pitch=15.00mm, , length*width=18*11mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 18mm width 11mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L19.0mm_W5.0mm_P15.00mm_MKS4 -C, Rect series, Radial, pin pitch=15.00mm, , length*width=19*5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 19mm width 5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L19.0mm_W6.0mm_P15.00mm_MKS4 -C, Rect series, Radial, pin pitch=15.00mm, , length*width=19*6mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 19mm width 6mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L19.0mm_W7.0mm_P15.00mm_MKS4 -C, Rect series, Radial, pin pitch=15.00mm, , length*width=19*7mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 19mm width 7mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L19.0mm_W8.0mm_P15.00mm_MKS4 -C, Rect series, Radial, pin pitch=15.00mm, , length*width=19*8mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 19mm width 8mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L19.0mm_W9.0mm_P15.00mm_MKS4 -C, Rect series, Radial, pin pitch=15.00mm, , length*width=19*9mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 19mm width 9mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L19.0mm_W11.0mm_P15.00mm_MKS4 -C, Rect series, Radial, pin pitch=15.00mm, , length*width=19*11mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 19mm width 11mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L24.0mm_W7.0mm_P22.50mm_MKT -C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 22.50mm length 24mm width 7mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L24.0mm_W8.3mm_P22.50mm_MKT -C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*8.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 22.50mm length 24mm width 8.3mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L24.0mm_W8.6mm_P22.50mm_MKT -C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*8.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 22.50mm length 24mm width 8.6mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L24.0mm_W10.1mm_P22.50mm_MKT -C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*10.1mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 22.50mm length 24mm width 10.1mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L24.0mm_W10.3mm_P22.50mm_MKT -C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*10.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 22.50mm length 24mm width 10.3mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L24.0mm_W10.9mm_P22.50mm_MKT -C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*10.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 22.50mm length 24mm width 10.9mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L24.0mm_W12.2mm_P22.50mm_MKT -C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*12.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 22.50mm length 24mm width 12.2mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L24.0mm_W12.6mm_P22.50mm_MKT -C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*12.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 22.50mm length 24mm width 12.6mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L24.0mm_W12.8mm_P22.50mm_MKT -C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*12.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 22.50mm length 24mm width 12.8mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L26.5mm_W5.0mm_P22.50mm_MKS4 -C, Rect series, Radial, pin pitch=22.50mm, , length*width=26.5*5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 22.50mm length 26.5mm width 5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L26.5mm_W6.0mm_P22.50mm_MKS4 -C, Rect series, Radial, pin pitch=22.50mm, , length*width=26.5*6mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 22.50mm length 26.5mm width 6mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L26.5mm_W7.0mm_P22.50mm_MKS4 -C, Rect series, Radial, pin pitch=22.50mm, , length*width=26.5*7mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 22.50mm length 26.5mm width 7mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L26.5mm_W8.5mm_P22.50mm_MKS4 -C, Rect series, Radial, pin pitch=22.50mm, , length*width=26.5*8.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 22.50mm length 26.5mm width 8.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L26.5mm_W10.5mm_P22.50mm_MKS4 -C, Rect series, Radial, pin pitch=22.50mm, , length*width=26.5*10.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 22.50mm length 26.5mm width 10.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L26.5mm_W11.5mm_P22.50mm_MKS4 -C, Rect series, Radial, pin pitch=22.50mm, , length*width=26.5*11.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 22.50mm length 26.5mm width 11.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L27.0mm_W9.0mm_P22.00mm -C, Rect series, Radial, pin pitch=22.00mm, , length*width=27*9mm^2, Capacitor, Alternate KiCad Library -C Rect series Radial pin pitch 22.00mm length 27mm width 9mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L27.0mm_W9.0mm_P23.00mm -C, Rect series, Radial, pin pitch=23.00mm, , length*width=27*9mm^2, Capacitor, Alternate KiCad Library -C Rect series Radial pin pitch 23.00mm length 27mm width 9mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L27.0mm_W11.0mm_P22.00mm -C, Rect series, Radial, pin pitch=22.00mm, , length*width=27*11mm^2, Capacitor, Alternate KiCad Library -C Rect series Radial pin pitch 22.00mm length 27mm width 11mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L28.0mm_W8.0mm_P22.50mm_MKS4 -C, Rect series, Radial, pin pitch=22.50mm, , length*width=28*8mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 22.50mm length 28mm width 8mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L28.0mm_W10.0mm_P22.50mm_MKS4 -C, Rect series, Radial, pin pitch=22.50mm, , length*width=28*10mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 22.50mm length 28mm width 10mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L28.0mm_W12.0mm_P22.50mm_MKS4 -C, Rect series, Radial, pin pitch=22.50mm, , length*width=28*12mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 22.50mm length 28mm width 12mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L29.0mm_W7.6mm_P27.50mm_MKT -C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*7.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 27.50mm length 29mm width 7.6mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L29.0mm_W7.8mm_P27.50mm_MKT -C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*7.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 27.50mm length 29mm width 7.8mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L29.0mm_W7.9mm_P27.50mm_MKT -C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*7.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 27.50mm length 29mm width 7.9mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L29.0mm_W9.1mm_P27.50mm_MKT -C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*9.1mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 27.50mm length 29mm width 9.1mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L29.0mm_W9.6mm_P27.50mm_MKT -C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*9.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 27.50mm length 29mm width 9.6mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L29.0mm_W11.0mm_P27.50mm_MKT -C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*11mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 27.50mm length 29mm width 11mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L29.0mm_W11.9mm_P27.50mm_MKT -C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*11.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 27.50mm length 29mm width 11.9mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L29.0mm_W12.2mm_P27.50mm_MKT -C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*12.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 27.50mm length 29mm width 12.2mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L29.0mm_W13.0mm_P27.50mm_MKT -C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*13mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 27.50mm length 29mm width 13mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L29.0mm_W13.8mm_P27.50mm_MKT -C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*13.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 27.50mm length 29mm width 13.8mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L29.0mm_W14.2mm_P27.50mm_MKT -C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*14.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 27.50mm length 29mm width 14.2mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L29.0mm_W16.0mm_P27.50mm_MKT -C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*16mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 27.50mm length 29mm width 16mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L31.5mm_W9.0mm_P27.50mm_MKS4 -C, Rect series, Radial, pin pitch=27.50mm, , length*width=31.5*9mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 27.50mm length 31.5mm width 9mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L31.5mm_W11.0mm_P27.50mm_MKS4 -C, Rect series, Radial, pin pitch=27.50mm, , length*width=31.5*11mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 27.50mm length 31.5mm width 11mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L31.5mm_W13.0mm_P27.50mm_MKS4 -C, Rect series, Radial, pin pitch=27.50mm, , length*width=31.5*13mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 27.50mm length 31.5mm width 13mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L31.5mm_W15.0mm_P27.50mm_MKS4 -C, Rect series, Radial, pin pitch=27.50mm, , length*width=31.5*15mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 27.50mm length 31.5mm width 15mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L31.5mm_W17.0mm_P27.50mm_MKS4 -C, Rect series, Radial, pin pitch=27.50mm, , length*width=31.5*17mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 27.50mm length 31.5mm width 17mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L31.5mm_W20.0mm_P27.50mm_MKS4 -C, Rect series, Radial, pin pitch=27.50mm, , length*width=31.5*20mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 27.50mm length 31.5mm width 20mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L32.0mm_W15.0mm_P27.00mm -C, Rect series, Radial, pin pitch=27.00mm, , length*width=32*15mm^2, Capacitor, Alternate KiCad Library -C Rect series Radial pin pitch 27.00mm length 32mm width 15mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L33.0mm_W13.0mm_P27.50mm_MKS4 -C, Rect series, Radial, pin pitch=27.50mm, , length*width=33*13mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 27.50mm length 33mm width 13mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L33.0mm_W15.0mm_P27.50mm_MKS4 -C, Rect series, Radial, pin pitch=27.50mm, , length*width=33*15mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 27.50mm length 33mm width 15mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L33.0mm_W20.0mm_P27.50mm_MKS4 -C, Rect series, Radial, pin pitch=27.50mm, , length*width=33*20mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 27.50mm length 33mm width 20mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L36.5mm_W15mm_P32.50mm -C, Rect series, Radial, pin pitch=32.50mm, , length*width=36.5*15mm^2, Measurements based on physical example, no datasheet available, Alternate KiCad Library -C Rect series Radial pin pitch 32.50mm length 36.5mm width 15mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L41.5mm_W9.0mm_P37.50mm_MKS4 -C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*9mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 37.50mm length 41.5mm width 9mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L41.5mm_W11.0mm_P37.50mm_MKS4 -C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*11mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 37.50mm length 41.5mm width 11mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L41.5mm_W13.0mm_P37.50mm_MKS4 -C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*13mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 37.50mm length 41.5mm width 13mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L41.5mm_W15.0mm_P37.50mm_MKS4 -C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*15mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 37.50mm length 41.5mm width 15mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L41.5mm_W17.0mm_P37.50mm_MKS4 -C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*17mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 37.50mm length 41.5mm width 17mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L41.5mm_W19.0mm_P37.50mm_MKS4 -C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*19mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 37.50mm length 41.5mm width 19mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L41.5mm_W20.0mm_P37.50mm_MKS4 -C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*20mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 37.50mm length 41.5mm width 20mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L41.5mm_W24.0mm_P37.50mm_MKS4 -C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*24mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 37.50mm length 41.5mm width 24mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L41.5mm_W31.0mm_P37.50mm_MKS4 -C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*31mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 37.50mm length 41.5mm width 31mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L41.5mm_W35.0mm_P37.50mm_MKS4 -C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*35mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 37.50mm length 41.5mm width 35mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Rect_L41.5mm_W40.0mm_P37.50mm_MKS4 -C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*40mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 37.50mm length 41.5mm width 40mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Trimmer_BFC2-808_L7.3mm_W5.5mm_P5.6mm -C, Trimmer BFC2-808 series Pitch = 5.6mm, Width = 5.5mm, Length = 7.3mm https://www.vishay.com/docs/28526/bfc2808-5mm.pdf, Alternate KiCad Library -C trimmer BFC2 808 pitch 5.6mm width 5.5mm length 7.3mm nohole -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Trimmer_BFC2-808_L7.3mm_W5.5mm_P5.6mm_Hole -C, Trimmer BFC2-808 series Pitch = 5.6mm, Width = 5.5mm, Length = 7.3mm https://www.vishay.com/docs/28526/bfc2808-5mm.pdf, Alternate KiCad Library -C trimmer BFC2 808 pitch 5.6mm width 5.5mm length 7.3mm nohole -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Trimmer_BFC2-808_L7.3mm_W5.5mm_P5.08mm -C, Trimmer BFC2-808 series Pitch = 5.08mm, Width = 5.5mm, Length = 7.3mm https://www.vishay.com/docs/28526/bfc2808-5mm.pdf, Alternate KiCad Library -C trimmer BFC2 808 pitch 5.08mm width 5.5mm length 7.3mm nohole -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Trimmer_BFC2-808_L10.8mm_W10.6mm_P5mm -C, Trimmer BFC2-808 series Pitch = 5mm, Width = 10.6mm, Length = 10.8mm https://www.vishay.com/docs/28528/bfc2808-10mm.pdf, Alternate KiCad Library -C trimmer BFC2 808 pitch 5mm width 10.6mm length 10.8mm nohole -0 -3 -2 -PCM_Capacitor_THT_AKL_Double -C_Trimmer_BFC2-808_L10.8mm_W10.6mm_P5mm_Hole -C, Trimmer BFC2-808 series, Bottom adjustment hole, Pitch = 5mm, Width = 10.6mm, Length = 10.8mm https://www.vishay.com/docs/28528/bfc2808-10mm.pdf, Alternate KiCad Library -C trimmer BFC2 808 pitch 5mm width 10.6mm length 10.8mm hole -0 -3 -2 -PCM_Capacitor_THT_AKL_Double -C_Trimmer_BFC2-808_L10.8mm_W10.6mm_P10mm -C, Trimmer BFC2-808 series Pitch = 10mm, Width = 10.6mm, Length = 10.8mm https://www.vishay.com/docs/28528/bfc2808-10mm.pdf, Alternate KiCad Library -C trimmer BFC2 808 pitch 10mm width 10.6mm length 10.8mm nohole -0 -3 -2 -PCM_Capacitor_THT_AKL_Double -C_Trimmer_BFC2-808_L10.8mm_W10.6mm_P10mm_Hole -C, Trimmer BFC2-808 series, Bottom adjustment hole, Pitch = 10mm, Width = 10.6mm, Length = 10.8mm https://www.vishay.com/docs/28528/bfc2808-10mm.pdf, Alternate KiCad Library -C trimmer BFC2 808 pitch 10mm width 10.6mm length 10.8mm hole -0 -3 -2 -PCM_Capacitor_THT_AKL_Double -C_Trimmer_GKG15_L6.0mm_W6.0mm_P5.0mm -C, Trimmer GKG15 series Pitch = 5.0mm, Width = 6.0mm, Length = 6.0mm https://www.digikey.com/htmldatasheets/production/174846/0/0/1/gkp-gky-gkg-series.html, Alternate KiCad Library -C trimmer GKG15 pitch 5mm width 6mm length 6mm nohole -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Trimmer_GKG16_L6.0mm_W6.0mm_P6.3mm_Hole -C, Trimmer GKG16 series Pitch = 6.3mm, Width = 6.0mm, Length = 6.0mm https://www.digikey.com/htmldatasheets/production/174846/0/0/1/gkp-gky-gkg-series.html, Alternate KiCad Library -C trimmer GKG16 pitch 6.3mm width 6mm length 6mm hole -0 -2 -2 -PCM_Capacitor_THT_AKL_Double -C_Trimmer_GKT_L7.0mm_W7.0mm_P7.0mm -C, Trimmer GKU series Pitch = 5.8mm, Width = 5.0mm, Length = 5.6mm https://www.digikey.com/htmldatasheets/production/174846/0/0/1/gkp-gky-gkg-series.html, Alternate KiCad Library -C trimmer GKU pitch 5mm width 5mm length 5.6mm -0 -3 -2 -PCM_Capacitor_THT_AKL_Double -C_Trimmer_GKU_L5.6mm_W5.0mm_P5.8mm -C, Trimmer GKU series Pitch = 5.8mm, Width = 5.0mm, Length = 5.6mm https://www.digikey.com/htmldatasheets/production/174846/0/0/1/gkp-gky-gkg-series.html, Alternate KiCad Library -C trimmer GKU pitch 5mm width 5mm length 5.6mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L10.0mm_D4.5mm_P15.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=10*4.5mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 15mm length 10mm diameter 4.5mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L10.0mm_D6.0mm_P15.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=10*6mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 15mm length 10mm diameter 6mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L11.0mm_D5.0mm_P18.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=18mm, , length*diameter=11*5mm^2, Electrolytic Capacitor, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 18mm length 11mm diameter 5mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L11.0mm_D6.0mm_P18.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=18mm, , length*diameter=11*6mm^2, Electrolytic Capacitor, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 18mm length 11mm diameter 6mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L11.0mm_D8.0mm_P15.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=11*8mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 15mm length 11mm diameter 8mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L18.0mm_D6.5mm_P25.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=18*6.5mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 25mm length 18mm diameter 6.5mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L18.0mm_D8.0mm_P25.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=18*8mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 25mm length 18mm diameter 8mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L18.0mm_D10.0mm_P25.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=18*10mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 25mm length 18mm diameter 10mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L20.0mm_D10.0mm_P26.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=26mm, , length*diameter=20*10mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 26mm length 20mm diameter 10mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L20.0mm_D13.0mm_P26.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=26mm, , length*diameter=20*13mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 26mm length 20mm diameter 13mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L21.0mm_D8.0mm_P28.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=28mm, , length*diameter=21*8mm^2, Electrolytic Capacitor, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 28mm length 21mm diameter 8mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L25.0mm_D10.0mm_P30.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=30mm, , length*diameter=25*10mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 30mm length 25mm diameter 10mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L25.0mm_D10.0mm_P30.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=30mm, , length*diameter=25*10mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 30mm length 25mm diameter 10mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L26.5mm_D20.0mm_P33.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=33mm, , length*diameter=26.5*20mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 33mm length 26.5mm diameter 20mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L26.5mm_D20.0mm_P33.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=33mm, , length*diameter=26.5*20mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 33mm length 26.5mm diameter 20mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L29.0mm_D10.0mm_P35.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=29*10mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 35mm length 29mm diameter 10mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L29.0mm_D10.0mm_P35.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=35mm, , length*diameter=29*10mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 35mm length 29mm diameter 10mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L29.0mm_D13.0mm_P35.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=29*13mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 35mm length 29mm diameter 13mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L29.0mm_D13.0mm_P35.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=35mm, , length*diameter=29*13mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 35mm length 29mm diameter 13mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L29.0mm_D16.0mm_P35.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=29*16mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 35mm length 29mm diameter 16mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L29.0mm_D16.0mm_P35.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=35mm, , length*diameter=29*16mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 35mm length 29mm diameter 16mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L29.0mm_D20.0mm_P35.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=29*20mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 35mm length 29mm diameter 20mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L29.0mm_D20.0mm_P35.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=35mm, , length*diameter=29*20mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 35mm length 29mm diameter 20mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L30.0mm_D10.0mm_P35.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=30*10mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 35mm length 30mm diameter 10mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L30.0mm_D10.0mm_P35.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=35mm, , length*diameter=30*10mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 35mm length 30mm diameter 10mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L30.0mm_D12.5mm_P35.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=30*12.5mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 35mm length 30mm diameter 12.5mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L30.0mm_D12.5mm_P35.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=35mm, , length*diameter=30*12.5mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 35mm length 30mm diameter 12.5mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L30.0mm_D15.0mm_P35.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=30*15mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 35mm length 30mm diameter 15mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L30.0mm_D15.0mm_P35.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=35mm, , length*diameter=30*15mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 35mm length 30mm diameter 15mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L30.0mm_D18.0mm_P35.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=30*18mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 35mm length 30mm diameter 18mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L30.0mm_D18.0mm_P35.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=35mm, , length*diameter=30*18mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 35mm length 30mm diameter 18mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L34.5mm_D20.0mm_P41.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=41mm, , length*diameter=34.5*20mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 41mm length 34.5mm diameter 20mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L34.5mm_D20.0mm_P41.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=41mm, , length*diameter=34.5*20mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 41mm length 34.5mm diameter 20mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L37.0mm_D13.0mm_P43.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=43mm, , length*diameter=37*13mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 43mm length 37mm diameter 13mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L37.0mm_D13.0mm_P43.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=43mm, , length*diameter=37*13mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 43mm length 37mm diameter 13mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L37.0mm_D16.0mm_P43.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=43mm, , length*diameter=37*16mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 43mm length 37mm diameter 16mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L37.0mm_D16.0mm_P43.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=43mm, , length*diameter=37*16mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 43mm length 37mm diameter 16mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L37.0mm_D20.0mm_P43.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=43mm, , length*diameter=37*20mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 43mm length 37mm diameter 20mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L37.0mm_D20.0mm_P43.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=43mm, , length*diameter=37*20mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 43mm length 37mm diameter 20mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L38.0mm_D18.0mm_P44.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=44mm, , length*diameter=38*18mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 44mm length 38mm diameter 18mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L38.0mm_D18.0mm_P44.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=44mm, , length*diameter=38*18mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 44mm length 38mm diameter 18mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L38.0mm_D21.0mm_P44.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=44mm, , length*diameter=38*21mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 44mm length 38mm diameter 21mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L38.0mm_D21.0mm_P44.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=44mm, , length*diameter=38*21mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 44mm length 38mm diameter 21mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L40.0mm_D16.0mm_P48.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=48mm, , length*diameter=40*16mm^2, Electrolytic Capacitor, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 48mm length 40mm diameter 16mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L40.0mm_D16.0mm_P48.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=48mm, , length*diameter=40*16mm^2, Electrolytic Capacitor, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 48mm length 40mm diameter 16mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L42.0mm_D23.0mm_P45.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=45mm, , length*diameter=42*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 23.0mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L42.0mm_D23.0mm_P45.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=45mm, , length*diameter=42*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 23.0mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L42.0mm_D26.0mm_P45.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=45mm, , length*diameter=42*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 26mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L42.0mm_D26.0mm_P45.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=45mm, , length*diameter=42*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 26mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L42.0mm_D29.0mm_P45.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=45mm, , length*diameter=42*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 29.0mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L42.0mm_D29.0mm_P45.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=45mm, , length*diameter=42*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 29.0mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L42.0mm_D32.0mm_P45.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=45mm, , length*diameter=42*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 32.0mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L42.0mm_D32.0mm_P45.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=45mm, , length*diameter=42*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 32.0mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L42.0mm_D35.0mm_P45.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=45mm, , length*diameter=42*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 35.0mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L42.0mm_D35.0mm_P45.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=45mm, , length*diameter=42*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 35.0mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L42.5mm_D20.0mm_P49.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=49mm, , length*diameter=42.5*20mm^2, Electrolytic Capacitor, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 49mm length 42.5mm diameter 20mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L42.5mm_D20.0mm_P49.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=49mm, , length*diameter=42.5*20mm^2, Electrolytic Capacitor, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 49mm length 42.5mm diameter 20mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L46.0mm_D20.0mm_P52.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=52mm, , length*diameter=46*20mm^2, Electrolytic Capacitor, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 52mm length 46mm diameter 20mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L46.0mm_D20.0mm_P52.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=52mm, , length*diameter=46*20mm^2, Electrolytic Capacitor, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 52mm length 46mm diameter 20mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L55.0mm_D23.0mm_P60.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=60mm, , length*diameter=55*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 23.0mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L55.0mm_D23.0mm_P60.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=60mm, , length*diameter=55*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 23.0mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L55.0mm_D26.0mm_P60.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=60mm, , length*diameter=55*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 26mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L55.0mm_D26.0mm_P60.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=60mm, , length*diameter=55*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 26mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L55.0mm_D29.0mm_P60.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=60mm, , length*diameter=55*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 29.0mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L55.0mm_D29.0mm_P60.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=60mm, , length*diameter=55*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 29.0mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L55.0mm_D32.0mm_P60.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=60mm, , length*diameter=55*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 32.0mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L55.0mm_D32.0mm_P60.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=60mm, , length*diameter=55*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 32.0mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L55.0mm_D35.0mm_P60.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=60mm, , length*diameter=55*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 35.0mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L55.0mm_D35.0mm_P60.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=60mm, , length*diameter=55*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 35.0mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L67.0mm_D23.0mm_P75.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=75mm, , length*diameter=67*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 23.0mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L67.0mm_D23.0mm_P75.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=75mm, , length*diameter=67*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 23.0mm Electrolytic Capacitor Support -0 -8 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L67.0mm_D26.0mm_P75.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=75mm, , length*diameter=67*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 26mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L67.0mm_D26.0mm_P75.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=75mm, , length*diameter=67*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 26mm Electrolytic Capacitor Support -0 -8 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L67.0mm_D29.0mm_P75.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=75mm, , length*diameter=67*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 29.0mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L67.0mm_D29.0mm_P75.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=75mm, , length*diameter=67*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 29.0mm Electrolytic Capacitor Support -0 -8 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L67.0mm_D32.0mm_P75.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=75mm, , length*diameter=67*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 32.0mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L67.0mm_D32.0mm_P75.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=75mm, , length*diameter=67*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 32.0mm Electrolytic Capacitor Support -0 -8 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L67.0mm_D35.0mm_P75.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=75mm, , length*diameter=67*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 35.0mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L67.0mm_D35.0mm_P75.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=75mm, , length*diameter=67*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 35.0mm Electrolytic Capacitor Support -0 -8 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L80.0mm_D23.0mm_P85.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=85mm, , length*diameter=80*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 23.0mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L80.0mm_D23.0mm_P85.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=85mm, , length*diameter=80*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 23.0mm Electrolytic Capacitor Support -0 -8 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L80.0mm_D26.0mm_P85.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=85mm, , length*diameter=80*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 26mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L80.0mm_D26.0mm_P85.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=85mm, , length*diameter=80*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 26mm Electrolytic Capacitor Support -0 -8 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L80.0mm_D29.0mm_P85.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=85mm, , length*diameter=80*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 29.0mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L80.0mm_D29.0mm_P85.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=85mm, , length*diameter=80*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 29.0mm Electrolytic Capacitor Support -0 -8 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L80.0mm_D32.0mm_P85.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=85mm, , length*diameter=80*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 32.0mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L80.0mm_D32.0mm_P85.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=85mm, , length*diameter=80*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 32.0mm Electrolytic Capacitor Support -0 -8 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L80.0mm_D35.0mm_P85.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=85mm, , length*diameter=80*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 35.0mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L80.0mm_D35.0mm_P85.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=85mm, , length*diameter=80*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 35.0mm Electrolytic Capacitor Support -0 -8 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L93.0mm_D23.0mm_P100.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=100mm, , length*diameter=93*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 23.0mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L93.0mm_D23.0mm_P100.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=100mm, , length*diameter=93*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 23.0mm Electrolytic Capacitor Support -0 -8 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L93.0mm_D26.0mm_P100.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=100mm, , length*diameter=93*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 26mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L93.0mm_D26.0mm_P100.00mm_Horizontal_Supported -CP, Axial series, Axial, Additional holes for supports, Horizontal, pin pitch=100mm, , length*diameter=93*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 26mm Electrolytic Capacitor Support -0 -8 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L93.0mm_D29.0mm_P100.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=100mm, , length*diameter=93*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 29.0mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L93.0mm_D29.0mm_P100.00mm_Horizontal_Supported -CP, Axial series, Axial, Additional holes for supports, Horizontal, pin pitch=100mm, , length*diameter=93*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 29.0mm Electrolytic Capacitor Support -0 -8 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L93.0mm_D32.0mm_P100.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=100mm, , length*diameter=93*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 32.0mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L93.0mm_D32.0mm_P100.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=100mm, , length*diameter=93*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 32.0mm Electrolytic Capacitor Support -0 -8 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L93.0mm_D35.0mm_P100.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=100mm, , length*diameter=93*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 35.0mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Axial_L93.0mm_D35.0mm_P100.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=100mm, , length*diameter=93*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 35.0mm Electrolytic Capacitor Support -0 -8 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D4.0mm_P1.50mm -CP, Radial series, Radial, pin pitch=1.50mm, , diameter=4mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 1.50mm diameter 4mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D4.0mm_P2.00mm -CP, Radial series, Radial, pin pitch=2.00mm, , diameter=4mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 2.00mm diameter 4mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D5.0mm_P2.00mm -CP, Radial series, Radial, pin pitch=2.00mm, , diameter=5mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 2.00mm diameter 5mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D5.0mm_P2.50mm -CP, Radial series, Radial, pin pitch=2.50mm, , diameter=5mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 2.50mm diameter 5mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D6.3mm_P2.50mm -CP, Radial series, Radial, pin pitch=2.50mm, , diameter=6.3mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 2.50mm diameter 6.3mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D7.5mm_P2.50mm -CP, Radial series, Radial, pin pitch=2.50mm, , diameter=7.5mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 2.50mm diameter 7.5mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D8.0mm_P2.50mm -CP, Radial series, Radial, pin pitch=2.50mm, , diameter=8mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 2.50mm diameter 8mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D8.0mm_P3.50mm -CP, Radial series, Radial, pin pitch=3.50mm, , diameter=8mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 3.50mm diameter 8mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D8.0mm_P3.50mm_H20mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=3.50mm, diameter=8mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 20mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D8.0mm_P3.50mm_H20mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 20mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D8.0mm_P3.50mm_H20mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=3.50mm, , diameter=8mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 20mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D8.0mm_P3.50mm_H20mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 20mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D8.0mm_P3.50mm_H30mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=3.50mm, , diameter=8mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 30mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D8.0mm_P3.50mm_H30mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 30mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D8.0mm_P3.50mm_H30mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=3.50mm, , diameter=8mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 30mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D8.0mm_P3.50mm_H30mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 30mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D8.0mm_P3.50mm_H40mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=3.50mm, , diameter=8mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 40mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D8.0mm_P3.50mm_H40mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 40mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D8.0mm_P3.50mm_H40mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=3.50mm, , diameter=8mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 40mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D8.0mm_P3.50mm_H40mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 40mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D8.0mm_P3.80mm -CP, Radial series, Radial, pin pitch=3.80mm, , diameter=8mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 3.80mm diameter 8mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D8.0mm_P5.00mm -CP, Radial series, Radial, pin pitch=5.00mm, , diameter=8mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 5.00mm diameter 8mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D8.0mm_P5mm_H20mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=3.50mm, , diameter=8mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 20mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D8.0mm_P5mm_H20mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 20mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D8.0mm_P5mm_H20mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=3.50mm, , diameter=8mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 20mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D8.0mm_P5mm_H20mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 20mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D8.0mm_P5mm_H30mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=3.50mm, , diameter=8mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 30mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D8.0mm_P5mm_H30mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 30mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D8.0mm_P5mm_H30mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=3.50mm, , diameter=8mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 30mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D8.0mm_P5mm_H30mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 30mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D8.0mm_P5mm_H40mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=3.50mm, , diameter=8mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 40mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D8.0mm_P5mm_H40mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 40mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D8.0mm_P5mm_H40mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=3.50mm, , diameter=8mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 40mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D8.0mm_P5mm_H40mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 40mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D10.0mm_P2.50mm -CP, Radial series, Radial, pin pitch=2.50mm, , diameter=10mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 2.50mm diameter 10mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D10.0mm_P2.50mm_P5.00mm -CP, Radial series, Radial, pin pitch=2.50mm 5.00mm, , diameter=10mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 2.50mm 5.00mm diameter 10mm Electrolytic Capacitor -0 -4 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D10.0mm_P3.50mm -CP, Radial series, Radial, pin pitch=3.50mm, , diameter=10mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 3.50mm diameter 10mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D10.0mm_P3.80mm -CP, Radial series, Radial, pin pitch=3.80mm, , diameter=10mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 3.80mm diameter 10mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D10.0mm_P5.00mm -CP, Radial series, Radial, pin pitch=5.00mm, , diameter=10mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 5.00mm diameter 10mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D10.0mm_P5.00mm_H20mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=10mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 20mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D10.0mm_P5.00mm_H20mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 20mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D10.0mm_P5.00mm_H20mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=10mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 20mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D10.0mm_P5.00mm_H20mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 20mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D10.0mm_P5.00mm_H21mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=10mm, height = 21mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 21mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D10.0mm_P5.00mm_H21mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 21mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 21mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D10.0mm_P5.00mm_H21mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=10mm, height = 21mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 21mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D10.0mm_P5.00mm_H21mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 21mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 21mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D10.0mm_P5.00mm_H23mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=10mm, height = 23mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 23mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D10.0mm_P5.00mm_H23mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 23mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 23mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D10.0mm_P5.00mm_H23mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=10mm, height = 23mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 23mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D10.0mm_P5.00mm_H23mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 23mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 23mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D10.0mm_P5.00mm_H25mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=10mm, height = 25mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 25mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D10.0mm_P5.00mm_H25mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 25mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 25mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D10.0mm_P5.00mm_H25mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=10mm, height = 25mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 25mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D10.0mm_P5.00mm_H25mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 25mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 25mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D10.0mm_P5.00mm_H30mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=10mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 30mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D10.0mm_P5.00mm_H30mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 30mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D10.0mm_P5.00mm_H30mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=10mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 30mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D10.0mm_P5.00mm_H30mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 30mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D10.0mm_P5.00mm_H31.5mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=10mm, height = 31.5mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 31.5mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D10.0mm_P5.00mm_H31.5mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 31.5mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 31.5mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D10.0mm_P5.00mm_H31.5mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=10mm, height = 31.5mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 31.5mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D10.0mm_P5.00mm_H31.5mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 31.5mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 31.5mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D10.0mm_P5.00mm_H35mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=10mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 35mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D10.0mm_P5.00mm_H35mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 35mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D10.0mm_P5.00mm_H35mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=10mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 35mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D10.0mm_P5.00mm_H35mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 35mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D10.0mm_P5.00mm_H40mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=10mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 40mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D10.0mm_P5.00mm_H40mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 40mm Electrolytic Capacitor Support -0 -6 -3 -PCM_Capacitor_THT_US_AKL -CP_Radial_D10.0mm_P5.00mm_H40mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=10mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 40mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D10.0mm_P5.00mm_H40mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 40mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D10.0mm_P5.00mm_H45mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=10mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 45mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D10.0mm_P5.00mm_H45mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 45mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D10.0mm_P5.00mm_H45mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=10mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 45mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D10.0mm_P5.00mm_H45mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 45mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D10.0mm_P5.00mm_H50mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=10mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 50mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D10.0mm_P5.00mm_H50mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 50mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D10.0mm_P5.00mm_H50mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=10mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 50mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D10.0mm_P5.00mm_H50mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 50mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D10.0mm_P5.00mm_H60mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=10mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 60mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D10.0mm_P5.00mm_H60mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 60mm Electrolytic Capacitor Support -0 -8 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D10.0mm_P5.00mm_H60mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=10mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 60mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D10.0mm_P5.00mm_H60mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 60mm Electrolytic Capacitor Support -0 -8 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D10.0mm_P5.00mm_P7.50mm -CP, Radial series, Radial, pin pitch=5.00mm 7.50mm, , diameter=10mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 5.00mm 7.50mm diameter 10mm Electrolytic Capacitor -0 -4 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D10.0mm_P7.50mm -CP, Radial series, Radial, pin pitch=7.50mm, , diameter=10mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 7.50mm diameter 10mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D12.5mm_P2.50mm -CP, Radial series, Radial, pin pitch=2.50mm, , diameter=12.5mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 2.50mm diameter 12.5mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D12.5mm_P5.00mm -CP, Radial series, Radial, pin pitch=5.00mm, , diameter=12.5mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 5.00mm diameter 12.5mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D12.5mm_P5.00mm_H25mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=12.5mm, height = 25mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 25mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D12.5mm_P5.00mm_H25mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 25mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 25mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D12.5mm_P5.00mm_H25mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=12.5mm, height = 25mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 25mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D12.5mm_P5.00mm_H25mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 25mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 25mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D12.5mm_P5.00mm_H30mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=12.5mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 30mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D12.5mm_P5.00mm_H30mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 30mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D12.5mm_P5.00mm_H30mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=12.5mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 30mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D12.5mm_P5.00mm_H30mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 30mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D12.5mm_P5.00mm_H31.5mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=12.5mm, height = 31.5mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 31.5mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D12.5mm_P5.00mm_H31.5mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 31.5mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 31.5mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D12.5mm_P5.00mm_H31.5mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=12.5mm, height = 31.5mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 31.5mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D12.5mm_P5.00mm_H31.5mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 31.5mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 31.5mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D12.5mm_P5.00mm_H35mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=12.5mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 35mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D12.5mm_P5.00mm_H35mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 35mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D12.5mm_P5.00mm_H35mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=12.5mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 35mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D12.5mm_P5.00mm_H35mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 35mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D12.5mm_P5.00mm_H40mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=12.5mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 40mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D12.5mm_P5.00mm_H40mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 40mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D12.5mm_P5.00mm_H40mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=12.5mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 40mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D12.5mm_P5.00mm_H40mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 40mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D12.5mm_P5.00mm_H45mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=12.5mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 45mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D12.5mm_P5.00mm_H45mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 45mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D12.5mm_P5.00mm_H45mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=12.5mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 45mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D12.5mm_P5.00mm_H45mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 45mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D12.5mm_P5.00mm_H50mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=12.5mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 50mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D12.5mm_P5.00mm_H50mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 50mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D12.5mm_P5.00mm_H50mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=12.5mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 50mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D12.5mm_P5.00mm_H50mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 50mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D12.5mm_P5.00mm_H60mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=12.5mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 60mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D12.5mm_P5.00mm_H60mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 60mm Electrolytic Capacitor Support -0 -8 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D12.5mm_P5.00mm_H60mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=12.5mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 60mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D12.5mm_P5.00mm_H60mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 60mm Electrolytic Capacitor Support -0 -8 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D12.5mm_P7.50mm -CP, Radial series, Radial, pin pitch=7.50mm, , diameter=12.5mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 7.50mm diameter 12.5mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D13.0mm_P2.50mm -CP, Radial series, Radial, pin pitch=2.50mm, , diameter=13mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 2.50mm diameter 13mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D13.0mm_P5.00mm -CP, Radial series, Radial, pin pitch=5.00mm, , diameter=13mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 5.00mm diameter 13mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D13.0mm_P7.50mm -CP, Radial series, Radial, pin pitch=7.50mm, , diameter=13mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 7.50mm diameter 13mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D14.0mm_P5.00mm -CP, Radial series, Radial, pin pitch=5.00mm, , diameter=14mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 5.00mm diameter 14mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D14.0mm_P7.50mm -CP, Radial series, Radial, pin pitch=7.50mm, , diameter=14mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 7.50mm diameter 14mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D16.0mm_P7.50mm -CP, Radial series, Radial, pin pitch=7.50mm, , diameter=16mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 7.50mm diameter 16mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D16.0mm_P7.50mm_H35mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=7.50mm, , diameter=16mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 16mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D16.0mm_P7.50mm_H35mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=7.50mm, , diameter=16mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 16mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D16.0mm_P7.50mm_H35mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=7.50mm, , diameter=16mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 16mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D16.0mm_P7.50mm_H35mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=7.50mm, , diameter=16mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 16mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D16.0mm_P7.50mm_H40mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=7.50mm, , diameter=16mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 40mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D16.0mm_P7.50mm_H40mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=7.50mm, , diameter=16mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 40mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D16.0mm_P7.50mm_H40mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=7.50mm, , diameter=16mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 40mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D16.0mm_P7.50mm_H40mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=7.50mm, , diameter=16mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 40mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D16.0mm_P7.50mm_H45mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=7.50mm, , diameter=16mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 45mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D16.0mm_P7.50mm_H45mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=7.50mm, , diameter=16mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 45mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D16.0mm_P7.50mm_H45mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=7.50mm, , diameter=16mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 45mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D16.0mm_P7.50mm_H45mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=7.50mm, , diameter=16mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 45mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D16.0mm_P7.50mm_H50mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=7.50mm, , diameter=16mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 50mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D16.0mm_P7.50mm_H50mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=7.50mm, , diameter=16mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 50mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D16.0mm_P7.50mm_H50mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=7.50mm, , diameter=16mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 50mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D16.0mm_P7.50mm_H50mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=7.50mm, , diameter=16mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 50mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D16.0mm_P7.50mm_H60mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=7.50mm, , diameter=16mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 60mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D16.0mm_P7.50mm_H60mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=7.50mm, , diameter=16mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 60mm Electrolytic Capacitor Support -0 -8 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D16.0mm_P7.50mm_H60mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=7.50mm, , diameter=16mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 60mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D16.0mm_P7.50mm_H60mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=7.50mm, , diameter=16mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 60mm Electrolytic Capacitor Support -0 -8 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D17.0mm_P7.50mm -CP, Radial series, Radial, pin pitch=7.50mm, , diameter=17mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 7.50mm diameter 17mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D18.0mm_P7.50mm -CP, Radial series, Radial, pin pitch=7.50mm, , diameter=18mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 7.50mm diameter 18mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D18.0mm_P7.50mm_H40mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=7.50mm, , diameter=18mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 40mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D18.0mm_P7.50mm_H40mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=7.50mm, , diameter=18mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 40mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D18.0mm_P7.50mm_H40mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=7.50mm, , diameter=18mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 40mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D18.0mm_P7.50mm_H40mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=7.50mm, , diameter=18mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 40mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D18.0mm_P7.50mm_H45mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=7.50mm, , diameter=18mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 45mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D18.0mm_P7.50mm_H45mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=7.50mm, , diameter=18mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 45mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D18.0mm_P7.50mm_H45mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=7.50mm, , diameter=18mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 45mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D18.0mm_P7.50mm_H45mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=7.50mm, , diameter=18mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 45mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D18.0mm_P7.50mm_H50mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=7.50mm, , diameter=18mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 50mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D18.0mm_P7.50mm_H50mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=7.50mm, , diameter=18mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 50mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D18.0mm_P7.50mm_H50mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=7.50mm, , diameter=18mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 50mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D18.0mm_P7.50mm_H50mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=7.50mm, , diameter=18mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 50mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D18.0mm_P7.50mm_H60mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=7.50mm, , diameter=18mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 60mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D18.0mm_P7.50mm_H60mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=7.50mm, , diameter=18mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 60mm Electrolytic Capacitor Support -0 -8 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D18.0mm_P7.50mm_H60mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=7.50mm, , diameter=18mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 60mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D18.0mm_P7.50mm_H60mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=7.50mm, , diameter=18mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 18mm Electrolytic height 60mm Capacitor Support -0 -8 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D22.0mm_P10.00mm_3pin_SnapIn -CP, Radial series, Radial, pin pitch=10.00mm, , diameter=22mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf -CP Radial series Radial pin pitch 10.00mm diameter 22mm Electrolytic Capacitor -0 -3 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D22.0mm_P10.00mm_SnapIn -CP, Radial series, Radial, pin pitch=10.00mm, , diameter=22mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf -CP Radial series Radial pin pitch 10.00mm diameter 22mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D24.0mm_P10.00mm_3pin_SnapIn -CP, Radial series, Radial, pin pitch=10.00mm, , diameter=24mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf -CP Radial series Radial pin pitch 10.00mm diameter 24mm Electrolytic Capacitor -0 -3 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D24.0mm_P10.00mm_SnapIn -CP, Radial series, Radial, pin pitch=10.00mm, , diameter=24mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf -CP Radial series Radial pin pitch 10.00mm diameter 24mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D25.0mm_P10.00mm_3pin_SnapIn -CP, Radial series, Radial, pin pitch=10.00mm, , diameter=25mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf -CP Radial series Radial pin pitch 10.00mm diameter 25mm Electrolytic Capacitor -0 -3 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D25.0mm_P10.00mm_SnapIn -CP, Radial series, Radial, pin pitch=10.00mm, , diameter=25mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf -CP Radial series Radial pin pitch 10.00mm diameter 25mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D26.0mm_P10.00mm_3pin_SnapIn -CP, Radial series, Radial, pin pitch=10.00mm, , diameter=26mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf -CP Radial series Radial pin pitch 10.00mm diameter 26mm Electrolytic Capacitor -0 -3 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D26.0mm_P10.00mm_SnapIn -CP, Radial series, Radial, pin pitch=10.00mm, , diameter=26mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf -CP Radial series Radial pin pitch 10.00mm diameter 26mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D30.0mm_P10.00mm_3pin_SnapIn -CP, Radial series, Radial, pin pitch=10.00mm, , diameter=30mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf -CP Radial series Radial pin pitch 10.00mm diameter 30mm Electrolytic Capacitor -0 -3 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D30.0mm_P10.00mm_SnapIn -CP, Radial series, Radial, pin pitch=10.00mm, , diameter=30mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf -CP Radial series Radial pin pitch 10.00mm diameter 30mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D35.0mm_P10.00mm_3pin_SnapIn -CP, Radial series, Radial, pin pitch=10.00mm, , diameter=35mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf -CP Radial series Radial pin pitch 10.00mm diameter 35mm Electrolytic Capacitor -0 -3 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D35.0mm_P10.00mm_SnapIn -CP, Radial series, Radial, pin pitch=10.00mm, , diameter=35mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf -CP Radial series Radial pin pitch 10.00mm diameter 35mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D40.0mm_P10.00mm_3pin_SnapIn -CP, Radial series, Radial, pin pitch=10.00mm, , diameter=40mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf -CP Radial series Radial pin pitch 10.00mm diameter 40mm Electrolytic Capacitor -0 -3 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_D40.0mm_P10.00mm_SnapIn -CP, Radial series, Radial, pin pitch=10.00mm, , diameter=40mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf -CP Radial series Radial pin pitch 10.00mm diameter 40mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_Tantal_D4.5mm_P2.50mm -CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=4.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf -CP Radial_Tantal series Radial pin pitch 2.50mm diameter 4.5mm Tantal Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_Tantal_D4.5mm_P5.00mm -CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=4.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf, Alternate KiCad Library -CP Radial_Tantal series Radial pin pitch 5.00mm diameter 4.5mm Tantal Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_Tantal_D5.0mm_P2.50mm -CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=5.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf -CP Radial_Tantal series Radial pin pitch 2.50mm diameter 5.0mm Tantal Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_Tantal_D5.0mm_P5.00mm -CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=5.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf, Alternate KiCad Library -CP Radial_Tantal series Radial pin pitch 5.00mm diameter 5.0mm Tantal Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_Tantal_D5.5mm_P2.50mm -CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=5.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf -CP Radial_Tantal series Radial pin pitch 2.50mm diameter 5.5mm Tantal Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_Tantal_D5.5mm_P5.00mm -CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=5.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf, Alternate KiCad Library -CP Radial_Tantal series Radial pin pitch 5.00mm diameter 5.5mm Tantal Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_Tantal_D6.0mm_P2.50mm -CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=6.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf -CP Radial_Tantal series Radial pin pitch 2.50mm diameter 6.0mm Tantal Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_Tantal_D6.0mm_P5.00mm -CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=6.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf, Alternate KiCad Library -CP Radial_Tantal series Radial pin pitch 5.00mm diameter 6.0mm Tantal Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_Tantal_D7.0mm_P2.50mm -CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=7.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf -CP Radial_Tantal series Radial pin pitch 2.50mm diameter 7.0mm Tantal Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_Tantal_D7.0mm_P5.00mm -CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=7.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf, Alternate KiCad Library -CP Radial_Tantal series Radial pin pitch 5.00mm diameter 7.0mm Tantal Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_Tantal_D8.0mm_P2.50mm -CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=8.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf -CP Radial_Tantal series Radial pin pitch 2.50mm diameter 8.0mm Tantal Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_Tantal_D8.0mm_P5.00mm -CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=8.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf, Alternate KiCad Library -CP Radial_Tantal series Radial pin pitch 5.00mm diameter 8.0mm Tantal Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_Tantal_D9.0mm_P2.50mm -CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=9.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf -CP Radial_Tantal series Radial pin pitch 2.50mm diameter 9.0mm Tantal Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_Tantal_D9.0mm_P5.00mm -CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=9.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf, Alternate KiCad Library -CP Radial_Tantal series Radial pin pitch 5.00mm diameter 9.0mm Tantal Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_Tantal_D10.5mm_P2.50mm -CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=10.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf -CP Radial_Tantal series Radial pin pitch 2.50mm diameter 10.5mm Tantal Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -CP_Radial_Tantal_D10.5mm_P5.00mm -CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=10.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf, Alternate KiCad Library -CP Radial_Tantal series Radial pin pitch 5.00mm diameter 10.5mm Tantal Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Axial_L3.0mm_D2.3mm_P5.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 7.5mm length 3.8mm diameter 2.6mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Axial_L3.0mm_D2.3mm_P7.50mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 7.5mm length 3.8mm diameter 2.6mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Axial_L3.0mm_D2.3mm_P10.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 7.5mm length 3.8mm diameter 2.6mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Axial_L3.0mm_D2.3mm_P12.50mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 7.5mm length 3.8mm diameter 2.6mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Axial_L3.0mm_D2.3mm_P15.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 7.5mm length 3.8mm diameter 2.6mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Axial_L3.0mm_D2.3mm_P17.50mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 7.5mm length 3.8mm diameter 2.6mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Axial_L3.0mm_D2.3mm_P20.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 7.5mm length 3.8mm diameter 2.6mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Axial_L3.0mm_D2.3mm_P25.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 7.5mm length 3.8mm diameter 2.6mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Axial_L3.0mm_D2.3mm_P30.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 7.5mm length 3.8mm diameter 2.6mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Axial_L3.8mm_D2.6mm_P7.50mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 7.5mm length 3.8mm diameter 2.6mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Axial_L3.8mm_D2.6mm_P10.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=10mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 10mm length 3.8mm diameter 2.6mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Axial_L3.8mm_D2.6mm_P12.50mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=12.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 12.5mm length 3.8mm diameter 2.6mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Axial_L3.8mm_D2.6mm_P15.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 15mm length 3.8mm diameter 2.6mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Axial_L3.8mm_D2.6mm_P17.50mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 15mm length 3.8mm diameter 2.6mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Axial_L3.8mm_D2.6mm_P20.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 15mm length 3.8mm diameter 2.6mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Axial_L3.8mm_D2.6mm_P25.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 15mm length 3.8mm diameter 2.6mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Axial_L3.8mm_D2.6mm_P30.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 15mm length 3.8mm diameter 2.6mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Axial_L5.1mm_D3.1mm_P7.50mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=5.1*3.1mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 7.5mm length 5.1mm diameter 3.1mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Axial_L5.1mm_D3.1mm_P10.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=10mm, , length*diameter=5.1*3.1mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 10mm length 5.1mm diameter 3.1mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Axial_L5.1mm_D3.1mm_P12.50mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=12.5mm, , length*diameter=5.1*3.1mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 12.5mm length 5.1mm diameter 3.1mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Axial_L5.1mm_D3.1mm_P15.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=5.1*3.1mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 15mm length 5.1mm diameter 3.1mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Axial_L5.1mm_D3.1mm_P17.50mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=5.1*3.1mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 15mm length 5.1mm diameter 3.1mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Axial_L5.1mm_D3.1mm_P20.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=5.1*3.1mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 15mm length 5.1mm diameter 3.1mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Axial_L5.1mm_D3.1mm_P25.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=5.1*3.1mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 15mm length 5.1mm diameter 3.1mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Axial_L5.1mm_D3.1mm_P30.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=5.1*3.1mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 15mm length 5.1mm diameter 3.1mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Axial_L12.0mm_D6.5mm_P15.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=12*6.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 15mm length 12mm diameter 6.5mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Axial_L12.0mm_D6.5mm_P20.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*6.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 6.5mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Axial_L12.0mm_D6.5mm_P25.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*6.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 6.5mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Axial_L12.0mm_D6.5mm_P30.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*6.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 6.5mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Axial_L12.0mm_D7.5mm_P15.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=12*7.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 15mm length 12mm diameter 7.5mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Axial_L12.0mm_D7.5mm_P20.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*7.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 7.5mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Axial_L12.0mm_D7.5mm_P25.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*7.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 7.5mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Axial_L12.0mm_D7.5mm_P30.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*7.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 7.5mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Axial_L12.0mm_D8.5mm_P15.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=12*8.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 15mm length 12mm diameter 8.5mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Axial_L12.0mm_D8.5mm_P20.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*8.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 8.5mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Axial_L12.0mm_D8.5mm_P25.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*8.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 8.5mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Axial_L12.0mm_D8.5mm_P30.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*8.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 8.5mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Axial_L12.0mm_D9.5mm_P15.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=12*9.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 15mm length 12mm diameter 9.5mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Axial_L12.0mm_D9.5mm_P20.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*9.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 9.5mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Axial_L12.0mm_D9.5mm_P25.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*9.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 9.5mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Axial_L12.0mm_D9.5mm_P30.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*9.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 9.5mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Axial_L12.0mm_D10.5mm_P15.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=12*10.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 15mm length 12mm diameter 10.5mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Axial_L12.0mm_D10.5mm_P20.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*10.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 10.5mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Axial_L12.0mm_D10.5mm_P25.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*10.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 10.5mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Axial_L17.0mm_D6.5mm_P20.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=17*6.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 20mm length 17mm diameter 6.5mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Axial_L17.0mm_D6.5mm_P25.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=17*6.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 25mm length 17mm diameter 6.5mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Axial_L17.0mm_D6.5mm_P30.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=17*6.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 25mm length 17mm diameter 6.5mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Axial_L17.0mm_D7.0mm_P20.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=17*7.0mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 20mm length 17mm diameter 7.0mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Axial_L17.0mm_D7.0mm_P25.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=17*7.0mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 25mm length 17mm diameter 7.0mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Axial_L17.0mm_D7.0mm_P30.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=17*7.0mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 25mm length 17mm diameter 7.0mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Axial_L19.0mm_D7.5mm_P25.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=19*7.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 25mm length 19mm diameter 7.5mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Axial_L19.0mm_D8.0mm_P25.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=19*8.0mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 25mm length 19mm diameter 8.0mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Axial_L19.0mm_D9.0mm_P25.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=19*9mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 25mm length 19mm diameter 9mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Axial_L19.0mm_D9.5mm_P25.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=19*9.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 25mm length 19mm diameter 9.5mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Axial_L22.0mm_D9.5mm_P27.50mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=27.5mm, , length*diameter=22*9.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 27.5mm length 22mm diameter 9.5mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Axial_L22.0mm_D10.5mm_P27.50mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=27.5mm, , length*diameter=22*10.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 27.5mm length 22mm diameter 10.5mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Disc_D3.0mm_W1.6mm_P2.50mm -C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3.0*1.6mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 2.50mm diameter 3.0mm width 1.6mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Disc_D3.0mm_W2.0mm_P2.50mm -C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3*2mm^2, Capacitor, Alternate KiCad Library -C Disc series Radial pin pitch 2.50mm diameter 3mm width 2mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Disc_D3.4mm_W2.1mm_P2.50mm -C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3.4*2.1mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 2.50mm diameter 3.4mm width 2.1mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Disc_D3.8mm_W2.6mm_P2.50mm -C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3.8*2.6mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 2.50mm diameter 3.8mm width 2.6mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Disc_D4.3mm_W1.9mm_P5.00mm -C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=4.3*1.9mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 5.00mm diameter 4.3mm width 1.9mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Disc_D4.7mm_W2.5mm_P5.00mm -C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=4.7*2.5mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 5.00mm diameter 4.7mm width 2.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Disc_D5.0mm_W2.5mm_P2.50mm -C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=5*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 2.50mm diameter 5mm width 2.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Disc_D5.0mm_W2.5mm_P5.00mm -C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=5*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 5.00mm diameter 5mm width 2.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Disc_D5.1mm_W3.2mm_P5.00mm -C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=5.1*3.2mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 5.00mm diameter 5.1mm width 3.2mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Disc_D6.0mm_W2.5mm_P5.00mm -C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=6*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 5.00mm diameter 6mm width 2.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Disc_D6.0mm_W4.4mm_P5.00mm -C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=6*4.4mm^2, Capacitor, Alternate KiCad Library -C Disc series Radial pin pitch 5.00mm diameter 6mm width 4.4mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Disc_D7.0mm_W2.5mm_P5.00mm -C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=7*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 5.00mm diameter 7mm width 2.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Disc_D7.5mm_W2.5mm_P5.00mm -C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=7.5*2.5mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 5.00mm diameter 7.5mm width 2.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Disc_D7.5mm_W4.4mm_P5.00mm -C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=7.5*4.4mm^2, Capacitor, Alternate KiCad Library -C Disc series Radial pin pitch 5.00mm diameter 7.5mm width 4.4mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Disc_D7.5mm_W5.0mm_P5.00mm -C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=7.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 5.00mm diameter 7.5mm width 5.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Disc_D7.5mm_W5.0mm_P7.50mm -C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=7.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 7.50mm diameter 7.5mm width 5.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Disc_D7.5mm_W5.0mm_P10.00mm -C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=7.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 10.00mm diameter 7.5mm width 5.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Disc_D8.0mm_W2.5mm_P5.00mm -C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=8*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 5.00mm diameter 8mm width 2.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Disc_D8.0mm_W5.0mm_P5.00mm -C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=8*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 5.00mm diameter 8mm width 5.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Disc_D8.0mm_W5.0mm_P7.50mm -C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=8*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 7.50mm diameter 8mm width 5.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Disc_D8.0mm_W5.0mm_P10.00mm -C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=8*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 10.00mm diameter 8mm width 5.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Disc_D9.0mm_W2.5mm_P5.00mm -C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=9*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 5.00mm diameter 9mm width 2.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Disc_D9.0mm_W5.0mm_P5.00mm -C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=9*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 5.00mm diameter 9mm width 5.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Disc_D9.0mm_W5.0mm_P7.50mm -C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=9*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 7.50mm diameter 9mm width 5.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Disc_D9.0mm_W5.0mm_P10.00mm -C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=9*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 10.00mm diameter 9mm width 5.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Disc_D10.0mm_W2.5mm_P5.00mm -C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=10*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 5.00mm diameter 10mm width 2.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Disc_D10.5mm_W5.0mm_P5.00mm -C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=10.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 5.00mm diameter 10.5mm width 5.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Disc_D10.5mm_W5.0mm_P7.50mm -C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=10.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 7.50mm diameter 10.5mm width 5.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Disc_D10.5mm_W5.0mm_P10.00mm -C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=10.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 10.00mm diameter 10.5mm width 5.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Disc_D11.0mm_W5.0mm_P5.00mm -C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=11*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 5.00mm diameter 11mm width 5.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Disc_D11.0mm_W5.0mm_P7.50mm -C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=11*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 7.50mm diameter 11mm width 5.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Disc_D11.0mm_W5.0mm_P10.00mm -C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=11*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 10.00mm diameter 11mm width 5.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Disc_D12.0mm_W4.4mm_P7.75mm -C, Disc series, Radial, pin pitch=7.75mm, , diameter*width=12*4.4mm^2, Capacitor, Alternate KiCad Library -C Disc series Radial pin pitch 7.75mm diameter 12mm width 4.4mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Disc_D12.5mm_W5.0mm_P7.50mm -C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=12.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 7.50mm diameter 12.5mm width 5.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Disc_D12.5mm_W5.0mm_P10.00mm -C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=12.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 10.00mm diameter 12.5mm width 5.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Disc_D14.5mm_W5.0mm_P7.50mm -C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=14.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 7.50mm diameter 14.5mm width 5.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Disc_D14.5mm_W5.0mm_P10.00mm -C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=14.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 10.00mm diameter 14.5mm width 5.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Disc_D16.0mm_W5.0mm_P7.50mm -C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=16.0*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 7.50mm diameter 16.0mm width 5.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Disc_D16.0mm_W5.0mm_P10.00mm -C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=16.0*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 10.00mm diameter 16.0mm width 5.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Radial_D4.0mm_H5.0mm_P1.50mm -C, Radial series, Radial, pin pitch=1.50mm, diameter=4mm, height=5mm, Non-Polar Electrolytic Capacitor -C Radial series Radial pin pitch 1.50mm diameter 4mm height 5mm Non-Polar Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Radial_D4.0mm_H7.0mm_P1.50mm -C, Radial series, Radial, pin pitch=1.50mm, diameter=4mm, height=7mm, Non-Polar Electrolytic Capacitor -C Radial series Radial pin pitch 1.50mm diameter 4mm height 7mm Non-Polar Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Radial_D5.0mm_H5.0mm_P2.00mm -C, Radial series, Radial, pin pitch=2.00mm, diameter=5mm, height=5mm, Non-Polar Electrolytic Capacitor -C Radial series Radial pin pitch 2.00mm diameter 5mm height 5mm Non-Polar Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Radial_D5.0mm_H7.0mm_P2.00mm -C, Radial series, Radial, pin pitch=2.00mm, diameter=5mm, height=7mm, Non-Polar Electrolytic Capacitor -C Radial series Radial pin pitch 2.00mm diameter 5mm height 7mm Non-Polar Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Radial_D5.0mm_H11.0mm_P2.00mm -C, Radial series, Radial, pin pitch=2.00mm, diameter=5mm, height=11mm, Non-Polar Electrolytic Capacitor -C Radial series Radial pin pitch 2.00mm diameter 5mm height 11mm Non-Polar Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Radial_D6.3mm_H5.0mm_P2.50mm -C, Radial series, Radial, pin pitch=2.50mm, diameter=6.3mm, height=5mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library -C Radial series Radial pin pitch 2.50mm diameter 6.3mm height 5mm Non-Polar Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Radial_D6.3mm_H7.0mm_P2.50mm -C, Radial series, Radial, pin pitch=2.50mm, diameter=6.3mm, height=7mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library -C Radial series Radial pin pitch 2.50mm diameter 6.3mm height 7mm Non-Polar Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Radial_D6.3mm_H11.0mm_P2.50mm -C, Radial series, Radial, pin pitch=2.50mm, diameter=6.3mm, height=11mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library -C Radial series Radial pin pitch 2.50mm diameter 6.3mm height 11mm Non-Polar Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Radial_D8.0mm_H7.0mm_P3.50mm -C, Radial series, Radial, pin pitch=3.50mm, diameter=8mm, height=7mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library -C Radial series Radial pin pitch 3.50mm diameter 8mm height 7mm Non-Polar Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Radial_D8.0mm_H11.5mm_P3.50mm -C, Radial series, Radial, pin pitch=3.50mm, diameter=8mm, height=11.5mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library -C Radial series Radial pin pitch 3.50mm diameter 8mm height 11.5mm Non-Polar Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Radial_D10.0mm_H12.5mm_P5.00mm -C, Radial series, Radial, pin pitch=5.00mm, diameter=10mm, height=12.5mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library -C Radial series Radial pin pitch 5.00mm diameter 10mm height 12.5mm Non-Polar Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Radial_D10.0mm_H16.0mm_P5.00mm -C, Radial series, Radial, pin pitch=5.00mm, diameter=10mm, height=16mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library -C Radial series Radial pin pitch 5.00mm diameter 10mm height 16mm Non-Polar Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Radial_D10.0mm_H20.0mm_P5.00mm -C, Radial series, Radial, pin pitch=5.00mm, diameter=10mm, height=20mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library -C Radial series Radial pin pitch 5.00mm diameter 10mm height 20mm Non-Polar Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Radial_D12.5mm_H20.0mm_P5.00mm -C, Radial series, Radial, pin pitch=5.00mm, diameter=12.5mm, height=20mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library -C Radial series Radial pin pitch 5.00mm diameter 12.5mm height 20mm Non-Polar Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Radial_D12.5mm_H25.0mm_P5.00mm -C, Radial series, Radial, pin pitch=5.00mm, diameter=12.5mm, height=25mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library -C Radial series Radial pin pitch 5.00mm diameter 12.5mm height 25mm Non-Polar Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Radial_D16.0mm_H25.0mm_P7.50mm -C, Radial series, Radial, pin pitch=7.50mm, diameter=16mm, height=25mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library -C Radial series Radial pin pitch 7.50mm diameter 16mm height 25mm Non-Polar Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Radial_D16.0mm_H31.5mm_P7.50mm -C, Radial series, Radial, pin pitch=7.50mm, diameter=16mm, height=31.5mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library -C Radial series Radial pin pitch 7.50mm diameter 16mm height 31.5mm Non-Polar Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Radial_D18.0mm_H35.5mm_P7.50mm -C, Radial series, Radial, pin pitch=7.50mm, diameter=18mm, height=35.5mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library -C Radial series Radial pin pitch 7.50mm diameter 18mm height 35.5mm Non-Polar Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L4.0mm_W2.5mm_P2.50mm -C, Rect series, Radial, pin pitch=2.50mm, , length*width=4*2.5mm^2, Capacitor, Alternate KiCad Library -C Rect series Radial pin pitch 2.50mm length 4mm width 2.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L4.6mm_W2.0mm_P2.50mm_MKS02_FKP02 -C, Rect series, Radial, pin pitch=2.50mm, , length*width=4.6*2mm^2, Capacitor, http://www.wima.de/DE/WIMA_MKS_02.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 2.50mm length 4.6mm width 2mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L4.6mm_W3.0mm_P2.50mm_MKS02_FKP02 -C, Rect series, Radial, pin pitch=2.50mm, , length*width=4.6*3.0mm^2, Capacitor, http://www.wima.de/DE/WIMA_MKS_02.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 2.50mm length 4.6mm width 3.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L4.6mm_W3.8mm_P2.50mm_MKS02_FKP02 -C, Rect series, Radial, pin pitch=2.50mm, , length*width=4.6*3.8mm^2, Capacitor, http://www.wima.de/DE/WIMA_MKS_02.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 2.50mm length 4.6mm width 3.8mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L4.6mm_W4.6mm_P2.50mm_MKS02_FKP02 -C, Rect series, Radial, pin pitch=2.50mm, , length*width=4.6*4.6mm^2, Capacitor, http://www.wima.de/DE/WIMA_MKS_02.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 2.50mm length 4.6mm width 4.6mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L4.6mm_W5.5mm_P2.50mm_MKS02_FKP02 -C, Rect series, Radial, pin pitch=2.50mm, , length*width=4.6*5.5mm^2, Capacitor, http://www.wima.de/DE/WIMA_MKS_02.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 2.50mm length 4.6mm width 5.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L7.0mm_W2.0mm_P5.00mm -C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*2mm^2, Capacitor, Alternate KiCad Library -C Rect series Radial pin pitch 5.00mm length 7mm width 2mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L7.0mm_W2.5mm_P5.00mm -C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*2.5mm^2, Capacitor, Alternate KiCad Library -C Rect series Radial pin pitch 5.00mm length 7mm width 2.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L7.0mm_W3.5mm_P2.50mm_P5.00mm -C, Rect series, Radial, pin pitch=2.50mm 5.00mm, , length*width=7*3.5mm^2, Capacitor, Alternate KiCad Library -C Rect series Radial pin pitch 2.50mm 5.00mm length 7mm width 3.5mm Capacitor -0 -4 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L7.0mm_W3.5mm_P5.00mm -C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*3.5mm^2, Capacitor, Alternate KiCad Library -C Rect series Radial pin pitch 5.00mm length 7mm width 3.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L7.0mm_W4.5mm_P5.00mm -C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*4.5mm^2, Capacitor, Alternate KiCad Library -C Rect series Radial pin pitch 5.00mm length 7mm width 4.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L7.0mm_W6.0mm_P5.00mm -C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*6mm^2, Capacitor, Alternate KiCad Library -C Rect series Radial pin pitch 5.00mm length 7mm width 6mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L7.0mm_W6.5mm_P5.00mm -C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*6.5mm^2, Capacitor, Alternate KiCad Library -C Rect series Radial pin pitch 5.00mm length 7mm width 6.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L7.2mm_W2.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2 -C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*2.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 5.00mm length 7.2mm width 2.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L7.2mm_W3.0mm_P5.00mm_FKS2_FKP2_MKS2_MKP2 -C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*3.0mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 5.00mm length 7.2mm width 3.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L7.2mm_W3.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2 -C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*3.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 5.00mm length 7.2mm width 3.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L7.2mm_W4.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2 -C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*4.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 5.00mm length 7.2mm width 4.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L7.2mm_W5.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2 -C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*5.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 5.00mm length 7.2mm width 5.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L7.2mm_W7.2mm_P5.00mm_FKS2_FKP2_MKS2_MKP2 -C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*7.2mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 5.00mm length 7.2mm width 7.2mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L7.2mm_W8.5mm_P5.00mm_FKP2_FKP2_MKS2_MKP2 -C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*8.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 5.00mm length 7.2mm width 8.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L7.2mm_W11.0mm_P5.00mm_FKS2_FKP2_MKS2_MKP2 -C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*11mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 5.00mm length 7.2mm width 11mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L7.5mm_W6.5mm_P5.00mm -C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.5*6.5mm^2, Capacitor, Alternate KiCad Library -C Rect series Radial pin pitch 5.00mm length 7.5mm width 6.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L9.0mm_W2.5mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*2.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 9mm width 2.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L9.0mm_W2.6mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*2.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 9mm width 2.6mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L9.0mm_W2.7mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*2.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 9mm width 2.7mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L9.0mm_W3.2mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*3.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 9mm width 3.2mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L9.0mm_W3.3mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*3.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 9mm width 3.3mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L9.0mm_W3.4mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*3.4mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 9mm width 3.4mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L9.0mm_W3.6mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*3.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 9mm width 3.6mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L9.0mm_W3.8mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*3.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 9mm width 3.8mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L9.0mm_W3.9mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*3.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 9mm width 3.9mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L9.0mm_W4.0mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*4.0mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 9mm width 4.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L9.0mm_W4.2mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*4.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 9mm width 4.2mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L9.0mm_W4.9mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*4.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 9mm width 4.9mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L9.0mm_W5.1mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*5.1mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 9mm width 5.1mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L9.0mm_W5.7mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*5.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 9mm width 5.7mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L9.0mm_W6.4mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*6.4mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 9mm width 6.4mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L9.0mm_W6.7mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*6.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 9mm width 6.7mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L9.0mm_W7.7mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*7.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 9mm width 7.7mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L9.0mm_W8.5mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*8.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 9mm width 8.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L9.0mm_W9.5mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*9.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 9mm width 9.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L9.0mm_W9.8mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*9.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 9mm width 9.8mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L10.0mm_W2.5mm_P7.50mm_MKS4 -C, Rect series, Radial, pin pitch=7.50mm, , length*width=10*2.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 10mm width 2.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L10.0mm_W3.0mm_P7.50mm_FKS3_FKP3 -C, Rect series, Radial, pin pitch=7.50mm, , length*width=10*3mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 10mm width 3mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L10.0mm_W3.0mm_P7.50mm_MKS4 -C, Rect series, Radial, pin pitch=7.50mm, , length*width=10*3.0mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 10mm width 3.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L10.0mm_W4.0mm_P7.50mm_FKS3_FKP3 -C, Rect series, Radial, pin pitch=7.50mm, , length*width=10*4mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 10mm width 4mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L10.0mm_W4.0mm_P7.50mm_MKS4 -C, Rect series, Radial, pin pitch=7.50mm, , length*width=10*4.0mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 10mm width 4.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L10.0mm_W5.0mm_P5.00mm_P7.50mm -C, Rect series, Radial, pin pitch=5.00mm 7.50mm, , length*width=10*5mm^2, Capacitor, Alternate KiCad Library -C Rect series Radial pin pitch 5.00mm 7.50mm length 10mm width 5mm Capacitor -0 -4 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L10.3mm_W4.5mm_P7.50mm_MKS4 -C, Rect series, Radial, pin pitch=7.50mm, , length*width=10.3*4.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 10.3mm width 4.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L10.3mm_W5.0mm_P7.50mm_MKS4 -C, Rect series, Radial, pin pitch=7.50mm, , length*width=10.3*5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 10.3mm width 5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L10.3mm_W5.7mm_P7.50mm_MKS4 -C, Rect series, Radial, pin pitch=7.50mm, , length*width=10.3*5.7mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 10.3mm width 5.7mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L10.3mm_W7.2mm_P7.50mm_MKS4 -C, Rect series, Radial, pin pitch=7.50mm, , length*width=10.3*7.2mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 10.3mm width 7.2mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L11.0mm_W2.8mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*2.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.0mm width 2.8mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L11.0mm_W3.4mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*3.4mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.0mm width 3.4mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L11.0mm_W3.5mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*3.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.0mm width 3.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L11.0mm_W4.2mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*4.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.0mm width 4.2mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L11.0mm_W4.3mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*4.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.0mm width 4.3mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L11.0mm_W5.1mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*5.1mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.0mm width 5.1mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L11.0mm_W5.3mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*5.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.0mm width 5.3mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L11.0mm_W6.3mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*6.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.0mm width 6.3mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L11.0mm_W6.4mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*6.4mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.0mm width 6.4mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L11.0mm_W7.3mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*7.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.0mm width 7.3mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L11.0mm_W8.8mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*8.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.0mm width 8.8mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L11.5mm_W2.0mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 2mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L11.5mm_W2.6mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*2.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 2.6mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L11.5mm_W2.8mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*2.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 2.8mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L11.5mm_W3.2mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*3.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 3.2mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L11.5mm_W3.5mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*3.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 3.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L11.5mm_W3.6mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*3.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 3.6mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L11.5mm_W4.0mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*4.0mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 4.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L11.5mm_W4.3mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*4.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 4.3mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L11.5mm_W4.5mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*4.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 4.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L11.5mm_W5.0mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L11.5mm_W5.1mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*5.1mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 5.1mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L11.5mm_W5.2mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*5.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 5.2mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L11.5mm_W5.6mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*5.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 5.6mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L11.5mm_W6.4mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*6.4mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 6.4mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L11.5mm_W6.6mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*6.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 6.6mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L11.5mm_W6.9mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*6.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 6.9mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L11.5mm_W7.3mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*7.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 7.3mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L11.5mm_W7.5mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*7.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 7.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L11.5mm_W7.8mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*7.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 7.8mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L11.5mm_W8.0mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*8.0mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 8.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L11.5mm_W8.8mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*8.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 8.8mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L11.5mm_W9.5mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*9.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 9.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L11.5mm_W9.8mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*9.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 9.8mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L13.0mm_W3.0mm_P10.00mm_FKS3_FKP3_MKS4 -C, Rect series, Radial, pin pitch=10.00mm, , length*width=13*3mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 13mm width 3mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L13.0mm_W4.0mm_P10.00mm_FKS3_FKP3_MKS4 -C, Rect series, Radial, pin pitch=10.00mm, , length*width=13*4mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 13mm width 4mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L13.0mm_W5.0mm_P10.00mm_FKS3_FKP3_MKS4 -C, Rect series, Radial, pin pitch=10.00mm, , length*width=13*5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 13mm width 5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L13.0mm_W6.0mm_P10.00mm_FKS3_FKP3_MKS4 -C, Rect series, Radial, pin pitch=10.00mm, , length*width=13*6mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 13mm width 6mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L13.0mm_W6.5mm_P7.50mm_P10.00mm -C, Rect series, Radial, pin pitch=7.50mm 10.00mm, , length*width=13*6.5mm^2, Capacitor, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm 10.00mm length 13mm width 6.5mm Capacitor -0 -4 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L13.0mm_W8.0mm_P10.00mm_FKS3_FKP3_MKS4 -C, Rect series, Radial, pin pitch=10.00mm, , length*width=13*8mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 13mm width 8mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L13.5mm_W4.0mm_P10.00mm_FKS3_FKP3_MKS4 -C, Rect series, Radial, pin pitch=10.00mm, , length*width=13.5*4mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 13.5mm width 4mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L13.5mm_W5.0mm_P10.00mm_FKS3_FKP3_MKS4 -C, Rect series, Radial, pin pitch=10.00mm, , length*width=13.5*5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 13.5mm width 5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L15mm_W15mm_P10x10mm -C Rectangular, 15x15mm size, 10x10mm Pin Pitch, Measurements based on a physical example, no datasheet available, Alternate KiCad Library -C rect 15x15 10x10 -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L16.5mm_W4.7mm_P15.00mm_MKT -C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*4.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 16.5mm width 4.7mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L16.5mm_W4.9mm_P15.00mm_MKT -C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*4.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 16.5mm width 4.9mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L16.5mm_W5.0mm_P15.00mm_MKT -C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 16.5mm width 5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L16.5mm_W6.0mm_P15.00mm_MKT -C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 16.5mm width 6mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L16.5mm_W7.0mm_P15.00mm_MKT -C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 16.5mm width 7mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L16.5mm_W7.3mm_P15.00mm_MKT -C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*7.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 16.5mm width 7.3mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L16.5mm_W8.7mm_P15.00mm_MKT -C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*8.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 16.5mm width 8.7mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L16.5mm_W8.9mm_P15.00mm_MKT -C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*8.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 16.5mm width 8.9mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L16.5mm_W9.0mm_P15.00mm_MKT -C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 16.5mm width 9mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L16.5mm_W9.2mm_P15.00mm_MKT -C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*9.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 16.5mm width 9.2mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L16.5mm_W10.7mm_P15.00mm_MKT -C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*10.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 16.5mm width 10.7mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L16.5mm_W10.9mm_P15.00mm_MKT -C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*10.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 16.5mm width 10.9mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L16.5mm_W11.2mm_P15.00mm_MKT -C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*11.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 16.5mm width 11.2mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L16.5mm_W11.8mm_P15.00mm_MKT -C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*11.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 16.5mm width 11.8mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L16.5mm_W13.5mm_P15.00mm_MKT -C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*13.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 16.5mm width 13.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L16.5mm_W13.7mm_P15.00mm_MKT -C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*13.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 16.5mm width 13.7mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L16.5mm_W13.9mm_P15.00mm_MKT -C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*13.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 16.5mm width 13.9mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L17mm_W8.5mm_P12.50mm -C, Rect series, Radial, pin pitch=12.50mm, , length*width=17*8.5mm^2, Measurements based on a physical example, no datasheet available, Alternate KiCad Library -C Rect series Radial pin pitch 12.50mm length 17mm width 8.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L18.0mm_W5.0mm_P15.00mm_FKS3_FKP3 -C, Rect series, Radial, pin pitch=15.00mm, , length*width=18*5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 18mm width 5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L18.0mm_W6.0mm_P15.00mm_FKS3_FKP3 -C, Rect series, Radial, pin pitch=15.00mm, , length*width=18*6mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 18mm width 6mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L18.0mm_W7.0mm_P15.00mm_FKS3_FKP3 -C, Rect series, Radial, pin pitch=15.00mm, , length*width=18*7mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 18mm width 7mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L18.0mm_W8.0mm_P15.00mm_FKS3_FKP3 -C, Rect series, Radial, pin pitch=15.00mm, , length*width=18*8mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 18mm width 8mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L18.0mm_W9.0mm_P15.00mm_FKS3_FKP3 -C, Rect series, Radial, pin pitch=15.00mm, , length*width=18*9mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 18mm width 9mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L18.0mm_W11.0mm_P15.00mm_FKS3_FKP3 -C, Rect series, Radial, pin pitch=15.00mm, , length*width=18*11mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 18mm width 11mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L19.0mm_W5.0mm_P15.00mm_MKS4 -C, Rect series, Radial, pin pitch=15.00mm, , length*width=19*5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 19mm width 5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L19.0mm_W6.0mm_P15.00mm_MKS4 -C, Rect series, Radial, pin pitch=15.00mm, , length*width=19*6mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 19mm width 6mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L19.0mm_W7.0mm_P15.00mm_MKS4 -C, Rect series, Radial, pin pitch=15.00mm, , length*width=19*7mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 19mm width 7mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L19.0mm_W8.0mm_P15.00mm_MKS4 -C, Rect series, Radial, pin pitch=15.00mm, , length*width=19*8mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 19mm width 8mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L19.0mm_W9.0mm_P15.00mm_MKS4 -C, Rect series, Radial, pin pitch=15.00mm, , length*width=19*9mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 19mm width 9mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L19.0mm_W11.0mm_P15.00mm_MKS4 -C, Rect series, Radial, pin pitch=15.00mm, , length*width=19*11mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 19mm width 11mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L24.0mm_W7.0mm_P22.50mm_MKT -C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 22.50mm length 24mm width 7mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L24.0mm_W8.3mm_P22.50mm_MKT -C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*8.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 22.50mm length 24mm width 8.3mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L24.0mm_W8.6mm_P22.50mm_MKT -C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*8.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 22.50mm length 24mm width 8.6mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L24.0mm_W10.1mm_P22.50mm_MKT -C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*10.1mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 22.50mm length 24mm width 10.1mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L24.0mm_W10.3mm_P22.50mm_MKT -C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*10.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 22.50mm length 24mm width 10.3mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L24.0mm_W10.9mm_P22.50mm_MKT -C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*10.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 22.50mm length 24mm width 10.9mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L24.0mm_W12.2mm_P22.50mm_MKT -C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*12.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 22.50mm length 24mm width 12.2mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L24.0mm_W12.6mm_P22.50mm_MKT -C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*12.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 22.50mm length 24mm width 12.6mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L24.0mm_W12.8mm_P22.50mm_MKT -C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*12.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 22.50mm length 24mm width 12.8mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L26.5mm_W5.0mm_P22.50mm_MKS4 -C, Rect series, Radial, pin pitch=22.50mm, , length*width=26.5*5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 22.50mm length 26.5mm width 5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L26.5mm_W6.0mm_P22.50mm_MKS4 -C, Rect series, Radial, pin pitch=22.50mm, , length*width=26.5*6mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 22.50mm length 26.5mm width 6mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L26.5mm_W7.0mm_P22.50mm_MKS4 -C, Rect series, Radial, pin pitch=22.50mm, , length*width=26.5*7mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 22.50mm length 26.5mm width 7mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L26.5mm_W8.5mm_P22.50mm_MKS4 -C, Rect series, Radial, pin pitch=22.50mm, , length*width=26.5*8.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 22.50mm length 26.5mm width 8.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L26.5mm_W10.5mm_P22.50mm_MKS4 -C, Rect series, Radial, pin pitch=22.50mm, , length*width=26.5*10.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 22.50mm length 26.5mm width 10.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L26.5mm_W11.5mm_P22.50mm_MKS4 -C, Rect series, Radial, pin pitch=22.50mm, , length*width=26.5*11.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 22.50mm length 26.5mm width 11.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L27.0mm_W9.0mm_P22.00mm -C, Rect series, Radial, pin pitch=22.00mm, , length*width=27*9mm^2, Capacitor, Alternate KiCad Library -C Rect series Radial pin pitch 22.00mm length 27mm width 9mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L27.0mm_W9.0mm_P23.00mm -C, Rect series, Radial, pin pitch=23.00mm, , length*width=27*9mm^2, Capacitor, Alternate KiCad Library -C Rect series Radial pin pitch 23.00mm length 27mm width 9mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L27.0mm_W11.0mm_P22.00mm -C, Rect series, Radial, pin pitch=22.00mm, , length*width=27*11mm^2, Capacitor, Alternate KiCad Library -C Rect series Radial pin pitch 22.00mm length 27mm width 11mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L28.0mm_W8.0mm_P22.50mm_MKS4 -C, Rect series, Radial, pin pitch=22.50mm, , length*width=28*8mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 22.50mm length 28mm width 8mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L28.0mm_W10.0mm_P22.50mm_MKS4 -C, Rect series, Radial, pin pitch=22.50mm, , length*width=28*10mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 22.50mm length 28mm width 10mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L28.0mm_W12.0mm_P22.50mm_MKS4 -C, Rect series, Radial, pin pitch=22.50mm, , length*width=28*12mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 22.50mm length 28mm width 12mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L29.0mm_W7.6mm_P27.50mm_MKT -C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*7.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 27.50mm length 29mm width 7.6mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L29.0mm_W7.8mm_P27.50mm_MKT -C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*7.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 27.50mm length 29mm width 7.8mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L29.0mm_W7.9mm_P27.50mm_MKT -C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*7.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 27.50mm length 29mm width 7.9mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L29.0mm_W9.1mm_P27.50mm_MKT -C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*9.1mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 27.50mm length 29mm width 9.1mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L29.0mm_W9.6mm_P27.50mm_MKT -C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*9.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 27.50mm length 29mm width 9.6mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L29.0mm_W11.0mm_P27.50mm_MKT -C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*11mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 27.50mm length 29mm width 11mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L29.0mm_W11.9mm_P27.50mm_MKT -C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*11.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 27.50mm length 29mm width 11.9mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L29.0mm_W12.2mm_P27.50mm_MKT -C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*12.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 27.50mm length 29mm width 12.2mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L29.0mm_W13.0mm_P27.50mm_MKT -C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*13mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 27.50mm length 29mm width 13mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L29.0mm_W13.8mm_P27.50mm_MKT -C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*13.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 27.50mm length 29mm width 13.8mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L29.0mm_W14.2mm_P27.50mm_MKT -C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*14.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 27.50mm length 29mm width 14.2mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L29.0mm_W16.0mm_P27.50mm_MKT -C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*16mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 27.50mm length 29mm width 16mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L31.5mm_W9.0mm_P27.50mm_MKS4 -C, Rect series, Radial, pin pitch=27.50mm, , length*width=31.5*9mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 27.50mm length 31.5mm width 9mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L31.5mm_W11.0mm_P27.50mm_MKS4 -C, Rect series, Radial, pin pitch=27.50mm, , length*width=31.5*11mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 27.50mm length 31.5mm width 11mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L31.5mm_W13.0mm_P27.50mm_MKS4 -C, Rect series, Radial, pin pitch=27.50mm, , length*width=31.5*13mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 27.50mm length 31.5mm width 13mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L31.5mm_W15.0mm_P27.50mm_MKS4 -C, Rect series, Radial, pin pitch=27.50mm, , length*width=31.5*15mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 27.50mm length 31.5mm width 15mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L31.5mm_W17.0mm_P27.50mm_MKS4 -C, Rect series, Radial, pin pitch=27.50mm, , length*width=31.5*17mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 27.50mm length 31.5mm width 17mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L31.5mm_W20.0mm_P27.50mm_MKS4 -C, Rect series, Radial, pin pitch=27.50mm, , length*width=31.5*20mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 27.50mm length 31.5mm width 20mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L32.0mm_W15.0mm_P27.00mm -C, Rect series, Radial, pin pitch=27.00mm, , length*width=32*15mm^2, Capacitor, Alternate KiCad Library -C Rect series Radial pin pitch 27.00mm length 32mm width 15mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L33.0mm_W13.0mm_P27.50mm_MKS4 -C, Rect series, Radial, pin pitch=27.50mm, , length*width=33*13mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 27.50mm length 33mm width 13mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L33.0mm_W15.0mm_P27.50mm_MKS4 -C, Rect series, Radial, pin pitch=27.50mm, , length*width=33*15mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 27.50mm length 33mm width 15mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L33.0mm_W20.0mm_P27.50mm_MKS4 -C, Rect series, Radial, pin pitch=27.50mm, , length*width=33*20mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 27.50mm length 33mm width 20mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L36.5mm_W15mm_P32.50mm -C, Rect series, Radial, pin pitch=32.50mm, , length*width=36.5*15mm^2, Measurements based on physical example, no datasheet available, Alternate KiCad Library -C Rect series Radial pin pitch 32.50mm length 36.5mm width 15mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L41.5mm_W9.0mm_P37.50mm_MKS4 -C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*9mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 37.50mm length 41.5mm width 9mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L41.5mm_W11.0mm_P37.50mm_MKS4 -C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*11mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 37.50mm length 41.5mm width 11mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L41.5mm_W13.0mm_P37.50mm_MKS4 -C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*13mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 37.50mm length 41.5mm width 13mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L41.5mm_W15.0mm_P37.50mm_MKS4 -C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*15mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 37.50mm length 41.5mm width 15mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L41.5mm_W17.0mm_P37.50mm_MKS4 -C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*17mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 37.50mm length 41.5mm width 17mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L41.5mm_W19.0mm_P37.50mm_MKS4 -C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*19mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 37.50mm length 41.5mm width 19mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L41.5mm_W20.0mm_P37.50mm_MKS4 -C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*20mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 37.50mm length 41.5mm width 20mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L41.5mm_W24.0mm_P37.50mm_MKS4 -C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*24mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 37.50mm length 41.5mm width 24mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L41.5mm_W31.0mm_P37.50mm_MKS4 -C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*31mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 37.50mm length 41.5mm width 31mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L41.5mm_W35.0mm_P37.50mm_MKS4 -C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*35mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 37.50mm length 41.5mm width 35mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Rect_L41.5mm_W40.0mm_P37.50mm_MKS4 -C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*40mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 37.50mm length 41.5mm width 40mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Trimmer_BFC2-808_L7.3mm_W5.5mm_P5.6mm -C, Trimmer BFC2-808 series Pitch = 5.6mm, Width = 5.5mm, Length = 7.3mm https://www.vishay.com/docs/28526/bfc2808-5mm.pdf, Alternate KiCad Library -C trimmer BFC2 808 pitch 5.6mm width 5.5mm length 7.3mm nohole -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Trimmer_BFC2-808_L7.3mm_W5.5mm_P5.6mm_Hole -C, Trimmer BFC2-808 series Pitch = 5.6mm, Width = 5.5mm, Length = 7.3mm https://www.vishay.com/docs/28526/bfc2808-5mm.pdf, Alternate KiCad Library -C trimmer BFC2 808 pitch 5.6mm width 5.5mm length 7.3mm nohole -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Trimmer_BFC2-808_L7.3mm_W5.5mm_P5.08mm -C, Trimmer BFC2-808 series Pitch = 5.08mm, Width = 5.5mm, Length = 7.3mm https://www.vishay.com/docs/28526/bfc2808-5mm.pdf, Alternate KiCad Library -C trimmer BFC2 808 pitch 5.08mm width 5.5mm length 7.3mm nohole -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Trimmer_BFC2-808_L10.8mm_W10.6mm_P5mm -C, Trimmer BFC2-808 series Pitch = 5mm, Width = 10.6mm, Length = 10.8mm https://www.vishay.com/docs/28528/bfc2808-10mm.pdf, Alternate KiCad Library -C trimmer BFC2 808 pitch 5mm width 10.6mm length 10.8mm nohole -0 -3 -2 -PCM_Capacitor_THT_US_AKL -C_Trimmer_BFC2-808_L10.8mm_W10.6mm_P5mm_Hole -C, Trimmer BFC2-808 series, Bottom adjustment hole, Pitch = 5mm, Width = 10.6mm, Length = 10.8mm https://www.vishay.com/docs/28528/bfc2808-10mm.pdf, Alternate KiCad Library -C trimmer BFC2 808 pitch 5mm width 10.6mm length 10.8mm hole -0 -3 -2 -PCM_Capacitor_THT_US_AKL -C_Trimmer_BFC2-808_L10.8mm_W10.6mm_P10mm -C, Trimmer BFC2-808 series Pitch = 10mm, Width = 10.6mm, Length = 10.8mm https://www.vishay.com/docs/28528/bfc2808-10mm.pdf, Alternate KiCad Library -C trimmer BFC2 808 pitch 10mm width 10.6mm length 10.8mm nohole -0 -3 -2 -PCM_Capacitor_THT_US_AKL -C_Trimmer_BFC2-808_L10.8mm_W10.6mm_P10mm_Hole -C, Trimmer BFC2-808 series, Bottom adjustment hole, Pitch = 10mm, Width = 10.6mm, Length = 10.8mm https://www.vishay.com/docs/28528/bfc2808-10mm.pdf, Alternate KiCad Library -C trimmer BFC2 808 pitch 10mm width 10.6mm length 10.8mm hole -0 -3 -2 -PCM_Capacitor_THT_US_AKL -C_Trimmer_GKG15_L6.0mm_W6.0mm_P5.0mm -C, Trimmer GKG15 series Pitch = 5.0mm, Width = 6.0mm, Length = 6.0mm https://www.digikey.com/htmldatasheets/production/174846/0/0/1/gkp-gky-gkg-series.html, Alternate KiCad Library -C trimmer GKG15 pitch 5mm width 6mm length 6mm nohole -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Trimmer_GKG16_L6.0mm_W6.0mm_P6.3mm_Hole -C, Trimmer GKG16 series Pitch = 6.3mm, Width = 6.0mm, Length = 6.0mm https://www.digikey.com/htmldatasheets/production/174846/0/0/1/gkp-gky-gkg-series.html, Alternate KiCad Library -C trimmer GKG16 pitch 6.3mm width 6mm length 6mm hole -0 -2 -2 -PCM_Capacitor_THT_US_AKL -C_Trimmer_GKT_L7.0mm_W7.0mm_P7.0mm -C, Trimmer GKU series Pitch = 5.8mm, Width = 5.0mm, Length = 5.6mm https://www.digikey.com/htmldatasheets/production/174846/0/0/1/gkp-gky-gkg-series.html, Alternate KiCad Library -C trimmer GKU pitch 5mm width 5mm length 5.6mm -0 -3 -2 -PCM_Capacitor_THT_US_AKL -C_Trimmer_GKU_L5.6mm_W5.0mm_P5.8mm -C, Trimmer GKU series Pitch = 5.8mm, Width = 5.0mm, Length = 5.6mm https://www.digikey.com/htmldatasheets/production/174846/0/0/1/gkp-gky-gkg-series.html, Alternate KiCad Library -C trimmer GKU pitch 5mm width 5mm length 5.6mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L10.0mm_D4.5mm_P15.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=10*4.5mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 15mm length 10mm diameter 4.5mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L10.0mm_D6.0mm_P15.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=10*6mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 15mm length 10mm diameter 6mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L11.0mm_D5.0mm_P18.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=18mm, , length*diameter=11*5mm^2, Electrolytic Capacitor, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 18mm length 11mm diameter 5mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L11.0mm_D6.0mm_P18.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=18mm, , length*diameter=11*6mm^2, Electrolytic Capacitor, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 18mm length 11mm diameter 6mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L11.0mm_D8.0mm_P15.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=11*8mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 15mm length 11mm diameter 8mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L18.0mm_D6.5mm_P25.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=18*6.5mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 25mm length 18mm diameter 6.5mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L18.0mm_D8.0mm_P25.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=18*8mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 25mm length 18mm diameter 8mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L18.0mm_D10.0mm_P25.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=18*10mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 25mm length 18mm diameter 10mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L20.0mm_D10.0mm_P26.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=26mm, , length*diameter=20*10mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 26mm length 20mm diameter 10mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L20.0mm_D13.0mm_P26.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=26mm, , length*diameter=20*13mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 26mm length 20mm diameter 13mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L21.0mm_D8.0mm_P28.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=28mm, , length*diameter=21*8mm^2, Electrolytic Capacitor, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 28mm length 21mm diameter 8mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L25.0mm_D10.0mm_P30.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=30mm, , length*diameter=25*10mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 30mm length 25mm diameter 10mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L25.0mm_D10.0mm_P30.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=30mm, , length*diameter=25*10mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 30mm length 25mm diameter 10mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L26.5mm_D20.0mm_P33.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=33mm, , length*diameter=26.5*20mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 33mm length 26.5mm diameter 20mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L26.5mm_D20.0mm_P33.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=33mm, , length*diameter=26.5*20mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 33mm length 26.5mm diameter 20mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L29.0mm_D10.0mm_P35.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=29*10mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 35mm length 29mm diameter 10mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L29.0mm_D10.0mm_P35.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=35mm, , length*diameter=29*10mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 35mm length 29mm diameter 10mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L29.0mm_D13.0mm_P35.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=29*13mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 35mm length 29mm diameter 13mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L29.0mm_D13.0mm_P35.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=35mm, , length*diameter=29*13mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 35mm length 29mm diameter 13mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L29.0mm_D16.0mm_P35.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=29*16mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 35mm length 29mm diameter 16mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L29.0mm_D16.0mm_P35.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=35mm, , length*diameter=29*16mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 35mm length 29mm diameter 16mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L29.0mm_D20.0mm_P35.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=29*20mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 35mm length 29mm diameter 20mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L29.0mm_D20.0mm_P35.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=35mm, , length*diameter=29*20mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 35mm length 29mm diameter 20mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L30.0mm_D10.0mm_P35.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=30*10mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 35mm length 30mm diameter 10mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L30.0mm_D10.0mm_P35.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=35mm, , length*diameter=30*10mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 35mm length 30mm diameter 10mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L30.0mm_D12.5mm_P35.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=30*12.5mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 35mm length 30mm diameter 12.5mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L30.0mm_D12.5mm_P35.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=35mm, , length*diameter=30*12.5mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 35mm length 30mm diameter 12.5mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L30.0mm_D15.0mm_P35.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=30*15mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 35mm length 30mm diameter 15mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L30.0mm_D15.0mm_P35.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=35mm, , length*diameter=30*15mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 35mm length 30mm diameter 15mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L30.0mm_D18.0mm_P35.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=30*18mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 35mm length 30mm diameter 18mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L30.0mm_D18.0mm_P35.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=35mm, , length*diameter=30*18mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 35mm length 30mm diameter 18mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L34.5mm_D20.0mm_P41.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=41mm, , length*diameter=34.5*20mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 41mm length 34.5mm diameter 20mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L34.5mm_D20.0mm_P41.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=41mm, , length*diameter=34.5*20mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 41mm length 34.5mm diameter 20mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L37.0mm_D13.0mm_P43.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=43mm, , length*diameter=37*13mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 43mm length 37mm diameter 13mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L37.0mm_D13.0mm_P43.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=43mm, , length*diameter=37*13mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 43mm length 37mm diameter 13mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L37.0mm_D16.0mm_P43.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=43mm, , length*diameter=37*16mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 43mm length 37mm diameter 16mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L37.0mm_D16.0mm_P43.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=43mm, , length*diameter=37*16mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 43mm length 37mm diameter 16mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L37.0mm_D20.0mm_P43.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=43mm, , length*diameter=37*20mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 43mm length 37mm diameter 20mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L37.0mm_D20.0mm_P43.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=43mm, , length*diameter=37*20mm^2, Electrolytic Capacitor, , http://www.kemet.com/Lists/ProductCatalog/Attachments/424/KEM_AC102.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 43mm length 37mm diameter 20mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L38.0mm_D18.0mm_P44.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=44mm, , length*diameter=38*18mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 44mm length 38mm diameter 18mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L38.0mm_D18.0mm_P44.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=44mm, , length*diameter=38*18mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 44mm length 38mm diameter 18mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L38.0mm_D21.0mm_P44.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=44mm, , length*diameter=38*21mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 44mm length 38mm diameter 21mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L38.0mm_D21.0mm_P44.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=44mm, , length*diameter=38*21mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/28325/021asm.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 44mm length 38mm diameter 21mm Electrolytic Capacitor Support -0 -4 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L40.0mm_D16.0mm_P48.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=48mm, , length*diameter=40*16mm^2, Electrolytic Capacitor, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 48mm length 40mm diameter 16mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L40.0mm_D16.0mm_P48.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=48mm, , length*diameter=40*16mm^2, Electrolytic Capacitor, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 48mm length 40mm diameter 16mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L42.0mm_D23.0mm_P45.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=45mm, , length*diameter=42*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 23.0mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L42.0mm_D23.0mm_P45.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=45mm, , length*diameter=42*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 23.0mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L42.0mm_D26.0mm_P45.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=45mm, , length*diameter=42*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 26mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L42.0mm_D26.0mm_P45.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=45mm, , length*diameter=42*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 26mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L42.0mm_D29.0mm_P45.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=45mm, , length*diameter=42*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 29.0mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L42.0mm_D29.0mm_P45.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=45mm, , length*diameter=42*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 29.0mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L42.0mm_D32.0mm_P45.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=45mm, , length*diameter=42*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 32.0mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L42.0mm_D32.0mm_P45.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=45mm, , length*diameter=42*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 32.0mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L42.0mm_D35.0mm_P45.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=45mm, , length*diameter=42*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 35.0mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L42.0mm_D35.0mm_P45.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=45mm, , length*diameter=42*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 45mm length 42mm diameter 35.0mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L42.5mm_D20.0mm_P49.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=49mm, , length*diameter=42.5*20mm^2, Electrolytic Capacitor, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 49mm length 42.5mm diameter 20mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L42.5mm_D20.0mm_P49.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=49mm, , length*diameter=42.5*20mm^2, Electrolytic Capacitor, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 49mm length 42.5mm diameter 20mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L46.0mm_D20.0mm_P52.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=52mm, , length*diameter=46*20mm^2, Electrolytic Capacitor, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 52mm length 46mm diameter 20mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L46.0mm_D20.0mm_P52.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=52mm, , length*diameter=46*20mm^2, Electrolytic Capacitor, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 52mm length 46mm diameter 20mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L55.0mm_D23.0mm_P60.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=60mm, , length*diameter=55*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 23.0mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L55.0mm_D23.0mm_P60.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=60mm, , length*diameter=55*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 23.0mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L55.0mm_D26.0mm_P60.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=60mm, , length*diameter=55*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 26mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L55.0mm_D26.0mm_P60.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=60mm, , length*diameter=55*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 26mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L55.0mm_D29.0mm_P60.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=60mm, , length*diameter=55*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 29.0mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L55.0mm_D29.0mm_P60.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=60mm, , length*diameter=55*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 29.0mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L55.0mm_D32.0mm_P60.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=60mm, , length*diameter=55*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 32.0mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L55.0mm_D32.0mm_P60.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=60mm, , length*diameter=55*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 32.0mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L55.0mm_D35.0mm_P60.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=60mm, , length*diameter=55*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 35.0mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L55.0mm_D35.0mm_P60.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=60mm, , length*diameter=55*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 60mm length 55mm diameter 35.0mm Electrolytic Capacitor Support -0 -6 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L67.0mm_D23.0mm_P75.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=75mm, , length*diameter=67*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 23.0mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L67.0mm_D23.0mm_P75.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=75mm, , length*diameter=67*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 23.0mm Electrolytic Capacitor Support -0 -8 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L67.0mm_D26.0mm_P75.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=75mm, , length*diameter=67*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 26mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L67.0mm_D26.0mm_P75.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=75mm, , length*diameter=67*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 26mm Electrolytic Capacitor Support -0 -8 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L67.0mm_D29.0mm_P75.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=75mm, , length*diameter=67*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 29.0mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L67.0mm_D29.0mm_P75.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=75mm, , length*diameter=67*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 29.0mm Electrolytic Capacitor Support -0 -8 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L67.0mm_D32.0mm_P75.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=75mm, , length*diameter=67*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 32.0mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L67.0mm_D32.0mm_P75.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=75mm, , length*diameter=67*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 32.0mm Electrolytic Capacitor Support -0 -8 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L67.0mm_D35.0mm_P75.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=75mm, , length*diameter=67*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 35.0mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L67.0mm_D35.0mm_P75.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=75mm, , length*diameter=67*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 75mm length 67mm diameter 35.0mm Electrolytic Capacitor Support -0 -8 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L80.0mm_D23.0mm_P85.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=85mm, , length*diameter=80*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 23.0mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L80.0mm_D23.0mm_P85.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=85mm, , length*diameter=80*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 23.0mm Electrolytic Capacitor Support -0 -8 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L80.0mm_D26.0mm_P85.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=85mm, , length*diameter=80*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 26mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L80.0mm_D26.0mm_P85.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=85mm, , length*diameter=80*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 26mm Electrolytic Capacitor Support -0 -8 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L80.0mm_D29.0mm_P85.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=85mm, , length*diameter=80*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 29.0mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L80.0mm_D29.0mm_P85.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=85mm, , length*diameter=80*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 29.0mm Electrolytic Capacitor Support -0 -8 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L80.0mm_D32.0mm_P85.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=85mm, , length*diameter=80*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 32.0mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L80.0mm_D32.0mm_P85.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=85mm, , length*diameter=80*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 32.0mm Electrolytic Capacitor Support -0 -8 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L80.0mm_D35.0mm_P85.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=85mm, , length*diameter=80*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 35.0mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L80.0mm_D35.0mm_P85.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=85mm, , length*diameter=80*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 85mm length 80mm diameter 35.0mm Electrolytic Capacitor Support -0 -8 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L93.0mm_D23.0mm_P100.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=100mm, , length*diameter=93*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 23.0mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L93.0mm_D23.0mm_P100.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=100mm, , length*diameter=93*23.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 23.0mm Electrolytic Capacitor Support -0 -8 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L93.0mm_D26.0mm_P100.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=100mm, , length*diameter=93*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 26mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L93.0mm_D26.0mm_P100.00mm_Horizontal_Supported -CP, Axial series, Axial, Additional holes for supports, Horizontal, pin pitch=100mm, , length*diameter=93*26mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 26mm Electrolytic Capacitor Support -0 -8 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L93.0mm_D29.0mm_P100.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=100mm, , length*diameter=93*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 29.0mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L93.0mm_D29.0mm_P100.00mm_Horizontal_Supported -CP, Axial series, Axial, Additional holes for supports, Horizontal, pin pitch=100mm, , length*diameter=93*29.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 29.0mm Electrolytic Capacitor Support -0 -8 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L93.0mm_D32.0mm_P100.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=100mm, , length*diameter=93*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 32.0mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L93.0mm_D32.0mm_P100.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=100mm, , length*diameter=93*32.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 32.0mm Electrolytic Capacitor Support -0 -8 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L93.0mm_D35.0mm_P100.00mm_Horizontal -CP, Axial series, Axial, Horizontal, pin pitch=100mm, , length*diameter=93*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 35.0mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Axial_L93.0mm_D35.0mm_P100.00mm_Horizontal_Supported -CP, Axial series, Axial, Horizontal, Additional holes for supports, pin pitch=100mm, , length*diameter=93*35.0mm^2, Electrolytic Capacitor, , http://www.vishay.com/docs/42037/53d.pdf, Alternate KiCad Library -CP Axial series Axial Horizontal pin pitch 100mm length 93mm diameter 35.0mm Electrolytic Capacitor Support -0 -8 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D4.0mm_P1.50mm -CP, Radial series, Radial, pin pitch=1.50mm, , diameter=4mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 1.50mm diameter 4mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D4.0mm_P2.00mm -CP, Radial series, Radial, pin pitch=2.00mm, , diameter=4mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 2.00mm diameter 4mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D5.0mm_P2.00mm -CP, Radial series, Radial, pin pitch=2.00mm, , diameter=5mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 2.00mm diameter 5mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D5.0mm_P2.50mm -CP, Radial series, Radial, pin pitch=2.50mm, , diameter=5mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 2.50mm diameter 5mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D6.3mm_P2.50mm -CP, Radial series, Radial, pin pitch=2.50mm, , diameter=6.3mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 2.50mm diameter 6.3mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D7.5mm_P2.50mm -CP, Radial series, Radial, pin pitch=2.50mm, , diameter=7.5mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 2.50mm diameter 7.5mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D8.0mm_P2.50mm -CP, Radial series, Radial, pin pitch=2.50mm, , diameter=8mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 2.50mm diameter 8mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D8.0mm_P3.50mm -CP, Radial series, Radial, pin pitch=3.50mm, , diameter=8mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 3.50mm diameter 8mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D8.0mm_P3.50mm_H20mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=3.50mm, diameter=8mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 20mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D8.0mm_P3.50mm_H20mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 20mm Electrolytic Capacitor Support -0 -4 -3 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D8.0mm_P3.50mm_H20mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=3.50mm, , diameter=8mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 20mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D8.0mm_P3.50mm_H20mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 20mm Electrolytic Capacitor Support -0 -4 -3 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D8.0mm_P3.50mm_H30mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=3.50mm, , diameter=8mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 30mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D8.0mm_P3.50mm_H30mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 30mm Electrolytic Capacitor Support -0 -4 -3 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D8.0mm_P3.50mm_H30mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=3.50mm, , diameter=8mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 30mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D8.0mm_P3.50mm_H30mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 30mm Electrolytic Capacitor Support -0 -4 -3 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D8.0mm_P3.50mm_H40mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=3.50mm, , diameter=8mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 40mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D8.0mm_P3.50mm_H40mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 40mm Electrolytic Capacitor Support -0 -6 -3 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D8.0mm_P3.50mm_H40mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=3.50mm, , diameter=8mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 40mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D8.0mm_P3.50mm_H40mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 40mm Electrolytic Capacitor Support -0 -6 -3 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D8.0mm_P3.80mm -CP, Radial series, Radial, pin pitch=3.80mm, , diameter=8mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 3.80mm diameter 8mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D8.0mm_P5.00mm -CP, Radial series, Radial, pin pitch=5.00mm, , diameter=8mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 5.00mm diameter 8mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D8.0mm_P5mm_H20mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=3.50mm, , diameter=8mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 20mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D8.0mm_P5mm_H20mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 20mm Electrolytic Capacitor Support -0 -4 -3 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D8.0mm_P5mm_H20mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=3.50mm, , diameter=8mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 20mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D8.0mm_P5mm_H20mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 20mm Electrolytic Capacitor Support -0 -4 -3 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D8.0mm_P5mm_H30mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=3.50mm, , diameter=8mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 30mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D8.0mm_P5mm_H30mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 30mm Electrolytic Capacitor Support -0 -4 -3 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D8.0mm_P5mm_H30mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=3.50mm, , diameter=8mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 30mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D8.0mm_P5mm_H30mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 30mm Electrolytic Capacitor Support -0 -4 -3 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D8.0mm_P5mm_H40mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=3.50mm, , diameter=8mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 40mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D8.0mm_P5mm_H40mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 40mm Electrolytic Capacitor Support -0 -6 -3 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D8.0mm_P5mm_H40mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=3.50mm, , diameter=8mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 40mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D8.0mm_P5mm_H40mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=3.50mm, , diameter=8mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 3.50mm diameter 8mm height 40mm Electrolytic Capacitor Support -0 -6 -3 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D10.0mm_P2.50mm -CP, Radial series, Radial, pin pitch=2.50mm, , diameter=10mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 2.50mm diameter 10mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D10.0mm_P2.50mm_P5.00mm -CP, Radial series, Radial, pin pitch=2.50mm 5.00mm, , diameter=10mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 2.50mm 5.00mm diameter 10mm Electrolytic Capacitor -0 -4 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D10.0mm_P3.50mm -CP, Radial series, Radial, pin pitch=3.50mm, , diameter=10mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 3.50mm diameter 10mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D10.0mm_P3.80mm -CP, Radial series, Radial, pin pitch=3.80mm, , diameter=10mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 3.80mm diameter 10mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D10.0mm_P5.00mm -CP, Radial series, Radial, pin pitch=5.00mm, , diameter=10mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 5.00mm diameter 10mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D10.0mm_P5.00mm_H20mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=10mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 20mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D10.0mm_P5.00mm_H20mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 20mm Electrolytic Capacitor Support -0 -4 -3 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D10.0mm_P5.00mm_H20mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=10mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 20mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D10.0mm_P5.00mm_H20mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 20mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 20mm Electrolytic Capacitor Support -0 -4 -3 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D10.0mm_P5.00mm_H21mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=10mm, height = 21mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 21mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D10.0mm_P5.00mm_H21mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 21mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 21mm Electrolytic Capacitor Support -0 -4 -3 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D10.0mm_P5.00mm_H21mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=10mm, height = 21mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 21mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D10.0mm_P5.00mm_H21mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 21mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 21mm Electrolytic Capacitor Support -0 -4 -3 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D10.0mm_P5.00mm_H23mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=10mm, height = 23mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 23mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D10.0mm_P5.00mm_H23mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 23mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 23mm Electrolytic Capacitor Support -0 -4 -3 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D10.0mm_P5.00mm_H23mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=10mm, height = 23mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 23mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D10.0mm_P5.00mm_H23mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 23mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 23mm Electrolytic Capacitor Support -0 -4 -3 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D10.0mm_P5.00mm_H25mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=10mm, height = 25mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 25mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D10.0mm_P5.00mm_H25mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 25mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 25mm Electrolytic Capacitor Support -0 -4 -3 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D10.0mm_P5.00mm_H25mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=10mm, height = 25mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 25mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D10.0mm_P5.00mm_H25mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 25mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 25mm Electrolytic Capacitor Support -0 -4 -3 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D10.0mm_P5.00mm_H30mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=10mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 30mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D10.0mm_P5.00mm_H30mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 30mm Electrolytic Capacitor Support -0 -4 -3 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D10.0mm_P5.00mm_H30mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=10mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 30mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D10.0mm_P5.00mm_H30mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 30mm Electrolytic Capacitor Support -0 -4 -3 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D10.0mm_P5.00mm_H31.5mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=10mm, height = 31.5mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 31.5mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D10.0mm_P5.00mm_H31.5mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 31.5mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 31.5mm Electrolytic Capacitor Support -0 -4 -3 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D10.0mm_P5.00mm_H31.5mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=10mm, height = 31.5mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 31.5mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D10.0mm_P5.00mm_H31.5mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 31.5mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 31.5mm Electrolytic Capacitor Support -0 -4 -3 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D10.0mm_P5.00mm_H35mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=10mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 35mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D10.0mm_P5.00mm_H35mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 35mm Electrolytic Capacitor Support -0 -4 -3 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D10.0mm_P5.00mm_H35mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=10mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 35mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D10.0mm_P5.00mm_H35mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 35mm Electrolytic Capacitor Support -0 -4 -3 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D10.0mm_P5.00mm_H40mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=10mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 40mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D10.0mm_P5.00mm_H40mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 40mm Electrolytic Capacitor Support -0 -6 -3 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D10.0mm_P5.00mm_H40mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=10mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 40mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D10.0mm_P5.00mm_H40mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 40mm Electrolytic Capacitor Support -0 -6 -3 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D10.0mm_P5.00mm_H45mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=10mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 45mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D10.0mm_P5.00mm_H45mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 45mm Electrolytic Capacitor Support -0 -6 -3 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D10.0mm_P5.00mm_H45mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=10mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 45mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D10.0mm_P5.00mm_H45mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 45mm Electrolytic Capacitor Support -0 -6 -3 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D10.0mm_P5.00mm_H50mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=10mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 50mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D10.0mm_P5.00mm_H50mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 50mm Electrolytic Capacitor Support -0 -6 -3 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D10.0mm_P5.00mm_H50mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=10mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 50mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D10.0mm_P5.00mm_H50mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 50mm Electrolytic Capacitor Support -0 -6 -3 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D10.0mm_P5.00mm_H60mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=10mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 60mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D10.0mm_P5.00mm_H60mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 60mm Electrolytic Capacitor Support -0 -8 -3 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D10.0mm_P5.00mm_H60mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=10mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 60mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D10.0mm_P5.00mm_H60mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=10mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 10mm height 60mm Electrolytic Capacitor Support -0 -8 -3 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D10.0mm_P5.00mm_P7.50mm -CP, Radial series, Radial, pin pitch=5.00mm 7.50mm, , diameter=10mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 5.00mm 7.50mm diameter 10mm Electrolytic Capacitor -0 -4 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D10.0mm_P7.50mm -CP, Radial series, Radial, pin pitch=7.50mm, , diameter=10mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 7.50mm diameter 10mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D12.5mm_P2.50mm -CP, Radial series, Radial, pin pitch=2.50mm, , diameter=12.5mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 2.50mm diameter 12.5mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D12.5mm_P5.00mm -CP, Radial series, Radial, pin pitch=5.00mm, , diameter=12.5mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 5.00mm diameter 12.5mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D12.5mm_P5.00mm_H25mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=12.5mm, height = 25mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 25mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D12.5mm_P5.00mm_H25mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 25mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 25mm Electrolytic Capacitor Support -0 -4 -3 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D12.5mm_P5.00mm_H25mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=12.5mm, height = 25mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 25mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D12.5mm_P5.00mm_H25mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 25mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 25mm Electrolytic Capacitor Support -0 -4 -3 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D12.5mm_P5.00mm_H30mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=12.5mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 30mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D12.5mm_P5.00mm_H30mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 30mm Electrolytic Capacitor Support -0 -4 -3 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D12.5mm_P5.00mm_H30mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=12.5mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 30mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D12.5mm_P5.00mm_H30mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 30mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 30mm Electrolytic Capacitor Support -0 -4 -3 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D12.5mm_P5.00mm_H31.5mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=12.5mm, height = 31.5mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 31.5mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D12.5mm_P5.00mm_H31.5mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 31.5mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 31.5mm Electrolytic Capacitor Support -0 -4 -3 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D12.5mm_P5.00mm_H31.5mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=12.5mm, height = 31.5mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 31.5mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D12.5mm_P5.00mm_H31.5mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 31.5mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 31.5mm Electrolytic Capacitor Support -0 -4 -3 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D12.5mm_P5.00mm_H35mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=12.5mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 35mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D12.5mm_P5.00mm_H35mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 35mm Electrolytic Capacitor Support -0 -4 -3 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D12.5mm_P5.00mm_H35mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=12.5mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 35mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D12.5mm_P5.00mm_H35mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 35mm Electrolytic Capacitor Support -0 -4 -3 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D12.5mm_P5.00mm_H40mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=12.5mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 40mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D12.5mm_P5.00mm_H40mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 40mm Electrolytic Capacitor Support -0 -6 -3 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D12.5mm_P5.00mm_H40mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=12.5mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 40mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D12.5mm_P5.00mm_H40mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 40mm Electrolytic Capacitor Support -0 -6 -3 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D12.5mm_P5.00mm_H45mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=12.5mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 45mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D12.5mm_P5.00mm_H45mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 45mm Electrolytic Capacitor Support -0 -6 -3 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D12.5mm_P5.00mm_H45mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=12.5mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 45mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D12.5mm_P5.00mm_H45mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 45mm Electrolytic Capacitor Support -0 -6 -3 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D12.5mm_P5.00mm_H50mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=12.5mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 50mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D12.5mm_P5.00mm_H50mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 50mm Electrolytic Capacitor Support -0 -6 -3 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D12.5mm_P5.00mm_H50mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=12.5mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 50mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D12.5mm_P5.00mm_H50mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 50mm Electrolytic Capacitor Support -0 -6 -3 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D12.5mm_P5.00mm_H60mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=5.00mm, , diameter=12.5mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 60mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D12.5mm_P5.00mm_H60mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 60mm Electrolytic Capacitor Support -0 -8 -3 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D12.5mm_P5.00mm_H60mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=5.00mm, , diameter=12.5mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 60mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D12.5mm_P5.00mm_H60mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=5.00mm, , diameter=12.5mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 5.00mm diameter 12.5mm height 60mm Electrolytic Capacitor Support -0 -8 -3 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D12.5mm_P7.50mm -CP, Radial series, Radial, pin pitch=7.50mm, , diameter=12.5mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 7.50mm diameter 12.5mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D13.0mm_P2.50mm -CP, Radial series, Radial, pin pitch=2.50mm, , diameter=13mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 2.50mm diameter 13mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D13.0mm_P5.00mm -CP, Radial series, Radial, pin pitch=5.00mm, , diameter=13mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 5.00mm diameter 13mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D13.0mm_P7.50mm -CP, Radial series, Radial, pin pitch=7.50mm, , diameter=13mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 7.50mm diameter 13mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D14.0mm_P5.00mm -CP, Radial series, Radial, pin pitch=5.00mm, , diameter=14mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 5.00mm diameter 14mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D14.0mm_P7.50mm -CP, Radial series, Radial, pin pitch=7.50mm, , diameter=14mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 7.50mm diameter 14mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D16.0mm_P7.50mm -CP, Radial series, Radial, pin pitch=7.50mm, , diameter=16mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 7.50mm diameter 16mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D16.0mm_P7.50mm_H35mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=7.50mm, , diameter=16mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 16mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D16.0mm_P7.50mm_H35mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=7.50mm, , diameter=16mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 16mm Electrolytic Capacitor Support -0 -4 -3 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D16.0mm_P7.50mm_H35mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=7.50mm, , diameter=16mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 16mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D16.0mm_P7.50mm_H35mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=7.50mm, , diameter=16mm, height = 35mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 16mm Electrolytic Capacitor Support -0 -4 -3 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D16.0mm_P7.50mm_H40mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=7.50mm, , diameter=16mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 40mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D16.0mm_P7.50mm_H40mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=7.50mm, , diameter=16mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 40mm Electrolytic Capacitor Support -0 -6 -3 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D16.0mm_P7.50mm_H40mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=7.50mm, , diameter=16mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 40mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D16.0mm_P7.50mm_H40mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=7.50mm, , diameter=16mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 40mm Electrolytic Capacitor Support -0 -6 -3 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D16.0mm_P7.50mm_H45mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=7.50mm, , diameter=16mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 45mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D16.0mm_P7.50mm_H45mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=7.50mm, , diameter=16mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 45mm Electrolytic Capacitor Support -0 -6 -3 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D16.0mm_P7.50mm_H45mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=7.50mm, , diameter=16mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 45mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D16.0mm_P7.50mm_H45mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=7.50mm, , diameter=16mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 45mm Electrolytic Capacitor Support -0 -6 -3 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D16.0mm_P7.50mm_H50mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=7.50mm, , diameter=16mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 50mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D16.0mm_P7.50mm_H50mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=7.50mm, , diameter=16mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 50mm Electrolytic Capacitor Support -0 -6 -3 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D16.0mm_P7.50mm_H50mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=7.50mm, , diameter=16mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 50mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D16.0mm_P7.50mm_H50mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=7.50mm, , diameter=16mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 50mm Electrolytic Capacitor Support -0 -6 -3 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D16.0mm_P7.50mm_H60mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=7.50mm, , diameter=16mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 60mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D16.0mm_P7.50mm_H60mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=7.50mm, , diameter=16mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 60mm Electrolytic Capacitor Support -0 -8 -3 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D16.0mm_P7.50mm_H60mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=7.50mm, , diameter=16mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 60mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D16.0mm_P7.50mm_H60mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=7.50mm, , diameter=16mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 16mm height 60mm Electrolytic Capacitor Support -0 -8 -3 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D17.0mm_P7.50mm -CP, Radial series, Radial, pin pitch=7.50mm, , diameter=17mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 7.50mm diameter 17mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D18.0mm_P7.50mm -CP, Radial series, Radial, pin pitch=7.50mm, , diameter=18mm, Electrolytic Capacitor -CP Radial series Radial pin pitch 7.50mm diameter 18mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D18.0mm_P7.50mm_H40mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=7.50mm, , diameter=18mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 40mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D18.0mm_P7.50mm_H40mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=7.50mm, , diameter=18mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 40mm Electrolytic Capacitor Support -0 -6 -3 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D18.0mm_P7.50mm_H40mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=7.50mm, , diameter=18mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 40mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D18.0mm_P7.50mm_H40mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=7.50mm, , diameter=18mm, height = 40mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 40mm Electrolytic Capacitor Support -0 -6 -3 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D18.0mm_P7.50mm_H45mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=7.50mm, , diameter=18mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 45mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D18.0mm_P7.50mm_H45mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=7.50mm, , diameter=18mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 45mm Electrolytic Capacitor Support -0 -6 -3 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D18.0mm_P7.50mm_H45mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=7.50mm, , diameter=18mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 45mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D18.0mm_P7.50mm_H45mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=7.50mm, , diameter=18mm, height = 45mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 45mm Electrolytic Capacitor Support -0 -6 -3 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D18.0mm_P7.50mm_H50mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=7.50mm, , diameter=18mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 50mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D18.0mm_P7.50mm_H50mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=7.50mm, , diameter=18mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 50mm Electrolytic Capacitor Support -0 -6 -3 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D18.0mm_P7.50mm_H50mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=7.50mm, , diameter=18mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 50mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D18.0mm_P7.50mm_H50mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=7.50mm, , diameter=18mm, height = 50mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 50mm Electrolytic Capacitor Support -0 -6 -3 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D18.0mm_P7.50mm_H60mm_Horizontal1 -CP, Radial series, Horizontal, pin pitch=7.50mm, , diameter=18mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 60mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D18.0mm_P7.50mm_H60mm_Horizontal1_Supported -CP, Radial series, Horizontal with holes for supports, pin pitch=7.50mm, , diameter=18mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 60mm Electrolytic Capacitor Support -0 -8 -3 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D18.0mm_P7.50mm_H60mm_Horizontal2 -CP, Radial series, Horizontal flipped, pin pitch=7.50mm, , diameter=18mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 18mm height 60mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D18.0mm_P7.50mm_H60mm_Horizontal2_Supported -CP, Radial series, Horizontal flipped with holes for supports, pin pitch=7.50mm, , diameter=18mm, height = 60mm, Electrolytic Capacitor, Alternate KiCad Library -CP Radial series Horizontal pin pitch 7.50mm diameter 18mm Electrolytic height 60mm Capacitor Support -0 -8 -3 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D22.0mm_P10.00mm_3pin_SnapIn -CP, Radial series, Radial, pin pitch=10.00mm, , diameter=22mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf -CP Radial series Radial pin pitch 10.00mm diameter 22mm Electrolytic Capacitor -0 -3 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D22.0mm_P10.00mm_SnapIn -CP, Radial series, Radial, pin pitch=10.00mm, , diameter=22mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf -CP Radial series Radial pin pitch 10.00mm diameter 22mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D24.0mm_P10.00mm_3pin_SnapIn -CP, Radial series, Radial, pin pitch=10.00mm, , diameter=24mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf -CP Radial series Radial pin pitch 10.00mm diameter 24mm Electrolytic Capacitor -0 -3 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D24.0mm_P10.00mm_SnapIn -CP, Radial series, Radial, pin pitch=10.00mm, , diameter=24mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf -CP Radial series Radial pin pitch 10.00mm diameter 24mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D25.0mm_P10.00mm_3pin_SnapIn -CP, Radial series, Radial, pin pitch=10.00mm, , diameter=25mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf -CP Radial series Radial pin pitch 10.00mm diameter 25mm Electrolytic Capacitor -0 -3 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D25.0mm_P10.00mm_SnapIn -CP, Radial series, Radial, pin pitch=10.00mm, , diameter=25mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf -CP Radial series Radial pin pitch 10.00mm diameter 25mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D26.0mm_P10.00mm_3pin_SnapIn -CP, Radial series, Radial, pin pitch=10.00mm, , diameter=26mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf -CP Radial series Radial pin pitch 10.00mm diameter 26mm Electrolytic Capacitor -0 -3 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D26.0mm_P10.00mm_SnapIn -CP, Radial series, Radial, pin pitch=10.00mm, , diameter=26mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf -CP Radial series Radial pin pitch 10.00mm diameter 26mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D30.0mm_P10.00mm_3pin_SnapIn -CP, Radial series, Radial, pin pitch=10.00mm, , diameter=30mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf -CP Radial series Radial pin pitch 10.00mm diameter 30mm Electrolytic Capacitor -0 -3 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D30.0mm_P10.00mm_SnapIn -CP, Radial series, Radial, pin pitch=10.00mm, , diameter=30mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf -CP Radial series Radial pin pitch 10.00mm diameter 30mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D35.0mm_P10.00mm_3pin_SnapIn -CP, Radial series, Radial, pin pitch=10.00mm, , diameter=35mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf -CP Radial series Radial pin pitch 10.00mm diameter 35mm Electrolytic Capacitor -0 -3 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D35.0mm_P10.00mm_SnapIn -CP, Radial series, Radial, pin pitch=10.00mm, , diameter=35mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf -CP Radial series Radial pin pitch 10.00mm diameter 35mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D40.0mm_P10.00mm_3pin_SnapIn -CP, Radial series, Radial, pin pitch=10.00mm, , diameter=40mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf -CP Radial series Radial pin pitch 10.00mm diameter 40mm Electrolytic Capacitor -0 -3 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_D40.0mm_P10.00mm_SnapIn -CP, Radial series, Radial, pin pitch=10.00mm, , diameter=40mm, Electrolytic Capacitor, , http://www.vishay.com/docs/28342/058059pll-si.pdf -CP Radial series Radial pin pitch 10.00mm diameter 40mm Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_Tantal_D4.5mm_P2.50mm -CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=4.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf -CP Radial_Tantal series Radial pin pitch 2.50mm diameter 4.5mm Tantal Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_Tantal_D4.5mm_P5.00mm -CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=4.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf, Alternate KiCad Library -CP Radial_Tantal series Radial pin pitch 5.00mm diameter 4.5mm Tantal Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_Tantal_D5.0mm_P2.50mm -CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=5.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf -CP Radial_Tantal series Radial pin pitch 2.50mm diameter 5.0mm Tantal Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_Tantal_D5.0mm_P5.00mm -CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=5.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf, Alternate KiCad Library -CP Radial_Tantal series Radial pin pitch 5.00mm diameter 5.0mm Tantal Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_Tantal_D5.5mm_P2.50mm -CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=5.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf -CP Radial_Tantal series Radial pin pitch 2.50mm diameter 5.5mm Tantal Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_Tantal_D5.5mm_P5.00mm -CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=5.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf, Alternate KiCad Library -CP Radial_Tantal series Radial pin pitch 5.00mm diameter 5.5mm Tantal Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_Tantal_D6.0mm_P2.50mm -CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=6.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf -CP Radial_Tantal series Radial pin pitch 2.50mm diameter 6.0mm Tantal Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_Tantal_D6.0mm_P5.00mm -CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=6.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf, Alternate KiCad Library -CP Radial_Tantal series Radial pin pitch 5.00mm diameter 6.0mm Tantal Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_Tantal_D7.0mm_P2.50mm -CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=7.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf -CP Radial_Tantal series Radial pin pitch 2.50mm diameter 7.0mm Tantal Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_Tantal_D7.0mm_P5.00mm -CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=7.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf, Alternate KiCad Library -CP Radial_Tantal series Radial pin pitch 5.00mm diameter 7.0mm Tantal Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_Tantal_D8.0mm_P2.50mm -CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=8.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf -CP Radial_Tantal series Radial pin pitch 2.50mm diameter 8.0mm Tantal Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_Tantal_D8.0mm_P5.00mm -CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=8.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf, Alternate KiCad Library -CP Radial_Tantal series Radial pin pitch 5.00mm diameter 8.0mm Tantal Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_Tantal_D9.0mm_P2.50mm -CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=9.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf -CP Radial_Tantal series Radial pin pitch 2.50mm diameter 9.0mm Tantal Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_Tantal_D9.0mm_P5.00mm -CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=9.0mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf, Alternate KiCad Library -CP Radial_Tantal series Radial pin pitch 5.00mm diameter 9.0mm Tantal Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_Tantal_D10.5mm_P2.50mm -CP, Radial_Tantal series, Radial, pin pitch=2.50mm, , diameter=10.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf -CP Radial_Tantal series Radial pin pitch 2.50mm diameter 10.5mm Tantal Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -CP_Radial_Tantal_D10.5mm_P5.00mm -CP, Radial_Tantal series, Radial, pin pitch=5.00mm, , diameter=10.5mm, Tantal Electrolytic Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/TANTAL-TB-Serie%23.pdf, Alternate KiCad Library -CP Radial_Tantal series Radial pin pitch 5.00mm diameter 10.5mm Tantal Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Axial_L3.0mm_D2.3mm_P5.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 7.5mm length 3.8mm diameter 2.6mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Axial_L3.0mm_D2.3mm_P7.50mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 7.5mm length 3.8mm diameter 2.6mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Axial_L3.0mm_D2.3mm_P10.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 7.5mm length 3.8mm diameter 2.6mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Axial_L3.0mm_D2.3mm_P12.50mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 7.5mm length 3.8mm diameter 2.6mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Axial_L3.0mm_D2.3mm_P15.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 7.5mm length 3.8mm diameter 2.6mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Axial_L3.0mm_D2.3mm_P17.50mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 7.5mm length 3.8mm diameter 2.6mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Axial_L3.0mm_D2.3mm_P20.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 7.5mm length 3.8mm diameter 2.6mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Axial_L3.0mm_D2.3mm_P25.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 7.5mm length 3.8mm diameter 2.6mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Axial_L3.0mm_D2.3mm_P30.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 7.5mm length 3.8mm diameter 2.6mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Axial_L3.8mm_D2.6mm_P7.50mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 7.5mm length 3.8mm diameter 2.6mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Axial_L3.8mm_D2.6mm_P10.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=10mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 10mm length 3.8mm diameter 2.6mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Axial_L3.8mm_D2.6mm_P12.50mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=12.5mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 12.5mm length 3.8mm diameter 2.6mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Axial_L3.8mm_D2.6mm_P15.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 15mm length 3.8mm diameter 2.6mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Axial_L3.8mm_D2.6mm_P17.50mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 15mm length 3.8mm diameter 2.6mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Axial_L3.8mm_D2.6mm_P20.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 15mm length 3.8mm diameter 2.6mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Axial_L3.8mm_D2.6mm_P25.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 15mm length 3.8mm diameter 2.6mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Axial_L3.8mm_D2.6mm_P30.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=3.8*2.6mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 15mm length 3.8mm diameter 2.6mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Axial_L5.1mm_D3.1mm_P7.50mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=7.5mm, , length*diameter=5.1*3.1mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 7.5mm length 5.1mm diameter 3.1mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Axial_L5.1mm_D3.1mm_P10.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=10mm, , length*diameter=5.1*3.1mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 10mm length 5.1mm diameter 3.1mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Axial_L5.1mm_D3.1mm_P12.50mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=12.5mm, , length*diameter=5.1*3.1mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 12.5mm length 5.1mm diameter 3.1mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Axial_L5.1mm_D3.1mm_P15.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=5.1*3.1mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 15mm length 5.1mm diameter 3.1mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Axial_L5.1mm_D3.1mm_P17.50mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=5.1*3.1mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 15mm length 5.1mm diameter 3.1mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Axial_L5.1mm_D3.1mm_P20.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=5.1*3.1mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 15mm length 5.1mm diameter 3.1mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Axial_L5.1mm_D3.1mm_P25.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=5.1*3.1mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 15mm length 5.1mm diameter 3.1mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Axial_L5.1mm_D3.1mm_P30.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=5.1*3.1mm^2, http://www.vishay.com/docs/45231/arseries.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 15mm length 5.1mm diameter 3.1mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Axial_L12.0mm_D6.5mm_P15.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=12*6.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 15mm length 12mm diameter 6.5mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Axial_L12.0mm_D6.5mm_P20.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*6.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 6.5mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Axial_L12.0mm_D6.5mm_P25.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*6.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 6.5mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Axial_L12.0mm_D6.5mm_P30.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*6.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 6.5mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Axial_L12.0mm_D7.5mm_P15.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=12*7.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 15mm length 12mm diameter 7.5mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Axial_L12.0mm_D7.5mm_P20.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*7.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 7.5mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Axial_L12.0mm_D7.5mm_P25.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*7.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 7.5mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Axial_L12.0mm_D7.5mm_P30.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*7.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 7.5mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Axial_L12.0mm_D8.5mm_P15.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=12*8.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 15mm length 12mm diameter 8.5mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Axial_L12.0mm_D8.5mm_P20.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*8.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 8.5mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Axial_L12.0mm_D8.5mm_P25.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*8.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 8.5mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Axial_L12.0mm_D8.5mm_P30.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*8.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 8.5mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Axial_L12.0mm_D9.5mm_P15.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=12*9.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 15mm length 12mm diameter 9.5mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Axial_L12.0mm_D9.5mm_P20.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*9.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 9.5mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Axial_L12.0mm_D9.5mm_P25.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*9.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 9.5mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Axial_L12.0mm_D9.5mm_P30.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*9.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 9.5mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Axial_L12.0mm_D10.5mm_P15.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=15mm, , length*diameter=12*10.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 15mm length 12mm diameter 10.5mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Axial_L12.0mm_D10.5mm_P20.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*10.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 10.5mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Axial_L12.0mm_D10.5mm_P25.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=12*10.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 20mm length 12mm diameter 10.5mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Axial_L17.0mm_D6.5mm_P20.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=17*6.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 20mm length 17mm diameter 6.5mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Axial_L17.0mm_D6.5mm_P25.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=17*6.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 25mm length 17mm diameter 6.5mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Axial_L17.0mm_D6.5mm_P30.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=17*6.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 25mm length 17mm diameter 6.5mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Axial_L17.0mm_D7.0mm_P20.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=20mm, , length*diameter=17*7.0mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 20mm length 17mm diameter 7.0mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Axial_L17.0mm_D7.0mm_P25.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=17*7.0mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 25mm length 17mm diameter 7.0mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Axial_L17.0mm_D7.0mm_P30.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=17*7.0mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 25mm length 17mm diameter 7.0mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Axial_L19.0mm_D7.5mm_P25.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=19*7.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 25mm length 19mm diameter 7.5mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Axial_L19.0mm_D8.0mm_P25.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=19*8.0mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 25mm length 19mm diameter 8.0mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Axial_L19.0mm_D9.0mm_P25.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=19*9mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 25mm length 19mm diameter 9mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Axial_L19.0mm_D9.5mm_P25.00mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=25mm, , length*diameter=19*9.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 25mm length 19mm diameter 9.5mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Axial_L22.0mm_D9.5mm_P27.50mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=27.5mm, , length*diameter=22*9.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 27.5mm length 22mm diameter 9.5mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Axial_L22.0mm_D10.5mm_P27.50mm_Horizontal -C, Axial series, Axial, Horizontal, pin pitch=27.5mm, , length*diameter=22*10.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B300/STYROFLEX.pdf, Alternate KiCad Library -C Axial series Axial Horizontal pin pitch 27.5mm length 22mm diameter 10.5mm -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Disc_D3.0mm_W1.6mm_P2.50mm -C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3.0*1.6mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 2.50mm diameter 3.0mm width 1.6mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Disc_D3.0mm_W2.0mm_P2.50mm -C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3*2mm^2, Capacitor, Alternate KiCad Library -C Disc series Radial pin pitch 2.50mm diameter 3mm width 2mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Disc_D3.4mm_W2.1mm_P2.50mm -C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3.4*2.1mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 2.50mm diameter 3.4mm width 2.1mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Disc_D3.8mm_W2.6mm_P2.50mm -C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=3.8*2.6mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 2.50mm diameter 3.8mm width 2.6mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Disc_D4.3mm_W1.9mm_P5.00mm -C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=4.3*1.9mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 5.00mm diameter 4.3mm width 1.9mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Disc_D4.7mm_W2.5mm_P5.00mm -C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=4.7*2.5mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 5.00mm diameter 4.7mm width 2.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Disc_D5.0mm_W2.5mm_P2.50mm -C, Disc series, Radial, pin pitch=2.50mm, , diameter*width=5*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 2.50mm diameter 5mm width 2.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Disc_D5.0mm_W2.5mm_P5.00mm -C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=5*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 5.00mm diameter 5mm width 2.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Disc_D5.1mm_W3.2mm_P5.00mm -C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=5.1*3.2mm^2, Capacitor, http://www.vishay.com/docs/45233/krseries.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 5.00mm diameter 5.1mm width 3.2mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Disc_D6.0mm_W2.5mm_P5.00mm -C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=6*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 5.00mm diameter 6mm width 2.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Disc_D6.0mm_W4.4mm_P5.00mm -C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=6*4.4mm^2, Capacitor, Alternate KiCad Library -C Disc series Radial pin pitch 5.00mm diameter 6mm width 4.4mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Disc_D7.0mm_W2.5mm_P5.00mm -C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=7*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 5.00mm diameter 7mm width 2.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Disc_D7.5mm_W2.5mm_P5.00mm -C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=7.5*2.5mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 5.00mm diameter 7.5mm width 2.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Disc_D7.5mm_W4.4mm_P5.00mm -C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=7.5*4.4mm^2, Capacitor, Alternate KiCad Library -C Disc series Radial pin pitch 5.00mm diameter 7.5mm width 4.4mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Disc_D7.5mm_W5.0mm_P5.00mm -C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=7.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 5.00mm diameter 7.5mm width 5.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Disc_D7.5mm_W5.0mm_P7.50mm -C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=7.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 7.50mm diameter 7.5mm width 5.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Disc_D7.5mm_W5.0mm_P10.00mm -C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=7.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 10.00mm diameter 7.5mm width 5.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Disc_D8.0mm_W2.5mm_P5.00mm -C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=8*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 5.00mm diameter 8mm width 2.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Disc_D8.0mm_W5.0mm_P5.00mm -C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=8*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 5.00mm diameter 8mm width 5.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Disc_D8.0mm_W5.0mm_P7.50mm -C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=8*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 7.50mm diameter 8mm width 5.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Disc_D8.0mm_W5.0mm_P10.00mm -C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=8*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 10.00mm diameter 8mm width 5.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Disc_D9.0mm_W2.5mm_P5.00mm -C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=9*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 5.00mm diameter 9mm width 2.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Disc_D9.0mm_W5.0mm_P5.00mm -C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=9*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 5.00mm diameter 9mm width 5.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Disc_D9.0mm_W5.0mm_P7.50mm -C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=9*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 7.50mm diameter 9mm width 5.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Disc_D9.0mm_W5.0mm_P10.00mm -C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=9*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 10.00mm diameter 9mm width 5.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Disc_D10.0mm_W2.5mm_P5.00mm -C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=10*2.5mm^2, Capacitor, http://cdn-reichelt.de/documents/datenblatt/B300/DS_KERKO_TC.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 5.00mm diameter 10mm width 2.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Disc_D10.5mm_W5.0mm_P5.00mm -C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=10.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 5.00mm diameter 10.5mm width 5.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Disc_D10.5mm_W5.0mm_P7.50mm -C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=10.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 7.50mm diameter 10.5mm width 5.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Disc_D10.5mm_W5.0mm_P10.00mm -C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=10.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 10.00mm diameter 10.5mm width 5.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Disc_D11.0mm_W5.0mm_P5.00mm -C, Disc series, Radial, pin pitch=5.00mm, , diameter*width=11*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 5.00mm diameter 11mm width 5.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Disc_D11.0mm_W5.0mm_P7.50mm -C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=11*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 7.50mm diameter 11mm width 5.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Disc_D11.0mm_W5.0mm_P10.00mm -C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=11*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 10.00mm diameter 11mm width 5.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Disc_D12.0mm_W4.4mm_P7.75mm -C, Disc series, Radial, pin pitch=7.75mm, , diameter*width=12*4.4mm^2, Capacitor, Alternate KiCad Library -C Disc series Radial pin pitch 7.75mm diameter 12mm width 4.4mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Disc_D12.5mm_W5.0mm_P7.50mm -C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=12.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 7.50mm diameter 12.5mm width 5.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Disc_D12.5mm_W5.0mm_P10.00mm -C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=12.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 10.00mm diameter 12.5mm width 5.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Disc_D14.5mm_W5.0mm_P7.50mm -C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=14.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 7.50mm diameter 14.5mm width 5.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Disc_D14.5mm_W5.0mm_P10.00mm -C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=14.5*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 10.00mm diameter 14.5mm width 5.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Disc_D16.0mm_W5.0mm_P7.50mm -C, Disc series, Radial, pin pitch=7.50mm, , diameter*width=16.0*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 7.50mm diameter 16.0mm width 5.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Disc_D16.0mm_W5.0mm_P10.00mm -C, Disc series, Radial, pin pitch=10.00mm, , diameter*width=16.0*5.0mm^2, Capacitor, http://www.vishay.com/docs/28535/vy2series.pdf, Alternate KiCad Library -C Disc series Radial pin pitch 10.00mm diameter 16.0mm width 5.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Radial_D4.0mm_H5.0mm_P1.50mm -C, Radial series, Radial, pin pitch=1.50mm, diameter=4mm, height=5mm, Non-Polar Electrolytic Capacitor -C Radial series Radial pin pitch 1.50mm diameter 4mm height 5mm Non-Polar Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Radial_D4.0mm_H7.0mm_P1.50mm -C, Radial series, Radial, pin pitch=1.50mm, diameter=4mm, height=7mm, Non-Polar Electrolytic Capacitor -C Radial series Radial pin pitch 1.50mm diameter 4mm height 7mm Non-Polar Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Radial_D5.0mm_H5.0mm_P2.00mm -C, Radial series, Radial, pin pitch=2.00mm, diameter=5mm, height=5mm, Non-Polar Electrolytic Capacitor -C Radial series Radial pin pitch 2.00mm diameter 5mm height 5mm Non-Polar Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Radial_D5.0mm_H7.0mm_P2.00mm -C, Radial series, Radial, pin pitch=2.00mm, diameter=5mm, height=7mm, Non-Polar Electrolytic Capacitor -C Radial series Radial pin pitch 2.00mm diameter 5mm height 7mm Non-Polar Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Radial_D5.0mm_H11.0mm_P2.00mm -C, Radial series, Radial, pin pitch=2.00mm, diameter=5mm, height=11mm, Non-Polar Electrolytic Capacitor -C Radial series Radial pin pitch 2.00mm diameter 5mm height 11mm Non-Polar Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Radial_D6.3mm_H5.0mm_P2.50mm -C, Radial series, Radial, pin pitch=2.50mm, diameter=6.3mm, height=5mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library -C Radial series Radial pin pitch 2.50mm diameter 6.3mm height 5mm Non-Polar Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Radial_D6.3mm_H7.0mm_P2.50mm -C, Radial series, Radial, pin pitch=2.50mm, diameter=6.3mm, height=7mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library -C Radial series Radial pin pitch 2.50mm diameter 6.3mm height 7mm Non-Polar Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Radial_D6.3mm_H11.0mm_P2.50mm -C, Radial series, Radial, pin pitch=2.50mm, diameter=6.3mm, height=11mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library -C Radial series Radial pin pitch 2.50mm diameter 6.3mm height 11mm Non-Polar Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Radial_D8.0mm_H7.0mm_P3.50mm -C, Radial series, Radial, pin pitch=3.50mm, diameter=8mm, height=7mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library -C Radial series Radial pin pitch 3.50mm diameter 8mm height 7mm Non-Polar Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Radial_D8.0mm_H11.5mm_P3.50mm -C, Radial series, Radial, pin pitch=3.50mm, diameter=8mm, height=11.5mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library -C Radial series Radial pin pitch 3.50mm diameter 8mm height 11.5mm Non-Polar Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Radial_D10.0mm_H12.5mm_P5.00mm -C, Radial series, Radial, pin pitch=5.00mm, diameter=10mm, height=12.5mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library -C Radial series Radial pin pitch 5.00mm diameter 10mm height 12.5mm Non-Polar Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Radial_D10.0mm_H16.0mm_P5.00mm -C, Radial series, Radial, pin pitch=5.00mm, diameter=10mm, height=16mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library -C Radial series Radial pin pitch 5.00mm diameter 10mm height 16mm Non-Polar Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Radial_D10.0mm_H20.0mm_P5.00mm -C, Radial series, Radial, pin pitch=5.00mm, diameter=10mm, height=20mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library -C Radial series Radial pin pitch 5.00mm diameter 10mm height 20mm Non-Polar Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Radial_D12.5mm_H20.0mm_P5.00mm -C, Radial series, Radial, pin pitch=5.00mm, diameter=12.5mm, height=20mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library -C Radial series Radial pin pitch 5.00mm diameter 12.5mm height 20mm Non-Polar Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Radial_D12.5mm_H25.0mm_P5.00mm -C, Radial series, Radial, pin pitch=5.00mm, diameter=12.5mm, height=25mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library -C Radial series Radial pin pitch 5.00mm diameter 12.5mm height 25mm Non-Polar Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Radial_D16.0mm_H25.0mm_P7.50mm -C, Radial series, Radial, pin pitch=7.50mm, diameter=16mm, height=25mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library -C Radial series Radial pin pitch 7.50mm diameter 16mm height 25mm Non-Polar Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Radial_D16.0mm_H31.5mm_P7.50mm -C, Radial series, Radial, pin pitch=7.50mm, diameter=16mm, height=31.5mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library -C Radial series Radial pin pitch 7.50mm diameter 16mm height 31.5mm Non-Polar Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Radial_D18.0mm_H35.5mm_P7.50mm -C, Radial series, Radial, pin pitch=7.50mm, diameter=18mm, height=35.5mm, Non-Polar Electrolytic Capacitor, Alternate KiCad Library -C Radial series Radial pin pitch 7.50mm diameter 18mm height 35.5mm Non-Polar Electrolytic Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L4.0mm_W2.5mm_P2.50mm -C, Rect series, Radial, pin pitch=2.50mm, , length*width=4*2.5mm^2, Capacitor, Alternate KiCad Library -C Rect series Radial pin pitch 2.50mm length 4mm width 2.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L4.6mm_W2.0mm_P2.50mm_MKS02_FKP02 -C, Rect series, Radial, pin pitch=2.50mm, , length*width=4.6*2mm^2, Capacitor, http://www.wima.de/DE/WIMA_MKS_02.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 2.50mm length 4.6mm width 2mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L4.6mm_W3.0mm_P2.50mm_MKS02_FKP02 -C, Rect series, Radial, pin pitch=2.50mm, , length*width=4.6*3.0mm^2, Capacitor, http://www.wima.de/DE/WIMA_MKS_02.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 2.50mm length 4.6mm width 3.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L4.6mm_W3.8mm_P2.50mm_MKS02_FKP02 -C, Rect series, Radial, pin pitch=2.50mm, , length*width=4.6*3.8mm^2, Capacitor, http://www.wima.de/DE/WIMA_MKS_02.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 2.50mm length 4.6mm width 3.8mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L4.6mm_W4.6mm_P2.50mm_MKS02_FKP02 -C, Rect series, Radial, pin pitch=2.50mm, , length*width=4.6*4.6mm^2, Capacitor, http://www.wima.de/DE/WIMA_MKS_02.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 2.50mm length 4.6mm width 4.6mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L4.6mm_W5.5mm_P2.50mm_MKS02_FKP02 -C, Rect series, Radial, pin pitch=2.50mm, , length*width=4.6*5.5mm^2, Capacitor, http://www.wima.de/DE/WIMA_MKS_02.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 2.50mm length 4.6mm width 5.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L7.0mm_W2.0mm_P5.00mm -C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*2mm^2, Capacitor, Alternate KiCad Library -C Rect series Radial pin pitch 5.00mm length 7mm width 2mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L7.0mm_W2.5mm_P5.00mm -C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*2.5mm^2, Capacitor, Alternate KiCad Library -C Rect series Radial pin pitch 5.00mm length 7mm width 2.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L7.0mm_W3.5mm_P2.50mm_P5.00mm -C, Rect series, Radial, pin pitch=2.50mm 5.00mm, , length*width=7*3.5mm^2, Capacitor, Alternate KiCad Library -C Rect series Radial pin pitch 2.50mm 5.00mm length 7mm width 3.5mm Capacitor -0 -4 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L7.0mm_W3.5mm_P5.00mm -C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*3.5mm^2, Capacitor, Alternate KiCad Library -C Rect series Radial pin pitch 5.00mm length 7mm width 3.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L7.0mm_W4.5mm_P5.00mm -C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*4.5mm^2, Capacitor, Alternate KiCad Library -C Rect series Radial pin pitch 5.00mm length 7mm width 4.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L7.0mm_W6.0mm_P5.00mm -C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*6mm^2, Capacitor, Alternate KiCad Library -C Rect series Radial pin pitch 5.00mm length 7mm width 6mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L7.0mm_W6.5mm_P5.00mm -C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*6.5mm^2, Capacitor, Alternate KiCad Library -C Rect series Radial pin pitch 5.00mm length 7mm width 6.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L7.2mm_W2.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2 -C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*2.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 5.00mm length 7.2mm width 2.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L7.2mm_W3.0mm_P5.00mm_FKS2_FKP2_MKS2_MKP2 -C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*3.0mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 5.00mm length 7.2mm width 3.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L7.2mm_W3.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2 -C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*3.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 5.00mm length 7.2mm width 3.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L7.2mm_W4.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2 -C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*4.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 5.00mm length 7.2mm width 4.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L7.2mm_W5.5mm_P5.00mm_FKS2_FKP2_MKS2_MKP2 -C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*5.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 5.00mm length 7.2mm width 5.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L7.2mm_W7.2mm_P5.00mm_FKS2_FKP2_MKS2_MKP2 -C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*7.2mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 5.00mm length 7.2mm width 7.2mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L7.2mm_W8.5mm_P5.00mm_FKP2_FKP2_MKS2_MKP2 -C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*8.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 5.00mm length 7.2mm width 8.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L7.2mm_W11.0mm_P5.00mm_FKS2_FKP2_MKS2_MKP2 -C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.2*11mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_2.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 5.00mm length 7.2mm width 11mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L7.5mm_W6.5mm_P5.00mm -C, Rect series, Radial, pin pitch=5.00mm, , length*width=7.5*6.5mm^2, Capacitor, Alternate KiCad Library -C Rect series Radial pin pitch 5.00mm length 7.5mm width 6.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L9.0mm_W2.5mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*2.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 9mm width 2.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L9.0mm_W2.6mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*2.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 9mm width 2.6mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L9.0mm_W2.7mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*2.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 9mm width 2.7mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L9.0mm_W3.2mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*3.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 9mm width 3.2mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L9.0mm_W3.3mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*3.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 9mm width 3.3mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L9.0mm_W3.4mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*3.4mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 9mm width 3.4mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L9.0mm_W3.6mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*3.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 9mm width 3.6mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L9.0mm_W3.8mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*3.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 9mm width 3.8mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L9.0mm_W3.9mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*3.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 9mm width 3.9mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L9.0mm_W4.0mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*4.0mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 9mm width 4.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L9.0mm_W4.2mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*4.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 9mm width 4.2mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L9.0mm_W4.9mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*4.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 9mm width 4.9mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L9.0mm_W5.1mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*5.1mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 9mm width 5.1mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L9.0mm_W5.7mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*5.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 9mm width 5.7mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L9.0mm_W6.4mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*6.4mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 9mm width 6.4mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L9.0mm_W6.7mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*6.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 9mm width 6.7mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L9.0mm_W7.7mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*7.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 9mm width 7.7mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L9.0mm_W8.5mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*8.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 9mm width 8.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L9.0mm_W9.5mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*9.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 9mm width 9.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L9.0mm_W9.8mm_P7.50mm_MKT -C, Rect series, Radial, pin pitch=7.50mm, , length*width=9*9.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 9mm width 9.8mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L10.0mm_W2.5mm_P7.50mm_MKS4 -C, Rect series, Radial, pin pitch=7.50mm, , length*width=10*2.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 10mm width 2.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L10.0mm_W3.0mm_P7.50mm_FKS3_FKP3 -C, Rect series, Radial, pin pitch=7.50mm, , length*width=10*3mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 10mm width 3mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L10.0mm_W3.0mm_P7.50mm_MKS4 -C, Rect series, Radial, pin pitch=7.50mm, , length*width=10*3.0mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 10mm width 3.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L10.0mm_W4.0mm_P7.50mm_FKS3_FKP3 -C, Rect series, Radial, pin pitch=7.50mm, , length*width=10*4mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 10mm width 4mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L10.0mm_W4.0mm_P7.50mm_MKS4 -C, Rect series, Radial, pin pitch=7.50mm, , length*width=10*4.0mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 10mm width 4.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L10.0mm_W5.0mm_P5.00mm_P7.50mm -C, Rect series, Radial, pin pitch=5.00mm 7.50mm, , length*width=10*5mm^2, Capacitor, Alternate KiCad Library -C Rect series Radial pin pitch 5.00mm 7.50mm length 10mm width 5mm Capacitor -0 -4 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L10.3mm_W4.5mm_P7.50mm_MKS4 -C, Rect series, Radial, pin pitch=7.50mm, , length*width=10.3*4.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 10.3mm width 4.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L10.3mm_W5.0mm_P7.50mm_MKS4 -C, Rect series, Radial, pin pitch=7.50mm, , length*width=10.3*5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 10.3mm width 5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L10.3mm_W5.7mm_P7.50mm_MKS4 -C, Rect series, Radial, pin pitch=7.50mm, , length*width=10.3*5.7mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 10.3mm width 5.7mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L10.3mm_W7.2mm_P7.50mm_MKS4 -C, Rect series, Radial, pin pitch=7.50mm, , length*width=10.3*7.2mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm length 10.3mm width 7.2mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L11.0mm_W2.8mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*2.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.0mm width 2.8mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L11.0mm_W3.4mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*3.4mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.0mm width 3.4mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L11.0mm_W3.5mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*3.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.0mm width 3.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L11.0mm_W4.2mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*4.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.0mm width 4.2mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L11.0mm_W4.3mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*4.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.0mm width 4.3mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L11.0mm_W5.1mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*5.1mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.0mm width 5.1mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L11.0mm_W5.3mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*5.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.0mm width 5.3mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L11.0mm_W6.3mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*6.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.0mm width 6.3mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L11.0mm_W6.4mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*6.4mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.0mm width 6.4mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L11.0mm_W7.3mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*7.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.0mm width 7.3mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L11.0mm_W8.8mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.0*8.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.0mm width 8.8mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L11.5mm_W2.0mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 2mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L11.5mm_W2.6mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*2.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 2.6mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L11.5mm_W2.8mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*2.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 2.8mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L11.5mm_W3.2mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*3.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 3.2mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L11.5mm_W3.5mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*3.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 3.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L11.5mm_W3.6mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*3.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 3.6mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L11.5mm_W4.0mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*4.0mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 4.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L11.5mm_W4.3mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*4.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 4.3mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L11.5mm_W4.5mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*4.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 4.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L11.5mm_W5.0mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L11.5mm_W5.1mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*5.1mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 5.1mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L11.5mm_W5.2mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*5.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 5.2mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L11.5mm_W5.6mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*5.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 5.6mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L11.5mm_W6.4mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*6.4mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 6.4mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L11.5mm_W6.6mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*6.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 6.6mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L11.5mm_W6.9mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*6.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 6.9mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L11.5mm_W7.3mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*7.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 7.3mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L11.5mm_W7.5mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*7.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 7.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L11.5mm_W7.8mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*7.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 7.8mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L11.5mm_W8.0mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*8.0mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 8.0mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L11.5mm_W8.8mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*8.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 8.8mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L11.5mm_W9.5mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*9.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 9.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L11.5mm_W9.8mm_P10.00mm_MKT -C, Rect series, Radial, pin pitch=10.00mm, , length*width=11.5*9.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 11.5mm width 9.8mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L13.0mm_W3.0mm_P10.00mm_FKS3_FKP3_MKS4 -C, Rect series, Radial, pin pitch=10.00mm, , length*width=13*3mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 13mm width 3mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L13.0mm_W4.0mm_P10.00mm_FKS3_FKP3_MKS4 -C, Rect series, Radial, pin pitch=10.00mm, , length*width=13*4mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 13mm width 4mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L13.0mm_W5.0mm_P10.00mm_FKS3_FKP3_MKS4 -C, Rect series, Radial, pin pitch=10.00mm, , length*width=13*5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 13mm width 5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L13.0mm_W6.0mm_P10.00mm_FKS3_FKP3_MKS4 -C, Rect series, Radial, pin pitch=10.00mm, , length*width=13*6mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 13mm width 6mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L13.0mm_W6.5mm_P7.50mm_P10.00mm -C, Rect series, Radial, pin pitch=7.50mm 10.00mm, , length*width=13*6.5mm^2, Capacitor, Alternate KiCad Library -C Rect series Radial pin pitch 7.50mm 10.00mm length 13mm width 6.5mm Capacitor -0 -4 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L13.0mm_W8.0mm_P10.00mm_FKS3_FKP3_MKS4 -C, Rect series, Radial, pin pitch=10.00mm, , length*width=13*8mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 13mm width 8mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L13.5mm_W4.0mm_P10.00mm_FKS3_FKP3_MKS4 -C, Rect series, Radial, pin pitch=10.00mm, , length*width=13.5*4mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 13.5mm width 4mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L13.5mm_W5.0mm_P10.00mm_FKS3_FKP3_MKS4 -C, Rect series, Radial, pin pitch=10.00mm, , length*width=13.5*5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 10.00mm length 13.5mm width 5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L15mm_W15mm_P10x10mm -C Rectangular, 15x15mm size, 10x10mm Pin Pitch, Measurements based on a physical example, no datasheet available, Alternate KiCad Library -C rect 15x15 10x10 -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L16.5mm_W4.7mm_P15.00mm_MKT -C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*4.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 16.5mm width 4.7mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L16.5mm_W4.9mm_P15.00mm_MKT -C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*4.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 16.5mm width 4.9mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L16.5mm_W5.0mm_P15.00mm_MKT -C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 16.5mm width 5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L16.5mm_W6.0mm_P15.00mm_MKT -C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 16.5mm width 6mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L16.5mm_W7.0mm_P15.00mm_MKT -C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 16.5mm width 7mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L16.5mm_W7.3mm_P15.00mm_MKT -C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*7.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 16.5mm width 7.3mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L16.5mm_W8.7mm_P15.00mm_MKT -C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*8.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 16.5mm width 8.7mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L16.5mm_W8.9mm_P15.00mm_MKT -C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*8.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 16.5mm width 8.9mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L16.5mm_W9.0mm_P15.00mm_MKT -C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 16.5mm width 9mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L16.5mm_W9.2mm_P15.00mm_MKT -C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*9.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 16.5mm width 9.2mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L16.5mm_W10.7mm_P15.00mm_MKT -C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*10.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 16.5mm width 10.7mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L16.5mm_W10.9mm_P15.00mm_MKT -C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*10.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 16.5mm width 10.9mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L16.5mm_W11.2mm_P15.00mm_MKT -C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*11.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 16.5mm width 11.2mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L16.5mm_W11.8mm_P15.00mm_MKT -C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*11.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 16.5mm width 11.8mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L16.5mm_W13.5mm_P15.00mm_MKT -C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*13.5mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 16.5mm width 13.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L16.5mm_W13.7mm_P15.00mm_MKT -C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*13.7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 16.5mm width 13.7mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L16.5mm_W13.9mm_P15.00mm_MKT -C, Rect series, Radial, pin pitch=15.00mm, , length*width=16.5*13.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 16.5mm width 13.9mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L17mm_W8.5mm_P12.50mm -C, Rect series, Radial, pin pitch=12.50mm, , length*width=17*8.5mm^2, Measurements based on a physical example, no datasheet available, Alternate KiCad Library -C Rect series Radial pin pitch 12.50mm length 17mm width 8.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L18.0mm_W5.0mm_P15.00mm_FKS3_FKP3 -C, Rect series, Radial, pin pitch=15.00mm, , length*width=18*5mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 18mm width 5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L18.0mm_W6.0mm_P15.00mm_FKS3_FKP3 -C, Rect series, Radial, pin pitch=15.00mm, , length*width=18*6mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 18mm width 6mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L18.0mm_W7.0mm_P15.00mm_FKS3_FKP3 -C, Rect series, Radial, pin pitch=15.00mm, , length*width=18*7mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 18mm width 7mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L18.0mm_W8.0mm_P15.00mm_FKS3_FKP3 -C, Rect series, Radial, pin pitch=15.00mm, , length*width=18*8mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 18mm width 8mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L18.0mm_W9.0mm_P15.00mm_FKS3_FKP3 -C, Rect series, Radial, pin pitch=15.00mm, , length*width=18*9mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 18mm width 9mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L18.0mm_W11.0mm_P15.00mm_FKS3_FKP3 -C, Rect series, Radial, pin pitch=15.00mm, , length*width=18*11mm^2, Capacitor, http://www.wima.com/EN/WIMA_FKS_3.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 18mm width 11mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L19.0mm_W5.0mm_P15.00mm_MKS4 -C, Rect series, Radial, pin pitch=15.00mm, , length*width=19*5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 19mm width 5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L19.0mm_W6.0mm_P15.00mm_MKS4 -C, Rect series, Radial, pin pitch=15.00mm, , length*width=19*6mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 19mm width 6mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L19.0mm_W7.0mm_P15.00mm_MKS4 -C, Rect series, Radial, pin pitch=15.00mm, , length*width=19*7mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 19mm width 7mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L19.0mm_W8.0mm_P15.00mm_MKS4 -C, Rect series, Radial, pin pitch=15.00mm, , length*width=19*8mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 19mm width 8mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L19.0mm_W9.0mm_P15.00mm_MKS4 -C, Rect series, Radial, pin pitch=15.00mm, , length*width=19*9mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 19mm width 9mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L19.0mm_W11.0mm_P15.00mm_MKS4 -C, Rect series, Radial, pin pitch=15.00mm, , length*width=19*11mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 15.00mm length 19mm width 11mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L24.0mm_W7.0mm_P22.50mm_MKT -C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*7mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 22.50mm length 24mm width 7mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L24.0mm_W8.3mm_P22.50mm_MKT -C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*8.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 22.50mm length 24mm width 8.3mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L24.0mm_W8.6mm_P22.50mm_MKT -C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*8.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 22.50mm length 24mm width 8.6mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L24.0mm_W10.1mm_P22.50mm_MKT -C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*10.1mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 22.50mm length 24mm width 10.1mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L24.0mm_W10.3mm_P22.50mm_MKT -C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*10.3mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 22.50mm length 24mm width 10.3mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L24.0mm_W10.9mm_P22.50mm_MKT -C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*10.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 22.50mm length 24mm width 10.9mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L24.0mm_W12.2mm_P22.50mm_MKT -C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*12.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 22.50mm length 24mm width 12.2mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L24.0mm_W12.6mm_P22.50mm_MKT -C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*12.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 22.50mm length 24mm width 12.6mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L24.0mm_W12.8mm_P22.50mm_MKT -C, Rect series, Radial, pin pitch=22.50mm, , length*width=24*12.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 22.50mm length 24mm width 12.8mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L26.5mm_W5.0mm_P22.50mm_MKS4 -C, Rect series, Radial, pin pitch=22.50mm, , length*width=26.5*5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 22.50mm length 26.5mm width 5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L26.5mm_W6.0mm_P22.50mm_MKS4 -C, Rect series, Radial, pin pitch=22.50mm, , length*width=26.5*6mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 22.50mm length 26.5mm width 6mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L26.5mm_W7.0mm_P22.50mm_MKS4 -C, Rect series, Radial, pin pitch=22.50mm, , length*width=26.5*7mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 22.50mm length 26.5mm width 7mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L26.5mm_W8.5mm_P22.50mm_MKS4 -C, Rect series, Radial, pin pitch=22.50mm, , length*width=26.5*8.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 22.50mm length 26.5mm width 8.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L26.5mm_W10.5mm_P22.50mm_MKS4 -C, Rect series, Radial, pin pitch=22.50mm, , length*width=26.5*10.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 22.50mm length 26.5mm width 10.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L26.5mm_W11.5mm_P22.50mm_MKS4 -C, Rect series, Radial, pin pitch=22.50mm, , length*width=26.5*11.5mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 22.50mm length 26.5mm width 11.5mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L27.0mm_W9.0mm_P22.00mm -C, Rect series, Radial, pin pitch=22.00mm, , length*width=27*9mm^2, Capacitor, Alternate KiCad Library -C Rect series Radial pin pitch 22.00mm length 27mm width 9mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L27.0mm_W9.0mm_P23.00mm -C, Rect series, Radial, pin pitch=23.00mm, , length*width=27*9mm^2, Capacitor, Alternate KiCad Library -C Rect series Radial pin pitch 23.00mm length 27mm width 9mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L27.0mm_W11.0mm_P22.00mm -C, Rect series, Radial, pin pitch=22.00mm, , length*width=27*11mm^2, Capacitor, Alternate KiCad Library -C Rect series Radial pin pitch 22.00mm length 27mm width 11mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L28.0mm_W8.0mm_P22.50mm_MKS4 -C, Rect series, Radial, pin pitch=22.50mm, , length*width=28*8mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 22.50mm length 28mm width 8mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L28.0mm_W10.0mm_P22.50mm_MKS4 -C, Rect series, Radial, pin pitch=22.50mm, , length*width=28*10mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 22.50mm length 28mm width 10mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L28.0mm_W12.0mm_P22.50mm_MKS4 -C, Rect series, Radial, pin pitch=22.50mm, , length*width=28*12mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 22.50mm length 28mm width 12mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L29.0mm_W7.6mm_P27.50mm_MKT -C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*7.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 27.50mm length 29mm width 7.6mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L29.0mm_W7.8mm_P27.50mm_MKT -C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*7.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 27.50mm length 29mm width 7.8mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L29.0mm_W7.9mm_P27.50mm_MKT -C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*7.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 27.50mm length 29mm width 7.9mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L29.0mm_W9.1mm_P27.50mm_MKT -C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*9.1mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 27.50mm length 29mm width 9.1mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L29.0mm_W9.6mm_P27.50mm_MKT -C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*9.6mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 27.50mm length 29mm width 9.6mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L29.0mm_W11.0mm_P27.50mm_MKT -C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*11mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 27.50mm length 29mm width 11mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L29.0mm_W11.9mm_P27.50mm_MKT -C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*11.9mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 27.50mm length 29mm width 11.9mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L29.0mm_W12.2mm_P27.50mm_MKT -C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*12.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 27.50mm length 29mm width 12.2mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L29.0mm_W13.0mm_P27.50mm_MKT -C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*13mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 27.50mm length 29mm width 13mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L29.0mm_W13.8mm_P27.50mm_MKT -C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*13.8mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 27.50mm length 29mm width 13.8mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L29.0mm_W14.2mm_P27.50mm_MKT -C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*14.2mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 27.50mm length 29mm width 14.2mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L29.0mm_W16.0mm_P27.50mm_MKT -C, Rect series, Radial, pin pitch=27.50mm, , length*width=29*16mm^2, Capacitor, https://en.tdk.eu/inf/20/20/db/fc_2009/MKT_B32560_564.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 27.50mm length 29mm width 16mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L31.5mm_W9.0mm_P27.50mm_MKS4 -C, Rect series, Radial, pin pitch=27.50mm, , length*width=31.5*9mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 27.50mm length 31.5mm width 9mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L31.5mm_W11.0mm_P27.50mm_MKS4 -C, Rect series, Radial, pin pitch=27.50mm, , length*width=31.5*11mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 27.50mm length 31.5mm width 11mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L31.5mm_W13.0mm_P27.50mm_MKS4 -C, Rect series, Radial, pin pitch=27.50mm, , length*width=31.5*13mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 27.50mm length 31.5mm width 13mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L31.5mm_W15.0mm_P27.50mm_MKS4 -C, Rect series, Radial, pin pitch=27.50mm, , length*width=31.5*15mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 27.50mm length 31.5mm width 15mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L31.5mm_W17.0mm_P27.50mm_MKS4 -C, Rect series, Radial, pin pitch=27.50mm, , length*width=31.5*17mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 27.50mm length 31.5mm width 17mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L31.5mm_W20.0mm_P27.50mm_MKS4 -C, Rect series, Radial, pin pitch=27.50mm, , length*width=31.5*20mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 27.50mm length 31.5mm width 20mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L32.0mm_W15.0mm_P27.00mm -C, Rect series, Radial, pin pitch=27.00mm, , length*width=32*15mm^2, Capacitor, Alternate KiCad Library -C Rect series Radial pin pitch 27.00mm length 32mm width 15mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L33.0mm_W13.0mm_P27.50mm_MKS4 -C, Rect series, Radial, pin pitch=27.50mm, , length*width=33*13mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 27.50mm length 33mm width 13mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L33.0mm_W15.0mm_P27.50mm_MKS4 -C, Rect series, Radial, pin pitch=27.50mm, , length*width=33*15mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 27.50mm length 33mm width 15mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L33.0mm_W20.0mm_P27.50mm_MKS4 -C, Rect series, Radial, pin pitch=27.50mm, , length*width=33*20mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 27.50mm length 33mm width 20mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L36.5mm_W15mm_P32.50mm -C, Rect series, Radial, pin pitch=32.50mm, , length*width=36.5*15mm^2, Measurements based on physical example, no datasheet available, Alternate KiCad Library -C Rect series Radial pin pitch 32.50mm length 36.5mm width 15mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L41.5mm_W9.0mm_P37.50mm_MKS4 -C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*9mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 37.50mm length 41.5mm width 9mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L41.5mm_W11.0mm_P37.50mm_MKS4 -C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*11mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 37.50mm length 41.5mm width 11mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L41.5mm_W13.0mm_P37.50mm_MKS4 -C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*13mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 37.50mm length 41.5mm width 13mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L41.5mm_W15.0mm_P37.50mm_MKS4 -C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*15mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 37.50mm length 41.5mm width 15mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L41.5mm_W17.0mm_P37.50mm_MKS4 -C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*17mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 37.50mm length 41.5mm width 17mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L41.5mm_W19.0mm_P37.50mm_MKS4 -C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*19mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 37.50mm length 41.5mm width 19mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L41.5mm_W20.0mm_P37.50mm_MKS4 -C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*20mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 37.50mm length 41.5mm width 20mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L41.5mm_W24.0mm_P37.50mm_MKS4 -C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*24mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 37.50mm length 41.5mm width 24mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L41.5mm_W31.0mm_P37.50mm_MKS4 -C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*31mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 37.50mm length 41.5mm width 31mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L41.5mm_W35.0mm_P37.50mm_MKS4 -C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*35mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 37.50mm length 41.5mm width 35mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Rect_L41.5mm_W40.0mm_P37.50mm_MKS4 -C, Rect series, Radial, pin pitch=37.50mm, , length*width=41.5*40mm^2, Capacitor, http://www.wima.com/EN/WIMA_MKS_4.pdf, Alternate KiCad Library -C Rect series Radial pin pitch 37.50mm length 41.5mm width 40mm Capacitor -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Trimmer_BFC2-808_L7.3mm_W5.5mm_P5.6mm -C, Trimmer BFC2-808 series Pitch = 5.6mm, Width = 5.5mm, Length = 7.3mm https://www.vishay.com/docs/28526/bfc2808-5mm.pdf, Alternate KiCad Library -C trimmer BFC2 808 pitch 5.6mm width 5.5mm length 7.3mm nohole -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Trimmer_BFC2-808_L7.3mm_W5.5mm_P5.6mm_Hole -C, Trimmer BFC2-808 series Pitch = 5.6mm, Width = 5.5mm, Length = 7.3mm https://www.vishay.com/docs/28526/bfc2808-5mm.pdf, Alternate KiCad Library -C trimmer BFC2 808 pitch 5.6mm width 5.5mm length 7.3mm nohole -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Trimmer_BFC2-808_L7.3mm_W5.5mm_P5.08mm -C, Trimmer BFC2-808 series Pitch = 5.08mm, Width = 5.5mm, Length = 7.3mm https://www.vishay.com/docs/28526/bfc2808-5mm.pdf, Alternate KiCad Library -C trimmer BFC2 808 pitch 5.08mm width 5.5mm length 7.3mm nohole -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Trimmer_BFC2-808_L10.8mm_W10.6mm_P5mm -C, Trimmer BFC2-808 series Pitch = 5mm, Width = 10.6mm, Length = 10.8mm https://www.vishay.com/docs/28528/bfc2808-10mm.pdf, Alternate KiCad Library -C trimmer BFC2 808 pitch 5mm width 10.6mm length 10.8mm nohole -0 -3 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Trimmer_BFC2-808_L10.8mm_W10.6mm_P5mm_Hole -C, Trimmer BFC2-808 series, Bottom adjustment hole, Pitch = 5mm, Width = 10.6mm, Length = 10.8mm https://www.vishay.com/docs/28528/bfc2808-10mm.pdf, Alternate KiCad Library -C trimmer BFC2 808 pitch 5mm width 10.6mm length 10.8mm hole -0 -3 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Trimmer_BFC2-808_L10.8mm_W10.6mm_P10mm -C, Trimmer BFC2-808 series Pitch = 10mm, Width = 10.6mm, Length = 10.8mm https://www.vishay.com/docs/28528/bfc2808-10mm.pdf, Alternate KiCad Library -C trimmer BFC2 808 pitch 10mm width 10.6mm length 10.8mm nohole -0 -3 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Trimmer_BFC2-808_L10.8mm_W10.6mm_P10mm_Hole -C, Trimmer BFC2-808 series, Bottom adjustment hole, Pitch = 10mm, Width = 10.6mm, Length = 10.8mm https://www.vishay.com/docs/28528/bfc2808-10mm.pdf, Alternate KiCad Library -C trimmer BFC2 808 pitch 10mm width 10.6mm length 10.8mm hole -0 -3 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Trimmer_GKG15_L6.0mm_W6.0mm_P5.0mm -C, Trimmer GKG15 series Pitch = 5.0mm, Width = 6.0mm, Length = 6.0mm https://www.digikey.com/htmldatasheets/production/174846/0/0/1/gkp-gky-gkg-series.html, Alternate KiCad Library -C trimmer GKG15 pitch 5mm width 6mm length 6mm nohole -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Trimmer_GKG16_L6.0mm_W6.0mm_P6.3mm_Hole -C, Trimmer GKG16 series Pitch = 6.3mm, Width = 6.0mm, Length = 6.0mm https://www.digikey.com/htmldatasheets/production/174846/0/0/1/gkp-gky-gkg-series.html, Alternate KiCad Library -C trimmer GKG16 pitch 6.3mm width 6mm length 6mm hole -0 -2 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Trimmer_GKT_L7.0mm_W7.0mm_P7.0mm -C, Trimmer GKU series Pitch = 5.8mm, Width = 5.0mm, Length = 5.6mm https://www.digikey.com/htmldatasheets/production/174846/0/0/1/gkp-gky-gkg-series.html, Alternate KiCad Library -C trimmer GKU pitch 5mm width 5mm length 5.6mm -0 -3 -2 -PCM_Capacitor_THT_US_AKL_Double -C_Trimmer_GKU_L5.6mm_W5.0mm_P5.8mm -C, Trimmer GKU series Pitch = 5.8mm, Width = 5.0mm, Length = 5.6mm https://www.digikey.com/htmldatasheets/production/174846/0/0/1/gkp-gky-gkg-series.html, Alternate KiCad Library -C trimmer GKU pitch 5mm width 5mm length 5.6mm -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_AKL -CP_EIA-1608-08_AVX-J -Tantalum Capacitor SMD AVX-J (1608-08 Metric), IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/48064/_t58_vmn_pt0471_1601.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_AKL -CP_EIA-1608-08_AVX-J_Pad1.25x1.05mm -Tantalum Capacitor SMD AVX-J (1608-08 Metric), IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/48064/_t58_vmn_pt0471_1601.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_AKL -CP_EIA-1608-08_AVX-J_Pad1.25x1.05mm_HandSolder -Tantalum Capacitor SMD AVX-J (1608-08 Metric), IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/48064/_t58_vmn_pt0471_1601.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_AKL -CP_EIA-1608-10_AVX-L -Tantalum Capacitor SMD AVX-L (1608-10 Metric), IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/48064/_t58_vmn_pt0471_1601.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_AKL -CP_EIA-1608-10_AVX-L_Pad1.25x1.05mm -Tantalum Capacitor SMD AVX-L (1608-10 Metric), IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/48064/_t58_vmn_pt0471_1601.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_AKL -CP_EIA-1608-10_AVX-L_Pad1.25x1.05mm_HandSolder -Tantalum Capacitor SMD AVX-L (1608-10 Metric), IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/48064/_t58_vmn_pt0471_1601.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_AKL -CP_EIA-2012-12_Kemet-R -Tantalum Capacitor SMD Kemet-R (2012-12 Metric), IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/40182/tmch.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_AKL -CP_EIA-2012-12_Kemet-R_Pad1.30x1.05mm -Tantalum Capacitor SMD Kemet-R (2012-12 Metric), IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/40182/tmch.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_AKL -CP_EIA-2012-12_Kemet-R_Pad1.30x1.05mm_HandSolder -Tantalum Capacitor SMD Kemet-R (2012-12 Metric), IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/40182/tmch.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_AKL -CP_EIA-2012-15_AVX-P -Tantalum Capacitor SMD AVX-P (2012-15 Metric), IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/40182/tmch.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_AKL -CP_EIA-2012-15_AVX-P_Pad1.30x1.05mm -Tantalum Capacitor SMD AVX-P (2012-15 Metric), IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/40182/tmch.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_AKL -CP_EIA-2012-15_AVX-P_Pad1.30x1.05mm_HandSolder -Tantalum Capacitor SMD AVX-P (2012-15 Metric), IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/40182/tmch.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_AKL -CP_EIA-3216-10_Kemet-I -Tantalum Capacitor SMD Kemet-I (3216-10 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_AKL -CP_EIA-3216-10_Kemet-I_Pad1.58x1.35mm -Tantalum Capacitor SMD Kemet-I (3216-10 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_AKL -CP_EIA-3216-10_Kemet-I_Pad1.58x1.35mm_HandSolder -Tantalum Capacitor SMD Kemet-I (3216-10 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_AKL -CP_EIA-3216-12_Kemet-S -Tantalum Capacitor SMD Kemet-S (3216-12 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_AKL -CP_EIA-3216-12_Kemet-S_Pad1.58x1.35mm -Tantalum Capacitor SMD Kemet-S (3216-12 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_AKL -CP_EIA-3216-12_Kemet-S_Pad1.58x1.35mm_HandSolder -Tantalum Capacitor SMD Kemet-S (3216-12 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_AKL -CP_EIA-3216-18_Kemet-A -Tantalum Capacitor SMD Kemet-A (3216-18 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_AKL -CP_EIA-3216-18_Kemet-A_Pad1.58x1.35mm -Tantalum Capacitor SMD Kemet-A (3216-18 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_AKL -CP_EIA-3216-18_Kemet-A_Pad1.58x1.35mm_HandSolder -Tantalum Capacitor SMD Kemet-A (3216-18 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_AKL -CP_EIA-3528-12_Kemet-T -Tantalum Capacitor SMD Kemet-T (3528-12 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_AKL -CP_EIA-3528-12_Kemet-T_Pad1.50x2.35mm -Tantalum Capacitor SMD Kemet-T (3528-12 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_AKL -CP_EIA-3528-12_Kemet-T_Pad1.50x2.35mm_HandSolder -Tantalum Capacitor SMD Kemet-T (3528-12 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_AKL -CP_EIA-3528-15_AVX-H -Tantalum Capacitor SMD AVX-H (3528-15 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_AKL -CP_EIA-3528-15_AVX-H_Pad1.50x2.35mm -Tantalum Capacitor SMD AVX-H (3528-15 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_AKL -CP_EIA-3528-15_AVX-H_Pad1.50x2.35mm_HandSolder -Tantalum Capacitor SMD AVX-H (3528-15 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_AKL -CP_EIA-3528-21_Kemet-B -Tantalum Capacitor SMD Kemet-B (3528-21 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_AKL -CP_EIA-3528-21_Kemet-B_Pad1.50x2.35mm -Tantalum Capacitor SMD Kemet-B (3528-21 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_AKL -CP_EIA-3528-21_Kemet-B_Pad1.50x2.35mm_HandSolder -Tantalum Capacitor SMD Kemet-B (3528-21 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_AKL -CP_EIA-6032-15_Kemet-U -Tantalum Capacitor SMD Kemet-U (6032-15 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_AKL -CP_EIA-6032-15_Kemet-U_Pad2.25x2.35mm -Tantalum Capacitor SMD Kemet-U (6032-15 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_AKL -CP_EIA-6032-15_Kemet-U_Pad2.25x2.35mm_HandSolder -Tantalum Capacitor SMD Kemet-U (6032-15 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_AKL -CP_EIA-6032-20_AVX-F -Tantalum Capacitor SMD AVX-F (6032-20 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_AKL -CP_EIA-6032-20_AVX-F_Pad2.25x2.35mm -Tantalum Capacitor SMD AVX-F (6032-20 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_AKL -CP_EIA-6032-20_AVX-F_Pad2.25x2.35mm_HandSolder -Tantalum Capacitor SMD AVX-F (6032-20 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_AKL -CP_EIA-6032-28_Kemet-C -Tantalum Capacitor SMD Kemet-C (6032-28 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_AKL -CP_EIA-6032-28_Kemet-C_Pad2.25x2.35mm -Tantalum Capacitor SMD Kemet-C (6032-28 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_AKL -CP_EIA-6032-28_Kemet-C_Pad2.25x2.35mm_HandSolder -Tantalum Capacitor SMD Kemet-C (6032-28 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_AKL -CP_EIA-7132-20_AVX-U -Tantalum Capacitor SMD AVX-U (7132-20 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_AKL -CP_EIA-7132-20_AVX-U_Pad2.72x3.50mm -Tantalum Capacitor SMD AVX-U (7132-20 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_AKL -CP_EIA-7132-20_AVX-U_Pad2.72x3.50mm_HandSolder -Tantalum Capacitor SMD AVX-U (7132-20 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_AKL -CP_EIA-7132-28_AVX-C -Tantalum Capacitor SMD AVX-C (7132-28 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_AKL -CP_EIA-7132-28_AVX-C_Pad2.72x3.50mm -Tantalum Capacitor SMD AVX-C (7132-28 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_AKL -CP_EIA-7132-28_AVX-C_Pad2.72x3.50mm_HandSolder -Tantalum Capacitor SMD AVX-C (7132-28 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_AKL -CP_EIA-7260-15_AVX-R -Tantalum Capacitor SMD AVX-R (7260-15 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_AKL -CP_EIA-7260-15_AVX-R_Pad2.68x6.30mm -Tantalum Capacitor SMD AVX-R (7260-15 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_AKL -CP_EIA-7260-15_AVX-R_Pad2.68x6.30mm_HandSolder -Tantalum Capacitor SMD AVX-R (7260-15 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_AKL -CP_EIA-7260-20_AVX-M -Tantalum Capacitor SMD AVX-M (7260-20 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_AKL -CP_EIA-7260-20_AVX-M_Pad2.68x6.30mm -Tantalum Capacitor SMD AVX-M (7260-20 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_AKL -CP_EIA-7260-20_AVX-M_Pad2.68x6.30mm_HandSolder -Tantalum Capacitor SMD AVX-M (7260-20 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_AKL -CP_EIA-7260-28_AVX-M -Tantalum Capacitor SMD AVX-M (7260-28 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_AKL -CP_EIA-7260-28_AVX-M_Pad2.68x6.30mm -Tantalum Capacitor SMD AVX-M (7260-28 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_AKL -CP_EIA-7260-28_AVX-M_Pad2.68x6.30mm_HandSolder -Tantalum Capacitor SMD AVX-M (7260-28 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_AKL -CP_EIA-7260-38_AVX-R -Tantalum Capacitor SMD AVX-R (7260-38 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_AKL -CP_EIA-7260-38_AVX-R_Pad2.68x6.30mm -Tantalum Capacitor SMD AVX-R (7260-38 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_AKL -CP_EIA-7260-38_AVX-R_Pad2.68x6.30mm_HandSolder -Tantalum Capacitor SMD AVX-R (7260-38 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_AKL -CP_EIA-7343-15_Kemet-W -Tantalum Capacitor SMD Kemet-W (7343-15 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_AKL -CP_EIA-7343-15_Kemet-W_Pad2.25x2.55mm -Tantalum Capacitor SMD Kemet-W (7343-15 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_AKL -CP_EIA-7343-15_Kemet-W_Pad2.25x2.55mm_HandSolder -Tantalum Capacitor SMD Kemet-W (7343-15 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_AKL -CP_EIA-7343-20_Kemet-V -Tantalum Capacitor SMD Kemet-V (7343-20 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_AKL -CP_EIA-7343-20_Kemet-V_Pad2.25x2.55mm -Tantalum Capacitor SMD Kemet-V (7343-20 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_AKL -CP_EIA-7343-20_Kemet-V_Pad2.25x2.55mm_HandSolder -Tantalum Capacitor SMD Kemet-V (7343-20 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_AKL -CP_EIA-7343-30_AVX-N -Tantalum Capacitor SMD AVX-N (7343-30 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_AKL -CP_EIA-7343-30_AVX-N_Pad2.25x2.55mm -Tantalum Capacitor SMD AVX-N (7343-30 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_AKL -CP_EIA-7343-30_AVX-N_Pad2.25x2.55mm_HandSolder -Tantalum Capacitor SMD AVX-N (7343-30 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_AKL -CP_EIA-7343-31_Kemet-D -Tantalum Capacitor SMD Kemet-D (7343-31 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_AKL -CP_EIA-7343-31_Kemet-D_Pad2.25x2.55mm -Tantalum Capacitor SMD Kemet-D (7343-31 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_AKL -CP_EIA-7343-31_Kemet-D_Pad2.25x2.55mm_HandSolder -Tantalum Capacitor SMD Kemet-D (7343-31 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_AKL -CP_EIA-7343-40_Kemet-Y -Tantalum Capacitor SMD Kemet-Y (7343-40 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_AKL -CP_EIA-7343-40_Kemet-Y_Pad2.25x2.55mm -Tantalum Capacitor SMD Kemet-Y (7343-40 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_AKL -CP_EIA-7343-40_Kemet-Y_Pad2.25x2.55mm_HandSolder -Tantalum Capacitor SMD Kemet-Y (7343-40 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_AKL -CP_EIA-7343-43_Kemet-X -Tantalum Capacitor SMD Kemet-X (7343-43 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_AKL -CP_EIA-7343-43_Kemet-X_Pad2.25x2.55mm -Tantalum Capacitor SMD Kemet-X (7343-43 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_AKL -CP_EIA-7343-43_Kemet-X_Pad2.25x2.55mm_HandSolder -Tantalum Capacitor SMD Kemet-X (7343-43 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_AKL -CP_EIA-7360-38_Kemet-E -Tantalum Capacitor SMD Kemet-E (7360-38 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_AKL -CP_EIA-7360-38_Kemet-E_Pad2.25x4.25mm -Tantalum Capacitor SMD Kemet-E (7360-38 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_AKL -CP_EIA-7360-38_Kemet-E_Pad2.25x4.25mm_HandSolder -Tantalum Capacitor SMD Kemet-E (7360-38 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_AKL -CP_EIA-7361-38_AVX-V -Tantalum Capacitor SMD AVX-V (7361-38 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/NOS.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_AKL -CP_EIA-7361-38_AVX-V_Pad2.18x3.30mm -Tantalum Capacitor SMD AVX-V (7361-38 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/NOS.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_AKL -CP_EIA-7361-38_AVX-V_Pad2.18x3.30mm_HandSolder -Tantalum Capacitor SMD AVX-V (7361-38 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/NOS.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_AKL -CP_EIA-7361-438_AVX-U -Tantalum Capacitor SMD AVX-U (7361-438 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/NOS.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_AKL -CP_EIA-7361-438_AVX-U_Pad2.18x3.30mm -Tantalum Capacitor SMD AVX-U (7361-438 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/NOS.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_AKL -CP_EIA-7361-438_AVX-U_Pad2.18x3.30mm_HandSolder -Tantalum Capacitor SMD AVX-U (7361-438 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/NOS.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL -CP_EIA-1608-08_AVX-J -Tantalum Capacitor SMD AVX-J (1608-08 Metric), IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/48064/_t58_vmn_pt0471_1601.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL -CP_EIA-1608-08_AVX-J_Pad1.25x1.05mm -Tantalum Capacitor SMD AVX-J (1608-08 Metric), IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/48064/_t58_vmn_pt0471_1601.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL -CP_EIA-1608-10_AVX-L -Tantalum Capacitor SMD AVX-L (1608-10 Metric), IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/48064/_t58_vmn_pt0471_1601.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL -CP_EIA-1608-10_AVX-L_Pad1.25x1.05mm -Tantalum Capacitor SMD AVX-L (1608-10 Metric), IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/48064/_t58_vmn_pt0471_1601.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL -CP_EIA-2012-12_Kemet-R -Tantalum Capacitor SMD Kemet-R (2012-12 Metric), IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/40182/tmch.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL -CP_EIA-2012-12_Kemet-R_Pad1.30x1.05mm -Tantalum Capacitor SMD Kemet-R (2012-12 Metric), IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/40182/tmch.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL -CP_EIA-2012-15_AVX-P -Tantalum Capacitor SMD AVX-P (2012-15 Metric), IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/40182/tmch.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL -CP_EIA-2012-15_AVX-P_Pad1.30x1.05mm -Tantalum Capacitor SMD AVX-P (2012-15 Metric), IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/40182/tmch.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL -CP_EIA-3216-10_Kemet-I -Tantalum Capacitor SMD Kemet-I (3216-10 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL -CP_EIA-3216-10_Kemet-I_Pad1.58x1.35mm -Tantalum Capacitor SMD Kemet-I (3216-10 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL -CP_EIA-3216-12_Kemet-S -Tantalum Capacitor SMD Kemet-S (3216-12 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL -CP_EIA-3216-12_Kemet-S_Pad1.58x1.35mm -Tantalum Capacitor SMD Kemet-S (3216-12 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL -CP_EIA-3216-18_Kemet-A -Tantalum Capacitor SMD Kemet-A (3216-18 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL -CP_EIA-3216-18_Kemet-A_Pad1.58x1.35mm -Tantalum Capacitor SMD Kemet-A (3216-18 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL -CP_EIA-3528-12_Kemet-T -Tantalum Capacitor SMD Kemet-T (3528-12 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL -CP_EIA-3528-12_Kemet-T_Pad1.50x2.35mm -Tantalum Capacitor SMD Kemet-T (3528-12 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL -CP_EIA-3528-15_AVX-H -Tantalum Capacitor SMD AVX-H (3528-15 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL -CP_EIA-3528-15_AVX-H_Pad1.50x2.35mm -Tantalum Capacitor SMD AVX-H (3528-15 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL -CP_EIA-3528-21_Kemet-B -Tantalum Capacitor SMD Kemet-B (3528-21 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL -CP_EIA-3528-21_Kemet-B_Pad1.50x2.35mm -Tantalum Capacitor SMD Kemet-B (3528-21 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL -CP_EIA-6032-15_Kemet-U -Tantalum Capacitor SMD Kemet-U (6032-15 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL -CP_EIA-6032-15_Kemet-U_Pad2.25x2.35mm -Tantalum Capacitor SMD Kemet-U (6032-15 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL -CP_EIA-6032-20_AVX-F -Tantalum Capacitor SMD AVX-F (6032-20 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL -CP_EIA-6032-20_AVX-F_Pad2.25x2.35mm -Tantalum Capacitor SMD AVX-F (6032-20 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL -CP_EIA-6032-28_Kemet-C -Tantalum Capacitor SMD Kemet-C (6032-28 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL -CP_EIA-6032-28_Kemet-C_Pad2.25x2.35mm -Tantalum Capacitor SMD Kemet-C (6032-28 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL -CP_EIA-7132-20_AVX-U -Tantalum Capacitor SMD AVX-U (7132-20 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL -CP_EIA-7132-20_AVX-U_Pad2.72x3.50mm -Tantalum Capacitor SMD AVX-U (7132-20 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL -CP_EIA-7132-28_AVX-C -Tantalum Capacitor SMD AVX-C (7132-28 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL -CP_EIA-7132-28_AVX-C_Pad2.72x3.50mm -Tantalum Capacitor SMD AVX-C (7132-28 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL -CP_EIA-7260-15_AVX-R -Tantalum Capacitor SMD AVX-R (7260-15 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL -CP_EIA-7260-15_AVX-R_Pad2.68x6.30mm -Tantalum Capacitor SMD AVX-R (7260-15 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL -CP_EIA-7260-20_AVX-M -Tantalum Capacitor SMD AVX-M (7260-20 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL -CP_EIA-7260-20_AVX-M_Pad2.68x6.30mm -Tantalum Capacitor SMD AVX-M (7260-20 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL -CP_EIA-7260-28_AVX-M -Tantalum Capacitor SMD AVX-M (7260-28 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL -CP_EIA-7260-28_AVX-M_Pad2.68x6.30mm -Tantalum Capacitor SMD AVX-M (7260-28 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL -CP_EIA-7260-38_AVX-R -Tantalum Capacitor SMD AVX-R (7260-38 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL -CP_EIA-7260-38_AVX-R_Pad2.68x6.30mm -Tantalum Capacitor SMD AVX-R (7260-38 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL -CP_EIA-7343-15_Kemet-W -Tantalum Capacitor SMD Kemet-W (7343-15 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL -CP_EIA-7343-15_Kemet-W_Pad2.25x2.55mm -Tantalum Capacitor SMD Kemet-W (7343-15 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL -CP_EIA-7343-20_Kemet-V -Tantalum Capacitor SMD Kemet-V (7343-20 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL -CP_EIA-7343-20_Kemet-V_Pad2.25x2.55mm -Tantalum Capacitor SMD Kemet-V (7343-20 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL -CP_EIA-7343-30_AVX-N -Tantalum Capacitor SMD AVX-N (7343-30 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL -CP_EIA-7343-30_AVX-N_Pad2.25x2.55mm -Tantalum Capacitor SMD AVX-N (7343-30 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL -CP_EIA-7343-31_Kemet-D -Tantalum Capacitor SMD Kemet-D (7343-31 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL -CP_EIA-7343-31_Kemet-D_Pad2.25x2.55mm -Tantalum Capacitor SMD Kemet-D (7343-31 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL -CP_EIA-7343-40_Kemet-Y -Tantalum Capacitor SMD Kemet-Y (7343-40 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL -CP_EIA-7343-40_Kemet-Y_Pad2.25x2.55mm -Tantalum Capacitor SMD Kemet-Y (7343-40 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL -CP_EIA-7343-43_Kemet-X -Tantalum Capacitor SMD Kemet-X (7343-43 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL -CP_EIA-7343-43_Kemet-X_Pad2.25x2.55mm -Tantalum Capacitor SMD Kemet-X (7343-43 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL -CP_EIA-7360-38_Kemet-E -Tantalum Capacitor SMD Kemet-E (7360-38 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL -CP_EIA-7360-38_Kemet-E_Pad2.25x4.25mm -Tantalum Capacitor SMD Kemet-E (7360-38 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL -CP_EIA-7361-38_AVX-V -Tantalum Capacitor SMD AVX-V (7361-38 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/NOS.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL -CP_EIA-7361-38_AVX-V_Pad2.18x3.30mm -Tantalum Capacitor SMD AVX-V (7361-38 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/NOS.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL -CP_EIA-7361-438_AVX-U -Tantalum Capacitor SMD AVX-U (7361-438 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/NOS.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_Handsoldering_AKL -CP_EIA-7361-438_AVX-U_Pad2.18x3.30mm -Tantalum Capacitor SMD AVX-U (7361-438 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/NOS.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL -CP_EIA-1608-08_AVX-J -Tantalum Capacitor SMD AVX-J (1608-08 Metric), IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/48064/_t58_vmn_pt0471_1601.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL -CP_EIA-1608-08_AVX-J_Pad1.25x1.05mm -Tantalum Capacitor SMD AVX-J (1608-08 Metric), IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/48064/_t58_vmn_pt0471_1601.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL -CP_EIA-1608-10_AVX-L -Tantalum Capacitor SMD AVX-L (1608-10 Metric), IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/48064/_t58_vmn_pt0471_1601.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL -CP_EIA-1608-10_AVX-L_Pad1.25x1.05mm -Tantalum Capacitor SMD AVX-L (1608-10 Metric), IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/48064/_t58_vmn_pt0471_1601.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL -CP_EIA-2012-12_Kemet-R -Tantalum Capacitor SMD Kemet-R (2012-12 Metric), IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/40182/tmch.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL -CP_EIA-2012-12_Kemet-R_Pad1.30x1.05mm -Tantalum Capacitor SMD Kemet-R (2012-12 Metric), IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/40182/tmch.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL -CP_EIA-2012-15_AVX-P -Tantalum Capacitor SMD AVX-P (2012-15 Metric), IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/40182/tmch.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL -CP_EIA-2012-15_AVX-P_Pad1.30x1.05mm -Tantalum Capacitor SMD AVX-P (2012-15 Metric), IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/40182/tmch.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL -CP_EIA-3216-10_Kemet-I -Tantalum Capacitor SMD Kemet-I (3216-10 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL -CP_EIA-3216-10_Kemet-I_Pad1.58x1.35mm -Tantalum Capacitor SMD Kemet-I (3216-10 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL -CP_EIA-3216-12_Kemet-S -Tantalum Capacitor SMD Kemet-S (3216-12 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL -CP_EIA-3216-12_Kemet-S_Pad1.58x1.35mm -Tantalum Capacitor SMD Kemet-S (3216-12 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL -CP_EIA-3216-18_Kemet-A -Tantalum Capacitor SMD Kemet-A (3216-18 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL -CP_EIA-3216-18_Kemet-A_Pad1.58x1.35mm -Tantalum Capacitor SMD Kemet-A (3216-18 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL -CP_EIA-3528-12_Kemet-T -Tantalum Capacitor SMD Kemet-T (3528-12 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL -CP_EIA-3528-12_Kemet-T_Pad1.50x2.35mm -Tantalum Capacitor SMD Kemet-T (3528-12 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL -CP_EIA-3528-15_AVX-H -Tantalum Capacitor SMD AVX-H (3528-15 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL -CP_EIA-3528-15_AVX-H_Pad1.50x2.35mm -Tantalum Capacitor SMD AVX-H (3528-15 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL -CP_EIA-3528-21_Kemet-B -Tantalum Capacitor SMD Kemet-B (3528-21 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL -CP_EIA-3528-21_Kemet-B_Pad1.50x2.35mm -Tantalum Capacitor SMD Kemet-B (3528-21 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL -CP_EIA-6032-15_Kemet-U -Tantalum Capacitor SMD Kemet-U (6032-15 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL -CP_EIA-6032-15_Kemet-U_Pad2.25x2.35mm -Tantalum Capacitor SMD Kemet-U (6032-15 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL -CP_EIA-6032-20_AVX-F -Tantalum Capacitor SMD AVX-F (6032-20 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL -CP_EIA-6032-20_AVX-F_Pad2.25x2.35mm -Tantalum Capacitor SMD AVX-F (6032-20 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL -CP_EIA-6032-28_Kemet-C -Tantalum Capacitor SMD Kemet-C (6032-28 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL -CP_EIA-6032-28_Kemet-C_Pad2.25x2.35mm -Tantalum Capacitor SMD Kemet-C (6032-28 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL -CP_EIA-7132-20_AVX-U -Tantalum Capacitor SMD AVX-U (7132-20 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL -CP_EIA-7132-20_AVX-U_Pad2.72x3.50mm -Tantalum Capacitor SMD AVX-U (7132-20 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL -CP_EIA-7132-28_AVX-C -Tantalum Capacitor SMD AVX-C (7132-28 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL -CP_EIA-7132-28_AVX-C_Pad2.72x3.50mm -Tantalum Capacitor SMD AVX-C (7132-28 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL -CP_EIA-7260-15_AVX-R -Tantalum Capacitor SMD AVX-R (7260-15 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL -CP_EIA-7260-15_AVX-R_Pad2.68x6.30mm -Tantalum Capacitor SMD AVX-R (7260-15 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL -CP_EIA-7260-20_AVX-M -Tantalum Capacitor SMD AVX-M (7260-20 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL -CP_EIA-7260-20_AVX-M_Pad2.68x6.30mm -Tantalum Capacitor SMD AVX-M (7260-20 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL -CP_EIA-7260-28_AVX-M -Tantalum Capacitor SMD AVX-M (7260-28 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL -CP_EIA-7260-28_AVX-M_Pad2.68x6.30mm -Tantalum Capacitor SMD AVX-M (7260-28 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL -CP_EIA-7260-38_AVX-R -Tantalum Capacitor SMD AVX-R (7260-38 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL -CP_EIA-7260-38_AVX-R_Pad2.68x6.30mm -Tantalum Capacitor SMD AVX-R (7260-38 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/F72-F75.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL -CP_EIA-7343-15_Kemet-W -Tantalum Capacitor SMD Kemet-W (7343-15 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL -CP_EIA-7343-15_Kemet-W_Pad2.25x2.55mm -Tantalum Capacitor SMD Kemet-W (7343-15 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL -CP_EIA-7343-20_Kemet-V -Tantalum Capacitor SMD Kemet-V (7343-20 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL -CP_EIA-7343-20_Kemet-V_Pad2.25x2.55mm -Tantalum Capacitor SMD Kemet-V (7343-20 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL -CP_EIA-7343-30_AVX-N -Tantalum Capacitor SMD AVX-N (7343-30 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL -CP_EIA-7343-30_AVX-N_Pad2.25x2.55mm -Tantalum Capacitor SMD AVX-N (7343-30 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL -CP_EIA-7343-31_Kemet-D -Tantalum Capacitor SMD Kemet-D (7343-31 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL -CP_EIA-7343-31_Kemet-D_Pad2.25x2.55mm -Tantalum Capacitor SMD Kemet-D (7343-31 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL -CP_EIA-7343-40_Kemet-Y -Tantalum Capacitor SMD Kemet-Y (7343-40 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL -CP_EIA-7343-40_Kemet-Y_Pad2.25x2.55mm -Tantalum Capacitor SMD Kemet-Y (7343-40 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL -CP_EIA-7343-43_Kemet-X -Tantalum Capacitor SMD Kemet-X (7343-43 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL -CP_EIA-7343-43_Kemet-X_Pad2.25x2.55mm -Tantalum Capacitor SMD Kemet-X (7343-43 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL -CP_EIA-7360-38_Kemet-E -Tantalum Capacitor SMD Kemet-E (7360-38 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL -CP_EIA-7360-38_Kemet-E_Pad2.25x4.25mm -Tantalum Capacitor SMD Kemet-E (7360-38 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL -CP_EIA-7361-38_AVX-V -Tantalum Capacitor SMD AVX-V (7361-38 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/NOS.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL -CP_EIA-7361-38_AVX-V_Pad2.18x3.30mm -Tantalum Capacitor SMD AVX-V (7361-38 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/NOS.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL -CP_EIA-7361-438_AVX-U -Tantalum Capacitor SMD AVX-U (7361-438 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/NOS.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Capacitor_Tantalum_SMD_US_Handsoldering_AKL -CP_EIA-7361-438_AVX-U_Pad2.18x3.30mm -Tantalum Capacitor SMD AVX-U (7361-438 Metric), IPC_7351 nominal, (Body size from: http://datasheets.avx.com/NOS.pdf), Alternate KiCad Library -capacitor tantalum -0 -2 -2 -PCM_Crystal_AKL -Crystal_AT310_D3.0mm_L10.0mm_Horizontal -Crystal THT AT310 10.0mm-10.5mm length 3.0mm diameter http://www.cinetech.com.tw/upload/2011/04/20110401165201.pdf, Alternate KiCad Library -['AT310'] -0 -2 -2 -PCM_Crystal_AKL -Crystal_AT310_D3.0mm_L10.0mm_Horizontal_1EP_style1 -Crystal THT AT310 10.0mm-10.5mm length 3.0mm diameter http://www.cinetech.com.tw/upload/2011/04/20110401165201.pdf, Alternate KiCad Library -['AT310'] -0 -3 -3 -PCM_Crystal_AKL -Crystal_AT310_D3.0mm_L10.0mm_Horizontal_1EP_style2 -Crystal THT AT310 10.0mm-10.5mm length 3.0mm diameter http://www.cinetech.com.tw/upload/2011/04/20110401165201.pdf, Alternate KiCad Library -['AT310'] -0 -5 -3 -PCM_Crystal_AKL -Crystal_AT310_D3.0mm_L10.0mm_Vertical -Crystal THT AT310 10.0mm-10.5mm length 3.0mm diameter http://www.cinetech.com.tw/upload/2011/04/20110401165201.pdf, Alternate KiCad Library -['AT310'] -0 -2 -2 -PCM_Crystal_AKL -Crystal_C26-LF_D2.1mm_L6.5mm_Horizontal -Crystal THT C26-LF 6.5mm length 2.06mm diameter, Alternate KiCad Library -['C26-LF'] -0 -2 -2 -PCM_Crystal_AKL -Crystal_C26-LF_D2.1mm_L6.5mm_Horizontal_1EP_style1 -Crystal THT C26-LF 6.5mm length 2.06mm diameter, Alternate KiCad Library -['C26-LF'] -0 -3 -3 -PCM_Crystal_AKL -Crystal_C26-LF_D2.1mm_L6.5mm_Horizontal_1EP_style2 -Crystal THT C26-LF 6.5mm length 2.06mm diameter, Alternate KiCad Library -['C26-LF'] -0 -5 -3 -PCM_Crystal_AKL -Crystal_C26-LF_D2.1mm_L6.5mm_Vertical -Crystal THT C26-LF 6.5mm length 2.06mm diameter, Alternate KiCad Library -['C26-LF'] -0 -2 -2 -PCM_Crystal_AKL -Crystal_C38-LF_D3.0mm_L8.0mm_Horizontal -Crystal THT C38-LF 8.0mm length 3.0mm diameter, Alternate KiCad Library -['C38-LF'] -0 -2 -2 -PCM_Crystal_AKL -Crystal_C38-LF_D3.0mm_L8.0mm_Horizontal_1EP_style1 -Crystal THT C38-LF 8.0mm length 3.0mm diameter, Alternate KiCad Library -['C38-LF'] -0 -3 -3 -PCM_Crystal_AKL -Crystal_C38-LF_D3.0mm_L8.0mm_Horizontal_1EP_style2 -Crystal THT C38-LF 8.0mm length 3.0mm diameter, Alternate KiCad Library -['C38-LF'] -0 -5 -3 -PCM_Crystal_AKL -Crystal_C38-LF_D3.0mm_L8.0mm_Vertical -Crystal THT C38-LF 8.0mm length 3.0mm diameter, Alternate KiCad Library -['C38-LF'] -0 -2 -2 -PCM_Crystal_AKL -Crystal_DS10_D1.0mm_L4.3mm_Horizontal -Crystal THT DS10 4.3mm length 1.0mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf, Alternate KiCad Library -['DS10'] -0 -2 -2 -PCM_Crystal_AKL -Crystal_DS10_D1.0mm_L4.3mm_Horizontal_1EP_style1 -Crystal THT DS10 4.3mm length 1.0mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf, Alternate KiCad Library -['DS10'] -0 -3 -3 -PCM_Crystal_AKL -Crystal_DS10_D1.0mm_L4.3mm_Horizontal_1EP_style2 -Crystal THT DS10 4.3mm length 1.0mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf, Alternate KiCad Library -['DS10'] -0 -5 -3 -PCM_Crystal_AKL -Crystal_DS10_D1.0mm_L4.3mm_Vertical -Crystal THT DS10 4.3mm length 1.0mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf, Alternate KiCad Library -['DS10'] -0 -2 -2 -PCM_Crystal_AKL -Crystal_DS15_D1.5mm_L5.0mm_Horizontal -Crystal THT DS15 5.0mm length 1.5mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf, Alternate KiCad Library -['DS15'] -0 -2 -2 -PCM_Crystal_AKL -Crystal_DS15_D1.5mm_L5.0mm_Horizontal_1EP_style1 -Crystal THT DS15 5.0mm length 1.5mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf, Alternate KiCad Library -['DS15'] -0 -3 -3 -PCM_Crystal_AKL -Crystal_DS15_D1.5mm_L5.0mm_Horizontal_1EP_style2 -Crystal THT DS15 5.0mm length 1.5mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf, Alternate KiCad Library -['DS15'] -0 -5 -3 -PCM_Crystal_AKL -Crystal_DS15_D1.5mm_L5.0mm_Vertical -Crystal THT DS15 5.0mm length 1.5mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf, Alternate KiCad Library -['DS15'] -0 -2 -2 -PCM_Crystal_AKL -Crystal_DS26_D2.0mm_L6.0mm_Horizontal -Crystal THT DS26 6.0mm length 2.0mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf, Alternate KiCad Library -['DS26'] -0 -2 -2 -PCM_Crystal_AKL -Crystal_DS26_D2.0mm_L6.0mm_Horizontal_1EP_style1 -Crystal THT DS26 6.0mm length 2.0mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf, Alternate KiCad Library -['DS26'] -0 -3 -3 -PCM_Crystal_AKL -Crystal_DS26_D2.0mm_L6.0mm_Horizontal_1EP_style2 -Crystal THT DS26 6.0mm length 2.0mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf, Alternate KiCad Library -['DS26'] -0 -5 -3 -PCM_Crystal_AKL -Crystal_DS26_D2.0mm_L6.0mm_Vertical -Crystal THT DS26 6.0mm length 2.0mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf, Alternate KiCad Library -['DS26'] -0 -2 -2 -PCM_Crystal_AKL -Crystal_HC18-U_Horizontal -Crystal THT HC-18/U http://5hertz.com/pdfs/04404_D.pdf, Alternate KiCad Library -THT crystal -0 -2 -2 -PCM_Crystal_AKL -Crystal_HC18-U_Horizontal_1EP_style1 -Crystal THT HC-18/U http://5hertz.com/pdfs/04404_D.pdf, Alternate KiCad Library -THT crystal -0 -3 -3 -PCM_Crystal_AKL -Crystal_HC18-U_Horizontal_1EP_style2 -Crystal THT HC-18/U http://5hertz.com/pdfs/04404_D.pdf, Alternate KiCad Library -THT crystal -0 -5 -3 -PCM_Crystal_AKL -Crystal_HC18-U_Vertical -Crystal THT HC-18/U, http://5hertz.com/pdfs/04404_D.pdf, Alternate KiCad Library -THT crystalHC-18/U -0 -2 -2 -PCM_Crystal_AKL -Crystal_HC33-U_Horizontal -Crystal THT HC-33/U http://pdi.bentech-taiwan.com/PDI/GEN20SPEV20HC3320U.pdf, Alternate KiCad Library -THT crystal -0 -2 -2 -PCM_Crystal_AKL -Crystal_HC33-U_Horizontal_1EP_style1 -Crystal THT HC-33/U http://pdi.bentech-taiwan.com/PDI/GEN20SPEV20HC3320U.pdf, Alternate KiCad Library -THT crystal -0 -3 -3 -PCM_Crystal_AKL -Crystal_HC33-U_Horizontal_1EP_style2 -Crystal THT HC-33/U http://pdi.bentech-taiwan.com/PDI/GEN20SPEV20HC3320U.pdf, Alternate KiCad Library -THT crystal -0 -5 -3 -PCM_Crystal_AKL -Crystal_HC33-U_Vertical -Crystal THT HC-33/U, http://pdi.bentech-taiwan.com/PDI/GEN20SPEV20HC3320U.pdf, Alternate KiCad Library -THT crystalHC-33/U -0 -2 -2 -PCM_Crystal_AKL -Crystal_HC35-U -Crystal, Quarz, HC35/U, http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/TO71xx.pdf, Alternate KiCad Library -Crystal Quarz HC35/U -0 -3 -3 -PCM_Crystal_AKL -Crystal_HC49-4H_Vertical -Crystal THT HC-49-4H http://5hertz.com/pdfs/04404_D.pdf, Alternate KiCad Library -THT crystalHC-49-4H -0 -2 -2 -PCM_Crystal_AKL -Crystal_HC49-U-3Pin_Vertical -Crystal THT HC-49/U, 3pin-version, http://www.raltron.com/products/pdfspecs/crystal_hc_49_45_51.pdf, Alternate KiCad Library -THT crystalHC-49/U -0 -3 -3 -PCM_Crystal_AKL -Crystal_HC49-U_Horizontal -Crystal THT HC-49/U http://5hertz.com/pdfs/04404_D.pdf, Alternate KiCad Library -THT crystal -0 -2 -2 -PCM_Crystal_AKL -Crystal_HC49-U_Horizontal_1EP_style1 -Crystal THT HC-49/U http://5hertz.com/pdfs/04404_D.pdf, Alternate KiCad Library -THT crystal -0 -3 -3 -PCM_Crystal_AKL -Crystal_HC49-U_Horizontal_1EP_style2 -Crystal THT HC-49/U http://5hertz.com/pdfs/04404_D.pdf, Alternate KiCad Library -THT crystal -0 -5 -3 -PCM_Crystal_AKL -Crystal_HC49-U_Vertical -Crystal THT HC-49/U http://5hertz.com/pdfs/04404_D.pdf, Alternate KiCad Library -THT crystalHC-49/U -0 -2 -2 -PCM_Crystal_AKL -Crystal_HC50_Horizontal -Crystal THT HC-50 http://www.crovencrystals.com/croven_pdf/HC-50_Crystal_Holder_Rev_00.pdf, Alternate KiCad Library -THT crystal -0 -2 -2 -PCM_Crystal_AKL -Crystal_HC50_Horizontal_1EP_style1 -Crystal THT HC-50 http://www.crovencrystals.com/croven_pdf/HC-50_Crystal_Holder_Rev_00.pdf, Alternate KiCad Library -THT crystal -0 -3 -3 -PCM_Crystal_AKL -Crystal_HC50_Horizontal_1EP_style2 -Crystal THT HC-50 http://www.crovencrystals.com/croven_pdf/HC-50_Crystal_Holder_Rev_00.pdf, Alternate KiCad Library -THT crystal -0 -5 -3 -PCM_Crystal_AKL -Crystal_HC50_Vertical -Crystal THT HC-50, http://www.crovencrystals.com/croven_pdf/HC-50_Crystal_Holder_Rev_00.pdf, Alternate KiCad Library -THT crystalHC-50 -0 -2 -2 -PCM_Crystal_AKL -Crystal_HC51-U_Vertical -Crystal THT HC-51/U, http://www.crovencrystals.com/croven_pdf/HC-51_Crystal_Holder_Rev_00.pdf, Alternate KiCad Library -THT crystalHC-51/U -0 -2 -2 -PCM_Crystal_AKL -Crystal_HC51_Horizontal -Crystal THT HC-51 http://www.crovencrystals.com/croven_pdf/HC-51_Crystal_Holder_Rev_00.pdf, Alternate KiCad Library -THT crystal -0 -2 -2 -PCM_Crystal_AKL -Crystal_HC51_Horizontal_1EP_style1 -Crystal THT HC-51 http://www.crovencrystals.com/croven_pdf/HC-51_Crystal_Holder_Rev_00.pdf, Alternate KiCad Library -THT crystal -0 -3 -3 -PCM_Crystal_AKL -Crystal_HC51_Horizontal_1EP_style2 -Crystal THT HC-51 http://www.crovencrystals.com/croven_pdf/HC-51_Crystal_Holder_Rev_00.pdf, Alternate KiCad Library -THT crystal -0 -5 -3 -PCM_Crystal_AKL -Crystal_HC52-6mm_Horizontal -Crystal THT HC-51/6mm http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf, Alternate KiCad Library -THT crystal -0 -2 -2 -PCM_Crystal_AKL -Crystal_HC52-6mm_Horizontal_1EP_style1 -Crystal THT HC-51/6mm http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf, Alternate KiCad Library -THT crystal -0 -3 -3 -PCM_Crystal_AKL -Crystal_HC52-6mm_Horizontal_1EP_style2 -Crystal THT HC-51/6mm http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf, Alternate KiCad Library -THT crystal -0 -5 -3 -PCM_Crystal_AKL -Crystal_HC52-6mm_Vertical -Crystal THT HC-52/6mm, http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf, Alternate KiCad Library -THT crystalHC-49/U -0 -2 -2 -PCM_Crystal_AKL -Crystal_HC52-8mm_Horizontal -Crystal THT HC-51/8mm http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf, Alternate KiCad Library -THT crystal -0 -2 -2 -PCM_Crystal_AKL -Crystal_HC52-8mm_Horizontal_1EP_style1 -Crystal THT HC-51/8mm http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf, Alternate KiCad Library -THT crystal -0 -3 -3 -PCM_Crystal_AKL -Crystal_HC52-8mm_Horizontal_1EP_style2 -Crystal THT HC-51/8mm http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf, Alternate KiCad Library -THT crystal -0 -5 -3 -PCM_Crystal_AKL -Crystal_HC52-8mm_Vertical -Crystal THT HC-52/8mm, http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf, Alternate KiCad Library -THT crystalHC-49/U -0 -2 -2 -PCM_Crystal_AKL -Crystal_HC52-U-3Pin_Vertical -Crystal THT HC-52/U, http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf, Alternate KiCad Library -THT crystalHC-52/U -0 -3 -3 -PCM_Crystal_AKL -Crystal_HC52-U_Horizontal -Crystal THT HC-51/U http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf, Alternate KiCad Library -THT crystal -0 -2 -2 -PCM_Crystal_AKL -Crystal_HC52-U_Horizontal_1EP_style1 -Crystal THT HC-51/U http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf, Alternate KiCad Library -THT crystal -0 -3 -3 -PCM_Crystal_AKL -Crystal_HC52-U_Horizontal_1EP_style2 -Crystal THT HC-51/U http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf, Alternate KiCad Library -THT crystal -0 -5 -3 -PCM_Crystal_AKL -Crystal_HC52-U_Vertical -Crystal THT HC-52/U, http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf, Alternate KiCad Library -THT crystal HC-52/U -0 -2 -2 -PCM_Crystal_AKL -Crystal_Round_D1.0mm_Vertical -Crystal THT DS10 1.0mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf, Alternate KiCad Library -['DS10'] -0 -2 -2 -PCM_Crystal_AKL -Crystal_Round_D1.5mm_Vertical -Crystal THT DS15 5.0mm length 1.5mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf, Alternate KiCad Library -['DS15'] -0 -2 -2 -PCM_Crystal_AKL -Crystal_Round_D2.0mm_Vertical -Crystal THT DS26 6.0mm length 2.0mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf, Alternate KiCad Library -['DS26'] -0 -2 -2 -PCM_Crystal_AKL -Crystal_Round_D3.0mm_Vertical -Crystal THT C38-LF 8.0mm length 3.0mm diameter, Alternate KiCad Library -['C38-LF'] -0 -2 -2 -PCM_Crystal_AKL -Crystal_SMD_0603-2Pin_6.0x3.5mm -SMD Crystal SERIES SMD0603/2 http://www.petermann-technik.de/fileadmin/petermann/pdf/SMD0603-2.pdf, 6.0x3.5mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -2 -2 -PCM_Crystal_AKL -Crystal_SMD_0603-2Pin_6.0x3.5mm_BigPads -SMD Crystal SERIES SMD0603/2 http://www.petermann-technik.de/fileadmin/petermann/pdf/SMD0603-2.pdf, hand-soldering, 6.0x3.5mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -2 -2 -PCM_Crystal_AKL -Crystal_SMD_0603-2Pin_6.0x3.5mm_HandSoldering -SMD Crystal SERIES SMD0603/2 http://www.petermann-technik.de/fileadmin/petermann/pdf/SMD0603-2.pdf, hand-soldering, 6.0x3.5mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -2 -2 -PCM_Crystal_AKL -Crystal_SMD_0603-4Pin_6.0x3.5mm -SMD Crystal SERIES SMD0603/4 http://www.petermann-technik.de/fileadmin/petermann/pdf/SMD0603-4.pdf, 6.0x3.5mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -4 -4 -PCM_Crystal_AKL -Crystal_SMD_0603-4Pin_6.0x3.5mm_BigPads -SMD Crystal SERIES SMD0603/4 http://www.petermann-technik.de/fileadmin/petermann/pdf/SMD0603-4.pdf, hand-soldering, 6.0x3.5mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -4 -4 -PCM_Crystal_AKL -Crystal_SMD_0603-4Pin_6.0x3.5mm_HandSoldering -SMD Crystal SERIES SMD0603/4 http://www.petermann-technik.de/fileadmin/petermann/pdf/SMD0603-4.pdf, hand-soldering, 6.0x3.5mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -4 -4 -PCM_Crystal_AKL -Crystal_SMD_2012-2Pin_2.0x1.2mm -SMD Crystal 2012/2 http://txccrystal.com/images/pdf/9ht11.pdf, 2.0x1.2mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -2 -2 -PCM_Crystal_AKL -Crystal_SMD_2012-2Pin_2.0x1.2mm_BigPads -SMD Crystal 2012/2 http://txccrystal.com/images/pdf/9ht11.pdf, hand-soldering, 2.0x1.2mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -2 -2 -PCM_Crystal_AKL -Crystal_SMD_2012-2Pin_2.0x1.2mm_HandSoldering -SMD Crystal 2012/2 http://txccrystal.com/images/pdf/9ht11.pdf, hand-soldering, 2.0x1.2mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -2 -2 -PCM_Crystal_AKL -Crystal_SMD_2016-4Pin_2.0x1.6mm -SMD Crystal SERIES SMD2016/4 http://www.q-crystal.com/upload/5/2015552223166229.pdf, 2.0x1.6mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -4 -4 -PCM_Crystal_AKL -Crystal_SMD_2520-4Pin_2.5x2.0mm -SMD Crystal SERIES SMD2520/4 http://www.newxtal.com/UploadFiles/Images/2012-11-12-09-29-09-776.pdf, 2.5x2.0mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -4 -4 -PCM_Crystal_AKL -Crystal_SMD_3215-2Pin_3.2x1.5mm -SMD Crystal FC-135 https://support.epson.biz/td/api/doc_check.php?dl=brief_FC-135R_en.pdf, Alternate KiCad Library -SMD SMT Crystal -0 -2 -2 -PCM_Crystal_AKL -Crystal_SMD_3225-4Pin_3.2x2.5mm -SMD Crystal SERIES SMD3225/4 http://www.txccrystal.com/images/pdf/7m-accuracy.pdf, 3.2x2.5mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -4 -4 -PCM_Crystal_AKL -Crystal_SMD_3225-4Pin_3.2x2.5mm_BigPads -SMD Crystal SERIES SMD3225/4 http://www.txccrystal.com/images/pdf/7m-accuracy.pdf, hand-soldering, 3.2x2.5mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -4 -4 -PCM_Crystal_AKL -Crystal_SMD_3225-4Pin_3.2x2.5mm_HandSoldering -SMD Crystal SERIES SMD3225/4 http://www.txccrystal.com/images/pdf/7m-accuracy.pdf, hand-soldering, 3.2x2.5mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -4 -4 -PCM_Crystal_AKL -Crystal_SMD_5032-2Pin_5.0x3.2mm -SMD Crystal SERIES SMD2520/2 http://www.icbase.com/File/PDF/HKC/HKC00061008.pdf, 5.0x3.2mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -2 -2 -PCM_Crystal_AKL -Crystal_SMD_5032-2Pin_5.0x3.2mm_BigPads -SMD Crystal SERIES SMD2520/2 http://www.icbase.com/File/PDF/HKC/HKC00061008.pdf, hand-soldering, 5.0x3.2mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -2 -2 -PCM_Crystal_AKL -Crystal_SMD_5032-2Pin_5.0x3.2mm_HandSoldering -SMD Crystal SERIES SMD2520/2 http://www.icbase.com/File/PDF/HKC/HKC00061008.pdf, hand-soldering, 5.0x3.2mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -2 -2 -PCM_Crystal_AKL -Crystal_SMD_5032-4Pin_5.0x3.2mm -SMD Crystal SERIES SMD2520/4 http://www.icbase.com/File/PDF/HKC/HKC00061008.pdf, 5.0x3.2mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -4 -4 -PCM_Crystal_AKL -Crystal_SMD_7050-2Pin_7.0x5.0mm -SMD Crystal SERIES SMD7050/4 https://www.foxonline.com/pdfs/FQ7050.pdf, 7.0x5.0mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -2 -2 -PCM_Crystal_AKL -Crystal_SMD_7050-2Pin_7.0x5.0mm_BigPads -SMD Crystal SERIES SMD7050/4 https://www.foxonline.com/pdfs/FQ7050.pdf, hand-soldering, 7.0x5.0mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -2 -2 -PCM_Crystal_AKL -Crystal_SMD_7050-2Pin_7.0x5.0mm_HandSoldering -SMD Crystal SERIES SMD7050/4 https://www.foxonline.com/pdfs/FQ7050.pdf, hand-soldering, 7.0x5.0mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -2 -2 -PCM_Crystal_AKL -Crystal_SMD_7050-4Pin_7.0x5.0mm -SMD Crystal SERIES SMD7050/4 https://www.foxonline.com/pdfs/FQ7050.pdf, 7.0x5.0mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -4 -4 -PCM_Crystal_AKL -Crystal_SMD_Abracon_ABM3-2Pin_5.0x3.2mm -Abracon Miniature Ceramic Smd Crystal ABM3 http://www.abracon.com/Resonators/abm3.pdf, 5.0x3.2mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -2 -2 -PCM_Crystal_AKL -Crystal_SMD_Abracon_ABM3-2Pin_5.0x3.2mm_BigPads -Abracon Miniature Ceramic Smd Crystal ABM3 http://www.abracon.com/Resonators/abm3.pdf, hand-soldering, 5.0x3.2mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -2 -2 -PCM_Crystal_AKL -Crystal_SMD_Abracon_ABM3-2Pin_5.0x3.2mm_HandSoldering -Abracon Miniature Ceramic Smd Crystal ABM3 http://www.abracon.com/Resonators/abm3.pdf, hand-soldering, 5.0x3.2mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -2 -2 -PCM_Crystal_AKL -Crystal_SMD_Abracon_ABM3B-4Pin_5.0x3.2mm -Abracon Miniature Ceramic Smd Crystal ABM3B http://www.abracon.com/Resonators/abm3b.pdf, 5.0x3.2mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -4 -4 -PCM_Crystal_AKL -Crystal_SMD_Abracon_ABM3C-4Pin_5.0x3.2mm -Abracon Miniature Ceramic Smd Crystal ABM3C http://www.abracon.com/Resonators/abm3c.pdf, 5.0x3.2mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -4 -4 -PCM_Crystal_AKL -Crystal_SMD_Abracon_ABM7-2Pin_6.0x3.5mm -SMD Crystal Abracon ABM7, https://abracon.com/Resonators/abm7.pdf, Alternate KiCad Library -SMD SMT crystal -0 -2 -2 -PCM_Crystal_AKL -Crystal_SMD_Abracon_ABM8G-4Pin_3.2x2.5mm -Abracon Miniature Ceramic Smd Crystal ABM8G http://www.abracon.com/Resonators/ABM8G.pdf, 3.2x2.5mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -4 -4 -PCM_Crystal_AKL -Crystal_SMD_Abracon_ABM10-4Pin_2.5x2.0mm -Abracon Miniature Ceramic Smd Crystal ABM10 http://www.abracon.com/Resonators/ABM10.pdf, Alternate KiCad Library -SMD SMT crystal Abracon ABM10 -0 -4 -4 -PCM_Crystal_AKL -Crystal_SMD_Abracon_ABS25-4Pin_8.0x3.8mm -Abracon Miniature Ceramic SMD Crystal ABS25 https://abracon.com/Resonators/abs25.pdf, 8.0x3.8mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -4 -4 -PCM_Crystal_AKL -Crystal_SMD_ECS_CSM3X-2Pin_7.6x4.1mm -http://www.ecsxtal.com/store/pdf/CSM-3X.pdf, Alternate KiCad Library -Crystal CSM-3X -0 -2 -2 -PCM_Crystal_AKL -Crystal_SMD_EuroQuartz_EQ161-2Pin_3.2x1.5mm -SMD Crystal EuroQuartz EQ161 series http://cdn-reichelt.de/documents/datenblatt/B400/PG32768C.pdf, 3.2x1.5mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -2 -2 -PCM_Crystal_AKL -Crystal_SMD_EuroQuartz_EQ161-2Pin_3.2x1.5mm_BigPads -SMD Crystal EuroQuartz EQ161 series http://cdn-reichelt.de/documents/datenblatt/B400/PG32768C.pdf, hand-soldering, 3.2x1.5mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -2 -2 -PCM_Crystal_AKL -Crystal_SMD_EuroQuartz_EQ161-2Pin_3.2x1.5mm_HandSoldering -SMD Crystal EuroQuartz EQ161 series http://cdn-reichelt.de/documents/datenblatt/B400/PG32768C.pdf, hand-soldering, 3.2x1.5mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -2 -2 -PCM_Crystal_AKL -Crystal_SMD_EuroQuartz_MJ-4Pin_5.0x3.2mm -SMD Crystal EuroQuartz MJ series http://cdn-reichelt.de/documents/datenblatt/B400/MJ.pdf, 5.0x3.2mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -4 -4 -PCM_Crystal_AKL -Crystal_SMD_EuroQuartz_MJ-4Pin_5.0x3.2mm_BigPads -SMD Crystal EuroQuartz MJ series http://cdn-reichelt.de/documents/datenblatt/B400/MJ.pdf, hand-soldering, 5.0x3.2mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -4 -4 -PCM_Crystal_AKL -Crystal_SMD_EuroQuartz_MJ-4Pin_5.0x3.2mm_HandSoldering -SMD Crystal EuroQuartz MJ series http://cdn-reichelt.de/documents/datenblatt/B400/MJ.pdf, hand-soldering, 5.0x3.2mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -4 -4 -PCM_Crystal_AKL -Crystal_SMD_EuroQuartz_MQ-4Pin_7.0x5.0mm -SMD Crystal EuroQuartz MQ series http://cdn-reichelt.de/documents/datenblatt/B400/MQ.pdf, 7.0x5.0mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -4 -4 -PCM_Crystal_AKL -Crystal_SMD_EuroQuartz_MQ-4Pin_7.0x5.0mm_BigPads -SMD Crystal EuroQuartz MQ series http://cdn-reichelt.de/documents/datenblatt/B400/MQ.pdf, hand-soldering, 7.0x5.0mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -4 -4 -PCM_Crystal_AKL -Crystal_SMD_EuroQuartz_MQ-4Pin_7.0x5.0mm_HandSoldering -SMD Crystal EuroQuartz MQ series http://cdn-reichelt.de/documents/datenblatt/B400/MQ.pdf, hand-soldering, 7.0x5.0mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -4 -4 -PCM_Crystal_AKL -Crystal_SMD_EuroQuartz_MQ2-2Pin_7.0x5.0mm -SMD Crystal EuroQuartz MQ2 series http://cdn-reichelt.de/documents/datenblatt/B400/MQ.pdf, 7.0x5.0mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -2 -2 -PCM_Crystal_AKL -Crystal_SMD_EuroQuartz_MQ2-2Pin_7.0x5.0mm_BigPads -SMD Crystal EuroQuartz MQ2 series http://cdn-reichelt.de/documents/datenblatt/B400/MQ.pdf, hand-soldering, 7.0x5.0mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -2 -2 -PCM_Crystal_AKL -Crystal_SMD_EuroQuartz_MQ2-2Pin_7.0x5.0mm_HandSoldering -SMD Crystal EuroQuartz MQ2 series http://cdn-reichelt.de/documents/datenblatt/B400/MQ.pdf, hand-soldering, 7.0x5.0mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -2 -2 -PCM_Crystal_AKL -Crystal_SMD_EuroQuartz_MT-4Pin_3.2x2.5mm -SMD Crystal EuroQuartz MT series http://cdn-reichelt.de/documents/datenblatt/B400/MT.pdf, 3.2x2.5mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -4 -4 -PCM_Crystal_AKL -Crystal_SMD_EuroQuartz_MT-4Pin_3.2x2.5mm_BigPads -SMD Crystal EuroQuartz MT series http://cdn-reichelt.de/documents/datenblatt/B400/MT.pdf, hand-soldering, 3.2x2.5mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -4 -4 -PCM_Crystal_AKL -Crystal_SMD_EuroQuartz_MT-4Pin_3.2x2.5mm_HandSoldering -SMD Crystal EuroQuartz MT series http://cdn-reichelt.de/documents/datenblatt/B400/MT.pdf, hand-soldering, 3.2x2.5mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -4 -4 -PCM_Crystal_AKL -Crystal_SMD_EuroQuartz_X22-4Pin_2.5x2.0mm -SMD Crystal EuroQuartz X22 series http://cdn-reichelt.de/documents/datenblatt/B400/DS_X22.pdf, 2.5x2.0mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -4 -4 -PCM_Crystal_AKL -Crystal_SMD_EuroQuartz_X22-4Pin_2.5x2.0mm_BigPads -SMD Crystal EuroQuartz X22 series http://cdn-reichelt.de/documents/datenblatt/B400/DS_X22.pdf, hand-soldering, 2.5x2.0mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -4 -4 -PCM_Crystal_AKL -Crystal_SMD_EuroQuartz_X22-4Pin_2.5x2.0mm_HandSoldering -SMD Crystal EuroQuartz X22 series http://cdn-reichelt.de/documents/datenblatt/B400/DS_X22.pdf, hand-soldering, 2.5x2.0mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -4 -4 -PCM_Crystal_AKL -Crystal_SMD_FOX_FE-2Pin_7.5x5.0mm -crystal Ceramic Resin Sealed SMD http://www.foxonline.com/pdfs/fe.pdf, 7.5x5.0mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -2 -2 -PCM_Crystal_AKL -Crystal_SMD_FOX_FE-2Pin_7.5x5.0mm_BigPads -crystal Ceramic Resin Sealed SMD http://www.foxonline.com/pdfs/fe.pdf, hand-soldering, 7.5x5.0mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -2 -2 -PCM_Crystal_AKL -Crystal_SMD_FOX_FE-2Pin_7.5x5.0mm_HandSoldering -crystal Ceramic Resin Sealed SMD http://www.foxonline.com/pdfs/fe.pdf, hand-soldering, 7.5x5.0mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -2 -2 -PCM_Crystal_AKL -Crystal_SMD_FOX_FQ7050-2Pin_7.0x5.0mm -FOX SMD Crystal SERIES SMD7050/4 https://www.foxonline.com/pdfs/FQ7050.pdf, 7.0x5.0mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -2 -2 -PCM_Crystal_AKL -Crystal_SMD_FOX_FQ7050-2Pin_7.0x5.0mm_BigPads -FOX SMD Crystal SERIES SMD7050/4 https://www.foxonline.com/pdfs/FQ7050.pdf, hand-soldering, 7.0x5.0mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -2 -2 -PCM_Crystal_AKL -Crystal_SMD_FOX_FQ7050-2Pin_7.0x5.0mm_HandSoldering -FOX SMD Crystal SERIES SMD7050/4 https://www.foxonline.com/pdfs/FQ7050.pdf, hand-soldering, 7.0x5.0mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -2 -2 -PCM_Crystal_AKL -Crystal_SMD_FOX_FQ7050-4Pin_7.0x5.0mm -FOX SMD Crystal SERIES SMD7050/4 https://www.foxonline.com/pdfs/FQ7050.pdf, 7.0x5.0mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -4 -4 -PCM_Crystal_AKL -Crystal_SMD_FrontierElectronics_FM206 -SMD Watch Crystal FrontierElectronics FM206 6.0mm length 1.9mm diameter http://www.chinafronter.com/wp-content/uploads/2013/12/FM206.pdf, Alternate KiCad Library -['FM206'] -0 -3 -3 -PCM_Crystal_AKL -Crystal_SMD_G8-2Pin_3.2x1.5mm -SMD Crystal G8, 3.2x1.5mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -2 -2 -PCM_Crystal_AKL -Crystal_SMD_G8-2Pin_3.2x1.5mm_BigPads -SMD Crystal G8, hand-soldering, 3.2x1.5mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -2 -2 -PCM_Crystal_AKL -Crystal_SMD_G8-2Pin_3.2x1.5mm_HandSoldering -SMD Crystal G8, hand-soldering, 3.2x1.5mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -2 -2 -PCM_Crystal_AKL -Crystal_SMD_HC49-SD -SMD Crystal HC-49-SD http://cdn-reichelt.de/documents/datenblatt/B400/xxx-HC49-SMD.pdf, 11.4x4.7mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -2 -2 -PCM_Crystal_AKL -Crystal_SMD_HC49-SD_BigPads -SMD Crystal HC-49-SD http://cdn-reichelt.de/documents/datenblatt/B400/xxx-HC49-SMD.pdf, hand-soldering, 11.4x4.7mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -2 -2 -PCM_Crystal_AKL -Crystal_SMD_HC49-SD_HandSoldering -SMD Crystal HC-49-SD http://cdn-reichelt.de/documents/datenblatt/B400/xxx-HC49-SMD.pdf, hand-soldering, 11.4x4.7mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -2 -2 -PCM_Crystal_AKL -Crystal_SMD_MicroCrystal_CC1V-T1A-2Pin_8.0x3.7mm -SMD Crystal MicroCrystal CC1V-T1A series https://www.microcrystal.com/fileadmin/Media/Products/32kHz/Datasheet/CC1V-T1A.pdf, 8.0x3.7mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -2 -2 -PCM_Crystal_AKL -Crystal_SMD_MicroCrystal_CC1V-T1A-2Pin_8.0x3.7mm_BigPads -SMD Crystal MicroCrystal CC1V-T1A series https://www.microcrystal.com/fileadmin/Media/Products/32kHz/Datasheet/CC1V-T1A.pdf, hand-soldering, 8.0x3.7mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -2 -2 -PCM_Crystal_AKL -Crystal_SMD_MicroCrystal_CC1V-T1A-2Pin_8.0x3.7mm_HandSoldering -SMD Crystal MicroCrystal CC1V-T1A series https://www.microcrystal.com/fileadmin/Media/Products/32kHz/Datasheet/CC1V-T1A.pdf, hand-soldering, 8.0x3.7mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -2 -2 -PCM_Crystal_AKL -Crystal_SMD_MicroCrystal_CC4V-T1A-2Pin_5.0x1.9mm -SMD Crystal MicroCrystal CC4V-T1A series http://cdn-reichelt.de/documents/datenblatt/B400/CC4V-T1A.pdf, 5.0x1.9mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -2 -2 -PCM_Crystal_AKL -Crystal_SMD_MicroCrystal_CC4V-T1A-2Pin_5.0x1.9mm_BigPads -SMD Crystal MicroCrystal CC4V-T1A series http://cdn-reichelt.de/documents/datenblatt/B400/CC4V-T1A.pdf, hand-soldering, 5.0x1.9mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -2 -2 -PCM_Crystal_AKL -Crystal_SMD_MicroCrystal_CC4V-T1A-2Pin_5.0x1.9mm_HandSoldering -SMD Crystal MicroCrystal CC4V-T1A series http://cdn-reichelt.de/documents/datenblatt/B400/CC4V-T1A.pdf, hand-soldering, 5.0x1.9mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -2 -2 -PCM_Crystal_AKL -Crystal_SMD_MicroCrystal_CC5V-T1A-2Pin_4.1x1.5mm -SMD Crystal MicroCrystal CC5V-T1A series http://cdn-reichelt.de/documents/datenblatt/B400/CC5V-T1A.pdf, 4.1x1.5mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -2 -2 -PCM_Crystal_AKL -Crystal_SMD_MicroCrystal_CC5V-T1A-2Pin_4.1x1.5mm_BigPads -SMD Crystal MicroCrystal CC5V-T1A series http://cdn-reichelt.de/documents/datenblatt/B400/CC5V-T1A.pdf, hand-soldering, 4.1x1.5mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -2 -2 -PCM_Crystal_AKL -Crystal_SMD_MicroCrystal_CC5V-T1A-2Pin_4.1x1.5mm_HandSoldering -SMD Crystal MicroCrystal CC5V-T1A series http://cdn-reichelt.de/documents/datenblatt/B400/CC5V-T1A.pdf, hand-soldering, 4.1x1.5mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -2 -2 -PCM_Crystal_AKL -Crystal_SMD_MicroCrystal_CC7V-T1A-2Pin_3.2x1.5mm -SMD Crystal MicroCrystal CC7V-T1A/CM7V-T1A series https://www.microcrystal.com/fileadmin/Media/Products/32kHz/Datasheet/CC7V-T1A.pdf, 3.2x1.5mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -2 -2 -PCM_Crystal_AKL -Crystal_SMD_MicroCrystal_CC7V-T1A-2Pin_3.2x1.5mm_BigPads -SMD Crystal MicroCrystal CC7V-T1A/CM7V-T1A series http://www.microcrystal.com/images/_Product-Documentation/01_TF_ceramic_Packages/01_Datasheet/CC1V-T1A.pdf, hand-soldering, 3.2x1.5mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -2 -2 -PCM_Crystal_AKL -Crystal_SMD_MicroCrystal_CC7V-T1A-2Pin_3.2x1.5mm_HandSoldering -SMD Crystal MicroCrystal CC7V-T1A/CM7V-T1A series http://www.microcrystal.com/images/_Product-Documentation/01_TF_ceramic_Packages/01_Datasheet/CC1V-T1A.pdf, hand-soldering, 3.2x1.5mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -2 -2 -PCM_Crystal_AKL -Crystal_SMD_MicroCrystal_CC8V-T1A-2Pin_2.0x1.2mm -SMD Crystal MicroCrystal CC8V-T1A/CM8V-T1A series https://www.microcrystal.com/fileadmin/Media/Products/32kHz/Datasheet/CC8V-T1A.pdf, 2.0x1.2mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -2 -2 -PCM_Crystal_AKL -Crystal_SMD_MicroCrystal_CC8V-T1A-2Pin_2.0x1.2mm_BigPads -SMD Crystal MicroCrystal CC8V-T1A/CM8V-T1A series http://www.microcrystal.com/images/_Product-Documentation/01_TF_ceramic_Packages/01_Datasheet/CC8V-T1A.pdf, hand-soldering, 2.0x1.2mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -2 -2 -PCM_Crystal_AKL -Crystal_SMD_MicroCrystal_CC8V-T1A-2Pin_2.0x1.2mm_HandSoldering -SMD Crystal MicroCrystal CC8V-T1A/CM8V-T1A series http://www.microcrystal.com/images/_Product-Documentation/01_TF_ceramic_Packages/01_Datasheet/CC8V-T1A.pdf, hand-soldering, 2.0x1.2mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -2 -2 -PCM_Crystal_AKL -Crystal_SMD_MicroCrystal_CM9V-T1A-2Pin_1.6x1.0mm -SMD Crystal MicroCrystal CM9V-T1A series https://www.microcrystal.com/fileadmin/Media/Products/32kHz/Datasheet/CM9V-T1A.pdf, 1.6x1.0mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -2 -2 -PCM_Crystal_AKL -Crystal_SMD_MicroCrystal_CM9V-T1A-2Pin_1.6x1.0mm_BigPads -SMD Crystal MicroCrystal CM9V-T1A series http://www.microcrystal.com/images/_Product-Documentation/01_TF_ceramic_Packages/01_Datasheet/CM9V-T1A.pdf, hand-soldering, 1.6x1.0mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -2 -2 -PCM_Crystal_AKL -Crystal_SMD_MicroCrystal_CM9V-T1A-2Pin_1.6x1.0mm_HandSoldering -SMD Crystal MicroCrystal CM9V-T1A series http://www.microcrystal.com/images/_Product-Documentation/01_TF_ceramic_Packages/01_Datasheet/CM9V-T1A.pdf, hand-soldering, 1.6x1.0mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -2 -2 -PCM_Crystal_AKL -Crystal_SMD_MicroCrystal_MS1V-T1K -SMD Watch Crystal MicroCrystal MS1V-T1K 6.1mm length 2.0mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/MS1V-T1K.pdf, Alternate KiCad Library -['MS1V-T1K'] -0 -3 -3 -PCM_Crystal_AKL -Crystal_SMD_MicroCrystal_MS3V-T1R -SMD Watch Crystal MicroCrystal MS3V-T1R 5.2mm length 1.4mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/MS3V-T1R.pdf, Alternate KiCad Library -['MS3V-T1R'] -0 -3 -3 -PCM_Crystal_AKL -Crystal_SMD_Qantek_QC5CB-2Pin_5x3.2mm -SMD Crystal Qantek QC5CB, https://www.qantek.com/tl_files/products/crystals/QC5CB.pdf, Alternate KiCad Library -SMD SMT crystal -0 -2 -2 -PCM_Crystal_AKL -Crystal_SMD_SeikoEpson_FA238-4Pin_3.2x2.5mm -crystal Epson Toyocom FA-238 https://support.epson.biz/td/api/doc_check.php?dl=brief_fa-238v_en.pdf, 3.2x2.5mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -4 -4 -PCM_Crystal_AKL -Crystal_SMD_SeikoEpson_FA238-4Pin_3.2x2.5mm_BigPads -crystal Epson Toyocom FA-238 series https://support.epson.biz/td/api/doc_check.php?dl=brief_fa-238v_en.pdf, hand-soldering, 3.2x2.5mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -4 -4 -PCM_Crystal_AKL -Crystal_SMD_SeikoEpson_FA238-4Pin_3.2x2.5mm_HandSoldering -crystal Epson Toyocom FA-238 series https://support.epson.biz/td/api/doc_check.php?dl=brief_fa-238v_en.pdf, hand-soldering, 3.2x2.5mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -4 -4 -PCM_Crystal_AKL -Crystal_SMD_SeikoEpson_FA238V-4Pin_3.2x2.5mm -crystal Epson Toyocom FA-238 series https://support.epson.biz/td/api/doc_check.php?dl=brief_fa-238v_en.pdf, 3.2x2.5mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -4 -4 -PCM_Crystal_AKL -Crystal_SMD_SeikoEpson_FA238V-4Pin_3.2x2.5mm_BigPads -crystal Epson Toyocom FA-238 series http://www.mouser.com/ds/2/137/1721499-465440.pdf, hand-soldering, 3.2x2.5mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -4 -4 -PCM_Crystal_AKL -Crystal_SMD_SeikoEpson_FA238V-4Pin_3.2x2.5mm_HandSoldering -crystal Epson Toyocom FA-238 series http://www.mouser.com/ds/2/137/1721499-465440.pdf, hand-soldering, 3.2x2.5mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -4 -4 -PCM_Crystal_AKL -Crystal_SMD_SeikoEpson_MA406-4Pin_11.7x4.0mm -SMD Crystal Seiko Epson MC-506 http://media.digikey.com/pdf/Data%20Sheets/Epson%20PDFs/MA-505,506.pdf, 11.7x4.0mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -4 -4 -PCM_Crystal_AKL -Crystal_SMD_SeikoEpson_MA406-4Pin_11.7x4.0mm_BigPads -SMD Crystal Seiko Epson MC-506 http://media.digikey.com/pdf/Data%20Sheets/Epson%20PDFs/MA-505,506.pdf, hand-soldering, 11.7x4.0mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -4 -4 -PCM_Crystal_AKL -Crystal_SMD_SeikoEpson_MA406-4Pin_11.7x4.0mm_HandSoldering -SMD Crystal Seiko Epson MC-506 http://media.digikey.com/pdf/Data%20Sheets/Epson%20PDFs/MA-505,506.pdf, hand-soldering, 11.7x4.0mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -4 -4 -PCM_Crystal_AKL -Crystal_SMD_SeikoEpson_MA505-2Pin_12.7x5.1mm -SMD Crystal Seiko Epson MC-505 http://media.digikey.com/pdf/Data%20Sheets/Epson%20PDFs/MA-505,506.pdf, 12.7x5.1mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -2 -2 -PCM_Crystal_AKL -Crystal_SMD_SeikoEpson_MA505-2Pin_12.7x5.1mm_BigPads -SMD Crystal Seiko Epson MC-505 http://media.digikey.com/pdf/Data%20Sheets/Epson%20PDFs/MA-505,506.pdf, hand-soldering, 12.7x5.1mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -2 -2 -PCM_Crystal_AKL -Crystal_SMD_SeikoEpson_MA505-2Pin_12.7x5.1mm_HandSoldering -SMD Crystal Seiko Epson MC-505 http://media.digikey.com/pdf/Data%20Sheets/Epson%20PDFs/MA-505,506.pdf, hand-soldering, 12.7x5.1mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -2 -2 -PCM_Crystal_AKL -Crystal_SMD_SeikoEpson_MA506-4Pin_12.7x5.1mm -SMD Crystal Seiko Epson MC-506 http://media.digikey.com/pdf/Data%20Sheets/Epson%20PDFs/MA-505,506.pdf, 12.7x5.1mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -4 -4 -PCM_Crystal_AKL -Crystal_SMD_SeikoEpson_MA506-4Pin_12.7x5.1mm_BigPads -SMD Crystal Seiko Epson MC-506 http://media.digikey.com/pdf/Data%20Sheets/Epson%20PDFs/MA-505,506.pdf, hand-soldering, 12.7x5.1mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -4 -4 -PCM_Crystal_AKL -Crystal_SMD_SeikoEpson_MA506-4Pin_12.7x5.1mm_HandSoldering -SMD Crystal Seiko Epson MC-506 http://media.digikey.com/pdf/Data%20Sheets/Epson%20PDFs/MA-505,506.pdf, hand-soldering, 12.7x5.1mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -4 -4 -PCM_Crystal_AKL -Crystal_SMD_SeikoEpson_MC146-4Pin_6.7x1.5mm -SMD Crystal Seiko Epson MC-146 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-156_en.pdf, 6.7x1.5mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -4 -4 -PCM_Crystal_AKL -Crystal_SMD_SeikoEpson_MC146-4Pin_6.7x1.5mm_BigPads -SMD Crystal Seiko Epson MC-146 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-156_en.pdf, hand-soldering, 6.7x1.5mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -4 -4 -PCM_Crystal_AKL -Crystal_SMD_SeikoEpson_MC146-4Pin_6.7x1.5mm_HandSoldering -SMD Crystal Seiko Epson MC-146 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-156_en.pdf, hand-soldering, 6.7x1.5mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -4 -4 -PCM_Crystal_AKL -Crystal_SMD_SeikoEpson_MC156-4Pin_7.1x2.5mm -SMD Crystal Seiko Epson MC-156 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-156_en.pdf, 7.1x2.5mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -4 -4 -PCM_Crystal_AKL -Crystal_SMD_SeikoEpson_MC156-4Pin_7.1x2.5mm_BigPads -SMD Crystal Seiko Epson MC-156 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-156_en.pdf, hand-soldering, 7.1x2.5mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -4 -4 -PCM_Crystal_AKL -Crystal_SMD_SeikoEpson_MC156-4Pin_7.1x2.5mm_HandSoldering -SMD Crystal Seiko Epson MC-156 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-156_en.pdf, hand-soldering, 7.1x2.5mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -4 -4 -PCM_Crystal_AKL -Crystal_SMD_SeikoEpson_MC306-4Pin_8.0x3.2mm -SMD Crystal Seiko Epson MC-306 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-306_en.pdf, 8.0x3.2mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -4 -4 -PCM_Crystal_AKL -Crystal_SMD_SeikoEpson_MC306-4Pin_8.0x3.2mm_BigPads -SMD Crystal Seiko Epson MC-306 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-306_en.pdf, hand-soldering, 8.0x3.2mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -4 -4 -PCM_Crystal_AKL -Crystal_SMD_SeikoEpson_MC306-4Pin_8.0x3.2mm_HandSoldering -SMD Crystal Seiko Epson MC-306 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-306_en.pdf, hand-soldering, 8.0x3.2mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -4 -4 -PCM_Crystal_AKL -Crystal_SMD_SeikoEpson_MC405-2Pin_9.6x4.1mm -SMD Crystal Seiko Epson MC-405 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-306_en.pdf, 9.6x4.1mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -2 -2 -PCM_Crystal_AKL -Crystal_SMD_SeikoEpson_MC405-2Pin_9.6x4.1mm_BigPads -SMD Crystal Seiko Epson MC-405 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-306_en.pdf, hand-soldering, 9.6x4.1mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -2 -2 -PCM_Crystal_AKL -Crystal_SMD_SeikoEpson_MC405-2Pin_9.6x4.1mm_HandSoldering -SMD Crystal Seiko Epson MC-405 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-306_en.pdf, hand-soldering, 9.6x4.1mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -2 -2 -PCM_Crystal_AKL -Crystal_SMD_SeikoEpson_MC406-4Pin_9.6x4.1mm -SMD Crystal Seiko Epson MC-406 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-306_en.pdf, 9.6x4.1mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -4 -4 -PCM_Crystal_AKL -Crystal_SMD_SeikoEpson_MC406-4Pin_9.6x4.1mm_BigPads -SMD Crystal Seiko Epson MC-406 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-306_en.pdf, hand-soldering, 9.6x4.1mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -4 -4 -PCM_Crystal_AKL -Crystal_SMD_SeikoEpson_MC406-4Pin_9.6x4.1mm_HandSoldering -SMD Crystal Seiko Epson MC-406 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-306_en.pdf, hand-soldering, 9.6x4.1mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -4 -4 -PCM_Crystal_AKL -Crystal_SMD_SeikoEpson_TSX3225-4Pin_3.2x2.5mm -crystal Epson Toyocom TSX-3225 series https://support.epson.biz/td/api/doc_check.php?dl=brief_fa-238v_en.pdf, 3.2x2.5mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -4 -4 -PCM_Crystal_AKL -Crystal_SMD_SeikoEpson_TSX3225-4Pin_3.2x2.5mm_BigPads -crystal Epson Toyocom TSX-3225 series https://support.epson.biz/td/api/doc_check.php?dl=brief_fa-238v_en.pdf, hand-soldering, 3.2x2.5mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -4 -4 -PCM_Crystal_AKL -Crystal_SMD_SeikoEpson_TSX3225-4Pin_3.2x2.5mm_HandSoldering -crystal Epson Toyocom TSX-3225 series https://support.epson.biz/td/api/doc_check.php?dl=brief_fa-238v_en.pdf, hand-soldering, 3.2x2.5mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -4 -4 -PCM_Crystal_AKL -Crystal_SMD_TXC_7A-2Pin_5x3.2mm -SMD Crystal TXC 7A http://txccrystal.com/images/pdf/7a.pdf, Alternate KiCad Library -SMD SMT crystal -0 -2 -2 -PCM_Crystal_AKL -Crystal_SMD_TXC_7M-4Pin_3.2x2.5mm -SMD Crystal TXC 7M http://www.txccrystal.com/images/pdf/7m-accuracy.pdf, 3.2x2.5mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -4 -4 -PCM_Crystal_AKL -Crystal_SMD_TXC_7M-4Pin_3.2x2.5mm_BigPads -SMD Crystal TXC 7M http://www.txccrystal.com/images/pdf/7m-accuracy.pdf, hand-soldering, 3.2x2.5mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -4 -4 -PCM_Crystal_AKL -Crystal_SMD_TXC_7M-4Pin_3.2x2.5mm_HandSoldering -SMD Crystal TXC 7M http://www.txccrystal.com/images/pdf/7m-accuracy.pdf, hand-soldering, 3.2x2.5mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -4 -4 -PCM_Crystal_AKL -Crystal_SMD_TXC_9HT11-2Pin_2.0x1.2mm -SMD Crystal TXC 9HT11 http://txccrystal.com/images/pdf/9ht11.pdf, 2.0x1.2mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -2 -2 -PCM_Crystal_AKL -Crystal_SMD_TXC_9HT11-2Pin_2.0x1.2mm_BigPads -SMD Crystal TXC 9HT11 http://txccrystal.com/images/pdf/9ht11.pdf, hand-soldering, 2.0x1.2mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -2 -2 -PCM_Crystal_AKL -Crystal_SMD_TXC_9HT11-2Pin_2.0x1.2mm_HandSoldering -SMD Crystal TXC 9HT11 http://txccrystal.com/images/pdf/9ht11.pdf, hand-soldering, 2.0x1.2mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -2 -2 -PCM_Crystal_AKL -Crystal_SMD_TXC_AX_8045-2Pin_8.0x4.5mm -http://www.txccrystal.com/images/pdf/ax-automotive.pdf, Alternate KiCad Library -SMD SMT crystal -0 -2 -2 -PCM_Crystal_AKL -Resonator-2Pin_W6.0mm_H3.0mm -Ceramic Resomator/Filter 6.0x3.0mm^2, length*width=6.0x3.0mm^2 package, package length=6.0mm, package width=3.0mm, 2 pins, Alternate KiCad Library -THT ceramic resonator filter -0 -2 -2 -PCM_Crystal_AKL -Resonator-2Pin_W7.0mm_H2.5mm -Ceramic Resomator/Filter 7.0x2.5mm^2, length*width=7.0x2.5mm^2 package, package length=7.0mm, package width=2.5mm, 2 pins, Alternate KiCad Library -THT ceramic resonator filter -0 -2 -2 -PCM_Crystal_AKL -Resonator-2Pin_W8.0mm_H3.5mm -Ceramic Resomator/Filter 8.0x3.5mm^2, length*width=8.0x3.5mm^2 package, package length=8.0mm, package width=3.5mm, 2 pins, Alternate KiCad Library -THT ceramic resonator filter -0 -2 -2 -PCM_Crystal_AKL -Resonator-2Pin_W10.0mm_H5.0mm -Ceramic Resomator/Filter 10.0x5.0 RedFrequency MG/MT/MX series, http://www.red-frequency.com/download/datenblatt/redfrequency-datenblatt-ir-zta.pdf, length*width=10.0x5.0mm^2 package, package length=10.0mm, package width=5.0mm, 2 pins, Alternate KiCad Library -THT ceramic resonator filter -0 -2 -2 -PCM_Crystal_AKL -Resonator-3Pin_W6.0mm_H3.0mm -Ceramic Resomator/Filter 6.0x3.0mm^2, length*width=6.0x3.0mm^2 package, package length=6.0mm, package width=3.0mm, 3 pins, Alternate KiCad Library -THT ceramic resonator filter -0 -3 -3 -PCM_Crystal_AKL -Resonator-3Pin_W7.0mm_H2.5mm -Ceramic Resomator/Filter 7.0x2.5mm^2, length*width=7.0x2.5mm^2 package, package length=7.0mm, package width=2.5mm, 3 pins, Alternate KiCad Library -THT ceramic resonator filter -0 -3 -3 -PCM_Crystal_AKL -Resonator-3Pin_W8.0mm_H3.5mm -Ceramic Resomator/Filter 8.0x3.5mm^2, length*width=8.0x3.5mm^2 package, package length=8.0mm, package width=3.5mm, 3 pins, Alternate KiCad Library -THT ceramic resonator filter -0 -3 -3 -PCM_Crystal_AKL -Resonator-3Pin_W10.0mm_H5.0mm -Ceramic Resomator/Filter 10.0x5.0mm^2 RedFrequency MG/MT/MX series, http://www.red-frequency.com/download/datenblatt/redfrequency-datenblatt-ir-zta.pdf, length*width=10.0x5.0mm^2 package, package length=10.0mm, package width=5.0mm, 3 pins, Alternate KiCad Library -THT ceramic resonator filter -0 -3 -3 -PCM_Crystal_AKL -Resonator_SMD-3Pin_7.2x3.0mm -SMD Resomator/Filter 7.2x3.0mm, Murata CSTCC8M00G53-R0; 8MHz resonator, SMD, Farnell (Element 14) #1170435, http://www.farnell.com/datasheets/19296.pdf?_ga=1.247244932.122297557.1475167906, 7.2x3.0mm^2 package, Alternate KiCad Library -SMD SMT ceramic resonator filter filter -0 -3 -3 -PCM_Crystal_AKL -Resonator_SMD-3Pin_7.2x3.0mm_HandSoldering -SMD Resomator/Filter 7.2x3.0mm, Murata CSTCC8M00G53-R0; 8MHz resonator, SMD, Farnell (Element 14) #1170435, http://www.farnell.com/datasheets/19296.pdf?_ga=1.247244932.122297557.1475167906, hand-soldering, 7.2x3.0mm^2 package, Alternate KiCad Library -SMD SMT ceramic resonator filter filter hand-soldering -0 -3 -3 -PCM_Crystal_AKL -Resonator_SMD_muRata_CDSCB-2Pin_4.5x2.0mm -SMD Resomator/Filter Murata CDSCB, http://cdn-reichelt.de/documents/datenblatt/B400/SFECV-107.pdf, 4.5x2.0mm^2 package, Alternate KiCad Library -SMD SMT ceramic resonator filter filter -0 -2 -2 -PCM_Crystal_AKL -Resonator_SMD_muRata_CDSCB-2Pin_4.5x2.0mm_BigPads -SMD Resomator/Filter Murata CDSCB, http://cdn-reichelt.de/documents/datenblatt/B400/SFECV-107.pdf, hand-soldering, 4.5x2.0mm^2 package, Alternate KiCad Library -SMD SMT ceramic resonator filter filter hand-soldering -0 -2 -2 -PCM_Crystal_AKL -Resonator_SMD_muRata_CDSCB-2Pin_4.5x2.0mm_HandSoldering -SMD Resomator/Filter Murata CDSCB, http://cdn-reichelt.de/documents/datenblatt/B400/SFECV-107.pdf, hand-soldering, 4.5x2.0mm^2 package, Alternate KiCad Library -SMD SMT ceramic resonator filter filter hand-soldering -0 -2 -2 -PCM_Crystal_AKL -Resonator_SMD_muRata_CSTxExxV-3Pin_3.0x1.1mm -SMD Resomator/Filter Murata CSTCE, https://www.murata.com/en-eu/products/productdata/8801162264606/SPEC-CSTNE16M0VH3C000R0.pdf, Alternate KiCad Library -SMD SMT ceramic resonator filter -0 -3 -3 -PCM_Crystal_AKL -Resonator_SMD_muRata_CSTxExxV-3Pin_3.0x1.1mm_BigPads -SMD Resomator/Filter Murata CSTCE, https://www.murata.com/en-eu/products/productdata/8801162264606/SPEC-CSTNE16M0VH3C000R0.pdf, Alternate KiCad Library -SMD SMT ceramic resonator filter -0 -3 -3 -PCM_Crystal_AKL -Resonator_SMD_muRata_CSTxExxV-3Pin_3.0x1.1mm_HandSoldering -SMD Resomator/Filter Murata CSTCE, https://www.murata.com/en-eu/products/productdata/8801162264606/SPEC-CSTNE16M0VH3C000R0.pdf, Alternate KiCad Library -SMD SMT ceramic resonator filter -0 -3 -3 -PCM_Crystal_AKL -Resonator_SMD_muRata_SFECV-3Pin_6.9x2.9mm -SMD Resomator/Filter Murata SFECV, http://cdn-reichelt.de/documents/datenblatt/B400/SFECV-107.pdf, 6.9x2.9mm^2 package, Alternate KiCad Library -SMD SMT ceramic resonator filter filter -0 -3 -3 -PCM_Crystal_AKL -Resonator_SMD_muRata_SFECV-3Pin_6.9x2.9mm_BigPads -SMD Resomator/Filter Murata SFECV, http://cdn-reichelt.de/documents/datenblatt/B400/SFECV-107.pdf, hand-soldering, 6.9x2.9mm^2 package, Alternate KiCad Library -SMD SMT ceramic resonator filter filter hand-soldering -0 -3 -3 -PCM_Crystal_AKL -Resonator_SMD_muRata_SFECV-3Pin_6.9x2.9mm_HandSoldering -SMD Resomator/Filter Murata SFECV, http://cdn-reichelt.de/documents/datenblatt/B400/SFECV-107.pdf, hand-soldering, 6.9x2.9mm^2 package, Alternate KiCad Library -SMD SMT ceramic resonator filter filter hand-soldering -0 -3 -3 -PCM_Crystal_AKL -Resonator_SMD_muRata_SFSKA-3Pin_7.9x3.8mm -SMD Resomator/Filter Murata SFSKA, http://cdn-reichelt.de/documents/datenblatt/B400/SFECV-107.pdf, 7.9x3.8mm^2 package, Alternate KiCad Library -SMD SMT ceramic resonator filter filter -0 -3 -3 -PCM_Crystal_AKL -Resonator_SMD_muRata_SFSKA-3Pin_7.9x3.8mm_BigPads -SMD Resomator/Filter Murata SFSKA, http://cdn-reichelt.de/documents/datenblatt/B400/SFECV-107.pdf, hand-soldering, 7.9x3.8mm^2 package, Alternate KiCad Library -SMD SMT ceramic resonator filter filter hand-soldering -0 -3 -3 -PCM_Crystal_AKL -Resonator_SMD_muRata_SFSKA-3Pin_7.9x3.8mm_HandSoldering -SMD Resomator/Filter Murata SFSKA, http://cdn-reichelt.de/documents/datenblatt/B400/SFECV-107.pdf, hand-soldering, 7.9x3.8mm^2 package, Alternate KiCad Library -SMD SMT ceramic resonator filter filter hand-soldering -0 -3 -3 -PCM_Crystal_AKL -Resonator_SMD_muRata_TPSKA-3Pin_7.9x3.8mm -SMD Resomator/Filter Murata TPSKA, http://cdn-reichelt.de/documents/datenblatt/B400/SFECV-107.pdf, 7.9x3.8mm^2 package, Alternate KiCad Library -SMD SMT ceramic resonator filter filter -0 -3 -3 -PCM_Crystal_AKL -Resonator_SMD_muRata_TPSKA-3Pin_7.9x3.8mm_BigPads -SMD Resomator/Filter Murata TPSKA, http://cdn-reichelt.de/documents/datenblatt/B400/SFECV-107.pdf, hand-soldering, 7.9x3.8mm^2 package, Alternate KiCad Library -SMD SMT ceramic resonator filter filter hand-soldering -0 -3 -3 -PCM_Crystal_AKL -Resonator_SMD_muRata_TPSKA-3Pin_7.9x3.8mm_HandSoldering -SMD Resomator/Filter Murata TPSKA, http://cdn-reichelt.de/documents/datenblatt/B400/SFECV-107.pdf, hand-soldering, 7.9x3.8mm^2 package, Alternate KiCad Library -SMD SMT ceramic resonator filter filter hand-soldering -0 -3 -3 -PCM_Crystal_AKL -Resonator_muRata_CSTLSxxxG-3Pin_W8.0mm_H3.0mm -Ceramic Resomator/Filter Murata CSTLSxxxG, http://www.murata.com/~/media/webrenewal/support/library/catalog/products/timingdevice/ceralock/p17e.ashx, length*width=8.0x3.0mm^2 package, package length=8.0mm, package width=3.0mm, 3 pins, Alternate KiCad Library -THT ceramic resonator filter CSTLSxxxG -0 -3 -3 -PCM_Crystal_AKL -Resonator_muRata_CSTLSxxxX-3Pin_W5.5mm_H3.0mm -Ceramic Resomator/Filter Murata CSTLSxxxX, http://www.murata.com/~/media/webrenewal/support/library/catalog/products/timingdevice/ceralock/p17e.ashx, length*width=5.5x3.0mm^2 package, package length=5.5mm, package width=3.0mm, 3 pins, Alternate KiCad Library -THT ceramic resonator filter CSTLSxxxX -0 -3 -3 -PCM_Crystal_AKL -Resonator_muRata_DSN6-3Pin_W7.0mm_H2.5mm -Ceramic Resomator/Filter Murata DSN6, http://cdn-reichelt.de/documents/datenblatt/B400/DSN6NC51H.pdf, length*width=7.0x2.5mm^2 package, package length=7.0mm, package width=2.5mm, 3 pins, Alternate KiCad Library -THT ceramic resonator filter DSN6 -0 -3 -3 -PCM_Crystal_AKL -Resonator_muRata_DSS6-3Pin_W7.0mm_H2.5mm -Ceramic Resomator/Filter Murata DSS6, http://cdn-reichelt.de/documents/datenblatt/B400/DSN6NC51H.pdf, length*width=7.0x2.5mm^2 package, package length=7.0mm, package width=2.5mm, 3 pins, Alternate KiCad Library -THT ceramic resonator filter DSS6 -0 -3 -3 -PCM_Crystal_AKL_Double -Crystal_AT310_D3.0mm_L10.0mm_Horizontal -Crystal THT AT310 10.0mm-10.5mm length 3.0mm diameter http://www.cinetech.com.tw/upload/2011/04/20110401165201.pdf, Alternate KiCad Library -['AT310'] -0 -2 -2 -PCM_Crystal_AKL_Double -Crystal_AT310_D3.0mm_L10.0mm_Horizontal_1EP_style1 -Crystal THT AT310 10.0mm-10.5mm length 3.0mm diameter http://www.cinetech.com.tw/upload/2011/04/20110401165201.pdf, Alternate KiCad Library -['AT310'] -0 -3 -3 -PCM_Crystal_AKL_Double -Crystal_AT310_D3.0mm_L10.0mm_Horizontal_1EP_style2 -Crystal THT AT310 10.0mm-10.5mm length 3.0mm diameter http://www.cinetech.com.tw/upload/2011/04/20110401165201.pdf, Alternate KiCad Library -['AT310'] -0 -5 -3 -PCM_Crystal_AKL_Double -Crystal_AT310_D3.0mm_L10.0mm_Vertical -Crystal THT AT310 10.0mm-10.5mm length 3.0mm diameter http://www.cinetech.com.tw/upload/2011/04/20110401165201.pdf, Alternate KiCad Library -['AT310'] -0 -2 -2 -PCM_Crystal_AKL_Double -Crystal_C26-LF_D2.1mm_L6.5mm_Horizontal -Crystal THT C26-LF 6.5mm length 2.06mm diameter, Alternate KiCad Library -['C26-LF'] -0 -2 -2 -PCM_Crystal_AKL_Double -Crystal_C26-LF_D2.1mm_L6.5mm_Horizontal_1EP_style1 -Crystal THT C26-LF 6.5mm length 2.06mm diameter, Alternate KiCad Library -['C26-LF'] -0 -3 -3 -PCM_Crystal_AKL_Double -Crystal_C26-LF_D2.1mm_L6.5mm_Horizontal_1EP_style2 -Crystal THT C26-LF 6.5mm length 2.06mm diameter, Alternate KiCad Library -['C26-LF'] -0 -5 -3 -PCM_Crystal_AKL_Double -Crystal_C38-LF_D3.0mm_L8.0mm_Horizontal -Crystal THT C38-LF 8.0mm length 3.0mm diameter, Alternate KiCad Library -['C38-LF'] -0 -2 -2 -PCM_Crystal_AKL_Double -Crystal_C38-LF_D3.0mm_L8.0mm_Horizontal_1EP_style1 -Crystal THT C38-LF 8.0mm length 3.0mm diameter, Alternate KiCad Library -['C38-LF'] -0 -3 -3 -PCM_Crystal_AKL_Double -Crystal_C38-LF_D3.0mm_L8.0mm_Horizontal_1EP_style2 -Crystal THT C38-LF 8.0mm length 3.0mm diameter, Alternate KiCad Library -['C38-LF'] -0 -5 -3 -PCM_Crystal_AKL_Double -Crystal_DS10_D1.0mm_L4.3mm_Horizontal -Crystal THT DS10 4.3mm length 1.0mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf, Alternate KiCad Library -['DS10'] -0 -2 -2 -PCM_Crystal_AKL_Double -Crystal_DS10_D1.0mm_L4.3mm_Horizontal_1EP_style1 -Crystal THT DS10 4.3mm length 1.0mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf, Alternate KiCad Library -['DS10'] -0 -3 -3 -PCM_Crystal_AKL_Double -Crystal_DS10_D1.0mm_L4.3mm_Horizontal_1EP_style2 -Crystal THT DS10 4.3mm length 1.0mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf, Alternate KiCad Library -['DS10'] -0 -5 -3 -PCM_Crystal_AKL_Double -Crystal_DS15_D1.5mm_L5.0mm_Horizontal -Crystal THT DS15 5.0mm length 1.5mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf, Alternate KiCad Library -['DS15'] -0 -2 -2 -PCM_Crystal_AKL_Double -Crystal_DS15_D1.5mm_L5.0mm_Horizontal_1EP_style1 -Crystal THT DS15 5.0mm length 1.5mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf, Alternate KiCad Library -['DS15'] -0 -3 -3 -PCM_Crystal_AKL_Double -Crystal_DS15_D1.5mm_L5.0mm_Horizontal_1EP_style2 -Crystal THT DS15 5.0mm length 1.5mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf, Alternate KiCad Library -['DS15'] -0 -5 -3 -PCM_Crystal_AKL_Double -Crystal_DS26_D2.0mm_L6.0mm_Horizontal -Crystal THT DS26 6.0mm length 2.0mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf, Alternate KiCad Library -['DS26'] -0 -2 -2 -PCM_Crystal_AKL_Double -Crystal_DS26_D2.0mm_L6.0mm_Horizontal_1EP_style1 -Crystal THT DS26 6.0mm length 2.0mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf, Alternate KiCad Library -['DS26'] -0 -3 -3 -PCM_Crystal_AKL_Double -Crystal_DS26_D2.0mm_L6.0mm_Horizontal_1EP_style2 -Crystal THT DS26 6.0mm length 2.0mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/DS-Series.pdf, Alternate KiCad Library -['DS26'] -0 -5 -3 -PCM_Crystal_AKL_Double -Crystal_HC18-U_Horizontal -Crystal THT HC-18/U http://5hertz.com/pdfs/04404_D.pdf, Alternate KiCad Library -THT crystal -0 -2 -2 -PCM_Crystal_AKL_Double -Crystal_HC18-U_Horizontal_1EP_style1 -Crystal THT HC-18/U http://5hertz.com/pdfs/04404_D.pdf, Alternate KiCad Library -THT crystal -0 -3 -3 -PCM_Crystal_AKL_Double -Crystal_HC18-U_Horizontal_1EP_style2 -Crystal THT HC-18/U http://5hertz.com/pdfs/04404_D.pdf, Alternate KiCad Library -THT crystal -0 -5 -3 -PCM_Crystal_AKL_Double -Crystal_HC18-U_Vertical -Crystal THT HC-18/U, http://5hertz.com/pdfs/04404_D.pdf, Alternate KiCad Library -THT crystalHC-18/U -0 -2 -2 -PCM_Crystal_AKL_Double -Crystal_HC33-U_Horizontal -Crystal THT HC-33/U http://pdi.bentech-taiwan.com/PDI/GEN20SPEV20HC3320U.pdf, Alternate KiCad Library -THT crystal -0 -2 -2 -PCM_Crystal_AKL_Double -Crystal_HC33-U_Horizontal_1EP_style1 -Crystal THT HC-33/U http://pdi.bentech-taiwan.com/PDI/GEN20SPEV20HC3320U.pdf, Alternate KiCad Library -THT crystal -0 -3 -3 -PCM_Crystal_AKL_Double -Crystal_HC33-U_Horizontal_1EP_style2 -Crystal THT HC-33/U http://pdi.bentech-taiwan.com/PDI/GEN20SPEV20HC3320U.pdf, Alternate KiCad Library -THT crystal -0 -5 -3 -PCM_Crystal_AKL_Double -Crystal_HC33-U_Vertical -Crystal THT HC-33/U, http://pdi.bentech-taiwan.com/PDI/GEN20SPEV20HC3320U.pdf, Alternate KiCad Library -THT crystalHC-33/U -0 -2 -2 -PCM_Crystal_AKL_Double -Crystal_HC49-4H_Vertical -Crystal THT HC-49-4H http://5hertz.com/pdfs/04404_D.pdf, Alternate KiCad Library -THT crystalHC-49-4H -0 -2 -2 -PCM_Crystal_AKL_Double -Crystal_HC49-U_Horizontal -Crystal THT HC-49/U http://5hertz.com/pdfs/04404_D.pdf, Alternate KiCad Library -THT crystal -0 -2 -2 -PCM_Crystal_AKL_Double -Crystal_HC49-U_Horizontal_1EP_style1 -Crystal THT HC-49/U http://5hertz.com/pdfs/04404_D.pdf, Alternate KiCad Library -THT crystal -0 -3 -3 -PCM_Crystal_AKL_Double -Crystal_HC49-U_Horizontal_1EP_style2 -Crystal THT HC-49/U http://5hertz.com/pdfs/04404_D.pdf, Alternate KiCad Library -THT crystal -0 -5 -3 -PCM_Crystal_AKL_Double -Crystal_HC49-U_Vertical -Crystal THT HC-49/U http://5hertz.com/pdfs/04404_D.pdf, Alternate KiCad Library -THT crystalHC-49/U -0 -2 -2 -PCM_Crystal_AKL_Double -Crystal_HC50_Horizontal -Crystal THT HC-50 http://www.crovencrystals.com/croven_pdf/HC-50_Crystal_Holder_Rev_00.pdf, Alternate KiCad Library -THT crystal -0 -2 -2 -PCM_Crystal_AKL_Double -Crystal_HC50_Horizontal_1EP_style1 -Crystal THT HC-50 http://www.crovencrystals.com/croven_pdf/HC-50_Crystal_Holder_Rev_00.pdf, Alternate KiCad Library -THT crystal -0 -3 -3 -PCM_Crystal_AKL_Double -Crystal_HC50_Horizontal_1EP_style2 -Crystal THT HC-50 http://www.crovencrystals.com/croven_pdf/HC-50_Crystal_Holder_Rev_00.pdf, Alternate KiCad Library -THT crystal -0 -5 -3 -PCM_Crystal_AKL_Double -Crystal_HC50_Vertical -Crystal THT HC-50, http://www.crovencrystals.com/croven_pdf/HC-50_Crystal_Holder_Rev_00.pdf, Alternate KiCad Library -THT crystalHC-50 -0 -2 -2 -PCM_Crystal_AKL_Double -Crystal_HC51-U_Vertical -Crystal THT HC-51/U, http://www.crovencrystals.com/croven_pdf/HC-51_Crystal_Holder_Rev_00.pdf, Alternate KiCad Library -THT crystalHC-51/U -0 -2 -2 -PCM_Crystal_AKL_Double -Crystal_HC51_Horizontal -Crystal THT HC-51 http://www.crovencrystals.com/croven_pdf/HC-51_Crystal_Holder_Rev_00.pdf, Alternate KiCad Library -THT crystal -0 -2 -2 -PCM_Crystal_AKL_Double -Crystal_HC51_Horizontal_1EP_style1 -Crystal THT HC-51 http://www.crovencrystals.com/croven_pdf/HC-51_Crystal_Holder_Rev_00.pdf, Alternate KiCad Library -THT crystal -0 -3 -3 -PCM_Crystal_AKL_Double -Crystal_HC51_Horizontal_1EP_style2 -Crystal THT HC-51 http://www.crovencrystals.com/croven_pdf/HC-51_Crystal_Holder_Rev_00.pdf, Alternate KiCad Library -THT crystal -0 -5 -3 -PCM_Crystal_AKL_Double -Crystal_HC52-6mm_Horizontal -Crystal THT HC-51/6mm http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf, Alternate KiCad Library -THT crystal -0 -2 -2 -PCM_Crystal_AKL_Double -Crystal_HC52-6mm_Horizontal_1EP_style1 -Crystal THT HC-51/6mm http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf, Alternate KiCad Library -THT crystal -0 -3 -3 -PCM_Crystal_AKL_Double -Crystal_HC52-6mm_Horizontal_1EP_style2 -Crystal THT HC-51/6mm http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf, Alternate KiCad Library -THT crystal -0 -5 -3 -PCM_Crystal_AKL_Double -Crystal_HC52-6mm_Vertical -Crystal THT HC-52/6mm, http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf, Alternate KiCad Library -THT crystalHC-49/U -0 -2 -2 -PCM_Crystal_AKL_Double -Crystal_HC52-8mm_Horizontal -Crystal THT HC-51/8mm http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf, Alternate KiCad Library -THT crystal -0 -2 -2 -PCM_Crystal_AKL_Double -Crystal_HC52-8mm_Horizontal_1EP_style1 -Crystal THT HC-51/8mm http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf, Alternate KiCad Library -THT crystal -0 -3 -3 -PCM_Crystal_AKL_Double -Crystal_HC52-8mm_Horizontal_1EP_style2 -Crystal THT HC-51/8mm http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf, Alternate KiCad Library -THT crystal -0 -5 -3 -PCM_Crystal_AKL_Double -Crystal_HC52-8mm_Vertical -Crystal THT HC-52/8mm, http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf, Alternate KiCad Library -THT crystalHC-49/U -0 -2 -2 -PCM_Crystal_AKL_Double -Crystal_HC52-U_Horizontal -Crystal THT HC-51/U http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf, Alternate KiCad Library -THT crystal -0 -2 -2 -PCM_Crystal_AKL_Double -Crystal_HC52-U_Horizontal_1EP_style1 -Crystal THT HC-51/U http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf, Alternate KiCad Library -THT crystal -0 -3 -3 -PCM_Crystal_AKL_Double -Crystal_HC52-U_Horizontal_1EP_style2 -Crystal THT HC-51/U http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf, Alternate KiCad Library -THT crystal -0 -5 -3 -PCM_Crystal_AKL_Double -Crystal_HC52-U_Vertical -Crystal THT HC-52/U, http://www.kvg-gmbh.de/assets/uploads/files/product_pdfs/XS71xx.pdf, Alternate KiCad Library -THT crystal HC-52/U -0 -2 -2 -PCM_Crystal_AKL_Double -Resonator-2Pin_W6.0mm_H3.0mm -Ceramic Resomator/Filter 6.0x3.0mm^2, length*width=6.0x3.0mm^2 package, package length=6.0mm, package width=3.0mm, 2 pins, Alternate KiCad Library -THT ceramic resonator filter -0 -2 -2 -PCM_Crystal_AKL_Double -Resonator-2Pin_W7.0mm_H2.5mm -Ceramic Resomator/Filter 7.0x2.5mm^2, length*width=7.0x2.5mm^2 package, package length=7.0mm, package width=2.5mm, 2 pins, Alternate KiCad Library -THT ceramic resonator filter -0 -2 -2 -PCM_Crystal_AKL_Double -Resonator-2Pin_W8.0mm_H3.5mm -Ceramic Resomator/Filter 8.0x3.5mm^2, length*width=8.0x3.5mm^2 package, package length=8.0mm, package width=3.5mm, 2 pins, Alternate KiCad Library -THT ceramic resonator filter -0 -2 -2 -PCM_Crystal_AKL_Double -Resonator-2Pin_W10.0mm_H5.0mm -Ceramic Resomator/Filter 10.0x5.0 RedFrequency MG/MT/MX series, http://www.red-frequency.com/download/datenblatt/redfrequency-datenblatt-ir-zta.pdf, length*width=10.0x5.0mm^2 package, package length=10.0mm, package width=5.0mm, 2 pins, Alternate KiCad Library -THT ceramic resonator filter -0 -2 -2 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_0603-2Pin_6.0x3.5mm -SMD Crystal SERIES SMD0603/2 http://www.petermann-technik.de/fileadmin/petermann/pdf/SMD0603-2.pdf, 6.0x3.5mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -2 -2 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_0603-2Pin_6.0x3.5mm_BigPads -SMD Crystal SERIES SMD0603/2 http://www.petermann-technik.de/fileadmin/petermann/pdf/SMD0603-2.pdf, hand-soldering, 6.0x3.5mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -2 -2 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_0603-4Pin_6.0x3.5mm -SMD Crystal SERIES SMD0603/4 http://www.petermann-technik.de/fileadmin/petermann/pdf/SMD0603-4.pdf, 6.0x3.5mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -4 -4 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_0603-4Pin_6.0x3.5mm_BigPads -SMD Crystal SERIES SMD0603/4 http://www.petermann-technik.de/fileadmin/petermann/pdf/SMD0603-4.pdf, hand-soldering, 6.0x3.5mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -4 -4 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_2012-2Pin_2.0x1.2mm -SMD Crystal 2012/2 http://txccrystal.com/images/pdf/9ht11.pdf, 2.0x1.2mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -2 -2 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_2012-2Pin_2.0x1.2mm_BigPads -SMD Crystal 2012/2 http://txccrystal.com/images/pdf/9ht11.pdf, hand-soldering, 2.0x1.2mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -2 -2 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_2016-4Pin_2.0x1.6mm -SMD Crystal SERIES SMD2016/4 http://www.q-crystal.com/upload/5/2015552223166229.pdf, 2.0x1.6mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -4 -4 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_2520-4Pin_2.5x2.0mm -SMD Crystal SERIES SMD2520/4 http://www.newxtal.com/UploadFiles/Images/2012-11-12-09-29-09-776.pdf, 2.5x2.0mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -4 -4 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_3215-2Pin_3.2x1.5mm -SMD Crystal FC-135 https://support.epson.biz/td/api/doc_check.php?dl=brief_FC-135R_en.pdf, Alternate KiCad Library -SMD SMT Crystal -0 -2 -2 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_3225-4Pin_3.2x2.5mm -SMD Crystal SERIES SMD3225/4 http://www.txccrystal.com/images/pdf/7m-accuracy.pdf, 3.2x2.5mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -4 -4 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_3225-4Pin_3.2x2.5mm_BigPads -SMD Crystal SERIES SMD3225/4 http://www.txccrystal.com/images/pdf/7m-accuracy.pdf, hand-soldering, 3.2x2.5mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -4 -4 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_5032-2Pin_5.0x3.2mm -SMD Crystal SERIES SMD2520/2 http://www.icbase.com/File/PDF/HKC/HKC00061008.pdf, 5.0x3.2mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -2 -2 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_5032-2Pin_5.0x3.2mm_BigPads -SMD Crystal SERIES SMD2520/2 http://www.icbase.com/File/PDF/HKC/HKC00061008.pdf, hand-soldering, 5.0x3.2mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -2 -2 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_5032-4Pin_5.0x3.2mm -SMD Crystal SERIES SMD2520/4 http://www.icbase.com/File/PDF/HKC/HKC00061008.pdf, 5.0x3.2mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -4 -4 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_7050-2Pin_7.0x5.0mm -SMD Crystal SERIES SMD7050/4 https://www.foxonline.com/pdfs/FQ7050.pdf, 7.0x5.0mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -2 -2 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_7050-2Pin_7.0x5.0mm_BigPads -SMD Crystal SERIES SMD7050/4 https://www.foxonline.com/pdfs/FQ7050.pdf, hand-soldering, 7.0x5.0mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -2 -2 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_7050-4Pin_7.0x5.0mm -SMD Crystal SERIES SMD7050/4 https://www.foxonline.com/pdfs/FQ7050.pdf, 7.0x5.0mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -4 -4 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_Abracon_ABM3-2Pin_5.0x3.2mm -Abracon Miniature Ceramic Smd Crystal ABM3 http://www.abracon.com/Resonators/abm3.pdf, 5.0x3.2mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -2 -2 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_Abracon_ABM3-2Pin_5.0x3.2mm_BigPads -Abracon Miniature Ceramic Smd Crystal ABM3 http://www.abracon.com/Resonators/abm3.pdf, hand-soldering, 5.0x3.2mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -2 -2 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_Abracon_ABM3B-4Pin_5.0x3.2mm -Abracon Miniature Ceramic Smd Crystal ABM3B http://www.abracon.com/Resonators/abm3b.pdf, 5.0x3.2mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -4 -4 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_Abracon_ABM3C-4Pin_5.0x3.2mm -Abracon Miniature Ceramic Smd Crystal ABM3C http://www.abracon.com/Resonators/abm3c.pdf, 5.0x3.2mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -4 -4 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_Abracon_ABM7-2Pin_6.0x3.5mm -SMD Crystal Abracon ABM7, https://abracon.com/Resonators/abm7.pdf, Alternate KiCad Library -SMD SMT crystal -0 -2 -2 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_Abracon_ABM8G-4Pin_3.2x2.5mm -Abracon Miniature Ceramic Smd Crystal ABM8G http://www.abracon.com/Resonators/ABM8G.pdf, 3.2x2.5mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -4 -4 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_Abracon_ABM10-4Pin_2.5x2.0mm -Abracon Miniature Ceramic Smd Crystal ABM10 http://www.abracon.com/Resonators/ABM10.pdf, Alternate KiCad Library -SMD SMT crystal Abracon ABM10 -0 -4 -4 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_Abracon_ABS25-4Pin_8.0x3.8mm -Abracon Miniature Ceramic SMD Crystal ABS25 https://abracon.com/Resonators/abs25.pdf, 8.0x3.8mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -4 -4 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_ECS_CSM3X-2Pin_7.6x4.1mm -http://www.ecsxtal.com/store/pdf/CSM-3X.pdf, Alternate KiCad Library -Crystal CSM-3X -0 -2 -2 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_EuroQuartz_EQ161-2Pin_3.2x1.5mm -SMD Crystal EuroQuartz EQ161 series http://cdn-reichelt.de/documents/datenblatt/B400/PG32768C.pdf, 3.2x1.5mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -2 -2 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_EuroQuartz_EQ161-2Pin_3.2x1.5mm_BigPads -SMD Crystal EuroQuartz EQ161 series http://cdn-reichelt.de/documents/datenblatt/B400/PG32768C.pdf, hand-soldering, 3.2x1.5mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -2 -2 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_EuroQuartz_MJ-4Pin_5.0x3.2mm -SMD Crystal EuroQuartz MJ series http://cdn-reichelt.de/documents/datenblatt/B400/MJ.pdf, 5.0x3.2mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -4 -4 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_EuroQuartz_MJ-4Pin_5.0x3.2mm_BigPads -SMD Crystal EuroQuartz MJ series http://cdn-reichelt.de/documents/datenblatt/B400/MJ.pdf, hand-soldering, 5.0x3.2mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -4 -4 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_EuroQuartz_MQ-4Pin_7.0x5.0mm -SMD Crystal EuroQuartz MQ series http://cdn-reichelt.de/documents/datenblatt/B400/MQ.pdf, 7.0x5.0mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -4 -4 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_EuroQuartz_MQ-4Pin_7.0x5.0mm_BigPads -SMD Crystal EuroQuartz MQ series http://cdn-reichelt.de/documents/datenblatt/B400/MQ.pdf, hand-soldering, 7.0x5.0mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -4 -4 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_EuroQuartz_MQ2-2Pin_7.0x5.0mm -SMD Crystal EuroQuartz MQ2 series http://cdn-reichelt.de/documents/datenblatt/B400/MQ.pdf, 7.0x5.0mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -2 -2 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_EuroQuartz_MQ2-2Pin_7.0x5.0mm_BigPads -SMD Crystal EuroQuartz MQ2 series http://cdn-reichelt.de/documents/datenblatt/B400/MQ.pdf, hand-soldering, 7.0x5.0mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -2 -2 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_EuroQuartz_MT-4Pin_3.2x2.5mm -SMD Crystal EuroQuartz MT series http://cdn-reichelt.de/documents/datenblatt/B400/MT.pdf, 3.2x2.5mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -4 -4 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_EuroQuartz_MT-4Pin_3.2x2.5mm_BigPads -SMD Crystal EuroQuartz MT series http://cdn-reichelt.de/documents/datenblatt/B400/MT.pdf, hand-soldering, 3.2x2.5mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -4 -4 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_EuroQuartz_X22-4Pin_2.5x2.0mm -SMD Crystal EuroQuartz X22 series http://cdn-reichelt.de/documents/datenblatt/B400/DS_X22.pdf, 2.5x2.0mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -4 -4 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_EuroQuartz_X22-4Pin_2.5x2.0mm_BigPads -SMD Crystal EuroQuartz X22 series http://cdn-reichelt.de/documents/datenblatt/B400/DS_X22.pdf, hand-soldering, 2.5x2.0mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -4 -4 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_FOX_FE-2Pin_7.5x5.0mm -crystal Ceramic Resin Sealed SMD http://www.foxonline.com/pdfs/fe.pdf, 7.5x5.0mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -2 -2 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_FOX_FE-2Pin_7.5x5.0mm_BigPads -crystal Ceramic Resin Sealed SMD http://www.foxonline.com/pdfs/fe.pdf, hand-soldering, 7.5x5.0mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -2 -2 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_FOX_FQ7050-2Pin_7.0x5.0mm -FOX SMD Crystal SERIES SMD7050/4 https://www.foxonline.com/pdfs/FQ7050.pdf, 7.0x5.0mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -2 -2 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_FOX_FQ7050-2Pin_7.0x5.0mm_BigPads -FOX SMD Crystal SERIES SMD7050/4 https://www.foxonline.com/pdfs/FQ7050.pdf, hand-soldering, 7.0x5.0mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -2 -2 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_FOX_FQ7050-4Pin_7.0x5.0mm -FOX SMD Crystal SERIES SMD7050/4 https://www.foxonline.com/pdfs/FQ7050.pdf, 7.0x5.0mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -4 -4 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_FrontierElectronics_FM206 -SMD Watch Crystal FrontierElectronics FM206 6.0mm length 1.9mm diameter http://www.chinafronter.com/wp-content/uploads/2013/12/FM206.pdf, Alternate KiCad Library -['FM206'] -0 -3 -3 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_G8-2Pin_3.2x1.5mm -SMD Crystal G8, 3.2x1.5mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -2 -2 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_G8-2Pin_3.2x1.5mm_BigPads -SMD Crystal G8, hand-soldering, 3.2x1.5mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -2 -2 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_HC49-SD -SMD Crystal HC-49-SD http://cdn-reichelt.de/documents/datenblatt/B400/xxx-HC49-SMD.pdf, 11.4x4.7mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -2 -2 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_HC49-SD_BigPads -SMD Crystal HC-49-SD http://cdn-reichelt.de/documents/datenblatt/B400/xxx-HC49-SMD.pdf, hand-soldering, 11.4x4.7mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -2 -2 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_MicroCrystal_CC1V-T1A-2Pin_8.0x3.7mm -SMD Crystal MicroCrystal CC1V-T1A series https://www.microcrystal.com/fileadmin/Media/Products/32kHz/Datasheet/CC1V-T1A.pdf, 8.0x3.7mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -2 -2 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_MicroCrystal_CC1V-T1A-2Pin_8.0x3.7mm_BigPads -SMD Crystal MicroCrystal CC1V-T1A series https://www.microcrystal.com/fileadmin/Media/Products/32kHz/Datasheet/CC1V-T1A.pdf, hand-soldering, 8.0x3.7mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -2 -2 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_MicroCrystal_CC4V-T1A-2Pin_5.0x1.9mm -SMD Crystal MicroCrystal CC4V-T1A series http://cdn-reichelt.de/documents/datenblatt/B400/CC4V-T1A.pdf, 5.0x1.9mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -2 -2 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_MicroCrystal_CC4V-T1A-2Pin_5.0x1.9mm_BigPads -SMD Crystal MicroCrystal CC4V-T1A series http://cdn-reichelt.de/documents/datenblatt/B400/CC4V-T1A.pdf, hand-soldering, 5.0x1.9mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -2 -2 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_MicroCrystal_CC5V-T1A-2Pin_4.1x1.5mm -SMD Crystal MicroCrystal CC5V-T1A series http://cdn-reichelt.de/documents/datenblatt/B400/CC5V-T1A.pdf, 4.1x1.5mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -2 -2 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_MicroCrystal_CC5V-T1A-2Pin_4.1x1.5mm_BigPads -SMD Crystal MicroCrystal CC5V-T1A series http://cdn-reichelt.de/documents/datenblatt/B400/CC5V-T1A.pdf, hand-soldering, 4.1x1.5mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -2 -2 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_MicroCrystal_CC7V-T1A-2Pin_3.2x1.5mm -SMD Crystal MicroCrystal CC7V-T1A/CM7V-T1A series https://www.microcrystal.com/fileadmin/Media/Products/32kHz/Datasheet/CC7V-T1A.pdf, 3.2x1.5mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -2 -2 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_MicroCrystal_CC7V-T1A-2Pin_3.2x1.5mm_BigPads -SMD Crystal MicroCrystal CC7V-T1A/CM7V-T1A series http://www.microcrystal.com/images/_Product-Documentation/01_TF_ceramic_Packages/01_Datasheet/CC1V-T1A.pdf, hand-soldering, 3.2x1.5mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -2 -2 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_MicroCrystal_CC8V-T1A-2Pin_2.0x1.2mm -SMD Crystal MicroCrystal CC8V-T1A/CM8V-T1A series https://www.microcrystal.com/fileadmin/Media/Products/32kHz/Datasheet/CC8V-T1A.pdf, 2.0x1.2mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -2 -2 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_MicroCrystal_CC8V-T1A-2Pin_2.0x1.2mm_BigPads -SMD Crystal MicroCrystal CC8V-T1A/CM8V-T1A series http://www.microcrystal.com/images/_Product-Documentation/01_TF_ceramic_Packages/01_Datasheet/CC8V-T1A.pdf, hand-soldering, 2.0x1.2mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -2 -2 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_MicroCrystal_CM9V-T1A-2Pin_1.6x1.0mm -SMD Crystal MicroCrystal CM9V-T1A series https://www.microcrystal.com/fileadmin/Media/Products/32kHz/Datasheet/CM9V-T1A.pdf, 1.6x1.0mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -2 -2 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_MicroCrystal_CM9V-T1A-2Pin_1.6x1.0mm_BigPads -SMD Crystal MicroCrystal CM9V-T1A series http://www.microcrystal.com/images/_Product-Documentation/01_TF_ceramic_Packages/01_Datasheet/CM9V-T1A.pdf, hand-soldering, 1.6x1.0mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -2 -2 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_MicroCrystal_MS1V-T1K -SMD Watch Crystal MicroCrystal MS1V-T1K 6.1mm length 2.0mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/MS1V-T1K.pdf, Alternate KiCad Library -['MS1V-T1K'] -0 -3 -3 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_MicroCrystal_MS3V-T1R -SMD Watch Crystal MicroCrystal MS3V-T1R 5.2mm length 1.4mm diameter http://www.microcrystal.com/images/_Product-Documentation/03_TF_metal_Packages/01_Datasheet/MS3V-T1R.pdf, Alternate KiCad Library -['MS3V-T1R'] -0 -3 -3 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_Qantek_QC5CB-2Pin_5x3.2mm -SMD Crystal Qantek QC5CB, https://www.qantek.com/tl_files/products/crystals/QC5CB.pdf, Alternate KiCad Library -SMD SMT crystal -0 -2 -2 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_SeikoEpson_FA238-4Pin_3.2x2.5mm -crystal Epson Toyocom FA-238 https://support.epson.biz/td/api/doc_check.php?dl=brief_fa-238v_en.pdf, 3.2x2.5mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -4 -4 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_SeikoEpson_FA238-4Pin_3.2x2.5mm_BigPads -crystal Epson Toyocom FA-238 series https://support.epson.biz/td/api/doc_check.php?dl=brief_fa-238v_en.pdf, hand-soldering, 3.2x2.5mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -4 -4 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_SeikoEpson_FA238V-4Pin_3.2x2.5mm -crystal Epson Toyocom FA-238 series https://support.epson.biz/td/api/doc_check.php?dl=brief_fa-238v_en.pdf, 3.2x2.5mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -4 -4 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_SeikoEpson_FA238V-4Pin_3.2x2.5mm_BigPads -crystal Epson Toyocom FA-238 series http://www.mouser.com/ds/2/137/1721499-465440.pdf, hand-soldering, 3.2x2.5mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -4 -4 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_SeikoEpson_MA406-4Pin_11.7x4.0mm -SMD Crystal Seiko Epson MC-506 http://media.digikey.com/pdf/Data%20Sheets/Epson%20PDFs/MA-505,506.pdf, 11.7x4.0mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -4 -4 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_SeikoEpson_MA406-4Pin_11.7x4.0mm_BigPads -SMD Crystal Seiko Epson MC-506 http://media.digikey.com/pdf/Data%20Sheets/Epson%20PDFs/MA-505,506.pdf, hand-soldering, 11.7x4.0mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -4 -4 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_SeikoEpson_MA505-2Pin_12.7x5.1mm -SMD Crystal Seiko Epson MC-505 http://media.digikey.com/pdf/Data%20Sheets/Epson%20PDFs/MA-505,506.pdf, 12.7x5.1mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -2 -2 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_SeikoEpson_MA505-2Pin_12.7x5.1mm_BigPads -SMD Crystal Seiko Epson MC-505 http://media.digikey.com/pdf/Data%20Sheets/Epson%20PDFs/MA-505,506.pdf, hand-soldering, 12.7x5.1mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -2 -2 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_SeikoEpson_MA506-4Pin_12.7x5.1mm -SMD Crystal Seiko Epson MC-506 http://media.digikey.com/pdf/Data%20Sheets/Epson%20PDFs/MA-505,506.pdf, 12.7x5.1mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -4 -4 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_SeikoEpson_MA506-4Pin_12.7x5.1mm_BigPads -SMD Crystal Seiko Epson MC-506 http://media.digikey.com/pdf/Data%20Sheets/Epson%20PDFs/MA-505,506.pdf, hand-soldering, 12.7x5.1mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -4 -4 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_SeikoEpson_MC146-4Pin_6.7x1.5mm -SMD Crystal Seiko Epson MC-146 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-156_en.pdf, 6.7x1.5mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -4 -4 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_SeikoEpson_MC146-4Pin_6.7x1.5mm_BigPads -SMD Crystal Seiko Epson MC-146 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-156_en.pdf, hand-soldering, 6.7x1.5mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -4 -4 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_SeikoEpson_MC156-4Pin_7.1x2.5mm -SMD Crystal Seiko Epson MC-156 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-156_en.pdf, 7.1x2.5mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -4 -4 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_SeikoEpson_MC156-4Pin_7.1x2.5mm_BigPads -SMD Crystal Seiko Epson MC-156 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-156_en.pdf, hand-soldering, 7.1x2.5mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -4 -4 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_SeikoEpson_MC306-4Pin_8.0x3.2mm -SMD Crystal Seiko Epson MC-306 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-306_en.pdf, 8.0x3.2mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -4 -4 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_SeikoEpson_MC306-4Pin_8.0x3.2mm_BigPads -SMD Crystal Seiko Epson MC-306 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-306_en.pdf, hand-soldering, 8.0x3.2mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -4 -4 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_SeikoEpson_MC405-2Pin_9.6x4.1mm -SMD Crystal Seiko Epson MC-405 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-306_en.pdf, 9.6x4.1mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -2 -2 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_SeikoEpson_MC405-2Pin_9.6x4.1mm_BigPads -SMD Crystal Seiko Epson MC-405 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-306_en.pdf, hand-soldering, 9.6x4.1mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -2 -2 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_SeikoEpson_MC406-4Pin_9.6x4.1mm -SMD Crystal Seiko Epson MC-406 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-306_en.pdf, 9.6x4.1mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -4 -4 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_SeikoEpson_MC406-4Pin_9.6x4.1mm_BigPads -SMD Crystal Seiko Epson MC-406 https://support.epson.biz/td/api/doc_check.php?dl=brief_MC-306_en.pdf, hand-soldering, 9.6x4.1mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -4 -4 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_SeikoEpson_TSX3225-4Pin_3.2x2.5mm -crystal Epson Toyocom TSX-3225 series https://support.epson.biz/td/api/doc_check.php?dl=brief_fa-238v_en.pdf, 3.2x2.5mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -4 -4 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_SeikoEpson_TSX3225-4Pin_3.2x2.5mm_BigPads -crystal Epson Toyocom TSX-3225 series https://support.epson.biz/td/api/doc_check.php?dl=brief_fa-238v_en.pdf, hand-soldering, 3.2x2.5mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -4 -4 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_TXC_7A-2Pin_5x3.2mm -SMD Crystal TXC 7A http://txccrystal.com/images/pdf/7a.pdf, Alternate KiCad Library -SMD SMT crystal -0 -2 -2 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_TXC_7M-4Pin_3.2x2.5mm -SMD Crystal TXC 7M http://www.txccrystal.com/images/pdf/7m-accuracy.pdf, 3.2x2.5mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -4 -4 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_TXC_7M-4Pin_3.2x2.5mm_BigPads -SMD Crystal TXC 7M http://www.txccrystal.com/images/pdf/7m-accuracy.pdf, hand-soldering, 3.2x2.5mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -4 -4 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_TXC_9HT11-2Pin_2.0x1.2mm -SMD Crystal TXC 9HT11 http://txccrystal.com/images/pdf/9ht11.pdf, 2.0x1.2mm^2 package, Alternate KiCad Library -SMD SMT crystal -0 -2 -2 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_TXC_9HT11-2Pin_2.0x1.2mm_BigPads -SMD Crystal TXC 9HT11 http://txccrystal.com/images/pdf/9ht11.pdf, hand-soldering, 2.0x1.2mm^2 package, Alternate KiCad Library -SMD SMT crystal hand-soldering -0 -2 -2 -PCM_Crystal_Handsoldering_AKL -Crystal_SMD_TXC_AX_8045-2Pin_8.0x4.5mm -http://www.txccrystal.com/images/pdf/ax-automotive.pdf, Alternate KiCad Library -SMD SMT crystal -0 -2 -2 -PCM_Crystal_Handsoldering_AKL -Resonator_SMD-3Pin_7.2x3.0mm -SMD Resomator/Filter 7.2x3.0mm, Murata CSTCC8M00G53-R0; 8MHz resonator, SMD, Farnell (Element 14) #1170435, http://www.farnell.com/datasheets/19296.pdf?_ga=1.247244932.122297557.1475167906, 7.2x3.0mm^2 package, Alternate KiCad Library -SMD SMT ceramic resonator filter filter -0 -3 -3 -PCM_Crystal_Handsoldering_AKL -Resonator_SMD-3Pin_7.2x3.0mm_BigPads -SMD Resomator/Filter 7.2x3.0mm, Murata CSTCC8M00G53-R0; 8MHz resonator, SMD, Farnell (Element 14) #1170435, http://www.farnell.com/datasheets/19296.pdf?_ga=1.247244932.122297557.1475167906, hand-soldering, 7.2x3.0mm^2 package, Alternate KiCad Library -SMD SMT ceramic resonator filter filter hand-soldering -0 -3 -3 -PCM_Crystal_Handsoldering_AKL -Resonator_SMD_muRata_CDSCB-2Pin_4.5x2.0mm -SMD Resomator/Filter Murata CDSCB, http://cdn-reichelt.de/documents/datenblatt/B400/SFECV-107.pdf, 4.5x2.0mm^2 package, Alternate KiCad Library -SMD SMT ceramic resonator filter filter -0 -2 -2 -PCM_Crystal_Handsoldering_AKL -Resonator_SMD_muRata_CDSCB-2Pin_4.5x2.0mm_BigPads -SMD Resomator/Filter Murata CDSCB, http://cdn-reichelt.de/documents/datenblatt/B400/SFECV-107.pdf, hand-soldering, 4.5x2.0mm^2 package, Alternate KiCad Library -SMD SMT ceramic resonator filter filter hand-soldering -0 -2 -2 -PCM_Crystal_Handsoldering_AKL -Resonator_SMD_muRata_CSTxExxV-3Pin_3.0x1.1mm -SMD Resomator/Filter Murata CSTCE, https://www.murata.com/en-eu/products/productdata/8801162264606/SPEC-CSTNE16M0VH3C000R0.pdf, Alternate KiCad Library -SMD SMT ceramic resonator filter -0 -3 -3 -PCM_Crystal_Handsoldering_AKL -Resonator_SMD_muRata_CSTxExxV-3Pin_3.0x1.1mm_BigPads -SMD Resomator/Filter Murata CSTCE, https://www.murata.com/en-eu/products/productdata/8801162264606/SPEC-CSTNE16M0VH3C000R0.pdf, Alternate KiCad Library -SMD SMT ceramic resonator filter -0 -3 -3 -PCM_Crystal_Handsoldering_AKL -Resonator_SMD_muRata_SFECV-3Pin_6.9x2.9mm -SMD Resomator/Filter Murata SFECV, http://cdn-reichelt.de/documents/datenblatt/B400/SFECV-107.pdf, 6.9x2.9mm^2 package, Alternate KiCad Library -SMD SMT ceramic resonator filter filter -0 -3 -3 -PCM_Crystal_Handsoldering_AKL -Resonator_SMD_muRata_SFECV-3Pin_6.9x2.9mm_BigPads -SMD Resomator/Filter Murata SFECV, http://cdn-reichelt.de/documents/datenblatt/B400/SFECV-107.pdf, hand-soldering, 6.9x2.9mm^2 package, Alternate KiCad Library -SMD SMT ceramic resonator filter filter hand-soldering -0 -3 -3 -PCM_Crystal_Handsoldering_AKL -Resonator_SMD_muRata_SFSKA-3Pin_7.9x3.8mm -SMD Resomator/Filter Murata SFSKA, http://cdn-reichelt.de/documents/datenblatt/B400/SFECV-107.pdf, 7.9x3.8mm^2 package, Alternate KiCad Library -SMD SMT ceramic resonator filter filter -0 -3 -3 -PCM_Crystal_Handsoldering_AKL -Resonator_SMD_muRata_SFSKA-3Pin_7.9x3.8mm_BigPads -SMD Resomator/Filter Murata SFSKA, http://cdn-reichelt.de/documents/datenblatt/B400/SFECV-107.pdf, hand-soldering, 7.9x3.8mm^2 package, Alternate KiCad Library -SMD SMT ceramic resonator filter filter hand-soldering -0 -3 -3 -PCM_Crystal_Handsoldering_AKL -Resonator_SMD_muRata_TPSKA-3Pin_7.9x3.8mm -SMD Resomator/Filter Murata TPSKA, http://cdn-reichelt.de/documents/datenblatt/B400/SFECV-107.pdf, 7.9x3.8mm^2 package, Alternate KiCad Library -SMD SMT ceramic resonator filter filter -0 -3 -3 -PCM_Crystal_Handsoldering_AKL -Resonator_SMD_muRata_TPSKA-3Pin_7.9x3.8mm_BigPads -SMD Resomator/Filter Murata TPSKA, http://cdn-reichelt.de/documents/datenblatt/B400/SFECV-107.pdf, hand-soldering, 7.9x3.8mm^2 package, Alternate KiCad Library -SMD SMT ceramic resonator filter filter hand-soldering -0 -3 -3 -PCM_Diode_SMD_AKL -D_0201_0603Metric -Diode SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), Alternate KiCad Library -diode 0201 -0 -4 -2 -PCM_Diode_SMD_AKL -D_0201_0603Metric_TVS -Diode SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), Bidirectional zener or TVS, Alternate KiCad Library -diode 0201 TVS -0 -4 -2 -PCM_Diode_SMD_AKL -D_0402_1005Metric -Diode SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -diode 0402 -0 -2 -2 -PCM_Diode_SMD_AKL -D_0402_1005Metric_TVS -Diode SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Bidirectional zener or TVS, Alternate KiCad Library -diode 0402 TVS -0 -2 -2 -PCM_Diode_SMD_AKL -D_0603_1608Metric -Diode SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -diode 0603 -0 -2 -2 -PCM_Diode_SMD_AKL -D_0603_1608Metric_Castellated -Diode SMD 0603 (1608 Metric), castellated end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -diode 0603 castellated -0 -2 -2 -PCM_Diode_SMD_AKL -D_0603_1608Metric_Pad1.05x0.95mm -Diode SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -diode 0603 handsolder -0 -2 -2 -PCM_Diode_SMD_AKL -D_0603_1608Metric_Pad1.05x0.95mm_HandSolder -Diode SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -diode 0603 handsolder -0 -2 -2 -PCM_Diode_SMD_AKL -D_0603_1608Metric_TVS -Diode SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Bidirectional zener or TVS, Alternate KiCad Library -diode 0603 TVS -0 -2 -2 -PCM_Diode_SMD_AKL -D_0805_2012Metric -Diode SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), Alternate KiCad Library -diode 0805 -0 -2 -2 -PCM_Diode_SMD_AKL -D_0805_2012Metric_Castellated -Diode SMD 0805 (2012 Metric), castellated end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), Alternate KiCad Library -diode 0805 castellated -0 -2 -2 -PCM_Diode_SMD_AKL -D_0805_2012Metric_Pad1.15x1.40mm -Diode SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), Alternate KiCad Library -diode 0805 handsolder -0 -2 -2 -PCM_Diode_SMD_AKL -D_0805_2012Metric_Pad1.15x1.40mm_HandSolder -Diode SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), Alternate KiCad Library -diode 0805 handsolder -0 -2 -2 -PCM_Diode_SMD_AKL -D_0805_2012Metric_TVS -Diode SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), Bidirectional zener or TVS, Alternate KiCad Library -diode 0805 TVS -0 -2 -2 -PCM_Diode_SMD_AKL -D_0805_2012Metric_Zener -Diode SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), Zener, Alternate KiCad Library -diode 0805 Zener -0 -2 -2 -PCM_Diode_SMD_AKL -D_01005_0402Metric -Diode SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), Alternate KiCad Library -diode 01005 -0 -4 -2 -PCM_Diode_SMD_AKL -D_01005_0402Metric_TVS -Diode SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), Bidirectional zener or TVS, Alternate KiCad Library -diode 01005 TVS -0 -4 -2 -PCM_Diode_SMD_AKL -D_1206_3216Metric -Diode SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -diode 1206 -0 -2 -2 -PCM_Diode_SMD_AKL -D_1206_3216Metric_Castellated -Diode SMD 1206 (3216 Metric), castellated end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -diode 1206 castellated -0 -2 -2 -PCM_Diode_SMD_AKL -D_1206_3216Metric_Pad1.42x1.75mm -Diode SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -diode 1206 handsolder -0 -2 -2 -PCM_Diode_SMD_AKL -D_1206_3216Metric_Pad1.42x1.75mm_HandSolder -Diode SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -diode 1206 handsolder -0 -2 -2 -PCM_Diode_SMD_AKL -D_1206_3216Metric_TVS -Diode SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Bidirectional zener or TVS, Alternate KiCad Library -diode 1206 TVS -0 -2 -2 -PCM_Diode_SMD_AKL -D_1206_3216Metric_Zener -Diode SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Zener, Alternate KiCad Library -diode 1206 Zener -0 -2 -2 -PCM_Diode_SMD_AKL -D_1210_3225Metric -Diode SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -diode 1210 -0 -2 -2 -PCM_Diode_SMD_AKL -D_1210_3225Metric_Castellated -Diode SMD 1210 (3225 Metric), castellated end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -diode 1210 castellated -0 -2 -2 -PCM_Diode_SMD_AKL -D_1210_3225Metric_Pad1.42x2.65mm -Diode SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -diode 1210 handsolder -0 -2 -2 -PCM_Diode_SMD_AKL -D_1210_3225Metric_Pad1.42x2.65mm_HandSolder -Diode SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -diode 1210 handsolder -0 -2 -2 -PCM_Diode_SMD_AKL -D_1210_3225Metric_TVS -Diode SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Bidirectional zener or TVS, Alternate KiCad Library -diode 1210 TVS -0 -2 -2 -PCM_Diode_SMD_AKL -D_1210_3225Metric_Zener -Diode SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Zener, Alternate KiCad Library -diode 1210 Zener -0 -2 -2 -PCM_Diode_SMD_AKL -D_1806_4516Metric -Diode SMD 1806 (4516 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.modelithics.com/models/Vendor/MuRata/BLM41P.pdf), Alternate KiCad Library -diode 1806 -0 -2 -2 -PCM_Diode_SMD_AKL -D_1806_4516Metric_Castellated -Diode SMD 1806 (4516 Metric), castellated end terminal, IPC_7351 nominal, (Body size source: https://www.modelithics.com/models/Vendor/MuRata/BLM41P.pdf), Alternate KiCad Library -diode 1806 castellated -0 -2 -2 -PCM_Diode_SMD_AKL -D_1806_4516Metric_Pad1.57x1.80mm -Diode SMD 1806 (4516 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.modelithics.com/models/Vendor/MuRata/BLM41P.pdf), Alternate KiCad Library -diode 1806 handsolder -0 -2 -2 -PCM_Diode_SMD_AKL -D_1806_4516Metric_Pad1.57x1.80mm_HandSolder -Diode SMD 1806 (4516 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.modelithics.com/models/Vendor/MuRata/BLM41P.pdf), Alternate KiCad Library -diode 1806 handsolder -0 -2 -2 -PCM_Diode_SMD_AKL -D_1806_4516Metric_TVS -Diode SMD 1806 (4516 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.modelithics.com/models/Vendor/MuRata/BLM41P.pdf), Bidirectional zener or TVS, Alternate KiCad Library -diode 1806 TVS -0 -2 -2 -PCM_Diode_SMD_AKL -D_1806_4516Metric_Zener -Diode SMD 1806 (4516 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.modelithics.com/models/Vendor/MuRata/BLM41P.pdf), Zener, Alternate KiCad Library -diode 1806 Zener -0 -2 -2 -PCM_Diode_SMD_AKL -D_1812_4532Metric -Diode SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), Alternate KiCad Library -diode 1812 -0 -2 -2 -PCM_Diode_SMD_AKL -D_1812_4532Metric_Castellated -Diode SMD 1812 (4532 Metric), castellated end terminal, IPC_7351 nominal, (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), Alternate KiCad Library -diode 1812 castellated -0 -2 -2 -PCM_Diode_SMD_AKL -D_1812_4532Metric_Pad1.30x3.40mm -Diode SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), Alternate KiCad Library -diode 1812 handsolder -0 -2 -2 -PCM_Diode_SMD_AKL -D_1812_4532Metric_Pad1.30x3.40mm_HandSolder -Diode SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), Alternate KiCad Library -diode 1812 handsolder -0 -2 -2 -PCM_Diode_SMD_AKL -D_1812_4532Metric_TVS -Diode SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), Bidirectional zener or TVS, Alternate KiCad Library -diode 1812 TVS -0 -2 -2 -PCM_Diode_SMD_AKL -D_1812_4532Metric_Zener -Diode SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), Zener, Alternate KiCad Library -diode 1812 Zener -0 -2 -2 -PCM_Diode_SMD_AKL -D_2010_5025Metric -Diode SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -diode 2010 -0 -2 -2 -PCM_Diode_SMD_AKL -D_2010_5025Metric_Castellated -Diode SMD 2010 (5025 Metric), castellated end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -diode 2010 castellated -0 -2 -2 -PCM_Diode_SMD_AKL -D_2010_5025Metric_Pad1.52x2.65mm -Diode SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -diode 2010 handsolder -0 -2 -2 -PCM_Diode_SMD_AKL -D_2010_5025Metric_Pad1.52x2.65mm_HandSolder -Diode SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -diode 2010 handsolder -0 -2 -2 -PCM_Diode_SMD_AKL -D_2010_5025Metric_TVS -Diode SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Bidirectional zener or TVS, Alternate KiCad Library -diode 2010 TVS -0 -2 -2 -PCM_Diode_SMD_AKL -D_2010_5025Metric_Zener -Diode SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Zener, Alternate KiCad Library -diode 2010 Zener -0 -2 -2 -PCM_Diode_SMD_AKL -D_2114_3652Metric -Diode SMD 2114 (3652 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://datasheets.avx.com/schottky.pdf), Alternate KiCad Library -diode 2114 -0 -2 -2 -PCM_Diode_SMD_AKL -D_2114_3652Metric_Castellated -Diode SMD 2114 (3652 Metric), castellated end terminal, IPC_7351 nominal, (Body size from: http://datasheets.avx.com/schottky.pdf), Alternate KiCad Library -diode 2114 castellated -0 -2 -2 -PCM_Diode_SMD_AKL -D_2114_3652Metric_Pad1.85x3.75mm -Diode SMD 2114 (3652 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://datasheets.avx.com/schottky.pdf), Alternate KiCad Library -diode 2114 handsolder -0 -2 -2 -PCM_Diode_SMD_AKL -D_2114_3652Metric_Pad1.85x3.75mm_HandSolder -Diode SMD 2114 (3652 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://datasheets.avx.com/schottky.pdf), Alternate KiCad Library -diode 2114 handsolder -0 -2 -2 -PCM_Diode_SMD_AKL -D_2114_3652Metric_TVS -Diode SMD 2114 (3652 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://datasheets.avx.com/schottky.pdf), Bidirectional zener or TVS, Alternate KiCad Library -diode 2114 TVS -0 -2 -2 -PCM_Diode_SMD_AKL -D_2114_3652Metric_Zener -Diode SMD 2114 (3652 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://datasheets.avx.com/schottky.pdf), Zener, Alternate KiCad Library -diode 2114 Zener -0 -2 -2 -PCM_Diode_SMD_AKL -D_2512_6332Metric -Diode SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -diode 2512 -0 -2 -2 -PCM_Diode_SMD_AKL -D_2512_6332Metric_Castellated -Diode SMD 2512 (6332 Metric), castellated end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -diode 2512 castellated -0 -2 -2 -PCM_Diode_SMD_AKL -D_2512_6332Metric_Pad1.52x3.35mm -Diode SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -diode 2512 handsolder -0 -2 -2 -PCM_Diode_SMD_AKL -D_2512_6332Metric_Pad1.52x3.35mm_HandSolder -Diode SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -diode 2512 handsolder -0 -2 -2 -PCM_Diode_SMD_AKL -D_2512_6332Metric_TVS -Diode SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Bidirectional zener or TVS, Alternate KiCad Library -diode 2512 TVS -0 -2 -2 -PCM_Diode_SMD_AKL -D_2512_6332Metric_Zener -Diode SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Zener, Alternate KiCad Library -diode 2512 Zener -0 -2 -2 -PCM_Diode_SMD_AKL -D_2816_7142Metric -Diode SMD 2816 (7142 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), Alternate KiCad Library -diode 2816 -0 -2 -2 -PCM_Diode_SMD_AKL -D_2816_7142Metric_Castellated -Diode SMD 2816 (7142 Metric), castellated end terminal, IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), Alternate KiCad Library -diode 2816 castellated -0 -2 -2 -PCM_Diode_SMD_AKL -D_2816_7142Metric_Pad3.20x4.45mm -Diode SMD 2816 (7142 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), Alternate KiCad Library -diode 2816 handsolder -0 -2 -2 -PCM_Diode_SMD_AKL -D_2816_7142Metric_Pad3.20x4.45mm_HandSolder -Diode SMD 2816 (7142 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), Alternate KiCad Library -diode 2816 handsolder -0 -2 -2 -PCM_Diode_SMD_AKL -D_2816_7142Metric_TVS -Diode SMD 2816 (7142 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), Bidirectional zener or TVS, Alternate KiCad Library -diode 2816 TVS -0 -2 -2 -PCM_Diode_SMD_AKL -D_2816_7142Metric_Zener -Diode SMD 2816 (7142 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), Zener, Alternate KiCad Library -diode 2816 Zener -0 -2 -2 -PCM_Diode_SMD_AKL -D_3220_8050Metric -Diode SMD 3220 (8050 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://datasheets.avx.com/schottky.pdf), Alternate KiCad Library -diode 3220 -0 -2 -2 -PCM_Diode_SMD_AKL -D_3220_8050Metric_Castellated -Diode SMD 3220 (8050 Metric), castellated end terminal, IPC_7351 nominal, (Body size from: http://datasheets.avx.com/schottky.pdf), Alternate KiCad Library -diode 3220 castellated -0 -2 -2 -PCM_Diode_SMD_AKL -D_3220_8050Metric_Pad2.65x5.15mm -Diode SMD 3220 (8050 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://datasheets.avx.com/schottky.pdf), Alternate KiCad Library -diode 3220 handsolder -0 -2 -2 -PCM_Diode_SMD_AKL -D_3220_8050Metric_Pad2.65x5.15mm_HandSolder -Diode SMD 3220 (8050 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://datasheets.avx.com/schottky.pdf), Alternate KiCad Library -diode 3220 handsolder -0 -2 -2 -PCM_Diode_SMD_AKL -D_3220_8050Metric_TVS -Diode SMD 3220 (8050 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://datasheets.avx.com/schottky.pdf), Bidirectional zener or TVS, Alternate KiCad Library -diode 3220 TVS -0 -2 -2 -PCM_Diode_SMD_AKL -D_3220_8050Metric_Zener -Diode SMD 3220 (8050 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://datasheets.avx.com/schottky.pdf), Zener, Alternate KiCad Library -diode 3220 Zener -0 -2 -2 -PCM_Diode_SMD_AKL -D_MELF -Diode, MELF,,, Alternate KiCad Library -Diode MELF -0 -2 -2 -PCM_Diode_SMD_AKL -D_MELF-RM10_Universal -Diode, Universal, MELF, RM10, Handsoldering, SMD, Thruhole,, Alternate KiCad Library -Diode Universal MELF RM10 Handsoldering SMD Thruhole -0 -2 -2 -PCM_Diode_SMD_AKL -D_MELF-RM10_Universal_Handsoldering -Diode, Universal, MELF, RM10, Handsoldering, SMD, Thruhole,, Alternate KiCad Library -Diode Universal MELF RM10 Handsoldering SMD Thruhole -0 -2 -2 -PCM_Diode_SMD_AKL -D_MELF_BigPads -Diode MELF Handsoldering, Alternate KiCad Library -Diode MELF Handsoldering -0 -2 -2 -PCM_Diode_SMD_AKL -D_MELF_Handsoldering -Diode MELF Handsoldering, Alternate KiCad Library -Diode MELF Handsoldering -0 -2 -2 -PCM_Diode_SMD_AKL -D_MELF_TVS -Diode, MELF, Bidirerctional zener or TVS, Alternate KiCad Library -Diode MELF TVS -0 -2 -2 -PCM_Diode_SMD_AKL -D_MELF_Zener -Diode, MELF, Zener, Alternate KiCad Library -Diode MELF Zener -0 -2 -2 -PCM_Diode_SMD_AKL -D_MicroMELF -Diode, MicroMELF, Reflow Soldering, http://www.vishay.com/docs/85597/bzm55.pdf, Alternate KiCad Library -MicroMELF Diode -0 -2 -2 -PCM_Diode_SMD_AKL -D_MicroMELF_BigPads -Diode, MicroMELF, Hand Soldering, http://www.vishay.com/docs/85597/bzm55.pdf, Alternate KiCad Library -MicroMELF Diode -0 -2 -2 -PCM_Diode_SMD_AKL -D_MicroMELF_Handsoldering -Diode, MicroMELF, Hand Soldering, http://www.vishay.com/docs/85597/bzm55.pdf, Alternate KiCad Library -MicroMELF Diode -0 -2 -2 -PCM_Diode_SMD_AKL -D_MicroMELF_TVS -Diode, MicroMELF, Bidirectional zener or TVS, Reflow Soldering, http://www.vishay.com/docs/85597/bzm55.pdf, Alternate KiCad Library -MicroMELF Diode TVS -0 -2 -2 -PCM_Diode_SMD_AKL -D_MicroMELF_Zener -Diode, MicroMELF, Zener, Reflow Soldering, http://www.vishay.com/docs/85597/bzm55.pdf, Alternate KiCad Library -MicroMELF Diode Zener -0 -2 -2 -PCM_Diode_SMD_AKL -D_MicroSMP -MicroSMP (DO-219AD) Diode SMD Footprint, https://www.tme.eu/Document/bb412acf78155f7171e3c753949ff078/mse1p.pdf, Alternate KiCAD Library -MicroSMP DO-219AD -0 -2 -2 -PCM_Diode_SMD_AKL -D_MiniMELF -Diode Mini-MELF, Alternate KiCad Library -Diode Mini-MELF -0 -2 -2 -PCM_Diode_SMD_AKL -D_MiniMELF_BigPads -Diode Mini-MELF Handsoldering, Alternate KiCad Library -Diode Mini-MELF Handsoldering -0 -2 -2 -PCM_Diode_SMD_AKL -D_MiniMELF_Handsoldering -Diode Mini-MELF Handsoldering, Alternate KiCad Library -Diode Mini-MELF Handsoldering -0 -2 -2 -PCM_Diode_SMD_AKL -D_MiniMELF_TVS -Diode Mini-MELF, Bidirectional zener or TVS, Alternate KiCad Library -Diode Mini-MELF TVS -0 -2 -2 -PCM_Diode_SMD_AKL -D_MiniMELF_Zener -Diode Mini-MELF, Zener, Alternate KiCad Library -Diode Mini-MELF Zener -0 -2 -2 -PCM_Diode_SMD_AKL -D_PowerDI-5 -PowerDI,Diode,Vishay,https://www.diodes.com/assets/Package-Files/PowerDI5.pdf, Alternate KiCad Library -PowerDI diode vishay -0 -7 -2 -PCM_Diode_SMD_AKL -D_PowerDI-123 -http://www.diodes.com/_files/datasheets/ds30497.pdf, Alternate KiCad Library -PowerDI diode vishay -0 -2 -2 -PCM_Diode_SMD_AKL -D_Powermite2_AK -Microsemi Powermite 2 SMD power package (https://www.microsemi.com/packaging-information/partpackage/details?pid=5341), Alternate KiCad Library -PowerMite2 -0 -6 -2 -PCM_Diode_SMD_AKL -D_Powermite2_KA -Microsemi Powermite 2 SMD power package (https://www.microsemi.com/packaging-information/partpackage/details?pid=5341), Alternate KiCad Library -PowerMite2 -0 -6 -2 -PCM_Diode_SMD_AKL -D_Powermite3 -Microsemi Powermite 3 SMD power package (https://www.microsemi.com/packaging-information/partpackage/details?pid=5340), Alternate KiCad Library -PowerMite3 -0 -7 -3 -PCM_Diode_SMD_AKL -D_Powermite_AK -Microsemi Powermite SMD power package (https://www.microsemi.com/packaging-information/partpackage/details?pid=5339, https://www.onsemi.com/pub/Collateral/457-04.PDF), Alternate KiCad Library -Powermite -0 -6 -2 -PCM_Diode_SMD_AKL -D_Powermite_KA -Microsemi Powermite SMD power package (https://www.microsemi.com/packaging-information/partpackage/details?pid=5339, https://www.onsemi.com/pub/Collateral/457-04.PDF), Alternate KiCad Library -Powermite -0 -6 -2 -PCM_Diode_SMD_AKL -D_QFN_3.3x3.3mm_P0.65mm -QFN, diode, 3.3x3.3x1mm (https://www.wolfspeed.com/media/downloads/846/C3D1P7060Q.pdf), Alternate KiCad Library -diode qfn 3.3 -0 -3 -2 -PCM_Diode_SMD_AKL -D_SC-80 -JEITA SC-80, Alternate KiCad Library -SC-80 -0 -2 -2 -PCM_Diode_SMD_AKL -D_SC-80_BigPads -JEITA SC-80, Alternate KiCad Library -SC-80 -0 -2 -2 -PCM_Diode_SMD_AKL -D_SC-80_HandSoldering -JEITA SC-80, Alternate KiCad Library -SC-80 -0 -2 -2 -PCM_Diode_SMD_AKL -D_SC-80_TVS -JEITA SC-80, Bidirectional zener or TVS, Alternate KiCad Library -SC-80 TVS -0 -2 -2 -PCM_Diode_SMD_AKL -D_SC-80_Zener -JEITA SC-80, Zener, Alternate KiCad Library -SC-80 Zener -0 -2 -2 -PCM_Diode_SMD_AKL -D_SMA -Diode SMA (DO-214AC), Alternate KiCad Library -Diode SMA (DO-214AC) -0 -2 -2 -PCM_Diode_SMD_AKL -D_SMA-SMB_Universal -Diode, Universal, SMA (DO-214AC) or SMB (DO-214AA), Handsoldering, Alternate KiCad Library -Diode Universal SMA (DO-214AC) SMB (DO-214AA) Handsoldering -0 -2 -2 -PCM_Diode_SMD_AKL -D_SMA-SMB_Universal_Handsoldering -Diode, Universal, SMA (DO-214AC) or SMB (DO-214AA), Handsoldering, Alternate KiCad Library -Diode Universal SMA (DO-214AC) SMB (DO-214AA) Handsoldering -0 -2 -2 -PCM_Diode_SMD_AKL -D_SMAFL -SMA Flat Lead Diode Package, https://www.centralsemi.com/PDFS/CASE/SMAFLPD.PDF, Alternate KiCAD Library -SMAFL SMA flat lead diode -0 -2 -2 -PCM_Diode_SMD_AKL -D_SMA_BigPads -Diode SMA (DO-214AC) Handsoldering, Alternate KiCad Library -Diode SMA (DO-214AC) Handsoldering -0 -2 -2 -PCM_Diode_SMD_AKL -D_SMA_Handsoldering -Diode SMA (DO-214AC) Handsoldering, Alternate KiCad Library -Diode SMA (DO-214AC) Handsoldering -0 -2 -2 -PCM_Diode_SMD_AKL -D_SMA_TVS -Diode SMA (DO-214AC), Bidirectional zener or TVS, Alternate KiCad Library -Diode SMA (DO-214AC) TVS -0 -2 -2 -PCM_Diode_SMD_AKL -D_SMA_Zener -Diode SMA (DO-214AC), Zener, Alternate KiCad Library -Diode SMA (DO-214AC) Zener -0 -2 -2 -PCM_Diode_SMD_AKL -D_SMB -Diode SMB (DO-214AA), Alternate KiCad Library -Diode SMB (DO-214AA) -0 -2 -2 -PCM_Diode_SMD_AKL -D_SMB-SMC_Universal -Diode, Universal, SMB(DO-214AA) or SMC (DO-214AB), Handsoldering, Alternate KiCad Library -Diode Universal SMB(DO-214AA) SMC (DO-214AB) Handsoldering -0 -2 -2 -PCM_Diode_SMD_AKL -D_SMB-SMC_Universal_Handsoldering -Diode, Universal, SMB(DO-214AA) or SMC (DO-214AB), Handsoldering, Alternate KiCad Library -Diode Universal SMB(DO-214AA) SMC (DO-214AB) Handsoldering -0 -2 -2 -PCM_Diode_SMD_AKL -D_SMBFL -SMB Flat Lead Package, https://www.centralsemi.com/PDFS/CASE/SMBFLPD.PDF, Alternate KiCAD Library -SMBFL SMB flat lead diode -0 -2 -2 -PCM_Diode_SMD_AKL -D_SMB_BigPads -Diode SMB (DO-214AA) Handsoldering, Alternate KiCad Library -Diode SMB (DO-214AA) Handsoldering -0 -2 -2 -PCM_Diode_SMD_AKL -D_SMB_Handsoldering -Diode SMB (DO-214AA) Handsoldering, Alternate KiCad Library -Diode SMB (DO-214AA) Handsoldering -0 -2 -2 -PCM_Diode_SMD_AKL -D_SMB_Modified -Diode SMB (DO-214AA) Modified (http://www.littelfuse.com/~/media/electronics/datasheets/sidactors/littelfuse_sidactor_battrax_positive_negative_modified_do_214_datasheet.pdf.pdf), Alternate KiCad Library -Diode SMB (DO-214AA) -0 -3 -3 -PCM_Diode_SMD_AKL -D_SMB_TVS -Diode SMB (DO-214AA), Bidirectional zener or TVS, Alternate KiCad Library -Diode SMB (DO-214AA) TVS -0 -2 -2 -PCM_Diode_SMD_AKL -D_SMB_Zener -Diode SMB (DO-214AA), Zener, Alternate KiCad Library -Diode SMB (DO-214AA) Zener -0 -2 -2 -PCM_Diode_SMD_AKL -D_SMC -Diode SMC (DO-214AB), Alternate KiCad Library -Diode SMC (DO-214AB) -0 -2 -2 -PCM_Diode_SMD_AKL -D_SMC-RM10_Universal -Diode, Universal, SMC (DO-214AB), RM10, Handsoldering, SMD, Thruhole, Alternate KiCad Library -Diode Universal SMC (DO-214AB) RM10 Handsoldering SMD Thruhole -0 -2 -2 -PCM_Diode_SMD_AKL -D_SMC-RM10_Universal_Handsoldering -Diode, Universal, SMC (DO-214AB), RM10, Handsoldering, SMD, Thruhole, Alternate KiCad Library -Diode Universal SMC (DO-214AB) RM10 Handsoldering SMD Thruhole -0 -2 -2 -PCM_Diode_SMD_AKL -D_SMC_BigPads -Diode SMC (DO-214AB) Handsoldering, Alternate KiCad Library -Diode SMC (DO-214AB) Handsoldering -0 -2 -2 -PCM_Diode_SMD_AKL -D_SMC_Handsoldering -Diode SMC (DO-214AB) Handsoldering, Alternate KiCad Library -Diode SMC (DO-214AB) Handsoldering -0 -2 -2 -PCM_Diode_SMD_AKL -D_SMC_TVS -Diode SMC (DO-214AB), Bidirectional zener or TVS, Alternate KiCad Library -Diode SMC (DO-214AB) TVS -0 -2 -2 -PCM_Diode_SMD_AKL -D_SMC_Zener -Diode SMC (DO-214AB), Zener, Alternate KiCad Library -Diode SMC (DO-214AB) Zener -0 -2 -2 -PCM_Diode_SMD_AKL -D_SMF -Diode SMF (DO-219AB), http://www.vishay.com/docs/95572/smf_do-219ab.pdf, Alternate KiCad Library -Diode SMF (DO-214AB) -0 -2 -2 -PCM_Diode_SMD_AKL -D_SMF_TVS -Diode SMF (DO-219AB), http://www.vishay.com/docs/95572/smf_do-219ab.pdf, Bidirectional zener or TVS, Alternate KiCad Library -Diode SMF (DO-214AB) TVS -0 -2 -2 -PCM_Diode_SMD_AKL -D_SMF_Zener -Diode SMF (DO-219AB), http://www.vishay.com/docs/95572/smf_do-219ab.pdf, Zener, Alternate KiCad Library -Diode SMF (DO-214AB) Zener -0 -2 -2 -PCM_Diode_SMD_AKL -D_SMP -SMP Diode Package (DO220AA), https://www.tme.eu/Document/aa5a89b017df4ae26aca1b4f51120387/au1p.pdf, Alternate KiCAD Library -SMP diode DO220AA -0 -6 -2 -PCM_Diode_SMD_AKL -D_SOD-110 -SOD-110, Alternate KiCad Library -SOD-110 -0 -2 -2 -PCM_Diode_SMD_AKL -D_SOD-110_Zener -SOD-110, Zener, Alternate KiCad Library -SOD-110 Zener -0 -2 -2 -PCM_Diode_SMD_AKL -D_SOD-123 -SOD-123, Alternate KiCad Library -SOD-123 -0 -2 -2 -PCM_Diode_SMD_AKL -D_SOD-123F -D_SOD-123F, Alternate KiCad Library -D_SOD-123F -0 -2 -2 -PCM_Diode_SMD_AKL -D_SOD-123F_TVS -D_SOD-123F, Bidirectional zener or TVS, Alternate KiCad Library -D_SOD-123F TVS -0 -2 -2 -PCM_Diode_SMD_AKL -D_SOD-123F_Zener -D_SOD-123F, Zener, Alternate KiCad Library -D_SOD-123F Zener -0 -2 -2 -PCM_Diode_SMD_AKL -D_SOD-123_TVS -SOD-123, Bidirectional zener or TVS, Alternate KiCad Library -SOD-123 TVS -0 -2 -2 -PCM_Diode_SMD_AKL -D_SOD-123_Zener -SOD-123, Zener, Alternate KiCad Library -SOD-123 Zener -0 -2 -2 -PCM_Diode_SMD_AKL -D_SOD-128 -D_SOD-128 (CFP5 SlimSMAW), https://assets.nexperia.com/documents/outline-drawing/SOD128.pdf, Alternate KiCad Library -D_SOD-128 -0 -2 -2 -PCM_Diode_SMD_AKL -D_SOD-128_TVS -D_SOD-128 (CFP5 SlimSMAW), https://assets.nexperia.com/documents/outline-drawing/SOD128.pdf, Bidirectional zener or TVS, Alternate KiCad Library -D_SOD-128 TVS -0 -2 -2 -PCM_Diode_SMD_AKL -D_SOD-128_Zener -D_SOD-128 (CFP5 SlimSMAW), https://assets.nexperia.com/documents/outline-drawing/SOD128.pdf, Zener, Alternate KiCad Library -D_SOD-128 Zener -0 -2 -2 -PCM_Diode_SMD_AKL -D_SOD-323 -SOD-323, Alternate KiCad Library -SOD-323 -0 -2 -2 -PCM_Diode_SMD_AKL -D_SOD-323F -SOD-323F http://www.nxp.com/documents/outline_drawing/SOD323F.pdf, Alternate KiCad Library -SOD-323F -0 -2 -2 -PCM_Diode_SMD_AKL -D_SOD-323F_TVS -SOD-323F http://www.nxp.com/documents/outline_drawing/SOD323F.pdf, Bidirectional zener or TVS, Alternate KiCad Library -SOD-323F TVS -0 -2 -2 -PCM_Diode_SMD_AKL -D_SOD-323F_Zener -SOD-323F http://www.nxp.com/documents/outline_drawing/SOD323F.pdf, Zener, Alternate KiCad Library -SOD-323F Zener -0 -2 -2 -PCM_Diode_SMD_AKL -D_SOD-323_BigPads -SOD-323, Alternate KiCad Library -SOD-323 -0 -2 -2 -PCM_Diode_SMD_AKL -D_SOD-323_HandSoldering -SOD-323, Alternate KiCad Library -SOD-323 -0 -2 -2 -PCM_Diode_SMD_AKL -D_SOD-323_TVS -SOD-323, Bidirectional zener or TVS, Alternate KiCad Library -SOD-323 -0 -2 -2 -PCM_Diode_SMD_AKL -D_SOD-323_Zener -SOD-323, Zener, Alternate KiCad Library -SOD-323 Zener -0 -2 -2 -PCM_Diode_SMD_AKL -D_SOD-523 -http://www.diodes.com/datasheets/ap02001.pdf p.144, Alternate KiCad Library -Diode SOD523 -0 -2 -2 -PCM_Diode_SMD_AKL -D_SOD-523_TVS -http://www.diodes.com/datasheets/ap02001.pdf p.144, Bidirectional zener or TVS, Alternate KiCad Library -Diode SOD523 TVS -0 -2 -2 -PCM_Diode_SMD_AKL -D_SOD-882_DFN1006-2 -SOD-882 (DFN1006-2) Diode package, https://assets.nexperia.com/documents/package-information/SOD882.pdf, Alternate KiCAD Library -SOD-882 DFN1006-2 diode smd -0 -2 -2 -PCM_Diode_SMD_AKL -D_SOD-882_DFN1006-2_TVS -SOD-882 (DFN1006-2) Diode package, https://assets.nexperia.com/documents/package-information/SOD882.pdf, Alternate KiCAD Library -SOD-882 DFN1006-2 diode smd -0 -2 -2 -PCM_Diode_SMD_AKL -D_SOD-923 -https://www.onsemi.com/pub/Collateral/ESD9B-D.PDF#page=4, Alternate KiCad Library -Diode SOD923 -0 -2 -2 -PCM_Diode_SMD_AKL -D_SOD-923_TVS -https://www.onsemi.com/pub/Collateral/ESD9B-D.PDF#page=4, Bidirectional zener or TVS, Alternate KiCad Library -Diode SOD923, Alternate KiCad Library -0 -2 -2 -PCM_Diode_SMD_AKL -D_TUMD2 -ROHM - TUMD2, Alternate KiCad Library -TUMD2 -0 -2 -2 -PCM_Diode_SMD_AKL -Diode_Bridge_Bourns_CD-DF4xxS -8.1x10.5mm, 4A, single phase bridge rectifier, https://www.bourns.com/docs/Product-Datasheets/CD-DF4xxSL.pdf, Alternate KiCad Library -Surface Mount Bridge Rectifier Diode -0 -4 -4 -PCM_Diode_SMD_AKL -Diode_Bridge_Diotec_ABS -SMD diode bridge ABS (Diotec), see https://diotec.com/tl_files/diotec/files/pdf/datasheets/abs2.pdf, Alternate KiCad Library -ABS MBLS -0 -4 -4 -PCM_Diode_SMD_AKL -Diode_Bridge_Diotec_MicroDil_3.0x3.0x1.8mm -SMD package Diotec Diotec MicroDil, body 3.0x3.0x1.8mm (e.g. diode bridge), see https://diotec.com/tl_files/diotec/files/pdf/datasheets/mys40.pdf, Alternate KiCad Library -Diotec MicroDil diode bridge -0 -4 -4 -PCM_Diode_SMD_AKL -Diode_Bridge_Diotec_SO-DIL-Slim -SMD diode bridge Diotec SO-DIL Slim, see https://diotec.com/tl_files/diotec/files/pdf/datasheets/b40fs.pdf, Alternate KiCad Library -DFS SO-DIL Slim -0 -4 -4 -PCM_Diode_SMD_AKL -Diode_Bridge_MBF -SMD Diode Bridge, Diodes MBF, https://www.diodes.com/assets/Package-Files/MBF.pdf, Alternate KiCAD Library -SMD diode bridge mbf -0 -4 -4 -PCM_Diode_SMD_AKL -Diode_Bridge_MBS -SMD Diode Bridge, Diodes MBS, https://www.diodes.com/assets/Package-Files/MBS.pdf, Alternate KiCAD Library -SMD diode bridge rectifier mbs -0 -4 -4 -PCM_Diode_SMD_AKL -Diode_Bridge_Vishay_DFS -SMD diode bridge DFS, see http://www.vishay.com/docs/88854/padlayouts.pdf, Alternate KiCad Library -DFS -0 -4 -4 -PCM_Diode_SMD_AKL -Diode_Bridge_Vishay_DFSFlat -SMD diode bridge Low Profile DFS "Flat", see http://www.vishay.com/docs/88874/dfl15005.pdf, Alternate KiCad Library -DFS -0 -4 -4 -PCM_Diode_SMD_AKL -Diode_Bridge_Vishay_MBLS -SMD diode bridge MBLS, see http://www.vishay.com/docs/89959/mbl104s.pdf http://www.vishay.com/docs/88854/padlayouts.pdf, Alternate KiCad Library -DFS -0 -4 -4 -PCM_Diode_SMD_Handsoldering_AKL -D_0201_0603Metric -Diode SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), Alternate KiCad Library -diode 0201 -0 -4 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_0201_0603Metric_TVS -Diode SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), Bidirectional zener or TVS, Alternate KiCad Library -diode 0201 TVS -0 -4 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_0402_1005Metric -Diode SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -diode 0402 -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_0402_1005Metric_TVS -Diode SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Bidirectional zener or TVS, Alternate KiCad Library -diode 0402 TVS -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_0603_1608Metric -Diode SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -diode 0603 -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_0603_1608Metric_Castellated -Diode SMD 0603 (1608 Metric), castellated end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -diode 0603 castellated -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_0603_1608Metric_Pad1.05x0.95mm -Diode SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -diode 0603 handsolder -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_0603_1608Metric_TVS -Diode SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Bidirectional zener or TVS, Alternate KiCad Library -diode 0603 TVS -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_0805_2012Metric -Diode SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), Alternate KiCad Library -diode 0805 -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_0805_2012Metric_Castellated -Diode SMD 0805 (2012 Metric), castellated end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), Alternate KiCad Library -diode 0805 castellated -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_0805_2012Metric_Pad1.15x1.40mm -Diode SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), Alternate KiCad Library -diode 0805 handsolder -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_0805_2012Metric_TVS -Diode SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), Bidirectional zener or TVS, Alternate KiCad Library -diode 0805 TVS -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_0805_2012Metric_Zener -Diode SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), Zener, Alternate KiCad Library -diode 0805 Zener -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_01005_0402Metric -Diode SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), Alternate KiCad Library -diode 01005 -0 -4 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_01005_0402Metric_TVS -Diode SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), Bidirectional zener or TVS, Alternate KiCad Library -diode 01005 TVS -0 -4 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_1206_3216Metric -Diode SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -diode 1206 -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_1206_3216Metric_Castellated -Diode SMD 1206 (3216 Metric), castellated end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -diode 1206 castellated -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_1206_3216Metric_Pad1.42x1.75mm -Diode SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -diode 1206 handsolder -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_1206_3216Metric_TVS -Diode SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Bidirectional zener or TVS, Alternate KiCad Library -diode 1206 TVS -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_1206_3216Metric_Zener -Diode SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Zener, Alternate KiCad Library -diode 1206 Zener -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_1210_3225Metric -Diode SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -diode 1210 -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_1210_3225Metric_Castellated -Diode SMD 1210 (3225 Metric), castellated end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -diode 1210 castellated -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_1210_3225Metric_Pad1.42x2.65mm -Diode SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -diode 1210 handsolder -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_1210_3225Metric_TVS -Diode SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Bidirectional zener or TVS, Alternate KiCad Library -diode 1210 TVS -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_1210_3225Metric_Zener -Diode SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Zener, Alternate KiCad Library -diode 1210 Zener -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_1806_4516Metric -Diode SMD 1806 (4516 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.modelithics.com/models/Vendor/MuRata/BLM41P.pdf), Alternate KiCad Library -diode 1806 -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_1806_4516Metric_Castellated -Diode SMD 1806 (4516 Metric), castellated end terminal, IPC_7351 nominal, (Body size source: https://www.modelithics.com/models/Vendor/MuRata/BLM41P.pdf), Alternate KiCad Library -diode 1806 castellated -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_1806_4516Metric_Pad1.57x1.80mm -Diode SMD 1806 (4516 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.modelithics.com/models/Vendor/MuRata/BLM41P.pdf), Alternate KiCad Library -diode 1806 handsolder -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_1806_4516Metric_TVS -Diode SMD 1806 (4516 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.modelithics.com/models/Vendor/MuRata/BLM41P.pdf), Bidirectional zener or TVS, Alternate KiCad Library -diode 1806 TVS -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_1806_4516Metric_Zener -Diode SMD 1806 (4516 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.modelithics.com/models/Vendor/MuRata/BLM41P.pdf), Zener, Alternate KiCad Library -diode 1806 Zener -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_1812_4532Metric -Diode SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), Alternate KiCad Library -diode 1812 -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_1812_4532Metric_Castellated -Diode SMD 1812 (4532 Metric), castellated end terminal, IPC_7351 nominal, (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), Alternate KiCad Library -diode 1812 castellated -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_1812_4532Metric_Pad1.30x3.40mm -Diode SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), Alternate KiCad Library -diode 1812 handsolder -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_1812_4532Metric_TVS -Diode SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), Bidirectional zener or TVS, Alternate KiCad Library -diode 1812 TVS -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_1812_4532Metric_Zener -Diode SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), Zener, Alternate KiCad Library -diode 1812 Zener -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_2010_5025Metric -Diode SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -diode 2010 -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_2010_5025Metric_Castellated -Diode SMD 2010 (5025 Metric), castellated end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -diode 2010 castellated -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_2010_5025Metric_Pad1.52x2.65mm -Diode SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -diode 2010 handsolder -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_2010_5025Metric_TVS -Diode SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Bidirectional zener or TVS, Alternate KiCad Library -diode 2010 TVS -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_2010_5025Metric_Zener -Diode SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Zener, Alternate KiCad Library -diode 2010 Zener -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_2114_3652Metric -Diode SMD 2114 (3652 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://datasheets.avx.com/schottky.pdf), Alternate KiCad Library -diode 2114 -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_2114_3652Metric_Castellated -Diode SMD 2114 (3652 Metric), castellated end terminal, IPC_7351 nominal, (Body size from: http://datasheets.avx.com/schottky.pdf), Alternate KiCad Library -diode 2114 castellated -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_2114_3652Metric_Pad1.85x3.75mm -Diode SMD 2114 (3652 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://datasheets.avx.com/schottky.pdf), Alternate KiCad Library -diode 2114 handsolder -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_2114_3652Metric_TVS -Diode SMD 2114 (3652 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://datasheets.avx.com/schottky.pdf), Bidirectional zener or TVS, Alternate KiCad Library -diode 2114 TVS -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_2114_3652Metric_Zener -Diode SMD 2114 (3652 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://datasheets.avx.com/schottky.pdf), Zener, Alternate KiCad Library -diode 2114 Zener -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_2512_6332Metric -Diode SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -diode 2512 -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_2512_6332Metric_Castellated -Diode SMD 2512 (6332 Metric), castellated end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -diode 2512 castellated -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_2512_6332Metric_Pad1.52x3.35mm -Diode SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -diode 2512 handsolder -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_2512_6332Metric_TVS -Diode SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Bidirectional zener or TVS, Alternate KiCad Library -diode 2512 TVS -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_2512_6332Metric_Zener -Diode SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Zener, Alternate KiCad Library -diode 2512 Zener -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_2816_7142Metric -Diode SMD 2816 (7142 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), Alternate KiCad Library -diode 2816 -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_2816_7142Metric_Castellated -Diode SMD 2816 (7142 Metric), castellated end terminal, IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), Alternate KiCad Library -diode 2816 castellated -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_2816_7142Metric_Pad3.20x4.45mm -Diode SMD 2816 (7142 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), Alternate KiCad Library -diode 2816 handsolder -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_2816_7142Metric_TVS -Diode SMD 2816 (7142 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), Bidirectional zener or TVS, Alternate KiCad Library -diode 2816 TVS -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_2816_7142Metric_Zener -Diode SMD 2816 (7142 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), Zener, Alternate KiCad Library -diode 2816 Zener -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_3220_8050Metric -Diode SMD 3220 (8050 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://datasheets.avx.com/schottky.pdf), Alternate KiCad Library -diode 3220 -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_3220_8050Metric_Castellated -Diode SMD 3220 (8050 Metric), castellated end terminal, IPC_7351 nominal, (Body size from: http://datasheets.avx.com/schottky.pdf), Alternate KiCad Library -diode 3220 castellated -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_3220_8050Metric_Pad2.65x5.15mm -Diode SMD 3220 (8050 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://datasheets.avx.com/schottky.pdf), Alternate KiCad Library -diode 3220 handsolder -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_3220_8050Metric_TVS -Diode SMD 3220 (8050 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://datasheets.avx.com/schottky.pdf), Bidirectional zener or TVS, Alternate KiCad Library -diode 3220 TVS -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_3220_8050Metric_Zener -Diode SMD 3220 (8050 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://datasheets.avx.com/schottky.pdf), Zener, Alternate KiCad Library -diode 3220 Zener -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_MELF -Diode, MELF,,, Alternate KiCad Library -Diode MELF -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_MELF-RM10_Universal -Diode, Universal, MELF, RM10, Handsoldering, SMD, Thruhole,, Alternate KiCad Library -Diode Universal MELF RM10 Handsoldering SMD Thruhole -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_MELF_BigPads -Diode MELF Handsoldering, Alternate KiCad Library -Diode MELF Handsoldering -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_MELF_TVS -Diode, MELF, Bidirerctional zener or TVS, Alternate KiCad Library -Diode MELF TVS -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_MELF_Zener -Diode, MELF, Zener, Alternate KiCad Library -Diode MELF Zener -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_MicroMELF -Diode, MicroMELF, Reflow Soldering, http://www.vishay.com/docs/85597/bzm55.pdf, Alternate KiCad Library -MicroMELF Diode -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_MicroMELF_BigPads -Diode, MicroMELF, Hand Soldering, http://www.vishay.com/docs/85597/bzm55.pdf, Alternate KiCad Library -MicroMELF Diode -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_MicroMELF_TVS -Diode, MicroMELF, Bidirectional zener or TVS, Reflow Soldering, http://www.vishay.com/docs/85597/bzm55.pdf, Alternate KiCad Library -MicroMELF Diode TVS -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_MicroMELF_Zener -Diode, MicroMELF, Zener, Reflow Soldering, http://www.vishay.com/docs/85597/bzm55.pdf, Alternate KiCad Library -MicroMELF Diode Zener -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_MicroSMP -MicroSMP (DO-219AD) Diode SMD Footprint, https://www.tme.eu/Document/bb412acf78155f7171e3c753949ff078/mse1p.pdf, Alternate KiCAD Library -MicroSMP DO-219AD -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_MiniMELF -Diode Mini-MELF, Alternate KiCad Library -Diode Mini-MELF -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_MiniMELF_BigPads -Diode Mini-MELF Handsoldering, Alternate KiCad Library -Diode Mini-MELF Handsoldering -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_MiniMELF_Diac -Diode Mini-MELF, Diac Symbol, Alternate KiCad Library -Diode Mini-MELF -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_MiniMELF_TVS -Diode Mini-MELF, Bidirectional zener or TVS, Alternate KiCad Library -Diode Mini-MELF TVS -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_MiniMELF_Zener -Diode Mini-MELF, Zener, Alternate KiCad Library -Diode Mini-MELF Zener -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_PowerDI-5 -PowerDI,Diode,Vishay,https://www.diodes.com/assets/Package-Files/PowerDI5.pdf, Alternate KiCad Library -PowerDI diode vishay -0 -7 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_PowerDI-123 -http://www.diodes.com/_files/datasheets/ds30497.pdf, Alternate KiCad Library -PowerDI diode vishay -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_Powermite2_AK -Microsemi Powermite 2 SMD power package (https://www.microsemi.com/packaging-information/partpackage/details?pid=5341), Alternate KiCad Library -PowerMite2 -0 -6 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_Powermite2_KA -Microsemi Powermite 2 SMD power package (https://www.microsemi.com/packaging-information/partpackage/details?pid=5341), Alternate KiCad Library -PowerMite2 -0 -6 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_Powermite3 -Microsemi Powermite 3 SMD power package (https://www.microsemi.com/packaging-information/partpackage/details?pid=5340), Alternate KiCad Library -PowerMite3 -0 -7 -3 -PCM_Diode_SMD_Handsoldering_AKL -D_Powermite_AK -Microsemi Powermite SMD power package (https://www.microsemi.com/packaging-information/partpackage/details?pid=5339, https://www.onsemi.com/pub/Collateral/457-04.PDF), Alternate KiCad Library -Powermite -0 -6 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_Powermite_KA -Microsemi Powermite SMD power package (https://www.microsemi.com/packaging-information/partpackage/details?pid=5339, https://www.onsemi.com/pub/Collateral/457-04.PDF), Alternate KiCad Library -Powermite -0 -6 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_QFN_3.3x3.3mm_P0.65mm -QFN, diode, 3.3x3.3x1mm (https://www.wolfspeed.com/media/downloads/846/C3D1P7060Q.pdf), Alternate KiCad Library -diode qfn 3.3 -0 -3 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_SC-80 -JEITA SC-80, Alternate KiCad Library -SC-80 -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_SC-80_BigPads -JEITA SC-80, Alternate KiCad Library -SC-80 -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_SC-80_TVS -JEITA SC-80, Bidirectional zener or TVS, Alternate KiCad Library -SC-80 TVS -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_SC-80_Zener -JEITA SC-80, Zener, Alternate KiCad Library -SC-80 Zener -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_SMA -Diode SMA (DO-214AC), Alternate KiCad Library -Diode SMA (DO-214AC) -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_SMA-SMB_Universal -Diode, Universal, SMA (DO-214AC) or SMB (DO-214AA), Handsoldering, Alternate KiCad Library -Diode Universal SMA (DO-214AC) SMB (DO-214AA) Handsoldering -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_SMAFL -SMA Flat Lead Diode Package, https://www.centralsemi.com/PDFS/CASE/SMAFLPD.PDF, Alternate KiCAD Library -SMAFL SMA flat lead diode -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_SMA_BigPads -Diode SMA (DO-214AC) Handsoldering, Alternate KiCad Library -Diode SMA (DO-214AC) Handsoldering -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_SMA_TVS -Diode SMA (DO-214AC), Bidirectional zener or TVS, Alternate KiCad Library -Diode SMA (DO-214AC) TVS -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_SMA_Zener -Diode SMA (DO-214AC), Zener, Alternate KiCad Library -Diode SMA (DO-214AC) Zener -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_SMB -Diode SMB (DO-214AA), Alternate KiCad Library -Diode SMB (DO-214AA) -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_SMB-SMC_Universal -Diode, Universal, SMB(DO-214AA) or SMC (DO-214AB), Handsoldering, Alternate KiCad Library -Diode Universal SMB(DO-214AA) SMC (DO-214AB) Handsoldering -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_SMBFL -SMB Flat Lead Package, https://www.centralsemi.com/PDFS/CASE/SMBFLPD.PDF, Alternate KiCAD Library -SMBFL SMB flat lead diode -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_SMB_BigPads -Diode SMB (DO-214AA) Handsoldering, Alternate KiCad Library -Diode SMB (DO-214AA) Handsoldering -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_SMB_Modified -Diode SMB (DO-214AA) Modified (http://www.littelfuse.com/~/media/electronics/datasheets/sidactors/littelfuse_sidactor_battrax_positive_negative_modified_do_214_datasheet.pdf.pdf), Alternate KiCad Library -Diode SMB (DO-214AA) -0 -3 -3 -PCM_Diode_SMD_Handsoldering_AKL -D_SMB_TVS -Diode SMB (DO-214AA), Bidirectional zener or TVS, Alternate KiCad Library -Diode SMB (DO-214AA) TVS -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_SMB_Zener -Diode SMB (DO-214AA), Zener, Alternate KiCad Library -Diode SMB (DO-214AA) Zener -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_SMC -Diode SMC (DO-214AB), Alternate KiCad Library -Diode SMC (DO-214AB) -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_SMC-RM10_Universal -Diode, Universal, SMC (DO-214AB), RM10, Handsoldering, SMD, Thruhole, Alternate KiCad Library -Diode Universal SMC (DO-214AB) RM10 Handsoldering SMD Thruhole -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_SMC_BigPads -Diode SMC (DO-214AB) Handsoldering, Alternate KiCad Library -Diode SMC (DO-214AB) Handsoldering -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_SMC_TVS -Diode SMC (DO-214AB), Bidirectional zener or TVS, Alternate KiCad Library -Diode SMC (DO-214AB) TVS -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_SMC_Zener -Diode SMC (DO-214AB), Zener, Alternate KiCad Library -Diode SMC (DO-214AB) Zener -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_SMF -Diode SMF (DO-219AB), http://www.vishay.com/docs/95572/smf_do-219ab.pdf, Alternate KiCad Library -Diode SMF (DO-214AB) -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_SMF_TVS -Diode SMF (DO-219AB), http://www.vishay.com/docs/95572/smf_do-219ab.pdf, Bidirectional zener or TVS, Alternate KiCad Library -Diode SMF (DO-214AB) TVS -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_SMF_Zener -Diode SMF (DO-219AB), http://www.vishay.com/docs/95572/smf_do-219ab.pdf, Zener, Alternate KiCad Library -Diode SMF (DO-214AB) Zener -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_SMP -SMP Diode Package (DO220AA), https://www.tme.eu/Document/aa5a89b017df4ae26aca1b4f51120387/au1p.pdf, Alternate KiCAD Library -SMP diode DO220AA -0 -6 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_SOD-110 -SOD-110, Alternate KiCad Library -SOD-110 -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_SOD-110_Zener -SOD-110, Zener, Alternate KiCad Library -SOD-110 Zener -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_SOD-123 -SOD-123, Alternate KiCad Library -SOD-123 -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_SOD-123F -D_SOD-123F, Alternate KiCad Library -D_SOD-123F -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_SOD-123F_TVS -D_SOD-123F, Bidirectional zener or TVS, Alternate KiCad Library -D_SOD-123F TVS -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_SOD-123F_Zener -D_SOD-123F, Zener, Alternate KiCad Library -D_SOD-123F Zener -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_SOD-123_TVS -SOD-123, Bidirectional zener or TVS, Alternate KiCad Library -SOD-123 TVS -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_SOD-123_Zener -SOD-123, Zener, Alternate KiCad Library -SOD-123 Zener -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_SOD-128 -D_SOD-128 (CFP5 SlimSMAW), https://assets.nexperia.com/documents/outline-drawing/SOD128.pdf, Alternate KiCad Library -D_SOD-128 -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_SOD-128_TVS -D_SOD-128 (CFP5 SlimSMAW), https://assets.nexperia.com/documents/outline-drawing/SOD128.pdf, Bidirectional zener or TVS, Alternate KiCad Library -D_SOD-128 TVS -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_SOD-128_Zener -D_SOD-128 (CFP5 SlimSMAW), https://assets.nexperia.com/documents/outline-drawing/SOD128.pdf, Zener, Alternate KiCad Library -D_SOD-128 Zener -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_SOD-323 -SOD-323, Alternate KiCad Library -SOD-323 -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_SOD-323F -SOD-323F http://www.nxp.com/documents/outline_drawing/SOD323F.pdf, Alternate KiCad Library -SOD-323F -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_SOD-323F_TVS -SOD-323F http://www.nxp.com/documents/outline_drawing/SOD323F.pdf, Bidirectional zener or TVS, Alternate KiCad Library -SOD-323F TVS -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_SOD-323F_Zener -SOD-323F http://www.nxp.com/documents/outline_drawing/SOD323F.pdf, Zener, Alternate KiCad Library -SOD-323F Zener -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_SOD-323_BigPads -SOD-323, Alternate KiCad Library -SOD-323 -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_SOD-323_HandSoldering -SOD-323, Alternate KiCad Library -SOD-323 -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_SOD-323_TVS -SOD-323, Bidirectional zener or TVS, Alternate KiCad Library -SOD-323 -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_SOD-323_Zener -SOD-323, Zener, Alternate KiCad Library -SOD-323 Zener -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_SOD-523 -http://www.diodes.com/datasheets/ap02001.pdf p.144, Alternate KiCad Library -Diode SOD523 -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_SOD-523_TVS -http://www.diodes.com/datasheets/ap02001.pdf p.144, Bidirectional zener or TVS, Alternate KiCad Library -Diode SOD523 TVS -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_SOD-882_DFN1006-2 -SOD-882 (DFN1006-2) Diode package, https://assets.nexperia.com/documents/package-information/SOD882.pdf, Alternate KiCAD Library -SOD-882 DFN1006-2 diode smd -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_SOD-882_DFN1006-2_TVS -SOD-882 (DFN1006-2) Diode package, https://assets.nexperia.com/documents/package-information/SOD882.pdf, Alternate KiCAD Library -SOD-882 DFN1006-2 diode smd -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_SOD-923 -https://www.onsemi.com/pub/Collateral/ESD9B-D.PDF#page=4, Alternate KiCad Library -Diode SOD923 -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_SOD-923_TVS -https://www.onsemi.com/pub/Collateral/ESD9B-D.PDF#page=4, Bidirectional zener or TVS, Alternate KiCad Library -Diode SOD923, Alternate KiCad Library -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -D_TUMD2 -ROHM - TUMD2, Alternate KiCad Library -TUMD2 -0 -2 -2 -PCM_Diode_SMD_Handsoldering_AKL -Diode_Bridge_Bourns_CD-DF4xxS -8.1x10.5mm, 4A, single phase bridge rectifier, https://www.bourns.com/docs/Product-Datasheets/CD-DF4xxSL.pdf, Alternate KiCad Library -Surface Mount Bridge Rectifier Diode -0 -4 -4 -PCM_Diode_SMD_Handsoldering_AKL -Diode_Bridge_Diotec_ABS -SMD diode bridge ABS (Diotec), see https://diotec.com/tl_files/diotec/files/pdf/datasheets/abs2.pdf, Alternate KiCad Library -ABS MBLS -0 -4 -4 -PCM_Diode_SMD_Handsoldering_AKL -Diode_Bridge_Diotec_MicroDil_3.0x3.0x1.8mm -SMD package Diotec Diotec MicroDil, body 3.0x3.0x1.8mm (e.g. diode bridge), see https://diotec.com/tl_files/diotec/files/pdf/datasheets/mys40.pdf, Alternate KiCad Library -Diotec MicroDil diode bridge -0 -4 -4 -PCM_Diode_SMD_Handsoldering_AKL -Diode_Bridge_Diotec_SO-DIL-Slim -SMD diode bridge Diotec SO-DIL Slim, see https://diotec.com/tl_files/diotec/files/pdf/datasheets/b40fs.pdf, Alternate KiCad Library -DFS SO-DIL Slim -0 -4 -4 -PCM_Diode_SMD_Handsoldering_AKL -Diode_Bridge_MBF -SMD Diode Bridge, Diodes MBF, https://www.diodes.com/assets/Package-Files/MBF.pdf, Alternate KiCAD Library -SMD diode bridge mbf -0 -4 -4 -PCM_Diode_SMD_Handsoldering_AKL -Diode_Bridge_MBS -SMD Diode Bridge, Diodes MBS, https://www.diodes.com/assets/Package-Files/MBS.pdf, Alternate KiCAD Library -SMD diode bridge rectifier mbs -0 -4 -4 -PCM_Diode_SMD_Handsoldering_AKL -Diode_Bridge_Vishay_DFS -SMD diode bridge DFS, see http://www.vishay.com/docs/88854/padlayouts.pdf, Alternate KiCad Library -DFS -0 -4 -4 -PCM_Diode_SMD_Handsoldering_AKL -Diode_Bridge_Vishay_DFSFlat -SMD diode bridge Low Profile DFS "Flat", see http://www.vishay.com/docs/88874/dfl15005.pdf, Alternate KiCad Library -DFS -0 -4 -4 -PCM_Diode_SMD_Handsoldering_AKL -Diode_Bridge_Vishay_MBLS -SMD diode bridge MBLS, see http://www.vishay.com/docs/89959/mbl104s.pdf http://www.vishay.com/docs/88854/padlayouts.pdf, Alternate KiCad Library -DFS -0 -4 -4 -PCM_Diode_THT_AKL -D_5KPW_P7.62mm_Vertical_AnodeUp -Diode, 5KPW series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=9*8mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5KPW series Axial Vertical pin pitch 7.62mm length 9mm diameter 8mm -0 -2 -2 -PCM_Diode_THT_AKL -D_5KPW_P7.62mm_Vertical_KathodeUp -Diode, 5KPW series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=9*8mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5KPW series Axial Vertical pin pitch 7.62mm length 9mm diameter 8mm -0 -2 -2 -PCM_Diode_THT_AKL -D_5KPW_P7.62mm_Vertical_TVS -Diode, 5KPW series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=9*8mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5KPW series Axial Vertical pin pitch 7.62mm length 9mm diameter 8mm -0 -2 -2 -PCM_Diode_THT_AKL -D_5KPW_P12.70mm_Horizontal -Diode, 5KPW series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9*8mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5KPW series Axial Horizontal pin pitch 12.7mm length 9mm diameter 8mm -0 -2 -2 -PCM_Diode_THT_AKL -D_5KPW_P12.70mm_Horizontal_TVS -Diode, 5KPW series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9*8mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5KPW series Axial Horizontal pin pitch 12.7mm length 9mm diameter 8mm -0 -2 -2 -PCM_Diode_THT_AKL -D_5KPW_P15.24mm_Horizontal -Diode, 5KPW series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9*8mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5KPW series Axial Horizontal pin pitch 15.24mm length 9mm diameter 8mm -0 -2 -2 -PCM_Diode_THT_AKL -D_5KPW_P15.24mm_Horizontal_TVS -Diode, 5KPW series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9*8mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5KPW series Axial Horizontal pin pitch 15.24mm length 9mm diameter 8mm -0 -2 -2 -PCM_Diode_THT_AKL -D_5KPW_P20.32mm_Horizontal -Diode, 5KPW series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=9*8mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5KPW series Axial Horizontal pin pitch 20.32mm length 9mm diameter 8mm -0 -2 -2 -PCM_Diode_THT_AKL -D_5KPW_P20.32mm_Horizontal_TVS -Diode, 5KPW series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=9*8mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5KPW series Axial Horizontal pin pitch 20.32mm length 9mm diameter 8mm -0 -2 -2 -PCM_Diode_THT_AKL -D_5KPW_P25.40mm_Horizontal -Diode, 5KPW series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=9*8mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5KPW series Axial Horizontal pin pitch 25.40mm length 9mm diameter 8mm -0 -2 -2 -PCM_Diode_THT_AKL -D_5KPW_P25.40mm_Horizontal_TVS -Diode, 5KPW series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=9*8mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5KPW series Axial Horizontal pin pitch 25.40mm length 9mm diameter 8mm -0 -2 -2 -PCM_Diode_THT_AKL -D_5KPW_P30.48mm_Horizontal -Diode, 5KPW series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=9*8mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5KPW series Axial Horizontal pin pitch 30.48mm length 9mm diameter 8mm -0 -2 -2 -PCM_Diode_THT_AKL -D_5KPW_P30.48mm_Horizontal_TVS -Diode, 5KPW series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=9*8mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5KPW series Axial Horizontal pin pitch 30.48mm length 9mm diameter 8mm -0 -2 -2 -PCM_Diode_THT_AKL -D_5KPW_P35.56mm_Horizontal -Diode, 5KPW series, Axial, Horizontal, pin pitch=35.56mm, , length*diameter=9*8mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5KPW series Axial Horizontal pin pitch 35.56mm length 9mm diameter 8mm -0 -2 -2 -PCM_Diode_THT_AKL -D_5KPW_P35.56mm_Horizontal_TVS -Diode, 5KPW series, Axial, Horizontal, pin pitch=35.56mm, , length*diameter=9*8mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5KPW series Axial Horizontal pin pitch 35.56mm length 9mm diameter 8mm -0 -2 -2 -PCM_Diode_THT_AKL -D_5KPW_P40.64mm_Horizontal -Diode, 5KPW series, Axial, Horizontal, pin pitch=40.64mm, , length*diameter=9*8mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5KPW series Axial Horizontal pin pitch 40.64mm length 9mm diameter 8mm -0 -2 -2 -PCM_Diode_THT_AKL -D_5KPW_P40.64mm_Horizontal_TVS -Diode, 5KPW series, Axial, Horizontal, pin pitch=40.64mm, , length*diameter=9*8mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5KPW series Axial Horizontal pin pitch 40.64mm length 9mm diameter 8mm -0 -2 -2 -PCM_Diode_THT_AKL -D_5KP_P7.62mm_Vertical_AnodeUp -Diode, 5KP series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5KP series Axial Vertical pin pitch 7.62mm length 7.62mm diameter 9.53mm -0 -2 -2 -PCM_Diode_THT_AKL -D_5KP_P7.62mm_Vertical_KathodeUp -Diode, 5KP series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5KP series Axial Vertical pin pitch 7.62mm length 7.62mm diameter 9.53mm -0 -2 -2 -PCM_Diode_THT_AKL -D_5KP_P7.62mm_Vertical_TVS -Diode, 5KP series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5KP series Axial Vertical pin pitch 7.62mm length 7.62mm diameter 9.53mm -0 -2 -2 -PCM_Diode_THT_AKL -D_5KP_P10.16mm_Horizontal -Diode, 5KP series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5KP series Axial Horizontal pin pitch 10.16mm length 7.62mm diameter 9.53mm -0 -2 -2 -PCM_Diode_THT_AKL -D_5KP_P10.16mm_Horizontal_TVS -Diode, 5KP series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5KP series Axial Horizontal pin pitch 10.16mm length 7.62mm diameter 9.53mm -0 -2 -2 -PCM_Diode_THT_AKL -D_5KP_P12.70mm_Horizontal -Diode, 5KP series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5KP series Axial Horizontal pin pitch 12.7mm length 7.62mm diameter 9.53mm -0 -2 -2 -PCM_Diode_THT_AKL -D_5KP_P12.70mm_Horizontal_TVS -Diode, 5KP series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5KP series Axial Horizontal pin pitch 12.7mm length 7.62mm diameter 9.53mm -0 -2 -2 -PCM_Diode_THT_AKL -D_5KP_P15.24mm_Horizontal -Diode, 5KP series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5KP series Axial Horizontal pin pitch 15.24mm length 7.62mm diameter 9.53mm -0 -2 -2 -PCM_Diode_THT_AKL -D_5KP_P15.24mm_Horizontal_TVS -Diode, 5KP series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5KP series Axial Horizontal pin pitch 15.24mm length 7.62mm diameter 9.53mm -0 -2 -2 -PCM_Diode_THT_AKL -D_5KP_P20.32mm_Horizontal -Diode, 5KP series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5KP series Axial Horizontal pin pitch 20.32mm length 7.62mm diameter 9.53mm -0 -2 -2 -PCM_Diode_THT_AKL -D_5KP_P20.32mm_Horizontal_TVS -Diode, 5KP series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5KP series Axial Horizontal pin pitch 20.32mm length 7.62mm diameter 9.53mm -0 -2 -2 -PCM_Diode_THT_AKL -D_5KP_P25.40mm_Horizontal -Diode, 5KP series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5KP series Axial Horizontal pin pitch 25.40mm length 7.62mm diameter 9.53mm -0 -2 -2 -PCM_Diode_THT_AKL -D_5KP_P25.40mm_Horizontal_TVS -Diode, 5KP series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5KP series Axial Horizontal pin pitch 25.40mm length 7.62mm diameter 9.53mm -0 -2 -2 -PCM_Diode_THT_AKL -D_5KP_P30.48mm_Horizontal -Diode, 5KP series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5KP series Axial Horizontal pin pitch 30.48mm length 7.62mm diameter 9.53mm -0 -2 -2 -PCM_Diode_THT_AKL -D_5KP_P30.48mm_Horizontal_TVS -Diode, 5KP series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5KP series Axial Horizontal pin pitch 30.48mm length 7.62mm diameter 9.53mm -0 -2 -2 -PCM_Diode_THT_AKL -D_5KP_P35.56mm_Horizontal -Diode, 5KP series, Axial, Horizontal, pin pitch=35.56mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5KP series Axial Horizontal pin pitch 35.56mm length 7.62mm diameter 9.53mm -0 -2 -2 -PCM_Diode_THT_AKL -D_5KP_P35.56mm_Horizontal_TVS -Diode, 5KP series, Axial, Horizontal, pin pitch=35.56mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5KP series Axial Horizontal pin pitch 35.56mm length 7.62mm diameter 9.53mm -0 -2 -2 -PCM_Diode_THT_AKL -D_5KP_P40.64mm_Horizontal -Diode, 5KP series, Axial, Horizontal, pin pitch=40.64mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5KP series Axial Horizontal pin pitch 40.64mm length 7.62mm diameter 9.53mm -0 -2 -2 -PCM_Diode_THT_AKL -D_5KP_P40.64mm_Horizontal_TVS -Diode, 5KP series, Axial, Horizontal, pin pitch=40.64mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5KP series Axial Horizontal pin pitch 40.64mm length 7.62mm diameter 9.53mm -0 -2 -2 -PCM_Diode_THT_AKL -D_5W_CASE-017AA_P5.08mm_Vertical_AnodeUp -Diode, 5W, CASE-017AA, Axial, Vertical, pin pitch=5.08mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5W series CASE-017AA Axial Vertical pin pitch 5.08mm length 8.9mm diameter 3.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_5W_CASE-017AA_P5.08mm_Vertical_AnodeUp_Zener -Diode, 5W, CASE-017AA, Axial, Vertical, pin pitch=5.08mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5W series CASE-017AA Axial Vertical pin pitch 5.08mm length 8.9mm diameter 3.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_5W_CASE-017AA_P5.08mm_Vertical_KathodeUp -Diode, 5W, CASE-017AA, Axial, Vertical, pin pitch=5.08mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5W series CASE-017AA Axial Vertical pin pitch 5.08mm length 8.9mm diameter 3.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_5W_CASE-017AA_P5.08mm_Vertical_KathodeUp_Zener -Diode, 5W, CASE-017AA, Axial, Vertical, pin pitch=5.08mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5W series CASE-017AA Axial Vertical pin pitch 5.08mm length 8.9mm diameter 3.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_5W_CASE-017AA_P5.08mm_Vertical_TVS -Diode, 5W, CASE-017AA, Axial, Vertical, pin pitch=5.08mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5W series CASE-017AA Axial Vertical pin pitch 5.08mm length 8.9mm diameter 3.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_5W_CASE-017AA_P10.16mm_Horizontal -Diode, 5W, CASE-017AA, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5W series CASE-017AA Axial Horizontal pin pitch 10.16mm length 8.9mm diameter 3.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_5W_CASE-017AA_P10.16mm_Horizontal_TVS -Diode, 5W, CASE-017AA, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5W series CASE-017AA Axial Horizontal pin pitch 10.16mm length 8.9mm diameter 3.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_5W_CASE-017AA_P10.16mm_Horizontal_Zener -Diode, 5W, CASE-017AA, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5W series CASE-017AA Axial Horizontal pin pitch 10.16mm length 8.9mm diameter 3.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_5W_CASE-017AA_P12.70mm_Horizontal -Diode, 5W, CASE-017AA, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5W series CASE-017AA Axial Horizontal pin pitch 12.7mm length 8.9mm diameter 3.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_5W_CASE-017AA_P12.70mm_Horizontal_TVS -Diode, 5W, CASE-017AA, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5W series CASE-017AA Axial Horizontal pin pitch 12.7mm length 8.9mm diameter 3.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_5W_CASE-017AA_P12.70mm_Horizontal_Zener -Diode, 5W, CASE-017AA, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5W series CASE-017AA Axial Horizontal pin pitch 12.7mm length 8.9mm diameter 3.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_5W_CASE-017AA_P15.24mm_Horizontal -Diode, 5W, CASE-017AA, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5W series CASE-017AA Axial Horizontal pin pitch 15.24mm length 8.9mm diameter 3.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_5W_CASE-017AA_P15.24mm_Horizontal_TVS -Diode, 5W, CASE-017AA, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5W series CASE-017AA Axial Horizontal pin pitch 15.24mm length 8.9mm diameter 3.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_5W_CASE-017AA_P15.24mm_Horizontal_Zener -Diode, 5W, CASE-017AA, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5W series CASE-017AA Axial Horizontal pin pitch 15.24mm length 8.9mm diameter 3.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_5W_CASE-017AA_P20.32mm_Horizontal -Diode, 5W, CASE-017AA, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5W series CASE-017AA Axial Horizontal pin pitch 20.32mm length 8.9mm diameter 3.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_5W_CASE-017AA_P20.32mm_Horizontal_TVS -Diode, 5W, CASE-017AA, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5W series CASE-017AA Axial Horizontal pin pitch 20.32mm length 8.9mm diameter 3.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_5W_CASE-017AA_P20.32mm_Horizontal_Zener -Diode, 5W, CASE-017AA, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5W series CASE-017AA Axial Horizontal pin pitch 20.32mm length 8.9mm diameter 3.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_5W_CASE-017AA_P25.40mm_Horizontal -Diode, 5W, CASE-017AA Axial, Horizontal, pin pitch=25.40mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5W series CASE-017AA Axial Horizontal pin pitch 25.40mm length 8.9mm diameter 3.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_5W_CASE-017AA_P25.40mm_Horizontal_TVS -Diode, 5W, CASE-017AA Axial, Horizontal, pin pitch=25.40mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5W series CASE-017AA Axial Horizontal pin pitch 25.40mm length 8.9mm diameter 3.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_5W_CASE-017AA_P25.40mm_Horizontal_Zener -Diode, 5W, CASE-017AA Axial, Horizontal, pin pitch=25.40mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5W series CASE-017AA Axial Horizontal pin pitch 25.40mm length 8.9mm diameter 3.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_5W_CASE-017AA_P30.48mm_Horizontal -Diode, 5W, CASE-017AA Axial, Horizontal, pin pitch=30.48mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5W series CASE-017AA Axial Horizontal pin pitch 30.48mm length 8.9mm diameter 3.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_5W_CASE-017AA_P30.48mm_Horizontal_TVS -Diode, 5W, CASE-017AA Axial, Horizontal, pin pitch=30.48mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5W series CASE-017AA Axial Horizontal pin pitch 30.48mm length 8.9mm diameter 3.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_5W_CASE-017AA_P30.48mm_Horizontal_Zener -Diode, 5W, CASE-017AA Axial, Horizontal, pin pitch=30.48mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5W series CASE-017AA Axial Horizontal pin pitch 30.48mm length 8.9mm diameter 3.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_5W_P5.08mm_Vertical_AnodeUp -Diode, 5W series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5W series Axial Vertical pin pitch 5.08mm length 8.9mm diameter 3.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_5W_P5.08mm_Vertical_KathodeUp -Diode, 5W series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5W series Axial Vertical pin pitch 5.08mm length 8.9mm diameter 3.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_5W_P5.08mm_Vertical_TVS -Diode, 5W series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5W series Axial Vertical pin pitch 5.08mm length 8.9mm diameter 3.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_5W_P10.16mm_Horizontal -Diode, 5W series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5W series Axial Horizontal pin pitch 10.16mm length 8.9mm diameter 3.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_5W_P10.16mm_Horizontal_TVS -Diode, 5W series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5W series Axial Horizontal pin pitch 10.16mm length 8.9mm diameter 3.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_5W_P12.70mm_Horizontal -Diode, 5W series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5W series Axial Horizontal pin pitch 12.7mm length 8.9mm diameter 3.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_5W_P12.70mm_Horizontal_TVS -Diode, 5W series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5W series Axial Horizontal pin pitch 12.7mm length 8.9mm diameter 3.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_5W_P15.24mm_Horizontal -Diode, 5W series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5W series Axial Horizontal pin pitch 15.24mm length 8.9mm diameter 3.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_5W_P15.24mm_Horizontal_TVS -Diode, 5W series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5W series Axial Horizontal pin pitch 15.24mm length 8.9mm diameter 3.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_5W_P20.32mm_Horizontal -Diode, 5W series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5W series Axial Horizontal pin pitch 20.32mm length 8.9mm diameter 3.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_5W_P20.32mm_Horizontal_TVS -Diode, 5W series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5W series Axial Horizontal pin pitch 20.32mm length 8.9mm diameter 3.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_5W_P25.40mm_Horizontal -Diode, 5W series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5W series Axial Horizontal pin pitch 25.40mm length 8.9mm diameter 3.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_5W_P25.40mm_Horizontal_TVS -Diode, 5W series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5W series Axial Horizontal pin pitch 25.40mm length 8.9mm diameter 3.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_5W_P30.48mm_Horizontal -Diode, 5W series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5W series Axial Horizontal pin pitch 30.48mm length 8.9mm diameter 3.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_5W_P30.48mm_Horizontal_TVS -Diode, 5W series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5W series Axial Horizontal pin pitch 30.48mm length 8.9mm diameter 3.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_A-405_P2.54mm_Vertical_AnodeUp -Diode, A-405 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library -Diode A-405 series Axial Vertical pin pitch 2.54mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_A-405_P2.54mm_Vertical_AnodeUp_Zener -Diode, A-405 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library -Diode A-405 series Axial Vertical pin pitch 2.54mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_A-405_P2.54mm_Vertical_KathodeUp -Diode, A-405 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library -Diode A-405 series Axial Vertical pin pitch 2.54mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_A-405_P2.54mm_Vertical_KathodeUp_Zener -Diode, A-405 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library -Diode A-405 series Axial Vertical pin pitch 2.54mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_A-405_P2.54mm_Vertical_TVS -Diode, A-405 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library -Diode A-405 series Axial Vertical pin pitch 2.54mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_A-405_P5.08mm_Vertical_AnodeUp -Diode, A-405 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library -Diode A-405 series Axial Vertical pin pitch 5.08mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_A-405_P5.08mm_Vertical_AnodeUp_Zener -Diode, A-405 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library -Diode A-405 series Axial Vertical pin pitch 5.08mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_A-405_P5.08mm_Vertical_KathodeUp -Diode, A-405 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library -Diode A-405 series Axial Vertical pin pitch 5.08mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_A-405_P5.08mm_Vertical_KathodeUp_Zener -Diode, A-405 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library -Diode A-405 series Axial Vertical pin pitch 5.08mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_A-405_P5.08mm_Vertical_TVS -Diode, A-405 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library -Diode A-405 series Axial Vertical pin pitch 5.08mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_A-405_P7.62mm_Horizontal -Diode, A-405 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library -Diode A-405 series Axial Horizontal pin pitch 7.62mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_A-405_P7.62mm_Horizontal_TVS -Diode, A-405 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library -Diode A-405 series Axial Horizontal pin pitch 7.62mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_A-405_P7.62mm_Horizontal_Zener -Diode, A-405 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library -Diode A-405 series Axial Horizontal pin pitch 7.62mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_A-405_P10.16mm_Horizontal -Diode, A-405 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library -Diode A-405 series Axial Horizontal pin pitch 10.16mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_A-405_P10.16mm_Horizontal_TVS -Diode, A-405 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library -Diode A-405 series Axial Horizontal pin pitch 10.16mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_A-405_P10.16mm_Horizontal_Zener -Diode, A-405 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library -Diode A-405 series Axial Horizontal pin pitch 10.16mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_A-405_P12.70mm_Horizontal -Diode, A-405 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library -Diode A-405 series Axial Horizontal pin pitch 12.7mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_A-405_P12.70mm_Horizontal_TVS -Diode, A-405 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library -Diode A-405 series Axial Horizontal pin pitch 12.7mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_A-405_P12.70mm_Horizontal_Zener -Diode, A-405 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library -Diode A-405 series Axial Horizontal pin pitch 12.7mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_A-405_P15.24mm_Horizontal -Diode, A-405 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library -Diode A-405 series Axial Horizontal pin pitch 15.24mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_A-405_P15.24mm_Horizontal_TVS -Diode, A-405 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library -Diode A-405 series Axial Horizontal pin pitch 15.24mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_A-405_P15.24mm_Horizontal_Zener -Diode, A-405 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library -Diode A-405 series Axial Horizontal pin pitch 15.24mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_A-405_P20.32mm_Horizontal -Diode, A-405 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library -Diode A-405 series Axial Horizontal pin pitch 20.32mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_A-405_P20.32mm_Horizontal_TVS -Diode, A-405 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library -Diode A-405 series Axial Horizontal pin pitch 20.32mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_A-405_P20.32mm_Horizontal_Zener -Diode, A-405 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library -Diode A-405 series Axial Horizontal pin pitch 20.32mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_A-405_P25.40mm_Horizontal -Diode, A-405 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library -Diode A-405 series Axial Horizontal pin pitch 25.40mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_A-405_P30.48mm_Horizontal -Diode, A-405 series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library -Diode A-405 series Axial Horizontal pin pitch 30.48mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-15_P2.54mm_Vertical_AnodeUp -Diode, DO-15 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library -Diode DO-15 series Axial Vertical pin pitch 2.54mm length 7.6mm diameter 3.6mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-15_P2.54mm_Vertical_KathodeUp -Diode, DO-15 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library -Diode DO-15 series Axial Vertical pin pitch 2.54mm length 7.6mm diameter 3.6mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-15_P3.81mm_Vertical_AnodeUp -Diode, DO-15 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library -Diode DO-15 series Axial Vertical pin pitch 3.81mm length 7.6mm diameter 3.6mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-15_P3.81mm_Vertical_AnodeUp_Zener -Diode, DO-15 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library -Diode DO-15 series Axial Vertical pin pitch 3.81mm length 7.6mm diameter 3.6mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-15_P3.81mm_Vertical_KathodeUp -Diode, DO-15 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library -Diode DO-15 series Axial Vertical pin pitch 3.81mm length 7.6mm diameter 3.6mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-15_P3.81mm_Vertical_KathodeUp_Zener -Diode, DO-15 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library -Diode DO-15 series Axial Vertical pin pitch 3.81mm length 7.6mm diameter 3.6mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-15_P3.81mm_Vertical_TVS -Diode, DO-15 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library -Diode DO-15 series Axial Vertical pin pitch 3.81mm length 7.6mm diameter 3.6mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-15_P5.08mm_Vertical_AnodeUp -Diode, DO-15 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library -Diode DO-15 series Axial Vertical pin pitch 5.08mm length 7.6mm diameter 3.6mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-15_P5.08mm_Vertical_AnodeUp_Zener -Diode, DO-15 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library -Diode DO-15 series Axial Vertical pin pitch 5.08mm length 7.6mm diameter 3.6mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-15_P5.08mm_Vertical_KathodeUp -Diode, DO-15 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library -Diode DO-15 series Axial Vertical pin pitch 5.08mm length 7.6mm diameter 3.6mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-15_P5.08mm_Vertical_KathodeUp_Zener -Diode, DO-15 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library -Diode DO-15 series Axial Vertical pin pitch 5.08mm length 7.6mm diameter 3.6mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-15_P5.08mm_Vertical_TVS -Diode, DO-15 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library -Diode DO-15 series Axial Vertical pin pitch 5.08mm length 7.6mm diameter 3.6mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-15_P10.16mm_Horizontal -Diode, DO-15 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library -Diode DO-15 series Axial Horizontal pin pitch 10.16mm length 7.6mm diameter 3.6mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-15_P10.16mm_Horizontal_TVS -Diode, DO-15 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library -Diode DO-15 series Axial Horizontal pin pitch 10.16mm length 7.6mm diameter 3.6mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-15_P10.16mm_Horizontal_Zener -Diode, DO-15 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library -Diode DO-15 series Axial Horizontal pin pitch 10.16mm length 7.6mm diameter 3.6mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-15_P12.70mm_Horizontal -Diode, DO-15 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library -Diode DO-15 series Axial Horizontal pin pitch 12.7mm length 7.6mm diameter 3.6mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-15_P12.70mm_Horizontal_TVS -Diode, DO-15 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library -Diode DO-15 series Axial Horizontal pin pitch 12.7mm length 7.6mm diameter 3.6mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-15_P12.70mm_Horizontal_Zener -Diode, DO-15 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library -Diode DO-15 series Axial Horizontal pin pitch 12.7mm length 7.6mm diameter 3.6mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-15_P15.24mm_Horizontal -Diode, DO-15 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library -Diode DO-15 series Axial Horizontal pin pitch 15.24mm length 7.6mm diameter 3.6mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-15_P15.24mm_Horizontal_TVS -Diode, DO-15 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library -Diode DO-15 series Axial Horizontal pin pitch 15.24mm length 7.6mm diameter 3.6mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-15_P15.24mm_Horizontal_Zener -Diode, DO-15 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library -Diode DO-15 series Axial Horizontal pin pitch 15.24mm length 7.6mm diameter 3.6mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-15_P20.32mm_Horizontal -Diode, DO-15 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library -Diode DO-15 series Axial Horizontal pin pitch 20.32mm length 7.6mm diameter 3.6mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-15_P20.32mm_Horizontal_TVS -Diode, DO-15 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library -Diode DO-15 series Axial Horizontal pin pitch 20.32mm length 7.6mm diameter 3.6mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-15_P20.32mm_Horizontal_Zener -Diode, DO-15 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library -Diode DO-15 series Axial Horizontal pin pitch 20.32mm length 7.6mm diameter 3.6mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-15_P25.40mm_Horizontal -Diode, DO-15 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library -Diode DO-15 series Axial Horizontal pin pitch 25.40mm length 7.6mm diameter 3.6mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-15_P25.40mm_Horizontal_TVS -Diode, DO-15 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library -Diode DO-15 series Axial Horizontal pin pitch 25.40mm length 7.6mm diameter 3.6mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-15_P25.40mm_Horizontal_Zener -Diode, DO-15 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library -Diode DO-15 series Axial Horizontal pin pitch 25.40mm length 7.6mm diameter 3.6mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-15_P30.48mm_Horizontal -Diode, DO-15 series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library -Diode DO-15 series Axial Horizontal pin pitch 30.48mm length 7.6mm diameter 3.6mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-15_P30.48mm_Horizontal_TVS -Diode, DO-15 series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library -Diode DO-15 series Axial Horizontal pin pitch 30.48mm length 7.6mm diameter 3.6mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-15_P30.48mm_Horizontal_Zener -Diode, DO-15 series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library -Diode DO-15 series Axial Horizontal pin pitch 30.48mm length 7.6mm diameter 3.6mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-27_P5.08mm_Vertical_AnodeUp -Diode, DO-27 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg, Alternate KiCad Library -Diode DO-27 series Axial Vertical pin pitch 5.08mm length 9.52mm diameter 5.33mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-27_P5.08mm_Vertical_AnodeUp_Zener -Diode, DO-27 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg, Alternate KiCad Library -Diode DO-27 series Axial Vertical pin pitch 5.08mm length 9.52mm diameter 5.33mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-27_P5.08mm_Vertical_KathodeUp -Diode, DO-27 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg, Alternate KiCad Library -Diode DO-27 series Axial Vertical pin pitch 5.08mm length 9.52mm diameter 5.33mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-27_P5.08mm_Vertical_KathodeUp_Zener -Diode, DO-27 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg, Alternate KiCad Library -Diode DO-27 series Axial Vertical pin pitch 5.08mm length 9.52mm diameter 5.33mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-27_P5.08mm_Vertical_TVS -Diode, DO-27 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg, Alternate KiCad Library -Diode DO-27 series Axial Vertical pin pitch 5.08mm length 9.52mm diameter 5.33mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-27_P12.70mm_Horizontal -Diode, DO-27 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg, Alternate KiCad Library -Diode DO-27 series Axial Horizontal pin pitch 12.7mm length 9.52mm diameter 5.33mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-27_P12.70mm_Horizontal_TVS -Diode, DO-27 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg, Alternate KiCad Library -Diode DO-27 series Axial Horizontal pin pitch 12.7mm length 9.52mm diameter 5.33mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-27_P12.70mm_Horizontal_Zener -Diode, DO-27 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg, Alternate KiCad Library -Diode DO-27 series Axial Horizontal pin pitch 12.7mm length 9.52mm diameter 5.33mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-27_P15.24mm_Horizontal -Diode, DO-27 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg, Alternate KiCad Library -Diode DO-27 series Axial Horizontal pin pitch 15.24mm length 9.52mm diameter 5.33mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-27_P15.24mm_Horizontal_TVS -Diode, DO-27 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg, Alternate KiCad Library -Diode DO-27 series Axial Horizontal pin pitch 15.24mm length 9.52mm diameter 5.33mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-27_P15.24mm_Horizontal_Zener -Diode, DO-27 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg, Alternate KiCad Library -Diode DO-27 series Axial Horizontal pin pitch 15.24mm length 9.52mm diameter 5.33mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-27_P20.32mm_Horizontal -Diode, DO-27 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg, Alternate KiCad Library -Diode DO-27 series Axial Horizontal pin pitch 20.32mm length 9.52mm diameter 5.33mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-27_P20.32mm_Horizontal_TVS -Diode, DO-27 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg, Alternate KiCad Library -Diode DO-27 series Axial Horizontal pin pitch 20.32mm length 9.52mm diameter 5.33mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-27_P20.32mm_Horizontal_Zener -Diode, DO-27 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg, Alternate KiCad Library -Diode DO-27 series Axial Horizontal pin pitch 20.32mm length 9.52mm diameter 5.33mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-27_P25.40mm_Horizontal -Diode, DO-27 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg, Alternate KiCad Library -Diode DO-27 series Axial Horizontal pin pitch 25.40mm length 9.52mm diameter 5.33mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-27_P25.40mm_Horizontal_TVS -Diode, DO-27 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg, Alternate KiCad Library -Diode DO-27 series Axial Horizontal pin pitch 25.40mm length 9.52mm diameter 5.33mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-27_P25.40mm_Horizontal_Zener -Diode, DO-27 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg, Alternate KiCad Library -Diode DO-27 series Axial Horizontal pin pitch 25.40mm length 9.52mm diameter 5.33mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-27_P30.48mm_Horizontal -Diode, DO-27 series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg, Alternate KiCad Library -Diode DO-27 series Axial Horizontal pin pitch 30.48mm length 9.52mm diameter 5.33mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-27_P30.48mm_Horizontal_TVS -Diode, DO-27 series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg, Alternate KiCad Library -Diode DO-27 series Axial Horizontal pin pitch 30.48mm length 9.52mm diameter 5.33mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-27_P30.48mm_Horizontal_Zener -Diode, DO-27 series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg, Alternate KiCad Library -Diode DO-27 series Axial Horizontal pin pitch 30.48mm length 9.52mm diameter 5.33mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-34_SOD68_P2.54mm_Vertical_AnodeUp -Diode, DO-34_SOD68 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf, Alternate KiCad Library -Diode DO-34_SOD68 series Axial Vertical pin pitch 2.54mm length 3.04mm diameter 1.6mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-34_SOD68_P2.54mm_Vertical_AnodeUp_Zener -Diode, DO-34_SOD68 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf, Alternate KiCad Library -Diode DO-34_SOD68 series Axial Vertical pin pitch 2.54mm length 3.04mm diameter 1.6mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-34_SOD68_P2.54mm_Vertical_KathodeUp -Diode, DO-34_SOD68 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf, Alternate KiCad Library -Diode DO-34_SOD68 series Axial Vertical pin pitch 2.54mm length 3.04mm diameter 1.6mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-34_SOD68_P2.54mm_Vertical_KathodeUp_Zener -Diode, DO-34_SOD68 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf, Alternate KiCad Library -Diode DO-34_SOD68 series Axial Vertical pin pitch 2.54mm length 3.04mm diameter 1.6mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-34_SOD68_P5.08mm_Vertical_AnodeUp -Diode, DO-34_SOD68 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf, Alternate KiCad Library -Diode DO-34_SOD68 series Axial Vertical pin pitch 5.08mm length 3.04mm diameter 1.6mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-34_SOD68_P5.08mm_Vertical_AnodeUp_Zener -Diode, DO-34_SOD68 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf, Alternate KiCad Library -Diode DO-34_SOD68 series Axial Vertical pin pitch 5.08mm length 3.04mm diameter 1.6mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-34_SOD68_P5.08mm_Vertical_KathodeUp -Diode, DO-34_SOD68 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf, Alternate KiCad Library -Diode DO-34_SOD68 series Axial Vertical pin pitch 5.08mm length 3.04mm diameter 1.6mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-34_SOD68_P5.08mm_Vertical_KathodeUp_Zener -Diode, DO-34_SOD68 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf, Alternate KiCad Library -Diode DO-34_SOD68 series Axial Vertical pin pitch 5.08mm length 3.04mm diameter 1.6mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-34_SOD68_P7.62mm_Horizontal -Diode, DO-34_SOD68 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf, Alternate KiCad Library -Diode DO-34_SOD68 series Axial Horizontal pin pitch 7.62mm length 3.04mm diameter 1.6mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-34_SOD68_P7.62mm_Horizontal_Zener -Diode, DO-34_SOD68 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf, Alternate KiCad Library -Diode DO-34_SOD68 series Axial Horizontal pin pitch 7.62mm length 3.04mm diameter 1.6mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-34_SOD68_P10.16mm_Horizontal -Diode, DO-34_SOD68 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf, Alternate KiCad Library -Diode DO-34_SOD68 series Axial Horizontal pin pitch 10.16mm length 3.04mm diameter 1.6mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-34_SOD68_P10.16mm_Horizontal_Zener -Diode, DO-34_SOD68 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf, Alternate KiCad Library -Diode DO-34_SOD68 series Axial Horizontal pin pitch 10.16mm length 3.04mm diameter 1.6mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-34_SOD68_P12.70mm_Horizontal -Diode, DO-34_SOD68 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf, Alternate KiCad Library -Diode DO-34_SOD68 series Axial Horizontal pin pitch 12.7mm length 3.04mm diameter 1.6mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-34_SOD68_P12.70mm_Horizontal_Zener -Diode, DO-34_SOD68 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf, Alternate KiCad Library -Diode DO-34_SOD68 series Axial Horizontal pin pitch 12.7mm length 3.04mm diameter 1.6mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-34_SOD68_P15.24mm_Horizontal -Diode, DO-34_SOD68 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf, Alternate KiCad Library -Diode DO-34_SOD68 series Axial Horizontal pin pitch 15.24mm length 3.04mm diameter 1.6mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-34_SOD68_P15.24mm_Horizontal_Zener -Diode, DO-34_SOD68 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf, Alternate KiCad Library -Diode DO-34_SOD68 series Axial Horizontal pin pitch 15.24mm length 3.04mm diameter 1.6mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-34_SOD68_P20.32mm_Horizontal -Diode, DO-34_SOD68 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf, Alternate KiCad Library -Diode DO-34_SOD68 series Axial Horizontal pin pitch 20.32mm length 3.04mm diameter 1.6mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-34_SOD68_P20.32mm_Horizontal_Zener -Diode, DO-34_SOD68 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf, Alternate KiCad Library -Diode DO-34_SOD68 series Axial Horizontal pin pitch 20.32mm length 3.04mm diameter 1.6mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-34_SOD68_P25.40mm_Horizontal -Diode, DO-34_SOD68 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf, Alternate KiCad Library -Diode DO-34_SOD68 series Axial Horizontal pin pitch 25.40mm length 3.04mm diameter 1.6mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-34_SOD68_P25.40mm_Horizontal_Zener -Diode, DO-34_SOD68 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf, Alternate KiCad Library -Diode DO-34_SOD68 series Axial Horizontal pin pitch 25.40mm length 3.04mm diameter 1.6mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-35_SOD27_P2.54mm_Vertical_AnodeUp -Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library -Diode DO-35_SOD27 series Axial Vertical pin pitch 2.54mm length 4mm diameter 2mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-35_SOD27_P2.54mm_Vertical_AnodeUp_Zener -Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library -Diode DO-35_SOD27 series Axial Vertical pin pitch 2.54mm length 4mm diameter 2mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-35_SOD27_P2.54mm_Vertical_KathodeUp -Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library -Diode DO-35_SOD27 series Axial Vertical pin pitch 2.54mm length 4mm diameter 2mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-35_SOD27_P2.54mm_Vertical_KathodeUp_Zener -Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library -Diode DO-35_SOD27 series Axial Vertical pin pitch 2.54mm length 4mm diameter 2mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-35_SOD27_P3.81mm_Vertical_AnodeUp -Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library -Diode DO-35_SOD27 series Axial Vertical pin pitch 3.81mm length 4mm diameter 2mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-35_SOD27_P3.81mm_Vertical_AnodeUp_Zener -Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library -Diode DO-35_SOD27 series Axial Vertical pin pitch 3.81mm length 4mm diameter 2mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-35_SOD27_P3.81mm_Vertical_Diac -Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library -Diode DO-35_SOD27 series Axial Vertical pin pitch 3.81mm length 4mm diameter 2mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-35_SOD27_P3.81mm_Vertical_KathodeUp -Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library -Diode DO-35_SOD27 series Axial Vertical pin pitch 3.81mm length 4mm diameter 2mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-35_SOD27_P3.81mm_Vertical_KathodeUp_Zener -Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library -Diode DO-35_SOD27 series Axial Vertical pin pitch 3.81mm length 4mm diameter 2mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-35_SOD27_P5.08mm_Vertical_AnodeUp -Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library -Diode DO-35_SOD27 series Axial Vertical pin pitch 5.08mm length 4mm diameter 2mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-35_SOD27_P5.08mm_Vertical_AnodeUp_Zener -Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library -Diode DO-35_SOD27 series Axial Vertical pin pitch 5.08mm length 4mm diameter 2mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-35_SOD27_P5.08mm_Vertical_Diac -Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library -Diode DO-35_SOD27 series Axial Vertical pin pitch 5.08mm length 4mm diameter 2mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-35_SOD27_P5.08mm_Vertical_KathodeUp -Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library -Diode DO-35_SOD27 series Axial Vertical pin pitch 5.08mm length 4mm diameter 2mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-35_SOD27_P5.08mm_Vertical_KathodeUp_Zener -Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library -Diode DO-35_SOD27 series Axial Vertical pin pitch 5.08mm length 4mm diameter 2mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-35_SOD27_P7.62mm_Horizontal -Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library -Diode DO-35_SOD27 series Axial Horizontal pin pitch 7.62mm length 4mm diameter 2mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-35_SOD27_P7.62mm_Horizontal_Diac -Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library -Diode DO-35_SOD27 series Axial Horizontal pin pitch 7.62mm length 4mm diameter 2mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-35_SOD27_P7.62mm_Horizontal_Zener -Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library -Diode DO-35_SOD27 series Axial Horizontal pin pitch 7.62mm length 4mm diameter 2mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-35_SOD27_P10.16mm_Horizontal -Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library -Diode DO-35_SOD27 series Axial Horizontal pin pitch 10.16mm length 4mm diameter 2mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-35_SOD27_P10.16mm_Horizontal_Diac -Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library -Diode DO-35_SOD27 series Axial Horizontal pin pitch 10.16mm length 4mm diameter 2mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-35_SOD27_P10.16mm_Horizontal_Zener -Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library -Diode DO-35_SOD27 series Axial Horizontal pin pitch 10.16mm length 4mm diameter 2mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-35_SOD27_P12.70mm_Horizontal -Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library -Diode DO-35_SOD27 series Axial Horizontal pin pitch 12.7mm length 4mm diameter 2mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-35_SOD27_P12.70mm_Horizontal_Diac -Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library -Diode DO-35_SOD27 series Axial Horizontal pin pitch 12.7mm length 4mm diameter 2mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-35_SOD27_P12.70mm_Horizontal_Zener -Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library -Diode DO-35_SOD27 series Axial Horizontal pin pitch 12.7mm length 4mm diameter 2mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-35_SOD27_P15.24mm_Horizontal -Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library -Diode DO-35_SOD27 series Axial Horizontal pin pitch 15.24mm length 4mm diameter 2mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-35_SOD27_P15.24mm_Horizontal_Diac -Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library -Diode DO-35_SOD27 series Axial Horizontal pin pitch 15.24mm length 4mm diameter 2mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-35_SOD27_P15.24mm_Horizontal_Zener -Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library -Diode DO-35_SOD27 series Axial Horizontal pin pitch 15.24mm length 4mm diameter 2mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-35_SOD27_P20.32mm_Horizontal -Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library -Diode DO-35_SOD27 series Axial Horizontal pin pitch 20.32mm length 4mm diameter 2mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-35_SOD27_P20.32mm_Horizontal_Diac -Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library -Diode DO-35_SOD27 series Axial Horizontal pin pitch 20.32mm length 4mm diameter 2mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-35_SOD27_P20.32mm_Horizontal_Zener -Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library -Diode DO-35_SOD27 series Axial Horizontal pin pitch 20.32mm length 4mm diameter 2mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-35_SOD27_P25.40mm_Horizontal -Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library -Diode DO-35_SOD27 series Axial Horizontal pin pitch 25.40mm length 4mm diameter 2mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-35_SOD27_P25.40mm_Horizontal_Diac -Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library -Diode DO-35_SOD27 series Axial Horizontal pin pitch 25.40mm length 4mm diameter 2mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-35_SOD27_P25.40mm_Horizontal_Zener -Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library -Diode DO-35_SOD27 series Axial Horizontal pin pitch 25.40mm length 4mm diameter 2mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-41_SOD81_P2.54mm_Vertical_AnodeUp -Diode, DO-41_SOD81 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library -Diode DO-41_SOD81 series Axial Vertical pin pitch 2.54mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-41_SOD81_P2.54mm_Vertical_KathodeUp -Diode, DO-41_SOD81 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library -Diode DO-41_SOD81 series Axial Vertical pin pitch 2.54mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-41_SOD81_P3.81mm_Vertical_AnodeUp -Diode, DO-41_SOD81 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=5.2*2.7mm^2, , https://www.diodes.com/assets/Package-Files/DO-41-Plastic.pdf, Alternate KiCad Library -Diode DO-41_SOD81 series Axial Vertical pin pitch 3.81mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-41_SOD81_P3.81mm_Vertical_AnodeUp_Zener -Diode, DO-41_SOD81 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=5.2*2.7mm^2, , https://www.diodes.com/assets/Package-Files/DO-41-Plastic.pdf, Alternate KiCad Library -Diode DO-41_SOD81 series Axial Vertical pin pitch 3.81mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-41_SOD81_P3.81mm_Vertical_KathodeUp -Diode, DO-41_SOD81 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=5.2*2.7mm^2, , https://www.diodes.com/assets/Package-Files/DO-41-Plastic.pdf, Alternate KiCad Library -Diode DO-41_SOD81 series Axial Vertical pin pitch 3.81mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-41_SOD81_P3.81mm_Vertical_KathodeUp_Zener -Diode, DO-41_SOD81 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=5.2*2.7mm^2, , https://www.diodes.com/assets/Package-Files/DO-41-Plastic.pdf, Alternate KiCad Library -Diode DO-41_SOD81 series Axial Vertical pin pitch 3.81mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-41_SOD81_P3.81mm_Vertical_TVS -Diode, DO-41_SOD81 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=5.2*2.7mm^2, , https://www.diodes.com/assets/Package-Files/DO-41-Plastic.pdf, Alternate KiCad Library -Diode DO-41_SOD81 series Axial Vertical pin pitch 3.81mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-41_SOD81_P5.08mm_Vertical_AnodeUp -Diode, DO-41_SOD81 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library -Diode DO-41_SOD81 series Axial Vertical pin pitch 5.08mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-41_SOD81_P5.08mm_Vertical_AnodeUp_Zener -Diode, DO-41_SOD81 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library -Diode DO-41_SOD81 series Axial Vertical pin pitch 5.08mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-41_SOD81_P5.08mm_Vertical_KathodeUp -Diode, DO-41_SOD81 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library -Diode DO-41_SOD81 series Axial Vertical pin pitch 5.08mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-41_SOD81_P5.08mm_Vertical_KathodeUp_Zener -Diode, DO-41_SOD81 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library -Diode DO-41_SOD81 series Axial Vertical pin pitch 5.08mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-41_SOD81_P5.08mm_Vertical_TVS -Diode, DO-41_SOD81 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library -Diode DO-41_SOD81 series Axial Vertical pin pitch 5.08mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-41_SOD81_P7.62mm_Horizontal -Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library -Diode DO-41_SOD81 series Axial Horizontal pin pitch 7.62mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-41_SOD81_P7.62mm_Horizontal_TVS -Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library -Diode DO-41_SOD81 series Axial Horizontal pin pitch 7.62mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-41_SOD81_P7.62mm_Horizontal_Zener -Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library -Diode DO-41_SOD81 series Axial Horizontal pin pitch 7.62mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-41_SOD81_P10.16mm_Horizontal -Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library -Diode DO-41_SOD81 series Axial Horizontal pin pitch 10.16mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-41_SOD81_P10.16mm_Horizontal_TVS -Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library -Diode DO-41_SOD81 series Axial Horizontal pin pitch 10.16mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-41_SOD81_P10.16mm_Horizontal_Zener -Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library -Diode DO-41_SOD81 series Axial Horizontal pin pitch 10.16mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-41_SOD81_P12.70mm_Horizontal -Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library -Diode DO-41_SOD81 series Axial Horizontal pin pitch 12.7mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-41_SOD81_P12.70mm_Horizontal_TVS -Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library -Diode DO-41_SOD81 series Axial Horizontal pin pitch 12.7mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-41_SOD81_P12.70mm_Horizontal_Zener -Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library -Diode DO-41_SOD81 series Axial Horizontal pin pitch 12.7mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-41_SOD81_P15.24mm_Horizontal -Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library -Diode DO-41_SOD81 series Axial Horizontal pin pitch 15.24mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-41_SOD81_P15.24mm_Horizontal_TVS -Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library -Diode DO-41_SOD81 series Axial Horizontal pin pitch 15.24mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-41_SOD81_P15.24mm_Horizontal_Zener -Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library -Diode DO-41_SOD81 series Axial Horizontal pin pitch 15.24mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-41_SOD81_P20.32mm_Horizontal -Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library -Diode DO-41_SOD81 series Axial Horizontal pin pitch 20.32mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-41_SOD81_P20.32mm_Horizontal_TVS -Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library -Diode DO-41_SOD81 series Axial Horizontal pin pitch 20.32mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-41_SOD81_P20.32mm_Horizontal_Zener -Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library -Diode DO-41_SOD81 series Axial Horizontal pin pitch 20.32mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-41_SOD81_P25.40mm_Horizontal -Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library -Diode DO-41_SOD81 series Axial Horizontal pin pitch 25.40mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-41_SOD81_P25.40mm_Horizontal_TVS -Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library -Diode DO-41_SOD81 series Axial Horizontal pin pitch 25.40mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-41_SOD81_P25.40mm_Horizontal_Zener -Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library -Diode DO-41_SOD81 series Axial Horizontal pin pitch 25.40mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-41_SOD81_P30.48mm_Horizontal -Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library -Diode DO-41_SOD81 series Axial Horizontal pin pitch 30.48mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-41_SOD81_P30.48mm_Horizontal_TVS -Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library -Diode DO-41_SOD81 series Axial Horizontal pin pitch 30.48mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-41_SOD81_P30.48mm_Horizontal_Zener -Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library -Diode DO-41_SOD81 series Axial Horizontal pin pitch 30.48mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-201AD_P3.81mm_Vertical_AnodeUp -Diode, DO-201AD series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library -Diode DO-201AD series Axial Vertical pin pitch 3.81mm length 9.5mm diameter 5.2mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-201AD_P3.81mm_Vertical_KathodeUp -Diode, DO-201AD series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library -Diode DO-201AD series Axial Vertical pin pitch 3.81mm length 9.5mm diameter 5.2mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-201AD_P5.08mm_Vertical_AnodeUp -Diode, DO-201AD series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library -Diode DO-201AD series Axial Vertical pin pitch 5.08mm length 9.5mm diameter 5.2mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-201AD_P5.08mm_Vertical_AnodeUp_Zener -Diode, DO-201AD series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library -Diode DO-201AD series Axial Vertical pin pitch 5.08mm length 9.5mm diameter 5.2mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-201AD_P5.08mm_Vertical_KathodeUp -Diode, DO-201AD series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library -Diode DO-201AD series Axial Vertical pin pitch 5.08mm length 9.5mm diameter 5.2mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-201AD_P5.08mm_Vertical_KathodeUp_Zener -Diode, DO-201AD series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library -Diode DO-201AD series Axial Vertical pin pitch 5.08mm length 9.5mm diameter 5.2mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-201AD_P5.08mm_Vertical_TVS -Diode, DO-201AD series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library -Diode DO-201AD series Axial Vertical pin pitch 5.08mm length 9.5mm diameter 5.2mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-201AD_P12.70mm_Horizontal -Diode, DO-201AD series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library -Diode DO-201AD series Axial Horizontal pin pitch 12.7mm length 9.5mm diameter 5.2mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-201AD_P12.70mm_Horizontal_TVS -Diode, DO-201AD series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library -Diode DO-201AD series Axial Horizontal pin pitch 12.7mm length 9.5mm diameter 5.2mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-201AD_P12.70mm_Horizontal_Zener -Diode, DO-201AD series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library -Diode DO-201AD series Axial Horizontal pin pitch 12.7mm length 9.5mm diameter 5.2mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-201AD_P15.24mm_Horizontal -Diode, DO-201AD series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library -Diode DO-201AD series Axial Horizontal pin pitch 15.24mm length 9.5mm diameter 5.2mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-201AD_P15.24mm_Horizontal_TVS -Diode, DO-201AD series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library -Diode DO-201AD series Axial Horizontal pin pitch 15.24mm length 9.5mm diameter 5.2mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-201AD_P15.24mm_Horizontal_Zener -Diode, DO-201AD series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library -Diode DO-201AD series Axial Horizontal pin pitch 15.24mm length 9.5mm diameter 5.2mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-201AD_P20.32mm_Horizontal -Diode, DO-201AD series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library -Diode DO-201AD series Axial Horizontal pin pitch 20.32mm length 9.5mm diameter 5.2mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-201AD_P20.32mm_Horizontal_TVS -Diode, DO-201AD series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library -Diode DO-201AD series Axial Horizontal pin pitch 20.32mm length 9.5mm diameter 5.2mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-201AD_P20.32mm_Horizontal_Zener -Diode, DO-201AD series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library -Diode DO-201AD series Axial Horizontal pin pitch 20.32mm length 9.5mm diameter 5.2mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-201AD_P25.40mm_Horizontal -Diode, DO-201AD series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library -Diode DO-201AD series Axial Horizontal pin pitch 25.40mm length 9.5mm diameter 5.2mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-201AD_P25.40mm_Horizontal_TVS -Diode, DO-201AD series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library -Diode DO-201AD series Axial Horizontal pin pitch 25.40mm length 9.5mm diameter 5.2mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-201AD_P25.40mm_Horizontal_Zener -Diode, DO-201AD series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library -Diode DO-201AD series Axial Horizontal pin pitch 25.40mm length 9.5mm diameter 5.2mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-201AD_P30.48mm_Horizontal -Diode, DO-201AD series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library -Diode DO-201AD series Axial Horizontal pin pitch 30.48mm length 9.5mm diameter 5.2mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-201AD_P30.48mm_Horizontal_TVS -Diode, DO-201AD series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library -Diode DO-201AD series Axial Horizontal pin pitch 30.48mm length 9.5mm diameter 5.2mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-201AD_P30.48mm_Horizontal_Zener -Diode, DO-201AD series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library -Diode DO-201AD series Axial Horizontal pin pitch 30.48mm length 9.5mm diameter 5.2mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-201AD_P35.56mm_Horizontal -Diode, DO-201AD series, Axial, Horizontal, pin pitch=35.56mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library -Diode DO-201AD series Axial Horizontal pin pitch 35.56mm length 9.5mm diameter 5.2mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-201AD_P35.56mm_Horizontal_TVS -Diode, DO-201AD series, Axial, Horizontal, pin pitch=35.56mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library -Diode DO-201AD series Axial Horizontal pin pitch 35.56mm length 9.5mm diameter 5.2mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-201AD_P35.56mm_Horizontal_Zener -Diode, DO-201AD series, Axial, Horizontal, pin pitch=35.56mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library -Diode DO-201AD series Axial Horizontal pin pitch 35.56mm length 9.5mm diameter 5.2mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-201AE_P3.81mm_Vertical_AnodeUp -Diode, DO-201AE series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library -Diode DO-201AE series Axial Vertical pin pitch 3.81mm length 9mm diameter 5.3mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-201AE_P3.81mm_Vertical_AnodeUp_Zener -Diode, DO-201AE series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library -Diode DO-201AE series Axial Vertical pin pitch 3.81mm length 9mm diameter 5.3mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-201AE_P3.81mm_Vertical_KathodeUp -Diode, DO-201AE series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library -Diode DO-201AE series Axial Vertical pin pitch 3.81mm length 9mm diameter 5.3mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-201AE_P3.81mm_Vertical_KathodeUp_Zener -Diode, DO-201AE series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library -Diode DO-201AE series Axial Vertical pin pitch 3.81mm length 9mm diameter 5.3mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-201AE_P3.81mm_Vertical_TVS -Diode, DO-201AE series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library -Diode DO-201AE series Axial Vertical pin pitch 3.81mm length 9mm diameter 5.3mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-201AE_P5.08mm_Vertical_AnodeUp -Diode, DO-201AE series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library -Diode DO-201AE series Axial Vertical pin pitch 5.08mm length 9mm diameter 5.3mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-201AE_P5.08mm_Vertical_AnodeUp_Zener -Diode, DO-201AE series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library -Diode DO-201AE series Axial Vertical pin pitch 5.08mm length 9mm diameter 5.3mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-201AE_P5.08mm_Vertical_KathodeUp -Diode, DO-201AE series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library -Diode DO-201AE series Axial Vertical pin pitch 5.08mm length 9mm diameter 5.3mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-201AE_P5.08mm_Vertical_KathodeUp_Zener -Diode, DO-201AE series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library -Diode DO-201AE series Axial Vertical pin pitch 5.08mm length 9mm diameter 5.3mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-201AE_P5.08mm_Vertical_TVS -Diode, DO-201AE series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library -Diode DO-201AE series Axial Vertical pin pitch 5.08mm length 9mm diameter 5.3mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-201AE_P12.70mm_Horizontal -Diode, DO-201AE series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library -Diode DO-201AE series Axial Horizontal pin pitch 12.7mm length 9mm diameter 5.3mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-201AE_P12.70mm_Horizontal_TVS -Diode, DO-201AE series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library -Diode DO-201AE series Axial Horizontal pin pitch 12.7mm length 9mm diameter 5.3mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-201AE_P12.70mm_Horizontal_Zener -Diode, DO-201AE series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library -Diode DO-201AE series Axial Horizontal pin pitch 12.7mm length 9mm diameter 5.3mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-201AE_P15.24mm_Horizontal -Diode, DO-201AE series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library -Diode DO-201AE series Axial Horizontal pin pitch 15.24mm length 9mm diameter 5.3mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-201AE_P15.24mm_Horizontal_TVS -Diode, DO-201AE series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library -Diode DO-201AE series Axial Horizontal pin pitch 15.24mm length 9mm diameter 5.3mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-201AE_P15.24mm_Horizontal_Zener -Diode, DO-201AE series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library -Diode DO-201AE series Axial Horizontal pin pitch 15.24mm length 9mm diameter 5.3mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-201AE_P20.32mm_Horizontal -Diode, DO-201AE series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library -Diode DO-201AE series Axial Horizontal pin pitch 20.32mm length 9mm diameter 5.3mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-201AE_P20.32mm_Horizontal_TVS -Diode, DO-201AE series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library -Diode DO-201AE series Axial Horizontal pin pitch 20.32mm length 9mm diameter 5.3mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-201AE_P20.32mm_Horizontal_Zener -Diode, DO-201AE series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library -Diode DO-201AE series Axial Horizontal pin pitch 20.32mm length 9mm diameter 5.3mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-201AE_P25.40mm_Horizontal -Diode, DO-201AE series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library -Diode DO-201AE series Axial Horizontal pin pitch 25.40mm length 9mm diameter 5.3mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-201AE_P25.40mm_Horizontal_TVS -Diode, DO-201AE series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library -Diode DO-201AE series Axial Horizontal pin pitch 25.40mm length 9mm diameter 5.3mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-201AE_P25.40mm_Horizontal_Zener -Diode, DO-201AE series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library -Diode DO-201AE series Axial Horizontal pin pitch 25.40mm length 9mm diameter 5.3mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-201AE_P30.48mm_Horizontal -Diode, DO-201AE series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library -Diode DO-201AE series Axial Horizontal pin pitch 30.48mm length 9mm diameter 5.3mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-201AE_P30.48mm_Horizontal_TVS -Diode, DO-201AE series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library -Diode DO-201AE series Axial Horizontal pin pitch 30.48mm length 9mm diameter 5.3mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-201AE_P30.48mm_Horizontal_Zener -Diode, DO-201AE series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library -Diode DO-201AE series Axial Horizontal pin pitch 30.48mm length 9mm diameter 5.3mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-201AE_P35.56mm_Horizontal -Diode, DO-201AE series, Axial, Horizontal, pin pitch=35.56mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library -Diode DO-201AE series Axial Horizontal pin pitch 35.56mm length 9mm diameter 5.3mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-201AE_P35.56mm_Horizontal_TVS -Diode, DO-201AE series, Axial, Horizontal, pin pitch=35.56mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library -Diode DO-201AE series Axial Horizontal pin pitch 35.56mm length 9mm diameter 5.3mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-201AE_P35.56mm_Horizontal_Zener -Diode, DO-201AE series, Axial, Horizontal, pin pitch=35.56mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library -Diode DO-201AE series Axial Horizontal pin pitch 35.56mm length 9mm diameter 5.3mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-201_P3.81mm_Vertical_AnodeUp -Diode, DO-201 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library -Diode DO-201 series Axial Vertical pin pitch 3.81mm length 9.53mm diameter 5.21mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-201_P3.81mm_Vertical_AnodeUp_Zener -Diode, DO-201 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library -Diode DO-201 series Axial Vertical pin pitch 3.81mm length 9.53mm diameter 5.21mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-201_P3.81mm_Vertical_KathodeUp -Diode, DO-201 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library -Diode DO-201 series Axial Vertical pin pitch 3.81mm length 9.53mm diameter 5.21mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-201_P3.81mm_Vertical_KathodeUp_Zener -Diode, DO-201 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library -Diode DO-201 series Axial Vertical pin pitch 3.81mm length 9.53mm diameter 5.21mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-201_P3.81mm_Vertical_TVS -Diode, DO-201 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library -Diode DO-201 series Axial Vertical pin pitch 3.81mm length 9.53mm diameter 5.21mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-201_P5.08mm_Vertical_AnodeUp -Diode, DO-201 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library -Diode DO-201 series Axial Vertical pin pitch 5.08mm length 9.53mm diameter 5.21mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-201_P5.08mm_Vertical_AnodeUp_Zener -Diode, DO-201 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library -Diode DO-201 series Axial Vertical pin pitch 5.08mm length 9.53mm diameter 5.21mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-201_P5.08mm_Vertical_KathodeUp -Diode, DO-201 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library -Diode DO-201 series Axial Vertical pin pitch 5.08mm length 9.53mm diameter 5.21mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-201_P5.08mm_Vertical_KathodeUp_Zener -Diode, DO-201 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library -Diode DO-201 series Axial Vertical pin pitch 5.08mm length 9.53mm diameter 5.21mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-201_P5.08mm_Vertical_TVS -Diode, DO-201 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library -Diode DO-201 series Axial Vertical pin pitch 5.08mm length 9.53mm diameter 5.21mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-201_P12.70mm_Horizontal -Diode, DO-201 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library -Diode DO-201 series Axial Horizontal pin pitch 12.7mm length 9.53mm diameter 5.21mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-201_P12.70mm_Horizontal_TVS -Diode, DO-201 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library -Diode DO-201 series Axial Horizontal pin pitch 12.7mm length 9.53mm diameter 5.21mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-201_P12.70mm_Horizontal_Zener -Diode, DO-201 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library -Diode DO-201 series Axial Horizontal pin pitch 12.7mm length 9.53mm diameter 5.21mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-201_P15.24mm_Horizontal -Diode, DO-201 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library -Diode DO-201 series Axial Horizontal pin pitch 15.24mm length 9.53mm diameter 5.21mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-201_P15.24mm_Horizontal_TVS -Diode, DO-201 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library -Diode DO-201 series Axial Horizontal pin pitch 15.24mm length 9.53mm diameter 5.21mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-201_P15.24mm_Horizontal_Zener -Diode, DO-201 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library -Diode DO-201 series Axial Horizontal pin pitch 15.24mm length 9.53mm diameter 5.21mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-201_P20.32mm_Horizontal -Diode, DO-201 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library -Diode DO-201 series Axial Horizontal pin pitch 20.32mm length 9.53mm diameter 5.21mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-201_P20.32mm_Horizontal_TVS -Diode, DO-201 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library -Diode DO-201 series Axial Horizontal pin pitch 20.32mm length 9.53mm diameter 5.21mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-201_P20.32mm_Horizontal_Zener -Diode, DO-201 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library -Diode DO-201 series Axial Horizontal pin pitch 20.32mm length 9.53mm diameter 5.21mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-201_P25.40mm_Horizontal -Diode, DO-201 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library -Diode DO-201 series Axial Horizontal pin pitch 25.40mm length 9.53mm diameter 5.21mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-201_P25.40mm_Horizontal_TVS -Diode, DO-201 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library -Diode DO-201 series Axial Horizontal pin pitch 25.40mm length 9.53mm diameter 5.21mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-201_P25.40mm_Horizontal_Zener -Diode, DO-201 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library -Diode DO-201 series Axial Horizontal pin pitch 25.40mm length 9.53mm diameter 5.21mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-201_P30.48mm_Horizontal -Diode, DO-201 series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library -Diode DO-201 series Axial Horizontal pin pitch 30.48mm length 9.53mm diameter 5.21mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-201_P30.48mm_Horizontal_TVS -Diode, DO-201 series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf -Diode DO-201 series Axial Horizontal pin pitch 30.48mm length 9.53mm diameter 5.21mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-201_P30.48mm_Horizontal_Zener -Diode, DO-201 series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library -Diode DO-201 series Axial Horizontal pin pitch 30.48mm length 9.53mm diameter 5.21mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-201_P35.56mm_Horizontal -Diode, DO-201 series, Axial, Horizontal, pin pitch=35.56mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library -Diode DO-201 series Axial Horizontal pin pitch 35.56mm length 9.53mm diameter 5.21mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-201_P35.56mm_Horizontal_TVS -Diode, DO-201 series, Axial, Horizontal, pin pitch=35.56mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library -Diode DO-201 series Axial Horizontal pin pitch 35.56mm length 9.53mm diameter 5.21mm -0 -2 -2 -PCM_Diode_THT_AKL -D_DO-201_P35.56mm_Horizontal_Zener -Diode, DO-201 series, Axial, Horizontal, pin pitch=35.56mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library -Diode DO-201 series Axial Horizontal pin pitch 35.56mm length 9.53mm diameter 5.21mm -0 -2 -2 -PCM_Diode_THT_AKL -D_P600_R-6_P7.62mm_Vertical_AnodeUp -Diode, P600_R-6 series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library -Diode P600_R-6 series Axial Vertical pin pitch 7.62mm length 9.1mm diameter 9.1mm -0 -2 -2 -PCM_Diode_THT_AKL -D_P600_R-6_P7.62mm_Vertical_AnodeUp_Zener -Diode, P600_R-6 series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library -Diode P600_R-6 series Axial Vertical pin pitch 7.62mm length 9.1mm diameter 9.1mm -0 -2 -2 -PCM_Diode_THT_AKL -D_P600_R-6_P7.62mm_Vertical_KathodeUp -Diode, P600_R-6 series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library -Diode P600_R-6 series Axial Vertical pin pitch 7.62mm length 9.1mm diameter 9.1mm -0 -2 -2 -PCM_Diode_THT_AKL -D_P600_R-6_P7.62mm_Vertical_KathodeUp_Zener -Diode, P600_R-6 series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library -Diode P600_R-6 series Axial Vertical pin pitch 7.62mm length 9.1mm diameter 9.1mm -0 -2 -2 -PCM_Diode_THT_AKL -D_P600_R-6_P7.62mm_Vertical_TVS -Diode, P600_R-6 series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library -Diode P600_R-6 series Axial Vertical pin pitch 7.62mm length 9.1mm diameter 9.1mm -0 -2 -2 -PCM_Diode_THT_AKL -D_P600_R-6_P12.70mm_Horizontal -Diode, P600_R-6 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library -Diode P600_R-6 series Axial Horizontal pin pitch 12.7mm length 9.1mm diameter 9.1mm -0 -2 -2 -PCM_Diode_THT_AKL -D_P600_R-6_P12.70mm_Horizontal_TVS -Diode, P600_R-6 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library -Diode P600_R-6 series Axial Horizontal pin pitch 12.7mm length 9.1mm diameter 9.1mm -0 -2 -2 -PCM_Diode_THT_AKL -D_P600_R-6_P12.70mm_Horizontal_Zener -Diode, P600_R-6 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library -Diode P600_R-6 series Axial Horizontal pin pitch 12.7mm length 9.1mm diameter 9.1mm -0 -2 -2 -PCM_Diode_THT_AKL -D_P600_R-6_P15.24mm_Horizontal -Diode, P600_R-6 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library -Diode P600_R-6 series Axial Horizontal pin pitch 15.24mm length 9.1mm diameter 9.1mm -0 -2 -2 -PCM_Diode_THT_AKL -D_P600_R-6_P15.24mm_Horizontal_TVS -Diode, P600_R-6 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library -Diode P600_R-6 series Axial Horizontal pin pitch 15.24mm length 9.1mm diameter 9.1mm -0 -2 -2 -PCM_Diode_THT_AKL -D_P600_R-6_P15.24mm_Horizontal_Zener -Diode, P600_R-6 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library -Diode P600_R-6 series Axial Horizontal pin pitch 15.24mm length 9.1mm diameter 9.1mm -0 -2 -2 -PCM_Diode_THT_AKL -D_P600_R-6_P20.00mm_Horizontal -Diode, P600_R-6 series, Axial, Horizontal, pin pitch=20mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library -Diode P600_R-6 series Axial Horizontal pin pitch 20mm length 9.1mm diameter 9.1mm -0 -2 -2 -PCM_Diode_THT_AKL -D_P600_R-6_P20.00mm_Horizontal_TVS -Diode, P600_R-6 series, Axial, Horizontal, pin pitch=20mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library -Diode P600_R-6 series Axial Horizontal pin pitch 20mm length 9.1mm diameter 9.1mm -0 -2 -2 -PCM_Diode_THT_AKL -D_P600_R-6_P20.00mm_Horizontal_Zener -Diode, P600_R-6 series, Axial, Horizontal, pin pitch=20mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library -Diode P600_R-6 series Axial Horizontal pin pitch 20mm length 9.1mm diameter 9.1mm -0 -2 -2 -PCM_Diode_THT_AKL -D_P600_R-6_P25.40mm_Horizontal -Diode, P600_R-6 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library -Diode P600_R-6 series Axial Horizontal pin pitch 25.40mm length 9.1mm diameter 9.1mm -0 -2 -2 -PCM_Diode_THT_AKL -D_P600_R-6_P25.40mm_Horizontal_TVS -Diode, P600_R-6 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library -Diode P600_R-6 series Axial Horizontal pin pitch 25.40mm length 9.1mm diameter 9.1mm -0 -2 -2 -PCM_Diode_THT_AKL -D_P600_R-6_P25.40mm_Horizontal_Zener -Diode, P600_R-6 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library -Diode P600_R-6 series Axial Horizontal pin pitch 25.40mm length 9.1mm diameter 9.1mm -0 -2 -2 -PCM_Diode_THT_AKL -D_P600_R-6_P30.48mm_Horizontal -Diode, P600_R-6 series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library -Diode P600_R-6 series Axial Horizontal pin pitch 30.48mm length 9.1mm diameter 9.1mm -0 -2 -2 -PCM_Diode_THT_AKL -D_P600_R-6_P30.48mm_Horizontal_TVS -Diode, P600_R-6 series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library -Diode P600_R-6 series Axial Horizontal pin pitch 30.48mm length 9.1mm diameter 9.1mm -0 -2 -2 -PCM_Diode_THT_AKL -D_P600_R-6_P30.48mm_Horizontal_Zener -Diode, P600_R-6 series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library -Diode P600_R-6 series Axial Horizontal pin pitch 30.48mm length 9.1mm diameter 9.1mm -0 -2 -2 -PCM_Diode_THT_AKL -D_P600_R-6_P35.56mm_Horizontal -Diode, P600_R-6 series, Axial, Horizontal, pin pitch=35.56mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library -Diode P600_R-6 series Axial Horizontal pin pitch 35.56mm length 9.1mm diameter 9.1mm -0 -2 -2 -PCM_Diode_THT_AKL -D_P600_R-6_P35.56mm_Horizontal_TVS -Diode, P600_R-6 series, Axial, Horizontal, pin pitch=35.56mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library -Diode P600_R-6 series Axial Horizontal pin pitch 35.56mm length 9.1mm diameter 9.1mm -0 -2 -2 -PCM_Diode_THT_AKL -D_P600_R-6_P35.56mm_Horizontal_Zener -Diode, P600_R-6 series, Axial, Horizontal, pin pitch=35.56mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library -Diode P600_R-6 series Axial Horizontal pin pitch 35.56mm length 9.1mm diameter 9.1mm -0 -2 -2 -PCM_Diode_THT_AKL -D_P600_R-6_P40.64mm_Horizontal -Diode, P600_R-6 series, Axial, Horizontal, pin pitch=40.64mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library -Diode P600_R-6 series Axial Horizontal pin pitch 40.64mm length 9.1mm diameter 9.1mm -0 -2 -2 -PCM_Diode_THT_AKL -D_P600_R-6_P40.64mm_Horizontal_Zener -Diode, P600_R-6 series, Axial, Horizontal, pin pitch=40.64mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library -Diode P600_R-6 series Axial Horizontal pin pitch 40.64mm length 9.1mm diameter 9.1mm -0 -2 -2 -PCM_Diode_THT_AKL -D_SOD-57_P5.08mm_Vertical_AnodeUp -Diode, SOD-57 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=4.57*3.8mm^2, ,https://www.nxp.com/docs/en/package-information/SOD57.pdf, Alternate KiCad Library -Diode SOD-57 series Axial Vertical pin pitch 5.08mm length 4.57mm diameter 3.8mm -0 -2 -2 -PCM_Diode_THT_AKL -D_SOD-57_P5.08mm_Vertical_AnodeUp_Zener -Diode, SOD-57 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=4.57*3.8mm^2, ,https://www.nxp.com/docs/en/package-information/SOD57.pdf, Alternate KiCad Library -Diode SOD-57 series Axial Vertical pin pitch 5.08mm length 4.57mm diameter 3.8mm -0 -2 -2 -PCM_Diode_THT_AKL -D_SOD-57_P5.08mm_Vertical_KathodeUp -Diode, SOD-57 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=4.57*3.8mm^2, ,https://www.nxp.com/docs/en/package-information/SOD57.pdf, Alternate KiCad Library -Diode SOD-57 series Axial Vertical pin pitch 5.08mm length 4.57mm diameter 3.8mm -0 -2 -2 -PCM_Diode_THT_AKL -D_SOD-57_P5.08mm_Vertical_KathodeUp_Zener -Diode, SOD-57 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=4.57*3.8mm^2, ,https://www.nxp.com/docs/en/package-information/SOD57.pdf, Alternate KiCad Library -Diode SOD-57 series Axial Vertical pin pitch 5.08mm length 4.57mm diameter 3.8mm -0 -2 -2 -PCM_Diode_THT_AKL -D_SOD-57_P7.62mm_Horizontal -Diode, SOD-57 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=4.6*3.8mm, , https://www.nxp.com/docs/en/package-information/SOD57.pdf, Alternate KiCad Library -Diode SOD-57 series Axial Horizontal pin pitch 7.62mm length 4.6mm diameter 3.8mm -0 -2 -2 -PCM_Diode_THT_AKL -D_SOD-57_P7.62mm_Horizontal_Zener -Diode, SOD-57 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=4.6*3.8mm, , https://www.nxp.com/docs/en/package-information/SOD57.pdf, Alternate KiCad Library -Diode SOD-57 series Axial Horizontal pin pitch 7.62mm length 4.6mm diameter 3.8mm -0 -2 -2 -PCM_Diode_THT_AKL -D_SOD-57_P10.16mm_Horizontal -Diode, SOD-57 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=4.6*3.8mm, , https://www.nxp.com/docs/en/package-information/SOD57.pdf, Alternate KiCad Library -Diode SOD-57 series Axial Horizontal pin pitch 10.16mm length 4.6mm diameter 3.8mm -0 -2 -2 -PCM_Diode_THT_AKL -D_SOD-57_P10.16mm_Horizontal_Zener -Diode, SOD-57 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=4.6*3.8mm, , https://www.nxp.com/docs/en/package-information/SOD57.pdf, Alternate KiCad Library -Diode SOD-57 series Axial Horizontal pin pitch 10.16mm length 4.6mm diameter 3.8mm -0 -2 -2 -PCM_Diode_THT_AKL -D_SOD-57_P12,70mm_Horizontal -Diode, SOD-57 series, Axial, Horizontal, pin pitch=12.70mm, , length*diameter=4.6*3.8mm, , https://www.nxp.com/docs/en/package-information/SOD57.pdf, Alternate KiCad Library -Diode SOD-57 series Axial Horizontal pin pitch 12.70mm length 4.6mm diameter 3.8mm -0 -2 -2 -PCM_Diode_THT_AKL -D_SOD-57_P12,70mm_Horizontal_Zener -Diode, SOD-57 series, Axial, Horizontal, pin pitch=12.70mm, , length*diameter=4.6*3.8mm, , https://www.nxp.com/docs/en/package-information/SOD57.pdf, Alternate KiCad Library -Diode SOD-57 series Axial Horizontal pin pitch 12.70mm length 4.6mm diameter 3.8mm -0 -2 -2 -PCM_Diode_THT_AKL -D_SOD-57_P12.70mm_Horizontal -Diode, SOD-57 series, Axial, Horizontal, pin pitch=12.70mm, , length*diameter=4.6*3.8mm, , https://www.nxp.com/docs/en/package-information/SOD57.pdf, Alternate KiCad Library -Diode SOD-57 series Axial Horizontal pin pitch 12.70mm length 4.6mm diameter 3.8mm -0 -2 -2 -PCM_Diode_THT_AKL -D_SOD-57_P15.24mm_Horizontal -Diode, SOD-57 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=4.6*3.8mm, , https://www.nxp.com/docs/en/package-information/SOD57.pdf, Alternate KiCad Library -Diode SOD-57 series Axial Horizontal pin pitch 15.24mm length 4.6mm diameter 3.8mm -0 -2 -2 -PCM_Diode_THT_AKL -D_SOD-57_P15.24mm_Horizontal_Zener -Diode, SOD-57 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=4.6*3.8mm, , https://www.nxp.com/docs/en/package-information/SOD57.pdf, Alternate KiCad Library -Diode SOD-57 series Axial Horizontal pin pitch 15.24mm length 4.6mm diameter 3.8mm -0 -2 -2 -PCM_Diode_THT_AKL -D_SOD-57_P20.32mm_Horizontal -Diode, SOD-57 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=4.6*3.8mm, , https://www.nxp.com/docs/en/package-information/SOD57.pdf, Alternate KiCad Library -Diode SOD-57 series Axial Horizontal pin pitch 20.32mm length 4.6mm diameter 3.8mm -0 -2 -2 -PCM_Diode_THT_AKL -D_SOD-57_P20.32mm_Horizontal_Zener -Diode, SOD-57 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=4.6*3.8mm, , https://www.nxp.com/docs/en/package-information/SOD57.pdf, Alternate KiCad Library -Diode SOD-57 series Axial Horizontal pin pitch 20.32mm length 4.6mm diameter 3.8mm -0 -2 -2 -PCM_Diode_THT_AKL -D_SOD-57_P25.40mm_Horizontal -Diode, SOD-57 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=4.6*3.8mm, , https://www.nxp.com/docs/en/package-information/SOD57.pdf, Alternate KiCad Library -Diode SOD-57 series Axial Horizontal pin pitch 25.40mm length 4.6mm diameter 3.8mm -0 -2 -2 -PCM_Diode_THT_AKL -D_SOD-57_P25.40mm_Horizontal_Zener -Diode, SOD-57 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=4.6*3.8mm, , https://www.nxp.com/docs/en/package-information/SOD57.pdf, Alternate KiCad Library -Diode SOD-57 series Axial Horizontal pin pitch 25.40mm length 4.6mm diameter 3.8mm -0 -2 -2 -PCM_Diode_THT_AKL -D_SOD-57_P30.48mm_Horizontal -Diode, SOD-57 series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=4.6*3.8mm, , https://www.nxp.com/docs/en/package-information/SOD57.pdf, Alternate KiCad Library -Diode SOD-57 series Axial Horizontal pin pitch 30.48mm length 4.6mm diameter 3.8mm -0 -2 -2 -PCM_Diode_THT_AKL -D_SOD-57_P30.48mm_Horizontal_Zener -Diode, SOD-57 series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=4.6*3.8mm, , https://www.nxp.com/docs/en/package-information/SOD57.pdf, Alternate KiCad Library -Diode SOD-57 series Axial Horizontal pin pitch 30.48mm length 4.6mm diameter 3.8mm -0 -2 -2 -PCM_Diode_THT_AKL -D_SOD-64_P5.08mm_Vertical_AnodeUp -Diode, SOD-64 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=5*4.5mm^2, ,https://www.nxp.com/docs/en/package-information/SOD64.pdf, Alternate KiCad Library -Diode SOD-64 series Axial Vertical pin pitch 5.08mm length 5mm diameter 4.5mm -0 -2 -2 -PCM_Diode_THT_AKL -D_SOD-64_P5.08mm_Vertical_AnodeUp_Zener -Diode, SOD-64 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=5*4.5mm^2, ,https://www.nxp.com/docs/en/package-information/SOD64.pdf, Alternate KiCad Library -Diode SOD-64 series Axial Vertical pin pitch 5.08mm length 5mm diameter 4.5mm -0 -2 -2 -PCM_Diode_THT_AKL -D_SOD-64_P5.08mm_Vertical_KathodeUp -Diode, SOD-64 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=5*4.5mm^2, ,https://www.nxp.com/docs/en/package-information/SOD64.pdf, Alternate KiCad Library -Diode SOD-64 series Axial Vertical pin pitch 5.08mm length 5mm diameter 4.5mm -0 -2 -2 -PCM_Diode_THT_AKL -D_SOD-64_P5.08mm_Vertical_KathodeUp_Zener -Diode, SOD-64 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=5*4.5mm^2, ,https://www.nxp.com/docs/en/package-information/SOD64.pdf, Alternate KiCad Library -Diode SOD-64 series Axial Vertical pin pitch 5.08mm length 5mm diameter 4.5mm -0 -2 -2 -PCM_Diode_THT_AKL -D_SOD-64_P7.62mm_Horizontal -Diode, SOD-57 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=5*4.5mm, , https://www.nxp.com/docs/en/package-information/SOD64.pdf, Alternate KiCad Library -Diode SOD-57 series Axial Horizontal pin pitch 7.62mm length 5mm diameter 4.5mm -0 -2 -2 -PCM_Diode_THT_AKL -D_SOD-64_P7.62mm_Horizontal_Zener -Diode, SOD-57 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=5*4.5mm, , https://www.nxp.com/docs/en/package-information/SOD64.pdf, Alternate KiCad Library -Diode SOD-57 series Axial Horizontal pin pitch 7.62mm length 5mm diameter 4.5mm -0 -2 -2 -PCM_Diode_THT_AKL -D_SOD-64_P10.16mm_Horizontal -Diode, SOD-57 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=5*4.5mm, , https://www.nxp.com/docs/en/package-information/SOD64.pdf, Alternate KiCad Library -Diode SOD-57 series Axial Horizontal pin pitch 10.16mm length 5mm diameter 4.5mm -0 -2 -2 -PCM_Diode_THT_AKL -D_SOD-64_P10.16mm_Horizontal_Zener -Diode, SOD-57 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=5*4.5mm, , https://www.nxp.com/docs/en/package-information/SOD64.pdf, Alternate KiCad Library -Diode SOD-57 series Axial Horizontal pin pitch 10.16mm length 5mm diameter 4.5mm -0 -2 -2 -PCM_Diode_THT_AKL -D_SOD-64_P12.70mm_Horizontal -Diode, SOD-57 series, Axial, Horizontal, pin pitch=12.70mm, , length*diameter=5*4.5mm, , https://www.nxp.com/docs/en/package-information/SOD64.pdf, Alternate KiCad Library -Diode SOD-57 series Axial Horizontal pin pitch 12.70mm length 5mm diameter 4.5mm -0 -2 -2 -PCM_Diode_THT_AKL -D_SOD-64_P12.70mm_Horizontal_Zener -Diode, SOD-57 series, Axial, Horizontal, pin pitch=12.70mm, , length*diameter=5*4.5mm, , https://www.nxp.com/docs/en/package-information/SOD64.pdf, Alternate KiCad Library -Diode SOD-57 series Axial Horizontal pin pitch 12.70mm length 5mm diameter 4.5mm -0 -2 -2 -PCM_Diode_THT_AKL -D_SOD-64_P15.24mm_Horizontal -Diode, SOD-57 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=5*4.5mm, , https://www.nxp.com/docs/en/package-information/SOD64.pdf, Alternate KiCad Library -Diode SOD-57 series Axial Horizontal pin pitch 15.24mm length 5mm diameter 4.5mm -0 -2 -2 -PCM_Diode_THT_AKL -D_SOD-64_P15.24mm_Horizontal_Zener -Diode, SOD-57 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=5*4.5mm, , https://www.nxp.com/docs/en/package-information/SOD64.pdf, Alternate KiCad Library -Diode SOD-57 series Axial Horizontal pin pitch 15.24mm length 5mm diameter 4.5mm -0 -2 -2 -PCM_Diode_THT_AKL -D_SOD-64_P20.32mm_Horizontal -Diode, SOD-57 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=5*4.5mm, , https://www.nxp.com/docs/en/package-information/SOD64.pdf, Alternate KiCad Library -Diode SOD-57 series Axial Horizontal pin pitch 20.32mm length 5mm diameter 4.5mm -0 -2 -2 -PCM_Diode_THT_AKL -D_SOD-64_P20.32mm_Horizontal_Zener -Diode, SOD-57 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=5*4.5mm, , https://www.nxp.com/docs/en/package-information/SOD64.pdf, Alternate KiCad Library -Diode SOD-57 series Axial Horizontal pin pitch 20.32mm length 5mm diameter 4.5mm -0 -2 -2 -PCM_Diode_THT_AKL -D_SOD-64_P25.40mm_Horizontal -Diode, SOD-57 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=5*4.5mm, , https://www.nxp.com/docs/en/package-information/SOD64.pdf, Alternate KiCad Library -Diode SOD-57 series Axial Horizontal pin pitch 25.40mm length 5mm diameter 4.5mm -0 -2 -2 -PCM_Diode_THT_AKL -D_SOD-64_P25.40mm_Horizontal_Zener -Diode, SOD-57 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=5*4.5mm, , https://www.nxp.com/docs/en/package-information/SOD64.pdf, Alternate KiCad Library -Diode SOD-57 series Axial Horizontal pin pitch 25.40mm length 5mm diameter 4.5mm -0 -2 -2 -PCM_Diode_THT_AKL -D_SOD-64_P30.48mm_Horizontal -Diode, SOD-57 series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=5*4.5mm, , https://www.nxp.com/docs/en/package-information/SOD64.pdf, Alternate KiCad Library -Diode SOD-57 series Axial Horizontal pin pitch 30.48mm length 5mm diameter 4.5mm -0 -2 -2 -PCM_Diode_THT_AKL -D_SOD-64_P30.48mm_Horizontal_Zener -Diode, SOD-57 series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=5*4.5mm, , https://www.nxp.com/docs/en/package-information/SOD64.pdf, Alternate KiCad Library -Diode SOD-57 series Axial Horizontal pin pitch 30.48mm length 5mm diameter 4.5mm -0 -2 -2 -PCM_Diode_THT_AKL -D_T-1_P2.54mm_Vertical_AnodeUp -Diode, T-1 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf, Alternate KiCad Library -Diode T-1 series Axial Vertical pin pitch 2.54mm length 3.2mm diameter 2.6mm -0 -2 -2 -PCM_Diode_THT_AKL -D_T-1_P2.54mm_Vertical_KathodeUp -Diode, T-1 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf, Alternate KiCad Library -Diode T-1 series Axial Vertical pin pitch 2.54mm length 3.2mm diameter 2.6mm -0 -2 -2 -PCM_Diode_THT_AKL -D_T-1_P5.08mm_Horizontal -Diode, T-1 series, Axial, Horizontal, pin pitch=5.08mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf, Alternate KiCad Library -Diode T-1 series Axial Horizontal pin pitch 5.08mm length 3.2mm diameter 2.6mm -0 -2 -2 -PCM_Diode_THT_AKL -D_T-1_P5.08mm_Horizontal_Zener -Diode, T-1 series, Axial, Horizontal, pin pitch=5.08mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf, Alternate KiCad Library -Diode T-1 series Axial Horizontal pin pitch 5.08mm length 3.2mm diameter 2.6mm -0 -2 -2 -PCM_Diode_THT_AKL -D_T-1_P7.62mm_Horizontal -Diode, T-1 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf, Alternate KiCad Library -Diode T-1 series Axial Horizontal pin pitch 7.62mm length 3.2mm diameter 2.6mm -0 -2 -2 -PCM_Diode_THT_AKL -D_T-1_P7.62mm_Horizontal_Zener -Diode, T-1 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf, Alternate KiCad Library -Diode T-1 series Axial Horizontal pin pitch 7.62mm length 3.2mm diameter 2.6mm -0 -2 -2 -PCM_Diode_THT_AKL -D_T-1_P10.16mm_Horizontal -Diode, T-1 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf, Alternate KiCad Library -Diode T-1 series Axial Horizontal pin pitch 10.16mm length 3.2mm diameter 2.6mm -0 -2 -2 -PCM_Diode_THT_AKL -D_T-1_P10.16mm_Horizontal_Zener -Diode, T-1 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf, Alternate KiCad Library -Diode T-1 series Axial Horizontal pin pitch 10.16mm length 3.2mm diameter 2.6mm -0 -2 -2 -PCM_Diode_THT_AKL -D_T-1_P12.70mm_Horizontal -Diode, T-1 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf, Alternate KiCad Library -Diode T-1 series Axial Horizontal pin pitch 12.7mm length 3.2mm diameter 2.6mm -0 -2 -2 -PCM_Diode_THT_AKL -D_T-1_P12.70mm_Horizontal_Zener -Diode, T-1 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf, Alternate KiCad Library -Diode T-1 series Axial Horizontal pin pitch 12.7mm length 3.2mm diameter 2.6mm -0 -2 -2 -PCM_Diode_THT_AKL -D_T-1_P15.24mm_Horizontal -Diode, T-1 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf, Alternate KiCad Library -Diode T-1 series Axial Horizontal pin pitch 15.24mm length 3.2mm diameter 2.6mm -0 -2 -2 -PCM_Diode_THT_AKL -D_T-1_P15.24mm_Horizontal_Zener -Diode, T-1 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf, Alternate KiCad Library -Diode T-1 series Axial Horizontal pin pitch 15.24mm length 3.2mm diameter 2.6mm -0 -2 -2 -PCM_Diode_THT_AKL -D_T-1_P20.32mm_Horizontal -Diode, T-1 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf, Alternate KiCad Library -Diode T-1 series Axial Horizontal pin pitch 20.32mm length 3.2mm diameter 2.6mm -0 -2 -2 -PCM_Diode_THT_AKL -D_T-1_P20.32mm_Horizontal_Zener -Diode, T-1 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf, Alternate KiCad Library -Diode T-1 series Axial Horizontal pin pitch 20.32mm length 3.2mm diameter 2.6mm -0 -2 -2 -PCM_Diode_THT_AKL -D_T-1_P25.40mm_Horizontal -Diode, T-1 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf, Alternate KiCad Library -Diode T-1 series Axial Horizontal pin pitch 25.40mm length 3.2mm diameter 2.6mm -0 -2 -2 -PCM_Diode_THT_AKL -D_T-1_P25.40mm_Horizontal_Zener -Diode, T-1 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf, Alternate KiCad Library -Diode T-1 series Axial Horizontal pin pitch 25.40mm length 3.2mm diameter 2.6mm -0 -2 -2 -PCM_Diode_THT_AKL -Diode_Bridge_3F_35x25x5.5mm_P7.5mm -Three Phase Rectifier Bridge, 35x25x5.5mm Pin Pitch 7.5mm, https://www.tme.eu/Document/8d67e957bbd6c52377808ea448d52e35/dbi2004b.pdf, Alternate KiCAD Library -diode bridge rectifier three phase 3F -0 -5 -5 -PCM_Diode_THT_AKL -Diode_Bridge_3F_35x25x5.5mm_P7.5mm_B -Three Phase Rectifier Bridge, 35x25x5.5mm Pin Pitch 7.5mm, https://www.tme.eu/Document/8d67e957bbd6c52377808ea448d52e35/dbi2004b.pdf, Alternate KiCAD Library -diode bridge rectifier three phase 3F -0 -5 -5 -PCM_Diode_THT_AKL -Diode_Bridge_3F_40x21.5x5.4mm_P7.5mm -Three Phase Rectifier Bridge, 40x21.5x5.4mm Pin Pitch 7.5mm, https://www.tme.eu/Document/610b0e9a98397aeaef704f0ed736f58e/DBI25-xxP.pdf, Alternate KiCAD Library -diode bridge rectifier three phase 3F DBI -0 -5 -5 -PCM_Diode_THT_AKL -Diode_Bridge_15.1x15.1x6.3mm_P10.9mm -Single phase bridge rectifier case 15.1x15.1mm, pitch 10.9mm, see https://diotec.com/tl_files/diotec/files/pdf/datasheets/pb1000.pdf -Diode Bridge PB10xxS -0 -4 -4 -PCM_Diode_THT_AKL -Diode_Bridge_15.2x15.2x6.3mm_P10.9mm -Single phase bridge rectifier case 15.2x15.2mm, pitch 10.9mm, see https://diotec.com/tl_files/diotec/files/pdf/datasheets/kbpc600.pdf -Diode Bridge KBPC6xx -0 -4 -4 -PCM_Diode_THT_AKL -Diode_Bridge_15.7x15.7x6.3mm_P10.8mm -Single phase bridge rectifier case 15.7x15.7 -Diode Bridge -0 -4 -4 -PCM_Diode_THT_AKL -Diode_Bridge_16.7x16.7x6.3mm_P10.8mm -Single phase bridge rectifier case 16.7x16.7 -Diode Bridge -0 -4 -4 -PCM_Diode_THT_AKL -Diode_Bridge_19.0x3.5x10.0mm_P5.0mm -Vishay GBU rectifier package, 5.08mm pitch, see http://www.vishay.com/docs/88606/g3sba20.pdf -Vishay GBU rectifier diode bridge -0 -4 -4 -PCM_Diode_THT_AKL -Diode_Bridge_19.0x3.5x10.0mm_P5.0mm_B -Vishay GBU rectifier package, 5.08mm pitch, see http://www.vishay.com/docs/88606/g3sba20.pdf -Vishay GBU rectifier diode bridge -0 -4 -4 -PCM_Diode_THT_AKL -Diode_Bridge_19.0x19.0x6.8mm_P12.7mm -Single phase bridge rectifier case 19x19mm, pitch 12.7mm, see https://diotec.com/tl_files/diotec/files/pdf/datasheets/pb1000.pdf -Diode Bridge PB10xx -0 -4 -4 -PCM_Diode_THT_AKL -Diode_Bridge_28.6x28.6x7.3mm_P5.08mm_Vertical -Single phase bridge rectifier case 28.6x28.6mm, Vertical mount, pitch 5.08mm, see https://www.tme.eu/Document/c6b90344b8f3d76b02c7159a1dcbbfbb/BR15xL_ser.pdf -Rectifier Bridge Square 28.6x26.8mm vertical -0 -4 -4 -PCM_Diode_THT_AKL -Diode_Bridge_28.6x28.6x7.3mm_P18.0mm_P11.6mm -Single phase bridge rectifier case 28.6x28.6mm, pitch 18.0mm & 11.6mm, see https://diotec.com/tl_files/diotec/files/pdf/datasheets/kbpc1500fw.pdf -Diode Bridge KBPCxxxxWP -0 -4 -4 -PCM_Diode_THT_AKL -Diode_Bridge_32.0x5.6x17.0mm_P10.0mm_P7.5mm -Diotec 32x5.6x17mm rectifier package, 7.5mm/10mm pitch, see https://diotec.com/tl_files/diotec/files/pdf/datasheets/b40c3700.pdf -Diotec rectifier diode bridge -0 -4 -4 -PCM_Diode_THT_AKL -Diode_Bridge_DIP-4_W5.08mm_P2.54mm -4-lead dip package for diode bridges, row spacing 5.08mm, pin-spacing 2.54mm, see http://www.vishay.com/docs/88898/b2m.pdf -DIL DIP PDIP 5.08mm 2.54 -0 -4 -4 -PCM_Diode_THT_AKL -Diode_Bridge_DIP-4_W7.62mm_P5.08mm -4-lead dip package for diode bridges, row spacing 7.62 mm (300 mils), see http://cdn-reichelt.de/documents/datenblatt/A400/HDBL101G_20SERIES-TSC.pdf -DIL DIP PDIP 5.08mm 7.62mm 300mil -0 -4 -4 -PCM_Diode_THT_AKL -Diode_Bridge_GBJ -GBJ rectifier package, 10/7.5mm pitch, see https://www.diodes.com/design/support/packaging/diodes-packaging/diodes-package-outlines-and-pad-layouts/ -GBJ rectifier diode bridge -0 -4 -4 -PCM_Diode_THT_AKL -Diode_Bridge_GBJL -GBJL rectifier package, 10/7.5mm pitch, see https://www.diodes.com/design/support/packaging/diodes-packaging/diodes-package-outlines-and-pad-layouts/ -GBJL rectifier diode bridge -0 -4 -4 -PCM_Diode_THT_AKL -Diode_Bridge_GBJS -GBJS rectifier package, 10/7.5mm pitch, see https://www.diodes.com/design/support/packaging/diodes-packaging/diodes-package-outlines-and-pad-layouts/ -GBJS rectifier diode bridge -0 -4 -4 -PCM_Diode_THT_AKL -Diode_Bridge_KBJ -KBJ rectifier package, 7.5mm pitch, see https://www.diodes.com/design/support/packaging/diodes-packaging/diodes-package-outlines-and-pad-layouts/ -KBJ rectifier diode bridge -0 -4 -4 -PCM_Diode_THT_AKL -Diode_Bridge_KBJL -KBJL rectifier package, 7.5mm pitch, see https://www.diodes.com/design/support/packaging/diodes-packaging/diodes-package-outlines-and-pad-layouts/ -KBJL rectifier diode bridge -0 -4 -4 -PCM_Diode_THT_AKL -Diode_Bridge_KBP -KBP rectifier package, 3.81mm pitch, see https://www.diodes.com/design/support/packaging/diodes-packaging/diodes-package-outlines-and-pad-layouts/ -KBP rectifier diode bridge -0 -4 -4 -PCM_Diode_THT_AKL -Diode_Bridge_Round_D8.9mm -4-lead round diode bridge package, diameter 8.9mm, pin pitch 5.08mm, see http://cdn-reichelt.de/documents/datenblatt/A400/W005M-W10M_SEP.PDF -diode bridge 8.9mm 8.85mm WOB pitch 5.08mm -0 -4 -4 -PCM_Diode_THT_AKL -Diode_Bridge_Round_D9.0mm -4-lead round diode bridge package, diameter 9.0mm, pin pitch 5.0mm, see https://diotec.com/tl_files/diotec/files/pdf/datasheets/b40r.pdf -diode bridge 9.0mm 8.85mm WOB pitch 5.0mm -0 -4 -4 -PCM_Diode_THT_AKL -Diode_Bridge_Round_D9.8mm -4-lead round diode bridge package, diameter 9.8mm, pin pitch 5.08mm, see http://www.vishay.com/docs/88769/woo5g.pdf -diode bridge 9.8mm WOG pitch 5.08mm -0 -4 -4 -PCM_Diode_THT_AKL -Diode_Bridge_Vishay_GBL -Vishay GBL rectifier package, 5.08mm pitch, see http://www.vishay.com/docs/88609/gbl005.pdf -Vishay GBL rectifier diode bridge -0 -4 -4 -PCM_Diode_THT_AKL -Diode_Bridge_Vishay_GBU -Vishay GBU rectifier package, 5.08mm pitch, see http://www.vishay.com/docs/88606/g3sba20.pdf -Vishay GBU rectifier diode bridge -0 -4 -4 -PCM_Diode_THT_AKL -Diode_Bridge_Vishay_KBL -Vishay KBL rectifier package, 5.08mm pitch, see http://www.vishay.com/docs/88655/kbl005.pdf -Vishay KBL rectifier diode bridge -0 -4 -4 -PCM_Diode_THT_AKL -Diode_Bridge_Vishay_KBPC1 -Single phase bridge rectifier case KBPC1, see http://www.vishay.com/docs/93585/vs-kbpc1series.pdf -Diode Bridge -0 -4 -4 -PCM_Diode_THT_AKL -Diode_Bridge_Vishay_KBPC6 -Single phase bridge rectifier case KBPC6, see http://www.vishay.com/docs/93585/vs-kbpc1series.pdf -Diode Bridge -0 -4 -4 -PCM_Diode_THT_AKL -Diode_Bridge_Vishay_KBU -Vishay KBU rectifier package, 5.08mm pitch, see http://www.vishay.com/docs/88656/kbu4.pdf -Vishay KBU rectifier diode bridge -0 -4 -4 -PCM_Diode_THT_AKL_Double -D_5KPW_P7.62mm_Vertical_AnodeUp -Diode, 5KPW series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=9*8mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5KPW series Axial Vertical pin pitch 7.62mm length 9mm diameter 8mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_5KPW_P7.62mm_Vertical_KathodeUp -Diode, 5KPW series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=9*8mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5KPW series Axial Vertical pin pitch 7.62mm length 9mm diameter 8mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_5KPW_P7.62mm_Vertical_TVS -Diode, 5KPW series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=9*8mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5KPW series Axial Vertical pin pitch 7.62mm length 9mm diameter 8mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_5KPW_P12.70mm_Horizontal -Diode, 5KPW series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9*8mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5KPW series Axial Horizontal pin pitch 12.7mm length 9mm diameter 8mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_5KPW_P12.70mm_Horizontal_TVS -Diode, 5KPW series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9*8mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5KPW series Axial Horizontal pin pitch 12.7mm length 9mm diameter 8mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_5KPW_P15.24mm_Horizontal -Diode, 5KPW series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9*8mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5KPW series Axial Horizontal pin pitch 15.24mm length 9mm diameter 8mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_5KPW_P15.24mm_Horizontal_TVS -Diode, 5KPW series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9*8mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5KPW series Axial Horizontal pin pitch 15.24mm length 9mm diameter 8mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_5KPW_P20.32mm_Horizontal -Diode, 5KPW series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=9*8mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5KPW series Axial Horizontal pin pitch 20.32mm length 9mm diameter 8mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_5KPW_P20.32mm_Horizontal_TVS -Diode, 5KPW series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=9*8mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5KPW series Axial Horizontal pin pitch 20.32mm length 9mm diameter 8mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_5KPW_P25.40mm_Horizontal -Diode, 5KPW series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=9*8mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5KPW series Axial Horizontal pin pitch 25.40mm length 9mm diameter 8mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_5KPW_P25.40mm_Horizontal_TVS -Diode, 5KPW series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=9*8mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5KPW series Axial Horizontal pin pitch 25.40mm length 9mm diameter 8mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_5KPW_P30.48mm_Horizontal -Diode, 5KPW series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=9*8mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5KPW series Axial Horizontal pin pitch 30.48mm length 9mm diameter 8mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_5KPW_P30.48mm_Horizontal_TVS -Diode, 5KPW series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=9*8mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5KPW series Axial Horizontal pin pitch 30.48mm length 9mm diameter 8mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_5KPW_P35.56mm_Horizontal -Diode, 5KPW series, Axial, Horizontal, pin pitch=35.56mm, , length*diameter=9*8mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5KPW series Axial Horizontal pin pitch 35.56mm length 9mm diameter 8mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_5KPW_P35.56mm_Horizontal_TVS -Diode, 5KPW series, Axial, Horizontal, pin pitch=35.56mm, , length*diameter=9*8mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5KPW series Axial Horizontal pin pitch 35.56mm length 9mm diameter 8mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_5KPW_P40.64mm_Horizontal -Diode, 5KPW series, Axial, Horizontal, pin pitch=40.64mm, , length*diameter=9*8mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5KPW series Axial Horizontal pin pitch 40.64mm length 9mm diameter 8mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_5KPW_P40.64mm_Horizontal_TVS -Diode, 5KPW series, Axial, Horizontal, pin pitch=40.64mm, , length*diameter=9*8mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5KPW series Axial Horizontal pin pitch 40.64mm length 9mm diameter 8mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_5KP_P7.62mm_Vertical_AnodeUp -Diode, 5KP series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5KP series Axial Vertical pin pitch 7.62mm length 7.62mm diameter 9.53mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_5KP_P7.62mm_Vertical_KathodeUp -Diode, 5KP series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5KP series Axial Vertical pin pitch 7.62mm length 7.62mm diameter 9.53mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_5KP_P7.62mm_Vertical_TVS -Diode, 5KP series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5KP series Axial Vertical pin pitch 7.62mm length 7.62mm diameter 9.53mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_5KP_P10.16mm_Horizontal -Diode, 5KP series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5KP series Axial Horizontal pin pitch 10.16mm length 7.62mm diameter 9.53mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_5KP_P10.16mm_Horizontal_TVS -Diode, 5KP series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5KP series Axial Horizontal pin pitch 10.16mm length 7.62mm diameter 9.53mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_5KP_P12.70mm_Horizontal -Diode, 5KP series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5KP series Axial Horizontal pin pitch 12.7mm length 7.62mm diameter 9.53mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_5KP_P12.70mm_Horizontal_TVS -Diode, 5KP series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5KP series Axial Horizontal pin pitch 12.7mm length 7.62mm diameter 9.53mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_5KP_P15.24mm_Horizontal -Diode, 5KP series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5KP series Axial Horizontal pin pitch 15.24mm length 7.62mm diameter 9.53mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_5KP_P15.24mm_Horizontal_TVS -Diode, 5KP series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5KP series Axial Horizontal pin pitch 15.24mm length 7.62mm diameter 9.53mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_5KP_P20.32mm_Horizontal -Diode, 5KP series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5KP series Axial Horizontal pin pitch 20.32mm length 7.62mm diameter 9.53mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_5KP_P20.32mm_Horizontal_TVS -Diode, 5KP series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5KP series Axial Horizontal pin pitch 20.32mm length 7.62mm diameter 9.53mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_5KP_P25.40mm_Horizontal -Diode, 5KP series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5KP series Axial Horizontal pin pitch 25.40mm length 7.62mm diameter 9.53mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_5KP_P25.40mm_Horizontal_TVS -Diode, 5KP series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5KP series Axial Horizontal pin pitch 25.40mm length 7.62mm diameter 9.53mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_5KP_P30.48mm_Horizontal -Diode, 5KP series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5KP series Axial Horizontal pin pitch 30.48mm length 7.62mm diameter 9.53mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_5KP_P30.48mm_Horizontal_TVS -Diode, 5KP series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5KP series Axial Horizontal pin pitch 30.48mm length 7.62mm diameter 9.53mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_5KP_P35.56mm_Horizontal -Diode, 5KP series, Axial, Horizontal, pin pitch=35.56mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5KP series Axial Horizontal pin pitch 35.56mm length 7.62mm diameter 9.53mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_5KP_P35.56mm_Horizontal_TVS -Diode, 5KP series, Axial, Horizontal, pin pitch=35.56mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5KP series Axial Horizontal pin pitch 35.56mm length 7.62mm diameter 9.53mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_5KP_P40.64mm_Horizontal -Diode, 5KP series, Axial, Horizontal, pin pitch=40.64mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5KP series Axial Horizontal pin pitch 40.64mm length 7.62mm diameter 9.53mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_5KP_P40.64mm_Horizontal_TVS -Diode, 5KP series, Axial, Horizontal, pin pitch=40.64mm, , length*diameter=7.62*9.53mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5KP series Axial Horizontal pin pitch 40.64mm length 7.62mm diameter 9.53mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_5W_CASE-017AA_P5.08mm_Vertical_AnodeUp -Diode, 5W, CASE-017AA, Axial, Vertical, pin pitch=5.08mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5W series CASE-017AA Axial Vertical pin pitch 5.08mm length 8.9mm diameter 3.7mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_5W_CASE-017AA_P5.08mm_Vertical_AnodeUp_Zener -Diode, 5W, CASE-017AA, Axial, Vertical, pin pitch=5.08mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5W series CASE-017AA Axial Vertical pin pitch 5.08mm length 8.9mm diameter 3.7mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_5W_CASE-017AA_P5.08mm_Vertical_KathodeUp -Diode, 5W, CASE-017AA, Axial, Vertical, pin pitch=5.08mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5W series CASE-017AA Axial Vertical pin pitch 5.08mm length 8.9mm diameter 3.7mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_5W_CASE-017AA_P5.08mm_Vertical_KathodeUp_Zener -Diode, 5W, CASE-017AA, Axial, Vertical, pin pitch=5.08mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5W series CASE-017AA Axial Vertical pin pitch 5.08mm length 8.9mm diameter 3.7mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_5W_CASE-017AA_P5.08mm_Vertical_TVS -Diode, 5W, CASE-017AA, Axial, Vertical, pin pitch=5.08mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5W series CASE-017AA Axial Vertical pin pitch 5.08mm length 8.9mm diameter 3.7mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_5W_CASE-017AA_P10.16mm_Horizontal -Diode, 5W, CASE-017AA, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5W series CASE-017AA Axial Horizontal pin pitch 10.16mm length 8.9mm diameter 3.7mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_5W_CASE-017AA_P10.16mm_Horizontal_TVS -Diode, 5W, CASE-017AA, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5W series CASE-017AA Axial Horizontal pin pitch 10.16mm length 8.9mm diameter 3.7mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_5W_CASE-017AA_P10.16mm_Horizontal_Zener -Diode, 5W, CASE-017AA, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5W series CASE-017AA Axial Horizontal pin pitch 10.16mm length 8.9mm diameter 3.7mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_5W_CASE-017AA_P12.70mm_Horizontal -Diode, 5W, CASE-017AA, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5W series CASE-017AA Axial Horizontal pin pitch 12.7mm length 8.9mm diameter 3.7mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_5W_CASE-017AA_P12.70mm_Horizontal_TVS -Diode, 5W, CASE-017AA, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5W series CASE-017AA Axial Horizontal pin pitch 12.7mm length 8.9mm diameter 3.7mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_5W_CASE-017AA_P12.70mm_Horizontal_Zener -Diode, 5W, CASE-017AA, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5W series CASE-017AA Axial Horizontal pin pitch 12.7mm length 8.9mm diameter 3.7mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_5W_CASE-017AA_P15.24mm_Horizontal -Diode, 5W, CASE-017AA, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5W series CASE-017AA Axial Horizontal pin pitch 15.24mm length 8.9mm diameter 3.7mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_5W_CASE-017AA_P15.24mm_Horizontal_TVS -Diode, 5W, CASE-017AA, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5W series CASE-017AA Axial Horizontal pin pitch 15.24mm length 8.9mm diameter 3.7mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_5W_CASE-017AA_P15.24mm_Horizontal_Zener -Diode, 5W, CASE-017AA, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5W series CASE-017AA Axial Horizontal pin pitch 15.24mm length 8.9mm diameter 3.7mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_5W_CASE-017AA_P20.32mm_Horizontal -Diode, 5W, CASE-017AA, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5W series CASE-017AA Axial Horizontal pin pitch 20.32mm length 8.9mm diameter 3.7mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_5W_CASE-017AA_P20.32mm_Horizontal_TVS -Diode, 5W, CASE-017AA, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5W series CASE-017AA Axial Horizontal pin pitch 20.32mm length 8.9mm diameter 3.7mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_5W_CASE-017AA_P20.32mm_Horizontal_Zener -Diode, 5W, CASE-017AA, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5W series CASE-017AA Axial Horizontal pin pitch 20.32mm length 8.9mm diameter 3.7mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_5W_CASE-017AA_P25.40mm_Horizontal -Diode, 5W, CASE-017AA Axial, Horizontal, pin pitch=25.40mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5W series CASE-017AA Axial Horizontal pin pitch 25.40mm length 8.9mm diameter 3.7mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_5W_CASE-017AA_P25.40mm_Horizontal_TVS -Diode, 5W, CASE-017AA Axial, Horizontal, pin pitch=25.40mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5W series CASE-017AA Axial Horizontal pin pitch 25.40mm length 8.9mm diameter 3.7mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_5W_CASE-017AA_P25.40mm_Horizontal_Zener -Diode, 5W, CASE-017AA Axial, Horizontal, pin pitch=25.40mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5W series CASE-017AA Axial Horizontal pin pitch 25.40mm length 8.9mm diameter 3.7mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_5W_CASE-017AA_P30.48mm_Horizontal -Diode, 5W, CASE-017AA Axial, Horizontal, pin pitch=30.48mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5W series CASE-017AA Axial Horizontal pin pitch 30.48mm length 8.9mm diameter 3.7mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_5W_CASE-017AA_P30.48mm_Horizontal_TVS -Diode, 5W, CASE-017AA Axial, Horizontal, pin pitch=30.48mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5W series CASE-017AA Axial Horizontal pin pitch 30.48mm length 8.9mm diameter 3.7mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_5W_CASE-017AA_P30.48mm_Horizontal_Zener -Diode, 5W, CASE-017AA Axial, Horizontal, pin pitch=30.48mm, , length*diameter=8.9*3.7mm^2, , http://www.diodes.com/_files/packages/8686949.gif, Alternate KiCad Library -Diode 5W series CASE-017AA Axial Horizontal pin pitch 30.48mm length 8.9mm diameter 3.7mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_A-405_P2.54mm_Vertical_AnodeUp -Diode, A-405 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library -Diode A-405 series Axial Vertical pin pitch 2.54mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_A-405_P2.54mm_Vertical_AnodeUp_Zener -Diode, A-405 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library -Diode A-405 series Axial Vertical pin pitch 2.54mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_A-405_P2.54mm_Vertical_KathodeUp -Diode, A-405 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library -Diode A-405 series Axial Vertical pin pitch 2.54mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_A-405_P2.54mm_Vertical_KathodeUp_Zener -Diode, A-405 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library -Diode A-405 series Axial Vertical pin pitch 2.54mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_A-405_P2.54mm_Vertical_TVS -Diode, A-405 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library -Diode A-405 series Axial Vertical pin pitch 2.54mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_A-405_P5.08mm_Vertical_AnodeUp -Diode, A-405 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library -Diode A-405 series Axial Vertical pin pitch 5.08mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_A-405_P5.08mm_Vertical_AnodeUp_Zener -Diode, A-405 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library -Diode A-405 series Axial Vertical pin pitch 5.08mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_A-405_P5.08mm_Vertical_KathodeUp -Diode, A-405 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library -Diode A-405 series Axial Vertical pin pitch 5.08mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_A-405_P5.08mm_Vertical_KathodeUp_Zener -Diode, A-405 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library -Diode A-405 series Axial Vertical pin pitch 5.08mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_A-405_P5.08mm_Vertical_TVS -Diode, A-405 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library -Diode A-405 series Axial Vertical pin pitch 5.08mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_A-405_P7.62mm_Horizontal -Diode, A-405 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library -Diode A-405 series Axial Horizontal pin pitch 7.62mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_A-405_P7.62mm_Horizontal_TVS -Diode, A-405 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library -Diode A-405 series Axial Horizontal pin pitch 7.62mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_A-405_P7.62mm_Horizontal_Zener -Diode, A-405 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library -Diode A-405 series Axial Horizontal pin pitch 7.62mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_A-405_P10.16mm_Horizontal -Diode, A-405 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library -Diode A-405 series Axial Horizontal pin pitch 10.16mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_A-405_P10.16mm_Horizontal_TVS -Diode, A-405 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library -Diode A-405 series Axial Horizontal pin pitch 10.16mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_A-405_P10.16mm_Horizontal_Zener -Diode, A-405 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library -Diode A-405 series Axial Horizontal pin pitch 10.16mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_A-405_P12.70mm_Horizontal -Diode, A-405 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library -Diode A-405 series Axial Horizontal pin pitch 12.7mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_A-405_P12.70mm_Horizontal_TVS -Diode, A-405 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library -Diode A-405 series Axial Horizontal pin pitch 12.7mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_A-405_P12.70mm_Horizontal_Zener -Diode, A-405 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library -Diode A-405 series Axial Horizontal pin pitch 12.7mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_A-405_P15.24mm_Horizontal -Diode, A-405 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library -Diode A-405 series Axial Horizontal pin pitch 15.24mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_A-405_P15.24mm_Horizontal_TVS -Diode, A-405 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library -Diode A-405 series Axial Horizontal pin pitch 15.24mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_A-405_P15.24mm_Horizontal_Zener -Diode, A-405 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library -Diode A-405 series Axial Horizontal pin pitch 15.24mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_A-405_P20.32mm_Horizontal -Diode, A-405 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library -Diode A-405 series Axial Horizontal pin pitch 20.32mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_A-405_P20.32mm_Horizontal_TVS -Diode, A-405 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library -Diode A-405 series Axial Horizontal pin pitch 20.32mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_A-405_P20.32mm_Horizontal_Zener -Diode, A-405 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library -Diode A-405 series Axial Horizontal pin pitch 20.32mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_A-405_P25.40mm_Horizontal -Diode, A-405 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library -Diode A-405 series Axial Horizontal pin pitch 25.40mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_A-405_P30.48mm_Horizontal -Diode, A-405 series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/A-405.pdf, Alternate KiCad Library -Diode A-405 series Axial Horizontal pin pitch 30.48mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-15_P2.54mm_Vertical_AnodeUp -Diode, DO-15 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library -Diode DO-15 series Axial Vertical pin pitch 2.54mm length 7.6mm diameter 3.6mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-15_P2.54mm_Vertical_KathodeUp -Diode, DO-15 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library -Diode DO-15 series Axial Vertical pin pitch 2.54mm length 7.6mm diameter 3.6mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-15_P3.81mm_Vertical_AnodeUp -Diode, DO-15 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library -Diode DO-15 series Axial Vertical pin pitch 3.81mm length 7.6mm diameter 3.6mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-15_P3.81mm_Vertical_AnodeUp_Zener -Diode, DO-15 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library -Diode DO-15 series Axial Vertical pin pitch 3.81mm length 7.6mm diameter 3.6mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-15_P3.81mm_Vertical_KathodeUp -Diode, DO-15 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library -Diode DO-15 series Axial Vertical pin pitch 3.81mm length 7.6mm diameter 3.6mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-15_P3.81mm_Vertical_KathodeUp_Zener -Diode, DO-15 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library -Diode DO-15 series Axial Vertical pin pitch 3.81mm length 7.6mm diameter 3.6mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-15_P3.81mm_Vertical_TVS -Diode, DO-15 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library -Diode DO-15 series Axial Vertical pin pitch 3.81mm length 7.6mm diameter 3.6mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-15_P5.08mm_Vertical_AnodeUp -Diode, DO-15 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library -Diode DO-15 series Axial Vertical pin pitch 5.08mm length 7.6mm diameter 3.6mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-15_P5.08mm_Vertical_AnodeUp_Zener -Diode, DO-15 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library -Diode DO-15 series Axial Vertical pin pitch 5.08mm length 7.6mm diameter 3.6mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-15_P5.08mm_Vertical_KathodeUp -Diode, DO-15 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library -Diode DO-15 series Axial Vertical pin pitch 5.08mm length 7.6mm diameter 3.6mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-15_P5.08mm_Vertical_KathodeUp_Zener -Diode, DO-15 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library -Diode DO-15 series Axial Vertical pin pitch 5.08mm length 7.6mm diameter 3.6mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-15_P5.08mm_Vertical_TVS -Diode, DO-15 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library -Diode DO-15 series Axial Vertical pin pitch 5.08mm length 7.6mm diameter 3.6mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-15_P10.16mm_Horizontal -Diode, DO-15 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library -Diode DO-15 series Axial Horizontal pin pitch 10.16mm length 7.6mm diameter 3.6mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-15_P10.16mm_Horizontal_TVS -Diode, DO-15 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library -Diode DO-15 series Axial Horizontal pin pitch 10.16mm length 7.6mm diameter 3.6mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-15_P10.16mm_Horizontal_Zener -Diode, DO-15 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library -Diode DO-15 series Axial Horizontal pin pitch 10.16mm length 7.6mm diameter 3.6mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-15_P12.70mm_Horizontal -Diode, DO-15 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library -Diode DO-15 series Axial Horizontal pin pitch 12.7mm length 7.6mm diameter 3.6mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-15_P12.70mm_Horizontal_TVS -Diode, DO-15 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library -Diode DO-15 series Axial Horizontal pin pitch 12.7mm length 7.6mm diameter 3.6mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-15_P12.70mm_Horizontal_Zener -Diode, DO-15 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library -Diode DO-15 series Axial Horizontal pin pitch 12.7mm length 7.6mm diameter 3.6mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-15_P15.24mm_Horizontal -Diode, DO-15 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library -Diode DO-15 series Axial Horizontal pin pitch 15.24mm length 7.6mm diameter 3.6mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-15_P15.24mm_Horizontal_TVS -Diode, DO-15 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library -Diode DO-15 series Axial Horizontal pin pitch 15.24mm length 7.6mm diameter 3.6mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-15_P15.24mm_Horizontal_Zener -Diode, DO-15 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library -Diode DO-15 series Axial Horizontal pin pitch 15.24mm length 7.6mm diameter 3.6mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-15_P20.32mm_Horizontal -Diode, DO-15 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library -Diode DO-15 series Axial Horizontal pin pitch 20.32mm length 7.6mm diameter 3.6mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-15_P20.32mm_Horizontal_TVS -Diode, DO-15 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library -Diode DO-15 series Axial Horizontal pin pitch 20.32mm length 7.6mm diameter 3.6mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-15_P20.32mm_Horizontal_Zener -Diode, DO-15 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library -Diode DO-15 series Axial Horizontal pin pitch 20.32mm length 7.6mm diameter 3.6mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-15_P25.40mm_Horizontal -Diode, DO-15 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library -Diode DO-15 series Axial Horizontal pin pitch 25.40mm length 7.6mm diameter 3.6mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-15_P25.40mm_Horizontal_TVS -Diode, DO-15 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library -Diode DO-15 series Axial Horizontal pin pitch 25.40mm length 7.6mm diameter 3.6mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-15_P25.40mm_Horizontal_Zener -Diode, DO-15 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library -Diode DO-15 series Axial Horizontal pin pitch 25.40mm length 7.6mm diameter 3.6mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-15_P30.48mm_Horizontal -Diode, DO-15 series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library -Diode DO-15 series Axial Horizontal pin pitch 30.48mm length 7.6mm diameter 3.6mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-15_P30.48mm_Horizontal_TVS -Diode, DO-15 series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library -Diode DO-15 series Axial Horizontal pin pitch 30.48mm length 7.6mm diameter 3.6mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-15_P30.48mm_Horizontal_Zener -Diode, DO-15 series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=7.6*3.6mm^2, , http://www.diodes.com/_files/packages/DO-15.pdf, Alternate KiCad Library -Diode DO-15 series Axial Horizontal pin pitch 30.48mm length 7.6mm diameter 3.6mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-27_P5.08mm_Vertical_AnodeUp -Diode, DO-27 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg, Alternate KiCad Library -Diode DO-27 series Axial Vertical pin pitch 5.08mm length 9.52mm diameter 5.33mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-27_P5.08mm_Vertical_AnodeUp_Zener -Diode, DO-27 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg, Alternate KiCad Library -Diode DO-27 series Axial Vertical pin pitch 5.08mm length 9.52mm diameter 5.33mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-27_P5.08mm_Vertical_KathodeUp -Diode, DO-27 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg, Alternate KiCad Library -Diode DO-27 series Axial Vertical pin pitch 5.08mm length 9.52mm diameter 5.33mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-27_P5.08mm_Vertical_KathodeUp_Zener -Diode, DO-27 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg, Alternate KiCad Library -Diode DO-27 series Axial Vertical pin pitch 5.08mm length 9.52mm diameter 5.33mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-27_P5.08mm_Vertical_TVS -Diode, DO-27 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg, Alternate KiCad Library -Diode DO-27 series Axial Vertical pin pitch 5.08mm length 9.52mm diameter 5.33mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-27_P12.70mm_Horizontal -Diode, DO-27 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg, Alternate KiCad Library -Diode DO-27 series Axial Horizontal pin pitch 12.7mm length 9.52mm diameter 5.33mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-27_P12.70mm_Horizontal_TVS -Diode, DO-27 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg, Alternate KiCad Library -Diode DO-27 series Axial Horizontal pin pitch 12.7mm length 9.52mm diameter 5.33mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-27_P12.70mm_Horizontal_Zener -Diode, DO-27 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg, Alternate KiCad Library -Diode DO-27 series Axial Horizontal pin pitch 12.7mm length 9.52mm diameter 5.33mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-27_P15.24mm_Horizontal -Diode, DO-27 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg, Alternate KiCad Library -Diode DO-27 series Axial Horizontal pin pitch 15.24mm length 9.52mm diameter 5.33mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-27_P15.24mm_Horizontal_TVS -Diode, DO-27 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg, Alternate KiCad Library -Diode DO-27 series Axial Horizontal pin pitch 15.24mm length 9.52mm diameter 5.33mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-27_P15.24mm_Horizontal_Zener -Diode, DO-27 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg, Alternate KiCad Library -Diode DO-27 series Axial Horizontal pin pitch 15.24mm length 9.52mm diameter 5.33mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-27_P20.32mm_Horizontal -Diode, DO-27 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg, Alternate KiCad Library -Diode DO-27 series Axial Horizontal pin pitch 20.32mm length 9.52mm diameter 5.33mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-27_P20.32mm_Horizontal_TVS -Diode, DO-27 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg, Alternate KiCad Library -Diode DO-27 series Axial Horizontal pin pitch 20.32mm length 9.52mm diameter 5.33mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-27_P20.32mm_Horizontal_Zener -Diode, DO-27 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg, Alternate KiCad Library -Diode DO-27 series Axial Horizontal pin pitch 20.32mm length 9.52mm diameter 5.33mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-27_P25.40mm_Horizontal -Diode, DO-27 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg, Alternate KiCad Library -Diode DO-27 series Axial Horizontal pin pitch 25.40mm length 9.52mm diameter 5.33mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-27_P25.40mm_Horizontal_TVS -Diode, DO-27 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg, Alternate KiCad Library -Diode DO-27 series Axial Horizontal pin pitch 25.40mm length 9.52mm diameter 5.33mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-27_P25.40mm_Horizontal_Zener -Diode, DO-27 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg, Alternate KiCad Library -Diode DO-27 series Axial Horizontal pin pitch 25.40mm length 9.52mm diameter 5.33mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-27_P30.48mm_Horizontal -Diode, DO-27 series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg, Alternate KiCad Library -Diode DO-27 series Axial Horizontal pin pitch 30.48mm length 9.52mm diameter 5.33mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-27_P30.48mm_Horizontal_TVS -Diode, DO-27 series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg, Alternate KiCad Library -Diode DO-27 series Axial Horizontal pin pitch 30.48mm length 9.52mm diameter 5.33mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-27_P30.48mm_Horizontal_Zener -Diode, DO-27 series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=9.52*5.33mm^2, , http://www.slottechforum.com/slotinfo/Techstuff/CD2%20Diodes%20and%20Transistors/Cases/Diode%20DO-27.jpg, Alternate KiCad Library -Diode DO-27 series Axial Horizontal pin pitch 30.48mm length 9.52mm diameter 5.33mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-34_SOD68_P2.54mm_Vertical_AnodeUp -Diode, DO-34_SOD68 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf, Alternate KiCad Library -Diode DO-34_SOD68 series Axial Vertical pin pitch 2.54mm length 3.04mm diameter 1.6mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-34_SOD68_P2.54mm_Vertical_AnodeUp_Zener -Diode, DO-34_SOD68 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf, Alternate KiCad Library -Diode DO-34_SOD68 series Axial Vertical pin pitch 2.54mm length 3.04mm diameter 1.6mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-34_SOD68_P2.54mm_Vertical_KathodeUp -Diode, DO-34_SOD68 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf, Alternate KiCad Library -Diode DO-34_SOD68 series Axial Vertical pin pitch 2.54mm length 3.04mm diameter 1.6mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-34_SOD68_P2.54mm_Vertical_KathodeUp_Zener -Diode, DO-34_SOD68 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf, Alternate KiCad Library -Diode DO-34_SOD68 series Axial Vertical pin pitch 2.54mm length 3.04mm diameter 1.6mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-34_SOD68_P5.08mm_Vertical_AnodeUp -Diode, DO-34_SOD68 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf, Alternate KiCad Library -Diode DO-34_SOD68 series Axial Vertical pin pitch 5.08mm length 3.04mm diameter 1.6mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-34_SOD68_P5.08mm_Vertical_AnodeUp_Zener -Diode, DO-34_SOD68 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf, Alternate KiCad Library -Diode DO-34_SOD68 series Axial Vertical pin pitch 5.08mm length 3.04mm diameter 1.6mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-34_SOD68_P5.08mm_Vertical_KathodeUp -Diode, DO-34_SOD68 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf, Alternate KiCad Library -Diode DO-34_SOD68 series Axial Vertical pin pitch 5.08mm length 3.04mm diameter 1.6mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-34_SOD68_P5.08mm_Vertical_KathodeUp_Zener -Diode, DO-34_SOD68 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf, Alternate KiCad Library -Diode DO-34_SOD68 series Axial Vertical pin pitch 5.08mm length 3.04mm diameter 1.6mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-34_SOD68_P7.62mm_Horizontal -Diode, DO-34_SOD68 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf, Alternate KiCad Library -Diode DO-34_SOD68 series Axial Horizontal pin pitch 7.62mm length 3.04mm diameter 1.6mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-34_SOD68_P7.62mm_Horizontal_Zener -Diode, DO-34_SOD68 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf, Alternate KiCad Library -Diode DO-34_SOD68 series Axial Horizontal pin pitch 7.62mm length 3.04mm diameter 1.6mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-34_SOD68_P10.16mm_Horizontal -Diode, DO-34_SOD68 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf, Alternate KiCad Library -Diode DO-34_SOD68 series Axial Horizontal pin pitch 10.16mm length 3.04mm diameter 1.6mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-34_SOD68_P10.16mm_Horizontal_Zener -Diode, DO-34_SOD68 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf, Alternate KiCad Library -Diode DO-34_SOD68 series Axial Horizontal pin pitch 10.16mm length 3.04mm diameter 1.6mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-34_SOD68_P12.70mm_Horizontal -Diode, DO-34_SOD68 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf, Alternate KiCad Library -Diode DO-34_SOD68 series Axial Horizontal pin pitch 12.7mm length 3.04mm diameter 1.6mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-34_SOD68_P12.70mm_Horizontal_Zener -Diode, DO-34_SOD68 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf, Alternate KiCad Library -Diode DO-34_SOD68 series Axial Horizontal pin pitch 12.7mm length 3.04mm diameter 1.6mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-34_SOD68_P15.24mm_Horizontal -Diode, DO-34_SOD68 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf, Alternate KiCad Library -Diode DO-34_SOD68 series Axial Horizontal pin pitch 15.24mm length 3.04mm diameter 1.6mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-34_SOD68_P15.24mm_Horizontal_Zener -Diode, DO-34_SOD68 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf, Alternate KiCad Library -Diode DO-34_SOD68 series Axial Horizontal pin pitch 15.24mm length 3.04mm diameter 1.6mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-34_SOD68_P20.32mm_Horizontal -Diode, DO-34_SOD68 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf, Alternate KiCad Library -Diode DO-34_SOD68 series Axial Horizontal pin pitch 20.32mm length 3.04mm diameter 1.6mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-34_SOD68_P20.32mm_Horizontal_Zener -Diode, DO-34_SOD68 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf, Alternate KiCad Library -Diode DO-34_SOD68 series Axial Horizontal pin pitch 20.32mm length 3.04mm diameter 1.6mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-34_SOD68_P25.40mm_Horizontal -Diode, DO-34_SOD68 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf, Alternate KiCad Library -Diode DO-34_SOD68 series Axial Horizontal pin pitch 25.40mm length 3.04mm diameter 1.6mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-34_SOD68_P25.40mm_Horizontal_Zener -Diode, DO-34_SOD68 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=3.04*1.6mm^2, , https://www.nxp.com/docs/en/data-sheet/KTY83_SER.pdf, Alternate KiCad Library -Diode DO-34_SOD68 series Axial Horizontal pin pitch 25.40mm length 3.04mm diameter 1.6mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-35_SOD27_P2.54mm_Vertical_AnodeUp -Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library -Diode DO-35_SOD27 series Axial Vertical pin pitch 2.54mm length 4mm diameter 2mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-35_SOD27_P2.54mm_Vertical_AnodeUp_Zener -Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library -Diode DO-35_SOD27 series Axial Vertical pin pitch 2.54mm length 4mm diameter 2mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-35_SOD27_P2.54mm_Vertical_KathodeUp -Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library -Diode DO-35_SOD27 series Axial Vertical pin pitch 2.54mm length 4mm diameter 2mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-35_SOD27_P2.54mm_Vertical_KathodeUp_Zener -Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library -Diode DO-35_SOD27 series Axial Vertical pin pitch 2.54mm length 4mm diameter 2mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-35_SOD27_P3.81mm_Vertical_AnodeUp -Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library -Diode DO-35_SOD27 series Axial Vertical pin pitch 3.81mm length 4mm diameter 2mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-35_SOD27_P3.81mm_Vertical_AnodeUp_Zener -Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library -Diode DO-35_SOD27 series Axial Vertical pin pitch 3.81mm length 4mm diameter 2mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-35_SOD27_P3.81mm_Vertical_Diac -Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library -Diode DO-35_SOD27 series Axial Vertical pin pitch 3.81mm length 4mm diameter 2mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-35_SOD27_P3.81mm_Vertical_KathodeUp -Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library -Diode DO-35_SOD27 series Axial Vertical pin pitch 3.81mm length 4mm diameter 2mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-35_SOD27_P3.81mm_Vertical_KathodeUp_Zener -Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library -Diode DO-35_SOD27 series Axial Vertical pin pitch 3.81mm length 4mm diameter 2mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-35_SOD27_P5.08mm_Vertical_AnodeUp -Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library -Diode DO-35_SOD27 series Axial Vertical pin pitch 5.08mm length 4mm diameter 2mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-35_SOD27_P5.08mm_Vertical_AnodeUp_Zener -Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library -Diode DO-35_SOD27 series Axial Vertical pin pitch 5.08mm length 4mm diameter 2mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-35_SOD27_P5.08mm_Vertical_Diac -Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library -Diode DO-35_SOD27 series Axial Vertical pin pitch 5.08mm length 4mm diameter 2mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-35_SOD27_P5.08mm_Vertical_KathodeUp -Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library -Diode DO-35_SOD27 series Axial Vertical pin pitch 5.08mm length 4mm diameter 2mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-35_SOD27_P5.08mm_Vertical_KathodeUp_Zener -Diode, DO-35_SOD27 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library -Diode DO-35_SOD27 series Axial Vertical pin pitch 5.08mm length 4mm diameter 2mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-35_SOD27_P7.62mm_Horizontal -Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library -Diode DO-35_SOD27 series Axial Horizontal pin pitch 7.62mm length 4mm diameter 2mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-35_SOD27_P7.62mm_Horizontal_Diac -Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library -Diode DO-35_SOD27 series Axial Horizontal pin pitch 7.62mm length 4mm diameter 2mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-35_SOD27_P7.62mm_Horizontal_Zener -Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library -Diode DO-35_SOD27 series Axial Horizontal pin pitch 7.62mm length 4mm diameter 2mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-35_SOD27_P10.16mm_Horizontal -Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library -Diode DO-35_SOD27 series Axial Horizontal pin pitch 10.16mm length 4mm diameter 2mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-35_SOD27_P10.16mm_Horizontal_Diac -Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library -Diode DO-35_SOD27 series Axial Horizontal pin pitch 10.16mm length 4mm diameter 2mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-35_SOD27_P10.16mm_Horizontal_Zener -Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library -Diode DO-35_SOD27 series Axial Horizontal pin pitch 10.16mm length 4mm diameter 2mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-35_SOD27_P12.70mm_Horizontal -Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library -Diode DO-35_SOD27 series Axial Horizontal pin pitch 12.7mm length 4mm diameter 2mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-35_SOD27_P12.70mm_Horizontal_Diac -Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library -Diode DO-35_SOD27 series Axial Horizontal pin pitch 12.7mm length 4mm diameter 2mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-35_SOD27_P12.70mm_Horizontal_Zener -Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library -Diode DO-35_SOD27 series Axial Horizontal pin pitch 12.7mm length 4mm diameter 2mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-35_SOD27_P15.24mm_Horizontal -Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library -Diode DO-35_SOD27 series Axial Horizontal pin pitch 15.24mm length 4mm diameter 2mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-35_SOD27_P15.24mm_Horizontal_Diac -Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library -Diode DO-35_SOD27 series Axial Horizontal pin pitch 15.24mm length 4mm diameter 2mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-35_SOD27_P15.24mm_Horizontal_Zener -Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library -Diode DO-35_SOD27 series Axial Horizontal pin pitch 15.24mm length 4mm diameter 2mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-35_SOD27_P20.32mm_Horizontal -Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library -Diode DO-35_SOD27 series Axial Horizontal pin pitch 20.32mm length 4mm diameter 2mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-35_SOD27_P20.32mm_Horizontal_Diac -Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library -Diode DO-35_SOD27 series Axial Horizontal pin pitch 20.32mm length 4mm diameter 2mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-35_SOD27_P20.32mm_Horizontal_Zener -Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library -Diode DO-35_SOD27 series Axial Horizontal pin pitch 20.32mm length 4mm diameter 2mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-35_SOD27_P25.40mm_Horizontal -Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library -Diode DO-35_SOD27 series Axial Horizontal pin pitch 25.40mm length 4mm diameter 2mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-35_SOD27_P25.40mm_Horizontal_Diac -Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library -Diode DO-35_SOD27 series Axial Horizontal pin pitch 25.40mm length 4mm diameter 2mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-35_SOD27_P25.40mm_Horizontal_Zener -Diode, DO-35_SOD27 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=4*2mm^2, , http://www.diodes.com/_files/packages/DO-35.pdf, Alternate KiCad Library -Diode DO-35_SOD27 series Axial Horizontal pin pitch 25.40mm length 4mm diameter 2mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-41_SOD81_P2.54mm_Vertical_AnodeUp -Diode, DO-41_SOD81 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library -Diode DO-41_SOD81 series Axial Vertical pin pitch 2.54mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-41_SOD81_P2.54mm_Vertical_KathodeUp -Diode, DO-41_SOD81 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library -Diode DO-41_SOD81 series Axial Vertical pin pitch 2.54mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-41_SOD81_P3.81mm_Vertical_AnodeUp -Diode, DO-41_SOD81 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=5.2*2.7mm^2, , https://www.diodes.com/assets/Package-Files/DO-41-Plastic.pdf, Alternate KiCad Library -Diode DO-41_SOD81 series Axial Vertical pin pitch 3.81mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-41_SOD81_P3.81mm_Vertical_AnodeUp_Zener -Diode, DO-41_SOD81 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=5.2*2.7mm^2, , https://www.diodes.com/assets/Package-Files/DO-41-Plastic.pdf, Alternate KiCad Library -Diode DO-41_SOD81 series Axial Vertical pin pitch 3.81mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-41_SOD81_P3.81mm_Vertical_KathodeUp -Diode, DO-41_SOD81 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=5.2*2.7mm^2, , https://www.diodes.com/assets/Package-Files/DO-41-Plastic.pdf, Alternate KiCad Library -Diode DO-41_SOD81 series Axial Vertical pin pitch 3.81mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-41_SOD81_P3.81mm_Vertical_KathodeUp_Zener -Diode, DO-41_SOD81 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=5.2*2.7mm^2, , https://www.diodes.com/assets/Package-Files/DO-41-Plastic.pdf, Alternate KiCad Library -Diode DO-41_SOD81 series Axial Vertical pin pitch 3.81mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-41_SOD81_P3.81mm_Vertical_TVS -Diode, DO-41_SOD81 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=5.2*2.7mm^2, , https://www.diodes.com/assets/Package-Files/DO-41-Plastic.pdf, Alternate KiCad Library -Diode DO-41_SOD81 series Axial Vertical pin pitch 3.81mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-41_SOD81_P5.08mm_Vertical_AnodeUp -Diode, DO-41_SOD81 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library -Diode DO-41_SOD81 series Axial Vertical pin pitch 5.08mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-41_SOD81_P5.08mm_Vertical_AnodeUp_Zener -Diode, DO-41_SOD81 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library -Diode DO-41_SOD81 series Axial Vertical pin pitch 5.08mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-41_SOD81_P5.08mm_Vertical_KathodeUp -Diode, DO-41_SOD81 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library -Diode DO-41_SOD81 series Axial Vertical pin pitch 5.08mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-41_SOD81_P5.08mm_Vertical_KathodeUp_Zener -Diode, DO-41_SOD81 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library -Diode DO-41_SOD81 series Axial Vertical pin pitch 5.08mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-41_SOD81_P5.08mm_Vertical_TVS -Diode, DO-41_SOD81 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library -Diode DO-41_SOD81 series Axial Vertical pin pitch 5.08mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-41_SOD81_P7.62mm_Horizontal -Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library -Diode DO-41_SOD81 series Axial Horizontal pin pitch 7.62mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-41_SOD81_P7.62mm_Horizontal_TVS -Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library -Diode DO-41_SOD81 series Axial Horizontal pin pitch 7.62mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-41_SOD81_P7.62mm_Horizontal_Zener -Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library -Diode DO-41_SOD81 series Axial Horizontal pin pitch 7.62mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-41_SOD81_P10.16mm_Horizontal -Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library -Diode DO-41_SOD81 series Axial Horizontal pin pitch 10.16mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-41_SOD81_P10.16mm_Horizontal_TVS -Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library -Diode DO-41_SOD81 series Axial Horizontal pin pitch 10.16mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-41_SOD81_P10.16mm_Horizontal_Zener -Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library -Diode DO-41_SOD81 series Axial Horizontal pin pitch 10.16mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-41_SOD81_P12.70mm_Horizontal -Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library -Diode DO-41_SOD81 series Axial Horizontal pin pitch 12.7mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-41_SOD81_P12.70mm_Horizontal_TVS -Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library -Diode DO-41_SOD81 series Axial Horizontal pin pitch 12.7mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-41_SOD81_P12.70mm_Horizontal_Zener -Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library -Diode DO-41_SOD81 series Axial Horizontal pin pitch 12.7mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-41_SOD81_P15.24mm_Horizontal -Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library -Diode DO-41_SOD81 series Axial Horizontal pin pitch 15.24mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-41_SOD81_P15.24mm_Horizontal_TVS -Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library -Diode DO-41_SOD81 series Axial Horizontal pin pitch 15.24mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-41_SOD81_P15.24mm_Horizontal_Zener -Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library -Diode DO-41_SOD81 series Axial Horizontal pin pitch 15.24mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-41_SOD81_P20.32mm_Horizontal -Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library -Diode DO-41_SOD81 series Axial Horizontal pin pitch 20.32mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-41_SOD81_P20.32mm_Horizontal_TVS -Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library -Diode DO-41_SOD81 series Axial Horizontal pin pitch 20.32mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-41_SOD81_P20.32mm_Horizontal_Zener -Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library -Diode DO-41_SOD81 series Axial Horizontal pin pitch 20.32mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-41_SOD81_P25.40mm_Horizontal -Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library -Diode DO-41_SOD81 series Axial Horizontal pin pitch 25.40mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-41_SOD81_P25.40mm_Horizontal_TVS -Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library -Diode DO-41_SOD81 series Axial Horizontal pin pitch 25.40mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-41_SOD81_P25.40mm_Horizontal_Zener -Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library -Diode DO-41_SOD81 series Axial Horizontal pin pitch 25.40mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-41_SOD81_P30.48mm_Horizontal -Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library -Diode DO-41_SOD81 series Axial Horizontal pin pitch 30.48mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-41_SOD81_P30.48mm_Horizontal_TVS -Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library -Diode DO-41_SOD81 series Axial Horizontal pin pitch 30.48mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-41_SOD81_P30.48mm_Horizontal_Zener -Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf, Alternate KiCad Library -Diode DO-41_SOD81 series Axial Horizontal pin pitch 30.48mm length 5.2mm diameter 2.7mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-201AD_P3.81mm_Vertical_AnodeUp -Diode, DO-201AD series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library -Diode DO-201AD series Axial Vertical pin pitch 3.81mm length 9.5mm diameter 5.2mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-201AD_P3.81mm_Vertical_KathodeUp -Diode, DO-201AD series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library -Diode DO-201AD series Axial Vertical pin pitch 3.81mm length 9.5mm diameter 5.2mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-201AD_P5.08mm_Vertical_AnodeUp -Diode, DO-201AD series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library -Diode DO-201AD series Axial Vertical pin pitch 5.08mm length 9.5mm diameter 5.2mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-201AD_P5.08mm_Vertical_AnodeUp_Zener -Diode, DO-201AD series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library -Diode DO-201AD series Axial Vertical pin pitch 5.08mm length 9.5mm diameter 5.2mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-201AD_P5.08mm_Vertical_KathodeUp -Diode, DO-201AD series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library -Diode DO-201AD series Axial Vertical pin pitch 5.08mm length 9.5mm diameter 5.2mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-201AD_P5.08mm_Vertical_KathodeUp_Zener -Diode, DO-201AD series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library -Diode DO-201AD series Axial Vertical pin pitch 5.08mm length 9.5mm diameter 5.2mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-201AD_P5.08mm_Vertical_TVS -Diode, DO-201AD series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library -Diode DO-201AD series Axial Vertical pin pitch 5.08mm length 9.5mm diameter 5.2mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-201AD_P12.70mm_Horizontal -Diode, DO-201AD series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library -Diode DO-201AD series Axial Horizontal pin pitch 12.7mm length 9.5mm diameter 5.2mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-201AD_P12.70mm_Horizontal_TVS -Diode, DO-201AD series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library -Diode DO-201AD series Axial Horizontal pin pitch 12.7mm length 9.5mm diameter 5.2mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-201AD_P12.70mm_Horizontal_Zener -Diode, DO-201AD series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library -Diode DO-201AD series Axial Horizontal pin pitch 12.7mm length 9.5mm diameter 5.2mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-201AD_P15.24mm_Horizontal -Diode, DO-201AD series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library -Diode DO-201AD series Axial Horizontal pin pitch 15.24mm length 9.5mm diameter 5.2mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-201AD_P15.24mm_Horizontal_TVS -Diode, DO-201AD series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library -Diode DO-201AD series Axial Horizontal pin pitch 15.24mm length 9.5mm diameter 5.2mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-201AD_P15.24mm_Horizontal_Zener -Diode, DO-201AD series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library -Diode DO-201AD series Axial Horizontal pin pitch 15.24mm length 9.5mm diameter 5.2mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-201AD_P20.32mm_Horizontal -Diode, DO-201AD series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library -Diode DO-201AD series Axial Horizontal pin pitch 20.32mm length 9.5mm diameter 5.2mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-201AD_P20.32mm_Horizontal_TVS -Diode, DO-201AD series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library -Diode DO-201AD series Axial Horizontal pin pitch 20.32mm length 9.5mm diameter 5.2mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-201AD_P20.32mm_Horizontal_Zener -Diode, DO-201AD series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library -Diode DO-201AD series Axial Horizontal pin pitch 20.32mm length 9.5mm diameter 5.2mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-201AD_P25.40mm_Horizontal -Diode, DO-201AD series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library -Diode DO-201AD series Axial Horizontal pin pitch 25.40mm length 9.5mm diameter 5.2mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-201AD_P25.40mm_Horizontal_TVS -Diode, DO-201AD series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library -Diode DO-201AD series Axial Horizontal pin pitch 25.40mm length 9.5mm diameter 5.2mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-201AD_P25.40mm_Horizontal_Zener -Diode, DO-201AD series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library -Diode DO-201AD series Axial Horizontal pin pitch 25.40mm length 9.5mm diameter 5.2mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-201AD_P30.48mm_Horizontal -Diode, DO-201AD series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library -Diode DO-201AD series Axial Horizontal pin pitch 30.48mm length 9.5mm diameter 5.2mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-201AD_P30.48mm_Horizontal_TVS -Diode, DO-201AD series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library -Diode DO-201AD series Axial Horizontal pin pitch 30.48mm length 9.5mm diameter 5.2mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-201AD_P30.48mm_Horizontal_Zener -Diode, DO-201AD series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library -Diode DO-201AD series Axial Horizontal pin pitch 30.48mm length 9.5mm diameter 5.2mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-201AD_P35.56mm_Horizontal -Diode, DO-201AD series, Axial, Horizontal, pin pitch=35.56mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library -Diode DO-201AD series Axial Horizontal pin pitch 35.56mm length 9.5mm diameter 5.2mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-201AD_P35.56mm_Horizontal_TVS -Diode, DO-201AD series, Axial, Horizontal, pin pitch=35.56mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library -Diode DO-201AD series Axial Horizontal pin pitch 35.56mm length 9.5mm diameter 5.2mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-201AD_P35.56mm_Horizontal_Zener -Diode, DO-201AD series, Axial, Horizontal, pin pitch=35.56mm, , length*diameter=9.5*5.2mm^2, , http://www.diodes.com/_files/packages/DO-201AD.pdf, Alternate KiCad Library -Diode DO-201AD series Axial Horizontal pin pitch 35.56mm length 9.5mm diameter 5.2mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-201AE_P3.81mm_Vertical_AnodeUp -Diode, DO-201AE series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library -Diode DO-201AE series Axial Vertical pin pitch 3.81mm length 9mm diameter 5.3mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-201AE_P3.81mm_Vertical_AnodeUp_Zener -Diode, DO-201AE series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library -Diode DO-201AE series Axial Vertical pin pitch 3.81mm length 9mm diameter 5.3mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-201AE_P3.81mm_Vertical_KathodeUp -Diode, DO-201AE series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library -Diode DO-201AE series Axial Vertical pin pitch 3.81mm length 9mm diameter 5.3mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-201AE_P3.81mm_Vertical_KathodeUp_Zener -Diode, DO-201AE series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library -Diode DO-201AE series Axial Vertical pin pitch 3.81mm length 9mm diameter 5.3mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-201AE_P3.81mm_Vertical_TVS -Diode, DO-201AE series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library -Diode DO-201AE series Axial Vertical pin pitch 3.81mm length 9mm diameter 5.3mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-201AE_P5.08mm_Vertical_AnodeUp -Diode, DO-201AE series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library -Diode DO-201AE series Axial Vertical pin pitch 5.08mm length 9mm diameter 5.3mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-201AE_P5.08mm_Vertical_AnodeUp_Zener -Diode, DO-201AE series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library -Diode DO-201AE series Axial Vertical pin pitch 5.08mm length 9mm diameter 5.3mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-201AE_P5.08mm_Vertical_KathodeUp -Diode, DO-201AE series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library -Diode DO-201AE series Axial Vertical pin pitch 5.08mm length 9mm diameter 5.3mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-201AE_P5.08mm_Vertical_KathodeUp_Zener -Diode, DO-201AE series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library -Diode DO-201AE series Axial Vertical pin pitch 5.08mm length 9mm diameter 5.3mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-201AE_P5.08mm_Vertical_TVS -Diode, DO-201AE series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library -Diode DO-201AE series Axial Vertical pin pitch 5.08mm length 9mm diameter 5.3mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-201AE_P12.70mm_Horizontal -Diode, DO-201AE series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library -Diode DO-201AE series Axial Horizontal pin pitch 12.7mm length 9mm diameter 5.3mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-201AE_P12.70mm_Horizontal_TVS -Diode, DO-201AE series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library -Diode DO-201AE series Axial Horizontal pin pitch 12.7mm length 9mm diameter 5.3mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-201AE_P12.70mm_Horizontal_Zener -Diode, DO-201AE series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library -Diode DO-201AE series Axial Horizontal pin pitch 12.7mm length 9mm diameter 5.3mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-201AE_P15.24mm_Horizontal -Diode, DO-201AE series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library -Diode DO-201AE series Axial Horizontal pin pitch 15.24mm length 9mm diameter 5.3mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-201AE_P15.24mm_Horizontal_TVS -Diode, DO-201AE series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library -Diode DO-201AE series Axial Horizontal pin pitch 15.24mm length 9mm diameter 5.3mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-201AE_P15.24mm_Horizontal_Zener -Diode, DO-201AE series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library -Diode DO-201AE series Axial Horizontal pin pitch 15.24mm length 9mm diameter 5.3mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-201AE_P20.32mm_Horizontal -Diode, DO-201AE series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library -Diode DO-201AE series Axial Horizontal pin pitch 20.32mm length 9mm diameter 5.3mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-201AE_P20.32mm_Horizontal_TVS -Diode, DO-201AE series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library -Diode DO-201AE series Axial Horizontal pin pitch 20.32mm length 9mm diameter 5.3mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-201AE_P20.32mm_Horizontal_Zener -Diode, DO-201AE series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library -Diode DO-201AE series Axial Horizontal pin pitch 20.32mm length 9mm diameter 5.3mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-201AE_P25.40mm_Horizontal -Diode, DO-201AE series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library -Diode DO-201AE series Axial Horizontal pin pitch 25.40mm length 9mm diameter 5.3mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-201AE_P25.40mm_Horizontal_TVS -Diode, DO-201AE series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library -Diode DO-201AE series Axial Horizontal pin pitch 25.40mm length 9mm diameter 5.3mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-201AE_P25.40mm_Horizontal_Zener -Diode, DO-201AE series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library -Diode DO-201AE series Axial Horizontal pin pitch 25.40mm length 9mm diameter 5.3mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-201AE_P30.48mm_Horizontal -Diode, DO-201AE series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library -Diode DO-201AE series Axial Horizontal pin pitch 30.48mm length 9mm diameter 5.3mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-201AE_P30.48mm_Horizontal_TVS -Diode, DO-201AE series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library -Diode DO-201AE series Axial Horizontal pin pitch 30.48mm length 9mm diameter 5.3mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-201AE_P30.48mm_Horizontal_Zener -Diode, DO-201AE series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library -Diode DO-201AE series Axial Horizontal pin pitch 30.48mm length 9mm diameter 5.3mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-201AE_P35.56mm_Horizontal -Diode, DO-201AE series, Axial, Horizontal, pin pitch=35.56mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library -Diode DO-201AE series Axial Horizontal pin pitch 35.56mm length 9mm diameter 5.3mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-201AE_P35.56mm_Horizontal_TVS -Diode, DO-201AE series, Axial, Horizontal, pin pitch=35.56mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library -Diode DO-201AE series Axial Horizontal pin pitch 35.56mm length 9mm diameter 5.3mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-201AE_P35.56mm_Horizontal_Zener -Diode, DO-201AE series, Axial, Horizontal, pin pitch=35.56mm, , length*diameter=9*5.3mm^2, , http://www.farnell.com/datasheets/529758.pdf, Alternate KiCad Library -Diode DO-201AE series Axial Horizontal pin pitch 35.56mm length 9mm diameter 5.3mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-201_P3.81mm_Vertical_AnodeUp -Diode, DO-201 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library -Diode DO-201 series Axial Vertical pin pitch 3.81mm length 9.53mm diameter 5.21mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-201_P3.81mm_Vertical_AnodeUp_Zener -Diode, DO-201 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library -Diode DO-201 series Axial Vertical pin pitch 3.81mm length 9.53mm diameter 5.21mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-201_P3.81mm_Vertical_KathodeUp -Diode, DO-201 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library -Diode DO-201 series Axial Vertical pin pitch 3.81mm length 9.53mm diameter 5.21mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-201_P3.81mm_Vertical_KathodeUp_Zener -Diode, DO-201 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library -Diode DO-201 series Axial Vertical pin pitch 3.81mm length 9.53mm diameter 5.21mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-201_P3.81mm_Vertical_TVS -Diode, DO-201 series, Axial, Vertical, pin pitch=3.81mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library -Diode DO-201 series Axial Vertical pin pitch 3.81mm length 9.53mm diameter 5.21mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-201_P5.08mm_Vertical_AnodeUp -Diode, DO-201 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library -Diode DO-201 series Axial Vertical pin pitch 5.08mm length 9.53mm diameter 5.21mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-201_P5.08mm_Vertical_AnodeUp_Zener -Diode, DO-201 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library -Diode DO-201 series Axial Vertical pin pitch 5.08mm length 9.53mm diameter 5.21mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-201_P5.08mm_Vertical_KathodeUp -Diode, DO-201 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library -Diode DO-201 series Axial Vertical pin pitch 5.08mm length 9.53mm diameter 5.21mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-201_P5.08mm_Vertical_KathodeUp_Zener -Diode, DO-201 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library -Diode DO-201 series Axial Vertical pin pitch 5.08mm length 9.53mm diameter 5.21mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-201_P5.08mm_Vertical_TVS -Diode, DO-201 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library -Diode DO-201 series Axial Vertical pin pitch 5.08mm length 9.53mm diameter 5.21mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-201_P12.70mm_Horizontal -Diode, DO-201 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library -Diode DO-201 series Axial Horizontal pin pitch 12.7mm length 9.53mm diameter 5.21mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-201_P12.70mm_Horizontal_TVS -Diode, DO-201 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library -Diode DO-201 series Axial Horizontal pin pitch 12.7mm length 9.53mm diameter 5.21mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-201_P12.70mm_Horizontal_Zener -Diode, DO-201 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library -Diode DO-201 series Axial Horizontal pin pitch 12.7mm length 9.53mm diameter 5.21mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-201_P15.24mm_Horizontal -Diode, DO-201 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library -Diode DO-201 series Axial Horizontal pin pitch 15.24mm length 9.53mm diameter 5.21mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-201_P15.24mm_Horizontal_TVS -Diode, DO-201 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library -Diode DO-201 series Axial Horizontal pin pitch 15.24mm length 9.53mm diameter 5.21mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-201_P15.24mm_Horizontal_Zener -Diode, DO-201 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library -Diode DO-201 series Axial Horizontal pin pitch 15.24mm length 9.53mm diameter 5.21mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-201_P20.32mm_Horizontal -Diode, DO-201 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library -Diode DO-201 series Axial Horizontal pin pitch 20.32mm length 9.53mm diameter 5.21mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-201_P20.32mm_Horizontal_TVS -Diode, DO-201 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library -Diode DO-201 series Axial Horizontal pin pitch 20.32mm length 9.53mm diameter 5.21mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-201_P20.32mm_Horizontal_Zener -Diode, DO-201 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library -Diode DO-201 series Axial Horizontal pin pitch 20.32mm length 9.53mm diameter 5.21mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-201_P25.40mm_Horizontal -Diode, DO-201 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library -Diode DO-201 series Axial Horizontal pin pitch 25.40mm length 9.53mm diameter 5.21mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-201_P25.40mm_Horizontal_TVS -Diode, DO-201 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library -Diode DO-201 series Axial Horizontal pin pitch 25.40mm length 9.53mm diameter 5.21mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-201_P25.40mm_Horizontal_Zener -Diode, DO-201 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library -Diode DO-201 series Axial Horizontal pin pitch 25.40mm length 9.53mm diameter 5.21mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-201_P30.48mm_Horizontal -Diode, DO-201 series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library -Diode DO-201 series Axial Horizontal pin pitch 30.48mm length 9.53mm diameter 5.21mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-201_P30.48mm_Horizontal_TVS -Diode, DO-201 series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf -Diode DO-201 series Axial Horizontal pin pitch 30.48mm length 9.53mm diameter 5.21mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-201_P30.48mm_Horizontal_Zener -Diode, DO-201 series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library -Diode DO-201 series Axial Horizontal pin pitch 30.48mm length 9.53mm diameter 5.21mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-201_P35.56mm_Horizontal -Diode, DO-201 series, Axial, Horizontal, pin pitch=35.56mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library -Diode DO-201 series Axial Horizontal pin pitch 35.56mm length 9.53mm diameter 5.21mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-201_P35.56mm_Horizontal_TVS -Diode, DO-201 series, Axial, Horizontal, pin pitch=35.56mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library -Diode DO-201 series Axial Horizontal pin pitch 35.56mm length 9.53mm diameter 5.21mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_DO-201_P35.56mm_Horizontal_Zener -Diode, DO-201 series, Axial, Horizontal, pin pitch=35.56mm, , length*diameter=9.53*5.21mm^2, , http://www.diodes.com/_files/packages/DO-201.pdf, Alternate KiCad Library -Diode DO-201 series Axial Horizontal pin pitch 35.56mm length 9.53mm diameter 5.21mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_P600_R-6_P7.62mm_Vertical_AnodeUp -Diode, P600_R-6 series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library -Diode P600_R-6 series Axial Vertical pin pitch 7.62mm length 9.1mm diameter 9.1mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_P600_R-6_P7.62mm_Vertical_AnodeUp_Zener -Diode, P600_R-6 series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library -Diode P600_R-6 series Axial Vertical pin pitch 7.62mm length 9.1mm diameter 9.1mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_P600_R-6_P7.62mm_Vertical_KathodeUp -Diode, P600_R-6 series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library -Diode P600_R-6 series Axial Vertical pin pitch 7.62mm length 9.1mm diameter 9.1mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_P600_R-6_P7.62mm_Vertical_KathodeUp_Zener -Diode, P600_R-6 series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library -Diode P600_R-6 series Axial Vertical pin pitch 7.62mm length 9.1mm diameter 9.1mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_P600_R-6_P7.62mm_Vertical_TVS -Diode, P600_R-6 series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library -Diode P600_R-6 series Axial Vertical pin pitch 7.62mm length 9.1mm diameter 9.1mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_P600_R-6_P12.70mm_Horizontal -Diode, P600_R-6 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library -Diode P600_R-6 series Axial Horizontal pin pitch 12.7mm length 9.1mm diameter 9.1mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_P600_R-6_P12.70mm_Horizontal_TVS -Diode, P600_R-6 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library -Diode P600_R-6 series Axial Horizontal pin pitch 12.7mm length 9.1mm diameter 9.1mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_P600_R-6_P12.70mm_Horizontal_Zener -Diode, P600_R-6 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library -Diode P600_R-6 series Axial Horizontal pin pitch 12.7mm length 9.1mm diameter 9.1mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_P600_R-6_P15.24mm_Horizontal -Diode, P600_R-6 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library -Diode P600_R-6 series Axial Horizontal pin pitch 15.24mm length 9.1mm diameter 9.1mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_P600_R-6_P15.24mm_Horizontal_TVS -Diode, P600_R-6 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library -Diode P600_R-6 series Axial Horizontal pin pitch 15.24mm length 9.1mm diameter 9.1mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_P600_R-6_P15.24mm_Horizontal_Zener -Diode, P600_R-6 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library -Diode P600_R-6 series Axial Horizontal pin pitch 15.24mm length 9.1mm diameter 9.1mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_P600_R-6_P20.00mm_Horizontal -Diode, P600_R-6 series, Axial, Horizontal, pin pitch=20mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library -Diode P600_R-6 series Axial Horizontal pin pitch 20mm length 9.1mm diameter 9.1mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_P600_R-6_P20.00mm_Horizontal_TVS -Diode, P600_R-6 series, Axial, Horizontal, pin pitch=20mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library -Diode P600_R-6 series Axial Horizontal pin pitch 20mm length 9.1mm diameter 9.1mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_P600_R-6_P20.00mm_Horizontal_Zener -Diode, P600_R-6 series, Axial, Horizontal, pin pitch=20mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library -Diode P600_R-6 series Axial Horizontal pin pitch 20mm length 9.1mm diameter 9.1mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_P600_R-6_P25.40mm_Horizontal -Diode, P600_R-6 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library -Diode P600_R-6 series Axial Horizontal pin pitch 25.40mm length 9.1mm diameter 9.1mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_P600_R-6_P25.40mm_Horizontal_TVS -Diode, P600_R-6 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library -Diode P600_R-6 series Axial Horizontal pin pitch 25.40mm length 9.1mm diameter 9.1mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_P600_R-6_P25.40mm_Horizontal_Zener -Diode, P600_R-6 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library -Diode P600_R-6 series Axial Horizontal pin pitch 25.40mm length 9.1mm diameter 9.1mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_P600_R-6_P30.48mm_Horizontal -Diode, P600_R-6 series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library -Diode P600_R-6 series Axial Horizontal pin pitch 30.48mm length 9.1mm diameter 9.1mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_P600_R-6_P30.48mm_Horizontal_TVS -Diode, P600_R-6 series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library -Diode P600_R-6 series Axial Horizontal pin pitch 30.48mm length 9.1mm diameter 9.1mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_P600_R-6_P30.48mm_Horizontal_Zener -Diode, P600_R-6 series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library -Diode P600_R-6 series Axial Horizontal pin pitch 30.48mm length 9.1mm diameter 9.1mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_P600_R-6_P35.56mm_Horizontal -Diode, P600_R-6 series, Axial, Horizontal, pin pitch=35.56mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library -Diode P600_R-6 series Axial Horizontal pin pitch 35.56mm length 9.1mm diameter 9.1mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_P600_R-6_P35.56mm_Horizontal_TVS -Diode, P600_R-6 series, Axial, Horizontal, pin pitch=35.56mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library -Diode P600_R-6 series Axial Horizontal pin pitch 35.56mm length 9.1mm diameter 9.1mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_P600_R-6_P35.56mm_Horizontal_Zener -Diode, P600_R-6 series, Axial, Horizontal, pin pitch=35.56mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library -Diode P600_R-6 series Axial Horizontal pin pitch 35.56mm length 9.1mm diameter 9.1mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_P600_R-6_P40.64mm_Horizontal -Diode, P600_R-6 series, Axial, Horizontal, pin pitch=40.64mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library -Diode P600_R-6 series Axial Horizontal pin pitch 40.64mm length 9.1mm diameter 9.1mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_P600_R-6_P40.64mm_Horizontal_Zener -Diode, P600_R-6 series, Axial, Horizontal, pin pitch=40.64mm, , length*diameter=9.1*9.1mm^2, , http://www.vishay.com/docs/88692/p600a.pdf, http://www.diodes.com/_files/packages/R-6.pdf, Alternate KiCad Library -Diode P600_R-6 series Axial Horizontal pin pitch 40.64mm length 9.1mm diameter 9.1mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_SOD-57_P5.08mm_Vertical_AnodeUp -Diode, SOD-57 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=4.57*3.8mm^2, ,https://www.nxp.com/docs/en/package-information/SOD57.pdf, Alternate KiCad Library -Diode SOD-57 series Axial Vertical pin pitch 5.08mm length 4.57mm diameter 3.8mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_SOD-57_P5.08mm_Vertical_AnodeUp_Zener -Diode, SOD-57 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=4.57*3.8mm^2, ,https://www.nxp.com/docs/en/package-information/SOD57.pdf, Alternate KiCad Library -Diode SOD-57 series Axial Vertical pin pitch 5.08mm length 4.57mm diameter 3.8mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_SOD-57_P5.08mm_Vertical_KathodeUp -Diode, SOD-57 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=4.57*3.8mm^2, ,https://www.nxp.com/docs/en/package-information/SOD57.pdf, Alternate KiCad Library -Diode SOD-57 series Axial Vertical pin pitch 5.08mm length 4.57mm diameter 3.8mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_SOD-57_P5.08mm_Vertical_KathodeUp_Zener -Diode, SOD-57 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=4.57*3.8mm^2, ,https://www.nxp.com/docs/en/package-information/SOD57.pdf, Alternate KiCad Library -Diode SOD-57 series Axial Vertical pin pitch 5.08mm length 4.57mm diameter 3.8mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_SOD-57_P7.62mm_Horizontal -Diode, SOD-57 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=4.6*3.8mm, , https://www.nxp.com/docs/en/package-information/SOD57.pdf, Alternate KiCad Library -Diode SOD-57 series Axial Horizontal pin pitch 7.62mm length 4.6mm diameter 3.8mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_SOD-57_P7.62mm_Horizontal_Zener -Diode, SOD-57 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=4.6*3.8mm, , https://www.nxp.com/docs/en/package-information/SOD57.pdf, Alternate KiCad Library -Diode SOD-57 series Axial Horizontal pin pitch 7.62mm length 4.6mm diameter 3.8mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_SOD-57_P10.16mm_Horizontal -Diode, SOD-57 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=4.6*3.8mm, , https://www.nxp.com/docs/en/package-information/SOD57.pdf, Alternate KiCad Library -Diode SOD-57 series Axial Horizontal pin pitch 10.16mm length 4.6mm diameter 3.8mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_SOD-57_P10.16mm_Horizontal_Zener -Diode, SOD-57 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=4.6*3.8mm, , https://www.nxp.com/docs/en/package-information/SOD57.pdf, Alternate KiCad Library -Diode SOD-57 series Axial Horizontal pin pitch 10.16mm length 4.6mm diameter 3.8mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_SOD-57_P12,70mm_Horizontal -Diode, SOD-57 series, Axial, Horizontal, pin pitch=12.70mm, , length*diameter=4.6*3.8mm, , https://www.nxp.com/docs/en/package-information/SOD57.pdf, Alternate KiCad Library -Diode SOD-57 series Axial Horizontal pin pitch 12.70mm length 4.6mm diameter 3.8mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_SOD-57_P12,70mm_Horizontal_Zener -Diode, SOD-57 series, Axial, Horizontal, pin pitch=12.70mm, , length*diameter=4.6*3.8mm, , https://www.nxp.com/docs/en/package-information/SOD57.pdf, Alternate KiCad Library -Diode SOD-57 series Axial Horizontal pin pitch 12.70mm length 4.6mm diameter 3.8mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_SOD-57_P12.70mm_Horizontal -Diode, SOD-57 series, Axial, Horizontal, pin pitch=12.70mm, , length*diameter=4.6*3.8mm, , https://www.nxp.com/docs/en/package-information/SOD57.pdf, Alternate KiCad Library -Diode SOD-57 series Axial Horizontal pin pitch 12.70mm length 4.6mm diameter 3.8mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_SOD-57_P15.24mm_Horizontal -Diode, SOD-57 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=4.6*3.8mm, , https://www.nxp.com/docs/en/package-information/SOD57.pdf, Alternate KiCad Library -Diode SOD-57 series Axial Horizontal pin pitch 15.24mm length 4.6mm diameter 3.8mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_SOD-57_P15.24mm_Horizontal_Zener -Diode, SOD-57 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=4.6*3.8mm, , https://www.nxp.com/docs/en/package-information/SOD57.pdf, Alternate KiCad Library -Diode SOD-57 series Axial Horizontal pin pitch 15.24mm length 4.6mm diameter 3.8mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_SOD-57_P20.32mm_Horizontal -Diode, SOD-57 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=4.6*3.8mm, , https://www.nxp.com/docs/en/package-information/SOD57.pdf, Alternate KiCad Library -Diode SOD-57 series Axial Horizontal pin pitch 20.32mm length 4.6mm diameter 3.8mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_SOD-57_P20.32mm_Horizontal_Zener -Diode, SOD-57 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=4.6*3.8mm, , https://www.nxp.com/docs/en/package-information/SOD57.pdf, Alternate KiCad Library -Diode SOD-57 series Axial Horizontal pin pitch 20.32mm length 4.6mm diameter 3.8mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_SOD-57_P25.40mm_Horizontal -Diode, SOD-57 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=4.6*3.8mm, , https://www.nxp.com/docs/en/package-information/SOD57.pdf, Alternate KiCad Library -Diode SOD-57 series Axial Horizontal pin pitch 25.40mm length 4.6mm diameter 3.8mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_SOD-57_P25.40mm_Horizontal_Zener -Diode, SOD-57 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=4.6*3.8mm, , https://www.nxp.com/docs/en/package-information/SOD57.pdf, Alternate KiCad Library -Diode SOD-57 series Axial Horizontal pin pitch 25.40mm length 4.6mm diameter 3.8mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_SOD-57_P30.48mm_Horizontal -Diode, SOD-57 series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=4.6*3.8mm, , https://www.nxp.com/docs/en/package-information/SOD57.pdf, Alternate KiCad Library -Diode SOD-57 series Axial Horizontal pin pitch 30.48mm length 4.6mm diameter 3.8mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_SOD-57_P30.48mm_Horizontal_Zener -Diode, SOD-57 series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=4.6*3.8mm, , https://www.nxp.com/docs/en/package-information/SOD57.pdf, Alternate KiCad Library -Diode SOD-57 series Axial Horizontal pin pitch 30.48mm length 4.6mm diameter 3.8mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_SOD-64_P5.08mm_Vertical_AnodeUp -Diode, SOD-64 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=5*4.5mm^2, ,https://www.nxp.com/docs/en/package-information/SOD64.pdf, Alternate KiCad Library -Diode SOD-64 series Axial Vertical pin pitch 5.08mm length 5mm diameter 4.5mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_SOD-64_P5.08mm_Vertical_AnodeUp_Zener -Diode, SOD-64 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=5*4.5mm^2, ,https://www.nxp.com/docs/en/package-information/SOD64.pdf, Alternate KiCad Library -Diode SOD-64 series Axial Vertical pin pitch 5.08mm length 5mm diameter 4.5mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_SOD-64_P5.08mm_Vertical_KathodeUp -Diode, SOD-64 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=5*4.5mm^2, ,https://www.nxp.com/docs/en/package-information/SOD64.pdf, Alternate KiCad Library -Diode SOD-64 series Axial Vertical pin pitch 5.08mm length 5mm diameter 4.5mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_SOD-64_P5.08mm_Vertical_KathodeUp_Zener -Diode, SOD-64 series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=5*4.5mm^2, ,https://www.nxp.com/docs/en/package-information/SOD64.pdf, Alternate KiCad Library -Diode SOD-64 series Axial Vertical pin pitch 5.08mm length 5mm diameter 4.5mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_SOD-64_P7.62mm_Horizontal -Diode, SOD-57 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=5*4.5mm, , https://www.nxp.com/docs/en/package-information/SOD64.pdf, Alternate KiCad Library -Diode SOD-57 series Axial Horizontal pin pitch 7.62mm length 5mm diameter 4.5mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_SOD-64_P7.62mm_Horizontal_Zener -Diode, SOD-57 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=5*4.5mm, , https://www.nxp.com/docs/en/package-information/SOD64.pdf, Alternate KiCad Library -Diode SOD-57 series Axial Horizontal pin pitch 7.62mm length 5mm diameter 4.5mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_SOD-64_P10.16mm_Horizontal -Diode, SOD-57 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=5*4.5mm, , https://www.nxp.com/docs/en/package-information/SOD64.pdf, Alternate KiCad Library -Diode SOD-57 series Axial Horizontal pin pitch 10.16mm length 5mm diameter 4.5mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_SOD-64_P10.16mm_Horizontal_Zener -Diode, SOD-57 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=5*4.5mm, , https://www.nxp.com/docs/en/package-information/SOD64.pdf, Alternate KiCad Library -Diode SOD-57 series Axial Horizontal pin pitch 10.16mm length 5mm diameter 4.5mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_SOD-64_P12.70mm_Horizontal -Diode, SOD-57 series, Axial, Horizontal, pin pitch=12.70mm, , length*diameter=5*4.5mm, , https://www.nxp.com/docs/en/package-information/SOD64.pdf, Alternate KiCad Library -Diode SOD-57 series Axial Horizontal pin pitch 12.70mm length 5mm diameter 4.5mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_SOD-64_P12.70mm_Horizontal_Zener -Diode, SOD-57 series, Axial, Horizontal, pin pitch=12.70mm, , length*diameter=5*4.5mm, , https://www.nxp.com/docs/en/package-information/SOD64.pdf, Alternate KiCad Library -Diode SOD-57 series Axial Horizontal pin pitch 12.70mm length 5mm diameter 4.5mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_SOD-64_P15.24mm_Horizontal -Diode, SOD-57 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=5*4.5mm, , https://www.nxp.com/docs/en/package-information/SOD64.pdf, Alternate KiCad Library -Diode SOD-57 series Axial Horizontal pin pitch 15.24mm length 5mm diameter 4.5mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_SOD-64_P15.24mm_Horizontal_Zener -Diode, SOD-57 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=5*4.5mm, , https://www.nxp.com/docs/en/package-information/SOD64.pdf, Alternate KiCad Library -Diode SOD-57 series Axial Horizontal pin pitch 15.24mm length 5mm diameter 4.5mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_SOD-64_P20.32mm_Horizontal -Diode, SOD-57 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=5*4.5mm, , https://www.nxp.com/docs/en/package-information/SOD64.pdf, Alternate KiCad Library -Diode SOD-57 series Axial Horizontal pin pitch 20.32mm length 5mm diameter 4.5mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_SOD-64_P20.32mm_Horizontal_Zener -Diode, SOD-57 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=5*4.5mm, , https://www.nxp.com/docs/en/package-information/SOD64.pdf, Alternate KiCad Library -Diode SOD-57 series Axial Horizontal pin pitch 20.32mm length 5mm diameter 4.5mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_SOD-64_P25.40mm_Horizontal -Diode, SOD-57 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=5*4.5mm, , https://www.nxp.com/docs/en/package-information/SOD64.pdf, Alternate KiCad Library -Diode SOD-57 series Axial Horizontal pin pitch 25.40mm length 5mm diameter 4.5mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_SOD-64_P25.40mm_Horizontal_Zener -Diode, SOD-57 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=5*4.5mm, , https://www.nxp.com/docs/en/package-information/SOD64.pdf, Alternate KiCad Library -Diode SOD-57 series Axial Horizontal pin pitch 25.40mm length 5mm diameter 4.5mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_SOD-64_P30.48mm_Horizontal -Diode, SOD-57 series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=5*4.5mm, , https://www.nxp.com/docs/en/package-information/SOD64.pdf, Alternate KiCad Library -Diode SOD-57 series Axial Horizontal pin pitch 30.48mm length 5mm diameter 4.5mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_SOD-64_P30.48mm_Horizontal_Zener -Diode, SOD-57 series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=5*4.5mm, , https://www.nxp.com/docs/en/package-information/SOD64.pdf, Alternate KiCad Library -Diode SOD-57 series Axial Horizontal pin pitch 30.48mm length 5mm diameter 4.5mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_T-1_P2.54mm_Vertical_AnodeUp -Diode, T-1 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf, Alternate KiCad Library -Diode T-1 series Axial Vertical pin pitch 2.54mm length 3.2mm diameter 2.6mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_T-1_P2.54mm_Vertical_KathodeUp -Diode, T-1 series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf, Alternate KiCad Library -Diode T-1 series Axial Vertical pin pitch 2.54mm length 3.2mm diameter 2.6mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_T-1_P5.08mm_Horizontal -Diode, T-1 series, Axial, Horizontal, pin pitch=5.08mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf, Alternate KiCad Library -Diode T-1 series Axial Horizontal pin pitch 5.08mm length 3.2mm diameter 2.6mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_T-1_P5.08mm_Horizontal_Zener -Diode, T-1 series, Axial, Horizontal, pin pitch=5.08mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf, Alternate KiCad Library -Diode T-1 series Axial Horizontal pin pitch 5.08mm length 3.2mm diameter 2.6mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_T-1_P7.62mm_Horizontal -Diode, T-1 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf, Alternate KiCad Library -Diode T-1 series Axial Horizontal pin pitch 7.62mm length 3.2mm diameter 2.6mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_T-1_P7.62mm_Horizontal_Zener -Diode, T-1 series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf, Alternate KiCad Library -Diode T-1 series Axial Horizontal pin pitch 7.62mm length 3.2mm diameter 2.6mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_T-1_P10.16mm_Horizontal -Diode, T-1 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf, Alternate KiCad Library -Diode T-1 series Axial Horizontal pin pitch 10.16mm length 3.2mm diameter 2.6mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_T-1_P10.16mm_Horizontal_Zener -Diode, T-1 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf, Alternate KiCad Library -Diode T-1 series Axial Horizontal pin pitch 10.16mm length 3.2mm diameter 2.6mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_T-1_P12.70mm_Horizontal -Diode, T-1 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf, Alternate KiCad Library -Diode T-1 series Axial Horizontal pin pitch 12.7mm length 3.2mm diameter 2.6mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_T-1_P12.70mm_Horizontal_Zener -Diode, T-1 series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf, Alternate KiCad Library -Diode T-1 series Axial Horizontal pin pitch 12.7mm length 3.2mm diameter 2.6mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_T-1_P15.24mm_Horizontal -Diode, T-1 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf, Alternate KiCad Library -Diode T-1 series Axial Horizontal pin pitch 15.24mm length 3.2mm diameter 2.6mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_T-1_P15.24mm_Horizontal_Zener -Diode, T-1 series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf, Alternate KiCad Library -Diode T-1 series Axial Horizontal pin pitch 15.24mm length 3.2mm diameter 2.6mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_T-1_P20.32mm_Horizontal -Diode, T-1 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf, Alternate KiCad Library -Diode T-1 series Axial Horizontal pin pitch 20.32mm length 3.2mm diameter 2.6mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_T-1_P20.32mm_Horizontal_Zener -Diode, T-1 series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf, Alternate KiCad Library -Diode T-1 series Axial Horizontal pin pitch 20.32mm length 3.2mm diameter 2.6mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_T-1_P25.40mm_Horizontal -Diode, T-1 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf, Alternate KiCad Library -Diode T-1 series Axial Horizontal pin pitch 25.40mm length 3.2mm diameter 2.6mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -D_T-1_P25.40mm_Horizontal_Zener -Diode, T-1 series, Axial, Horizontal, pin pitch=25.40mm, , length*diameter=3.2*2.6mm^2, , http://www.diodes.com/_files/packages/T-1.pdf, Alternate KiCad Library -Diode T-1 series Axial Horizontal pin pitch 25.40mm length 3.2mm diameter 2.6mm -0 -2 -2 -PCM_Diode_THT_AKL_Double -Diode_Bridge_3F_35x25x5.5mm_P7.5mm -Three Phase Rectifier Bridge, 35x25x5.5mm Pin Pitch 7.5mm, https://www.tme.eu/Document/8d67e957bbd6c52377808ea448d52e35/dbi2004b.pdf, Alternate KiCAD Library -diode bridge rectifier three phase 3F -0 -5 -5 -PCM_Diode_THT_AKL_Double -Diode_Bridge_3F_35x25x5.5mm_P7.5mm_B -Three Phase Rectifier Bridge, 35x25x5.5mm Pin Pitch 7.5mm, https://www.tme.eu/Document/8d67e957bbd6c52377808ea448d52e35/dbi2004b.pdf, Alternate KiCAD Library -diode bridge rectifier three phase 3F -0 -5 -5 -PCM_Diode_THT_AKL_Double -Diode_Bridge_3F_40x21.5x5.4mm_P7.5mm -Three Phase Rectifier Bridge, 40x21.5x5.4mm Pin Pitch 7.5mm, https://www.tme.eu/Document/610b0e9a98397aeaef704f0ed736f58e/DBI25-xxP.pdf, Alternate KiCAD Library -diode bridge rectifier three phase 3F DBI -0 -5 -5 -PCM_Diode_THT_AKL_Double -Diode_Bridge_15.1x15.1x6.3mm_P10.9mm -Single phase bridge rectifier case 15.1x15.1mm, pitch 10.9mm, see https://diotec.com/tl_files/diotec/files/pdf/datasheets/pb1000.pdf -Diode Bridge PB10xxS -0 -4 -4 -PCM_Diode_THT_AKL_Double -Diode_Bridge_15.2x15.2x6.3mm_P10.9mm -Single phase bridge rectifier case 15.2x15.2mm, pitch 10.9mm, see https://diotec.com/tl_files/diotec/files/pdf/datasheets/kbpc600.pdf -Diode Bridge KBPC6xx -0 -4 -4 -PCM_Diode_THT_AKL_Double -Diode_Bridge_15.7x15.7x6.3mm_P10.8mm -Single phase bridge rectifier case 15.7x15.7 -Diode Bridge -0 -4 -4 -PCM_Diode_THT_AKL_Double -Diode_Bridge_16.7x16.7x6.3mm_P10.8mm -Single phase bridge rectifier case 16.7x16.7 -Diode Bridge -0 -4 -4 -PCM_Diode_THT_AKL_Double -Diode_Bridge_19.0x3.5x10.0mm_P5.0mm -Vishay GBU rectifier package, 5.08mm pitch, see http://www.vishay.com/docs/88606/g3sba20.pdf -Vishay GBU rectifier diode bridge -0 -4 -4 -PCM_Diode_THT_AKL_Double -Diode_Bridge_19.0x3.5x10.0mm_P5.0mm_B -Vishay GBU rectifier package, 5.08mm pitch, see http://www.vishay.com/docs/88606/g3sba20.pdf -Vishay GBU rectifier diode bridge -0 -4 -4 -PCM_Diode_THT_AKL_Double -Diode_Bridge_19.0x19.0x6.8mm_P12.7mm -Single phase bridge rectifier case 19x19mm, pitch 12.7mm, see https://diotec.com/tl_files/diotec/files/pdf/datasheets/pb1000.pdf -Diode Bridge PB10xx -0 -4 -4 -PCM_Diode_THT_AKL_Double -Diode_Bridge_28.6x28.6x7.3mm_P5.08mm_Vertical -Single phase bridge rectifier case 28.6x28.6mm, Vertical mount, pitch 5.08mm, see https://www.tme.eu/Document/c6b90344b8f3d76b02c7159a1dcbbfbb/BR15xL_ser.pdf -Rectifier Bridge Square 28.6x26.8mm vertical -0 -4 -4 -PCM_Diode_THT_AKL_Double -Diode_Bridge_28.6x28.6x7.3mm_P18.0mm_P11.6mm -Single phase bridge rectifier case 28.6x28.6mm, pitch 18.0mm & 11.6mm, see https://diotec.com/tl_files/diotec/files/pdf/datasheets/kbpc1500fw.pdf -Diode Bridge KBPCxxxxWP -0 -4 -4 -PCM_Diode_THT_AKL_Double -Diode_Bridge_32.0x5.6x17.0mm_P10.0mm_P7.5mm -Diotec 32x5.6x17mm rectifier package, 7.5mm/10mm pitch, see https://diotec.com/tl_files/diotec/files/pdf/datasheets/b40c3700.pdf -Diotec rectifier diode bridge -0 -4 -4 -PCM_Diode_THT_AKL_Double -Diode_Bridge_DIP-4_W5.08mm_P2.54mm -4-lead dip package for diode bridges, row spacing 5.08mm, pin-spacing 2.54mm, see http://www.vishay.com/docs/88898/b2m.pdf -DIL DIP PDIP 5.08mm 2.54 -0 -4 -4 -PCM_Diode_THT_AKL_Double -Diode_Bridge_DIP-4_W7.62mm_P5.08mm -4-lead dip package for diode bridges, row spacing 7.62 mm (300 mils), see http://cdn-reichelt.de/documents/datenblatt/A400/HDBL101G_20SERIES-TSC.pdf -DIL DIP PDIP 5.08mm 7.62mm 300mil -0 -4 -4 -PCM_Diode_THT_AKL_Double -Diode_Bridge_GBJ -GBJ rectifier package, 10/7.5mm pitch, see https://www.diodes.com/design/support/packaging/diodes-packaging/diodes-package-outlines-and-pad-layouts/ -GBJ rectifier diode bridge -0 -4 -4 -PCM_Diode_THT_AKL_Double -Diode_Bridge_GBJL -GBJL rectifier package, 10/7.5mm pitch, see https://www.diodes.com/design/support/packaging/diodes-packaging/diodes-package-outlines-and-pad-layouts/ -GBJL rectifier diode bridge -0 -4 -4 -PCM_Diode_THT_AKL_Double -Diode_Bridge_GBJS -GBJS rectifier package, 10/7.5mm pitch, see https://www.diodes.com/design/support/packaging/diodes-packaging/diodes-package-outlines-and-pad-layouts/ -GBJS rectifier diode bridge -0 -4 -4 -PCM_Diode_THT_AKL_Double -Diode_Bridge_KBJ -KBJ rectifier package, 7.5mm pitch, see https://www.diodes.com/design/support/packaging/diodes-packaging/diodes-package-outlines-and-pad-layouts/ -KBJ rectifier diode bridge -0 -4 -4 -PCM_Diode_THT_AKL_Double -Diode_Bridge_KBJL -KBJL rectifier package, 7.5mm pitch, see https://www.diodes.com/design/support/packaging/diodes-packaging/diodes-package-outlines-and-pad-layouts/ -KBJL rectifier diode bridge -0 -4 -4 -PCM_Diode_THT_AKL_Double -Diode_Bridge_KBP -KBP rectifier package, 3.81mm pitch, see https://www.diodes.com/design/support/packaging/diodes-packaging/diodes-package-outlines-and-pad-layouts/ -KBP rectifier diode bridge -0 -4 -4 -PCM_Diode_THT_AKL_Double -Diode_Bridge_Round_D8.9mm -4-lead round diode bridge package, diameter 8.9mm, pin pitch 5.08mm, see http://cdn-reichelt.de/documents/datenblatt/A400/W005M-W10M_SEP.PDF -diode bridge 8.9mm 8.85mm WOB pitch 5.08mm -0 -4 -4 -PCM_Diode_THT_AKL_Double -Diode_Bridge_Round_D9.0mm -4-lead round diode bridge package, diameter 9.0mm, pin pitch 5.0mm, see https://diotec.com/tl_files/diotec/files/pdf/datasheets/b40r.pdf -diode bridge 9.0mm 8.85mm WOB pitch 5.0mm -0 -4 -4 -PCM_Diode_THT_AKL_Double -Diode_Bridge_Round_D9.8mm -4-lead round diode bridge package, diameter 9.8mm, pin pitch 5.08mm, see http://www.vishay.com/docs/88769/woo5g.pdf -diode bridge 9.8mm WOG pitch 5.08mm -0 -4 -4 -PCM_Diode_THT_AKL_Double -Diode_Bridge_Vishay_GBL -Vishay GBL rectifier package, 5.08mm pitch, see http://www.vishay.com/docs/88609/gbl005.pdf -Vishay GBL rectifier diode bridge -0 -4 -4 -PCM_Diode_THT_AKL_Double -Diode_Bridge_Vishay_GBU -Vishay GBU rectifier package, 5.08mm pitch, see http://www.vishay.com/docs/88606/g3sba20.pdf -Vishay GBU rectifier diode bridge -0 -4 -4 -PCM_Diode_THT_AKL_Double -Diode_Bridge_Vishay_KBL -Vishay KBL rectifier package, 5.08mm pitch, see http://www.vishay.com/docs/88655/kbl005.pdf -Vishay KBL rectifier diode bridge -0 -4 -4 -PCM_Diode_THT_AKL_Double -Diode_Bridge_Vishay_KBPC1 -Single phase bridge rectifier case KBPC1, see http://www.vishay.com/docs/93585/vs-kbpc1series.pdf -Diode Bridge -0 -4 -4 -PCM_Diode_THT_AKL_Double -Diode_Bridge_Vishay_KBPC6 -Single phase bridge rectifier case KBPC6, see http://www.vishay.com/docs/93585/vs-kbpc1series.pdf -Diode Bridge -0 -4 -4 -PCM_Diode_THT_AKL_Double -Diode_Bridge_Vishay_KBU -Vishay KBU rectifier package, 5.08mm pitch, see http://www.vishay.com/docs/88656/kbu4.pdf -Vishay KBU rectifier diode bridge -0 -4 -4 -PCM_Ferrite_SMD_AKL -Ferrite_0201_0603Metric -Ferrite Bead SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), Alternate KiCAD Library -ferrite bead 0201 -0 -4 -2 -PCM_Ferrite_SMD_AKL -Ferrite_0201_0603Metric_Pad0.64x0.40mm_BigPads -Ferrite Bead SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), Alternate KiCAD Library -ferrite beads big pads 0201 -0 -4 -2 -PCM_Ferrite_SMD_AKL -Ferrite_0402_1005Metric -Ferrite Bead SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library -ferrite bead 0402 -0 -2 -2 -PCM_Ferrite_SMD_AKL -Ferrite_0402_1005Metric_Pad0.77x0.64mm_BigPads -Ferrite Bead SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library -ferrite bead big pads 0402 -0 -2 -2 -PCM_Ferrite_SMD_AKL -Ferrite_0603_1608Metric -Ferrite Bead SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library -ferrite bead 0603 -0 -2 -2 -PCM_Ferrite_SMD_AKL -Ferrite_0603_1608Metric_Pad1.05x0.95mm_BigPads -Ferrite Bead SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library -ferrite bead big pads 0603 -0 -2 -2 -PCM_Ferrite_SMD_AKL -Ferrite_0805_2012Metric -Ferrite Bead SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 80, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCAD Library -ferrite bead 0805 -0 -2 -2 -PCM_Ferrite_SMD_AKL -Ferrite_0805_2012Metric_Pad1.05x1.20mm_BigPads -Ferrite Bead SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 80, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCAD Library -ferrite bead big pads 0805 -0 -2 -2 -PCM_Ferrite_SMD_AKL -Ferrite_0805_2012Metric_Pad1.15x1.40mm_BigPads -Ferrite Bead SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), Alternate KiCAD Library -ferrite bead big pads -0 -2 -2 -PCM_Ferrite_SMD_AKL -Ferrite_01005_0402Metric -Ferrite Bead SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), Alternate KiCAD Library -ferrite bead 01005 -0 -4 -2 -PCM_Ferrite_SMD_AKL -Ferrite_01005_0402Metric_Pad0.57x0.30mm_BigPads -Ferrite Bead SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), Alternate KiCAD Library -ferrite bead big pads 01005 -0 -4 -2 -PCM_Ferrite_SMD_AKL -Ferrite_1008_2520Metric -Ferrite Bead SMD 1008 (2520 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://ecsxtal.com/store/pdf/ECS-MPI2520-SMD-POWER-INDUCTOR.pdf), Alternate KiCAD Library -ferrite bead 1008 -0 -2 -2 -PCM_Ferrite_SMD_AKL -Ferrite_1008_2520Metric_Pad1.43x2.20mm_BigPads -Ferrite Bead SMD 1008 (2520 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://ecsxtal.com/store/pdf/ECS-MPI2520-SMD-POWER-INDUCTOR.pdf), Alternate KiCAD Library -ferrite bead big pads 1008 -0 -2 -2 -PCM_Ferrite_SMD_AKL -Ferrite_1206_3216Metric -Ferrite Bead SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 80, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCAD Library -ferrite bead 1206 -0 -2 -2 -PCM_Ferrite_SMD_AKL -Ferrite_1206_3216Metric_Pad1.22x1.90mm_BigPads -Ferrite Bead SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 80, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCAD Library -ferrite bead big pads 1206 -0 -2 -2 -PCM_Ferrite_SMD_AKL -Ferrite_1206_3216Metric_Pad1.42x1.75mm_BigPads -Ferrite Bead SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library -ferrite bead 1206 big pads -0 -2 -2 -PCM_Ferrite_SMD_AKL -Ferrite_1210_3225Metric -Ferrite Bead SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library -ferrite bead 1210 -0 -2 -2 -PCM_Ferrite_SMD_AKL -Ferrite_1210_3225Metric_Pad1.42x2.65mm_BigPads -Ferrite Bead SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library -ferrite bead 1210 big pads -0 -2 -2 -PCM_Ferrite_SMD_AKL -Ferrite_1806_4516Metric -Ferrite Bead SMD 1806 (4516 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.modelithics.com/models/Vendor/MuRata/BLM41P.pdf), Alternate KiCAD Library -ferrite bead 1806 -0 -2 -2 -PCM_Ferrite_SMD_AKL -Ferrite_1806_4516Metric_Pad1.57x1.80mm_BigPads -Ferrite Bead SMD 1806 (4516 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.modelithics.com/models/Vendor/MuRata/BLM41P.pdf), Alternate KiCAD Library -ferrite bead 1806 big pads -0 -2 -2 -PCM_Ferrite_SMD_AKL -Ferrite_1812_4532Metric -Ferrite Bead SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), Alternate KiCAD Library -ferrite 1812 -0 -2 -2 -PCM_Ferrite_SMD_AKL -Ferrite_1812_4532Metric_Pad1.30x3.40mm_BigPads -Ferrite Bead SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), Alternate KiCAD Library -ferrite bead 1812 big pads -0 -2 -2 -PCM_Ferrite_SMD_AKL -Ferrite_2010_5025Metric -Ferrite Bead SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library -ferrite bead 2010 -0 -2 -2 -PCM_Ferrite_SMD_AKL -Ferrite_2010_5025Metric_Pad1.52x2.65mm_BigPads -Ferrite Bead SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library -ferrite bead 2010 big pads -0 -2 -2 -PCM_Ferrite_SMD_AKL -Ferrite_2512_6332Metric -Ferrite Bead SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library -ferrite bead 2512 -0 -2 -2 -PCM_Ferrite_SMD_AKL -Ferrite_2512_6332Metric_Pad1.52x3.35mm_BigPads -Ferrite Bead SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library -ferrite bead 2512 big pads -0 -2 -2 -PCM_Ferrite_SMD_AKL -Ferrite_2816_7142Metric -Ferrite Bead SMD 2816 (7142 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), Alternate KiCAD Library -ferrite bead 2816 -0 -2 -2 -PCM_Ferrite_SMD_AKL -Ferrite_2816_7142Metric_Pad3.20x4.45mm_BigPads -Ferrite Bead SMD 2816 (7142 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), Alternate KiCAD Library -ferrite bead 2816 big pads -0 -2 -2 -PCM_Ferrite_SMD_AKL -Ferrite_CommonMode_Delevan_4222 -API Delevan, Surface Mount Common Mode Bead, 4222 4222R, http://www.delevan.com/seriesPDFs/4222.pdf, Alternate KiCAD Library -surface mount common mode ferrite bead -0 -4 -4 -PCM_Ferrite_SMD_Handsoldering_AKL -Ferrite_0201_0603Metric -Ferrite Bead SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), Alternate KiCAD Library -ferrite bead 0201 -0 -4 -2 -PCM_Ferrite_SMD_Handsoldering_AKL -Ferrite_0201_0603Metric_Pad0.64x0.40mm_BigPads -Ferrite Bead SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), Alternate KiCAD Library -ferrite beads big pads 0201 -0 -4 -2 -PCM_Ferrite_SMD_Handsoldering_AKL -Ferrite_0402_1005Metric -Ferrite Bead SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library -ferrite bead 0402 -0 -2 -2 -PCM_Ferrite_SMD_Handsoldering_AKL -Ferrite_0402_1005Metric_Pad0.77x0.64mm_BigPads -Ferrite Bead SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library -ferrite bead big pads 0402 -0 -2 -2 -PCM_Ferrite_SMD_Handsoldering_AKL -Ferrite_0603_1608Metric -Ferrite Bead SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library -ferrite bead 0603 -0 -2 -2 -PCM_Ferrite_SMD_Handsoldering_AKL -Ferrite_0603_1608Metric_Pad1.05x0.95mm_BigPads -Ferrite Bead SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library -ferrite bead big pads 0603 -0 -2 -2 -PCM_Ferrite_SMD_Handsoldering_AKL -Ferrite_0805_2012Metric -Ferrite Bead SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 80, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCAD Library -ferrite bead 0805 -0 -2 -2 -PCM_Ferrite_SMD_Handsoldering_AKL -Ferrite_0805_2012Metric_Pad1.05x1.20mm_BigPads -Ferrite Bead SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 80, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCAD Library -ferrite bead big pads 0805 -0 -2 -2 -PCM_Ferrite_SMD_Handsoldering_AKL -Ferrite_0805_2012Metric_Pad1.15x1.40mm_BigPads -Ferrite Bead SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), Alternate KiCAD Library -ferrite bead big pads -0 -2 -2 -PCM_Ferrite_SMD_Handsoldering_AKL -Ferrite_01005_0402Metric -Ferrite Bead SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), Alternate KiCAD Library -ferrite bead 01005 -0 -4 -2 -PCM_Ferrite_SMD_Handsoldering_AKL -Ferrite_01005_0402Metric_Pad0.57x0.30mm_BigPads -Ferrite Bead SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), Alternate KiCAD Library -ferrite bead big pads 01005 -0 -4 -2 -PCM_Ferrite_SMD_Handsoldering_AKL -Ferrite_1008_2520Metric -Ferrite Bead SMD 1008 (2520 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://ecsxtal.com/store/pdf/ECS-MPI2520-SMD-POWER-INDUCTOR.pdf), Alternate KiCAD Library -ferrite bead 1008 -0 -2 -2 -PCM_Ferrite_SMD_Handsoldering_AKL -Ferrite_1008_2520Metric_Pad1.43x2.20mm_BigPads -Ferrite Bead SMD 1008 (2520 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://ecsxtal.com/store/pdf/ECS-MPI2520-SMD-POWER-INDUCTOR.pdf), Alternate KiCAD Library -ferrite bead big pads 1008 -0 -2 -2 -PCM_Ferrite_SMD_Handsoldering_AKL -Ferrite_1206_3216Metric -Ferrite Bead SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 80, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCAD Library -ferrite bead 1206 -0 -2 -2 -PCM_Ferrite_SMD_Handsoldering_AKL -Ferrite_1206_3216Metric_Pad1.22x1.90mm_BigPads -Ferrite Bead SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 80, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCAD Library -ferrite bead big pads 1206 -0 -2 -2 -PCM_Ferrite_SMD_Handsoldering_AKL -Ferrite_1206_3216Metric_Pad1.42x1.75mm_BigPads -Ferrite Bead SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library -ferrite bead 1206 big pads -0 -2 -2 -PCM_Ferrite_SMD_Handsoldering_AKL -Ferrite_1210_3225Metric -Ferrite Bead SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library -ferrite bead 1210 -0 -2 -2 -PCM_Ferrite_SMD_Handsoldering_AKL -Ferrite_1210_3225Metric_Pad1.42x2.65mm_BigPads -Ferrite Bead SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library -ferrite bead 1210 big pads -0 -2 -2 -PCM_Ferrite_SMD_Handsoldering_AKL -Ferrite_1806_4516Metric -Ferrite Bead SMD 1806 (4516 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.modelithics.com/models/Vendor/MuRata/BLM41P.pdf), Alternate KiCAD Library -ferrite bead 1806 -0 -2 -2 -PCM_Ferrite_SMD_Handsoldering_AKL -Ferrite_1806_4516Metric_Pad1.57x1.80mm_BigPads -Ferrite Bead SMD 1806 (4516 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.modelithics.com/models/Vendor/MuRata/BLM41P.pdf), Alternate KiCAD Library -ferrite bead 1806 big pads -0 -2 -2 -PCM_Ferrite_SMD_Handsoldering_AKL -Ferrite_1812_4532Metric -Ferrite Bead SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), Alternate KiCAD Library -ferrite 1812 -0 -2 -2 -PCM_Ferrite_SMD_Handsoldering_AKL -Ferrite_1812_4532Metric_Pad1.30x3.40mm_BigPads -Ferrite Bead SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), Alternate KiCAD Library -ferrite bead 1812 big pads -0 -2 -2 -PCM_Ferrite_SMD_Handsoldering_AKL -Ferrite_2010_5025Metric -Ferrite Bead SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library -ferrite bead 2010 -0 -2 -2 -PCM_Ferrite_SMD_Handsoldering_AKL -Ferrite_2010_5025Metric_Pad1.52x2.65mm_BigPads -Ferrite Bead SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library -ferrite bead 2010 big pads -0 -2 -2 -PCM_Ferrite_SMD_Handsoldering_AKL -Ferrite_2512_6332Metric -Ferrite Bead SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library -ferrite bead 2512 -0 -2 -2 -PCM_Ferrite_SMD_Handsoldering_AKL -Ferrite_2512_6332Metric_Pad1.52x3.35mm_BigPads -Ferrite Bead SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library -ferrite bead 2512 big pads -0 -2 -2 -PCM_Ferrite_SMD_Handsoldering_AKL -Ferrite_2816_7142Metric -Ferrite Bead SMD 2816 (7142 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), Alternate KiCAD Library -ferrite bead 2816 -0 -2 -2 -PCM_Ferrite_SMD_Handsoldering_AKL -Ferrite_2816_7142Metric_Pad3.20x4.45mm_BigPads -Ferrite Bead SMD 2816 (7142 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), Alternate KiCAD Library -ferrite bead 2816 big pads -0 -2 -2 -PCM_Ferrite_SMD_Handsoldering_AKL -Ferrite_CommonMode_Delevan_4222 -API Delevan, Surface Mount Common Mode Bead, 4222 4222R, http://www.delevan.com/seriesPDFs/4222.pdf, Alternate KiCAD Library -surface mount common mode ferrite bead -0 -4 -4 -PCM_Ferrite_THT_AKL -Ferrite_Dual_L10.0mm_D6.0mm_P12.70mm -Ferrite common-mode choke, axial, length 10mm, diameter 6mm, pin pitch 12.70mm, Alternate KiCAD Library -ferrite axial diameter 6mm length 10mm pitch 12.70mm -0 -4 -4 -PCM_Ferrite_THT_AKL -Ferrite_Dual_L10.0mm_D6.0mm_P15.24mm -Ferrite common-mode choke, axial, length 10mm, diameter 6mm, pin pitch 15.24mm, Alternate KiCAD Library -ferrite axial diameter 6mm length 10mm pitch 12.70mm -0 -4 -4 -PCM_Ferrite_THT_AKL -Ferrite_Dual_L10.0mm_D6.0mm_P20.32mm -Ferrite common-mode choke, axial, length 10mm, diameter 6mm, pin pitch 20.32mm, Alternate KiCAD Library -ferrite axial diameter 6mm length 10mm pitch 12.70mm -0 -4 -4 -PCM_Ferrite_THT_AKL -Ferrite_Filter_L8.5mm_W3.5mm_H7.5mm_P2.5mm -Ferrite LCL filter, length 8.5mm, width 3.5mm, height 7.5mm, pin pitch 2.5mm, Alternate KiCAD Library -ferrite axial width 3.5mm length 8.5mm height 7.5mm pitch 2.5mm -0 -3 -3 -PCM_Ferrite_THT_AKL -Ferrite_Filter_L8mm_W2.54mm_H10.5mm_P2.5mm -Ferrite LCL filter, length 8mm, width 2.54mm, height 10.5mm, pin pitch 2.5mm, Alternate KiCAD Library -ferrite axial width 2.54mm length 8mm height 10.5mm pitch 2.5mm -0 -3 -3 -PCM_Ferrite_THT_AKL -Ferrite_Filter_L9mm_W3.2mm_H8mm_P2.5mm -Ferrite LCL filter, length 9mm, width 3.2mm, height 8mm, pin pitch 2.5mm, Alternate KiCAD Library -ferrite axial width 3.2mm length 9mm height 8mm pitch 2.5mm -0 -3 -3 -PCM_Ferrite_THT_AKL -Ferrite_L3.0mm_D2.5mm_P2.54mm_Vertical -Ferrite bead, axial, length 3mm, diameter 2.5mm, pin pitch 2.54mm, Alternate KiCAD Library -ferrite axial diameter 2.5mm length 3mm pitch 2.54mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L3.0mm_D2.5mm_P3.81mm_Vertical -Ferrite bead, axial, length 3mm, diameter 2.5mm, pin pitch 3.81mm, Alternate KiCAD Library -ferrite axial diameter 2.5mm length 3mm pitch 3.81mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L3.0mm_D2.5mm_P3.81mm_Vertical_Dual -Ferrite bead, axial, length 3mm, diameter 2.5mm, pin pitch 3.81mm, Alternate KiCAD Library -ferrite axial diameter 2.5mm length 3mm pitch 3.81mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L3.0mm_D2.5mm_P5.08mm -Ferrite bead, axial, length 3mm, diameter 2.5mm, pin pitch 5.08mm, Alternate KiCAD Library -ferrite axial diameter 2.5mm length 3mm pitch 5.08mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L3.0mm_D2.5mm_P5.08mm_Vertical -Ferrite bead, axial, length 3mm, diameter 2.5mm, pin pitch 5.08mm, Alternate KiCAD Library -ferrite axial diameter 2.5mm length 3mm pitch 5.08mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L3.0mm_D2.5mm_P5.08mm_Vertical_Dual -Ferrite bead, axial, length 3mm, diameter 2.5mm, pin pitch 5.08mm, Alternate KiCAD Library -ferrite axial diameter 2.5mm length 3mm pitch 5.08mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L3.0mm_D2.5mm_P5mm_Vertical -Ferrite bead, axial, length 3mm, diameter 2.5mm, pin pitch 5mm, Alternate KiCAD Library -ferrite axial diameter 2.5mm length 3mm pitch 5mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L3.0mm_D2.5mm_P5mm_Vertical_Dual -Ferrite bead, axial, length 3mm, diameter 2.5mm, pin pitch 5mm, Alternate KiCAD Library -ferrite axial diameter 2.5mm length 3mm pitch 5mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L3.0mm_D2.5mm_P7.62mm -Ferrite bead, axial, length 3mm, diameter 2.5mm, pin pitch 7.62mm, Alternate KiCAD Library -ferrite axial diameter 2.5mm length 3mm pitch 7.62mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L3.0mm_D2.5mm_P10.16mm -Ferrite bead, axial, length 3mm, diameter 2.5mm, pin pitch 10.16mm, Alternate KiCAD Library -ferrite axial diameter 2.5mm length 3mm pitch 10.16mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L3.0mm_D2.5mm_P12.70mm -Ferrite bead, axial, length 3mm, diameter 2.5mm, pin pitch 12.70mm, Alternate KiCAD Library -ferrite axial diameter 2.5mm length 3mm pitch 12.70mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L3.0mm_D2.5mm_P15.24mm -Ferrite bead, axial, length 3mm, diameter 2.5mm, pin pitch 15.24mm, Alternate KiCAD Library -ferrite axial diameter 2.5mm length 3mm pitch 15.24mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L3.0mm_D2.5mm_P20.32mm -Ferrite bead, axial, length 3mm, diameter 2.5mm, pin pitch 20.32mm, Alternate KiCAD Library -ferrite axial diameter 2.5mm length 3mm pitch 20.32mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L3.0mm_D3.5mm_P3.81mm_Vertical -Ferrite bead, axial, length 3mm, diameter 3.5mm, pin pitch 3.81mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 3mm pitch 3.81mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L3.0mm_D3.5mm_P5.08mm -Ferrite bead, axial, length 3mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 3mm pitch 5.08mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L3.0mm_D3.5mm_P5.08mm_Vertical -Ferrite bead, axial, length 3mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 3mm pitch 5.08mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L3.0mm_D3.5mm_P5.08mm_Vertical_Dual -Ferrite bead, axial, length 3mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 3mm pitch 5.08mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L3.0mm_D3.5mm_P5mm_Vertical -Ferrite bead, axial, length 3mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 3mm pitch 5mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L3.0mm_D3.5mm_P5mm_Vertical_Dual -Ferrite bead, axial, length 3mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 3mm pitch 5mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L3.0mm_D3.5mm_P7.62mm -Ferrite bead, axial, length 3mm, diameter 3.5mm, pin pitch 7.62mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 3mm pitch 7.62mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L3.0mm_D3.5mm_P10.16mm -Ferrite bead, axial, length 3mm, diameter 3.5mm, pin pitch 10.16mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 3mm pitch 10.16mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L3.0mm_D3.5mm_P12.70mm -Ferrite bead, axial, length 3mm, diameter 3.5mm, pin pitch 12.70mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 3mm pitch 12.70mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L3.0mm_D3.5mm_P15.24mm -Ferrite bead, axial, length 3mm, diameter 3.5mm, pin pitch 15.24mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 3mm pitch 15.24mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L3.0mm_D3.5mm_P20.32mm -Ferrite bead, axial, length 3mm, diameter 3.5mm, pin pitch 20.32mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 3mm pitch 20.32mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L3.2mm_D3.5mm_P3.81mm_Vertical -Ferrite bead, axial, length 3.2mm, diameter 3.5mm, pin pitch 3.81mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 3.2mm pitch 3.81mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L3.2mm_D3.5mm_P5.08mm_Vertical -Ferrite bead, axial, length 3.2mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 3.2mm pitch 5.08mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L3.2mm_D3.5mm_P5.08mm_Vertical_Dual -Ferrite bead, axial, length 3.2mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 3.2mm pitch 5.08mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L3.2mm_D3.5mm_P5mm_Vertical -Ferrite bead, axial, length 3.2mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 3.2mm pitch 5mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L3.2mm_D3.5mm_P5mm_Vertical_Dual -Ferrite bead, axial, length 3.2mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 3.2mm pitch 5mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L3.2mm_D3.5mm_P7.62mm -Ferrite bead, axial, length 3.2mm, diameter 3.5mm, pin pitch 7.62mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 3.2mm pitch 7.62mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L3.2mm_D3.5mm_P10.16mm -Ferrite bead, axial, length 3.2mm, diameter 3.5mm, pin pitch 10.16mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 3.2mm pitch 10.16mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L3.2mm_D3.5mm_P12.70mm -Ferrite bead, axial, length 3.2mm, diameter 3.5mm, pin pitch 12.70mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 3.2mm pitch 12.70mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L3.2mm_D3.5mm_P15.24mm -Ferrite bead, axial, length 3.2mm, diameter 3.5mm, pin pitch 15.24mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 3.2mm pitch 15.24mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L3.2mm_D3.5mm_P20.32mm -Ferrite bead, axial, length 3.2mm, diameter 3.5mm, pin pitch 20.32mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 3.2mm pitch 20.32mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L3.5mm_D3.5mm_P3.81mm_Vertical -Ferrite bead, axial, length 3.5mm, diameter 3.5mm, pin pitch 3.81mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 3.5mm pitch 3.81mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L3.5mm_D3.5mm_P5.08mm_Vertical -Ferrite bead, axial, length 3.5mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 3.5mm pitch 5.08mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L3.5mm_D3.5mm_P5.08mm_Vertical_Dual -Ferrite bead, axial, length 3.5mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 3.5mm pitch 5.08mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L3.5mm_D3.5mm_P5mm_Vertical -Ferrite bead, axial, length 3.5mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 3.5mm pitch 5mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L3.5mm_D3.5mm_P5mm_Vertical_Dual -Ferrite bead, axial, length 3.5mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 3.5mm pitch 5mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L3.5mm_D3.5mm_P7.62mm -Ferrite bead, axial, length 3.5mm, diameter 3.5mm, pin pitch 7.62mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 3.5mm pitch 7.62mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L3.5mm_D3.5mm_P10.16mm -Ferrite bead, axial, length 3.5mm, diameter 3.5mm, pin pitch 10.16mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 3.5mm pitch 10.16mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L3.5mm_D3.5mm_P12.70mm -Ferrite bead, axial, length 3.5mm, diameter 3.5mm, pin pitch 12.70mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 3.5mm pitch 12.70mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L3.5mm_D3.5mm_P15.24mm -Ferrite bead, axial, length 3.5mm, diameter 3.5mm, pin pitch 15.24mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 3.5mm pitch 15.24mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L3.5mm_D3.5mm_P20.32mm -Ferrite bead, axial, length 3.5mm, diameter 3.5mm, pin pitch 20.32mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 3.5mm pitch 20.32mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L4.0mm_D2.5mm_P2.54mm_Vertical -Ferrite bead, axial, length 4mm, diameter 2.5mm, pin pitch 2.54mm, Alternate KiCAD Library -ferrite axial diameter 2.3mm length 4mm pitch 2.54mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L4.0mm_D2.5mm_P3.81mm_Vertical -Ferrite bead, axial, length 4mm, diameter 2.5mm, pin pitch 3.81mm, Alternate KiCAD Library -ferrite axial diameter 2.5mm length 4mm pitch 3.81mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L4.0mm_D2.5mm_P3.81mm_Vertical_Dual -Ferrite bead, axial, length 4mm, diameter 2.5mm, pin pitch 3.81mm, Alternate KiCAD Library -ferrite axial diameter 2.5mm length 4mm pitch 3.81mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L4.0mm_D2.5mm_P5.08mm_Vertical -Ferrite bead, axial, length 4mm, diameter 2.5mm, pin pitch 5.08mm, Alternate KiCAD Library -ferrite axial diameter 2.5mm length 4mm pitch 5.08mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L4.0mm_D2.5mm_P5.08mm_Vertical_Dual -Ferrite bead, axial, length 4mm, diameter 2.5mm, pin pitch 5.08mm, Alternate KiCAD Library -ferrite axial diameter 2.5mm length 4mm pitch 5.08mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L4.0mm_D2.5mm_P5mm_Vertical -Ferrite bead, axial, length 4mm, diameter 2.5mm, pin pitch 5mm, Alternate KiCAD Library -ferrite axial diameter 2.5mm length 4mm pitch 5mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L4.0mm_D2.5mm_P5mm_Vertical_Dual -Ferrite bead, axial, length 4mm, diameter 2.5mm, pin pitch 5mm, Alternate KiCAD Library -ferrite axial diameter 2.5mm length 4mm pitch 5mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L4.0mm_D2.5mm_P7.62mm -Ferrite bead, axial, length 4mm, diameter 2.5mm, pin pitch 7.62mm, Alternate KiCAD Library -ferrite axial diameter 2.5mm length 4mm pitch 7.62mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L4.0mm_D2.5mm_P10.16mm -Ferrite bead, axial, length 4mm, diameter 2.5mm, pin pitch 10.16mm, Alternate KiCAD Library -ferrite axial diameter 2.5mm length 4mm pitch 10.16mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L4.0mm_D2.5mm_P12.70mm -Ferrite bead, axial, length 4mm, diameter 2.5mm, pin pitch 12.70mm, Alternate KiCAD Library -ferrite axial diameter 2.5mm length 4mm pitch 12.70mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L4.0mm_D2.5mm_P15.24mm -Ferrite bead, axial, length 4mm, diameter 2.5mm, pin pitch 15.24mm, Alternate KiCAD Library -ferrite axial diameter 2.5mm length 4mm pitch 15.24mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L4.0mm_D2.5mm_P20.32mm -Ferrite bead, axial, length 4mm, diameter 2.5mm, pin pitch 20.32mm, Alternate KiCAD Library -ferrite axial diameter 2.5mm length 4mm pitch 20.32mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L4.5mm_D2.5mm_P2.54mm_Vertical -Ferrite bead, axial, length 4.5mm, diameter 2.5mm, pin pitch 2.54mm, Alternate KiCAD Library -ferrite axial diameter 2.3mm length 4.5mm pitch 2.54mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L4.5mm_D2.5mm_P3.81mm_Vertical -Ferrite bead, axial, length 4.5mm, diameter 2.5mm, pin pitch 3.81mm, Alternate KiCAD Library -ferrite axial diameter 2.3mm length 4.5mm pitch 3.81mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L4.5mm_D2.5mm_P3.81mm_Vertical_Dual -Ferrite bead, axial, length 4.5mm, diameter 2.5mm, pin pitch 3.81mm, Alternate KiCAD Library -ferrite axial diameter 2.3mm length 4.5mm pitch 3.81mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L4.5mm_D2.5mm_P5.08mm_Vertical -Ferrite bead, axial, length 4.5mm, diameter 2.5mm, pin pitch 5.08mm, Alternate KiCAD Library -ferrite axial diameter 2.3mm length 4.5mm pitch 5.08mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L4.5mm_D2.5mm_P5.08mm_Vertical_Dual -Ferrite bead, axial, length 4.5mm, diameter 2.5mm, pin pitch 5.08mm, Alternate KiCAD Library -ferrite axial diameter 2.3mm length 4.5mm pitch 5.08mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L4.5mm_D2.5mm_P5mm_Vertical -Ferrite bead, axial, length 4.5mm, diameter 2.5mm, pin pitch 5mm, Alternate KiCAD Library -ferrite axial diameter 2.3mm length 4.5mm pitch 5mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L4.5mm_D2.5mm_P5mm_Vertical_Dual -Ferrite bead, axial, length 4.5mm, diameter 2.5mm, pin pitch 5mm, Alternate KiCAD Library -ferrite axial diameter 2.3mm length 4.5mm pitch 5mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L4.5mm_D2.5mm_P7.62mm -Ferrite bead, axial, length 4.5mm, diameter 2.5mm, pin pitch 7.62mm, Alternate KiCAD Library -ferrite axial diameter 2.5mm length 4.5mm pitch 7.62mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L4.5mm_D2.5mm_P10.16mm -Ferrite bead, axial, length 4.5mm, diameter 2.5mm, pin pitch 10.16mm, Alternate KiCAD Library -ferrite axial diameter 2.5mm length 4.5mm pitch 10.16mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L4.5mm_D2.5mm_P12.70mm -Ferrite bead, axial, length 4.5mm, diameter 2.5mm, pin pitch 12.70mm, Alternate KiCAD Library -ferrite axial diameter 2.5mm length 4.5mm pitch 12.70mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L4.5mm_D2.5mm_P15.24mm -Ferrite bead, axial, length 4.5mm, diameter 2.5mm, pin pitch 15.24mm, Alternate KiCAD Library -ferrite axial diameter 2.5mm length 4.5mm pitch 15.24mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L4.5mm_D2.5mm_P20.32mm -Ferrite bead, axial, length 4.5mm, diameter 2.5mm, pin pitch 20.32mm, Alternate KiCAD Library -ferrite axial diameter 2.5mm length 4.5mm pitch 20.32mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L4.5mm_D3.5mm_P3.81mm_Vertical -Ferrite bead, axial, length 4.5mm, diameter 3.5mm, pin pitch 3.81mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 4.5mm pitch 3.81mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L4.5mm_D3.5mm_P5,08mm_Vertical -Ferrite bead, axial, length 4.5mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 4.5mm pitch 5.08mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L4.5mm_D3.5mm_P5,08mm_Vertical_Dual -Ferrite bead, axial, length 4.5mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 4.5mm pitch 5.08mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L4.5mm_D3.5mm_P5.08mm_Vertical -Ferrite bead, axial, length 4.5mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 4.5mm pitch 5.08mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L4.5mm_D3.5mm_P5.08mm_Vertical_Dual -Ferrite bead, axial, length 4.5mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 4.5mm pitch 5.08mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L4.5mm_D3.5mm_P5mm_Vertical -Ferrite bead, axial, length 4.5mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 4.5mm pitch 5mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L4.5mm_D3.5mm_P5mm_Vertical_Dual -Ferrite bead, axial, length 4.5mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 4.5mm pitch 5mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L4.5mm_D3.5mm_P7.62mm -Ferrite bead, axial, length 4.5mm, diameter 3.5mm, pin pitch 7.62mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 4.5mm pitch 7.62mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L4.5mm_D3.5mm_P10.16mm -Ferrite bead, axial, length 4.5mm, diameter 3.5mm, pin pitch 10.16mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 4.5mm pitch 10.16mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L4.5mm_D3.5mm_P12.70mm -Ferrite bead, axial, length 4.5mm, diameter 3.5mm, pin pitch 12.70mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 4.5mm pitch 12.70mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L4.5mm_D3.5mm_P15.24mm -Ferrite bead, axial, length 4.5mm, diameter 3.5mm, pin pitch 15.24mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 4.5mm pitch 15.24mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L4.5mm_D3.5mm_P20.32mm -Ferrite bead, axial, length 4.5mm, diameter 3.5mm, pin pitch 20.32mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 4.5mm pitch 20.32mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L4.7mm_D3.5mm_P3.81mm_Vertical -Ferrite bead, axial, length 4.7mm, diameter 3.5mm, pin pitch 3.81mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 4.7mm pitch 3.81mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L4.7mm_D3.5mm_P5.08mm_Vertical -Ferrite bead, axial, length 4.7mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 4.7mm pitch 5.08mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L4.7mm_D3.5mm_P5.08mm_Vertical_Dual -Ferrite bead, axial, length 4.7mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 4.7mm pitch 5.08mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L4.7mm_D3.5mm_P5mm_Vertical -Ferrite bead, axial, length 4.7mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 4.7mm pitch 5mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L4.7mm_D3.5mm_P5mm_Vertical_Dual -Ferrite bead, axial, length 4.7mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 4.7mm pitch 5mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L4.7mm_D3.5mm_P7.62mm -Ferrite bead, axial, length 4.7mm, diameter 3.5mm, pin pitch 7.62mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 4.7mm pitch 7.62mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L4.7mm_D3.5mm_P10.16mm -Ferrite bead, axial, length 4.7mm, diameter 3.5mm, pin pitch 10.16mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 4.7mm pitch 10.16mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L4.7mm_D3.5mm_P12.70mm -Ferrite bead, axial, length 4.7mm, diameter 3.5mm, pin pitch 12.70mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 4.7mm pitch 12.70mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L4.7mm_D3.5mm_P15.24mm -Ferrite bead, axial, length 4.7mm, diameter 3.5mm, pin pitch 15.24mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 4.7mm pitch 15.24mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L4.7mm_D3.5mm_P20.32mm -Ferrite bead, axial, length 4.7mm, diameter 3.5mm, pin pitch 20.32mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 4.7mm pitch 20.32mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L5.0mm_D2.3mm_P2.54mm_Vertical -Ferrite bead, axial, length 5mm, diameter 2.3mm, pin pitch 2.54mm, Alternate KiCAD Library -ferrite axial diameter 2.3mm length 5mm pitch 2.54mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L5.0mm_D2.3mm_P3.81mm_Vertical -Ferrite bead, axial, length 5mm, diameter 2.3mm, pin pitch 3.81mm, Alternate KiCAD Library -ferrite axial diameter 2.3mm length 5mm pitch 3.81mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L5.0mm_D2.3mm_P3.81mm_Vertical_Dual -Ferrite bead, axial, length 5mm, diameter 2.3mm, pin pitch 3.81mm, Alternate KiCAD Library -ferrite axial diameter 2.3mm length 5mm pitch 3.81mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L5.0mm_D2.3mm_P5.08mm_Vertical -Ferrite bead, axial, length 5mm, diameter 2.3mm, pin pitch 5.08mm, Alternate KiCAD Library -ferrite axial diameter 2.3mm length 5mm pitch 5.08mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L5.0mm_D2.3mm_P5.08mm_Vertical_Dual -Ferrite bead, axial, length 5mm, diameter 2.3mm, pin pitch 5.08mm, Alternate KiCAD Library -ferrite axial diameter 2.3mm length 5mm pitch 5.08mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L5.0mm_D2.3mm_P5mm_Vertical -Ferrite bead, axial, length 5mm, diameter 2.3mm, pin pitch 5mm, Alternate KiCAD Library -ferrite axial diameter 2.3mm length 5mm pitch 5mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L5.0mm_D2.3mm_P5mm_Vertical_Dual -Ferrite bead, axial, length 5mm, diameter 2.3mm, pin pitch 5mm, Alternate KiCAD Library -ferrite axial diameter 2.3mm length 5mm pitch 5mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L5.0mm_D2.3mm_P7.62mm -Ferrite bead, axial, length 5mm, diameter 3.4mm, pin pitch 7.62mm, Alternate KiCAD Library -ferrite axial diameter 3.4mm length 5mm pitch 7.62mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L5.0mm_D2.3mm_P10.16mm -Ferrite bead, axial, length 5mm, diameter 3.4mm, pin pitch 10.16mm, Alternate KiCAD Library -ferrite axial diameter 3.4mm length 5mm pitch 10.16mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L5.0mm_D2.3mm_P12.70mm -Ferrite bead, axial, length 5mm, diameter 3.4mm, pin pitch 12.70mm, Alternate KiCAD Library -ferrite axial diameter 3.4mm length 5mm pitch 12.70mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L5.0mm_D2.3mm_P15.24mm -Ferrite bead, axial, length 5mm, diameter 3.4mm, pin pitch 15.24mm, Alternate KiCAD Library -ferrite axial diameter 3.4mm length 5mm pitch 15.24mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L5.0mm_D2.3mm_P20.32mm -Ferrite bead, axial, length 5mm, diameter 3.4mm, pin pitch 20.32mm, Alternate KiCAD Library -ferrite axial diameter 3.4mm length 5mm pitch 20.32mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L5.0mm_D3.4mm_P3.81mm_Vertical -Ferrite bead, axial, length 5mm, diameter 3.4mm, pin pitch 3.81mm, Alternate KiCAD Library -ferrite axial diameter 3.4mm length 5mm pitch 3.81mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L5.0mm_D3.4mm_P5.08mm_Vertical -Ferrite bead, axial, length 5mm, diameter 3.4mm, pin pitch 5.08mm, Alternate KiCAD Library -ferrite axial diameter 3.4mm length 5mm pitch 5.08mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L5.0mm_D3.4mm_P5.08mm_Vertical_Dual -Ferrite bead, axial, length 5mm, diameter 3.4mm, pin pitch 5.08mm, Alternate KiCAD Library -ferrite axial diameter 3.4mm length 5mm pitch 5.08mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L5.0mm_D3.4mm_P5mm_Vertical -Ferrite bead, axial, length 5mm, diameter 3.4mm, pin pitch 5mm, Alternate KiCAD Library -ferrite axial diameter 3.4mm length 5mm pitch 5mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L5.0mm_D3.4mm_P5mm_Vertical_Dual -Ferrite bead, axial, length 5mm, diameter 3.4mm, pin pitch 5mm, Alternate KiCAD Library -ferrite axial diameter 3.4mm length 5mm pitch 5mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L5.0mm_D3.4mm_P7.62mm -Ferrite bead, axial, length 5mm, diameter 3.4mm, pin pitch 7.62mm, Alternate KiCAD Library -ferrite axial diameter 3.4mm length 5mm pitch 7.62mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L5.0mm_D3.4mm_P10.16mm -Ferrite bead, axial, length 5mm, diameter 3.4mm, pin pitch 10.16mm, Alternate KiCAD Library -ferrite axial diameter 3.4mm length 5mm pitch 10.16mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L5.0mm_D3.4mm_P12.70mm -Ferrite bead, axial, length 5mm, diameter 3.4mm, pin pitch 12.70mm, Alternate KiCAD Library -ferrite axial diameter 3.4mm length 5mm pitch 12.70mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L5.0mm_D3.4mm_P15.24mm -Ferrite bead, axial, length 5mm, diameter 3.4mm, pin pitch 15.24mm, Alternate KiCAD Library -ferrite axial diameter 3.4mm length 5mm pitch 15.24mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L5.0mm_D3.4mm_P20.32mm -Ferrite bead, axial, length 5mm, diameter 3.4mm, pin pitch 20.32mm, Alternate KiCAD Library -ferrite axial diameter 3.4mm length 5mm pitch 20.32mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L5.0mm_D3.5mm_P3.81mm_Vertical -Ferrite bead, axial, length 5mm, diameter 3.5mm, pin pitch 3.81mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 5mm pitch 3.81mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L5.0mm_D3.5mm_P5.08mm_Vertical -Ferrite bead, axial, length 5mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 5mm pitch 5.08mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L5.0mm_D3.5mm_P5.08mm_Vertical_Dual -Ferrite bead, axial, length 5mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 5mm pitch 5.08mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L5.0mm_D3.5mm_P5mm_Vertical -Ferrite bead, axial, length 5mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 5mm pitch 5mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L5.0mm_D3.5mm_P5mm_Vertical_Dual -Ferrite bead, axial, length 5mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 5mm pitch 5mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L5.0mm_D3.5mm_P7.62mm -Ferrite bead, axial, length 5mm, diameter 3.5mm, pin pitch 7.62mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 5mm pitch 7.62mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L5.0mm_D3.5mm_P10.16mm -Ferrite bead, axial, length 5mm, diameter 3.5mm, pin pitch 10.16mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 5mm pitch 10.16mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L5.0mm_D3.5mm_P12.70mm -Ferrite bead, axial, length 5mm, diameter 3.5mm, pin pitch 12.70mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 5mm pitch 12.70mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L5.0mm_D3.5mm_P15.24mm -Ferrite bead, axial, length 5mm, diameter 3.5mm, pin pitch 15.24mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 5mm pitch 15.24mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L5.0mm_D3.5mm_P20.32mm -Ferrite bead, axial, length 5mm, diameter 3.5mm, pin pitch 20.32mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 5mm pitch 20.32mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L5.0mm_D3.6mm_P3.81mm_Vertical -Ferrite bead, axial, length 5mm, diameter 3.6mm, pin pitch 3.81mm, Alternate KiCAD Library -ferrite axial diameter 3.6mm length 5mm pitch 3.81mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L5.0mm_D3.6mm_P5.08mm_Vertical -Ferrite bead, axial vertical, length 5mm, diameter 3.6mm, pin pitch 5.08mm, Alternate KiCAD Library -ferrite axial diameter 3.6mm length 5mm pitch 5.08mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L5.0mm_D3.6mm_P5.08mm_Vertical_Dual -Ferrite bead, axial vertical, length 5mm, diameter 3.6mm, pin pitch 5.08mm, Alternate KiCAD Library -ferrite axial diameter 3.6mm length 5mm pitch 5.08mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L5.0mm_D3.6mm_P5mm_Vertical -Ferrite bead, axial vertical, length 5mm, diameter 3.6mm, pin pitch 5mm, Alternate KiCAD Library -ferrite axial diameter 3.6mm length 5mm pitch 5mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L5.0mm_D3.6mm_P5mm_Vertical_Dual -Ferrite bead, axial vertical, length 5mm, diameter 3.6mm, pin pitch 5mm, Alternate KiCAD Library -ferrite axial diameter 3.6mm length 5mm pitch 5mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L5.0mm_D3.6mm_P7.62mm -Ferrite bead, axial, length 5mm, diameter 3.6mm, pin pitch 7.62mm, Alternate KiCAD Library -ferrite axial diameter 3.6mm length 5mm pitch 7.62mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L5.0mm_D3.6mm_P10.16mm -Ferrite bead, axial, length 5mm, diameter 3.6mm, pin pitch 10.16mm, Alternate KiCAD Library -ferrite axial diameter 3.6mm length 5mm pitch 10.16mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L5.0mm_D3.6mm_P12.70mm -Ferrite bead, axial, length 5mm, diameter 3.6mm, pin pitch 12.70mm, Alternate KiCAD Library -ferrite axial diameter 3.6mm length 5mm pitch 12.70mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L5.0mm_D3.6mm_P15.24mm -Ferrite bead, axial, length 5mm, diameter 3.6mm, pin pitch 15.24mm, Alternate KiCAD Library -ferrite axial diameter 3.6mm length 5mm pitch 15.24mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L5.0mm_D3.6mm_P20.32mm -Ferrite bead, axial, length 5mm, diameter 3.6mm, pin pitch 20.32mm, Alternate KiCAD Library -ferrite axial diameter 3.6mm length 5mm pitch 20.32mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L6.0mm_D3.5mm_P3.81mm_Vertical -Ferrite bead, axial, length 6mm, diameter 3.5mm, pin pitch 3.81mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 6mm pitch 3.81mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L6.0mm_D3.5mm_P5.08mm_Vertical -Ferrite bead, axial, length 6mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 6mm pitch 5.08mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L6.0mm_D3.5mm_P5.08mm_Vertical_Dual -Ferrite bead, axial, length 6mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 6mm pitch 5.08mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L6.0mm_D3.5mm_P5mm_Vertical -Ferrite bead, axial, length 6mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 6mm pitch 5mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L6.0mm_D3.5mm_P5mm_Vertical_Dual -Ferrite bead, axial, length 6mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 6mm pitch 5mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L6.0mm_D3.5mm_P10.16mm -Ferrite bead, axial, length 6mm, diameter 3.5mm, pin pitch 10.16mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 6mm pitch 10.16mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L6.0mm_D3.5mm_P12.70mm -Ferrite bead, axial, length 6mm, diameter 3.5mm, pin pitch 12.70mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 6mm pitch 12.70mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L6.0mm_D3.5mm_P15.24mm -Ferrite bead, axial, length 6mm, diameter 3.5mm, pin pitch 15.24mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 6mm pitch 15.24mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L6.0mm_D3.5mm_P20.32mm -Ferrite bead, axial, length 6mm, diameter 3.5mm, pin pitch 20.32mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 6mm pitch 20.32mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L6.7mm_D3.5mm_P3.81mm_Vertical -Ferrite bead, axial, length 6.7mm, diameter 3.5mm, pin pitch 3.81mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 6.7mm pitch 3.81mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L6.7mm_D3.5mm_P5.08mm_Vertical -Ferrite bead, axial, length 6.7mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 6.7mm pitch 5.08mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L6.7mm_D3.5mm_P5.08mm_Vertical_Dual -Ferrite bead, axial, length 6.7mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 6.7mm pitch 5.08mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L6.7mm_D3.5mm_P5mm_Vertical -Ferrite bead, axial, length 6.7mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 6.7mm pitch 5mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L6.7mm_D3.5mm_P5mm_Vertical_Dual -Ferrite bead, axial, length 6.7mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 6.7mm pitch 5mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L6.7mm_D3.5mm_P10.16mm -Ferrite bead, axial, length 6.7mm, diameter 3.5mm, pin pitch 10.16mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 6.7mm pitch 10.16mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L6.7mm_D3.5mm_P12.70mm -Ferrite bead, axial, length 6.7mm, diameter 3.5mm, pin pitch 12.70mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 6.7mm pitch 12.70mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L6.7mm_D3.5mm_P15.24mm -Ferrite bead, axial, length 6.7mm, diameter 3.5mm, pin pitch 15.24mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 6.7mm pitch 15.24mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L6.7mm_D3.5mm_P20.32mm -Ferrite bead, axial, length 6.7mm, diameter 3.5mm, pin pitch 20.32mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 6.7mm pitch 20.32mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L7.0mm_D2.5mm_P2.54mm_Vertical -Ferrite bead, axial, length 7mm, diameter 2.5mm, pin pitch 2.54mm, Alternate KiCAD Library -ferrite axial diameter 2.5mm length 7mm pitch 2.54mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L7.0mm_D2.5mm_P3.81mm_Vertical -Ferrite bead, axial, length 7mm, diameter 2.5mm, pin pitch 3.81mm, Alternate KiCAD Library -ferrite axial diameter 2.5mm length 7mm pitch 3.81mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L7.0mm_D2.5mm_P3.81mm_Vertical_Dual -Ferrite bead, axial, length 7mm, diameter 2.5mm, pin pitch 3.81mm, Alternate KiCAD Library -ferrite axial diameter 2.5mm length 7mm pitch 3.81mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L7.0mm_D2.5mm_P5.08mm_Vertical -Ferrite bead, axial, length 7mm, diameter 2.5mm, pin pitch 5.08mm, Alternate KiCAD Library -ferrite axial diameter 2.5mm length 7mm pitch 5.08mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L7.0mm_D2.5mm_P5.08mm_Vertical_Dual -Ferrite bead, axial, length 7mm, diameter 2.5mm, pin pitch 5.08mm, Alternate KiCAD Library -ferrite axial diameter 2.5mm length 7mm pitch 5.08mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L7.0mm_D2.5mm_P5mm_Vertical -Ferrite bead, axial, length 7mm, diameter 2.5mm, pin pitch 5mm, Alternate KiCAD Library -ferrite axial diameter 2.5mm length 7mm pitch 5mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L7.0mm_D2.5mm_P5mm_Vertical_Dual -Ferrite bead, axial, length 7mm, diameter 2.5mm, pin pitch 5mm, Alternate KiCAD Library -ferrite axial diameter 2.5mm length 7mm pitch 5mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L7.0mm_D2.5mm_P10.16mm -Ferrite bead, axial, length 7mm, diameter 2.5mm, pin pitch 10.16mm, Alternate KiCAD Library -ferrite axial diameter 2.5mm length 7mm pitch 10.16mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L7.0mm_D2.5mm_P12.70mm -Ferrite bead, axial, length 7mm, diameter 2.5mm, pin pitch 12.70mm, Alternate KiCAD Library -ferrite axial diameter 2.5mm length 7mm pitch 12.70mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L7.0mm_D2.5mm_P15.24mm -Ferrite bead, axial, length 7mm, diameter 2.5mm, pin pitch 15.24mm, Alternate KiCAD Library -ferrite axial diameter 2.5mm length 7mm pitch 15.24mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L7.0mm_D2.5mm_P20.32mm -Ferrite bead, axial, length 7mm, diameter 2.5mm, pin pitch 20.32mm, Alternate KiCAD Library -ferrite axial diameter 2.5mm length 7mm pitch 20.32mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L7.5mm_D3.5mm_P3.81mm_Vertical -Ferrite bead, axial, length 7.5mm, diameter 3.5mm, pin pitch 3.81mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 7.5mm pitch 3.81mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L7.5mm_D3.5mm_P5.08mm_Vertical -Ferrite bead, axial, length 7.5mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 7.5mm pitch 5.08mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L7.5mm_D3.5mm_P5.08mm_Vertical_Dual -Ferrite bead, axial, length 7.5mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 7.5mm pitch 5.08mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L7.5mm_D3.5mm_P5mm_Vertical -Ferrite bead, axial, length 7.5mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 7.5mm pitch 5mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L7.5mm_D3.5mm_P5mm_Vertical_Dual -Ferrite bead, axial, length 7.5mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 7.5mm pitch 5mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L7.5mm_D3.5mm_P10.16mm -Ferrite bead, axial, length 7.5mm, diameter 3.5mm, pin pitch 10.16mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 7.5mm pitch 10.16mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L7.5mm_D3.5mm_P12.70mm -Ferrite bead, axial, length 7.5mm, diameter 3.5mm, pin pitch 12.70mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 7.5mm pitch 12.70mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L7.5mm_D3.5mm_P15.24mm -Ferrite bead, axial, length 7.5mm, diameter 3.5mm, pin pitch 15.24mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 7.5mm pitch 15.24mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L7.5mm_D3.5mm_P20.32mm -Ferrite bead, axial, length 7.5mm, diameter 3.5mm, pin pitch 20.32mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 7.5mm pitch 20.32mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L8.0mm_D3.5mm_P3.81mm_Vertical -Ferrite bead, axial, length 8mm, diameter 3.5mm, pin pitch 3.81mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 8mm pitch 3.81mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L8.0mm_D3.5mm_P5.08mm_Vertical -Ferrite bead, axial, length 8mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 8mm pitch 5.08mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L8.0mm_D3.5mm_P5.08mm_Vertical_Dual -Ferrite bead, axial, length 8mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 8mm pitch 5.08mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L8.0mm_D3.5mm_P5mm_Vertical -Ferrite bead, axial, length 8mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 8mm pitch 5mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L8.0mm_D3.5mm_P5mm_Vertical_Dual -Ferrite bead, axial, length 8mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 8mm pitch 5mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L8.0mm_D3.5mm_P10.16mm -Ferrite bead, axial, length 8mm, diameter 3.5mm, pin pitch 10.16mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 8mm pitch 10.16mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L8.0mm_D3.5mm_P12.70mm -Ferrite bead, axial, length 8mm, diameter 3.5mm, pin pitch 12.70mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 8mm pitch 12.70mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L8.0mm_D3.5mm_P15.24mm -Ferrite bead, axial, length 8mm, diameter 3.5mm, pin pitch 15.24mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 8mm pitch 15.24mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L8.0mm_D3.5mm_P20.32mm -Ferrite bead, axial, length 8mm, diameter 3.5mm, pin pitch 20.32mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 8mm pitch 20.32mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L9.0mm_D3.5mm_P3.81mm_Vertical -Ferrite bead, axial, length 9mm, diameter 3.5mm, pin pitch 3.81mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 9mm pitch 3.81mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L9.0mm_D3.5mm_P5.08mm_Vertical -Ferrite bead, axial, length 9mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 9mm pitch 5.08mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L9.0mm_D3.5mm_P5.08mm_Vertical_Dual -Ferrite bead, axial, length 9mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 9mm pitch 5.08mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L9.0mm_D3.5mm_P5mm_Vertical -Ferrite bead, axial, length 9mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 9mm pitch 5mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L9.0mm_D3.5mm_P5mm_Vertical_Dual -Ferrite bead, axial, length 9mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 9mm pitch 5mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L9.0mm_D3.5mm_P12.70mm -Ferrite bead, axial, length 9mm, diameter 3.5mm, pin pitch 12.70mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 9mm pitch 12.70mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L9.0mm_D3.5mm_P15.24mm -Ferrite bead, axial, length 9mm, diameter 3.5mm, pin pitch 15.24mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 9mm pitch 15.24mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L9.0mm_D3.5mm_P20.32mm -Ferrite bead, axial, length 9mm, diameter 3.5mm, pin pitch 20.32mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 9mm pitch 20.32mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L10.0mm_D6.0mm_P12.70mm -Ferrite choke, axial, length 10mm, diameter 6mm, pin pitch 12.70mm, Alternate KiCAD Library -ferrite axial diameter 6mm length 10mm pitch 12.70mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L10.0mm_D6.0mm_P12.70mm_Wide -Ferrite choke, axial, length 10mm, diameter 6mm, pin pitch 12.70mm, Alternate KiCAD Library -ferrite axial diameter 6mm length 10mm pitch 12.70mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L10.0mm_D6.0mm_P15.24mm -Ferrite choke, axial, length 10mm, diameter 6mm, pin pitch 15.24mm, Alternate KiCAD Library -ferrite axial diameter 6mm length 10mm pitch 15.24mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L10.0mm_D6.0mm_P15.24mm_Wide -Ferrite choke, axial, length 10mm, diameter 6mm, pin pitch 15.24mm, Alternate KiCAD Library -ferrite axial diameter 6mm length 10mm pitch 15.24mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L10.0mm_D6.0mm_P20.32mm -Ferrite choke, axial, length 10mm, diameter 6mm, pin pitch 20.32mm, Alternate KiCAD Library -ferrite axial diameter 6mm length 10mm pitch 20.32mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L10.0mm_D6.0mm_P20.32mm_Wide -Ferrite choke, axial, length 10mm, diameter 6mm, pin pitch 20.32mm, Alternate KiCAD Library -ferrite axial diameter 6mm length 10mm pitch 20.32mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L10.0mm_D6mm_P3.5mm_Radial -Ferrite choke, radial, length 10mm, diameter 6mm, pin pitch 3.5mm, Alternate KiCAD Library -ferrite radial diameter 6mm length 10mm pitch 3.5mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L12.0mm_D3.5mm_P3.81mm_Vertical -Ferrite bead, axial, length 12mm, diameter 3.5mm, pin pitch 3.81mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 12mm pitch 3.81mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L12.0mm_D3.5mm_P5.08mm_Vertical -Ferrite bead, axial, length 12mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 12mm pitch 5.08mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L12.0mm_D3.5mm_P5.08mm_Vertical_Dual -Ferrite bead, axial, length 12mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 12mm pitch 5.08mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L12.0mm_D3.5mm_P5mm_Vertical -Ferrite bead, axial, length 12mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 12mm pitch 5mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L12.0mm_D3.5mm_P5mm_Vertical_Dual -Ferrite bead, axial, length 12mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 12mm pitch 5.08mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L12.0mm_D3.5mm_P15.24mm -Ferrite bead, axial, length 12mm, diameter 3.5mm, pin pitch 15.24mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 12mm pitch 15.24mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_L12.0mm_D3.5mm_P20.32mm -Ferrite bead, axial, length 12mm, diameter 3.5mm, pin pitch 20.32mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 12mm pitch 20.32mm -0 -2 -2 -PCM_Ferrite_THT_AKL -Ferrite_Quad_L10.2mm_W6mm_P2.54mm -Ferrite bead, quadruple, 10.2x6mm size, 2.54mm pitch, Alternate KiCAD Library -ferrite quad length 10.2mm width 6mm pitch 2.54mm -0 -8 -6 -PCM_Ferrite_THT_AKL -Ferrite_Quad_L11.2mm_W11.2mm_P2.54mm -Ferrite bead, quadruple, 11.2x11.2mm size, 2.54mm pitch, Alternate KiCAD Library -ferrite quad length 11.2mm width 11.2mm pitch 2.54mm -0 -8 -6 -PCM_Ferrite_THT_AKL -Ferrite_Triple_L7.6mm_W5mm_P2.54mm -Ferrite bead, triple, 7.6x5mm size, 2.54mm pitch, Alternate KiCAD Library -ferrite triple length 7.6mm width 5mm pitch 2.54mm -0 -6 -6 -PCM_Ferrite_THT_AKL_Double -Ferrite_Dual_L10.0mm_D6.0mm_P12.70mm -Ferrite common-mode choke, axial, length 10mm, diameter 6mm, pin pitch 12.70mm, Alternate KiCAD Library -ferrite axial diameter 6mm length 10mm pitch 12.70mm -0 -4 -4 -PCM_Ferrite_THT_AKL_Double -Ferrite_Dual_L10.0mm_D6.0mm_P15.24mm -Ferrite common-mode choke, axial, length 10mm, diameter 6mm, pin pitch 15.24mm, Alternate KiCAD Library -ferrite axial diameter 6mm length 10mm pitch 12.70mm -0 -4 -4 -PCM_Ferrite_THT_AKL_Double -Ferrite_Dual_L10.0mm_D6.0mm_P20.32mm -Ferrite common-mode choke, axial, length 10mm, diameter 6mm, pin pitch 20.32mm, Alternate KiCAD Library -ferrite axial diameter 6mm length 10mm pitch 12.70mm -0 -4 -4 -PCM_Ferrite_THT_AKL_Double -Ferrite_L3.0mm_D2.5mm_P3.81mm_Vertical -Ferrite bead, axial, length 3mm, diameter 2.5mm, pin pitch 3.81mm, Alternate KiCAD Library -ferrite axial diameter 2.5mm length 3mm pitch 3.81mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L3.0mm_D2.5mm_P3.81mm_Vertical_Dual -Ferrite bead, axial, length 3mm, diameter 2.5mm, pin pitch 3.81mm, Alternate KiCAD Library -ferrite axial diameter 2.5mm length 3mm pitch 3.81mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L3.0mm_D2.5mm_P5.08mm -Ferrite bead, axial, length 3mm, diameter 2.5mm, pin pitch 5.08mm, Alternate KiCAD Library -ferrite axial diameter 2.5mm length 3mm pitch 5.08mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L3.0mm_D2.5mm_P5.08mm_Vertical -Ferrite bead, axial, length 3mm, diameter 2.5mm, pin pitch 5.08mm, Alternate KiCAD Library -ferrite axial diameter 2.5mm length 3mm pitch 5.08mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L3.0mm_D2.5mm_P5.08mm_Vertical_Dual -Ferrite bead, axial, length 3mm, diameter 2.5mm, pin pitch 5.08mm, Alternate KiCAD Library -ferrite axial diameter 2.5mm length 3mm pitch 5.08mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L3.0mm_D2.5mm_P5mm_Vertical -Ferrite bead, axial, length 3mm, diameter 2.5mm, pin pitch 5mm, Alternate KiCAD Library -ferrite axial diameter 2.5mm length 3mm pitch 5mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L3.0mm_D2.5mm_P5mm_Vertical_Dual -Ferrite bead, axial, length 3mm, diameter 2.5mm, pin pitch 5mm, Alternate KiCAD Library -ferrite axial diameter 2.5mm length 3mm pitch 5mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L3.0mm_D2.5mm_P7.62mm -Ferrite bead, axial, length 3mm, diameter 2.5mm, pin pitch 7.62mm, Alternate KiCAD Library -ferrite axial diameter 2.5mm length 3mm pitch 7.62mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L3.0mm_D2.5mm_P10.16mm -Ferrite bead, axial, length 3mm, diameter 2.5mm, pin pitch 10.16mm, Alternate KiCAD Library -ferrite axial diameter 2.5mm length 3mm pitch 10.16mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L3.0mm_D2.5mm_P12.70mm -Ferrite bead, axial, length 3mm, diameter 2.5mm, pin pitch 12.70mm, Alternate KiCAD Library -ferrite axial diameter 2.5mm length 3mm pitch 12.70mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L3.0mm_D2.5mm_P15.24mm -Ferrite bead, axial, length 3mm, diameter 2.5mm, pin pitch 15.24mm, Alternate KiCAD Library -ferrite axial diameter 2.5mm length 3mm pitch 15.24mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L3.0mm_D2.5mm_P20.32mm -Ferrite bead, axial, length 3mm, diameter 2.5mm, pin pitch 20.32mm, Alternate KiCAD Library -ferrite axial diameter 2.5mm length 3mm pitch 20.32mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L3.0mm_D3.5mm_P3.81mm_Vertical -Ferrite bead, axial, length 3mm, diameter 3.5mm, pin pitch 3.81mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 3mm pitch 3.81mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L3.0mm_D3.5mm_P5.08mm -Ferrite bead, axial, length 3mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 3mm pitch 5.08mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L3.0mm_D3.5mm_P5.08mm_Vertical -Ferrite bead, axial, length 3mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 3mm pitch 5.08mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L3.0mm_D3.5mm_P5.08mm_Vertical_Dual -Ferrite bead, axial, length 3mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 3mm pitch 5.08mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L3.0mm_D3.5mm_P5mm_Vertical -Ferrite bead, axial, length 3mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 3mm pitch 5mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L3.0mm_D3.5mm_P5mm_Vertical_Dual -Ferrite bead, axial, length 3mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 3mm pitch 5mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L3.0mm_D3.5mm_P7.62mm -Ferrite bead, axial, length 3mm, diameter 3.5mm, pin pitch 7.62mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 3mm pitch 7.62mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L3.0mm_D3.5mm_P10.16mm -Ferrite bead, axial, length 3mm, diameter 3.5mm, pin pitch 10.16mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 3mm pitch 10.16mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L3.0mm_D3.5mm_P12.70mm -Ferrite bead, axial, length 3mm, diameter 3.5mm, pin pitch 12.70mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 3mm pitch 12.70mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L3.0mm_D3.5mm_P15.24mm -Ferrite bead, axial, length 3mm, diameter 3.5mm, pin pitch 15.24mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 3mm pitch 15.24mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L3.0mm_D3.5mm_P20.32mm -Ferrite bead, axial, length 3mm, diameter 3.5mm, pin pitch 20.32mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 3mm pitch 20.32mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L3.2mm_D3.5mm_P3.81mm_Vertical -Ferrite bead, axial, length 3.2mm, diameter 3.5mm, pin pitch 3.81mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 3.2mm pitch 3.81mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L3.2mm_D3.5mm_P5.08mm_Vertical -Ferrite bead, axial, length 3.2mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 3.2mm pitch 5.08mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L3.2mm_D3.5mm_P5.08mm_Vertical_Dual -Ferrite bead, axial, length 3.2mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 3.2mm pitch 5.08mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L3.2mm_D3.5mm_P5mm_Vertical -Ferrite bead, axial, length 3.2mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 3.2mm pitch 5mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L3.2mm_D3.5mm_P5mm_Vertical_Dual -Ferrite bead, axial, length 3.2mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 3.2mm pitch 5mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L3.2mm_D3.5mm_P7.62mm -Ferrite bead, axial, length 3.2mm, diameter 3.5mm, pin pitch 7.62mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 3.2mm pitch 7.62mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L3.2mm_D3.5mm_P10.16mm -Ferrite bead, axial, length 3.2mm, diameter 3.5mm, pin pitch 10.16mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 3.2mm pitch 10.16mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L3.2mm_D3.5mm_P12.70mm -Ferrite bead, axial, length 3.2mm, diameter 3.5mm, pin pitch 12.70mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 3.2mm pitch 12.70mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L3.2mm_D3.5mm_P15.24mm -Ferrite bead, axial, length 3.2mm, diameter 3.5mm, pin pitch 15.24mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 3.2mm pitch 15.24mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L3.2mm_D3.5mm_P20.32mm -Ferrite bead, axial, length 3.2mm, diameter 3.5mm, pin pitch 20.32mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 3.2mm pitch 20.32mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L3.5mm_D3.5mm_P3.81mm_Vertical -Ferrite bead, axial, length 3.5mm, diameter 3.5mm, pin pitch 3.81mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 3.5mm pitch 3.81mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L3.5mm_D3.5mm_P5.08mm_Vertical -Ferrite bead, axial, length 3.5mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 3.5mm pitch 5.08mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L3.5mm_D3.5mm_P5.08mm_Vertical_Dual -Ferrite bead, axial, length 3.5mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 3.5mm pitch 5.08mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L3.5mm_D3.5mm_P5mm_Vertical -Ferrite bead, axial, length 3.5mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 3.5mm pitch 5mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L3.5mm_D3.5mm_P5mm_Vertical_Dual -Ferrite bead, axial, length 3.5mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 3.5mm pitch 5mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L3.5mm_D3.5mm_P7.62mm -Ferrite bead, axial, length 3.5mm, diameter 3.5mm, pin pitch 7.62mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 3.5mm pitch 7.62mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L3.5mm_D3.5mm_P10.16mm -Ferrite bead, axial, length 3.5mm, diameter 3.5mm, pin pitch 10.16mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 3.5mm pitch 10.16mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L3.5mm_D3.5mm_P12.70mm -Ferrite bead, axial, length 3.5mm, diameter 3.5mm, pin pitch 12.70mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 3.5mm pitch 12.70mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L3.5mm_D3.5mm_P15.24mm -Ferrite bead, axial, length 3.5mm, diameter 3.5mm, pin pitch 15.24mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 3.5mm pitch 15.24mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L3.5mm_D3.5mm_P20.32mm -Ferrite bead, axial, length 3.5mm, diameter 3.5mm, pin pitch 20.32mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 3.5mm pitch 20.32mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L4.0mm_D2.5mm_P3.81mm_Vertical -Ferrite bead, axial, length 4mm, diameter 2.5mm, pin pitch 3.81mm, Alternate KiCAD Library -ferrite axial diameter 2.5mm length 4mm pitch 3.81mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L4.0mm_D2.5mm_P3.81mm_Vertical_Dual -Ferrite bead, axial, length 4mm, diameter 2.5mm, pin pitch 3.81mm, Alternate KiCAD Library -ferrite axial diameter 2.5mm length 4mm pitch 3.81mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L4.0mm_D2.5mm_P5.08mm_Vertical -Ferrite bead, axial, length 4mm, diameter 2.5mm, pin pitch 5.08mm, Alternate KiCAD Library -ferrite axial diameter 2.5mm length 4mm pitch 5.08mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L4.0mm_D2.5mm_P5.08mm_Vertical_Dual -Ferrite bead, axial, length 4mm, diameter 2.5mm, pin pitch 5.08mm, Alternate KiCAD Library -ferrite axial diameter 2.5mm length 4mm pitch 5.08mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L4.0mm_D2.5mm_P5mm_Vertical -Ferrite bead, axial, length 4mm, diameter 2.5mm, pin pitch 5mm, Alternate KiCAD Library -ferrite axial diameter 2.5mm length 4mm pitch 5mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L4.0mm_D2.5mm_P5mm_Vertical_Dual -Ferrite bead, axial, length 4mm, diameter 2.5mm, pin pitch 5mm, Alternate KiCAD Library -ferrite axial diameter 2.5mm length 4mm pitch 5mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L4.0mm_D2.5mm_P7.62mm -Ferrite bead, axial, length 4mm, diameter 2.5mm, pin pitch 7.62mm, Alternate KiCAD Library -ferrite axial diameter 2.5mm length 4mm pitch 7.62mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L4.0mm_D2.5mm_P10.16mm -Ferrite bead, axial, length 4mm, diameter 2.5mm, pin pitch 10.16mm, Alternate KiCAD Library -ferrite axial diameter 2.5mm length 4mm pitch 10.16mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L4.0mm_D2.5mm_P12.70mm -Ferrite bead, axial, length 4mm, diameter 2.5mm, pin pitch 12.70mm, Alternate KiCAD Library -ferrite axial diameter 2.5mm length 4mm pitch 12.70mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L4.0mm_D2.5mm_P15.24mm -Ferrite bead, axial, length 4mm, diameter 2.5mm, pin pitch 15.24mm, Alternate KiCAD Library -ferrite axial diameter 2.5mm length 4mm pitch 15.24mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L4.0mm_D2.5mm_P20.32mm -Ferrite bead, axial, length 4mm, diameter 2.5mm, pin pitch 20.32mm, Alternate KiCAD Library -ferrite axial diameter 2.5mm length 4mm pitch 20.32mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L4.5mm_D2.5mm_P3.81mm_Vertical -Ferrite bead, axial, length 4.5mm, diameter 2.5mm, pin pitch 3.81mm, Alternate KiCAD Library -ferrite axial diameter 2.3mm length 4.5mm pitch 3.81mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L4.5mm_D2.5mm_P3.81mm_Vertical_Dual -Ferrite bead, axial, length 4.5mm, diameter 2.5mm, pin pitch 3.81mm, Alternate KiCAD Library -ferrite axial diameter 2.3mm length 4.5mm pitch 3.81mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L4.5mm_D2.5mm_P5.08mm_Vertical -Ferrite bead, axial, length 4.5mm, diameter 2.5mm, pin pitch 5.08mm, Alternate KiCAD Library -ferrite axial diameter 2.3mm length 4.5mm pitch 5.08mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L4.5mm_D2.5mm_P5.08mm_Vertical_Dual -Ferrite bead, axial, length 4.5mm, diameter 2.5mm, pin pitch 5.08mm, Alternate KiCAD Library -ferrite axial diameter 2.3mm length 4.5mm pitch 5.08mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L4.5mm_D2.5mm_P5mm_Vertical -Ferrite bead, axial, length 4.5mm, diameter 2.5mm, pin pitch 5mm, Alternate KiCAD Library -ferrite axial diameter 2.3mm length 4.5mm pitch 5mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L4.5mm_D2.5mm_P5mm_Vertical_Dual -Ferrite bead, axial, length 4.5mm, diameter 2.5mm, pin pitch 5mm, Alternate KiCAD Library -ferrite axial diameter 2.3mm length 4.5mm pitch 5mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L4.5mm_D2.5mm_P7.62mm -Ferrite bead, axial, length 4.5mm, diameter 2.5mm, pin pitch 7.62mm, Alternate KiCAD Library -ferrite axial diameter 2.5mm length 4.5mm pitch 7.62mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L4.5mm_D2.5mm_P10.16mm -Ferrite bead, axial, length 4.5mm, diameter 2.5mm, pin pitch 10.16mm, Alternate KiCAD Library -ferrite axial diameter 2.5mm length 4.5mm pitch 10.16mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L4.5mm_D2.5mm_P12.70mm -Ferrite bead, axial, length 4.5mm, diameter 2.5mm, pin pitch 12.70mm, Alternate KiCAD Library -ferrite axial diameter 2.5mm length 4.5mm pitch 12.70mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L4.5mm_D2.5mm_P15.24mm -Ferrite bead, axial, length 4.5mm, diameter 2.5mm, pin pitch 15.24mm, Alternate KiCAD Library -ferrite axial diameter 2.5mm length 4.5mm pitch 15.24mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L4.5mm_D2.5mm_P20.32mm -Ferrite bead, axial, length 4.5mm, diameter 2.5mm, pin pitch 20.32mm, Alternate KiCAD Library -ferrite axial diameter 2.5mm length 4.5mm pitch 20.32mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L4.5mm_D3.5mm_P3.81mm_Vertical -Ferrite bead, axial, length 4.5mm, diameter 3.5mm, pin pitch 3.81mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 4.5mm pitch 3.81mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L4.5mm_D3.5mm_P5.08mm_Vertical -Ferrite bead, axial, length 4.5mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 4.5mm pitch 5.08mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L4.5mm_D3.5mm_P5.08mm_Vertical_Dual -Ferrite bead, axial, length 4.5mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 4.5mm pitch 5.08mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L4.5mm_D3.5mm_P5mm_Vertical -Ferrite bead, axial, length 4.5mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 4.5mm pitch 5mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L4.5mm_D3.5mm_P5mm_Vertical_Dual -Ferrite bead, axial, length 4.5mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 4.5mm pitch 5mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L4.5mm_D3.5mm_P7.62mm -Ferrite bead, axial, length 4.5mm, diameter 3.5mm, pin pitch 7.62mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 4.5mm pitch 7.62mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L4.5mm_D3.5mm_P10.16mm -Ferrite bead, axial, length 4.5mm, diameter 3.5mm, pin pitch 10.16mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 4.5mm pitch 10.16mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L4.5mm_D3.5mm_P12.70mm -Ferrite bead, axial, length 4.5mm, diameter 3.5mm, pin pitch 12.70mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 4.5mm pitch 12.70mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L4.5mm_D3.5mm_P15.24mm -Ferrite bead, axial, length 4.5mm, diameter 3.5mm, pin pitch 15.24mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 4.5mm pitch 15.24mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L4.5mm_D3.5mm_P20.32mm -Ferrite bead, axial, length 4.5mm, diameter 3.5mm, pin pitch 20.32mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 4.5mm pitch 20.32mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L4.7mm_D3.5mm_P3.81mm_Vertical -Ferrite bead, axial, length 4.7mm, diameter 3.5mm, pin pitch 3.81mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 4.7mm pitch 3.81mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L4.7mm_D3.5mm_P5.08mm_Vertical -Ferrite bead, axial, length 4.7mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 4.7mm pitch 5.08mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L4.7mm_D3.5mm_P5.08mm_Vertical_Dual -Ferrite bead, axial, length 4.7mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 4.7mm pitch 5.08mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L4.7mm_D3.5mm_P5mm_Vertical -Ferrite bead, axial, length 4.7mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 4.7mm pitch 5mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L4.7mm_D3.5mm_P5mm_Vertical_Dual -Ferrite bead, axial, length 4.7mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 4.7mm pitch 5mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L4.7mm_D3.5mm_P7.62mm -Ferrite bead, axial, length 4.7mm, diameter 3.5mm, pin pitch 7.62mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 4.7mm pitch 7.62mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L4.7mm_D3.5mm_P10.16mm -Ferrite bead, axial, length 4.7mm, diameter 3.5mm, pin pitch 10.16mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 4.7mm pitch 10.16mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L4.7mm_D3.5mm_P12.70mm -Ferrite bead, axial, length 4.7mm, diameter 3.5mm, pin pitch 12.70mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 4.7mm pitch 12.70mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L4.7mm_D3.5mm_P15.24mm -Ferrite bead, axial, length 4.7mm, diameter 3.5mm, pin pitch 15.24mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 4.7mm pitch 15.24mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L4.7mm_D3.5mm_P20.32mm -Ferrite bead, axial, length 4.7mm, diameter 3.5mm, pin pitch 20.32mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 4.7mm pitch 20.32mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L5.0mm_D2.3mm_P3.81mm_Vertical -Ferrite bead, axial, length 5mm, diameter 2.3mm, pin pitch 3.81mm, Alternate KiCAD Library -ferrite axial diameter 2.3mm length 5mm pitch 3.81mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L5.0mm_D2.3mm_P3.81mm_Vertical_Dual -Ferrite bead, axial, length 5mm, diameter 2.3mm, pin pitch 3.81mm, Alternate KiCAD Library -ferrite axial diameter 2.3mm length 5mm pitch 3.81mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L5.0mm_D2.3mm_P5.08mm_Vertical -Ferrite bead, axial, length 5mm, diameter 2.3mm, pin pitch 5.08mm, Alternate KiCAD Library -ferrite axial diameter 2.3mm length 5mm pitch 5.08mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L5.0mm_D2.3mm_P5.08mm_Vertical_Dual -Ferrite bead, axial, length 5mm, diameter 2.3mm, pin pitch 5.08mm, Alternate KiCAD Library -ferrite axial diameter 2.3mm length 5mm pitch 5.08mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L5.0mm_D2.3mm_P5mm_Vertical -Ferrite bead, axial, length 5mm, diameter 2.3mm, pin pitch 5mm, Alternate KiCAD Library -ferrite axial diameter 2.3mm length 5mm pitch 5mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L5.0mm_D2.3mm_P5mm_Vertical_Dual -Ferrite bead, axial, length 5mm, diameter 2.3mm, pin pitch 5mm, Alternate KiCAD Library -ferrite axial diameter 2.3mm length 5mm pitch 5mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L5.0mm_D2.3mm_P7.62mm -Ferrite bead, axial, length 5mm, diameter 3.4mm, pin pitch 7.62mm, Alternate KiCAD Library -ferrite axial diameter 3.4mm length 5mm pitch 7.62mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L5.0mm_D2.3mm_P10.16mm -Ferrite bead, axial, length 5mm, diameter 3.4mm, pin pitch 10.16mm, Alternate KiCAD Library -ferrite axial diameter 3.4mm length 5mm pitch 10.16mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L5.0mm_D2.3mm_P12.70mm -Ferrite bead, axial, length 5mm, diameter 3.4mm, pin pitch 12.70mm, Alternate KiCAD Library -ferrite axial diameter 3.4mm length 5mm pitch 12.70mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L5.0mm_D2.3mm_P15.24mm -Ferrite bead, axial, length 5mm, diameter 3.4mm, pin pitch 15.24mm, Alternate KiCAD Library -ferrite axial diameter 3.4mm length 5mm pitch 15.24mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L5.0mm_D2.3mm_P20.32mm -Ferrite bead, axial, length 5mm, diameter 3.4mm, pin pitch 20.32mm, Alternate KiCAD Library -ferrite axial diameter 3.4mm length 5mm pitch 20.32mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L5.0mm_D3.4mm_P3.81mm_Vertical -Ferrite bead, axial, length 5mm, diameter 3.4mm, pin pitch 3.81mm, Alternate KiCAD Library -ferrite axial diameter 3.4mm length 5mm pitch 3.81mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L5.0mm_D3.4mm_P5.08mm_Vertical -Ferrite bead, axial, length 5mm, diameter 3.4mm, pin pitch 5.08mm, Alternate KiCAD Library -ferrite axial diameter 3.4mm length 5mm pitch 5.08mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L5.0mm_D3.4mm_P5.08mm_Vertical_Dual -Ferrite bead, axial, length 5mm, diameter 3.4mm, pin pitch 5.08mm, Alternate KiCAD Library -ferrite axial diameter 3.4mm length 5mm pitch 5.08mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L5.0mm_D3.4mm_P5mm_Vertical -Ferrite bead, axial, length 5mm, diameter 3.4mm, pin pitch 5mm, Alternate KiCAD Library -ferrite axial diameter 3.4mm length 5mm pitch 5mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L5.0mm_D3.4mm_P5mm_Vertical_Dual -Ferrite bead, axial, length 5mm, diameter 3.4mm, pin pitch 5mm, Alternate KiCAD Library -ferrite axial diameter 3.4mm length 5mm pitch 5mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L5.0mm_D3.4mm_P7.62mm -Ferrite bead, axial, length 5mm, diameter 3.4mm, pin pitch 7.62mm, Alternate KiCAD Library -ferrite axial diameter 3.4mm length 5mm pitch 7.62mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L5.0mm_D3.4mm_P10.16mm -Ferrite bead, axial, length 5mm, diameter 3.4mm, pin pitch 10.16mm, Alternate KiCAD Library -ferrite axial diameter 3.4mm length 5mm pitch 10.16mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L5.0mm_D3.4mm_P12.70mm -Ferrite bead, axial, length 5mm, diameter 3.4mm, pin pitch 12.70mm, Alternate KiCAD Library -ferrite axial diameter 3.4mm length 5mm pitch 12.70mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L5.0mm_D3.4mm_P15.24mm -Ferrite bead, axial, length 5mm, diameter 3.4mm, pin pitch 15.24mm, Alternate KiCAD Library -ferrite axial diameter 3.4mm length 5mm pitch 15.24mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L5.0mm_D3.4mm_P20.32mm -Ferrite bead, axial, length 5mm, diameter 3.4mm, pin pitch 20.32mm, Alternate KiCAD Library -ferrite axial diameter 3.4mm length 5mm pitch 20.32mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L5.0mm_D3.5mm_P3.81mm_Vertical -Ferrite bead, axial, length 5mm, diameter 3.5mm, pin pitch 3.81mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 5mm pitch 3.81mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L5.0mm_D3.5mm_P5.08mm_Vertical -Ferrite bead, axial, length 5mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 5mm pitch 5.08mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L5.0mm_D3.5mm_P5.08mm_Vertical_Dual -Ferrite bead, axial, length 5mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 5mm pitch 5.08mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L5.0mm_D3.5mm_P5mm_Vertical -Ferrite bead, axial, length 5mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 5mm pitch 5mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L5.0mm_D3.5mm_P5mm_Vertical_Dual -Ferrite bead, axial, length 5mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 5mm pitch 5mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L5.0mm_D3.5mm_P7.62mm -Ferrite bead, axial, length 5mm, diameter 3.5mm, pin pitch 7.62mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 5mm pitch 7.62mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L5.0mm_D3.5mm_P10.16mm -Ferrite bead, axial, length 5mm, diameter 3.5mm, pin pitch 10.16mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 5mm pitch 10.16mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L5.0mm_D3.5mm_P12.70mm -Ferrite bead, axial, length 5mm, diameter 3.5mm, pin pitch 12.70mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 5mm pitch 12.70mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L5.0mm_D3.5mm_P15.24mm -Ferrite bead, axial, length 5mm, diameter 3.5mm, pin pitch 15.24mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 5mm pitch 15.24mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L5.0mm_D3.5mm_P20.32mm -Ferrite bead, axial, length 5mm, diameter 3.5mm, pin pitch 20.32mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 5mm pitch 20.32mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L5.0mm_D3.6mm_P3.81mm_Vertical -Ferrite bead, axial, length 5mm, diameter 3.6mm, pin pitch 3.81mm, Alternate KiCAD Library -ferrite axial diameter 3.6mm length 5mm pitch 3.81mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L5.0mm_D3.6mm_P5.08mm_Vertical -Ferrite bead, axial vertical, length 5mm, diameter 3.6mm, pin pitch 5.08mm, Alternate KiCAD Library -ferrite axial diameter 3.6mm length 5mm pitch 5.08mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L5.0mm_D3.6mm_P5.08mm_Vertical_Dual -Ferrite bead, axial vertical, length 5mm, diameter 3.6mm, pin pitch 5.08mm, Alternate KiCAD Library -ferrite axial diameter 3.6mm length 5mm pitch 5.08mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L5.0mm_D3.6mm_P5mm_Vertical -Ferrite bead, axial vertical, length 5mm, diameter 3.6mm, pin pitch 5mm, Alternate KiCAD Library -ferrite axial diameter 3.6mm length 5mm pitch 5mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L5.0mm_D3.6mm_P5mm_Vertical_Dual -Ferrite bead, axial vertical, length 5mm, diameter 3.6mm, pin pitch 5mm, Alternate KiCAD Library -ferrite axial diameter 3.6mm length 5mm pitch 5mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L5.0mm_D3.6mm_P7.62mm -Ferrite bead, axial, length 5mm, diameter 3.6mm, pin pitch 7.62mm, Alternate KiCAD Library -ferrite axial diameter 3.6mm length 5mm pitch 7.62mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L5.0mm_D3.6mm_P10.16mm -Ferrite bead, axial, length 5mm, diameter 3.6mm, pin pitch 10.16mm, Alternate KiCAD Library -ferrite axial diameter 3.6mm length 5mm pitch 10.16mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L5.0mm_D3.6mm_P12.70mm -Ferrite bead, axial, length 5mm, diameter 3.6mm, pin pitch 12.70mm, Alternate KiCAD Library -ferrite axial diameter 3.6mm length 5mm pitch 12.70mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L5.0mm_D3.6mm_P15.24mm -Ferrite bead, axial, length 5mm, diameter 3.6mm, pin pitch 15.24mm, Alternate KiCAD Library -ferrite axial diameter 3.6mm length 5mm pitch 15.24mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L5.0mm_D3.6mm_P20.32mm -Ferrite bead, axial, length 5mm, diameter 3.6mm, pin pitch 20.32mm, Alternate KiCAD Library -ferrite axial diameter 3.6mm length 5mm pitch 20.32mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L6.0mm_D3.5mm_P3.81mm_Vertical -Ferrite bead, axial, length 6mm, diameter 3.5mm, pin pitch 3.81mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 6mm pitch 3.81mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L6.0mm_D3.5mm_P5.08mm_Vertical -Ferrite bead, axial, length 6mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 6mm pitch 5.08mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L6.0mm_D3.5mm_P5.08mm_Vertical_Dual -Ferrite bead, axial, length 6mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 6mm pitch 5.08mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L6.0mm_D3.5mm_P5mm_Vertical -Ferrite bead, axial, length 6mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 6mm pitch 5mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L6.0mm_D3.5mm_P5mm_Vertical_Dual -Ferrite bead, axial, length 6mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 6mm pitch 5mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L6.0mm_D3.5mm_P10.16mm -Ferrite bead, axial, length 6mm, diameter 3.5mm, pin pitch 10.16mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 6mm pitch 10.16mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L6.0mm_D3.5mm_P12.70mm -Ferrite bead, axial, length 6mm, diameter 3.5mm, pin pitch 12.70mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 6mm pitch 12.70mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L6.0mm_D3.5mm_P15.24mm -Ferrite bead, axial, length 6mm, diameter 3.5mm, pin pitch 15.24mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 6mm pitch 15.24mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L6.0mm_D3.5mm_P20.32mm -Ferrite bead, axial, length 6mm, diameter 3.5mm, pin pitch 20.32mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 6mm pitch 20.32mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L6.7mm_D3.5mm_P3.81mm_Vertical -Ferrite bead, axial, length 6.7mm, diameter 3.5mm, pin pitch 3.81mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 6.7mm pitch 3.81mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L6.7mm_D3.5mm_P5.08mm_Vertical -Ferrite bead, axial, length 6.7mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 6.7mm pitch 5.08mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L6.7mm_D3.5mm_P5.08mm_Vertical_Dual -Ferrite bead, axial, length 6.7mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 6.7mm pitch 5.08mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L6.7mm_D3.5mm_P5mm_Vertical -Ferrite bead, axial, length 6.7mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 6.7mm pitch 5mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L6.7mm_D3.5mm_P5mm_Vertical_Dual -Ferrite bead, axial, length 6.7mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 6.7mm pitch 5mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L6.7mm_D3.5mm_P10.16mm -Ferrite bead, axial, length 6.7mm, diameter 3.5mm, pin pitch 10.16mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 6.7mm pitch 10.16mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L6.7mm_D3.5mm_P12.70mm -Ferrite bead, axial, length 6.7mm, diameter 3.5mm, pin pitch 12.70mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 6.7mm pitch 12.70mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L6.7mm_D3.5mm_P15.24mm -Ferrite bead, axial, length 6.7mm, diameter 3.5mm, pin pitch 15.24mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 6.7mm pitch 15.24mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L6.7mm_D3.5mm_P20.32mm -Ferrite bead, axial, length 6.7mm, diameter 3.5mm, pin pitch 20.32mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 6.7mm pitch 20.32mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L7.0mm_D2.5mm_P3.81mm_Vertical -Ferrite bead, axial, length 7mm, diameter 2.5mm, pin pitch 3.81mm, Alternate KiCAD Library -ferrite axial diameter 2.5mm length 7mm pitch 3.81mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L7.0mm_D2.5mm_P3.81mm_Vertical_Dual -Ferrite bead, axial, length 7mm, diameter 2.5mm, pin pitch 3.81mm, Alternate KiCAD Library -ferrite axial diameter 2.5mm length 7mm pitch 3.81mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L7.0mm_D2.5mm_P5.08mm_Vertical -Ferrite bead, axial, length 7mm, diameter 2.5mm, pin pitch 5.08mm, Alternate KiCAD Library -ferrite axial diameter 2.5mm length 7mm pitch 5.08mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L7.0mm_D2.5mm_P5.08mm_Vertical_Dual -Ferrite bead, axial, length 7mm, diameter 2.5mm, pin pitch 5.08mm, Alternate KiCAD Library -ferrite axial diameter 2.5mm length 7mm pitch 5.08mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L7.0mm_D2.5mm_P5mm_Vertical -Ferrite bead, axial, length 7mm, diameter 2.5mm, pin pitch 5mm, Alternate KiCAD Library -ferrite axial diameter 2.5mm length 7mm pitch 5mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L7.0mm_D2.5mm_P5mm_Vertical_Dual -Ferrite bead, axial, length 7mm, diameter 2.5mm, pin pitch 5mm, Alternate KiCAD Library -ferrite axial diameter 2.5mm length 7mm pitch 5mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L7.0mm_D2.5mm_P10.16mm -Ferrite bead, axial, length 7mm, diameter 2.5mm, pin pitch 10.16mm, Alternate KiCAD Library -ferrite axial diameter 2.5mm length 7mm pitch 10.16mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L7.0mm_D2.5mm_P12.70mm -Ferrite bead, axial, length 7mm, diameter 2.5mm, pin pitch 12.70mm, Alternate KiCAD Library -ferrite axial diameter 2.5mm length 7mm pitch 12.70mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L7.0mm_D2.5mm_P15.24mm -Ferrite bead, axial, length 7mm, diameter 2.5mm, pin pitch 15.24mm, Alternate KiCAD Library -ferrite axial diameter 2.5mm length 7mm pitch 15.24mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L7.0mm_D2.5mm_P20.32mm -Ferrite bead, axial, length 7mm, diameter 2.5mm, pin pitch 20.32mm, Alternate KiCAD Library -ferrite axial diameter 2.5mm length 7mm pitch 20.32mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L7.5mm_D3.5mm_P3.81mm_Vertical -Ferrite bead, axial, length 7.5mm, diameter 3.5mm, pin pitch 3.81mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 7.5mm pitch 3.81mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L7.5mm_D3.5mm_P5.08mm_Vertical -Ferrite bead, axial, length 7.5mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 7.5mm pitch 5.08mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L7.5mm_D3.5mm_P5.08mm_Vertical_Dual -Ferrite bead, axial, length 7.5mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 7.5mm pitch 5.08mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L7.5mm_D3.5mm_P5mm_Vertical -Ferrite bead, axial, length 7.5mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 7.5mm pitch 5mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L7.5mm_D3.5mm_P5mm_Vertical_Dual -Ferrite bead, axial, length 7.5mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 7.5mm pitch 5mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L7.5mm_D3.5mm_P10.16mm -Ferrite bead, axial, length 7.5mm, diameter 3.5mm, pin pitch 10.16mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 7.5mm pitch 10.16mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L7.5mm_D3.5mm_P12.70mm -Ferrite bead, axial, length 7.5mm, diameter 3.5mm, pin pitch 12.70mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 7.5mm pitch 12.70mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L7.5mm_D3.5mm_P15.24mm -Ferrite bead, axial, length 7.5mm, diameter 3.5mm, pin pitch 15.24mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 7.5mm pitch 15.24mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L7.5mm_D3.5mm_P20.32mm -Ferrite bead, axial, length 7.5mm, diameter 3.5mm, pin pitch 20.32mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 7.5mm pitch 20.32mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L8.0mm_D3.5mm_P3.81mm_Vertical -Ferrite bead, axial, length 8mm, diameter 3.5mm, pin pitch 3.81mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 8mm pitch 3.81mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L8.0mm_D3.5mm_P5.08mm_Vertical -Ferrite bead, axial, length 8mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 8mm pitch 5.08mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L8.0mm_D3.5mm_P5.08mm_Vertical_Dual -Ferrite bead, axial, length 8mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 8mm pitch 5.08mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L8.0mm_D3.5mm_P5mm_Vertical -Ferrite bead, axial, length 8mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 8mm pitch 5mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L8.0mm_D3.5mm_P5mm_Vertical_Dual -Ferrite bead, axial, length 8mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 8mm pitch 5mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L8.0mm_D3.5mm_P10.16mm -Ferrite bead, axial, length 8mm, diameter 3.5mm, pin pitch 10.16mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 8mm pitch 10.16mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L8.0mm_D3.5mm_P12.70mm -Ferrite bead, axial, length 8mm, diameter 3.5mm, pin pitch 12.70mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 8mm pitch 12.70mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L8.0mm_D3.5mm_P15.24mm -Ferrite bead, axial, length 8mm, diameter 3.5mm, pin pitch 15.24mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 8mm pitch 15.24mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L8.0mm_D3.5mm_P20.32mm -Ferrite bead, axial, length 8mm, diameter 3.5mm, pin pitch 20.32mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 8mm pitch 20.32mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L9.0mm_D3.5mm_P3.81mm_Vertical -Ferrite bead, axial, length 9mm, diameter 3.5mm, pin pitch 3.81mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 9mm pitch 3.81mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L9.0mm_D3.5mm_P5.08mm_Vertical -Ferrite bead, axial, length 9mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 9mm pitch 5.08mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L9.0mm_D3.5mm_P5.08mm_Vertical_Dual -Ferrite bead, axial, length 9mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 9mm pitch 5.08mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L9.0mm_D3.5mm_P5mm_Vertical -Ferrite bead, axial, length 9mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 9mm pitch 5mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L9.0mm_D3.5mm_P5mm_Vertical_Dual -Ferrite bead, axial, length 9mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 9mm pitch 5mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L9.0mm_D3.5mm_P12.70mm -Ferrite bead, axial, length 9mm, diameter 3.5mm, pin pitch 12.70mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 9mm pitch 12.70mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L9.0mm_D3.5mm_P15.24mm -Ferrite bead, axial, length 9mm, diameter 3.5mm, pin pitch 15.24mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 9mm pitch 15.24mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L9.0mm_D3.5mm_P20.32mm -Ferrite bead, axial, length 9mm, diameter 3.5mm, pin pitch 20.32mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 9mm pitch 20.32mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L10.0mm_D6.0mm_P12.70mm -Ferrite choke, axial, length 10mm, diameter 6mm, pin pitch 12.70mm, Alternate KiCAD Library -ferrite axial diameter 6mm length 10mm pitch 12.70mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L10.0mm_D6.0mm_P12.70mm_Wide -Ferrite choke, axial, length 10mm, diameter 6mm, pin pitch 12.70mm, Alternate KiCAD Library -ferrite axial diameter 6mm length 10mm pitch 12.70mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L10.0mm_D6.0mm_P15.24mm -Ferrite choke, axial, length 10mm, diameter 6mm, pin pitch 15.24mm, Alternate KiCAD Library -ferrite axial diameter 6mm length 10mm pitch 15.24mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L10.0mm_D6.0mm_P15.24mm_Wide -Ferrite choke, axial, length 10mm, diameter 6mm, pin pitch 15.24mm, Alternate KiCAD Library -ferrite axial diameter 6mm length 10mm pitch 15.24mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L10.0mm_D6.0mm_P20.32mm -Ferrite choke, axial, length 10mm, diameter 6mm, pin pitch 20.32mm, Alternate KiCAD Library -ferrite axial diameter 6mm length 10mm pitch 20.32mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L10.0mm_D6.0mm_P20.32mm_Wide -Ferrite choke, axial, length 10mm, diameter 6mm, pin pitch 20.32mm, Alternate KiCAD Library -ferrite axial diameter 6mm length 10mm pitch 20.32mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L10.0mm_D6mm_P3.5mm_Radial -Ferrite choke, radial, length 10mm, diameter 6mm, pin pitch 3.5mm, Alternate KiCAD Library -ferrite radial diameter 6mm length 10mm pitch 3.5mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L12.0mm_D3.5mm_P3.81mm_Vertical -Ferrite bead, axial, length 12mm, diameter 3.5mm, pin pitch 3.81mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 12mm pitch 3.81mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L12.0mm_D3.5mm_P5.08mm_Vertical -Ferrite bead, axial, length 12mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 12mm pitch 5.08mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L12.0mm_D3.5mm_P5.08mm_Vertical_Dual -Ferrite bead, axial, length 12mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 12mm pitch 5.08mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L12.0mm_D3.5mm_P5mm_Vertical -Ferrite bead, axial, length 12mm, diameter 3.5mm, pin pitch 5mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 12mm pitch 5mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L12.0mm_D3.5mm_P5mm_Vertical_Dual -Ferrite bead, axial, length 12mm, diameter 3.5mm, pin pitch 5.08mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 12mm pitch 5.08mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L12.0mm_D3.5mm_P15.24mm -Ferrite bead, axial, length 12mm, diameter 3.5mm, pin pitch 15.24mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 12mm pitch 15.24mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_L12.0mm_D3.5mm_P20.32mm -Ferrite bead, axial, length 12mm, diameter 3.5mm, pin pitch 20.32mm, Alternate KiCAD Library -ferrite axial diameter 3.5mm length 12mm pitch 20.32mm -0 -2 -2 -PCM_Ferrite_THT_AKL_Double -Ferrite_Quad_L11.2mm_W11.2mm_P2.54mm -Ferrite bead, quadruple, 11.2x11.2mm size, 2.54mm pitch, Alternate KiCAD Library -ferrite quad length 11.2mm width 11.2mm pitch 2.54mm -0 -8 -6 -PCM_Fuse_AKL -Fuse_0201_0603Metric -Fuse SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), Alternate KiCAD Library -fuse -0 -4 -2 -PCM_Fuse_AKL -Fuse_0402_1005Metric -Fuse SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library -fuse -0 -2 -2 -PCM_Fuse_AKL -Fuse_0603_1608Metric -Fuse SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library -fuse -0 -2 -2 -PCM_Fuse_AKL -Fuse_0603_1608Metric_Castellated -Fuse SMD 0603 (1608 Metric), castellated end terminal, IPC_7351. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library -fuse castellated -0 -2 -2 -PCM_Fuse_AKL -Fuse_0603_1608Metric_Pad1.05x0.95mm_BigPads -Fuse SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library -fuse big pads -0 -2 -2 -PCM_Fuse_AKL -Fuse_0805_2012Metric -Fuse SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), Alternate KiCAD Library -fuse -0 -2 -2 -PCM_Fuse_AKL -Fuse_0805_2012Metric_Castellated -Fuse SMD 0805 (2012 Metric), castellated end terminal, IPC_7351. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), Alternate KiCAD Library -fuse castellated -0 -2 -2 -PCM_Fuse_AKL -Fuse_0805_2012Metric_Pad1.15x1.40mm_BigPads -Fuse SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), Alternate KiCAD Library -fuse big pads -0 -2 -2 -PCM_Fuse_AKL -Fuse_01005_0402Metric -Fuse SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), Alternate KiCAD Library -fuse -0 -4 -2 -PCM_Fuse_AKL -Fuse_1206_3216Metric -Fuse SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library -fuse -0 -2 -2 -PCM_Fuse_AKL -Fuse_1206_3216Metric_Castellated -Fuse SMD 1206 (3216 Metric), castellated end terminal, IPC_7351. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library -fuse castellated -0 -2 -2 -PCM_Fuse_AKL -Fuse_1206_3216Metric_Pad1.42x1.75mm_BigPads -Fuse SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library -fuse handsolder -0 -2 -2 -PCM_Fuse_AKL -Fuse_1210_3225Metric -Fuse SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library -fuse -0 -2 -2 -PCM_Fuse_AKL -Fuse_1210_3225Metric_Castellated -Fuse SMD 1210 (3225 Metric), castellated end terminal, IPC_7351. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library -fuse castellated -0 -2 -2 -PCM_Fuse_AKL -Fuse_1210_3225Metric_Pad1.42x2.65mm_BigPads -Fuse SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library -fuse big pads -0 -2 -2 -PCM_Fuse_AKL -Fuse_1806_4516Metric -Fuse SMD 1806 (4516 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.modelithics.com/models/Vendor/MuRata/BLM41P.pdf), Alternate KiCAD Library -fuse -0 -2 -2 -PCM_Fuse_AKL -Fuse_1806_4516Metric_Castellated -Fuse SMD 1806 (4516 Metric), castellated end terminal, IPC_7351. (Body size source: https://www.modelithics.com/models/Vendor/MuRata/BLM41P.pdf), Alternate KiCAD Library -fuse castellated -0 -2 -2 -PCM_Fuse_AKL -Fuse_1806_4516Metric_Pad1.57x1.80mm_BigPads -Fuse SMD 1806 (4516 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.modelithics.com/models/Vendor/MuRata/BLM41P.pdf), Alternate KiCAD Library -fuse big pads -0 -2 -2 -PCM_Fuse_AKL -Fuse_1812_4532Metric -Fuse SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), Alternate KiCAD Library -fuse -0 -2 -2 -PCM_Fuse_AKL -Fuse_1812_4532Metric_Castellated -Fuse SMD 1812 (4532 Metric), castellated end terminal, IPC_7351. (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), Alternate KiCAD Library -fuse castellated -0 -2 -2 -PCM_Fuse_AKL -Fuse_1812_4532Metric_Pad1.30x3.40mm_BigPads -Fuse SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), Alternate KiCAD Library -fuse big pads -0 -2 -2 -PCM_Fuse_AKL -Fuse_2010_5025Metric -Fuse SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library -fuse -0 -2 -2 -PCM_Fuse_AKL -Fuse_2010_5025Metric_Castellated -Fuse SMD 2010 (5025 Metric), castellated end terminal, IPC_7351. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library -fuse castellated -0 -2 -2 -PCM_Fuse_AKL -Fuse_2010_5025Metric_Pad1.52x2.65mm_BigPads -Fuse SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library -fuse big pads -0 -2 -2 -PCM_Fuse_AKL -Fuse_2512_6332Metric -Fuse SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library -fuse -0 -2 -2 -PCM_Fuse_AKL -Fuse_2512_6332Metric_Castellated -Fuse SMD 2512 (6332 Metric), castellated end terminal, IPC_7351. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library -fuse castellated -0 -2 -2 -PCM_Fuse_AKL -Fuse_2512_6332Metric_Pad1.52x3.35mm_BigPads -Fuse SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library -fuse big pads -0 -2 -2 -PCM_Fuse_AKL -Fuse_2816_7142Metric -Fuse SMD 2816 (7142 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), Alternate KiCAD Library -fuse -0 -2 -2 -PCM_Fuse_AKL -Fuse_2816_7142Metric_Castellated -Fuse SMD 2816 (7142 Metric), castellated end terminal, IPC_7351. (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), Alternate KiCAD Library -fuse castellated -0 -2 -2 -PCM_Fuse_AKL -Fuse_2816_7142Metric_Pad3.20x4.45mm_BigPads -Fuse SMD 2816 (7142 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), Alternate KiCAD Library -fuse big pads -0 -2 -2 -PCM_Fuse_AKL -Fuse_2920_7451Metric -Fuse SMD 2920 (7451 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://www.megastar.com/products/fusetronic/polyswitch/PDF/smd2920.pdf), Alternate KiCAD Library -fuse -0 -2 -2 -PCM_Fuse_AKL -Fuse_2920_7451Metric_Castellated -Fuse SMD 2920 (7451 Metric), castellated end terminal, IPC_7351. (Body size from: http://www.megastar.com/products/fusetronic/polyswitch/PDF/smd2920.pdf), Alternate KiCAD Library -fuse castellated -0 -2 -2 -PCM_Fuse_AKL -Fuse_2920_7451Metric_Pad2.10x5.45mm_HandSolder -Fuse SMD 2920 (7451 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: http://www.megastar.com/products/fusetronic/polyswitch/PDF/smd2920.pdf), Alternate KiCAD Library -resistor handsolder -0 -2 -2 -PCM_Fuse_AKL -Fuse_BelFuse_0ZRE0005FF_L8.3mm_W3.8mm -Fuse 0ZRE0005FF, BelFuse, Radial Leaded PTC, https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library -0ZRE BelFuse radial PTC -0 -2 -2 -PCM_Fuse_AKL -Fuse_BelFuse_0ZRE0008FF_L8.3mm_W3.8mm -Fuse 0ZRE0008FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library -0ZRE BelFuse radial PTC -0 -2 -2 -PCM_Fuse_AKL -Fuse_BelFuse_0ZRE0012FF_L8.3mm_W3.8mm -Fuse 0ZRE0012FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library -0ZRE BelFuse radial PTC -0 -2 -2 -PCM_Fuse_AKL -Fuse_BelFuse_0ZRE0016FF_L9.9mm_W3.8mm -Fuse 0ZRE0016FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library -0ZRE BelFuse radial PTC -0 -2 -2 -PCM_Fuse_AKL -Fuse_BelFuse_0ZRE0025FF_L9.6mm_W3.8mm -Fuse 0ZRE0025FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library -0ZRE BelFuse radial PTC -0 -2 -2 -PCM_Fuse_AKL -Fuse_BelFuse_0ZRE0033FF_L11.4mm_W3.8mm -Fuse 0ZRE0033FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library -0ZRE BelFuse radial PTC -0 -2 -2 -PCM_Fuse_AKL -Fuse_BelFuse_0ZRE0040FF_L11.5mm_W3.8mm -Fuse 0ZRE0040FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library -0ZRE BelFuse radial PTC -0 -2 -2 -PCM_Fuse_AKL -Fuse_BelFuse_0ZRE0055FF_L14.0mm_W4.1mm -Fuse 0ZRE0055FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library -0ZRE BelFuse radial PTC -0 -2 -2 -PCM_Fuse_AKL -Fuse_BelFuse_0ZRE0075FF_L11.5mm_W4.8mm -Fuse 0ZRE0075FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library -0ZRE BelFuse radial PTC -0 -2 -2 -PCM_Fuse_AKL -Fuse_BelFuse_0ZRE0100FF_L18.7mm_W5.1mm -Fuse 0ZRE0100FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library -0ZRE BelFuse radial PTC -0 -2 -2 -PCM_Fuse_AKL -Fuse_BelFuse_0ZRE0125FF_L21.2mm_W5.3mm -Fuse 0ZRE0125FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library -0ZRE BelFuse radial PTC -0 -2 -2 -PCM_Fuse_AKL -Fuse_BelFuse_0ZRE0150FF_L23.4mm_W5.3mm -Fuse 0ZRE0150FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library -0ZRE BelFuse radial PTC -0 -2 -2 -PCM_Fuse_AKL -Fuse_BelFuse_0ZRE0200FF_L24.9mm_W6.1mm -Fuse 0ZRE0200FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library -0ZRE BelFuse radial PTC -0 -2 -2 -PCM_Fuse_AKL -Fuse_Blade_ATO_directSolder -car blade fuse direct solder, Alternate KiCAD Library -car blade fuse -0 -2 -2 -PCM_Fuse_AKL -Fuse_Blade_Mini_directSolder -car blade fuse mini, direct solder, Alternate KiCAD Library -car blade fuse mini -0 -2 -2 -PCM_Fuse_AKL -Fuse_Bourns_MF-RG300 -PTC Resettable Fuse, Ihold = 3.0A, Itrip=5.1A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_AKL -Fuse_Bourns_MF-RG400 -PTC Resettable Fuse, Ihold = 4.0A, Itrip=6.8A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_AKL -Fuse_Bourns_MF-RG500 -PTC Resettable Fuse, Ihold = 5.0A, Itrip=8.5A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_AKL -Fuse_Bourns_MF-RG600 -PTC Resettable Fuse, Ihold = 6.0A, Itrip=10.2A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_AKL -Fuse_Bourns_MF-RG650 -PTC Resettable Fuse, Ihold = 6.5A, Itrip=11.1A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_AKL -Fuse_Bourns_MF-RG700 -PTC Resettable Fuse, Ihold = 7.0A, Itrip=11.9A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_AKL -Fuse_Bourns_MF-RG800 -PTC Resettable Fuse, Ihold = 8.0A, Itrip=13.6A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_AKL -Fuse_Bourns_MF-RG900 -PTC Resettable Fuse, Ihold = 9.0A, Itrip=15.3A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_AKL -Fuse_Bourns_MF-RG1000 -PTC Resettable Fuse, Ihold = 10.0A, Itrip=17.0A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_AKL -Fuse_Bourns_MF-RG1100 -PTC Resettable Fuse, Ihold = 11.0A, Itrip=18.7A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_AKL -Fuse_Bourns_MF-RHT050 -PTC Resettable Fuse, Ihold = 0.5A, Itrip=0.92A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_AKL -Fuse_Bourns_MF-RHT070 -PTC Resettable Fuse, Ihold = 0.7A, Itrip=1.4A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_AKL -Fuse_Bourns_MF-RHT100 -PTC Resettable Fuse, Ihold = 1.0A, Itrip=1.8A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_AKL -Fuse_Bourns_MF-RHT200 -PTC Resettable Fuse, Ihold = 2.0A, Itrip=3.8A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_AKL -Fuse_Bourns_MF-RHT300 -PTC Resettable Fuse, Ihold = 3.0A, Itrip=6.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_AKL -Fuse_Bourns_MF-RHT400 -PTC Resettable Fuse, Ihold = 4.0A, Itrip=7.5A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_AKL -Fuse_Bourns_MF-RHT500 -PTC Resettable Fuse, Ihold = 5.0A, Itrip=9.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_AKL -Fuse_Bourns_MF-RHT550 -PTC Resettable Fuse, Ihold = 5.5A, Itrip=10.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_AKL -Fuse_Bourns_MF-RHT600 -PTC Resettable Fuse, Ihold = 6.0A, Itrip=10.8A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_AKL -Fuse_Bourns_MF-RHT650 -PTC Resettable Fuse, Ihold = 6.5A, Itrip=12.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_AKL -Fuse_Bourns_MF-RHT700 -PTC Resettable Fuse, Ihold = 7.0A, Itrip=13.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_AKL -Fuse_Bourns_MF-RHT750 -PTC Resettable Fuse, Ihold = 7.5A, Itrip=13.1A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_AKL -Fuse_Bourns_MF-RHT800 -PTC Resettable Fuse, Ihold = 8.0A, Itrip=15.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_AKL -Fuse_Bourns_MF-RHT900 -PTC Resettable Fuse, Ihold = 9.0A, Itrip=16.5A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_AKL -Fuse_Bourns_MF-RHT1000 -PTC Resettable Fuse, Ihold = 10.0A, Itrip=18.5A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_AKL -Fuse_Bourns_MF-RHT1100 -PTC Resettable Fuse, Ihold = 11.0A, Itrip=20.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_AKL -Fuse_Bourns_MF-RHT1300 -PTC Resettable Fuse, Ihold = 13.0A, Itrip=24.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_AKL -Fuse_Bourns_MF-SM_7.98x5.44mm -https://www.bourns.com/docs/Product-Datasheets/mfsm.pdf, Alternate KiCAD Library -bourns ptc resettable fuse polyfuse MF-SM MF-SMHT -0 -2 -2 -PCM_Fuse_AKL -Fuse_Bourns_MF-SM_9.5x6.71mm -https://www.bourns.com/docs/Product-Datasheets/mfsm.pdf, Alternate KiCAD Library -bourns ptc resettable fuse polyfuse MF-SM MF-SMHT -0 -2 -2 -PCM_Fuse_AKL -Fuse_Littelfuse-LVR100 -Littelfuse, resettable fuse, PTC, polyswitch LVR100, Ih 1A http://www.littelfuse.com/~/media/electronics/datasheets/resettable_ptcs/littelfuse_ptc_lvr_catalog_datasheet.pdf.pdf, Alternate KiCAD Library -LVR100 PTC resettable polyswitch -0 -2 -2 -PCM_Fuse_AKL -Fuse_Littelfuse-LVR125 -Littelfuse, resettable fuse, PTC, polyswitch LVR125, Ih 1.25A, http://www.littelfuse.com/~/media/electronics/datasheets/resettable_ptcs/littelfuse_ptc_lvr_catalog_datasheet.pdf.pdf, Alternate KiCAD Library -LVR125 PTC resettable polyswitch -0 -2 -2 -PCM_Fuse_AKL -Fuse_Littelfuse-LVR200 -Littelfuse, resettable fuse, PTC, polyswitch LVR200, Ih 2A, http://www.littelfuse.com/~/media/electronics/datasheets/resettable_ptcs/littelfuse_ptc_lvr_catalog_datasheet.pdf.pdf, Alternate KiCAD Library -LVR200 PTC resettable polyswitch -0 -2 -2 -PCM_Fuse_AKL -Fuse_Littelfuse-NANO2-451_453 -Littelfuse NANO2 https://www.littelfuse.com/~/media/electronics/datasheets/fuses/littelfuse_fuse_451_453_datasheet.pdf, Alternate KiCAD Library -Fuse Nano2 -0 -2 -2 -PCM_Fuse_AKL -Fuse_Littelfuse_372_D8.50mm -Fuse, Littelfuse, 372, 8.5x8mm, https://www.littelfuse.com/~/media/electronics/datasheets/fuses/littelfuse_fuse_372_datasheet.pdf.pdf, Alternate KiCAD Library -fuse tht radial -0 -2 -2 -PCM_Fuse_AKL -Fuse_Littelfuse_395Series -Fuse, TE5, Littelfuse/Wickmann, No. 460, No560, Alternate KiCAD Library -Fuse TE5 Littelfuse/Wickmann No. 460 No560 -0 -2 -2 -PCM_Fuse_AKL -Fuse_Littelfuse_TSM600 -Dual Telecom SMT PolyFuse, Alternate KiCAD Library -Fuse dual -0 -4 -4 -PCM_Fuse_AKL -Fuse_Schurter_UMT250 -Surface Mount Fuse, 3 x 10.1 mm, Time-Lag T, 250 VAC, 125 VDC (https://us.schurter.com/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_UMT_250.pdf), Alternate KiCAD Library -Schurter fuse smd -0 -2 -2 -PCM_Fuse_AKL -Fuse_SunFuse-6HP -SunFuse Ceramic Slow Blow Fuse 6H_6HP.PDF, Alternate KiCAD Library -UL/CSA 6x32mm Ceramic Slow Blow Fuse -0 -2 -2 -PCM_Fuse_AKL -Fuseholder_Blade_ATO_Littelfuse_Pudenz_2_Pin -Fuseholder ATO Blade littelfuse Pudenz 2 Pin, Alternate KiCAD Library -Fuseholder ATO Blade littelfuse Pudenz 2 Pin -0 -2 -2 -PCM_Fuse_AKL -Fuseholder_Blade_Mini_Keystone_3568 -fuse holder, car blade fuse mini, http://www.keyelco.com/product-pdf.cfm?p=306, Alternate KiCAD Library -car blade fuse mini -0 -4 -2 -PCM_Fuse_AKL -Fuseholder_Cylinder-5x20mm_Bulgin_FX0456_Vertical_Closed -Fuseholder, 5x20, closed, vertical, Bulgin, FX0456, https://www.bulgin.com/products/pub/media/bulgin/data/Fuseholders.pdf, Alternate KiCAD Library -Fuseholder 5x20 closed vertical Bulgin FX0456 Sicherungshalter -0 -2 -2 -PCM_Fuse_AKL -Fuseholder_Cylinder-5x20mm_Bulgin_FX0457_Horizontal_Closed -Fuseholder, 5x20, closed, horizontal, Bulgin, FX0457, Sicherungshalter, Alternate KiCAD Library -Fuseholder 5x20 closed horizontal Bulgin FX0457 Sicherungshalter -0 -2 -2 -PCM_Fuse_AKL -Fuseholder_Cylinder-5x20mm_EATON_H15-V-1_Vertical_Closed -PCB fuse holders for 5 mm x 20 mm fuses; 250V; 10A (http://www.cooperindustries.com/content/dam/public/bussmann/Electronics/Resources/product-datasheets/bus-elx-ds-4426-h15.pdf), Alternate KiCAD Library -fuse holder vertical 5x20mm -0 -2 -2 -PCM_Fuse_AKL -Fuseholder_Cylinder-5x20mm_EATON_HBV_Vertical_Closed -5 mm x 20 mm fuse holders; Vertical w/ Stability Pins; 250V; 6.3-16A (http://www.cooperindustries.com/content/dam/public/bussmann/Electronics/Resources/product-datasheets/Bus_Elx_DS_2118_HB_PCB_Series.pdf), Alternate KiCAD Library -fuse holder vertical 5x20mm -0 -2 -2 -PCM_Fuse_AKL -Fuseholder_Cylinder-5x20mm_EATON_HBW_Vertical_Closed -5 mm x 20 mm fuse holders; Vertical w/o Stability Pins; 250V; 6.3-16A (http://www.cooperindustries.com/content/dam/public/bussmann/Electronics/Resources/product-datasheets/Bus_Elx_DS_2118_HB_PCB_Series.pdf), Alternate KiCAD Library -fuse holder vertical 5x20mm -0 -2 -2 -PCM_Fuse_AKL -Fuseholder_Cylinder-5x20mm_Schurter_0031_8201_Horizontal_Open -Fuseholder horizontal open, 5x20mm, 500V, 16A, Schurter 0031.8201, https://us.schurter.com/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_OGN.pdf, Alternate KiCAD Library -Fuseholder horizontal open 5x20 Schurter 0031.8201 -0 -2 -2 -PCM_Fuse_AKL -Fuseholder_Cylinder-5x20mm_Schurter_FAB_0031-355x_Horizontal_Closed -Fuseholder 5x20mm horizontal Shurter model FAB, Suitable for order numbers 0031.3551 and 0031.3558 (https://www.schurter.com/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_FAB.pdf), Alternate KiCAD Library -Fuseholder 5x20mm closed horizontal -0 -2 -2 -PCM_Fuse_AKL -Fuseholder_Cylinder-5x20mm_Schurter_FPG4_Vertical_Closed -Shock-Safe Fuseholder, 5 x 20 mm, Slotted Cap/Fingergrip, vertical, IEC 60335-1; 250VAC/10A VDE; 500V/16A UL/CSA (https://us.schurter.com/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_FPG4.pdf), Alternate KiCAD Library -fuse holder vertical 5x20mm -0 -4 -2 -PCM_Fuse_AKL -Fuseholder_Cylinder-5x20mm_Schurter_FUP_0031.2510_Horizontal_Closed -Shock-Safe closed Fuseholder, Schurter FUP Series, 5.0 x 20mm, Slotted Cap, horizontal, 500 VAC 4W/16A (VDE), 600V 30A (UL/CSA), order numbers: 0031.2510 (0031.2500 + 0031.2323), http://www.schurter.ch/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_FUP.pdf, Alternate KiCAD Library -Fuseholder 5x20mm horizontal closed -0 -3 -2 -PCM_Fuse_AKL -Fuseholder_Cylinder-5x20mm_Schurter_OGN-SMD_Horizontal_Open -Fuseholder horizontal open, 5x20mm, 500V, 16A (https://us.schurter.com/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_OGN-SMD.pdf), Alternate KiCAD Library -Fuseholder horizontal open 5x20 Schurter 0031.8221 -0 -2 -2 -PCM_Fuse_AKL -Fuseholder_Cylinder-5x20mm_Stelvio-Kontek_PTF78_Horizontal_Open -https://www.tme.eu/en/Document/3b48dbe2b9714a62652c97b08fcd464b/PTF78.pdf, Alternate KiCAD Library -Fuseholder horizontal open 5x20 Stelvio-Kontek PTF/78 -0 -2 -2 -PCM_Fuse_AKL -Fuseholder_Cylinder-6.3x32mm_Schurter_0031-8002_Horizontal_Open -Fuseholder, horizontal, open, 6.3x32, Schurter, 0031.8002, https://www.schurter.com/en/datasheet/typ_OG__Holder__6.3x32.pdf, Alternate KiCAD Library -Fuseholder horizontal open 6.3x32 Schurter 0031.8002 -0 -2 -2 -PCM_Fuse_AKL -Fuseholder_Cylinder-6.3x32mm_Schurter_FUP_0031.2520_Horizontal_Closed -Shock-Safe closed Fuseholder, Schurter FUP Series, 6.3 x 32 mm, Slotted Cap, horizontal, 500 VAC 4W/16A (VDE), 600V 30A (UL/CSA), order numbers: 0031.2520 (0031.2500 + 0031.2321), http://www.schurter.ch/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_FUP.pdf, Alternate KiCAD Library -Fuseholder 6.3x32mm horizontal closed -0 -3 -2 -PCM_Fuse_AKL -Fuseholder_Littelfuse_Nano2_157x -Littelfuse NANO2 holder, https://www.littelfuse.com/~/media/electronics/datasheets/fuses/littelfuse_fuse_157_datasheet.pdf.pdf, Alternate KiCAD Library -SMD Nano2 holder -0 -2 -2 -PCM_Fuse_AKL -Fuseholder_OMH-125_Schurter_6x12mm -SMD Fuse holder for OMF-125, OMF-63, OMT-125, Alternate KiCAD Library -fuse holder fuseholder smd -0 -2 -2 -PCM_Fuse_AKL -Fuseholder_TR5_Littelfuse_No560_No460 -Fuse, Fuseholder, TR5, Littelfuse/Wickmann, No. 460, No560, https://www.littelfuse.com/~/media/electronics/datasheets/fuse_holders/littelfuse_fuse_holder_559_560_datasheet.pdf.pdf, Alternate KiCAD Library -Fuse Fuseholder TR5 Littelfuse/Wickmann No. 460 No560 -0 -2 -2 -PCM_Fuse_AKL_Double -Fuse_BelFuse_0ZRE0005FF_L8.3mm_W3.8mm -Fuse 0ZRE0005FF, BelFuse, Radial Leaded PTC, https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library -0ZRE BelFuse radial PTC -0 -2 -2 -PCM_Fuse_AKL_Double -Fuse_BelFuse_0ZRE0008FF_L8.3mm_W3.8mm -Fuse 0ZRE0008FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library -0ZRE BelFuse radial PTC -0 -2 -2 -PCM_Fuse_AKL_Double -Fuse_BelFuse_0ZRE0012FF_L8.3mm_W3.8mm -Fuse 0ZRE0012FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library -0ZRE BelFuse radial PTC -0 -2 -2 -PCM_Fuse_AKL_Double -Fuse_BelFuse_0ZRE0016FF_L9.9mm_W3.8mm -Fuse 0ZRE0016FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library -0ZRE BelFuse radial PTC -0 -2 -2 -PCM_Fuse_AKL_Double -Fuse_BelFuse_0ZRE0025FF_L9.6mm_W3.8mm -Fuse 0ZRE0025FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library -0ZRE BelFuse radial PTC -0 -2 -2 -PCM_Fuse_AKL_Double -Fuse_BelFuse_0ZRE0033FF_L11.4mm_W3.8mm -Fuse 0ZRE0033FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library -0ZRE BelFuse radial PTC -0 -2 -2 -PCM_Fuse_AKL_Double -Fuse_BelFuse_0ZRE0040FF_L11.5mm_W3.8mm -Fuse 0ZRE0040FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library -0ZRE BelFuse radial PTC -0 -2 -2 -PCM_Fuse_AKL_Double -Fuse_BelFuse_0ZRE0055FF_L14.0mm_W4.1mm -Fuse 0ZRE0055FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library -0ZRE BelFuse radial PTC -0 -2 -2 -PCM_Fuse_AKL_Double -Fuse_BelFuse_0ZRE0075FF_L11.5mm_W4.8mm -Fuse 0ZRE0075FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library -0ZRE BelFuse radial PTC -0 -2 -2 -PCM_Fuse_AKL_Double -Fuse_BelFuse_0ZRE0100FF_L18.7mm_W5.1mm -Fuse 0ZRE0100FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library -0ZRE BelFuse radial PTC -0 -2 -2 -PCM_Fuse_AKL_Double -Fuse_BelFuse_0ZRE0125FF_L21.2mm_W5.3mm -Fuse 0ZRE0125FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library -0ZRE BelFuse radial PTC -0 -2 -2 -PCM_Fuse_AKL_Double -Fuse_BelFuse_0ZRE0150FF_L23.4mm_W5.3mm -Fuse 0ZRE0150FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library -0ZRE BelFuse radial PTC -0 -2 -2 -PCM_Fuse_AKL_Double -Fuse_BelFuse_0ZRE0200FF_L24.9mm_W6.1mm -Fuse 0ZRE0200FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library -0ZRE BelFuse radial PTC -0 -2 -2 -PCM_Fuse_AKL_Double -Fuse_Blade_Mini_directSolder -car blade fuse mini, direct solder, Alternate KiCAD Library -car blade fuse mini -0 -2 -2 -PCM_Fuse_AKL_Double -Fuse_Bourns_MF-RG300 -PTC Resettable Fuse, Ihold = 3.0A, Itrip=5.1A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_AKL_Double -Fuse_Bourns_MF-RG400 -PTC Resettable Fuse, Ihold = 4.0A, Itrip=6.8A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_AKL_Double -Fuse_Bourns_MF-RG500 -PTC Resettable Fuse, Ihold = 5.0A, Itrip=8.5A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_AKL_Double -Fuse_Bourns_MF-RG600 -PTC Resettable Fuse, Ihold = 6.0A, Itrip=10.2A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_AKL_Double -Fuse_Bourns_MF-RG650 -PTC Resettable Fuse, Ihold = 6.5A, Itrip=11.1A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_AKL_Double -Fuse_Bourns_MF-RG700 -PTC Resettable Fuse, Ihold = 7.0A, Itrip=11.9A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_AKL_Double -Fuse_Bourns_MF-RG800 -PTC Resettable Fuse, Ihold = 8.0A, Itrip=13.6A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_AKL_Double -Fuse_Bourns_MF-RG900 -PTC Resettable Fuse, Ihold = 9.0A, Itrip=15.3A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_AKL_Double -Fuse_Bourns_MF-RG1000 -PTC Resettable Fuse, Ihold = 10.0A, Itrip=17.0A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_AKL_Double -Fuse_Bourns_MF-RG1100 -PTC Resettable Fuse, Ihold = 11.0A, Itrip=18.7A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_AKL_Double -Fuse_Bourns_MF-RHT050 -PTC Resettable Fuse, Ihold = 0.5A, Itrip=0.92A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_AKL_Double -Fuse_Bourns_MF-RHT070 -PTC Resettable Fuse, Ihold = 0.7A, Itrip=1.4A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_AKL_Double -Fuse_Bourns_MF-RHT100 -PTC Resettable Fuse, Ihold = 1.0A, Itrip=1.8A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_AKL_Double -Fuse_Bourns_MF-RHT200 -PTC Resettable Fuse, Ihold = 2.0A, Itrip=3.8A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_AKL_Double -Fuse_Bourns_MF-RHT300 -PTC Resettable Fuse, Ihold = 3.0A, Itrip=6.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_AKL_Double -Fuse_Bourns_MF-RHT400 -PTC Resettable Fuse, Ihold = 4.0A, Itrip=7.5A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_AKL_Double -Fuse_Bourns_MF-RHT500 -PTC Resettable Fuse, Ihold = 5.0A, Itrip=9.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_AKL_Double -Fuse_Bourns_MF-RHT550 -PTC Resettable Fuse, Ihold = 5.5A, Itrip=10.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_AKL_Double -Fuse_Bourns_MF-RHT600 -PTC Resettable Fuse, Ihold = 6.0A, Itrip=10.8A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_AKL_Double -Fuse_Bourns_MF-RHT650 -PTC Resettable Fuse, Ihold = 6.5A, Itrip=12.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_AKL_Double -Fuse_Bourns_MF-RHT700 -PTC Resettable Fuse, Ihold = 7.0A, Itrip=13.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_AKL_Double -Fuse_Bourns_MF-RHT750 -PTC Resettable Fuse, Ihold = 7.5A, Itrip=13.1A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_AKL_Double -Fuse_Bourns_MF-RHT800 -PTC Resettable Fuse, Ihold = 8.0A, Itrip=15.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_AKL_Double -Fuse_Bourns_MF-RHT900 -PTC Resettable Fuse, Ihold = 9.0A, Itrip=16.5A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_AKL_Double -Fuse_Bourns_MF-RHT1000 -PTC Resettable Fuse, Ihold = 10.0A, Itrip=18.5A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_AKL_Double -Fuse_Bourns_MF-RHT1100 -PTC Resettable Fuse, Ihold = 11.0A, Itrip=20.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_AKL_Double -Fuse_Bourns_MF-RHT1300 -PTC Resettable Fuse, Ihold = 13.0A, Itrip=24.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_AKL_Double -Fuse_Littelfuse-LVR100 -Littelfuse, resettable fuse, PTC, polyswitch LVR100, Ih 1A http://www.littelfuse.com/~/media/electronics/datasheets/resettable_ptcs/littelfuse_ptc_lvr_catalog_datasheet.pdf.pdf, Alternate KiCAD Library -LVR100 PTC resettable polyswitch -0 -2 -2 -PCM_Fuse_AKL_Double -Fuse_Littelfuse-LVR125 -Littelfuse, resettable fuse, PTC, polyswitch LVR125, Ih 1.25A, http://www.littelfuse.com/~/media/electronics/datasheets/resettable_ptcs/littelfuse_ptc_lvr_catalog_datasheet.pdf.pdf, Alternate KiCAD Library -LVR125 PTC resettable polyswitch -0 -2 -2 -PCM_Fuse_AKL_Double -Fuse_Littelfuse-LVR200 -Littelfuse, resettable fuse, PTC, polyswitch LVR200, Ih 2A, http://www.littelfuse.com/~/media/electronics/datasheets/resettable_ptcs/littelfuse_ptc_lvr_catalog_datasheet.pdf.pdf, Alternate KiCAD Library -LVR200 PTC resettable polyswitch -0 -2 -2 -PCM_Fuse_AKL_Double -Fuse_Littelfuse_372_D8.50mm -Fuse, Littelfuse, 372, 8.5x8mm, https://www.littelfuse.com/~/media/electronics/datasheets/fuses/littelfuse_fuse_372_datasheet.pdf.pdf, Alternate KiCAD Library -fuse tht radial -0 -2 -2 -PCM_Fuse_AKL_Double -Fuse_Littelfuse_395Series -Fuse, TE5, Littelfuse/Wickmann, No. 460, No560, Alternate KiCAD Library -Fuse TE5 Littelfuse/Wickmann No. 460 No560 -0 -2 -2 -PCM_Fuse_AKL_Double -Fuse_SunFuse-6HP -SunFuse Ceramic Slow Blow Fuse 6H_6HP.PDF, Alternate KiCAD Library -UL/CSA 6x32mm Ceramic Slow Blow Fuse -0 -2 -2 -PCM_Fuse_AKL_Double -Fuseholder_Blade_Mini_Keystone_3568 -fuse holder, car blade fuse mini, http://www.keyelco.com/product-pdf.cfm?p=306, Alternate KiCAD Library -car blade fuse mini -0 -4 -2 -PCM_Fuse_AKL_Double -Fuseholder_Cylinder-5x20mm_Bulgin_FX0456_Vertical_Closed -Fuseholder, 5x20, closed, vertical, Bulgin, FX0456, https://www.bulgin.com/products/pub/media/bulgin/data/Fuseholders.pdf, Alternate KiCAD Library -Fuseholder 5x20 closed vertical Bulgin FX0456 Sicherungshalter -0 -2 -2 -PCM_Fuse_AKL_Double -Fuseholder_Cylinder-5x20mm_Bulgin_FX0457_Horizontal_Closed -Fuseholder, 5x20, closed, horizontal, Bulgin, FX0457, Sicherungshalter, Alternate KiCAD Library -Fuseholder 5x20 closed horizontal Bulgin FX0457 Sicherungshalter -0 -2 -2 -PCM_Fuse_AKL_Double -Fuseholder_Cylinder-5x20mm_EATON_H15-V-1_Vertical_Closed -PCB fuse holders for 5 mm x 20 mm fuses; 250V; 10A (http://www.cooperindustries.com/content/dam/public/bussmann/Electronics/Resources/product-datasheets/bus-elx-ds-4426-h15.pdf), Alternate KiCAD Library -fuse holder vertical 5x20mm -0 -2 -2 -PCM_Fuse_AKL_Double -Fuseholder_Cylinder-5x20mm_EATON_HBV_Vertical_Closed -5 mm x 20 mm fuse holders; Vertical w/ Stability Pins; 250V; 6.3-16A (http://www.cooperindustries.com/content/dam/public/bussmann/Electronics/Resources/product-datasheets/Bus_Elx_DS_2118_HB_PCB_Series.pdf), Alternate KiCAD Library -fuse holder vertical 5x20mm -0 -2 -2 -PCM_Fuse_AKL_Double -Fuseholder_Cylinder-5x20mm_EATON_HBW_Vertical_Closed -5 mm x 20 mm fuse holders; Vertical w/o Stability Pins; 250V; 6.3-16A (http://www.cooperindustries.com/content/dam/public/bussmann/Electronics/Resources/product-datasheets/Bus_Elx_DS_2118_HB_PCB_Series.pdf), Alternate KiCAD Library -fuse holder vertical 5x20mm -0 -2 -2 -PCM_Fuse_AKL_Double -Fuseholder_Cylinder-5x20mm_Schurter_0031_8201_Horizontal_Open -Fuseholder horizontal open, 5x20mm, 500V, 16A, Schurter 0031.8201, https://us.schurter.com/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_OGN.pdf, Alternate KiCAD Library -Fuseholder horizontal open 5x20 Schurter 0031.8201 -0 -2 -2 -PCM_Fuse_AKL_Double -Fuseholder_Cylinder-5x20mm_Schurter_FAB_0031-355x_Horizontal_Closed -Fuseholder 5x20mm horizontal Shurter model FAB, Suitable for order numbers 0031.3551 and 0031.3558 (https://www.schurter.com/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_FAB.pdf), Alternate KiCAD Library -Fuseholder 5x20mm closed horizontal -0 -2 -2 -PCM_Fuse_AKL_Double -Fuseholder_Cylinder-5x20mm_Schurter_FPG4_Vertical_Closed -Shock-Safe Fuseholder, 5 x 20 mm, Slotted Cap/Fingergrip, vertical, IEC 60335-1; 250VAC/10A VDE; 500V/16A UL/CSA (https://us.schurter.com/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_FPG4.pdf), Alternate KiCAD Library -fuse holder vertical 5x20mm -0 -4 -2 -PCM_Fuse_AKL_Double -Fuseholder_Cylinder-5x20mm_Schurter_FUP_0031.2510_Horizontal_Closed -Shock-Safe closed Fuseholder, Schurter FUP Series, 5.0 x 20mm, Slotted Cap, horizontal, 500 VAC 4W/16A (VDE), 600V 30A (UL/CSA), order numbers: 0031.2510 (0031.2500 + 0031.2323), http://www.schurter.ch/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_FUP.pdf, Alternate KiCAD Library -Fuseholder 5x20mm horizontal closed -0 -3 -2 -PCM_Fuse_AKL_Double -Fuseholder_Cylinder-5x20mm_Stelvio-Kontek_PTF78_Horizontal_Open -https://www.tme.eu/en/Document/3b48dbe2b9714a62652c97b08fcd464b/PTF78.pdf, Alternate KiCAD Library -Fuseholder horizontal open 5x20 Stelvio-Kontek PTF/78 -0 -2 -2 -PCM_Fuse_AKL_Double -Fuseholder_Cylinder-6.3x32mm_Schurter_0031-8002_Horizontal_Open -Fuseholder, horizontal, open, 6.3x32, Schurter, 0031.8002, https://www.schurter.com/en/datasheet/typ_OG__Holder__6.3x32.pdf, Alternate KiCAD Library -Fuseholder horizontal open 6.3x32 Schurter 0031.8002 -0 -2 -2 -PCM_Fuse_AKL_Double -Fuseholder_Cylinder-6.3x32mm_Schurter_FUP_0031.2520_Horizontal_Closed -Shock-Safe closed Fuseholder, Schurter FUP Series, 6.3 x 32 mm, Slotted Cap, horizontal, 500 VAC 4W/16A (VDE), 600V 30A (UL/CSA), order numbers: 0031.2520 (0031.2500 + 0031.2321), http://www.schurter.ch/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_FUP.pdf, Alternate KiCAD Library -Fuseholder 6.3x32mm horizontal closed -0 -3 -2 -PCM_Fuse_AKL_Double -Fuseholder_TR5_Littelfuse_No560_No460 -Fuse, Fuseholder, TR5, Littelfuse/Wickmann, No. 460, No560, https://www.littelfuse.com/~/media/electronics/datasheets/fuse_holders/littelfuse_fuse_holder_559_560_datasheet.pdf.pdf, Alternate KiCAD Library -Fuse Fuseholder TR5 Littelfuse/Wickmann No. 460 No560 -0 -2 -2 -PCM_Fuse_Handsoldering_AKL -Fuse_0201_0603Metric -Fuse SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), Alternate KiCAD Library -fuse -0 -4 -2 -PCM_Fuse_Handsoldering_AKL -Fuse_0402_1005Metric -Fuse SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library -fuse -0 -2 -2 -PCM_Fuse_Handsoldering_AKL -Fuse_0603_1608Metric -Fuse SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library -fuse -0 -2 -2 -PCM_Fuse_Handsoldering_AKL -Fuse_0603_1608Metric_Castellated -Fuse SMD 0603 (1608 Metric), castellated end terminal, IPC_7351. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library -fuse castellated -0 -2 -2 -PCM_Fuse_Handsoldering_AKL -Fuse_0603_1608Metric_Pad1.05x0.95mm_BigPads -Fuse SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library -fuse big pads -0 -2 -2 -PCM_Fuse_Handsoldering_AKL -Fuse_0805_2012Metric -Fuse SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), Alternate KiCAD Library -fuse -0 -2 -2 -PCM_Fuse_Handsoldering_AKL -Fuse_0805_2012Metric_Castellated -Fuse SMD 0805 (2012 Metric), castellated end terminal, IPC_7351. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), Alternate KiCAD Library -fuse castellated -0 -2 -2 -PCM_Fuse_Handsoldering_AKL -Fuse_0805_2012Metric_Pad1.15x1.40mm_BigPads -Fuse SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), Alternate KiCAD Library -fuse big pads -0 -2 -2 -PCM_Fuse_Handsoldering_AKL -Fuse_01005_0402Metric -Fuse SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), Alternate KiCAD Library -fuse -0 -4 -2 -PCM_Fuse_Handsoldering_AKL -Fuse_1206_3216Metric -Fuse SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library -fuse -0 -2 -2 -PCM_Fuse_Handsoldering_AKL -Fuse_1206_3216Metric_Castellated -Fuse SMD 1206 (3216 Metric), castellated end terminal, IPC_7351. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library -fuse castellated -0 -2 -2 -PCM_Fuse_Handsoldering_AKL -Fuse_1206_3216Metric_Pad1.42x1.75mm_BigPads -Fuse SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library -fuse big pads -0 -2 -2 -PCM_Fuse_Handsoldering_AKL -Fuse_1210_3225Metric -Fuse SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library -fuse -0 -2 -2 -PCM_Fuse_Handsoldering_AKL -Fuse_1210_3225Metric_Castellated -Fuse SMD 1210 (3225 Metric), castellated end terminal, IPC_7351. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library -fuse castellated -0 -2 -2 -PCM_Fuse_Handsoldering_AKL -Fuse_1210_3225Metric_Pad1.42x2.65mm_BigPads -Fuse SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library -fuse big pads -0 -2 -2 -PCM_Fuse_Handsoldering_AKL -Fuse_1806_4516Metric -Fuse SMD 1806 (4516 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.modelithics.com/models/Vendor/MuRata/BLM41P.pdf), Alternate KiCAD Library -fuse -0 -2 -2 -PCM_Fuse_Handsoldering_AKL -Fuse_1806_4516Metric_Castellated -Fuse SMD 1806 (4516 Metric), castellated end terminal, IPC_7351. (Body size source: https://www.modelithics.com/models/Vendor/MuRata/BLM41P.pdf), Alternate KiCAD Library -fuse castellated -0 -2 -2 -PCM_Fuse_Handsoldering_AKL -Fuse_1806_4516Metric_Pad1.57x1.80mm_BigPads -Fuse SMD 1806 (4516 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.modelithics.com/models/Vendor/MuRata/BLM41P.pdf), Alternate KiCAD Library -fuse big pads -0 -2 -2 -PCM_Fuse_Handsoldering_AKL -Fuse_1812_4532Metric -Fuse SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), Alternate KiCAD Library -resistor -0 -2 -2 -PCM_Fuse_Handsoldering_AKL -Fuse_1812_4532Metric_Castellated -Fuse SMD 1812 (4532 Metric), castellated end terminal, IPC_7351. (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), Alternate KiCAD Library -fuse castellated -0 -2 -2 -PCM_Fuse_Handsoldering_AKL -Fuse_1812_4532Metric_Pad1.30x3.40mm_BigPads -Fuse SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), Alternate KiCAD Library -fuse big pads -0 -2 -2 -PCM_Fuse_Handsoldering_AKL -Fuse_2010_5025Metric -Fuse SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library -fuse -0 -2 -2 -PCM_Fuse_Handsoldering_AKL -Fuse_2010_5025Metric_Castellated -Fuse SMD 2010 (5025 Metric), castellated end terminal, IPC_7351. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library -fuse castellated -0 -2 -2 -PCM_Fuse_Handsoldering_AKL -Fuse_2010_5025Metric_Pad1.52x2.65mm_BigPads -Fuse SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library -fuse big pads -0 -2 -2 -PCM_Fuse_Handsoldering_AKL -Fuse_2512_6332Metric -Fuse SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library -fuse -0 -2 -2 -PCM_Fuse_Handsoldering_AKL -Fuse_2512_6332Metric_Castellated -Fuse SMD 2512 (6332 Metric), castellated end terminal, IPC_7351. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library -fuse castellated -0 -2 -2 -PCM_Fuse_Handsoldering_AKL -Fuse_2512_6332Metric_Pad1.52x3.35mm_BigPads -Fuse SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library -fuse big pads -0 -2 -2 -PCM_Fuse_Handsoldering_AKL -Fuse_2816_7142Metric -Fuse SMD 2816 (7142 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), Alternate KiCAD Library -fuse -0 -2 -2 -PCM_Fuse_Handsoldering_AKL -Fuse_2816_7142Metric_Castellated -Fuse SMD 2816 (7142 Metric), castellated end terminal, IPC_7351. (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), Alternate KiCAD Library -fuse castellated -0 -2 -2 -PCM_Fuse_Handsoldering_AKL -Fuse_2816_7142Metric_Pad3.20x4.45mm_BigPads -Fuse SMD 2816 (7142 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), Alternate KiCAD Library -fuse big pads -0 -2 -2 -PCM_Fuse_Handsoldering_AKL -Fuse_2920_7451Metric -Fuse SMD 2920 (7451 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://www.megastar.com/products/fusetronic/polyswitch/PDF/smd2920.pdf), Alternate KiCAD Library -fuse -0 -2 -2 -PCM_Fuse_Handsoldering_AKL -Fuse_2920_7451Metric_Castellated -Fuse SMD 2920 (7451 Metric), castellated end terminal, IPC_7351. (Body size from: http://www.megastar.com/products/fusetronic/polyswitch/PDF/smd2920.pdf), Alternate KiCAD Library -fuse castellated -0 -2 -2 -PCM_Fuse_Handsoldering_AKL -Fuse_2920_7451Metric_Pad2.10x5.45mm_BigPads -Fuse SMD 2920 (7451 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: http://www.megastar.com/products/fusetronic/polyswitch/PDF/smd2920.pdf), Alternate KiCAD Library -fuse big pads -0 -2 -2 -PCM_Fuse_Handsoldering_AKL -Fuse_Bourns_MF-SM_7.98x5.44mm -https://www.bourns.com/docs/Product-Datasheets/mfsm.pdf, Alternate KiCAD Library -bourns ptc resettable fuse polyfuse MF-SM MF-SMHT -0 -2 -2 -PCM_Fuse_Handsoldering_AKL -Fuse_Bourns_MF-SM_9.5x6.71mm -https://www.bourns.com/docs/Product-Datasheets/mfsm.pdf, Alternate KiCAD Library -bourns ptc resettable fuse polyfuse MF-SM MF-SMHT -0 -2 -2 -PCM_Fuse_Handsoldering_AKL -Fuse_Littelfuse-NANO2-451_453 -Littelfuse NANO2 https://www.littelfuse.com/~/media/electronics/datasheets/fuses/littelfuse_fuse_451_453_datasheet.pdf, Alternate KiCAD Library -Fuse Nano2 -0 -2 -2 -PCM_Fuse_Handsoldering_AKL -Fuse_Littlefuse_TSM600 -Telecom SMT PolyFuse, Alternate KiCAD Library -fuse TSM600 -0 -4 -4 -PCM_Fuse_Handsoldering_AKL -Fuse_Schurter_UMT250 -Surface Mount Fuse, 3 x 10.1 mm, Time-Lag T, 250 VAC, 125 VDC (https://us.schurter.com/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_UMT_250.pdf), Alternate KiCAD Library -Schurter fuse smd -0 -2 -2 -PCM_Fuse_Handsoldering_AKL -Fuseholder_Cylinder-5x20mm_Schurter_OGN-SMD_Horizontal_Open -Fuseholder horizontal open, 5x20mm, 500V, 16A (https://us.schurter.com/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_OGN-SMD.pdf), Alternate KiCAD Library -Fuseholder horizontal open 5x20 Schurter 0031.8221 -0 -2 -2 -PCM_Fuse_Handsoldering_AKL -Fuseholder_Littelfuse_Nano2_157x -Littelfuse NANO2 holder, https://www.littelfuse.com/~/media/electronics/datasheets/fuses/littelfuse_fuse_157_datasheet.pdf.pdf, Alternate KiCAD Library -SMD Nano2 holder -0 -2 -2 -PCM_Fuse_Handsoldering_AKL -Fuseholder_OMH-125_Schurter_6x12mm -SMD Fuse holder for OMF-125, OMF-63, OMT-125, Alternate KiCAD Library -fuse holder fuseholder smd -0 -2 -2 -PCM_Fuse_US_AKL -Fuse_0201_0603Metric -Fuse SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), Alternate KiCAD Library -fuse -0 -4 -2 -PCM_Fuse_US_AKL -Fuse_0402_1005Metric -Fuse SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library -fuse -0 -2 -2 -PCM_Fuse_US_AKL -Fuse_0603_1608Metric -Fuse SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library -fuse -0 -2 -2 -PCM_Fuse_US_AKL -Fuse_0603_1608Metric_Castellated -Fuse SMD 0603 (1608 Metric), castellated end terminal, IPC_7351. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library -fuse castellated -0 -2 -2 -PCM_Fuse_US_AKL -Fuse_0603_1608Metric_Pad1.05x0.95mm_BigPads -Fuse SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library -fuse big pads -0 -2 -2 -PCM_Fuse_US_AKL -Fuse_0805_2012Metric -Fuse SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), Alternate KiCAD Library -fuse -0 -2 -2 -PCM_Fuse_US_AKL -Fuse_0805_2012Metric_Castellated -Fuse SMD 0805 (2012 Metric), castellated end terminal, IPC_7351. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), Alternate KiCAD Library -fuse castellated -0 -2 -2 -PCM_Fuse_US_AKL -Fuse_0805_2012Metric_Pad1.15x1.40mm_BigPads -Fuse SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), Alternate KiCAD Library -fuse big pads -0 -2 -2 -PCM_Fuse_US_AKL -Fuse_01005_0402Metric -Fuse SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), Alternate KiCAD Library -fuse -0 -4 -2 -PCM_Fuse_US_AKL -Fuse_1206_3216Metric -Fuse SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library -fuse -0 -2 -2 -PCM_Fuse_US_AKL -Fuse_1206_3216Metric_Castellated -Fuse SMD 1206 (3216 Metric), castellated end terminal, IPC_7351. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library -fuse castellated -0 -2 -2 -PCM_Fuse_US_AKL -Fuse_1206_3216Metric_Pad1.42x1.75mm_BigPads -Fuse SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library -fuse handsolder -0 -2 -2 -PCM_Fuse_US_AKL -Fuse_1210_3225Metric -Fuse SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library -fuse -0 -2 -2 -PCM_Fuse_US_AKL -Fuse_1210_3225Metric_Castellated -Fuse SMD 1210 (3225 Metric), castellated end terminal, IPC_7351. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library -fuse castellated -0 -2 -2 -PCM_Fuse_US_AKL -Fuse_1210_3225Metric_Pad1.42x2.65mm_BigPads -Fuse SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library -fuse big pads -0 -2 -2 -PCM_Fuse_US_AKL -Fuse_1806_4516Metric -Fuse SMD 1806 (4516 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.modelithics.com/models/Vendor/MuRata/BLM41P.pdf), Alternate KiCAD Library -fuse -0 -2 -2 -PCM_Fuse_US_AKL -Fuse_1806_4516Metric_Castellated -Fuse SMD 1806 (4516 Metric), castellated end terminal, IPC_7351. (Body size source: https://www.modelithics.com/models/Vendor/MuRata/BLM41P.pdf), Alternate KiCAD Library -fuse castellated -0 -2 -2 -PCM_Fuse_US_AKL -Fuse_1806_4516Metric_Pad1.57x1.80mm_BigPads -Fuse SMD 1806 (4516 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.modelithics.com/models/Vendor/MuRata/BLM41P.pdf), Alternate KiCAD Library -fuse big pads -0 -2 -2 -PCM_Fuse_US_AKL -Fuse_1812_4532Metric -Fuse SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), Alternate KiCAD Library -fuse -0 -2 -2 -PCM_Fuse_US_AKL -Fuse_1812_4532Metric_Castellated -Fuse SMD 1812 (4532 Metric), castellated end terminal, IPC_7351. (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), Alternate KiCAD Library -fuse castellated -0 -2 -2 -PCM_Fuse_US_AKL -Fuse_1812_4532Metric_Pad1.30x3.40mm_BigPads -Fuse SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), Alternate KiCAD Library -fuse big pads -0 -2 -2 -PCM_Fuse_US_AKL -Fuse_2010_5025Metric -Fuse SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library -fuse -0 -2 -2 -PCM_Fuse_US_AKL -Fuse_2010_5025Metric_Castellated -Fuse SMD 2010 (5025 Metric), castellated end terminal, IPC_7351. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library -fuse castellated -0 -2 -2 -PCM_Fuse_US_AKL -Fuse_2010_5025Metric_Pad1.52x2.65mm_BigPads -Fuse SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library -fuse big pads -0 -2 -2 -PCM_Fuse_US_AKL -Fuse_2512_6332Metric -Fuse SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library -fuse -0 -2 -2 -PCM_Fuse_US_AKL -Fuse_2512_6332Metric_Castellated -Fuse SMD 2512 (6332 Metric), castellated end terminal, IPC_7351. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library -fuse castellated -0 -2 -2 -PCM_Fuse_US_AKL -Fuse_2512_6332Metric_Pad1.52x3.35mm_BigPads -Fuse SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library -fuse big pads -0 -2 -2 -PCM_Fuse_US_AKL -Fuse_2816_7142Metric -Fuse SMD 2816 (7142 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), Alternate KiCAD Library -fuse -0 -2 -2 -PCM_Fuse_US_AKL -Fuse_2816_7142Metric_Castellated -Fuse SMD 2816 (7142 Metric), castellated end terminal, IPC_7351. (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), Alternate KiCAD Library -fuse castellated -0 -2 -2 -PCM_Fuse_US_AKL -Fuse_2816_7142Metric_Pad3.20x4.45mm_BigPads -Fuse SMD 2816 (7142 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), Alternate KiCAD Library -fuse big pads -0 -2 -2 -PCM_Fuse_US_AKL -Fuse_2920_7451Metric -Fuse SMD 2920 (7451 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://www.megastar.com/products/fusetronic/polyswitch/PDF/smd2920.pdf), Alternate KiCAD Library -fuse -0 -2 -2 -PCM_Fuse_US_AKL -Fuse_2920_7451Metric_Castellated -Fuse SMD 2920 (7451 Metric), castellated end terminal, IPC_7351. (Body size from: http://www.megastar.com/products/fusetronic/polyswitch/PDF/smd2920.pdf), Alternate KiCAD Library -fuse castellated -0 -2 -2 -PCM_Fuse_US_AKL -Fuse_2920_7451Metric_Pad2.10x5.45mm_HandSolder -Fuse SMD 2920 (7451 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: http://www.megastar.com/products/fusetronic/polyswitch/PDF/smd2920.pdf), Alternate KiCAD Library -resistor handsolder -0 -2 -2 -PCM_Fuse_US_AKL -Fuse_BelFuse_0ZRE0005FF_L8.3mm_W3.8mm -Fuse 0ZRE0005FF, BelFuse, Radial Leaded PTC, https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library -0ZRE BelFuse radial PTC -0 -2 -2 -PCM_Fuse_US_AKL -Fuse_BelFuse_0ZRE0008FF_L8.3mm_W3.8mm -Fuse 0ZRE0008FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library -0ZRE BelFuse radial PTC -0 -2 -2 -PCM_Fuse_US_AKL -Fuse_BelFuse_0ZRE0012FF_L8.3mm_W3.8mm -Fuse 0ZRE0012FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library -0ZRE BelFuse radial PTC -0 -2 -2 -PCM_Fuse_US_AKL -Fuse_BelFuse_0ZRE0016FF_L9.9mm_W3.8mm -Fuse 0ZRE0016FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library -0ZRE BelFuse radial PTC -0 -2 -2 -PCM_Fuse_US_AKL -Fuse_BelFuse_0ZRE0025FF_L9.6mm_W3.8mm -Fuse 0ZRE0025FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library -0ZRE BelFuse radial PTC -0 -2 -2 -PCM_Fuse_US_AKL -Fuse_BelFuse_0ZRE0033FF_L11.4mm_W3.8mm -Fuse 0ZRE0033FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library -0ZRE BelFuse radial PTC -0 -2 -2 -PCM_Fuse_US_AKL -Fuse_BelFuse_0ZRE0040FF_L11.5mm_W3.8mm -Fuse 0ZRE0040FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library -0ZRE BelFuse radial PTC -0 -2 -2 -PCM_Fuse_US_AKL -Fuse_BelFuse_0ZRE0055FF_L14.0mm_W4.1mm -Fuse 0ZRE0055FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library -0ZRE BelFuse radial PTC -0 -2 -2 -PCM_Fuse_US_AKL -Fuse_BelFuse_0ZRE0075FF_L11.5mm_W4.8mm -Fuse 0ZRE0075FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library -0ZRE BelFuse radial PTC -0 -2 -2 -PCM_Fuse_US_AKL -Fuse_BelFuse_0ZRE0100FF_L18.7mm_W5.1mm -Fuse 0ZRE0100FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library -0ZRE BelFuse radial PTC -0 -2 -2 -PCM_Fuse_US_AKL -Fuse_BelFuse_0ZRE0125FF_L21.2mm_W5.3mm -Fuse 0ZRE0125FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library -0ZRE BelFuse radial PTC -0 -2 -2 -PCM_Fuse_US_AKL -Fuse_BelFuse_0ZRE0150FF_L23.4mm_W5.3mm -Fuse 0ZRE0150FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library -0ZRE BelFuse radial PTC -0 -2 -2 -PCM_Fuse_US_AKL -Fuse_BelFuse_0ZRE0200FF_L24.9mm_W6.1mm -Fuse 0ZRE0200FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library -0ZRE BelFuse radial PTC -0 -2 -2 -PCM_Fuse_US_AKL -Fuse_Blade_ATO_directSolder -car blade fuse direct solder, Alternate KiCAD Library -car blade fuse -0 -2 -2 -PCM_Fuse_US_AKL -Fuse_Blade_Mini_directSolder -car blade fuse mini, direct solder, Alternate KiCAD Library -car blade fuse mini -0 -2 -2 -PCM_Fuse_US_AKL -Fuse_Bourns_MF-RG300 -PTC Resettable Fuse, Ihold = 3.0A, Itrip=5.1A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_US_AKL -Fuse_Bourns_MF-RG400 -PTC Resettable Fuse, Ihold = 4.0A, Itrip=6.8A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_US_AKL -Fuse_Bourns_MF-RG500 -PTC Resettable Fuse, Ihold = 5.0A, Itrip=8.5A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_US_AKL -Fuse_Bourns_MF-RG600 -PTC Resettable Fuse, Ihold = 6.0A, Itrip=10.2A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_US_AKL -Fuse_Bourns_MF-RG650 -PTC Resettable Fuse, Ihold = 6.5A, Itrip=11.1A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_US_AKL -Fuse_Bourns_MF-RG700 -PTC Resettable Fuse, Ihold = 7.0A, Itrip=11.9A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_US_AKL -Fuse_Bourns_MF-RG800 -PTC Resettable Fuse, Ihold = 8.0A, Itrip=13.6A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_US_AKL -Fuse_Bourns_MF-RG900 -PTC Resettable Fuse, Ihold = 9.0A, Itrip=15.3A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_US_AKL -Fuse_Bourns_MF-RG1000 -PTC Resettable Fuse, Ihold = 10.0A, Itrip=17.0A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_US_AKL -Fuse_Bourns_MF-RG1100 -PTC Resettable Fuse, Ihold = 11.0A, Itrip=18.7A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_US_AKL -Fuse_Bourns_MF-RHT050 -PTC Resettable Fuse, Ihold = 0.5A, Itrip=0.92A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_US_AKL -Fuse_Bourns_MF-RHT070 -PTC Resettable Fuse, Ihold = 0.7A, Itrip=1.4A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_US_AKL -Fuse_Bourns_MF-RHT100 -PTC Resettable Fuse, Ihold = 1.0A, Itrip=1.8A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_US_AKL -Fuse_Bourns_MF-RHT200 -PTC Resettable Fuse, Ihold = 2.0A, Itrip=3.8A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_US_AKL -Fuse_Bourns_MF-RHT300 -PTC Resettable Fuse, Ihold = 3.0A, Itrip=6.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_US_AKL -Fuse_Bourns_MF-RHT400 -PTC Resettable Fuse, Ihold = 4.0A, Itrip=7.5A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_US_AKL -Fuse_Bourns_MF-RHT500 -PTC Resettable Fuse, Ihold = 5.0A, Itrip=9.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_US_AKL -Fuse_Bourns_MF-RHT550 -PTC Resettable Fuse, Ihold = 5.5A, Itrip=10.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_US_AKL -Fuse_Bourns_MF-RHT600 -PTC Resettable Fuse, Ihold = 6.0A, Itrip=10.8A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_US_AKL -Fuse_Bourns_MF-RHT650 -PTC Resettable Fuse, Ihold = 6.5A, Itrip=12.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_US_AKL -Fuse_Bourns_MF-RHT700 -PTC Resettable Fuse, Ihold = 7.0A, Itrip=13.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_US_AKL -Fuse_Bourns_MF-RHT750 -PTC Resettable Fuse, Ihold = 7.5A, Itrip=13.1A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_US_AKL -Fuse_Bourns_MF-RHT800 -PTC Resettable Fuse, Ihold = 8.0A, Itrip=15.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_US_AKL -Fuse_Bourns_MF-RHT900 -PTC Resettable Fuse, Ihold = 9.0A, Itrip=16.5A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_US_AKL -Fuse_Bourns_MF-RHT1000 -PTC Resettable Fuse, Ihold = 10.0A, Itrip=18.5A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_US_AKL -Fuse_Bourns_MF-RHT1100 -PTC Resettable Fuse, Ihold = 11.0A, Itrip=20.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_US_AKL -Fuse_Bourns_MF-RHT1300 -PTC Resettable Fuse, Ihold = 13.0A, Itrip=24.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_US_AKL -Fuse_Bourns_MF-SM_7.98x5.44mm -https://www.bourns.com/docs/Product-Datasheets/mfsm.pdf, Alternate KiCAD Library -bourns ptc resettable fuse polyfuse MF-SM MF-SMHT -0 -2 -2 -PCM_Fuse_US_AKL -Fuse_Bourns_MF-SM_9.5x6.71mm -https://www.bourns.com/docs/Product-Datasheets/mfsm.pdf, Alternate KiCAD Library -bourns ptc resettable fuse polyfuse MF-SM MF-SMHT -0 -2 -2 -PCM_Fuse_US_AKL -Fuse_Littelfuse-LVR100 -Littelfuse, resettable fuse, PTC, polyswitch LVR100, Ih 1A http://www.littelfuse.com/~/media/electronics/datasheets/resettable_ptcs/littelfuse_ptc_lvr_catalog_datasheet.pdf.pdf, Alternate KiCAD Library -LVR100 PTC resettable polyswitch -0 -2 -2 -PCM_Fuse_US_AKL -Fuse_Littelfuse-LVR125 -Littelfuse, resettable fuse, PTC, polyswitch LVR125, Ih 1.25A, http://www.littelfuse.com/~/media/electronics/datasheets/resettable_ptcs/littelfuse_ptc_lvr_catalog_datasheet.pdf.pdf, Alternate KiCAD Library -LVR125 PTC resettable polyswitch -0 -2 -2 -PCM_Fuse_US_AKL -Fuse_Littelfuse-LVR200 -Littelfuse, resettable fuse, PTC, polyswitch LVR200, Ih 2A, http://www.littelfuse.com/~/media/electronics/datasheets/resettable_ptcs/littelfuse_ptc_lvr_catalog_datasheet.pdf.pdf, Alternate KiCAD Library -LVR200 PTC resettable polyswitch -0 -2 -2 -PCM_Fuse_US_AKL -Fuse_Littelfuse-NANO2-451_453 -Littelfuse NANO2 https://www.littelfuse.com/~/media/electronics/datasheets/fuses/littelfuse_fuse_451_453_datasheet.pdf, Alternate KiCAD Library -Fuse Nano2 -0 -2 -2 -PCM_Fuse_US_AKL -Fuse_Littelfuse_372_D8.50mm -Fuse, Littelfuse, 372, 8.5x8mm, https://www.littelfuse.com/~/media/electronics/datasheets/fuses/littelfuse_fuse_372_datasheet.pdf.pdf, Alternate KiCAD Library -fuse tht radial -0 -2 -2 -PCM_Fuse_US_AKL -Fuse_Littelfuse_395Series -Fuse, TE5, Littelfuse/Wickmann, No. 460, No560, Alternate KiCAD Library -Fuse TE5 Littelfuse/Wickmann No. 460 No560 -0 -2 -2 -PCM_Fuse_US_AKL -Fuse_Littelfuse_TSM600 -Dual Telecom SMT PolyFuse, Alternate KiCAD Library -Fuse dual -0 -4 -4 -PCM_Fuse_US_AKL -Fuse_Schurter_UMT250 -Surface Mount Fuse, 3 x 10.1 mm, Time-Lag T, 250 VAC, 125 VDC (https://us.schurter.com/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_UMT_250.pdf), Alternate KiCAD Library -Schurter fuse smd -0 -2 -2 -PCM_Fuse_US_AKL -Fuse_SunFuse-6HP -SunFuse Ceramic Slow Blow Fuse 6H_6HP.PDF, Alternate KiCAD Library -UL/CSA 6x32mm Ceramic Slow Blow Fuse -0 -2 -2 -PCM_Fuse_US_AKL -Fuseholder_Blade_ATO_Littelfuse_Pudenz_2_Pin -Fuseholder ATO Blade littelfuse Pudenz 2 Pin, Alternate KiCAD Library -Fuseholder ATO Blade littelfuse Pudenz 2 Pin -0 -2 -2 -PCM_Fuse_US_AKL -Fuseholder_Blade_Mini_Keystone_3568 -fuse holder, car blade fuse mini, http://www.keyelco.com/product-pdf.cfm?p=306, Alternate KiCAD Library -car blade fuse mini -0 -4 -2 -PCM_Fuse_US_AKL -Fuseholder_Cylinder-5x20mm_Bulgin_FX0456_Vertical_Closed -Fuseholder, 5x20, closed, vertical, Bulgin, FX0456, https://www.bulgin.com/products/pub/media/bulgin/data/Fuseholders.pdf, Alternate KiCAD Library -Fuseholder 5x20 closed vertical Bulgin FX0456 Sicherungshalter -0 -2 -2 -PCM_Fuse_US_AKL -Fuseholder_Cylinder-5x20mm_Bulgin_FX0457_Horizontal_Closed -Fuseholder, 5x20, closed, horizontal, Bulgin, FX0457, Sicherungshalter, Alternate KiCAD Library -Fuseholder 5x20 closed horizontal Bulgin FX0457 Sicherungshalter -0 -2 -2 -PCM_Fuse_US_AKL -Fuseholder_Cylinder-5x20mm_EATON_H15-V-1_Vertical_Closed -PCB fuse holders for 5 mm x 20 mm fuses; 250V; 10A (http://www.cooperindustries.com/content/dam/public/bussmann/Electronics/Resources/product-datasheets/bus-elx-ds-4426-h15.pdf), Alternate KiCAD Library -fuse holder vertical 5x20mm -0 -2 -2 -PCM_Fuse_US_AKL -Fuseholder_Cylinder-5x20mm_EATON_HBV_Vertical_Closed -5 mm x 20 mm fuse holders; Vertical w/ Stability Pins; 250V; 6.3-16A (http://www.cooperindustries.com/content/dam/public/bussmann/Electronics/Resources/product-datasheets/Bus_Elx_DS_2118_HB_PCB_Series.pdf), Alternate KiCAD Library -fuse holder vertical 5x20mm -0 -2 -2 -PCM_Fuse_US_AKL -Fuseholder_Cylinder-5x20mm_EATON_HBW_Vertical_Closed -5 mm x 20 mm fuse holders; Vertical w/o Stability Pins; 250V; 6.3-16A (http://www.cooperindustries.com/content/dam/public/bussmann/Electronics/Resources/product-datasheets/Bus_Elx_DS_2118_HB_PCB_Series.pdf), Alternate KiCAD Library -fuse holder vertical 5x20mm -0 -2 -2 -PCM_Fuse_US_AKL -Fuseholder_Cylinder-5x20mm_Schurter_0031_8201_Horizontal_Open -Fuseholder horizontal open, 5x20mm, 500V, 16A, Schurter 0031.8201, https://us.schurter.com/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_OGN.pdf, Alternate KiCAD Library -Fuseholder horizontal open 5x20 Schurter 0031.8201 -0 -2 -2 -PCM_Fuse_US_AKL -Fuseholder_Cylinder-5x20mm_Schurter_FAB_0031-355x_Horizontal_Closed -Fuseholder 5x20mm horizontal Shurter model FAB, Suitable for order numbers 0031.3551 and 0031.3558 (https://www.schurter.com/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_FAB.pdf), Alternate KiCAD Library -Fuseholder 5x20mm closed horizontal -0 -2 -2 -PCM_Fuse_US_AKL -Fuseholder_Cylinder-5x20mm_Schurter_FPG4_Vertical_Closed -Shock-Safe Fuseholder, 5 x 20 mm, Slotted Cap/Fingergrip, vertical, IEC 60335-1; 250VAC/10A VDE; 500V/16A UL/CSA (https://us.schurter.com/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_FPG4.pdf), Alternate KiCAD Library -fuse holder vertical 5x20mm -0 -4 -2 -PCM_Fuse_US_AKL -Fuseholder_Cylinder-5x20mm_Schurter_FUP_0031.2510_Horizontal_Closed -Shock-Safe closed Fuseholder, Schurter FUP Series, 5.0 x 20mm, Slotted Cap, horizontal, 500 VAC 4W/16A (VDE), 600V 30A (UL/CSA), order numbers: 0031.2510 (0031.2500 + 0031.2323), http://www.schurter.ch/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_FUP.pdf, Alternate KiCAD Library -Fuseholder 5x20mm horizontal closed -0 -3 -2 -PCM_Fuse_US_AKL -Fuseholder_Cylinder-5x20mm_Schurter_OGN-SMD_Horizontal_Open -Fuseholder horizontal open, 5x20mm, 500V, 16A (https://us.schurter.com/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_OGN-SMD.pdf), Alternate KiCAD Library -Fuseholder horizontal open 5x20 Schurter 0031.8221 -0 -2 -2 -PCM_Fuse_US_AKL -Fuseholder_Cylinder-5x20mm_Stelvio-Kontek_PTF78_Horizontal_Open -https://www.tme.eu/en/Document/3b48dbe2b9714a62652c97b08fcd464b/PTF78.pdf, Alternate KiCAD Library -Fuseholder horizontal open 5x20 Stelvio-Kontek PTF/78 -0 -2 -2 -PCM_Fuse_US_AKL -Fuseholder_Cylinder-6.3x32mm_Schurter_0031-8002_Horizontal_Open -Fuseholder, horizontal, open, 6.3x32, Schurter, 0031.8002, https://www.schurter.com/en/datasheet/typ_OG__Holder__6.3x32.pdf, Alternate KiCAD Library -Fuseholder horizontal open 6.3x32 Schurter 0031.8002 -0 -2 -2 -PCM_Fuse_US_AKL -Fuseholder_Cylinder-6.3x32mm_Schurter_FUP_0031.2520_Horizontal_Closed -Shock-Safe closed Fuseholder, Schurter FUP Series, 6.3 x 32 mm, Slotted Cap, horizontal, 500 VAC 4W/16A (VDE), 600V 30A (UL/CSA), order numbers: 0031.2520 (0031.2500 + 0031.2321), http://www.schurter.ch/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_FUP.pdf, Alternate KiCAD Library -Fuseholder 6.3x32mm horizontal closed -0 -3 -2 -PCM_Fuse_US_AKL -Fuseholder_Littelfuse_Nano2_157x -Littelfuse NANO2 holder, https://www.littelfuse.com/~/media/electronics/datasheets/fuses/littelfuse_fuse_157_datasheet.pdf.pdf, Alternate KiCAD Library -SMD Nano2 holder -0 -2 -2 -PCM_Fuse_US_AKL -Fuseholder_OMH-125_Schurter_6x12mm -SMD Fuse holder for OMF-125, OMF-63, OMT-125, Alternate KiCAD Library -fuse holder fuseholder smd -0 -2 -2 -PCM_Fuse_US_AKL -Fuseholder_TR5_Littelfuse_No560_No460 -Fuse, Fuseholder, TR5, Littelfuse/Wickmann, No. 460, No560, https://www.littelfuse.com/~/media/electronics/datasheets/fuse_holders/littelfuse_fuse_holder_559_560_datasheet.pdf.pdf, Alternate KiCAD Library -Fuse Fuseholder TR5 Littelfuse/Wickmann No. 460 No560 -0 -2 -2 -PCM_Fuse_US_AKL_Double -Fuse_BelFuse_0ZRE0005FF_L8.3mm_W3.8mm -Fuse 0ZRE0005FF, BelFuse, Radial Leaded PTC, https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library -0ZRE BelFuse radial PTC -0 -2 -2 -PCM_Fuse_US_AKL_Double -Fuse_BelFuse_0ZRE0008FF_L8.3mm_W3.8mm -Fuse 0ZRE0008FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library -0ZRE BelFuse radial PTC -0 -2 -2 -PCM_Fuse_US_AKL_Double -Fuse_BelFuse_0ZRE0012FF_L8.3mm_W3.8mm -Fuse 0ZRE0012FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library -0ZRE BelFuse radial PTC -0 -2 -2 -PCM_Fuse_US_AKL_Double -Fuse_BelFuse_0ZRE0016FF_L9.9mm_W3.8mm -Fuse 0ZRE0016FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library -0ZRE BelFuse radial PTC -0 -2 -2 -PCM_Fuse_US_AKL_Double -Fuse_BelFuse_0ZRE0025FF_L9.6mm_W3.8mm -Fuse 0ZRE0025FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library -0ZRE BelFuse radial PTC -0 -2 -2 -PCM_Fuse_US_AKL_Double -Fuse_BelFuse_0ZRE0033FF_L11.4mm_W3.8mm -Fuse 0ZRE0033FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library -0ZRE BelFuse radial PTC -0 -2 -2 -PCM_Fuse_US_AKL_Double -Fuse_BelFuse_0ZRE0040FF_L11.5mm_W3.8mm -Fuse 0ZRE0040FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library -0ZRE BelFuse radial PTC -0 -2 -2 -PCM_Fuse_US_AKL_Double -Fuse_BelFuse_0ZRE0055FF_L14.0mm_W4.1mm -Fuse 0ZRE0055FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library -0ZRE BelFuse radial PTC -0 -2 -2 -PCM_Fuse_US_AKL_Double -Fuse_BelFuse_0ZRE0075FF_L11.5mm_W4.8mm -Fuse 0ZRE0075FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library -0ZRE BelFuse radial PTC -0 -2 -2 -PCM_Fuse_US_AKL_Double -Fuse_BelFuse_0ZRE0100FF_L18.7mm_W5.1mm -Fuse 0ZRE0100FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library -0ZRE BelFuse radial PTC -0 -2 -2 -PCM_Fuse_US_AKL_Double -Fuse_BelFuse_0ZRE0125FF_L21.2mm_W5.3mm -Fuse 0ZRE0125FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library -0ZRE BelFuse radial PTC -0 -2 -2 -PCM_Fuse_US_AKL_Double -Fuse_BelFuse_0ZRE0150FF_L23.4mm_W5.3mm -Fuse 0ZRE0150FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library -0ZRE BelFuse radial PTC -0 -2 -2 -PCM_Fuse_US_AKL_Double -Fuse_BelFuse_0ZRE0200FF_L24.9mm_W6.1mm -Fuse 0ZRE0200FF, BelFuse, Radial Leaded PTC,https://www.belfuse.com/resources/datasheets/circuitprotection/ds-cp-0zre-series.pdf, Alternate KiCAD Library -0ZRE BelFuse radial PTC -0 -2 -2 -PCM_Fuse_US_AKL_Double -Fuse_Blade_Mini_directSolder -car blade fuse mini, direct solder, Alternate KiCAD Library -car blade fuse mini -0 -2 -2 -PCM_Fuse_US_AKL_Double -Fuse_Bourns_MF-RG300 -PTC Resettable Fuse, Ihold = 3.0A, Itrip=5.1A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_US_AKL_Double -Fuse_Bourns_MF-RG400 -PTC Resettable Fuse, Ihold = 4.0A, Itrip=6.8A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_US_AKL_Double -Fuse_Bourns_MF-RG500 -PTC Resettable Fuse, Ihold = 5.0A, Itrip=8.5A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_US_AKL_Double -Fuse_Bourns_MF-RG600 -PTC Resettable Fuse, Ihold = 6.0A, Itrip=10.2A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_US_AKL_Double -Fuse_Bourns_MF-RG650 -PTC Resettable Fuse, Ihold = 6.5A, Itrip=11.1A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_US_AKL_Double -Fuse_Bourns_MF-RG700 -PTC Resettable Fuse, Ihold = 7.0A, Itrip=11.9A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_US_AKL_Double -Fuse_Bourns_MF-RG800 -PTC Resettable Fuse, Ihold = 8.0A, Itrip=13.6A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_US_AKL_Double -Fuse_Bourns_MF-RG900 -PTC Resettable Fuse, Ihold = 9.0A, Itrip=15.3A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_US_AKL_Double -Fuse_Bourns_MF-RG1000 -PTC Resettable Fuse, Ihold = 10.0A, Itrip=17.0A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_US_AKL_Double -Fuse_Bourns_MF-RG1100 -PTC Resettable Fuse, Ihold = 11.0A, Itrip=18.7A, http://www.bourns.com/docs/Product-Datasheets/mfrg.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_US_AKL_Double -Fuse_Bourns_MF-RHT050 -PTC Resettable Fuse, Ihold = 0.5A, Itrip=0.92A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_US_AKL_Double -Fuse_Bourns_MF-RHT070 -PTC Resettable Fuse, Ihold = 0.7A, Itrip=1.4A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_US_AKL_Double -Fuse_Bourns_MF-RHT100 -PTC Resettable Fuse, Ihold = 1.0A, Itrip=1.8A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_US_AKL_Double -Fuse_Bourns_MF-RHT200 -PTC Resettable Fuse, Ihold = 2.0A, Itrip=3.8A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_US_AKL_Double -Fuse_Bourns_MF-RHT300 -PTC Resettable Fuse, Ihold = 3.0A, Itrip=6.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_US_AKL_Double -Fuse_Bourns_MF-RHT400 -PTC Resettable Fuse, Ihold = 4.0A, Itrip=7.5A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_US_AKL_Double -Fuse_Bourns_MF-RHT500 -PTC Resettable Fuse, Ihold = 5.0A, Itrip=9.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_US_AKL_Double -Fuse_Bourns_MF-RHT550 -PTC Resettable Fuse, Ihold = 5.5A, Itrip=10.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_US_AKL_Double -Fuse_Bourns_MF-RHT600 -PTC Resettable Fuse, Ihold = 6.0A, Itrip=10.8A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_US_AKL_Double -Fuse_Bourns_MF-RHT650 -PTC Resettable Fuse, Ihold = 6.5A, Itrip=12.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_US_AKL_Double -Fuse_Bourns_MF-RHT700 -PTC Resettable Fuse, Ihold = 7.0A, Itrip=13.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_US_AKL_Double -Fuse_Bourns_MF-RHT750 -PTC Resettable Fuse, Ihold = 7.5A, Itrip=13.1A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_US_AKL_Double -Fuse_Bourns_MF-RHT800 -PTC Resettable Fuse, Ihold = 8.0A, Itrip=15.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_US_AKL_Double -Fuse_Bourns_MF-RHT900 -PTC Resettable Fuse, Ihold = 9.0A, Itrip=16.5A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_US_AKL_Double -Fuse_Bourns_MF-RHT1000 -PTC Resettable Fuse, Ihold = 10.0A, Itrip=18.5A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_US_AKL_Double -Fuse_Bourns_MF-RHT1100 -PTC Resettable Fuse, Ihold = 11.0A, Itrip=20.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_US_AKL_Double -Fuse_Bourns_MF-RHT1300 -PTC Resettable Fuse, Ihold = 13.0A, Itrip=24.0A, http://www.bourns.com/docs/product-datasheets/mfrht.pdf, Alternate KiCAD Library -ptc resettable fuse polyfuse THT -0 -2 -2 -PCM_Fuse_US_AKL_Double -Fuse_Littelfuse-LVR100 -Littelfuse, resettable fuse, PTC, polyswitch LVR100, Ih 1A http://www.littelfuse.com/~/media/electronics/datasheets/resettable_ptcs/littelfuse_ptc_lvr_catalog_datasheet.pdf.pdf, Alternate KiCAD Library -LVR100 PTC resettable polyswitch -0 -2 -2 -PCM_Fuse_US_AKL_Double -Fuse_Littelfuse-LVR125 -Littelfuse, resettable fuse, PTC, polyswitch LVR125, Ih 1.25A, http://www.littelfuse.com/~/media/electronics/datasheets/resettable_ptcs/littelfuse_ptc_lvr_catalog_datasheet.pdf.pdf, Alternate KiCAD Library -LVR125 PTC resettable polyswitch -0 -2 -2 -PCM_Fuse_US_AKL_Double -Fuse_Littelfuse-LVR200 -Littelfuse, resettable fuse, PTC, polyswitch LVR200, Ih 2A, http://www.littelfuse.com/~/media/electronics/datasheets/resettable_ptcs/littelfuse_ptc_lvr_catalog_datasheet.pdf.pdf, Alternate KiCAD Library -LVR200 PTC resettable polyswitch -0 -2 -2 -PCM_Fuse_US_AKL_Double -Fuse_Littelfuse_372_D8.50mm -Fuse, Littelfuse, 372, 8.5x8mm, https://www.littelfuse.com/~/media/electronics/datasheets/fuses/littelfuse_fuse_372_datasheet.pdf.pdf, Alternate KiCAD Library -fuse tht radial -0 -2 -2 -PCM_Fuse_US_AKL_Double -Fuse_Littelfuse_395Series -Fuse, TE5, Littelfuse/Wickmann, No. 460, No560, Alternate KiCAD Library -Fuse TE5 Littelfuse/Wickmann No. 460 No560 -0 -2 -2 -PCM_Fuse_US_AKL_Double -Fuse_SunFuse-6HP -SunFuse Ceramic Slow Blow Fuse 6H_6HP.PDF, Alternate KiCAD Library -UL/CSA 6x32mm Ceramic Slow Blow Fuse -0 -2 -2 -PCM_Fuse_US_AKL_Double -Fuseholder_Blade_Mini_Keystone_3568 -fuse holder, car blade fuse mini, http://www.keyelco.com/product-pdf.cfm?p=306, Alternate KiCAD Library -car blade fuse mini -0 -4 -2 -PCM_Fuse_US_AKL_Double -Fuseholder_Cylinder-5x20mm_Bulgin_FX0456_Vertical_Closed -Fuseholder, 5x20, closed, vertical, Bulgin, FX0456, https://www.bulgin.com/products/pub/media/bulgin/data/Fuseholders.pdf, Alternate KiCAD Library -Fuseholder 5x20 closed vertical Bulgin FX0456 Sicherungshalter -0 -2 -2 -PCM_Fuse_US_AKL_Double -Fuseholder_Cylinder-5x20mm_Bulgin_FX0457_Horizontal_Closed -Fuseholder, 5x20, closed, horizontal, Bulgin, FX0457, Sicherungshalter, Alternate KiCAD Library -Fuseholder 5x20 closed horizontal Bulgin FX0457 Sicherungshalter -0 -2 -2 -PCM_Fuse_US_AKL_Double -Fuseholder_Cylinder-5x20mm_EATON_H15-V-1_Vertical_Closed -PCB fuse holders for 5 mm x 20 mm fuses; 250V; 10A (http://www.cooperindustries.com/content/dam/public/bussmann/Electronics/Resources/product-datasheets/bus-elx-ds-4426-h15.pdf), Alternate KiCAD Library -fuse holder vertical 5x20mm -0 -2 -2 -PCM_Fuse_US_AKL_Double -Fuseholder_Cylinder-5x20mm_EATON_HBV_Vertical_Closed -5 mm x 20 mm fuse holders; Vertical w/ Stability Pins; 250V; 6.3-16A (http://www.cooperindustries.com/content/dam/public/bussmann/Electronics/Resources/product-datasheets/Bus_Elx_DS_2118_HB_PCB_Series.pdf), Alternate KiCAD Library -fuse holder vertical 5x20mm -0 -2 -2 -PCM_Fuse_US_AKL_Double -Fuseholder_Cylinder-5x20mm_EATON_HBW_Vertical_Closed -5 mm x 20 mm fuse holders; Vertical w/o Stability Pins; 250V; 6.3-16A (http://www.cooperindustries.com/content/dam/public/bussmann/Electronics/Resources/product-datasheets/Bus_Elx_DS_2118_HB_PCB_Series.pdf), Alternate KiCAD Library -fuse holder vertical 5x20mm -0 -2 -2 -PCM_Fuse_US_AKL_Double -Fuseholder_Cylinder-5x20mm_Schurter_0031_8201_Horizontal_Open -Fuseholder horizontal open, 5x20mm, 500V, 16A, Schurter 0031.8201, https://us.schurter.com/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_OGN.pdf, Alternate KiCAD Library -Fuseholder horizontal open 5x20 Schurter 0031.8201 -0 -2 -2 -PCM_Fuse_US_AKL_Double -Fuseholder_Cylinder-5x20mm_Schurter_FAB_0031-355x_Horizontal_Closed -Fuseholder 5x20mm horizontal Shurter model FAB, Suitable for order numbers 0031.3551 and 0031.3558 (https://www.schurter.com/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_FAB.pdf), Alternate KiCAD Library -Fuseholder 5x20mm closed horizontal -0 -2 -2 -PCM_Fuse_US_AKL_Double -Fuseholder_Cylinder-5x20mm_Schurter_FPG4_Vertical_Closed -Shock-Safe Fuseholder, 5 x 20 mm, Slotted Cap/Fingergrip, vertical, IEC 60335-1; 250VAC/10A VDE; 500V/16A UL/CSA (https://us.schurter.com/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_FPG4.pdf), Alternate KiCAD Library -fuse holder vertical 5x20mm -0 -4 -2 -PCM_Fuse_US_AKL_Double -Fuseholder_Cylinder-5x20mm_Schurter_FUP_0031.2510_Horizontal_Closed -Shock-Safe closed Fuseholder, Schurter FUP Series, 5.0 x 20mm, Slotted Cap, horizontal, 500 VAC 4W/16A (VDE), 600V 30A (UL/CSA), order numbers: 0031.2510 (0031.2500 + 0031.2323), http://www.schurter.ch/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_FUP.pdf, Alternate KiCAD Library -Fuseholder 5x20mm horizontal closed -0 -3 -2 -PCM_Fuse_US_AKL_Double -Fuseholder_Cylinder-5x20mm_Stelvio-Kontek_PTF78_Horizontal_Open -https://www.tme.eu/en/Document/3b48dbe2b9714a62652c97b08fcd464b/PTF78.pdf, Alternate KiCAD Library -Fuseholder horizontal open 5x20 Stelvio-Kontek PTF/78 -0 -2 -2 -PCM_Fuse_US_AKL_Double -Fuseholder_Cylinder-6.3x32mm_Schurter_0031-8002_Horizontal_Open -Fuseholder, horizontal, open, 6.3x32, Schurter, 0031.8002, https://www.schurter.com/en/datasheet/typ_OG__Holder__6.3x32.pdf, Alternate KiCAD Library -Fuseholder horizontal open 6.3x32 Schurter 0031.8002 -0 -2 -2 -PCM_Fuse_US_AKL_Double -Fuseholder_Cylinder-6.3x32mm_Schurter_FUP_0031.2520_Horizontal_Closed -Shock-Safe closed Fuseholder, Schurter FUP Series, 6.3 x 32 mm, Slotted Cap, horizontal, 500 VAC 4W/16A (VDE), 600V 30A (UL/CSA), order numbers: 0031.2520 (0031.2500 + 0031.2321), http://www.schurter.ch/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_FUP.pdf, Alternate KiCAD Library -Fuseholder 6.3x32mm horizontal closed -0 -3 -2 -PCM_Fuse_US_AKL_Double -Fuseholder_TR5_Littelfuse_No560_No460 -Fuse, Fuseholder, TR5, Littelfuse/Wickmann, No. 460, No560, https://www.littelfuse.com/~/media/electronics/datasheets/fuse_holders/littelfuse_fuse_holder_559_560_datasheet.pdf.pdf, Alternate KiCAD Library -Fuse Fuseholder TR5 Littelfuse/Wickmann No. 460 No560 -0 -2 -2 -PCM_Fuse_US_Handsoldering_AKL -Fuse_0201_0603Metric -Fuse SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), Alternate KiCAD Library -fuse -0 -4 -2 -PCM_Fuse_US_Handsoldering_AKL -Fuse_0402_1005Metric -Fuse SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library -fuse -0 -2 -2 -PCM_Fuse_US_Handsoldering_AKL -Fuse_0603_1608Metric -Fuse SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library -fuse -0 -2 -2 -PCM_Fuse_US_Handsoldering_AKL -Fuse_0603_1608Metric_Castellated -Fuse SMD 0603 (1608 Metric), castellated end terminal, IPC_7351. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library -fuse castellated -0 -2 -2 -PCM_Fuse_US_Handsoldering_AKL -Fuse_0603_1608Metric_Pad1.05x0.95mm_BigPads -Fuse SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library -fuse big pads -0 -2 -2 -PCM_Fuse_US_Handsoldering_AKL -Fuse_0805_2012Metric -Fuse SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), Alternate KiCAD Library -fuse -0 -2 -2 -PCM_Fuse_US_Handsoldering_AKL -Fuse_0805_2012Metric_Castellated -Fuse SMD 0805 (2012 Metric), castellated end terminal, IPC_7351. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), Alternate KiCAD Library -fuse castellated -0 -2 -2 -PCM_Fuse_US_Handsoldering_AKL -Fuse_0805_2012Metric_Pad1.15x1.40mm_BigPads -Fuse SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), Alternate KiCAD Library -fuse big pads -0 -2 -2 -PCM_Fuse_US_Handsoldering_AKL -Fuse_01005_0402Metric -Fuse SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), Alternate KiCAD Library -fuse -0 -4 -2 -PCM_Fuse_US_Handsoldering_AKL -Fuse_1206_3216Metric -Fuse SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library -fuse -0 -2 -2 -PCM_Fuse_US_Handsoldering_AKL -Fuse_1206_3216Metric_Castellated -Fuse SMD 1206 (3216 Metric), castellated end terminal, IPC_7351. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library -fuse castellated -0 -2 -2 -PCM_Fuse_US_Handsoldering_AKL -Fuse_1206_3216Metric_Pad1.42x1.75mm_BigPads -Fuse SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library -fuse big pads -0 -2 -2 -PCM_Fuse_US_Handsoldering_AKL -Fuse_1210_3225Metric -Fuse SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library -fuse -0 -2 -2 -PCM_Fuse_US_Handsoldering_AKL -Fuse_1210_3225Metric_Castellated -Fuse SMD 1210 (3225 Metric), castellated end terminal, IPC_7351. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library -fuse castellated -0 -2 -2 -PCM_Fuse_US_Handsoldering_AKL -Fuse_1210_3225Metric_Pad1.42x2.65mm_BigPads -Fuse SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library -fuse big pads -0 -2 -2 -PCM_Fuse_US_Handsoldering_AKL -Fuse_1806_4516Metric -Fuse SMD 1806 (4516 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.modelithics.com/models/Vendor/MuRata/BLM41P.pdf), Alternate KiCAD Library -fuse -0 -2 -2 -PCM_Fuse_US_Handsoldering_AKL -Fuse_1806_4516Metric_Castellated -Fuse SMD 1806 (4516 Metric), castellated end terminal, IPC_7351. (Body size source: https://www.modelithics.com/models/Vendor/MuRata/BLM41P.pdf), Alternate KiCAD Library -fuse castellated -0 -2 -2 -PCM_Fuse_US_Handsoldering_AKL -Fuse_1806_4516Metric_Pad1.57x1.80mm_BigPads -Fuse SMD 1806 (4516 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.modelithics.com/models/Vendor/MuRata/BLM41P.pdf), Alternate KiCAD Library -fuse big pads -0 -2 -2 -PCM_Fuse_US_Handsoldering_AKL -Fuse_1812_4532Metric -Fuse SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), Alternate KiCAD Library -resistor -0 -2 -2 -PCM_Fuse_US_Handsoldering_AKL -Fuse_1812_4532Metric_Castellated -Fuse SMD 1812 (4532 Metric), castellated end terminal, IPC_7351. (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), Alternate KiCAD Library -fuse castellated -0 -2 -2 -PCM_Fuse_US_Handsoldering_AKL -Fuse_1812_4532Metric_Pad1.30x3.40mm_BigPads -Fuse SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), Alternate KiCAD Library -fuse big pads -0 -2 -2 -PCM_Fuse_US_Handsoldering_AKL -Fuse_2010_5025Metric -Fuse SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library -fuse -0 -2 -2 -PCM_Fuse_US_Handsoldering_AKL -Fuse_2010_5025Metric_Castellated -Fuse SMD 2010 (5025 Metric), castellated end terminal, IPC_7351. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library -fuse castellated -0 -2 -2 -PCM_Fuse_US_Handsoldering_AKL -Fuse_2010_5025Metric_Pad1.52x2.65mm_BigPads -Fuse SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library -fuse big pads -0 -2 -2 -PCM_Fuse_US_Handsoldering_AKL -Fuse_2512_6332Metric -Fuse SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library -fuse -0 -2 -2 -PCM_Fuse_US_Handsoldering_AKL -Fuse_2512_6332Metric_Castellated -Fuse SMD 2512 (6332 Metric), castellated end terminal, IPC_7351. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library -fuse castellated -0 -2 -2 -PCM_Fuse_US_Handsoldering_AKL -Fuse_2512_6332Metric_Pad1.52x3.35mm_BigPads -Fuse SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCAD Library -fuse big pads -0 -2 -2 -PCM_Fuse_US_Handsoldering_AKL -Fuse_2816_7142Metric -Fuse SMD 2816 (7142 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), Alternate KiCAD Library -fuse -0 -2 -2 -PCM_Fuse_US_Handsoldering_AKL -Fuse_2816_7142Metric_Castellated -Fuse SMD 2816 (7142 Metric), castellated end terminal, IPC_7351. (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), Alternate KiCAD Library -fuse castellated -0 -2 -2 -PCM_Fuse_US_Handsoldering_AKL -Fuse_2816_7142Metric_Pad3.20x4.45mm_BigPads -Fuse SMD 2816 (7142 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), Alternate KiCAD Library -fuse big pads -0 -2 -2 -PCM_Fuse_US_Handsoldering_AKL -Fuse_2920_7451Metric -Fuse SMD 2920 (7451 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: http://www.megastar.com/products/fusetronic/polyswitch/PDF/smd2920.pdf), Alternate KiCAD Library -fuse -0 -2 -2 -PCM_Fuse_US_Handsoldering_AKL -Fuse_2920_7451Metric_Castellated -Fuse SMD 2920 (7451 Metric), castellated end terminal, IPC_7351. (Body size from: http://www.megastar.com/products/fusetronic/polyswitch/PDF/smd2920.pdf), Alternate KiCAD Library -fuse castellated -0 -2 -2 -PCM_Fuse_US_Handsoldering_AKL -Fuse_2920_7451Metric_Pad2.10x5.45mm_BigPads -Fuse SMD 2920 (7451 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: http://www.megastar.com/products/fusetronic/polyswitch/PDF/smd2920.pdf), Alternate KiCAD Library -fuse big pads -0 -2 -2 -PCM_Fuse_US_Handsoldering_AKL -Fuse_Bourns_MF-SM_7.98x5.44mm -https://www.bourns.com/docs/Product-Datasheets/mfsm.pdf, Alternate KiCAD Library -bourns ptc resettable fuse polyfuse MF-SM MF-SMHT -0 -2 -2 -PCM_Fuse_US_Handsoldering_AKL -Fuse_Bourns_MF-SM_9.5x6.71mm -https://www.bourns.com/docs/Product-Datasheets/mfsm.pdf, Alternate KiCAD Library -bourns ptc resettable fuse polyfuse MF-SM MF-SMHT -0 -2 -2 -PCM_Fuse_US_Handsoldering_AKL -Fuse_Littelfuse-NANO2-451_453 -Littelfuse NANO2 https://www.littelfuse.com/~/media/electronics/datasheets/fuses/littelfuse_fuse_451_453_datasheet.pdf, Alternate KiCAD Library -Fuse Nano2 -0 -2 -2 -PCM_Fuse_US_Handsoldering_AKL -Fuse_Littlefuse_TSM600 -Telecom SMT PolyFuse, Alternate KiCAD Library -fuse TSM600 -0 -4 -4 -PCM_Fuse_US_Handsoldering_AKL -Fuse_Schurter_UMT250 -Surface Mount Fuse, 3 x 10.1 mm, Time-Lag T, 250 VAC, 125 VDC (https://us.schurter.com/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_UMT_250.pdf), Alternate KiCAD Library -Schurter fuse smd -0 -2 -2 -PCM_Fuse_US_Handsoldering_AKL -Fuseholder_Cylinder-5x20mm_Schurter_OGN-SMD_Horizontal_Open -Fuseholder horizontal open, 5x20mm, 500V, 16A (https://us.schurter.com/bundles/snceschurter/epim/_ProdPool_/newDS/en/typ_OGN-SMD.pdf), Alternate KiCAD Library -Fuseholder horizontal open 5x20 Schurter 0031.8221 -0 -2 -2 -PCM_Fuse_US_Handsoldering_AKL -Fuseholder_Littelfuse_Nano2_157x -Littelfuse NANO2 holder, https://www.littelfuse.com/~/media/electronics/datasheets/fuses/littelfuse_fuse_157_datasheet.pdf.pdf, Alternate KiCAD Library -SMD Nano2 holder -0 -2 -2 -PCM_Fuse_US_Handsoldering_AKL -Fuseholder_OMH-125_Schurter_6x12mm -SMD Fuse holder for OMF-125, OMF-63, OMT-125, Alternate KiCAD Library -fuse holder fuseholder smd -0 -2 -2 -PCM_Inductor_SMD_AKL -L_6.3x6.3_H3 -Choke, SMD, 6.3x6.3mm 3mm height, Alternate KiCad Library -Choke SMD -0 -2 -2 -PCM_Inductor_SMD_AKL -L_7.3x7.3_H3.5 -Choke, SMD, 7.3x7.3mm 3.5mm height, Alternate KiCad Library -Choke SMD -0 -2 -2 -PCM_Inductor_SMD_AKL -L_7.3x7.3_H4.5 -Choke, SMD, 7.3x7.3mm 4.5mm height, Alternate KiCad Library -Choke SMD -0 -2 -2 -PCM_Inductor_SMD_AKL -L_10.4x10.4_H4.8 -Choke, SMD, 10.4x10.4mm 4.8mm height, Alternate KiCad Library -Choke SMD -0 -2 -2 -PCM_Inductor_SMD_AKL -L_12x12mm_H4.5mm -Choke, SMD, 12x12mm 4.5mm height, Alternate KiCad Library -Choke SMD -0 -2 -2 -PCM_Inductor_SMD_AKL -L_12x12mm_H6mm -Choke, SMD, 12x12mm 6mm height, Alternate KiCad Library -Choke SMD -0 -2 -2 -PCM_Inductor_SMD_AKL -L_12x12mm_H8mm -Choke, SMD, 12x12mm 8mm height, Alternate KiCad Library -Choke SMD -0 -2 -2 -PCM_Inductor_SMD_AKL -L_0201_0603Metric -Inductor SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), Alternate KiCad Library -inductor -0 -4 -2 -PCM_Inductor_SMD_AKL -L_0201_0603Metric_Pad0.64x0.40mm -Inductor SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), Alternate KiCad Library -inductor handsolder -0 -4 -2 -PCM_Inductor_SMD_AKL -L_0201_0603Metric_Pad0.64x0.40mm_HandSolder -Inductor SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), Alternate KiCad Library -inductor handsolder -0 -4 -2 -PCM_Inductor_SMD_AKL -L_0402_1005Metric -Inductor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -inductor -0 -2 -2 -PCM_Inductor_SMD_AKL -L_0402_1005Metric_Pad0.77x0.64mm -Inductor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -inductor handsolder -0 -2 -2 -PCM_Inductor_SMD_AKL -L_0402_1005Metric_Pad0.77x0.64mm_HandSolder -Inductor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -inductor handsolder -0 -2 -2 -PCM_Inductor_SMD_AKL -L_0603_1608Metric -Inductor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -inductor -0 -2 -2 -PCM_Inductor_SMD_AKL -L_0603_1608Metric_Pad1.05x0.95mm -Inductor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -inductor handsolder -0 -2 -2 -PCM_Inductor_SMD_AKL -L_0603_1608Metric_Pad1.05x0.95mm_HandSolder -Inductor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -inductor handsolder -0 -2 -2 -PCM_Inductor_SMD_AKL -L_0805_2012Metric -Inductor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 80, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library -inductor -0 -2 -2 -PCM_Inductor_SMD_AKL -L_0805_2012Metric_Pad1.05x1.20mm -Inductor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 80, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library -inductor handsolder -0 -2 -2 -PCM_Inductor_SMD_AKL -L_0805_2012Metric_Pad1.05x1.20mm_HandSolder -Inductor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 80, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library -inductor handsolder -0 -2 -2 -PCM_Inductor_SMD_AKL -L_0805_2012Metric_Pad1.15x1.40mm -Inductor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), Alternate KiCad Library -inductor handsolder -0 -2 -2 -PCM_Inductor_SMD_AKL -L_0805_2012Metric_Pad1.15x1.40mm_HandSolder -Inductor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), Alternate KiCad Library -inductor handsolder -0 -2 -2 -PCM_Inductor_SMD_AKL -L_01005_0402Metric -Inductor SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), Alternate KiCad Library -inductor -0 -4 -2 -PCM_Inductor_SMD_AKL -L_01005_0402Metric_Pad0.57x0.30mm -Inductor SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), Alternate KiCad Library -inductor handsolder -0 -4 -2 -PCM_Inductor_SMD_AKL -L_01005_0402Metric_Pad0.57x0.30mm_HandSolder -Inductor SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), Alternate KiCad Library -inductor handsolder -0 -4 -2 -PCM_Inductor_SMD_AKL -L_1008_2520Metric -Inductor SMD 1008 (2520 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://ecsxtal.com/store/pdf/ECS-MPI2520-SMD-POWER-INDUCTOR.pdf), Alternate KiCad Library -inductor -0 -2 -2 -PCM_Inductor_SMD_AKL -L_1008_2520Metric_Pad1.43x2.20mm -Inductor SMD 1008 (2520 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://ecsxtal.com/store/pdf/ECS-MPI2520-SMD-POWER-INDUCTOR.pdf), Alternate KiCad Library -inductor handsolder -0 -2 -2 -PCM_Inductor_SMD_AKL -L_1008_2520Metric_Pad1.43x2.20mm_HandSolder -Inductor SMD 1008 (2520 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://ecsxtal.com/store/pdf/ECS-MPI2520-SMD-POWER-INDUCTOR.pdf), Alternate KiCad Library -inductor handsolder -0 -2 -2 -PCM_Inductor_SMD_AKL -L_1206_3216Metric -Inductor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 80, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library -inductor -0 -2 -2 -PCM_Inductor_SMD_AKL -L_1206_3216Metric_Pad1.22x1.90mm -Inductor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 80, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library -inductor handsolder -0 -2 -2 -PCM_Inductor_SMD_AKL -L_1206_3216Metric_Pad1.22x1.90mm_HandSolder -Inductor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 80, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library -inductor handsolder -0 -2 -2 -PCM_Inductor_SMD_AKL -L_1206_3216Metric_Pad1.42x1.75mm -Inductor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -inductor handsolder -0 -2 -2 -PCM_Inductor_SMD_AKL -L_1206_3216Metric_Pad1.42x1.75mm_HandSolder -Inductor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -inductor handsolder -0 -2 -2 -PCM_Inductor_SMD_AKL -L_1210_3225Metric -Inductor SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -inductor -0 -2 -2 -PCM_Inductor_SMD_AKL -L_1210_3225Metric_Pad1.42x2.65mm -Inductor SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -inductor handsolder -0 -2 -2 -PCM_Inductor_SMD_AKL -L_1210_3225Metric_Pad1.42x2.65mm_HandSolder -Inductor SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -inductor handsolder -0 -2 -2 -PCM_Inductor_SMD_AKL -L_1806_4516Metric -Inductor SMD 1806 (4516 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.modelithics.com/models/Vendor/MuRata/BLM41P.pdf), Alternate KiCad Library -inductor -0 -2 -2 -PCM_Inductor_SMD_AKL -L_1806_4516Metric_Pad1.57x1.80mm -Capacitor SMD 1806 (4516 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.modelithics.com/models/Vendor/MuRata/BLM41P.pdf), Alternate KiCad Library -inductor handsolder -0 -2 -2 -PCM_Inductor_SMD_AKL -L_1806_4516Metric_Pad1.57x1.80mm_HandSolder -Capacitor SMD 1806 (4516 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.modelithics.com/models/Vendor/MuRata/BLM41P.pdf), Alternate KiCad Library -inductor handsolder -0 -2 -2 -PCM_Inductor_SMD_AKL -L_1812_4532Metric -Inductor SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), Alternate KiCad Library -inductor -0 -2 -2 -PCM_Inductor_SMD_AKL -L_1812_4532Metric_Pad1.30x3.40mm -Inductor SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), Alternate KiCad Library -inductor handsolder -0 -2 -2 -PCM_Inductor_SMD_AKL -L_1812_4532Metric_Pad1.30x3.40mm_HandSolder -Inductor SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), Alternate KiCad Library -inductor handsolder -0 -2 -2 -PCM_Inductor_SMD_AKL -L_2010_5025Metric -Inductor SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -inductor -0 -2 -2 -PCM_Inductor_SMD_AKL -L_2010_5025Metric_Pad1.52x2.65mm -Inductor SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -inductor handsolder -0 -2 -2 -PCM_Inductor_SMD_AKL -L_2010_5025Metric_Pad1.52x2.65mm_HandSolder -Inductor SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -inductor handsolder -0 -2 -2 -PCM_Inductor_SMD_AKL -L_2512_6332Metric -Inductor SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -inductor -0 -2 -2 -PCM_Inductor_SMD_AKL -L_2512_6332Metric_Pad1.52x3.35mm -Inductor SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -inductor handsolder -0 -2 -2 -PCM_Inductor_SMD_AKL -L_2512_6332Metric_Pad1.52x3.35mm_HandSolder -Inductor SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -inductor handsolder -0 -2 -2 -PCM_Inductor_SMD_AKL -L_2816_7142Metric -Inductor SMD 2816 (7142 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), Alternate KiCad Library -inductor -0 -2 -2 -PCM_Inductor_SMD_AKL -L_2816_7142Metric_Pad3.20x4.45mm -Inductor SMD 2816 (7142 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), Alternate KiCad Library -inductor handsolder -0 -2 -2 -PCM_Inductor_SMD_AKL -L_2816_7142Metric_Pad3.20x4.45mm_HandSolder -Inductor SMD 2816 (7142 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), Alternate KiCad Library -inductor handsolder -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Abracon_ASPI-0630LR -smd shielded power inductor https://abracon.com/Magnetics/power/ASPI-0630LR.pdf, Alternate KiCad Library -inductor abracon smd shielded -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Abracon_ASPI-3012S -smd shielded power inductor http://www.abracon.com/Magnetics/power/ASPI-3012S.pdf, Alternate KiCad Library -inductor abracon smd shielded -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Bourns-SRN1060 -Bourns SRN1060 series SMD inductor https://www.bourns.com/docs/Product-Datasheets/SRN1060.pdf, Alternate KiCad Library -Bourns SRN1060 SMD inductor -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Bourns-SRN4018 -Bourns SRN4018 series SMD inductor, https://www.bourns.com/docs/Product-Datasheets/SRN4018.pdf, Alternate KiCad Library -Bourns SRN4018 SMD inductor -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Bourns-SRN6028 -Bourns SRN6028 series SMD inductor, Alternate KiCad Library -Bourns SRN6028 SMD inductor -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Bourns-SRN8040_8x8.15mm -Bourns SRN8040 series SMD inductor 8x8.15mm, https://www.bourns.com/docs/Product-Datasheets/SRN8040.pdf, Alternate KiCad Library -Bourns SRN8040 SMD inductor -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Bourns-SRR1005 -Bourns SRR1005 series SMD inductor, Alternate KiCad Library -Bourns SRR1005 SMD inductor -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Bourns-SRU1028_10.0x10.0mm -Bourns SRU1028 series SMD inductor, https://www.bourns.com/docs/Product-Datasheets/SRU1028.pdf, Alternate KiCad Library -Bourns SRU1028 SMD inductor -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Bourns-SRU8028_8.0x8.0mm -Bourns SRU8028 series SMD inductor, Alternate KiCad Library -Bourns SRU8028 SMD inductor -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Bourns-SRU8043 -Bourns SRU8043 series SMD inductor, Alternate KiCad Library -Bourns SRU8043 SMD inductor -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Bourns_SDR1806 -https://www.bourns.com/docs/Product-Datasheets/SDR1806.pdf, Alternate KiCad Library -Bourns SDR1806 -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Bourns_SRF1260 -Inductor, Bourns, SRF1260, 12.5mmx12.5mm (Script generated with StandardBox.py) (https://www.bourns.com/docs/Product-Datasheets/SRF1260.pdf), Alternate KiCad Library -Inductor Bourns_SRF1260 -0 -4 -4 -PCM_Inductor_SMD_AKL -L_Bourns_SRN6045TA -http://www.bourns.com/docs/product-datasheets/srn6045ta.pdf, Alternate KiCad Library -Semi-shielded Power Inductor -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Bourns_SRN8040TA -https://www.bourns.com/docs/product-datasheets/srn8040ta.pdf, Alternate KiCad Library -Inductor -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Bourns_SRP1245A -Bourns SRP1245A series SMD inductor http://www.bourns.com/docs/Product-Datasheets/SRP1245A.pdf, Alternate KiCad Library -Bourns SRP1245A SMD inductor -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Bourns_SRP2313AA -Bourns SRR1260 series SMD inductor http://www.bourns.com/docs/product-datasheets/srp2313aa.pdf, Alternate KiCad Library -Bourns SRR1260 SMD inductor -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Bourns_SRP5030T -Inductor, Bourns, SRP5030T, 5.7mmx5.2mm (Script generated with StandardBox.py) (https://www.bourns.com/data/global/pdfs/SRP5030T.pdf), Alternate KiCad Library -Inductor Bourns_SRP5030T -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Bourns_SRP7028A_7.3x6.6mm -Shielded Power Inductors (https://www.bourns.com/docs/product-datasheets/srp7028a.pdf), Alternate KiCad Library -Shielded Inductors Bourns SMD SRP7028A -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Bourns_SRR1210A -Bourns SRR1210A series SMD inductor https://www.bourns.com/docs/Product-Datasheets/SRR1210A.pdf, Alternate KiCad Library -Bourns SRR1210A SMD inductor -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Bourns_SRR1260 -Bourns SRR1260 series SMD inductor http://www.bourns.com/docs/Product-Datasheets/SRR1260.pdf, Alternate KiCad Library -Bourns SRR1260 SMD inductor -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Coilcraft_LPS4018 -SMD Inductor Coilcraft LPS4018 https://www.coilcraft.com/pdfs/lps4018.pdf, Alternate KiCad Library -L Coilcraft LPS4018 -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Coilcraft_LPS5030 -Shielded Power Inductor SMD, Coilcraft LPS5030, https://www.coilcraft.com/pdfs/lps5030.pdf, StepUp generated footprint, Alternate KiCad Library -inductor -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Coilcraft_XAL60xx_6.36x6.56mm -Coilcraft XAL60xx series, https://www.coilcraft.com/pdfs/xal60xx.pdf, Alternate KiCad Library -L Coilcraft XAL60xx -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Coilcraft_XAL5030 -L_Coilcraft_XAL5030, Alternate KiCad Library -L Coilcraft XAL5030 -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Coilcraft_XxL4020 -L_Coilcraft_XxL4020 https://www.coilcraft.com/pdfs/xfl4020.pdf, Alternate KiCad Library -L Coilcraft XxL4020 -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Coilcraft_XxL4030 -L_Coilcraft_XxL4030 https://www.coilcraft.com/pdfs/xfl4030.pdf, Alternate KiCad Library -L Coilcraft XxL4030 -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Coilcraft_XxL4040 -L_Coilcraft_XxL4040 https://www.coilcraft.com/pdfs/xal4000.pdf, Alternate KiCad Library -L Coilcraft XxL4040 -0 -2 -2 -PCM_Inductor_SMD_AKL -L_CommonModeChoke_Coilcraft_0603USB -Coilcraft 0603USB Series Common Mode Choke, https://www.coilcraft.com/pdfs/0603usb.pdf, Alternate KiCad Library -surface mount common mode bead -0 -4 -4 -PCM_Inductor_SMD_AKL -L_CommonModeChoke_Coilcraft_0805USB -Coilcraft 0805USB Series Common Mode Choke, https://www.coilcraft.com/pdfs/0805usb.pdf, Alternate KiCad Library -surface mount common mode bead -0 -4 -4 -PCM_Inductor_SMD_AKL -L_CommonModeChoke_Coilcraft_1812CAN -Coilcraft 1812CAN Series Common Mode Choke, https://www.coilcraft.com/pdfs/1812can.pdf, Alternate KiCad Library -surface mount common mode bead -0 -4 -4 -PCM_Inductor_SMD_AKL -L_CommonModeChoke_Wuerth_WE-SL5 -WE-SL5 SMT Common Mode Line Filter, https://www.we-online.de/katalog/en/WE-SL5/, https://www.we-online.de/katalog/datasheet/744272471.pdf, Alternate KiCad Library -SMT Common Mode Line Filter -0 -4 -4 -PCM_Inductor_SMD_AKL -L_CommonMode_Wuerth_WE-SL2 -http://katalog.we-online.de/en/pbs/WE-SL2?sid=5fbec16187#vs_t1:c1_ct:1, Alternate KiCad Library -Wuerth WE-SL2 -0 -4 -4 -PCM_Inductor_SMD_AKL -L_Fastron_PISN -Choke, Drossel, PISN, SMD, Fastron, Alternate KiCad Library -Choke Drossel PISN SMD Fastron -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Fastron_PISN_BigPads -Choke, Drossel, PISN, SMD, Fastron, Alternate KiCad Library -Choke Drossel PISN SMD Fastron -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Fastron_PISN_Handsoldering -Choke, Drossel, PISN, SMD, Fastron, Alternate KiCad Library -Choke Drossel PISN SMD Fastron -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Fastron_PISR -Choke, Drossel, PISR, Fastron, SMD, Alternate KiCad Library -Choke Drossel PISR Fastron SMD -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Fastron_PISR_BigPads -Choke, Drossel, PISR, Fastron, SMD, Alternate KiCad Library -Choke Drossel PISR Fastron SMD -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Fastron_PISR_Handsoldering -Choke, Drossel, PISR, Fastron, SMD, Alternate KiCad Library -Choke Drossel PISR Fastron SMD -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Murata_DEM35xxC -https://www.murata.com/~/media/webrenewal/products/inductor/chip/tokoproducts/wirewoundferritetypeforpl/m_dem3518c.ashx, Alternate KiCad Library -Inductor SMD DEM35xxC -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Murata_LQH2MCNxxxx02_2.0x1.6mm -Inductor, Murata, LQH2MCN_02 series, 1.6x2.0x0.9mm (https://search.murata.co.jp/Ceramy/image/img/P02/JELF243A-0053.pdf), Alternate KiCad Library -chip coil inductor Murata LQH2MC -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Murata_LQH55DN_5.7x5.0mm -Inductor, SMD, 5.7x5.0x4.7mm, https://search.murata.co.jp/Ceramy/image/img/P02/JELF243A-0045.pdf, Alternate KiCad Library -inductor smd -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Neosid_Air-Coil_SML_1turn_HDM0131A -Neosid, Air-Coil, SML, 1turn, HDM0131A, Alternate KiCad Library -Neosid Air-Coil SML 1turn HDM0131A -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Neosid_Air-Coil_SML_2turn_HAM0231A -Neosid, Air-Coil, SML, 2turn, HAM0231A, Alternate KiCad Library -Neosid Air-Coil SML 2turn HAM0231A -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Neosid_Air-Coil_SML_2turn_HDM0231A -Neosid, Air-Coil, SML, 2turn, HDM0231A, Alternate KiCad Library -Neosid Air-Coil SML 2turn HDM0231A -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Neosid_Air-Coil_SML_3turn_HAM0331A -Neosid, Air-Coil, SML, 2turn, HAM0331A, Alternate KiCad Library -Neosid Air-Coil SML 3turn HAM0331A -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Neosid_Air-Coil_SML_3turn_HDM0331A -Neosid, Air-Coil, SML, 3turn, HDM0331A, Alternate KiCad Library -Neosid Air-Coil SML 3turn HDM0331A -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Neosid_Air-Coil_SML_4turn_HAM0431A -Neosid, Air-Coil, SML, 4turn, HAM0431A, Alternate KiCad Library -Neosid Air-Coil SML 4turn HAM0431A -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Neosid_Air-Coil_SML_4turn_HDM0431A -Neosid, Air-Coil, SML, 4turn, HDM0431A, Alternate KiCad Library -Neosid Air-Coil SML 4turn HDM0431A -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Neosid_Air-Coil_SML_5turn_HAM0531A -Neosid, Air-Coil, SML, 5turn, HAM0531A, Alternate KiCad Library -Neosid Air-Coil SML 5turn HAM0531A -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Neosid_Air-Coil_SML_5turn_HDM0531A -Neosid, Air-Coil, SML, 5turn, HDM0531A, Alternate KiCad Library -Neosid Air-Coil SML 5turn HDM0531A -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Neosid_Air-Coil_SML_6-10turn_HAM0631A-HAM1031A -Neosid, Air-Coil, SML, 6-10turn, HAM0631A-HAM1031A, Alternate KiCad Library -Neosid Air-Coil SML 6-10turn HAM0631A-HAM1031A -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Neosid_Air-Coil_SML_6-10turn_HDM0431A-HDM1031A -Neosid, Air-Coil, SML, 6-10turn, HDM0431A-HDM1031A, Alternate KiCad Library -Neosid Air-Coil SML 6-10turn HDM0431A-HDM1031A -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Neosid_Air-Coil_SML_6turn_HAM0631A -Neosid, Air-Coil, SML, 6turn, HAM0631A, Alternate KiCad Library -Neosid Air-Coil SML 6turn HAM0631A -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Neosid_MicroCoil_Ms36-L -Neosid, Micro Coil, Inductor, Ms36-L, SMD, Fixed inductor, anti clockwise, https://neosid.de/en/products/inductors/rod-core-chokes/smd-rod-core-chokes/52026/ms-36/7-h?c=94, Alternate KiCad Library -Neosid Micro Coil Inductor Ms36-L SMD Fixed inductor anti clockwise -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Neosid_Ms42 -Neosid, Inductor, SMs42, Fixed inductor, SMD, magneticaly shielded, https://neosid.de/import-data/product-pdf/neoFestind_Ms42.pdf, Alternate KiCad Library -Neosid Inductor SMs42 Fixed inductor SMD magneticaly shielded -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Neosid_Ms50 -Neosid, Power Inductor, Ms50, SMD, Fixed inductor, https://neosid.de/import-data/product-pdf/neoFestind_Ms50.pdf, Alternate KiCad Library -Neosid Power Inductor Ms50 SMD Fixed inductor -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Neosid_Ms50T -Neosid, Power Inductor, Ms50T, SMD, Fixed inductor, high temperature, https://neosid.de/import-data/product-pdf/neoFestind_Ms50T.pdf, Alternate KiCad Library -Neosid Power Inductor Ms50T SMD Fixed inductor high temperature -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Neosid_Ms85 -Neosid, Ms85, Ms85T, SMD Inductor, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_Ms85.pdf, Alternate KiCad Library -Neosid Ms85 Ms85T SMD Inductor Fixed inductor SMD -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Neosid_Ms85T -Neosid, Ms85, Ms85T, SMD Inductor, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_Ms85T.pdf, Alternate KiCad Library -Neosid Ms85 Ms85T SMD Inductor Fixed inductor SMD -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Neosid_Ms95 -Neosid,Inductor,Ms95, Ms95a, Ms95T, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_Ms95.pdf, Alternate KiCad Library -NeosidInductorMs95 Ms95a Ms95T Fixed inductor SMD -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Neosid_Ms95T -Neosid,Inductor,Ms95, Ms95a, Ms95T, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_Ms95T.pdf, Alternate KiCad Library -NeosidInductorMs95 Ms95a Ms95T Fixed inductor SMD -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Neosid_Ms95a -Neosid,Inductor,Ms95, Ms95a, Ms95T, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_Ms95a.pdf, Alternate KiCad Library -NeosidInductorMs95 Ms95a Ms95T Fixed inductor SMD -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Neosid_SM-NE95H -Neosid, Inductor,SM-NE95H, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_SMNE95H.pdf, Alternate KiCad Library -Neosid Inductor SM-NE95H Fixed inductor SMD -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Neosid_SM-NE127 -Neosid, Inductor, SM-NE127, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_SMNE127.pdf, Alternate KiCad Library -Neosid Inductor SM-NE127 Fixed inductor SMD -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Neosid_SM-NE127_BigPads -Neosid, Inductor, SM-NE127, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_SMNE127.pdf, Alternate KiCad Library -Neosid Inductor SM-NE127 Fixed inductor SMD -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Neosid_SM-NE127_HandSoldering -Neosid, Inductor, SM-NE127, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_SMNE127.pdf, Alternate KiCad Library -Neosid Inductor SM-NE127 Fixed inductor SMD -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Neosid_SM-NE150 -Neosid, Inductor, SM-NE150, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_SMNE150.pdf, Alternate KiCad Library -Neosid Inductor SM-NE150 Fixed inductor SMD -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Neosid_SM-PIC0512H -Neosid, Inductor, PIC0512H, Power Inductor, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_SMPIC0512H.pdf, Alternate KiCad Library -Neosid Inductor PIC0512H Power Inductor Fixed inductor SMD -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Neosid_SM-PIC0602H -Neosid, Power Inductor, SM-PIC0602H, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_SMPIC0602H.pdf, Alternate KiCad Library -Neosid Power Inductor SM-PIC0602H Fixed inductor SMD -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Neosid_SM-PIC0612H -Neosid, Power Inductor, SM-PIC0612H, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_SMPIC0612H.pdf, Alternate KiCad Library -Neosid Power Inductor SM-PIC0612H Fixed inductor SMD -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Neosid_SM-PIC1004H -Neosid, Inductor, SM-PIC1004H, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_SMPIC1004H.pdf, Alternate KiCad Library -Neosid Inductor SM-PIC1004H Fixed inductor SMD -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Neosid_SMS-ME3010 -Neosid, Inductor, SMS-ME3010, Fixed inductor, SMD, magnetically shielded, https://neosid.de/import-data/product-pdf/neoFestind_SMSME3010.pdf, Alternate KiCad Library -Neosid Inductor SMS-ME3010 Fixed inductor SMD magnetically shielded -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Neosid_SMS-ME3015 -Neosid, Power Inductor, SMS-ME3015, Fixed inductor, SMD, magnetically shielded, https://neosid.de/import-data/product-pdf/neoFestind_SMSME3015.pdf, Alternate KiCad Library -Neosid Power Inductor SMS-ME3015 Fixed inductor SMD magnetically shielded -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Neosid_SMs42 -Neosid, Inductor, SMs42, Fixed inductor, SMD, magneticaly shielded, https://neosid.de/import-data/product-pdf/neoFestind_ma_SMs42.pdf, Alternate KiCad Library -Neosid Inductor SMs42 Fixed inductor SMD magneticaly shielded -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Neosid_SMs50 -Neosid, Inductor, SMs50, Fixed inductor, SMD, magneticaly shielded, https://neosid.de/import-data/product-pdf/neoFestind_ma_SMs50.pdf, Alternate KiCad Library -Neosid Inductor SMs50 Fixed inductor SMD magneticaly shielded -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Neosid_SMs85 -Neosid, Inductor, SMs85, Fixed inductor, SMD, magnetically shielded, https://neosid.de/import-data/product-pdf/neoFestind_ma_SMs85.pdf, Alternate KiCad Library -Neosid Inductor SMs85 Fixed inductor SMD magnetically shielded -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Neosid_SMs95_SMs95p -Neosid, Inductor, SMs95, Fixed inductor, SMD, magnetically shielded, https://neosid.de/import-data/product-pdf/neoFestind_SMs95SMs95p.pdf, Alternate KiCad Library -Neosid Inductor SMs95 Fixed inductor SMD magnetically shielded -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Pulse_PA4320 -Inductor SMD Pulse PA4320 http://productfinder.pulseeng.com/products/datasheets/P787.pdf, Alternate KiCad Library -Inductor SMD Pulse PA4320 -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Sagami_CER1242B -Inductor, Sagami, h=4.5mm, http://www.sagami-elec.co.jp/file/CER1242B-CER1257B-CER1277B.pdf, Alternate KiCad Library -inductor sagami cer12xxb smd -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Sagami_CER1257B -Inductor, Sagami, h=6.0mm, http://www.sagami-elec.co.jp/file/CER1242B-CER1257B-CER1277B.pdf, Alternate KiCad Library -inductor sagami cer12xxb smd -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Sagami_CER1277B -Inductor, Sagami, h=8.0mm, http://www.sagami-elec.co.jp/file/CER1242B-CER1257B-CER1277B.pdf, Alternate KiCad Library -inductor sagami cer12xxb smd -0 -2 -2 -PCM_Inductor_SMD_AKL -L_SigTra_SC3316F -http://www.signaltransformer.com/sites/all/pdf/smd/P080_SC3316F.pdf, Alternate KiCad Library -Choke -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Sumida_CDMC6D28_7.25x6.5mm -SMD Power Inductor (http://products.sumida.com/products/pdf/CDMC6D28.pdf), Alternate KiCad Library -Inductor Sumida SMD CDMC6D28 -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Sunlord_MWSA0518_5.4x5.2mm -Inductor, Sunlord, MWSA0518, 5.4mmx5.2mm, Alternate KiCad Library -inductor Sunlord smd -0 -2 -2 -PCM_Inductor_SMD_AKL -L_TDK_NLV25_2.5x2.0mm -TDK NLV25, 2.5x2.0x1.8mm, https://product.tdk.com/info/en/catalog/datasheets/inductor_commercial_standard_nlv25-ef_en.pdf, Alternate KiCad Library -tdk nlv25 nlcv25 nlfv25 -0 -2 -2 -PCM_Inductor_SMD_AKL -L_TDK_NLV32_3.2x2.5mm -TDK NLV32, 3.2x2.5x2.2mm, https://product.tdk.com/info/en/catalog/datasheets/inductor_commercial_standard_nlv32-ef_en.pdf, Alternate KiCad Library -tdk nlv32 nlcv32 nlfv32 -0 -2 -2 -PCM_Inductor_SMD_AKL -L_TDK_SLF6025 -Inductor, TDK, SLF6025, 6.0mmx6.0mm (Script generated with StandardBox.py) (https://product.tdk.com/info/en/document/catalog/smd/inductor_commercial_power_slf6025_en.pdf), Alternate KiCad Library -Inductor TDK_SLF6025 -0 -2 -2 -PCM_Inductor_SMD_AKL -L_TDK_SLF6028 -Inductor, TDK, SLF6028, 6.0mmx6.0mm (Script generated with StandardBox.py) (https://product.tdk.com/info/en/document/catalog/smd/inductor_commercial_power_slf6028_en.pdf), Alternate KiCad Library -Inductor TDK_SLF6028 -0 -2 -2 -PCM_Inductor_SMD_AKL -L_TDK_SLF6045 -Inductor, TDK, SLF6045, 6.0mmx6.0mm (Script generated with StandardBox.py) (https://product.tdk.com/info/en/document/catalog/smd/inductor_commercial_power_slf6045_en.pdf), Alternate KiCad Library -Inductor TDK_SLF6045 -0 -2 -2 -PCM_Inductor_SMD_AKL -L_TDK_SLF7032 -Inductor, TDK, SLF7032, 7.0mmx7.0mm (Script generated with StandardBox.py) (https://product.tdk.com/info/en/document/catalog/smd/inductor_commercial_power_slf7032_en.pdf), Alternate KiCad Library -Inductor TDK_SLF7032 -0 -2 -2 -PCM_Inductor_SMD_AKL -L_TDK_SLF7045 -Inductor, TDK, SLF7045, 7.0mmx7.0mm (Script generated with StandardBox.py) (https://product.tdk.com/info/en/document/catalog/smd/inductor_commercial_power_slf7045_en.pdf), Alternate KiCad Library -Inductor TDK_SLF7045 -0 -2 -2 -PCM_Inductor_SMD_AKL -L_TDK_SLF7055 -Inductor, TDK, SLF7055, 7.0mmx7.0mm (Script generated with StandardBox.py) (https://product.tdk.com/info/en/document/catalog/smd/inductor_commercial_power_slf7055_en.pdf), Alternate KiCad Library -Inductor TDK_SLF7055 -0 -2 -2 -PCM_Inductor_SMD_AKL -L_TDK_SLF10145 -Inductor, TDK, SLF10145, 10.1mmx10.1mm (Script generated with StandardBox.py) (https://product.tdk.com/info/en/catalog/datasheets/inductor_automotive_power_slf10145-h_en.pdf), Alternate KiCad Library -Inductor TDK_SLF10145 -0 -2 -2 -PCM_Inductor_SMD_AKL -L_TDK_SLF10165 -Inductor, TDK, SLF10165, 10.1mmx10.1mm (Script generated with StandardBox.py) (https://product.tdk.com/info/en/catalog/datasheets/inductor_commercial_power_slf10165_en.pdf), Alternate KiCad Library -Inductor TDK_SLF10165 -0 -2 -2 -PCM_Inductor_SMD_AKL -L_TDK_SLF12555 -Inductor, TDK, SLF12555, 12.5mmx12.5mm (Script generated with StandardBox.py) (https://product.tdk.com/info/en/catalog/datasheets/inductor_commercial_power_slf12555_en.pdf), Alternate KiCad Library -Inductor SLF12555 -0 -2 -2 -PCM_Inductor_SMD_AKL -L_TDK_SLF12565 -Inductor, TDK, SLF12565, 12.5mmx12.5mm (Script generated with StandardBox.py) (https://product.tdk.com/info/en/catalog/datasheets/inductor_automotive_power_slf12565-h_en.pdf), Alternate KiCad Library -Inductor SLF12565 -0 -2 -2 -PCM_Inductor_SMD_AKL -L_TDK_SLF12575 -Inductor, TDK, SLF12575, 12.5mmx12.5mm (Script generated with StandardBox.py) (https://product.tdk.com/info/en/catalog/datasheets/inductor_automotive_power_slf12575-h_en.pdf), Alternate KiCad Library -Inductor SLF12575 -0 -2 -2 -PCM_Inductor_SMD_AKL -L_TDK_VLF10040 -Inductor,TDK, TDK-VLP-8040, 8.6mmx8.6mm, Alternate KiCad Library -inductor TDK VLP smd VLF10040 -0 -2 -2 -PCM_Inductor_SMD_AKL -L_TDK_VLP8040 -Inductor,TDK, TDK-VLP-8040, 8.6mmx8.6mm, Alternate KiCad Library -inductor TDK VLP smd VLP8040 -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Taiyo-Yuden_MD-1616 -Inductor, Taiyo Yuden, MD series, Taiyo-Yuden_MD-1616, 1.6mmx1.6mm, Alternate KiCad Library -inductor taiyo-yuden md smd -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Taiyo-Yuden_MD-2020 -Inductor, Taiyo Yuden, MD series, Taiyo-Yuden_MD-2020, 2.0mmx2.0mm, Alternate KiCad Library -inductor taiyo-yuden md smd -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Taiyo-Yuden_MD-3030 -Inductor, Taiyo Yuden, MD series, Taiyo-Yuden_MD-3030, 3.0mmx3.0mm, Alternate KiCad Library -inductor taiyo-yuden md smd -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Taiyo-Yuden_MD-4040 -Inductor, Taiyo Yuden, MD series, Taiyo-Yuden_MD-4040, 4.0mmx4.0mm, Alternate KiCad Library -inductor taiyo-yuden md smd -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Taiyo-Yuden_MD-5050 -Inductor, Taiyo Yuden, MD series, Taiyo-Yuden_MD-5050, 5.0mmx5.0mm, Alternate KiCad Library -inductor taiyo-yuden md smd -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Taiyo-Yuden_NR-20xx -Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-20xx, 2.0mmx2.0mm, Alternate KiCad Library -inductor taiyo-yuden nr smd -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Taiyo-Yuden_NR-20xx_BigPads -Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-20xx, 2.0mmx2.0mm, Alternate KiCad Library -inductor taiyo-yuden nr smd -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Taiyo-Yuden_NR-20xx_HandSoldering -Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-20xx, 2.0mmx2.0mm, Alternate KiCad Library -inductor taiyo-yuden nr smd -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Taiyo-Yuden_NR-24xx -Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-24xx, 2.4mmx2.4mm, Alternate KiCad Library -inductor taiyo-yuden nr smd -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Taiyo-Yuden_NR-24xx_BigPads -Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-24xx, 2.4mmx2.4mm, Alternate KiCad Library -inductor taiyo-yuden nr smd -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Taiyo-Yuden_NR-24xx_HandSoldering -Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-24xx, 2.4mmx2.4mm, Alternate KiCad Library -inductor taiyo-yuden nr smd -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Taiyo-Yuden_NR-30xx -Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-30xx, 3.0mmx3.0mm, Alternate KiCad Library -inductor taiyo-yuden nr smd -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Taiyo-Yuden_NR-30xx_BigPads -Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-30xx, 3.0mmx3.0mm, Alternate KiCad Library -inductor taiyo-yuden nr smd -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Taiyo-Yuden_NR-30xx_HandSoldering -Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-30xx, 3.0mmx3.0mm, Alternate KiCad Library -inductor taiyo-yuden nr smd -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Taiyo-Yuden_NR-40xx -Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-40xx, 4.0mmx4.0mm, Alternate KiCad Library -inductor taiyo-yuden nr smd -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Taiyo-Yuden_NR-40xx_BigPads -Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-40xx, 4.0mmx4.0mm, Alternate KiCad Library -inductor taiyo-yuden nr smd -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Taiyo-Yuden_NR-40xx_HandSoldering -Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-40xx, 4.0mmx4.0mm, Alternate KiCad Library -inductor taiyo-yuden nr smd -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Taiyo-Yuden_NR-50xx -Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-50xx, 4.9mmx4.9mm, Alternate KiCad Library -inductor taiyo-yuden nr smd -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Taiyo-Yuden_NR-50xx_BigPads -Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-50xx, 4.9mmx4.9mm, Alternate KiCad Library -inductor taiyo-yuden nr smd -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Taiyo-Yuden_NR-50xx_HandSoldering -Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-50xx, 4.9mmx4.9mm, Alternate KiCad Library -inductor taiyo-yuden nr smd -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Taiyo-Yuden_NR-60xx -Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-60xx, 6.0mmx6.0mm, Alternate KiCad Library -inductor taiyo-yuden nr smd -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Taiyo-Yuden_NR-60xx_BigPads -Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-60xx, 6.0mmx6.0mm, Alternate KiCad Library -inductor taiyo-yuden nr smd -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Taiyo-Yuden_NR-60xx_HandSoldering -Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-60xx, 6.0mmx6.0mm, Alternate KiCad Library -inductor taiyo-yuden nr smd -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Taiyo-Yuden_NR-80xx -Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-80xx, 8.0mmx8.0mm, Alternate KiCad Library -inductor taiyo-yuden nr smd -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Taiyo-Yuden_NR-80xx_BigPads -Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-80xx, 8.0mmx8.0mm, Alternate KiCad Library -inductor taiyo-yuden nr smd -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Taiyo-Yuden_NR-80xx_HandSoldering -Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-80xx, 8.0mmx8.0mm, Alternate KiCad Library -inductor taiyo-yuden nr smd -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Taiyo-Yuden_NR-10050_9.8x10.0mm -Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-10050, 9.8mmx10.0mm, https://ds.yuden.co.jp/TYCOMPAS/or/specSheet?pn=NR10050T1R3N, Alternate KiCad Library -inductor taiyo-yuden nr smd -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Taiyo-Yuden_NR-10050_9.8x10.0mm_BigPads -Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-10050, 9.8mmx10.0mm, https://ds.yuden.co.jp/TYCOMPAS/or/specSheet?pn=NR10050T1R3N, Alternate KiCad Library -inductor taiyo-yuden nr smd -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Taiyo-Yuden_NR-10050_9.8x10.0mm_HandSoldering -Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-10050, 9.8mmx10.0mm, https://ds.yuden.co.jp/TYCOMPAS/or/specSheet?pn=NR10050T1R3N, Alternate KiCad Library -inductor taiyo-yuden nr smd -0 -2 -2 -PCM_Inductor_SMD_AKL -L_TracoPower_TCK-047_5.2x5.8mm -Inductor, Traco, TCK-047, 5.2x5.8mm, https://www.tracopower.com/products/tck047.pdf, Alternate KiCad Library -inductor smd traco -0 -2 -2 -PCM_Inductor_SMD_AKL -L_TracoPower_TCK-141 -Choke, SMD, 4.0x4.0mm 2.1mm height, https://www.tracopower.com/products/tck141.pdf, Alternate KiCad Library -Choke SMD -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Vishay_IHLP-1212 -Inductor, Vishay, IHLP series, 3.0mmx3.0mm, Alternate KiCad Library -inductor vishay ihlp smd -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Vishay_IHLP-1616 -Inductor, Vishay, IHLP series, 4.1mmx4.1mm, Alternate KiCad Library -inductor vishay ihlp smd -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Vishay_IHLP-2020 -Inductor, Vishay, IHLP series, 5.1mmx5.1mm, Alternate KiCad Library -inductor vishay ihlp smd -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Vishay_IHLP-2525 -Inductor, Vishay, IHLP series, 6.3mmx6.3mm, Alternate KiCad Library -inductor vishay ihlp smd -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Vishay_IHLP-4040 -Inductor, Vishay, IHLP series, 10.2mmx10.2mm, Alternate KiCad Library -inductor vishay ihlp smd -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Vishay_IHLP-5050 -Inductor, Vishay, IHLP series, 12.7mmx12.7mm, Alternate KiCad Library -inductor vishay ihlp smd -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Vishay_IHLP-6767 -Inductor, Vishay, IHLP series, 17.0mmx17.0mm, Alternate KiCad Library -inductor vishay ihlp smd -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Vishay_IHSM-3825 -Inductor, Vishay, Vishay_IHSM-3825, http://www.vishay.com/docs/34018/ihsm3825.pdf, 11.2mmx6.3mm, Alternate KiCad Library -inductor vishay icsm smd -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Vishay_IHSM-4825 -Inductor, Vishay, Vishay_IHSM-4825, http://www.vishay.com/docs/34019/ihsm4825.pdf, 13.7mmx6.3mm, Alternate KiCad Library -inductor vishay icsm smd -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Vishay_IHSM-5832 -Inductor, Vishay, Vishay_IHSM-5832, http://www.vishay.com/docs/34020/ihsm5832.pdf, 16.3mmx8.1mm, Alternate KiCad Library -inductor vishay icsm smd -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Vishay_IHSM-7832 -Inductor, Vishay, Vishay_IHSM-7832, http://www.vishay.com/docs/34021/ihsm7832.pdf, 19.8mmx8.1mm, Alternate KiCad Library -inductor vishay icsm smd -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Wuerth_HCI-1030 -Inductor, Wuerth Elektronik, Wuerth_HCI-1030, 10.6mmx10.6mm, Alternate KiCad Library -inductor Wuerth hci smd -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Wuerth_HCI-1040 -Inductor, Wuerth Elektronik, Wuerth_HCI-1040, 10.2mmx10.2mm, Alternate KiCad Library -inductor Wuerth hci smd -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Wuerth_HCI-1050 -Inductor, Wuerth Elektronik, Wuerth_HCI-1050, 10.2mmx10.2mm, Alternate KiCad Library -inductor Wuerth hci smd -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Wuerth_HCI-1335 -Inductor, Wuerth Elektronik, Wuerth_HCI-1335, 12.8mmx12.8mm, Alternate KiCad Library -inductor Wuerth hci smd -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Wuerth_HCI-1350 -Inductor, Wuerth Elektronik, Wuerth_HCI-1350, 12.8mmx12.8mm, Alternate KiCad Library -inductor Wuerth hci smd -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Wuerth_HCI-1365 -Inductor, Wuerth Elektronik, Wuerth_HCI-1365, 12.8mmx12.8mm, Alternate KiCad Library -inductor Wuerth hci smd -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Wuerth_HCI-1890 -Inductor, Wuerth Elektronik, Wuerth_HCI-1890, 18.2mmx18.2mm, Alternate KiCad Library -inductor Wuerth hci smd -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Wuerth_HCI-2212 -Inductor, Wuerth Elektronik, Wuerth_HCI-2212, 22.5mmx22.0mm, Alternate KiCad Library -inductor Wuerth hci smd -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Wuerth_HCI-5040 -Inductor, Wuerth Elektronik, Wuerth_HCI-5040, 5.5mmx5.2mm, Alternate KiCad Library -inductor Wuerth hci smd -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Wuerth_HCI-7030 -Inductor, Wuerth Elektronik, Wuerth_HCI-7030, 6.9mmx6.9mm, Alternate KiCad Library -inductor Wuerth hci smd -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Wuerth_HCI-7040 -Inductor, Wuerth Elektronik, Wuerth_HCI-7040, 6.9mmx6.9mm, Alternate KiCad Library -inductor Wuerth hci smd -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Wuerth_HCI-7050 -Inductor, Wuerth Elektronik, Wuerth_HCI-7050, 6.9mmx6.9mm, Alternate KiCad Library -inductor Wuerth hci smd -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Wuerth_HCM-1050 -Inductor, Wuerth Elektronik, Wuerth_HCM-1050, 10.2mmx7.0mm, Alternate KiCad Library -inductor Wuerth hcm smd -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Wuerth_HCM-1052 -Inductor, Wuerth Elektronik, Wuerth_HCM-1052, 10.5mmx10.3mm, Alternate KiCad Library -inductor Wuerth hcm smd -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Wuerth_HCM-1070 -Inductor, Wuerth Elektronik, Wuerth_HCM-1070, 10.1mmx7.0mm, Alternate KiCad Library -inductor Wuerth hcm smd -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Wuerth_HCM-1078 -Inductor, Wuerth Elektronik, Wuerth_HCM-1078, 9.4mmx6.2mm, Alternate KiCad Library -inductor Wuerth hcm smd -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Wuerth_HCM-1190 -Inductor, Wuerth Elektronik, Wuerth_HCM-1190, 10.5mmx11.0mm, Alternate KiCad Library -inductor Wuerth hcm smd -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Wuerth_HCM-1240 -Inductor, Wuerth Elektronik, Wuerth_HCM-1240, 10.0mmx11.8mm, Alternate KiCad Library -inductor Wuerth hcm smd -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Wuerth_HCM-1350 -Inductor, Wuerth Elektronik, Wuerth_HCM-1350, 13.5mmx13.3mm, Alternate KiCad Library -inductor Wuerth hcm smd -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Wuerth_HCM-1390 -Inductor, Wuerth Elektronik, Wuerth_HCM-1390, 12.5mmx13.0mm, Alternate KiCad Library -inductor Wuerth hcm smd -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Wuerth_HCM-7050 -Inductor, Wuerth Elektronik, Wuerth_HCM-7050, 7.2mmx7.0mm, Alternate KiCad Library -inductor Wuerth hcm smd -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Wuerth_HCM-7070 -Inductor, Wuerth Elektronik, Wuerth_HCM-7070, 7.4mmx7.2mm, Alternate KiCad Library -inductor Wuerth hcm smd -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Wuerth_MAPI-1610 -Inductor, Wuerth Elektronik, Wuerth_MAPI-1610, 1.6mmx1.6mm, Alternate KiCad Library -inductor Wuerth smd -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Wuerth_MAPI-2010 -Inductor, Wuerth Elektronik, Wuerth_MAPI-2010, 2.0mmx1.6mm, Alternate KiCad Library -inductor Wuerth smd -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Wuerth_MAPI-2506 -Inductor, Wuerth Elektronik, Wuerth_MAPI-2506, 2.5mmx2.0mm, Alternate KiCad Library -inductor Wuerth smd -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Wuerth_MAPI-2508 -Inductor, Wuerth Elektronik, Wuerth_MAPI-2508, 2.5mmx2.0mm, Alternate KiCad Library -inductor Wuerth smd -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Wuerth_MAPI-2510 -Inductor, Wuerth Elektronik, Wuerth_MAPI-2510, 2.5mmx2.0mm, Alternate KiCad Library -inductor Wuerth smd -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Wuerth_MAPI-2512 -Inductor, Wuerth Elektronik, Wuerth_MAPI-2512, 2.5mmx2.0mm, Alternate KiCad Library -inductor Wuerth smd -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Wuerth_MAPI-3010 -Inductor, Wuerth Elektronik, Wuerth_MAPI-3010, 3.0mmx3.0mm, Alternate KiCad Library -inductor Wuerth smd -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Wuerth_MAPI-3012 -Inductor, Wuerth Elektronik, Wuerth_MAPI-3012, 3.0mmx3.0mm, Alternate KiCad Library -inductor Wuerth smd -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Wuerth_MAPI-3015 -Inductor, Wuerth Elektronik, Wuerth_MAPI-3015, 3.0mmx3.0mm, Alternate KiCad Library -inductor Wuerth smd -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Wuerth_MAPI-3020 -Inductor, Wuerth Elektronik, Wuerth_MAPI-3020, 3.0mmx3.0mm, Alternate KiCad Library -inductor Wuerth smd -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Wuerth_MAPI-4020 -Inductor, Wuerth Elektronik, Wuerth_MAPI-4020, 4.0mmx4.0mm, Alternate KiCad Library -inductor Wuerth smd -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Wuerth_MAPI-4030 -Inductor, Wuerth Elektronik, Wuerth_MAPI-4030, 4.0mmx4.0mm, Alternate KiCad Library -inductor Wuerth smd -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Wuerth_WE-DD-Typ-L-Typ-XL-Typ-XXL -Shielded Coupled Inductor, Wuerth Elektronik, WE-DD, SMD, Typ L, Typ XL, Typ XXL, https://katalog.we-online.com/pbs/datasheet/744874001.pdf, Alternate KiCad Library -Choke Coupled Double Inductor SMD Wuerth WE-DD TypL TypXL TypXXL -0 -4 -4 -PCM_Inductor_SMD_AKL -L_Wuerth_WE-DD-Typ-M-Typ-S -Shielded Coupled Inductor, Wuerth Elektronik, WE-DD, SMD, Typ M, Typ S, https://katalog.we-online.com/pbs/datasheet/744878001.pdf, https://katalog.we-online.de/pbs/datasheet/744877001.pdf, Alternate KiCad Library -Choke Coupled Double Inductor SMD Wuerth WE-DD TypM TypS -0 -4 -4 -PCM_Inductor_SMD_AKL -L_Wuerth_WE-GF-1210 -Unshielded Inductor, Wuerth Elektronik, WE-GF, SMD, 1210, https://www.we-online.de/katalog/datasheet/74476401.pdf, Alternate KiCad Library -Unshielded Inductor WE-GF 1210 Wuerth -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Wuerth_WE-PD-Typ-7345 -Shielded Power Inductor, Wuerth Elektronik, WE-PD, SMD, 7345, https://katalog.we-online.com/pbs/datasheet/744777001.pdf, Alternate KiCad Library -Choke Shielded Power Inductor WE-PD 7345 Wuerth -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Wuerth_WE-PD-Typ-LS -Shielded Power Inductor, Wuerth Elektronik, WE-PD, SMD, Typ LS, https://katalog.we-online.com/pbs/datasheet/7447715906.pdf, Alternate KiCad Library -Choke Shielded Power Inductor WE-PD TypLS Wuerth -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Wuerth_WE-PD-Typ-LS_BigPads -Shielded Power Inductor, Wuerth Elektronik, WE-PD, SMD, Typ LS, Handsoldering, https://katalog.we-online.com/pbs/datasheet/7447715906.pdf, Alternate KiCad Library -Choke Shielded Power Inductor WE-PD TypLS Wuerth -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Wuerth_WE-PD-Typ-LS_Handsoldering -Shielded Power Inductor, Wuerth Elektronik, WE-PD, SMD, Typ LS, Handsoldering, https://katalog.we-online.com/pbs/datasheet/7447715906.pdf, Alternate KiCad Library -Choke Shielded Power Inductor WE-PD TypLS Wuerth -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Wuerth_WE-PD-Typ-M-Typ-S -Shielded Power Inductor, Wuerth Elektronik, WE-PD, SMT, Typ M, Typ S, https://katalog.we-online.com/pbs/datasheet/744778005.pdf, Alternate KiCad Library -Choke Shielded Power Inductor WE-PD TypM TypS Wuerth -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Wuerth_WE-PD-Typ-M-Typ-S_BigPads -Shielded Power Inductor, Wuerth Elektronik, WE-PD, SMT, Typ M, Typ S, Handsoldering, https://katalog.we-online.com/pbs/datasheet/744778005.pdf, Alternate KiCad Library -Choke Shielded Power Inductor WE-PD TypM TypS Wuerth -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Wuerth_WE-PD-Typ-M-Typ-S_Handsoldering -Shielded Power Inductor, Wuerth Elektronik, WE-PD, SMT, Typ M, Typ S, Handsoldering, https://katalog.we-online.com/pbs/datasheet/744778005.pdf, Alternate KiCad Library -Choke Shielded Power Inductor WE-PD TypM TypS Wuerth -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Wuerth_WE-PD2-Typ-L -Power Inductor, Wuerth Elektronik, WE-PD2, SMD, Typ L, , https://katalog.we-online.com/pbs/datasheet/74477510.pdf, Alternate KiCad Library -Choke Power Inductor WE-PD2 TypL Wuerth -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Wuerth_WE-PD2-Typ-MS -Power Inductor, Wuerth Elektronik, WE-PD2, SMD, Typ MS, https://katalog.we-online.com/pbs/datasheet/744774022.pdf, Alternate KiCad Library -Choke Power Inductor WE-PD2 TypMS Wuerth -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Wuerth_WE-PD2-Typ-XL -Power Inductor, Wuerth Elektronik, WE-PD2, SMT, Typ XL, https://katalog.we-online.com/pbs/datasheet/744776012.pdf, Alternate KiCad Library -Choke Power Inductor WE-PD2 TypXL Wuerth -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Wuerth_WE-PD4-Typ-X -Power Inductor, Wuerth Elektronik, WE-PD4, SMT, Typ X, https://katalog.we-online.de/pbs/datasheet/74458001.pdf, Alternate KiCad Library -Choke Power Inductor WE-PD4 TypX Wuerth -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Wuerth_WE-PDF -Shielded Power Inductor, Wuerth Elektronik, WE-PDF, SMD, https://katalog.we-online.de/pbs/datasheet/7447797022.pdf, Alternate KiCad Library -Choke Shielded Power Inductor WE-PDF Wuerth -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Wuerth_WE-PDF_BigPads -Shielded Power Inductor, Wuerth Elektronik, WE-PDF, SMD, Handsoldering, https://katalog.we-online.de/pbs/datasheet/7447797022.pdf, Alternate KiCad Library -Choke Shielded Power Inductor WE-PDF Wuerth Handsoldering -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Wuerth_WE-PDF_Handsoldering -Shielded Power Inductor, Wuerth Elektronik, WE-PDF, SMD, Handsoldering, https://katalog.we-online.de/pbs/datasheet/7447797022.pdf, Alternate KiCad Library -Choke Shielded Power Inductor WE-PDF Wuerth Handsoldering -0 -2 -2 -PCM_Inductor_SMD_AKL -L_Wuerth_WE-TPC-3816 -L_Wuerth_WE-TPC-3816 StepUp generated footprint, http://katalog.we-online.de/pbs/datasheet/7440310047.pdf, Alternate KiCad Library -wurth wuerth smd inductor -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_6.3x6.3_H3 -Choke, SMD, 6.3x6.3mm 3mm height, Alternate KiCad Library -Choke SMD -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_7.3x7.3_H3.5 -Choke, SMD, 7.3x7.3mm 3.5mm height, Alternate KiCad Library -Choke SMD -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_7.3x7.3_H4.5 -Choke, SMD, 7.3x7.3mm 4.5mm height, Alternate KiCad Library -Choke SMD -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_10.4x10.4_H4.8 -Choke, SMD, 10.4x10.4mm 4.8mm height, Alternate KiCad Library -Choke SMD -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_12x12mm_H4.5mm -Choke, SMD, 12x12mm 4.5mm height, Alternate KiCad Library -Choke SMD -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_12x12mm_H6mm -Choke, SMD, 12x12mm 6mm height, Alternate KiCad Library -Choke SMD -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_12x12mm_H8mm -Choke, SMD, 12x12mm 8mm height, Alternate KiCad Library -Choke SMD -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_0201_0603Metric -Inductor SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), Alternate KiCad Library -inductor -0 -4 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_0201_0603Metric_Pad0.64x0.40mm -Inductor SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), Alternate KiCad Library -inductor handsolder -0 -4 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_0402_1005Metric -Inductor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -inductor -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_0402_1005Metric_Pad0.77x0.64mm -Inductor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -inductor handsolder -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_0603_1608Metric -Inductor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -inductor -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_0603_1608Metric_Pad1.05x0.95mm -Inductor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -inductor handsolder -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_0805_2012Metric -Inductor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 80, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library -inductor -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_0805_2012Metric_Pad1.05x1.20mm -Inductor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 80, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library -inductor handsolder -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_0805_2012Metric_Pad1.15x1.40mm -Inductor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), Alternate KiCad Library -inductor handsolder -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_01005_0402Metric -Inductor SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), Alternate KiCad Library -inductor -0 -4 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_01005_0402Metric_Pad0.57x0.30mm -Inductor SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), Alternate KiCad Library -inductor handsolder -0 -4 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_1008_2520Metric -Inductor SMD 1008 (2520 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://ecsxtal.com/store/pdf/ECS-MPI2520-SMD-POWER-INDUCTOR.pdf), Alternate KiCad Library -inductor -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_1008_2520Metric_Pad1.43x2.20mm -Inductor SMD 1008 (2520 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://ecsxtal.com/store/pdf/ECS-MPI2520-SMD-POWER-INDUCTOR.pdf), Alternate KiCad Library -inductor handsolder -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_1206_3216Metric -Inductor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 80, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library -inductor -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_1206_3216Metric_Pad1.22x1.90mm -Inductor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 80, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library -inductor handsolder -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_1206_3216Metric_Pad1.42x1.75mm -Inductor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -inductor handsolder -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_1210_3225Metric -Inductor SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -inductor -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_1210_3225Metric_Pad1.42x2.65mm -Inductor SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -inductor handsolder -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_1806_4516Metric -Inductor SMD 1806 (4516 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.modelithics.com/models/Vendor/MuRata/BLM41P.pdf), Alternate KiCad Library -inductor -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_1806_4516Metric_Pad1.57x1.80mm -Capacitor SMD 1806 (4516 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.modelithics.com/models/Vendor/MuRata/BLM41P.pdf), Alternate KiCad Library -inductor handsolder -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_1812_4532Metric -Inductor SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), Alternate KiCad Library -inductor -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_1812_4532Metric_Pad1.30x3.40mm -Inductor SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), Alternate KiCad Library -inductor handsolder -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_2010_5025Metric -Inductor SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -inductor -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_2010_5025Metric_Pad1.52x2.65mm -Inductor SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -inductor handsolder -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_2512_6332Metric -Inductor SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -inductor -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_2512_6332Metric_Pad1.52x3.35mm -Inductor SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -inductor handsolder -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_2816_7142Metric -Inductor SMD 2816 (7142 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), Alternate KiCad Library -inductor -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_2816_7142Metric_Pad3.20x4.45mm -Inductor SMD 2816 (7142 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), Alternate KiCad Library -inductor handsolder -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Abracon_ASPI-0630LR -smd shielded power inductor https://abracon.com/Magnetics/power/ASPI-0630LR.pdf, Alternate KiCad Library -inductor abracon smd shielded -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Abracon_ASPI-3012S -smd shielded power inductor http://www.abracon.com/Magnetics/power/ASPI-3012S.pdf, Alternate KiCad Library -inductor abracon smd shielded -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Bourns-SRN1060 -Bourns SRN1060 series SMD inductor https://www.bourns.com/docs/Product-Datasheets/SRN1060.pdf, Alternate KiCad Library -Bourns SRN1060 SMD inductor -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Bourns-SRN4018 -Bourns SRN4018 series SMD inductor, https://www.bourns.com/docs/Product-Datasheets/SRN4018.pdf, Alternate KiCad Library -Bourns SRN4018 SMD inductor -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Bourns-SRN6028 -Bourns SRN6028 series SMD inductor, Alternate KiCad Library -Bourns SRN6028 SMD inductor -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Bourns-SRN8040_8x8.15mm -Bourns SRN8040 series SMD inductor 8x8.15mm, https://www.bourns.com/docs/Product-Datasheets/SRN8040.pdf, Alternate KiCad Library -Bourns SRN8040 SMD inductor -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Bourns-SRR1005 -Bourns SRR1005 series SMD inductor, Alternate KiCad Library -Bourns SRR1005 SMD inductor -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Bourns-SRU1028_10.0x10.0mm -Bourns SRU1028 series SMD inductor, https://www.bourns.com/docs/Product-Datasheets/SRU1028.pdf, Alternate KiCad Library -Bourns SRU1028 SMD inductor -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Bourns-SRU8028_8.0x8.0mm -Bourns SRU8028 series SMD inductor, Alternate KiCad Library -Bourns SRU8028 SMD inductor -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Bourns-SRU8043 -Bourns SRU8043 series SMD inductor, Alternate KiCad Library -Bourns SRU8043 SMD inductor -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Bourns_SDR1806 -https://www.bourns.com/docs/Product-Datasheets/SDR1806.pdf, Alternate KiCad Library -Bourns SDR1806 -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Bourns_SRF1260 -Inductor, Bourns, SRF1260, 12.5mmx12.5mm (Script generated with StandardBox.py) (https://www.bourns.com/docs/Product-Datasheets/SRF1260.pdf), Alternate KiCad Library -Inductor Bourns_SRF1260 -0 -4 -4 -PCM_Inductor_SMD_Handsoldering_AKL -L_Bourns_SRN6045TA -http://www.bourns.com/docs/product-datasheets/srn6045ta.pdf, Alternate KiCad Library -Semi-shielded Power Inductor -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Bourns_SRN8040TA -https://www.bourns.com/docs/product-datasheets/srn8040ta.pdf, Alternate KiCad Library -Inductor -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Bourns_SRP1245A -Bourns SRP1245A series SMD inductor http://www.bourns.com/docs/Product-Datasheets/SRP1245A.pdf, Alternate KiCad Library -Bourns SRP1245A SMD inductor -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Bourns_SRP2313AA -Bourns SRR1260 series SMD inductor http://www.bourns.com/docs/product-datasheets/srp2313aa.pdf, Alternate KiCad Library -Bourns SRR1260 SMD inductor -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Bourns_SRP5030T -Inductor, Bourns, SRP5030T, 5.7mmx5.2mm (Script generated with StandardBox.py) (https://www.bourns.com/data/global/pdfs/SRP5030T.pdf), Alternate KiCad Library -Inductor Bourns_SRP5030T -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Bourns_SRP7028A_7.3x6.6mm -Shielded Power Inductors (https://www.bourns.com/docs/product-datasheets/srp7028a.pdf), Alternate KiCad Library -Shielded Inductors Bourns SMD SRP7028A -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Bourns_SRR1210A -Bourns SRR1210A series SMD inductor https://www.bourns.com/docs/Product-Datasheets/SRR1210A.pdf, Alternate KiCad Library -Bourns SRR1210A SMD inductor -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Bourns_SRR1260 -Bourns SRR1260 series SMD inductor http://www.bourns.com/docs/Product-Datasheets/SRR1260.pdf, Alternate KiCad Library -Bourns SRR1260 SMD inductor -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Coilcraft_LPS4018 -SMD Inductor Coilcraft LPS4018 https://www.coilcraft.com/pdfs/lps4018.pdf, Alternate KiCad Library -L Coilcraft LPS4018 -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Coilcraft_LPS5030 -Shielded Power Inductor SMD, Coilcraft LPS5030, https://www.coilcraft.com/pdfs/lps5030.pdf, StepUp generated footprint, Alternate KiCad Library -inductor -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Coilcraft_XAL60xx_6.36x6.56mm -Coilcraft XAL60xx series, https://www.coilcraft.com/pdfs/xal60xx.pdf, Alternate KiCad Library -L Coilcraft XAL60xx -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Coilcraft_XAL5030 -L_Coilcraft_XAL5030, Alternate KiCad Library -L Coilcraft XAL5030 -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Coilcraft_XxL4020 -L_Coilcraft_XxL4020 https://www.coilcraft.com/pdfs/xfl4020.pdf, Alternate KiCad Library -L Coilcraft XxL4020 -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Coilcraft_XxL4030 -L_Coilcraft_XxL4030 https://www.coilcraft.com/pdfs/xfl4030.pdf, Alternate KiCad Library -L Coilcraft XxL4030 -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Coilcraft_XxL4040 -L_Coilcraft_XxL4040 https://www.coilcraft.com/pdfs/xal4000.pdf, Alternate KiCad Library -L Coilcraft XxL4040 -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_CommonModeChoke_Coilcraft_0603USB -Coilcraft 0603USB Series Common Mode Choke, https://www.coilcraft.com/pdfs/0603usb.pdf, Alternate KiCad Library -surface mount common mode bead -0 -4 -4 -PCM_Inductor_SMD_Handsoldering_AKL -L_CommonModeChoke_Coilcraft_0805USB -Coilcraft 0805USB Series Common Mode Choke, https://www.coilcraft.com/pdfs/0805usb.pdf, Alternate KiCad Library -surface mount common mode bead -0 -4 -4 -PCM_Inductor_SMD_Handsoldering_AKL -L_CommonModeChoke_Coilcraft_1812CAN -Coilcraft 1812CAN Series Common Mode Choke, https://www.coilcraft.com/pdfs/1812can.pdf, Alternate KiCad Library -surface mount common mode bead -0 -4 -4 -PCM_Inductor_SMD_Handsoldering_AKL -L_CommonModeChoke_Wuerth_WE-SL5 -WE-SL5 SMT Common Mode Line Filter, https://www.we-online.de/katalog/en/WE-SL5/, https://www.we-online.de/katalog/datasheet/744272471.pdf, Alternate KiCad Library -SMT Common Mode Line Filter -0 -4 -4 -PCM_Inductor_SMD_Handsoldering_AKL -L_CommonMode_Wuerth_WE-SL2 -http://katalog.we-online.de/en/pbs/WE-SL2?sid=5fbec16187#vs_t1:c1_ct:1, Alternate KiCad Library -Wuerth WE-SL2 -0 -4 -4 -PCM_Inductor_SMD_Handsoldering_AKL -L_Fastron_PISN -Choke, Drossel, PISN, SMD, Fastron, Alternate KiCad Library -Choke Drossel PISN SMD Fastron -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Fastron_PISN_Handsoldering -Choke, Drossel, PISN, SMD, Fastron, Alternate KiCad Library -Choke Drossel PISN SMD Fastron -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Fastron_PISR -Choke, Drossel, PISR, Fastron, SMD, Alternate KiCad Library -Choke Drossel PISR Fastron SMD -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Fastron_PISR_Handsoldering -Choke, Drossel, PISR, Fastron, SMD, Alternate KiCad Library -Choke Drossel PISR Fastron SMD -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Murata_DEM35xxC -https://www.murata.com/~/media/webrenewal/products/inductor/chip/tokoproducts/wirewoundferritetypeforpl/m_dem3518c.ashx, Alternate KiCad Library -Inductor SMD DEM35xxC -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Murata_LQH2MCNxxxx02_2.0x1.6mm -Inductor, Murata, LQH2MCN_02 series, 1.6x2.0x0.9mm (https://search.murata.co.jp/Ceramy/image/img/P02/JELF243A-0053.pdf), Alternate KiCad Library -chip coil inductor Murata LQH2MC -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Murata_LQH55DN_5.7x5.0mm -Inductor, SMD, 5.7x5.0x4.7mm, https://search.murata.co.jp/Ceramy/image/img/P02/JELF243A-0045.pdf, Alternate KiCad Library -inductor smd -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Neosid_Air-Coil_SML_1turn_HDM0131A -Neosid, Air-Coil, SML, 1turn, HDM0131A, Alternate KiCad Library -Neosid Air-Coil SML 1turn HDM0131A -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Neosid_Air-Coil_SML_2turn_HAM0231A -Neosid, Air-Coil, SML, 2turn, HAM0231A, Alternate KiCad Library -Neosid Air-Coil SML 2turn HAM0231A -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Neosid_Air-Coil_SML_2turn_HDM0231A -Neosid, Air-Coil, SML, 2turn, HDM0231A, Alternate KiCad Library -Neosid Air-Coil SML 2turn HDM0231A -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Neosid_Air-Coil_SML_3turn_HAM0331A -Neosid, Air-Coil, SML, 2turn, HAM0331A, Alternate KiCad Library -Neosid Air-Coil SML 3turn HAM0331A -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Neosid_Air-Coil_SML_3turn_HDM0331A -Neosid, Air-Coil, SML, 3turn, HDM0331A, Alternate KiCad Library -Neosid Air-Coil SML 3turn HDM0331A -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Neosid_Air-Coil_SML_4turn_HAM0431A -Neosid, Air-Coil, SML, 4turn, HAM0431A, Alternate KiCad Library -Neosid Air-Coil SML 4turn HAM0431A -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Neosid_Air-Coil_SML_4turn_HDM0431A -Neosid, Air-Coil, SML, 4turn, HDM0431A, Alternate KiCad Library -Neosid Air-Coil SML 4turn HDM0431A -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Neosid_Air-Coil_SML_5turn_HAM0531A -Neosid, Air-Coil, SML, 5turn, HAM0531A, Alternate KiCad Library -Neosid Air-Coil SML 5turn HAM0531A -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Neosid_Air-Coil_SML_5turn_HDM0531A -Neosid, Air-Coil, SML, 5turn, HDM0531A, Alternate KiCad Library -Neosid Air-Coil SML 5turn HDM0531A -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Neosid_Air-Coil_SML_6-10turn_HAM0631A-HAM1031A -Neosid, Air-Coil, SML, 6-10turn, HAM0631A-HAM1031A, Alternate KiCad Library -Neosid Air-Coil SML 6-10turn HAM0631A-HAM1031A -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Neosid_Air-Coil_SML_6-10turn_HDM0431A-HDM1031A -Neosid, Air-Coil, SML, 6-10turn, HDM0431A-HDM1031A, Alternate KiCad Library -Neosid Air-Coil SML 6-10turn HDM0431A-HDM1031A -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Neosid_Air-Coil_SML_6turn_HAM0631A -Neosid, Air-Coil, SML, 6turn, HAM0631A, Alternate KiCad Library -Neosid Air-Coil SML 6turn HAM0631A -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Neosid_MicroCoil_Ms36-L -Neosid, Micro Coil, Inductor, Ms36-L, SMD, Fixed inductor, anti clockwise, https://neosid.de/en/products/inductors/rod-core-chokes/smd-rod-core-chokes/52026/ms-36/7-h?c=94, Alternate KiCad Library -Neosid Micro Coil Inductor Ms36-L SMD Fixed inductor anti clockwise -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Neosid_Ms42 -Neosid, Inductor, SMs42, Fixed inductor, SMD, magneticaly shielded, https://neosid.de/import-data/product-pdf/neoFestind_Ms42.pdf, Alternate KiCad Library -Neosid Inductor SMs42 Fixed inductor SMD magneticaly shielded -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Neosid_Ms50 -Neosid, Power Inductor, Ms50, SMD, Fixed inductor, https://neosid.de/import-data/product-pdf/neoFestind_Ms50.pdf, Alternate KiCad Library -Neosid Power Inductor Ms50 SMD Fixed inductor -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Neosid_Ms50T -Neosid, Power Inductor, Ms50T, SMD, Fixed inductor, high temperature, https://neosid.de/import-data/product-pdf/neoFestind_Ms50T.pdf, Alternate KiCad Library -Neosid Power Inductor Ms50T SMD Fixed inductor high temperature -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Neosid_Ms85 -Neosid, Ms85, Ms85T, SMD Inductor, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_Ms85.pdf, Alternate KiCad Library -Neosid Ms85 Ms85T SMD Inductor Fixed inductor SMD -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Neosid_Ms85T -Neosid, Ms85, Ms85T, SMD Inductor, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_Ms85T.pdf, Alternate KiCad Library -Neosid Ms85 Ms85T SMD Inductor Fixed inductor SMD -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Neosid_Ms95 -Neosid,Inductor,Ms95, Ms95a, Ms95T, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_Ms95.pdf, Alternate KiCad Library -NeosidInductorMs95 Ms95a Ms95T Fixed inductor SMD -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Neosid_Ms95T -Neosid,Inductor,Ms95, Ms95a, Ms95T, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_Ms95T.pdf, Alternate KiCad Library -NeosidInductorMs95 Ms95a Ms95T Fixed inductor SMD -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Neosid_Ms95a -Neosid,Inductor,Ms95, Ms95a, Ms95T, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_Ms95a.pdf, Alternate KiCad Library -NeosidInductorMs95 Ms95a Ms95T Fixed inductor SMD -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Neosid_SM-NE95H -Neosid, Inductor,SM-NE95H, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_SMNE95H.pdf, Alternate KiCad Library -Neosid Inductor SM-NE95H Fixed inductor SMD -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Neosid_SM-NE127 -Neosid, Inductor, SM-NE127, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_SMNE127.pdf, Alternate KiCad Library -Neosid Inductor SM-NE127 Fixed inductor SMD -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Neosid_SM-NE127_BigPads -Neosid, Inductor, SM-NE127, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_SMNE127.pdf, Alternate KiCad Library -Neosid Inductor SM-NE127 Fixed inductor SMD -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Neosid_SM-NE150 -Neosid, Inductor, SM-NE150, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_SMNE150.pdf, Alternate KiCad Library -Neosid Inductor SM-NE150 Fixed inductor SMD -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Neosid_SM-PIC0512H -Neosid, Inductor, PIC0512H, Power Inductor, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_SMPIC0512H.pdf, Alternate KiCad Library -Neosid Inductor PIC0512H Power Inductor Fixed inductor SMD -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Neosid_SM-PIC0602H -Neosid, Power Inductor, SM-PIC0602H, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_SMPIC0602H.pdf, Alternate KiCad Library -Neosid Power Inductor SM-PIC0602H Fixed inductor SMD -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Neosid_SM-PIC0612H -Neosid, Power Inductor, SM-PIC0612H, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_SMPIC0612H.pdf, Alternate KiCad Library -Neosid Power Inductor SM-PIC0612H Fixed inductor SMD -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Neosid_SM-PIC1004H -Neosid, Inductor, SM-PIC1004H, Fixed inductor, SMD, https://neosid.de/import-data/product-pdf/neoFestind_SMPIC1004H.pdf, Alternate KiCad Library -Neosid Inductor SM-PIC1004H Fixed inductor SMD -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Neosid_SMS-ME3010 -Neosid, Inductor, SMS-ME3010, Fixed inductor, SMD, magnetically shielded, https://neosid.de/import-data/product-pdf/neoFestind_SMSME3010.pdf, Alternate KiCad Library -Neosid Inductor SMS-ME3010 Fixed inductor SMD magnetically shielded -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Neosid_SMS-ME3015 -Neosid, Power Inductor, SMS-ME3015, Fixed inductor, SMD, magnetically shielded, https://neosid.de/import-data/product-pdf/neoFestind_SMSME3015.pdf, Alternate KiCad Library -Neosid Power Inductor SMS-ME3015 Fixed inductor SMD magnetically shielded -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Neosid_SMs42 -Neosid, Inductor, SMs42, Fixed inductor, SMD, magneticaly shielded, https://neosid.de/import-data/product-pdf/neoFestind_ma_SMs42.pdf, Alternate KiCad Library -Neosid Inductor SMs42 Fixed inductor SMD magneticaly shielded -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Neosid_SMs50 -Neosid, Inductor, SMs50, Fixed inductor, SMD, magneticaly shielded, https://neosid.de/import-data/product-pdf/neoFestind_ma_SMs50.pdf, Alternate KiCad Library -Neosid Inductor SMs50 Fixed inductor SMD magneticaly shielded -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Neosid_SMs85 -Neosid, Inductor, SMs85, Fixed inductor, SMD, magnetically shielded, https://neosid.de/import-data/product-pdf/neoFestind_ma_SMs85.pdf, Alternate KiCad Library -Neosid Inductor SMs85 Fixed inductor SMD magnetically shielded -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Neosid_SMs95_SMs95p -Neosid, Inductor, SMs95, Fixed inductor, SMD, magnetically shielded, https://neosid.de/import-data/product-pdf/neoFestind_SMs95SMs95p.pdf, Alternate KiCad Library -Neosid Inductor SMs95 Fixed inductor SMD magnetically shielded -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Pulse_PA4320 -Inductor SMD Pulse PA4320 http://productfinder.pulseeng.com/products/datasheets/P787.pdf, Alternate KiCad Library -Inductor SMD Pulse PA4320 -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Sagami_CER1242B -Inductor, Sagami, h=4.5mm, http://www.sagami-elec.co.jp/file/CER1242B-CER1257B-CER1277B.pdf, Alternate KiCad Library -inductor sagami cer12xxb smd -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Sagami_CER1257B -Inductor, Sagami, h=6.0mm, http://www.sagami-elec.co.jp/file/CER1242B-CER1257B-CER1277B.pdf, Alternate KiCad Library -inductor sagami cer12xxb smd -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Sagami_CER1277B -Inductor, Sagami, h=8.0mm, http://www.sagami-elec.co.jp/file/CER1242B-CER1257B-CER1277B.pdf, Alternate KiCad Library -inductor sagami cer12xxb smd -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_SigTra_SC3316F -http://www.signaltransformer.com/sites/all/pdf/smd/P080_SC3316F.pdf, Alternate KiCad Library -Choke -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Sumida_CDMC6D28_7.25x6.5mm -SMD Power Inductor (http://products.sumida.com/products/pdf/CDMC6D28.pdf), Alternate KiCad Library -Inductor Sumida SMD CDMC6D28 -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Sunlord_MWSA0518_5.4x5.2mm -Inductor, Sunlord, MWSA0518, 5.4mmx5.2mm, Alternate KiCad Library -inductor Sunlord smd -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_TDK_NLV25_2.5x2.0mm -TDK NLV25, 2.5x2.0x1.8mm, https://product.tdk.com/info/en/catalog/datasheets/inductor_commercial_standard_nlv25-ef_en.pdf, Alternate KiCad Library -tdk nlv25 nlcv25 nlfv25 -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_TDK_NLV32_3.2x2.5mm -TDK NLV32, 3.2x2.5x2.2mm, https://product.tdk.com/info/en/catalog/datasheets/inductor_commercial_standard_nlv32-ef_en.pdf, Alternate KiCad Library -tdk nlv32 nlcv32 nlfv32 -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_TDK_SLF6025 -Inductor, TDK, SLF6025, 6.0mmx6.0mm (Script generated with StandardBox.py) (https://product.tdk.com/info/en/document/catalog/smd/inductor_commercial_power_slf6025_en.pdf), Alternate KiCad Library -Inductor TDK_SLF6025 -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_TDK_SLF6028 -Inductor, TDK, SLF6028, 6.0mmx6.0mm (Script generated with StandardBox.py) (https://product.tdk.com/info/en/document/catalog/smd/inductor_commercial_power_slf6028_en.pdf), Alternate KiCad Library -Inductor TDK_SLF6028 -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_TDK_SLF6045 -Inductor, TDK, SLF6045, 6.0mmx6.0mm (Script generated with StandardBox.py) (https://product.tdk.com/info/en/document/catalog/smd/inductor_commercial_power_slf6045_en.pdf), Alternate KiCad Library -Inductor TDK_SLF6045 -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_TDK_SLF7032 -Inductor, TDK, SLF7032, 7.0mmx7.0mm (Script generated with StandardBox.py) (https://product.tdk.com/info/en/document/catalog/smd/inductor_commercial_power_slf7032_en.pdf), Alternate KiCad Library -Inductor TDK_SLF7032 -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_TDK_SLF7045 -Inductor, TDK, SLF7045, 7.0mmx7.0mm (Script generated with StandardBox.py) (https://product.tdk.com/info/en/document/catalog/smd/inductor_commercial_power_slf7045_en.pdf), Alternate KiCad Library -Inductor TDK_SLF7045 -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_TDK_SLF7055 -Inductor, TDK, SLF7055, 7.0mmx7.0mm (Script generated with StandardBox.py) (https://product.tdk.com/info/en/document/catalog/smd/inductor_commercial_power_slf7055_en.pdf), Alternate KiCad Library -Inductor TDK_SLF7055 -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_TDK_SLF10145 -Inductor, TDK, SLF10145, 10.1mmx10.1mm (Script generated with StandardBox.py) (https://product.tdk.com/info/en/catalog/datasheets/inductor_automotive_power_slf10145-h_en.pdf), Alternate KiCad Library -Inductor TDK_SLF10145 -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_TDK_SLF10165 -Inductor, TDK, SLF10165, 10.1mmx10.1mm (Script generated with StandardBox.py) (https://product.tdk.com/info/en/catalog/datasheets/inductor_commercial_power_slf10165_en.pdf), Alternate KiCad Library -Inductor TDK_SLF10165 -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_TDK_SLF12555 -Inductor, TDK, SLF12555, 12.5mmx12.5mm (Script generated with StandardBox.py) (https://product.tdk.com/info/en/catalog/datasheets/inductor_commercial_power_slf12555_en.pdf), Alternate KiCad Library -Inductor SLF12555 -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_TDK_SLF12565 -Inductor, TDK, SLF12565, 12.5mmx12.5mm (Script generated with StandardBox.py) (https://product.tdk.com/info/en/catalog/datasheets/inductor_automotive_power_slf12565-h_en.pdf), Alternate KiCad Library -Inductor SLF12565 -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_TDK_SLF12575 -Inductor, TDK, SLF12575, 12.5mmx12.5mm (Script generated with StandardBox.py) (https://product.tdk.com/info/en/catalog/datasheets/inductor_automotive_power_slf12575-h_en.pdf), Alternate KiCad Library -Inductor SLF12575 -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_TDK_VLF10040 -Inductor,TDK, TDK-VLP-8040, 8.6mmx8.6mm, Alternate KiCad Library -inductor TDK VLP smd VLF10040 -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_TDK_VLP8040 -Inductor,TDK, TDK-VLP-8040, 8.6mmx8.6mm, Alternate KiCad Library -inductor TDK VLP smd VLP8040 -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Taiyo-Yuden_MD-1616 -Inductor, Taiyo Yuden, MD series, Taiyo-Yuden_MD-1616, 1.6mmx1.6mm, Alternate KiCad Library -inductor taiyo-yuden md smd -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Taiyo-Yuden_MD-2020 -Inductor, Taiyo Yuden, MD series, Taiyo-Yuden_MD-2020, 2.0mmx2.0mm, Alternate KiCad Library -inductor taiyo-yuden md smd -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Taiyo-Yuden_MD-3030 -Inductor, Taiyo Yuden, MD series, Taiyo-Yuden_MD-3030, 3.0mmx3.0mm, Alternate KiCad Library -inductor taiyo-yuden md smd -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Taiyo-Yuden_MD-4040 -Inductor, Taiyo Yuden, MD series, Taiyo-Yuden_MD-4040, 4.0mmx4.0mm, Alternate KiCad Library -inductor taiyo-yuden md smd -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Taiyo-Yuden_MD-5050 -Inductor, Taiyo Yuden, MD series, Taiyo-Yuden_MD-5050, 5.0mmx5.0mm, Alternate KiCad Library -inductor taiyo-yuden md smd -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Taiyo-Yuden_NR-20xx -Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-20xx, 2.0mmx2.0mm, Alternate KiCad Library -inductor taiyo-yuden nr smd -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Taiyo-Yuden_NR-20xx_BigPads -Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-20xx, 2.0mmx2.0mm, Alternate KiCad Library -inductor taiyo-yuden nr smd -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Taiyo-Yuden_NR-24xx -Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-24xx, 2.4mmx2.4mm, Alternate KiCad Library -inductor taiyo-yuden nr smd -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Taiyo-Yuden_NR-24xx_BigPads -Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-24xx, 2.4mmx2.4mm, Alternate KiCad Library -inductor taiyo-yuden nr smd -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Taiyo-Yuden_NR-30xx -Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-30xx, 3.0mmx3.0mm, Alternate KiCad Library -inductor taiyo-yuden nr smd -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Taiyo-Yuden_NR-30xx_BigPads -Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-30xx, 3.0mmx3.0mm, Alternate KiCad Library -inductor taiyo-yuden nr smd -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Taiyo-Yuden_NR-40xx -Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-40xx, 4.0mmx4.0mm, Alternate KiCad Library -inductor taiyo-yuden nr smd -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Taiyo-Yuden_NR-40xx_BigPads -Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-40xx, 4.0mmx4.0mm, Alternate KiCad Library -inductor taiyo-yuden nr smd -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Taiyo-Yuden_NR-50xx -Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-50xx, 4.9mmx4.9mm, Alternate KiCad Library -inductor taiyo-yuden nr smd -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Taiyo-Yuden_NR-50xx_BigPads -Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-50xx, 4.9mmx4.9mm, Alternate KiCad Library -inductor taiyo-yuden nr smd -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Taiyo-Yuden_NR-60xx -Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-60xx, 6.0mmx6.0mm, Alternate KiCad Library -inductor taiyo-yuden nr smd -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Taiyo-Yuden_NR-60xx_BigPads -Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-60xx, 6.0mmx6.0mm, Alternate KiCad Library -inductor taiyo-yuden nr smd -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Taiyo-Yuden_NR-80xx -Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-80xx, 8.0mmx8.0mm, Alternate KiCad Library -inductor taiyo-yuden nr smd -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Taiyo-Yuden_NR-80xx_BigPads -Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-80xx, 8.0mmx8.0mm, Alternate KiCad Library -inductor taiyo-yuden nr smd -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Taiyo-Yuden_NR-10050_9.8x10.0mm -Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-10050, 9.8mmx10.0mm, https://ds.yuden.co.jp/TYCOMPAS/or/specSheet?pn=NR10050T1R3N, Alternate KiCad Library -inductor taiyo-yuden nr smd -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Taiyo-Yuden_NR-10050_9.8x10.0mm_BigPads -Inductor, Taiyo Yuden, NR series, Taiyo-Yuden_NR-10050, 9.8mmx10.0mm, https://ds.yuden.co.jp/TYCOMPAS/or/specSheet?pn=NR10050T1R3N, Alternate KiCad Library -inductor taiyo-yuden nr smd -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_TracoPower_TCK-047_5.2x5.8mm -Inductor, Traco, TCK-047, 5.2x5.8mm, https://www.tracopower.com/products/tck047.pdf, Alternate KiCad Library -inductor smd traco -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_TracoPower_TCK-141 -Choke, SMD, 4.0x4.0mm 2.1mm height, https://www.tracopower.com/products/tck141.pdf, Alternate KiCad Library -Choke SMD -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Vishay_IHLP-1212 -Inductor, Vishay, IHLP series, 3.0mmx3.0mm, Alternate KiCad Library -inductor vishay ihlp smd -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Vishay_IHLP-1616 -Inductor, Vishay, IHLP series, 4.1mmx4.1mm, Alternate KiCad Library -inductor vishay ihlp smd -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Vishay_IHLP-2020 -Inductor, Vishay, IHLP series, 5.1mmx5.1mm, Alternate KiCad Library -inductor vishay ihlp smd -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Vishay_IHLP-2525 -Inductor, Vishay, IHLP series, 6.3mmx6.3mm, Alternate KiCad Library -inductor vishay ihlp smd -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Vishay_IHLP-4040 -Inductor, Vishay, IHLP series, 10.2mmx10.2mm, Alternate KiCad Library -inductor vishay ihlp smd -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Vishay_IHLP-5050 -Inductor, Vishay, IHLP series, 12.7mmx12.7mm, Alternate KiCad Library -inductor vishay ihlp smd -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Vishay_IHLP-6767 -Inductor, Vishay, IHLP series, 17.0mmx17.0mm, Alternate KiCad Library -inductor vishay ihlp smd -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Vishay_IHSM-3825 -Inductor, Vishay, Vishay_IHSM-3825, http://www.vishay.com/docs/34018/ihsm3825.pdf, 11.2mmx6.3mm, Alternate KiCad Library -inductor vishay icsm smd -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Vishay_IHSM-4825 -Inductor, Vishay, Vishay_IHSM-4825, http://www.vishay.com/docs/34019/ihsm4825.pdf, 13.7mmx6.3mm, Alternate KiCad Library -inductor vishay icsm smd -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Vishay_IHSM-5832 -Inductor, Vishay, Vishay_IHSM-5832, http://www.vishay.com/docs/34020/ihsm5832.pdf, 16.3mmx8.1mm, Alternate KiCad Library -inductor vishay icsm smd -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Vishay_IHSM-7832 -Inductor, Vishay, Vishay_IHSM-7832, http://www.vishay.com/docs/34021/ihsm7832.pdf, 19.8mmx8.1mm, Alternate KiCad Library -inductor vishay icsm smd -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Wuerth_HCI-1030 -Inductor, Wuerth Elektronik, Wuerth_HCI-1030, 10.6mmx10.6mm, Alternate KiCad Library -inductor Wuerth hci smd -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Wuerth_HCI-1040 -Inductor, Wuerth Elektronik, Wuerth_HCI-1040, 10.2mmx10.2mm, Alternate KiCad Library -inductor Wuerth hci smd -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Wuerth_HCI-1050 -Inductor, Wuerth Elektronik, Wuerth_HCI-1050, 10.2mmx10.2mm, Alternate KiCad Library -inductor Wuerth hci smd -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Wuerth_HCI-1335 -Inductor, Wuerth Elektronik, Wuerth_HCI-1335, 12.8mmx12.8mm, Alternate KiCad Library -inductor Wuerth hci smd -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Wuerth_HCI-1350 -Inductor, Wuerth Elektronik, Wuerth_HCI-1350, 12.8mmx12.8mm, Alternate KiCad Library -inductor Wuerth hci smd -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Wuerth_HCI-1365 -Inductor, Wuerth Elektronik, Wuerth_HCI-1365, 12.8mmx12.8mm, Alternate KiCad Library -inductor Wuerth hci smd -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Wuerth_HCI-1890 -Inductor, Wuerth Elektronik, Wuerth_HCI-1890, 18.2mmx18.2mm, Alternate KiCad Library -inductor Wuerth hci smd -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Wuerth_HCI-2212 -Inductor, Wuerth Elektronik, Wuerth_HCI-2212, 22.5mmx22.0mm, Alternate KiCad Library -inductor Wuerth hci smd -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Wuerth_HCI-5040 -Inductor, Wuerth Elektronik, Wuerth_HCI-5040, 5.5mmx5.2mm, Alternate KiCad Library -inductor Wuerth hci smd -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Wuerth_HCI-7030 -Inductor, Wuerth Elektronik, Wuerth_HCI-7030, 6.9mmx6.9mm, Alternate KiCad Library -inductor Wuerth hci smd -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Wuerth_HCI-7040 -Inductor, Wuerth Elektronik, Wuerth_HCI-7040, 6.9mmx6.9mm, Alternate KiCad Library -inductor Wuerth hci smd -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Wuerth_HCI-7050 -Inductor, Wuerth Elektronik, Wuerth_HCI-7050, 6.9mmx6.9mm, Alternate KiCad Library -inductor Wuerth hci smd -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Wuerth_HCM-1050 -Inductor, Wuerth Elektronik, Wuerth_HCM-1050, 10.2mmx7.0mm, Alternate KiCad Library -inductor Wuerth hcm smd -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Wuerth_HCM-1052 -Inductor, Wuerth Elektronik, Wuerth_HCM-1052, 10.5mmx10.3mm, Alternate KiCad Library -inductor Wuerth hcm smd -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Wuerth_HCM-1070 -Inductor, Wuerth Elektronik, Wuerth_HCM-1070, 10.1mmx7.0mm, Alternate KiCad Library -inductor Wuerth hcm smd -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Wuerth_HCM-1078 -Inductor, Wuerth Elektronik, Wuerth_HCM-1078, 9.4mmx6.2mm, Alternate KiCad Library -inductor Wuerth hcm smd -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Wuerth_HCM-1190 -Inductor, Wuerth Elektronik, Wuerth_HCM-1190, 10.5mmx11.0mm, Alternate KiCad Library -inductor Wuerth hcm smd -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Wuerth_HCM-1240 -Inductor, Wuerth Elektronik, Wuerth_HCM-1240, 10.0mmx11.8mm, Alternate KiCad Library -inductor Wuerth hcm smd -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Wuerth_HCM-1350 -Inductor, Wuerth Elektronik, Wuerth_HCM-1350, 13.5mmx13.3mm, Alternate KiCad Library -inductor Wuerth hcm smd -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Wuerth_HCM-1390 -Inductor, Wuerth Elektronik, Wuerth_HCM-1390, 12.5mmx13.0mm, Alternate KiCad Library -inductor Wuerth hcm smd -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Wuerth_HCM-7050 -Inductor, Wuerth Elektronik, Wuerth_HCM-7050, 7.2mmx7.0mm, Alternate KiCad Library -inductor Wuerth hcm smd -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Wuerth_HCM-7070 -Inductor, Wuerth Elektronik, Wuerth_HCM-7070, 7.4mmx7.2mm, Alternate KiCad Library -inductor Wuerth hcm smd -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Wuerth_MAPI-1610 -Inductor, Wuerth Elektronik, Wuerth_MAPI-1610, 1.6mmx1.6mm, Alternate KiCad Library -inductor Wuerth smd -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Wuerth_MAPI-2010 -Inductor, Wuerth Elektronik, Wuerth_MAPI-2010, 2.0mmx1.6mm, Alternate KiCad Library -inductor Wuerth smd -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Wuerth_MAPI-2506 -Inductor, Wuerth Elektronik, Wuerth_MAPI-2506, 2.5mmx2.0mm, Alternate KiCad Library -inductor Wuerth smd -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Wuerth_MAPI-2508 -Inductor, Wuerth Elektronik, Wuerth_MAPI-2508, 2.5mmx2.0mm, Alternate KiCad Library -inductor Wuerth smd -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Wuerth_MAPI-2510 -Inductor, Wuerth Elektronik, Wuerth_MAPI-2510, 2.5mmx2.0mm, Alternate KiCad Library -inductor Wuerth smd -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Wuerth_MAPI-2512 -Inductor, Wuerth Elektronik, Wuerth_MAPI-2512, 2.5mmx2.0mm, Alternate KiCad Library -inductor Wuerth smd -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Wuerth_MAPI-3010 -Inductor, Wuerth Elektronik, Wuerth_MAPI-3010, 3.0mmx3.0mm, Alternate KiCad Library -inductor Wuerth smd -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Wuerth_MAPI-3012 -Inductor, Wuerth Elektronik, Wuerth_MAPI-3012, 3.0mmx3.0mm, Alternate KiCad Library -inductor Wuerth smd -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Wuerth_MAPI-3015 -Inductor, Wuerth Elektronik, Wuerth_MAPI-3015, 3.0mmx3.0mm, Alternate KiCad Library -inductor Wuerth smd -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Wuerth_MAPI-3020 -Inductor, Wuerth Elektronik, Wuerth_MAPI-3020, 3.0mmx3.0mm, Alternate KiCad Library -inductor Wuerth smd -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Wuerth_MAPI-4020 -Inductor, Wuerth Elektronik, Wuerth_MAPI-4020, 4.0mmx4.0mm, Alternate KiCad Library -inductor Wuerth smd -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Wuerth_MAPI-4030 -Inductor, Wuerth Elektronik, Wuerth_MAPI-4030, 4.0mmx4.0mm, Alternate KiCad Library -inductor Wuerth smd -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Wuerth_WE-DD-Typ-L-Typ-XL-Typ-XXL -Shielded Coupled Inductor, Wuerth Elektronik, WE-DD, SMD, Typ L, Typ XL, Typ XXL, https://katalog.we-online.com/pbs/datasheet/744874001.pdf, Alternate KiCad Library -Choke Coupled Double Inductor SMD Wuerth WE-DD TypL TypXL TypXXL -0 -4 -4 -PCM_Inductor_SMD_Handsoldering_AKL -L_Wuerth_WE-DD-Typ-M-Typ-S -Shielded Coupled Inductor, Wuerth Elektronik, WE-DD, SMD, Typ M, Typ S, https://katalog.we-online.com/pbs/datasheet/744878001.pdf, https://katalog.we-online.de/pbs/datasheet/744877001.pdf, Alternate KiCad Library -Choke Coupled Double Inductor SMD Wuerth WE-DD TypM TypS -0 -4 -4 -PCM_Inductor_SMD_Handsoldering_AKL -L_Wuerth_WE-GF-1210 -Unshielded Inductor, Wuerth Elektronik, WE-GF, SMD, 1210, https://www.we-online.de/katalog/datasheet/74476401.pdf, Alternate KiCad Library -Unshielded Inductor WE-GF 1210 Wuerth -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Wuerth_WE-PD-Typ-7345 -Shielded Power Inductor, Wuerth Elektronik, WE-PD, SMD, 7345, https://katalog.we-online.com/pbs/datasheet/744777001.pdf, Alternate KiCad Library -Choke Shielded Power Inductor WE-PD 7345 Wuerth -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Wuerth_WE-PD-Typ-LS -Shielded Power Inductor, Wuerth Elektronik, WE-PD, SMD, Typ LS, https://katalog.we-online.com/pbs/datasheet/7447715906.pdf, Alternate KiCad Library -Choke Shielded Power Inductor WE-PD TypLS Wuerth -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Wuerth_WE-PD-Typ-LS_BigPads -Shielded Power Inductor, Wuerth Elektronik, WE-PD, SMD, Typ LS, Handsoldering, https://katalog.we-online.com/pbs/datasheet/7447715906.pdf, Alternate KiCad Library -Choke Shielded Power Inductor WE-PD TypLS Wuerth -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Wuerth_WE-PD-Typ-M-Typ-S -Shielded Power Inductor, Wuerth Elektronik, WE-PD, SMT, Typ M, Typ S, https://katalog.we-online.com/pbs/datasheet/744778005.pdf, Alternate KiCad Library -Choke Shielded Power Inductor WE-PD TypM TypS Wuerth -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Wuerth_WE-PD-Typ-M-Typ-S_BigPads -Shielded Power Inductor, Wuerth Elektronik, WE-PD, SMT, Typ M, Typ S, Handsoldering, https://katalog.we-online.com/pbs/datasheet/744778005.pdf, Alternate KiCad Library -Choke Shielded Power Inductor WE-PD TypM TypS Wuerth -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Wuerth_WE-PD2-Typ-L -Power Inductor, Wuerth Elektronik, WE-PD2, SMD, Typ L, , https://katalog.we-online.com/pbs/datasheet/74477510.pdf, Alternate KiCad Library -Choke Power Inductor WE-PD2 TypL Wuerth -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Wuerth_WE-PD2-Typ-MS -Power Inductor, Wuerth Elektronik, WE-PD2, SMD, Typ MS, https://katalog.we-online.com/pbs/datasheet/744774022.pdf, Alternate KiCad Library -Choke Power Inductor WE-PD2 TypMS Wuerth -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Wuerth_WE-PD2-Typ-XL -Power Inductor, Wuerth Elektronik, WE-PD2, SMT, Typ XL, https://katalog.we-online.com/pbs/datasheet/744776012.pdf, Alternate KiCad Library -Choke Power Inductor WE-PD2 TypXL Wuerth -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Wuerth_WE-PD4-Typ-X -Power Inductor, Wuerth Elektronik, WE-PD4, SMT, Typ X, https://katalog.we-online.de/pbs/datasheet/74458001.pdf, Alternate KiCad Library -Choke Power Inductor WE-PD4 TypX Wuerth -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Wuerth_WE-PDF -Shielded Power Inductor, Wuerth Elektronik, WE-PDF, SMD, https://katalog.we-online.de/pbs/datasheet/7447797022.pdf, Alternate KiCad Library -Choke Shielded Power Inductor WE-PDF Wuerth -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Wuerth_WE-PDF_BigPads -Shielded Power Inductor, Wuerth Elektronik, WE-PDF, SMD, Handsoldering, https://katalog.we-online.de/pbs/datasheet/7447797022.pdf, Alternate KiCad Library -Choke Shielded Power Inductor WE-PDF Wuerth Handsoldering -0 -2 -2 -PCM_Inductor_SMD_Handsoldering_AKL -L_Wuerth_WE-TPC-3816 -L_Wuerth_WE-TPC-3816 StepUp generated footprint, http://katalog.we-online.de/pbs/datasheet/7440310047.pdf, Alternate KiCad Library -wurth wuerth smd inductor -0 -2 -2 -PCM_Inductor_THT_AKL -Choke_EPCOS_B82722A -Current-Compensated Ring Core Double Chokes, EPCOS, B82722A, 22.3mmx22.7mm, https://en.tdk.eu/inf/30/db/ind_2008/b82722a_j.pdf, Alternate KiCad Library -chokes epcos tht -0 -4 -4 -PCM_Inductor_THT_AKL -Choke_Schaffner_RN102-04-14.0x14.0mm -Current-compensated Chokes, Schaffner, RN102-04, 14.0mmx14.0mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/, Alternate KiCad Library -chokes schaffner tht -0 -4 -4 -PCM_Inductor_THT_AKL -Choke_Schaffner_RN112-04-17.7x17.1mm -Current-compensated Chokes, Schaffner, RN112-04, 17.7mmx17.1mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/, Alternate KiCad Library -chokes schaffner tht -0 -4 -4 -PCM_Inductor_THT_AKL -Choke_Schaffner_RN114-04-22.5x21.5mm -Current-compensated Chokes, Schaffner, RN114-04, 22.5mmx21.5mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/, Alternate KiCad Library -chokes schaffner tht -0 -4 -4 -PCM_Inductor_THT_AKL -Choke_Schaffner_RN116-04-22.5x21.5mm -Current-compensated Chokes, Schaffner, RN116-04, 22.5mmx21.5mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/, Alternate KiCad Library -chokes schaffner tht -0 -4 -4 -PCM_Inductor_THT_AKL -Choke_Schaffner_RN122-04-28.0x27.0mm -Current-compensated Chokes, Schaffner, RN122-04, 28.0mmx27.0mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/, Alternate KiCad Library -chokes schaffner tht -0 -4 -4 -PCM_Inductor_THT_AKL -Choke_Schaffner_RN142-04-33.1x32.5mm -Current-compensated Chokes, Schaffner, RN142-04, 33.1mmx32.5mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/, Alternate KiCad Library -chokes schaffner tht -0 -4 -4 -PCM_Inductor_THT_AKL -Choke_Schaffner_RN143-04-33.1x32.5mm -Current-compensated Chokes, Schaffner, RN143-04, 33.1mmx32.5mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/, Alternate KiCad Library -chokes schaffner tht -0 -4 -4 -PCM_Inductor_THT_AKL -Choke_Schaffner_RN152-04-43.0x41.8mm -Current-compensated Chokes, Schaffner, RN152-04, 43.0mmx41.8mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/, Alternate KiCad Library -chokes schaffner tht -0 -4 -4 -PCM_Inductor_THT_AKL -Choke_Schaffner_RN202-04-8.8x18.2mm -Current-compensated Chokes, Schaffner, RN202-04, 8.8mmx18.2mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/, Alternate KiCad Library -chokes schaffner tht -0 -4 -4 -PCM_Inductor_THT_AKL -Choke_Schaffner_RN204-04-9.0x14.0mm -Current-compensated Chokes, Schaffner, RN204-04, 9.0mmx14.0mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/, Alternate KiCad Library -chokes schaffner tht -0 -4 -4 -PCM_Inductor_THT_AKL -Choke_Schaffner_RN212-04-12.5x18.0mm -Current-compensated Chokes, Schaffner, RN212-04, 12.5mmx18.0mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/, Alternate KiCad Library -chokes schaffner tht -0 -4 -4 -PCM_Inductor_THT_AKL -Choke_Schaffner_RN214-04-15.5x23.0mm -Current-compensated Chokes, Schaffner, RN214-04, 15.5mmx23.0mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/, Alternate KiCad Library -chokes schaffner tht -0 -4 -4 -PCM_Inductor_THT_AKL -Choke_Schaffner_RN216-04-15.5x23.0mm -Current-compensated Chokes, Schaffner, RN216-04, 15.5mmx23.0mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/, Alternate KiCad Library -chokes schaffner tht -0 -4 -4 -PCM_Inductor_THT_AKL -Choke_Schaffner_RN218-04-12.5x18.0mm -Current-compensated Chokes, Schaffner, RN218-04, 12.5mmx18.0mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/, Alternate KiCad Library -chokes schaffner tht -0 -4 -4 -PCM_Inductor_THT_AKL -Choke_Schaffner_RN222-04-18.0x31.0mm -Current-compensated Chokes, Schaffner, RN222-04, 18.0mmx31.0mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/, Alternate KiCad Library -chokes schaffner tht -0 -4 -4 -PCM_Inductor_THT_AKL -Choke_Schaffner_RN232-04-18.0x31.0mm -Current-compensated Chokes, Schaffner, RN232-04, 18.0mmx31.0mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/, Alternate KiCad Library -chokes schaffner tht -0 -4 -4 -PCM_Inductor_THT_AKL -Choke_Schaffner_RN242-04-18.0x31.0mm -Current-compensated Chokes, Schaffner, RN242-04, 18.0mmx31.0mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/, Alternate KiCad Library -chokes schaffner tht -0 -4 -4 -PCM_Inductor_THT_AKL -L_Axial_L5.0mm_D3.6mm_P10.00mm_Horizontal_Murata_BL01RN1A2A2 -Inductor, Murata BL01RN1A2A2, Axial, Horizontal, pin pitch=10.00mm, length*diameter=5*3.6mm, https://www.murata.com/en-global/products/productdetail?partno=BL01RN1A2A2%23, Alternate KiCad Library -inductor axial horizontal -0 -2 -2 -PCM_Inductor_THT_AKL -L_Axial_L5.3mm_D2.2mm_P2.54mm_Vertical_Vishay_IM-1 -Inductor, Axial series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=5.3*2.2mm^2, Vishay, IM-1, http://www.vishay.com/docs/34030/im.pdf, Alternate KiCad Library -Inductor Axial series Axial Vertical pin pitch 2.54mm length 5.3mm diameter 2.2mm Vishay IM-1 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Axial_L5.3mm_D2.2mm_P7.62mm_Horizontal_Vishay_IM-1 -Inductor, Axial series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=5.3*2.2mm^2, Vishay, IM-1, http://www.vishay.com/docs/34030/im.pdf, Alternate KiCad Library -Inductor Axial series Axial Horizontal pin pitch 7.62mm length 5.3mm diameter 2.2mm Vishay IM-1 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Axial_L5.3mm_D2.2mm_P10.16mm_Horizontal_Vishay_IM-1 -Inductor, Axial series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=5.3*2.2mm^2, Vishay, IM-1, http://www.vishay.com/docs/34030/im.pdf, Alternate KiCad Library -Inductor Axial series Axial Horizontal pin pitch 10.16mm length 5.3mm diameter 2.2mm Vishay IM-1 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Axial_L6.6mm_D2.7mm_P2.54mm_Vertical_Vishay_IM-2 -Inductor, Axial series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=6.6*2.7mm^2, Vishay, IM-2, http://www.vishay.com/docs/34030/im.pdf, Alternate KiCad Library -Inductor Axial series Axial Vertical pin pitch 2.54mm length 6.6mm diameter 2.7mm Vishay IM-2 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Axial_L6.6mm_D2.7mm_P10.16mm_Horizontal_Vishay_IM-2 -Inductor, Axial series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=6.6*2.7mm^2, Vishay, IM-2, http://www.vishay.com/docs/34030/im.pdf, Alternate KiCad Library -Inductor Axial series Axial Horizontal pin pitch 10.16mm length 6.6mm diameter 2.7mm Vishay IM-2 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Axial_L7.0mm_D3.3mm_P2.54mm_Vertical_Fastron_MICC -Inductor, Axial series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=7*3.3mm^2, Fastron, MICC, http://www.fastrongroup.com/image-show/70/MICC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library -Inductor Axial series Axial Vertical pin pitch 2.54mm length 7mm diameter 3.3mm Fastron MICC -0 -2 -2 -PCM_Inductor_THT_AKL -L_Axial_L7.0mm_D3.3mm_P5.08mm_Vertical_Fastron_MICC -Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=7*3.3mm^2, Fastron, MICC, http://www.fastrongroup.com/image-show/70/MICC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library -Inductor Axial series Axial Vertical pin pitch 5.08mm length 7mm diameter 3.3mm Fastron MICC -0 -2 -2 -PCM_Inductor_THT_AKL -L_Axial_L7.0mm_D3.3mm_P10.16mm_Horizontal_Fastron_MICC -Inductor, Axial series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=7*3.3mm^2, Fastron, MICC, http://www.fastrongroup.com/image-show/70/MICC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library -Inductor Axial series Axial Horizontal pin pitch 10.16mm length 7mm diameter 3.3mm Fastron MICC -0 -2 -2 -PCM_Inductor_THT_AKL -L_Axial_L7.0mm_D3.3mm_P12.70mm_Horizontal_Fastron_MICC -Inductor, Axial series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=7*3.3mm^2, Fastron, MICC, http://www.fastrongroup.com/image-show/70/MICC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library -Inductor Axial series Axial Horizontal pin pitch 12.7mm length 7mm diameter 3.3mm Fastron MICC -0 -2 -2 -PCM_Inductor_THT_AKL -L_Axial_L9.5mm_D4.0mm_P2.54mm_Vertical_Fastron_SMCC -Inductor, Axial series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=9.5*4mm^2, Fastron, SMCC, http://cdn-reichelt.de/documents/datenblatt/B400/DS_SMCC_NEU.pdf, http://cdn-reichelt.de/documents/datenblatt/B400/LEADEDINDUCTORS.pdf, Alternate KiCad Library -Inductor Axial series Axial Vertical pin pitch 2.54mm length 9.5mm diameter 4mm Fastron SMCC -0 -2 -2 -PCM_Inductor_THT_AKL -L_Axial_L9.5mm_D4.0mm_P5.08mm_Vertical_Fastron_SMCC -Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.5*4mm^2, Fastron, SMCC, http://cdn-reichelt.de/documents/datenblatt/B400/DS_SMCC_NEU.pdf, http://cdn-reichelt.de/documents/datenblatt/B400/LEADEDINDUCTORS.pdf, Alternate KiCad Library -Inductor Axial series Axial Vertical pin pitch 5.08mm length 9.5mm diameter 4mm Fastron SMCC -0 -2 -2 -PCM_Inductor_THT_AKL -L_Axial_L9.5mm_D4.0mm_P12.70mm_Horizontal_Fastron_SMCC -Inductor, Axial series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9.5*4mm^2, Fastron, SMCC, http://cdn-reichelt.de/documents/datenblatt/B400/DS_SMCC_NEU.pdf, http://cdn-reichelt.de/documents/datenblatt/B400/LEADEDINDUCTORS.pdf, Alternate KiCad Library -Inductor Axial series Axial Horizontal pin pitch 12.7mm length 9.5mm diameter 4mm Fastron SMCC -0 -2 -2 -PCM_Inductor_THT_AKL -L_Axial_L9.5mm_D4.0mm_P15.24mm_Horizontal_Fastron_SMCC -Inductor, Axial series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9.5*4mm^2, Fastron, SMCC, http://cdn-reichelt.de/documents/datenblatt/B400/DS_SMCC_NEU.pdf, http://cdn-reichelt.de/documents/datenblatt/B400/LEADEDINDUCTORS.pdf, Alternate KiCad Library -Inductor Axial series Axial Horizontal pin pitch 15.24mm length 9.5mm diameter 4mm Fastron SMCC -0 -2 -2 -PCM_Inductor_THT_AKL -L_Axial_L11.0mm_D4.5mm_P5.08mm_Vertical_Fastron_MECC -Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=11*4.5mm^2, Fastron, MECC, http://www.fastrongroup.com/image-show/21/MECC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library -Inductor Axial series Axial Vertical pin pitch 5.08mm length 11mm diameter 4.5mm Fastron MECC -0 -2 -2 -PCM_Inductor_THT_AKL -L_Axial_L11.0mm_D4.5mm_P7.62mm_Vertical_Fastron_MECC -Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=11*4.5mm^2, Fastron, MECC, http://www.fastrongroup.com/image-show/21/MECC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library -Inductor Axial series Axial Vertical pin pitch 7.62mm length 11mm diameter 4.5mm Fastron MECC -0 -2 -2 -PCM_Inductor_THT_AKL -L_Axial_L11.0mm_D4.5mm_P15.24mm_Horizontal_Fastron_MECC -Inductor, Axial series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=11*4.5mm^2, Fastron, MECC, http://www.fastrongroup.com/image-show/21/MECC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library -Inductor Axial series Axial Horizontal pin pitch 15.24mm length 11mm diameter 4.5mm Fastron MECC -0 -2 -2 -PCM_Inductor_THT_AKL -L_Axial_L12.0mm_D5.0mm_P5.08mm_Vertical_Fastron_MISC -Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=12*5mm^2, Fastron, MISC, http://cdn-reichelt.de/documents/datenblatt/B400/DS_MISC.pdf, Alternate KiCad Library -Inductor Axial series Axial Vertical pin pitch 5.08mm length 12mm diameter 5mm Fastron MISC -0 -2 -2 -PCM_Inductor_THT_AKL -L_Axial_L12.0mm_D5.0mm_P7.62mm_Vertical_Fastron_MISC -Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=12*5mm^2, Fastron, MISC, http://cdn-reichelt.de/documents/datenblatt/B400/DS_MISC.pdf, Alternate KiCad Library -Inductor Axial series Axial Vertical pin pitch 7.62mm length 12mm diameter 5mm Fastron MISC -0 -2 -2 -PCM_Inductor_THT_AKL -L_Axial_L12.0mm_D5.0mm_P15.24mm_Horizontal_Fastron_MISC -Inductor, Axial series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=12*5mm^2, Fastron, MISC, http://cdn-reichelt.de/documents/datenblatt/B400/DS_MISC.pdf, Alternate KiCad Library -Inductor Axial series Axial Horizontal pin pitch 15.24mm length 12mm diameter 5mm Fastron MISC -0 -2 -2 -PCM_Inductor_THT_AKL -L_Axial_L12.8mm_D5.8mm_P5.08mm_Vertical_Fastron_HBCC -Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=12.8*5.8mm^2, Fastron, HBCC, http://www.fastrongroup.com/image-show/18/HBCC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library -Inductor Axial series Axial Vertical pin pitch 5.08mm length 12.8mm diameter 5.8mm Fastron HBCC -0 -2 -2 -PCM_Inductor_THT_AKL -L_Axial_L12.8mm_D5.8mm_P7.62mm_Vertical_Fastron_HBCC -Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=12.8*5.8mm^2, Fastron, HBCC, http://www.fastrongroup.com/image-show/18/HBCC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library -Inductor Axial series Axial Vertical pin pitch 7.62mm length 12.8mm diameter 5.8mm Fastron HBCC -0 -2 -2 -PCM_Inductor_THT_AKL -L_Axial_L12.8mm_D5.8mm_P20.32mm_Horizontal_Fastron_HBCC -Inductor, Axial series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=12.8*5.8mm^2, Fastron, HBCC, http://www.fastrongroup.com/image-show/18/HBCC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library -Inductor Axial series Axial Horizontal pin pitch 20.32mm length 12.8mm diameter 5.8mm Fastron HBCC -0 -2 -2 -PCM_Inductor_THT_AKL -L_Axial_L12.8mm_D5.8mm_P25.40mm_Horizontal_Fastron_HBCC -Inductor, Axial series, Axial, Horizontal, pin pitch=25.4mm, , length*diameter=12.8*5.8mm^2, Fastron, HBCC, http://www.fastrongroup.com/image-show/18/HBCC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library -Inductor Axial series Axial Horizontal pin pitch 25.4mm length 12.8mm diameter 5.8mm Fastron HBCC -0 -2 -2 -PCM_Inductor_THT_AKL -L_Axial_L13.0mm_D4.5mm_P5.08mm_Vertical_Fastron_HCCC -Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=13*4.5mm^2, Fastron, HCCC, http://www.fastrongroup.com/image-show/19/HCCC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library -Inductor Axial series Axial Vertical pin pitch 5.08mm length 13mm diameter 4.5mm Fastron HCCC -0 -2 -2 -PCM_Inductor_THT_AKL -L_Axial_L13.0mm_D4.5mm_P7.62mm_Vertical_Fastron_HCCC -Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=13*4.5mm^2, Fastron, HCCC, http://www.fastrongroup.com/image-show/19/HCCC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library -Inductor Axial series Axial Vertical pin pitch 7.62mm length 13mm diameter 4.5mm Fastron HCCC -0 -2 -2 -PCM_Inductor_THT_AKL -L_Axial_L13.0mm_D4.5mm_P15.24mm_Horizontal_Fastron_HCCC -Inductor, Axial series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=13*4.5mm^2, Fastron, HCCC, http://www.fastrongroup.com/image-show/19/HCCC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library -Inductor Axial series Axial Horizontal pin pitch 15.24mm length 13mm diameter 4.5mm Fastron HCCC -0 -2 -2 -PCM_Inductor_THT_AKL -L_Axial_L14.0mm_D4.5mm_P5.08mm_Vertical_Fastron_LACC -Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=14*4.5mm^2, Fastron, LACC, http://www.fastrongroup.com/image-show/20/LACC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library -Inductor Axial series Axial Vertical pin pitch 5.08mm length 14mm diameter 4.5mm Fastron LACC -0 -2 -2 -PCM_Inductor_THT_AKL -L_Axial_L14.0mm_D4.5mm_P7.62mm_Vertical_Fastron_LACC -Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=14*4.5mm^2, Fastron, LACC, http://www.fastrongroup.com/image-show/20/LACC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library -Inductor Axial series Axial Vertical pin pitch 7.62mm length 14mm diameter 4.5mm Fastron LACC -0 -2 -2 -PCM_Inductor_THT_AKL -L_Axial_L14.0mm_D4.5mm_P15.24mm_Horizontal_Fastron_LACC -Inductor, Axial series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=14*4.5mm^2, Fastron, LACC, http://www.fastrongroup.com/image-show/20/LACC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library -Inductor Axial series Axial Horizontal pin pitch 15.24mm length 14mm diameter 4.5mm Fastron LACC -0 -2 -2 -PCM_Inductor_THT_AKL -L_Axial_L14.5mm_D5.8mm_P5.08mm_Vertical_Fastron_HBCC -Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=14.5*5.8mm^2, Fastron, HBCC, http://www.fastrongroup.com/image-show/18/HBCC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library -Inductor Axial series Axial Vertical pin pitch 5.08mm length 14.5mm diameter 5.8mm Fastron HBCC -0 -2 -2 -PCM_Inductor_THT_AKL -L_Axial_L14.5mm_D5.8mm_P7.62mm_Vertical_Fastron_HBCC -Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=14.5*5.8mm^2, Fastron, HBCC, http://www.fastrongroup.com/image-show/18/HBCC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library -Inductor Axial series Axial Vertical pin pitch 7.62mm length 14.5mm diameter 5.8mm Fastron HBCC -0 -2 -2 -PCM_Inductor_THT_AKL -L_Axial_L14.5mm_D5.8mm_P20.32mm_Horizontal_Fastron_HBCC -Inductor, Axial series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=14.5*5.8mm^2, Fastron, HBCC, http://www.fastrongroup.com/image-show/18/HBCC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library -Inductor Axial series Axial Horizontal pin pitch 20.32mm length 14.5mm diameter 5.8mm Fastron HBCC -0 -2 -2 -PCM_Inductor_THT_AKL -L_Axial_L14.5mm_D5.8mm_P25.40mm_Horizontal_Fastron_HBCC -Inductor, Axial series, Axial, Horizontal, pin pitch=25.4mm, , length*diameter=14.5*5.8mm^2, Fastron, HBCC, http://www.fastrongroup.com/image-show/18/HBCC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library -Inductor Axial series Axial Horizontal pin pitch 25.4mm length 14.5mm diameter 5.8mm Fastron HBCC -0 -2 -2 -PCM_Inductor_THT_AKL -L_Axial_L16.0mm_D6.3mm_P5.08mm_Vertical_Fastron_VHBCC -Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=16*6.3mm^2, Fastron, VHBCC, http://www.fastrongroup.com/image-show/25/VHBCC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library -Inductor Axial series Axial Vertical pin pitch 5.08mm length 16mm diameter 6.3mm Fastron VHBCC -0 -2 -2 -PCM_Inductor_THT_AKL -L_Axial_L16.0mm_D6.3mm_P7.62mm_Vertical_Fastron_VHBCC -Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=16*6.3mm^2, Fastron, VHBCC, http://www.fastrongroup.com/image-show/25/VHBCC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library -Inductor Axial series Axial Vertical pin pitch 7.62mm length 16mm diameter 6.3mm Fastron VHBCC -0 -2 -2 -PCM_Inductor_THT_AKL -L_Axial_L16.0mm_D6.3mm_P20.32mm_Horizontal_Fastron_VHBCC -Inductor, Axial series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=16*6.3mm^2, Fastron, VHBCC, http://www.fastrongroup.com/image-show/25/VHBCC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library -Inductor Axial series Axial Horizontal pin pitch 20.32mm length 16mm diameter 6.3mm Fastron VHBCC -0 -2 -2 -PCM_Inductor_THT_AKL -L_Axial_L16.0mm_D6.3mm_P25.40mm_Horizontal_Fastron_VHBCC -Inductor, Axial series, Axial, Horizontal, pin pitch=25.4mm, , length*diameter=16*6.3mm^2, Fastron, VHBCC, http://www.fastrongroup.com/image-show/25/VHBCC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library -Inductor Axial series Axial Horizontal pin pitch 25.4mm length 16mm diameter 6.3mm Fastron VHBCC -0 -2 -2 -PCM_Inductor_THT_AKL -L_Axial_L16.0mm_D7.5mm_P5.08mm_Vertical_Fastron_XHBCC -Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=16*7.5mm^2, Fastron, XHBCC, http://www.fastrongroup.com/image-show/26/XHBCC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library -Inductor Axial series Axial Vertical pin pitch 5.08mm length 16mm diameter 7.5mm Fastron XHBCC -0 -2 -2 -PCM_Inductor_THT_AKL -L_Axial_L16.0mm_D7.5mm_P7.62mm_Vertical_Fastron_XHBCC -Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=16*7.5mm^2, Fastron, XHBCC, http://www.fastrongroup.com/image-show/26/XHBCC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library -Inductor Axial series Axial Vertical pin pitch 7.62mm length 16mm diameter 7.5mm Fastron XHBCC -0 -2 -2 -PCM_Inductor_THT_AKL -L_Axial_L16.0mm_D7.5mm_P20.32mm_Horizontal_Fastron_XHBCC -Inductor, Axial series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=16*7.5mm^2, Fastron, XHBCC, http://www.fastrongroup.com/image-show/26/XHBCC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library -Inductor Axial series Axial Horizontal pin pitch 20.32mm length 16mm diameter 7.5mm Fastron XHBCC -0 -2 -2 -PCM_Inductor_THT_AKL -L_Axial_L16.0mm_D7.5mm_P25.40mm_Horizontal_Fastron_XHBCC -Inductor, Axial series, Axial, Horizontal, pin pitch=25.4mm, , length*diameter=16*7.5mm^2, Fastron, XHBCC, http://www.fastrongroup.com/image-show/26/XHBCC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library -Inductor Axial series Axial Horizontal pin pitch 25.4mm length 16mm diameter 7.5mm Fastron XHBCC -0 -2 -2 -PCM_Inductor_THT_AKL -L_Axial_L16.0mm_D9.5mm_P5.08mm_Vertical_Vishay_IM-10-37 -Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=16*9.5mm^2, Vishay, IM-10-37, http://www.vishay.com/docs/34030/im10.pdf, Alternate KiCad Library -Inductor Axial series Axial Vertical pin pitch 5.08mm length 16mm diameter 9.5mm Vishay IM-10-37 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Axial_L16.0mm_D9.5mm_P20.32mm_Horizontal_Vishay_IM-10-37 -Inductor, Axial series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=16*9.5mm^2, Vishay, IM-10-37, http://www.vishay.com/docs/34030/im10.pdf, Alternate KiCad Library -Inductor Axial series Axial Horizontal pin pitch 20.32mm length 16mm diameter 9.5mm Vishay IM-10-37 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Axial_L17.5mm_D12.0mm_P7.62mm_Vertical_Vishay_IM-10-46 -Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=17.5*12mm^2, Vishay, IM-10-46, http://www.vishay.com/docs/34030/im10.pdf, Alternate KiCad Library -Inductor Axial series Axial Vertical pin pitch 7.62mm length 17.5mm diameter 12mm Vishay IM-10-46 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Axial_L17.5mm_D12.0mm_P20.32mm_Horizontal_Vishay_IM-10-46 -Inductor, Axial series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=17.5*12mm^2, Vishay, IM-10-46, http://www.vishay.com/docs/34030/im10.pdf, Alternate KiCad Library -Inductor Axial series Axial Horizontal pin pitch 20.32mm length 17.5mm diameter 12mm Vishay IM-10-46 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Axial_L20.0mm_D8.0mm_P5.08mm_Vertical -Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=20*8mm^2, Alternate KiCad Library -Inductor Axial series Axial Vertical pin pitch 5.08mm length 20mm diameter 8mm -0 -2 -2 -PCM_Inductor_THT_AKL -L_Axial_L20.0mm_D8.0mm_P7.62mm_Vertical -Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=20*8mm^2, Alternate KiCad Library -Inductor Axial series Axial Vertical pin pitch 7.62mm length 20mm diameter 8mm -0 -2 -2 -PCM_Inductor_THT_AKL -L_Axial_L20.0mm_D8.0mm_P25.40mm_Horizontal -Inductor, Axial series, Axial, Horizontal, pin pitch=25.4mm, , length*diameter=20*8mm^2, Alternate KiCad Library -Inductor Axial series Axial Horizontal pin pitch 25.4mm length 20mm diameter 8mm -0 -2 -2 -PCM_Inductor_THT_AKL -L_Axial_L20.3mm_D12.1mm_P7.62mm_Vertical_Vishay_IHA-101 -Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=20.32*12.07mm^2, Vishay, IHA-101, http://www.vishay.com/docs/34014/iha.pdf, Alternate KiCad Library -Inductor Axial series Axial Vertical pin pitch 7.62mm length 20.32mm diameter 12.07mm Vishay IHA-101 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Axial_L20.3mm_D12.1mm_P28.50mm_Horizontal_Vishay_IHA-101 -Inductor, Axial series, Axial, Horizontal, pin pitch=28.5mm, , length*diameter=20.32*12.07mm^2, Vishay, IHA-101, http://www.vishay.com/docs/34014/iha.pdf, Alternate KiCad Library -Inductor Axial series Axial Horizontal pin pitch 28.5mm length 20.32mm diameter 12.07mm Vishay IHA-101 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Axial_L20.3mm_D12.7mm_P7.62mm_Vertical_Vishay_IHA-201 -Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=20.32*12.7mm^2, Vishay, IHA-201, http://www.vishay.com/docs/34014/iha.pdf, Alternate KiCad Library -Inductor Axial series Axial Vertical pin pitch 7.62mm length 20.32mm diameter 12.7mm Vishay IHA-201 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Axial_L20.3mm_D12.7mm_P25.40mm_Horizontal_Vishay_IHA-201 -Inductor, Axial series, Axial, Horizontal, pin pitch=25.4mm, , length*diameter=20.32*12.7mm^2, Vishay, IHA-201, http://www.vishay.com/docs/34014/iha.pdf, Alternate KiCad Library -Inductor Axial series Axial Horizontal pin pitch 25.4mm length 20.32mm diameter 12.7mm Vishay IHA-201 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Axial_L23.4mm_D12.7mm_P7.62mm_Vertical_Vishay_IHA-203 -Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=23.37*12.7mm^2, Vishay, IHA-203, http://www.vishay.com/docs/34014/iha.pdf, Alternate KiCad Library -Inductor Axial series Axial Vertical pin pitch 7.62mm length 23.37mm diameter 12.7mm Vishay IHA-203 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Axial_L23.4mm_D12.7mm_P32.00mm_Horizontal_Vishay_IHA-203 -Inductor, Axial series, Axial, Horizontal, pin pitch=32mm, , length*diameter=23.37*12.7mm^2, Vishay, IHA-203, http://www.vishay.com/docs/34014/iha.pdf, Alternate KiCad Library -Inductor Axial series Axial Horizontal pin pitch 32mm length 23.37mm diameter 12.7mm Vishay IHA-203 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Axial_L24.0mm_D7.1mm_P5.08mm_Vertical_Vishay_IM-10-28 -Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=24*7.1mm^2, Vishay, IM-10-28, http://www.vishay.com/docs/34035/im10.pdf, Alternate KiCad Library -Inductor Axial series Axial Vertical pin pitch 5.08mm length 24mm diameter 7.1mm Vishay IM-10-28 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Axial_L24.0mm_D7.1mm_P30.48mm_Horizontal_Vishay_IM-10-28 -Inductor, Axial series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=24*7.1mm^2, Vishay, IM-10-28, http://www.vishay.com/docs/34035/im10.pdf, Alternate KiCad Library -Inductor Axial series Axial Horizontal pin pitch 30.48mm length 24mm diameter 7.1mm Vishay IM-10-28 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Axial_L24.0mm_D7.5mm_P5.08mm_Vertical_Fastron_MESC -Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=24*7.5mm^2, Fastron, MESC, http://cdn-reichelt.de/documents/datenblatt/B400/DS_MESC.pdf, Alternate KiCad Library -Inductor Axial series Axial Vertical pin pitch 5.08mm length 24mm diameter 7.5mm Fastron MESC -0 -2 -2 -PCM_Inductor_THT_AKL -L_Axial_L24.0mm_D7.5mm_P7.62mm_Vertical_Fastron_MESC -Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=24*7.5mm^2, Fastron, MESC, http://cdn-reichelt.de/documents/datenblatt/B400/DS_MESC.pdf, Alternate KiCad Library -Inductor Axial series Axial Vertical pin pitch 7.62mm length 24mm diameter 7.5mm Fastron MESC -0 -2 -2 -PCM_Inductor_THT_AKL -L_Axial_L24.0mm_D7.5mm_P27.94mm_Horizontal_Fastron_MESC -Inductor, Axial series, Axial, Horizontal, pin pitch=27.94mm, , length*diameter=24*7.5mm^2, Fastron, MESC, http://cdn-reichelt.de/documents/datenblatt/B400/DS_MESC.pdf, Alternate KiCad Library -Inductor Axial series Axial Horizontal pin pitch 27.94mm length 24mm diameter 7.5mm Fastron MESC -0 -2 -2 -PCM_Inductor_THT_AKL -L_Axial_L26.0mm_D9.0mm_P5.08mm_Vertical_Fastron_77A -Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=26*9mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf, Alternate KiCad Library -Inductor Axial series Axial Vertical pin pitch 5.08mm length 26mm diameter 9mm Fastron 77A -0 -2 -2 -PCM_Inductor_THT_AKL -L_Axial_L26.0mm_D9.0mm_P7.62mm_Vertical_Fastron_77A -Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=26*9mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf, Alternate KiCad Library -Inductor Axial series Axial Vertical pin pitch 7.62mm length 26mm diameter 9mm Fastron 77A -0 -2 -2 -PCM_Inductor_THT_AKL -L_Axial_L26.0mm_D9.0mm_P30.48mm_Horizontal_Fastron_77A -Inductor, Axial series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=26*9mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf, Alternate KiCad Library -Inductor Axial series Axial Horizontal pin pitch 30.48mm length 26mm diameter 9mm Fastron 77A -0 -2 -2 -PCM_Inductor_THT_AKL -L_Axial_L26.0mm_D10.0mm_P5.08mm_Vertical_Fastron_77A -Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=26*10mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf, Alternate KiCad Library -Inductor Axial series Axial Vertical pin pitch 5.08mm length 26mm diameter 10mm Fastron 77A -0 -2 -2 -PCM_Inductor_THT_AKL -L_Axial_L26.0mm_D10.0mm_P7.62mm_Vertical_Fastron_77A -Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=26*10mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf, Alternate KiCad Library -Inductor Axial series Axial Vertical pin pitch 7.62mm length 26mm diameter 10mm Fastron 77A -0 -2 -2 -PCM_Inductor_THT_AKL -L_Axial_L26.0mm_D10.0mm_P30.48mm_Horizontal_Fastron_77A -Inductor, Axial series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=26*10mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf, Alternate KiCad Library -Inductor Axial series Axial Horizontal pin pitch 30.48mm length 26mm diameter 10mm Fastron 77A -0 -2 -2 -PCM_Inductor_THT_AKL -L_Axial_L26.0mm_D11.0mm_P5.08mm_Vertical_Fastron_77A -Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=26*11mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf, Alternate KiCad Library -Inductor Axial series Axial Vertical pin pitch 5.08mm length 26mm diameter 11mm Fastron 77A -0 -2 -2 -PCM_Inductor_THT_AKL -L_Axial_L26.0mm_D11.0mm_P7.62mm_Vertical_Fastron_77A -Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=26*11mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf, Alternate KiCad Library -Inductor Axial series Axial Vertical pin pitch 7.62mm length 26mm diameter 11mm Fastron 77A -0 -2 -2 -PCM_Inductor_THT_AKL -L_Axial_L26.0mm_D11.0mm_P30.48mm_Horizontal_Fastron_77A -Inductor, Axial series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=26*11mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf, Alternate KiCad Library -Inductor Axial series Axial Horizontal pin pitch 30.48mm length 26mm diameter 11mm Fastron 77A -0 -2 -2 -PCM_Inductor_THT_AKL -L_Axial_L26.7mm_D12.1mm_P7.62mm_Vertical_Vishay_IHA-103 -Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=26.67*12.07mm^2, Vishay, IHA-103, http://www.vishay.com/docs/34014/iha.pdf, Alternate KiCad Library -Inductor Axial series Axial Vertical pin pitch 7.62mm length 26.67mm diameter 12.07mm Vishay IHA-103 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Axial_L26.7mm_D12.1mm_P35.00mm_Horizontal_Vishay_IHA-103 -Inductor, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=26.67*12.07mm^2, Vishay, IHA-103, http://www.vishay.com/docs/34014/iha.pdf, Alternate KiCad Library -Inductor Axial series Axial Horizontal pin pitch 35mm length 26.67mm diameter 12.07mm Vishay IHA-103 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Axial_L26.7mm_D14.0mm_P7.62mm_Vertical_Vishay_IHA-104 -Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=26.67*13.97mm^2, Vishay, IHA-104, http://www.vishay.com/docs/34014/iha.pdf, Alternate KiCad Library -Inductor Axial series Axial Vertical pin pitch 7.62mm length 26.67mm diameter 13.97mm Vishay IHA-104 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Axial_L26.7mm_D14.0mm_P35.00mm_Horizontal_Vishay_IHA-104 -Inductor, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=26.67*13.97mm^2, Vishay, IHA-104, http://www.vishay.com/docs/34014/iha.pdf, Alternate KiCad Library -Inductor Axial series Axial Horizontal pin pitch 35mm length 26.67mm diameter 13.97mm Vishay IHA-104 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Axial_L29.9mm_D14.0mm_P7.62mm_Vertical_Vishay_IHA-105 -Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=29.85*13.97mm^2, Vishay, IHA-105, http://www.vishay.com/docs/34014/iha.pdf, Alternate KiCad Library -Inductor Axial series Axial Vertical pin pitch 7.62mm length 29.85mm diameter 13.97mm Vishay IHA-105 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Axial_L29.9mm_D14.0mm_P38.00mm_Horizontal_Vishay_IHA-105 -Inductor, Axial series, Axial, Horizontal, pin pitch=38mm, , length*diameter=29.85*13.97mm^2, Vishay, IHA-105, http://www.vishay.com/docs/34014/iha.pdf, Alternate KiCad Library -Inductor Axial series Axial Horizontal pin pitch 38mm length 29.85mm diameter 13.97mm Vishay IHA-105 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Axial_L30.0mm_D8.0mm_P5.08mm_Vertical_Fastron_77A -Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=30*8mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf, Alternate KiCad Library -Inductor Axial series Axial Vertical pin pitch 5.08mm length 30mm diameter 8mm Fastron 77A -0 -2 -2 -PCM_Inductor_THT_AKL -L_Axial_L30.0mm_D8.0mm_P7.62mm_Vertical_Fastron_77A -Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=30*8mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf, Alternate KiCad Library -Inductor Axial series Axial Vertical pin pitch 7.62mm length 30mm diameter 8mm Fastron 77A -0 -2 -2 -PCM_Inductor_THT_AKL -L_Axial_L30.0mm_D8.0mm_P35.56mm_Horizontal_Fastron_77A -Inductor, Axial series, Axial, Horizontal, pin pitch=35.56mm, , length*diameter=30*8mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf, Alternate KiCad Library -Inductor Axial series Axial Horizontal pin pitch 35.56mm length 30mm diameter 8mm Fastron 77A -0 -2 -2 -PCM_Inductor_THT_AKL -L_Axial_P2.5mm_Air -Air-Core Inductor, Axial, Horizontal, pin pitch=2.5mm, Alternate KiCad Library -Inductor Air Coil Axial Horizontal pin pitch 2.5mm -0 -2 -2 -PCM_Inductor_THT_AKL -L_Axial_P5mm_Air -Air-Core Inductor, Axial, Horizontal, pin pitch=5mm, Alternate KiCad Library -Inductor Air Coil Axial Horizontal pin pitch 5mm -0 -2 -2 -PCM_Inductor_THT_AKL -L_Axial_P7.5mm_Air -Air-Core Inductor, Axial, Horizontal, pin pitch=7.5mm, Alternate KiCad Library -Inductor Air Coil Axial Horizontal pin pitch 7.5mm -0 -2 -2 -PCM_Inductor_THT_AKL -L_Axial_P10mm_Air -Air-Core Inductor, Axial, Horizontal, pin pitch=10mm, Alternate KiCad Library -Inductor Air Coil Axial Horizontal pin pitch 10mm -0 -2 -2 -PCM_Inductor_THT_AKL -L_Axial_P12.5mm_Air -Air-Core Inductor, Axial, Horizontal, pin pitch=12.5mm, Alternate KiCad Library -Inductor Air Coil Axial Horizontal pin pitch 12.5mm -0 -2 -2 -PCM_Inductor_THT_AKL -L_Axial_P15mm_Air -Air-Core Inductor, Axial, Horizontal, pin pitch=15mm, Alternate KiCad Library -Inductor Air Coil Axial Horizontal pin pitch 15mm -0 -2 -2 -PCM_Inductor_THT_AKL -L_Axial_P20mm_Air -Air-Core Inductor, Axial, Horizontal, pin pitch=20mm, Alternate KiCad Library -Inductor Air Coil Axial Horizontal pin pitch 20mm -0 -2 -2 -PCM_Inductor_THT_AKL -L_Axial_P25mm_Air -Air-Core Inductor, Axial, Horizontal, pin pitch=25mm, Alternate KiCad Library -Inductor Air Coil Axial Horizontal pin pitch 25mm -0 -2 -2 -PCM_Inductor_THT_AKL -L_Axial_P30mm_Air -Air-Core Inductor, Axial, Horizontal, pin pitch=30mm, Alternate KiCad Library -Inductor Air Coil Axial Horizontal pin pitch 30mm -0 -2 -2 -PCM_Inductor_THT_AKL -L_CommonMode_Toroid_Vertical_L19.3mm_W10.8mm_Px6.35mm_Py15.24mm_Bourns_8100 -L_CommonMode_Toroid, Vertical series, Radial, pin pitch=6.35*15.24mm^2, , length*width=19.304*10.795mm^2, Bourns, 8100, http://datasheet.octopart.com/8120-RC-Bourns-datasheet-10228452.pdf, Alternate KiCad Library -L_CommonMode_Toroid Vertical series Radial pin pitch 6.35*15.24mm^2 length 19.304mm width 10.795mm Bourns 8100 -0 -4 -4 -PCM_Inductor_THT_AKL -L_CommonMode_Toroid_Vertical_L21.0mm_W10.0mm_Px5.08mm_Py12.70mm_muRATA_5100 -L_CommonMode_Toroid, Vertical series, Radial, pin pitch=5.08*12.70mm^2, , length*width=21*10mm^2, muRATA, 5100, http://www.murata-ps.com/data/magnetics/kmp_5100.pdf, Alternate KiCad Library -L_CommonMode_Toroid Vertical series Radial pin pitch 5.08*12.70mm^2 length 21mm width 10mm muRATA 5100 -0 -4 -4 -PCM_Inductor_THT_AKL -L_CommonMode_Toroid_Vertical_L24.0mm_W16.3mm_Px10.16mm_Py20.32mm_muRATA_5200 -L_CommonMode_Toroid, Vertical series, Radial, pin pitch=10.16*20.32mm^2, , length*width=24*16.3mm^2, muRATA, 5200, http://www.murata-ps.com/data/magnetics/kmp_5200.pdf, Alternate KiCad Library -L_CommonMode_Toroid Vertical series Radial pin pitch 10.16*20.32mm^2 length 24mm width 16.3mm muRATA 5200 -0 -4 -4 -PCM_Inductor_THT_AKL -L_CommonMode_Toroid_Vertical_L30.5mm_W15.2mm_Px10.16mm_Py20.32mm_Bourns_8100 -L_CommonMode_Toroid, Vertical series, Radial, pin pitch=10.16*20.32mm^2, , length*width=30.479999999999997*15.239999999999998mm^2, Bourns, 8100, http://datasheet.octopart.com/8120-RC-Bourns-datasheet-10228452.pdf, Alternate KiCad Library -L_CommonMode_Toroid Vertical series Radial pin pitch 10.16*20.32mm^2 length 30.479999999999997mm width 15.239999999999998mm Bourns 8100 -0 -4 -4 -PCM_Inductor_THT_AKL -L_CommonMode_Toroid_Vertical_L34.3mm_W20.3mm_Px15.24mm_Py22.86mm_Bourns_8100 -L_CommonMode_Toroid, Vertical series, Radial, pin pitch=15.24*22.86mm^2, , length*width=34.29*20.32mm^2, Bourns, 8100, http://datasheet.octopart.com/8120-RC-Bourns-datasheet-10228452.pdf, Alternate KiCad Library -L_CommonMode_Toroid Vertical series Radial pin pitch 15.24*22.86mm^2 length 34.29mm width 20.32mm Bourns 8100 -0 -4 -4 -PCM_Inductor_THT_AKL -L_CommonMode_Toroid_Vertical_L36.8mm_W20.3mm_Px15.24mm_Py22.86mm_Bourns_8100 -L_CommonMode_Toroid, Vertical series, Radial, pin pitch=15.24*22.86mm^2, , length*width=36.83*20.32mm^2, Bourns, 8100, http://datasheet.octopart.com/8120-RC-Bourns-datasheet-10228452.pdf, Alternate KiCad Library -L_CommonMode_Toroid Vertical series Radial pin pitch 15.24*22.86mm^2 length 36.83mm width 20.32mm Bourns 8100 -0 -4 -4 -PCM_Inductor_THT_AKL -L_CommonMode_Toroid_Vertical_L38.1mm_W20.3mm_Px15.24mm_Py22.86mm_Bourns_8100 -L_CommonMode_Toroid, Vertical series, Radial, pin pitch=15.24*22.86mm^2, , length*width=38.099999999999994*20.32mm^2, Bourns, 8100, http://datasheet.octopart.com/8120-RC-Bourns-datasheet-10228452.pdf, Alternate KiCad Library -L_CommonMode_Toroid Vertical series Radial pin pitch 15.24*22.86mm^2 length 38.099999999999994mm width 20.32mm Bourns 8100 -0 -4 -4 -PCM_Inductor_THT_AKL -L_CommonMode_Toroid_Vertical_L39.4mm_W20.3mm_Px15.24mm_Py22.86mm_Bourns_8100 -L_CommonMode_Toroid, Vertical series, Radial, pin pitch=15.24*22.86mm^2, , length*width=39.37*20.32mm^2, Bourns, 8100, http://datasheet.octopart.com/8120-RC-Bourns-datasheet-10228452.pdf, Alternate KiCad Library -L_CommonMode_Toroid Vertical series Radial pin pitch 15.24*22.86mm^2 length 39.37mm width 20.32mm Bourns 8100 -0 -4 -4 -PCM_Inductor_THT_AKL -L_CommonMode_Toroid_Vertical_L41.9mm_W20.3mm_Px15.24mm_Py22.86mm_Bourns_8100 -L_CommonMode_Toroid, Vertical series, Radial, pin pitch=15.24*22.86mm^2, , length*width=41.91*20.32mm^2, Bourns, 8100, http://datasheet.octopart.com/8120-RC-Bourns-datasheet-10228452.pdf, Alternate KiCad Library -L_CommonMode_Toroid Vertical series Radial pin pitch 15.24*22.86mm^2 length 41.91mm width 20.32mm Bourns 8100 -0 -4 -4 -PCM_Inductor_THT_AKL -L_CommonMode_Toroid_Vertical_L43.2mm_W22.9mm_Px17.78mm_Py30.48mm_Bourns_8100 -L_CommonMode_Toroid, Vertical series, Radial, pin pitch=17.78*30.48mm^2, , length*width=43.18*22.86mm^2, Bourns, 8100, http://datasheet.octopart.com/8120-RC-Bourns-datasheet-10228452.pdf, Alternate KiCad Library -L_CommonMode_Toroid Vertical series Radial pin pitch 17.78*30.48mm^2 length 43.18mm width 22.86mm Bourns 8100 -0 -4 -4 -PCM_Inductor_THT_AKL -L_CommonMode_Wuerth_WE-CMB-L -Wuerth, WE-CMB, Bauform L,, Alternate KiCad Library -CommonModeChoke Gleichtaktdrossel -0 -4 -4 -PCM_Inductor_THT_AKL -L_CommonMode_Wuerth_WE-CMB-M -Wuerth, WE-CMB, Bauform M, Alternate KiCad Library -CommonModeChoke Gleichtaktdrossel -0 -4 -4 -PCM_Inductor_THT_AKL -L_CommonMode_Wuerth_WE-CMB-S -Wuerth, WE-CMB, Bauform S, Alternate KiCad Library -CommonModeChoke Gleichtaktdrossel -0 -4 -4 -PCM_Inductor_THT_AKL -L_CommonMode_Wuerth_WE-CMB-XL -Wuerth, WE-CMB, Bauform XL,, Alternate KiCad Library -CommonModeChoke Gleichtaktdrossel -0 -4 -4 -PCM_Inductor_THT_AKL -L_CommonMode_Wuerth_WE-CMB-XS -Wuerth, WE-CMB, Bauform XS, Alternate KiCad Library -CommonModeChoke Gleichtaktdrossel -0 -4 -4 -PCM_Inductor_THT_AKL -L_CommonMode_Wuerth_WE-CMB-XXL -Wuerth, WE-CMB, Bauform XXL, Alternate KiCad Library -CommonModeChoke Gleichtaktdrossel -0 -4 -4 -PCM_Inductor_THT_AKL -L_Radial_D6.0mm_P4.00mm -Inductor, Radial series, Radial, pin pitch=4.00mm, , diameter=6.0mm, http://www.abracon.com/Magnetics/radial/AIUR-07.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 4.00mm diameter 6.0mm -0 -2 -2 -PCM_Inductor_THT_AKL -L_Radial_D7.0mm_P3.00mm -Inductor, Radial series, Radial, pin pitch=3.00mm, , diameter=7mm, http://www.abracon.com/Magnetics/radial/AIUR-16.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 3.00mm diameter 7mm -0 -2 -2 -PCM_Inductor_THT_AKL -L_Radial_D7.2mm_P3.00mm_MuRATA_1700 -Inductor, Radial series, Radial, pin pitch=3.00mm, , diameter=7.2mm, MuRATA, 1700, http://www.murata-ps.com/data/magnetics/kmp_1700.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 3.00mm diameter 7.2mm MuRATA 1700 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Radial_D7.5mm_P3.50mm_Fastron_07P -Inductor, Radial series, Radial, pin pitch=3.50mm, , diameter=7.5mm, Fastron, 07P, http://www.fastrongroup.com/image-show/39/07P.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library -Inductor Radial series Radial pin pitch 3.50mm diameter 7.5mm Fastron 07P -0 -2 -2 -PCM_Inductor_THT_AKL -L_Radial_D7.5mm_P5.00mm_Fastron_07P -Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=7.5mm, Fastron, 07P, http://www.fastrongroup.com/image-show/39/07P.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library -Inductor Radial series Radial pin pitch 5.00mm diameter 7.5mm Fastron 07P -0 -2 -2 -PCM_Inductor_THT_AKL -L_Radial_D7.8mm_P5.00mm_Fastron_07HCP -Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=7.8mm, Fastron, 07HCP, http://www.abracon.com/Magnetics/radial/AISR875.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 5.00mm diameter 7.8mm Fastron 07HCP -0 -2 -2 -PCM_Inductor_THT_AKL -L_Radial_D8.7mm_P5.00mm_Fastron_07HCP -Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=8.7mm, Fastron, 07HCP, http://cdn-reichelt.de/documents/datenblatt/B400/DS_07HCP.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 5.00mm diameter 8.7mm Fastron 07HCP -0 -2 -2 -PCM_Inductor_THT_AKL -L_Radial_D9.5mm_P5.00mm_Fastron_07HVP -Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=9.5mm, Fastron, 07HVP, http://www.fastrongroup.com/image-show/107/07HVP%2007HVP_T.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library -Inductor Radial series Radial pin pitch 5.00mm diameter 9.5mm Fastron 07HVP -0 -2 -2 -PCM_Inductor_THT_AKL -L_Radial_D10.0mm_P5.00mm_Fastron_07M -Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=10mm, Fastron, 07M, http://www.fastrongroup.com/image-show/37/07M.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library -Inductor Radial series Radial pin pitch 5.00mm diameter 10mm Fastron 07M -0 -2 -2 -PCM_Inductor_THT_AKL -L_Radial_D10.0mm_P5.00mm_Fastron_07P -Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=10mm, Fastron, 07P, http://www.fastrongroup.com/image-show/37/07M.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library -Inductor Radial series Radial pin pitch 5.00mm diameter 10mm Fastron 07P -0 -2 -2 -PCM_Inductor_THT_AKL -L_Radial_D10.0mm_P5.00mm_Neosid_SD12_style3 -Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=10.0mm, Neosid, SD12, style3, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_Sd12.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 5.00mm diameter 10.0mm Neosid SD12 style3 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Radial_D10.0mm_P5.00mm_Neosid_SD12k_style3 -Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=10.0mm, Neosid, SD12k, style3, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_Sd12k.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 5.00mm diameter 10.0mm Neosid SD12k style3 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Radial_D10.5mm_P4.00x5.00mm_Murata_1200RS -Inductor, Radial, Pitch=4.00x5.00mm, Diameter=10.5mm, Murata 1200RS, http://www.murata-ps.com/data/magnetics/kmp_1200rs.pdf, Alternate KiCad Library -Inductor Radial Murata 1200RS -0 -4 -2 -PCM_Inductor_THT_AKL -L_Radial_D10.5mm_P5.00mm_Abacron_AISR-01 -Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=10.5mm, Abacron, AISR-01, http://www.abracon.com/Magnetics/radial/AISR-01.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 5.00mm diameter 10.5mm Abacron AISR-01 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Radial_D12.0mm_P5.00mm_Fastron_11P -Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=12.0mm, Fastron, 11P, http://cdn-reichelt.de/documents/datenblatt/B400/DS_11P.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 5.00mm diameter 12.0mm Fastron 11P -0 -2 -2 -PCM_Inductor_THT_AKL -L_Radial_D12.0mm_P5.00mm_Neosid_SD12_style2 -Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=12.0mm, Neosid, SD12, style2, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_Sd12.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 5.00mm diameter 12.0mm Neosid SD12 style2 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Radial_D12.0mm_P5.00mm_Neosid_SD12k_style2 -Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=12.0mm, Neosid, SD12k, style2, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_Sd12k.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 5.00mm diameter 12.0mm Neosid SD12k style2 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Radial_D12.0mm_P6.00mm_MuRATA_1900R -Inductor, Radial series, Radial, pin pitch=6.00mm, , diameter=12.0mm, MuRATA, 1900R, http://www.murata-ps.com/data/magnetics/kmp_1900r.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 6.00mm diameter 12.0mm MuRATA 1900R -0 -2 -2 -PCM_Inductor_THT_AKL -L_Radial_D12.0mm_P10.00mm_Neosid_SD12_style1 -Inductor, Radial series, Radial, pin pitch=10.00mm, , diameter=12.0mm, Neosid, SD12, style1, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_Sd12.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 10.00mm diameter 12.0mm Neosid SD12 style1 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Radial_D12.0mm_P10.00mm_Neosid_SD12k_style1 -Inductor, Radial series, Radial, pin pitch=10.00mm, , diameter=12.0mm, Neosid, SD12k, style1, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_Sd12k.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 10.00mm diameter 12.0mm Neosid SD12k style1 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Radial_D12.5mm_P7.00mm_Fastron_09HCP -Inductor, Radial series, Radial, pin pitch=7.00mm, , diameter=12.5mm, Fastron, 09HCP, http://cdn-reichelt.de/documents/datenblatt/B400/DS_09HCP.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 7.00mm diameter 12.5mm Fastron 09HCP -0 -2 -2 -PCM_Inductor_THT_AKL -L_Radial_D12.5mm_P9.00mm_Fastron_09HCP -Inductor, Radial series, Radial, pin pitch=9.00mm, , diameter=12.5mm, Fastron, 09HCP, http://cdn-reichelt.de/documents/datenblatt/B400/DS_09HCP.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 9.00mm diameter 12.5mm Fastron 09HCP -0 -2 -2 -PCM_Inductor_THT_AKL -L_Radial_D13.5mm_P7.00mm_Fastron_09HCP -Inductor, Radial series, Radial, pin pitch=7.00mm, , diameter=13.5mm, Fastron, 09HCP, http://cdn-reichelt.de/documents/datenblatt/B400/DS_09HCP.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 7.00mm diameter 13.5mm Fastron 09HCP -0 -2 -2 -PCM_Inductor_THT_AKL -L_Radial_D14.2mm_P10.00mm_Neosid_SD14 -Inductor, Radial series, Radial, pin pitch=10.00mm, , diameter=14.2mm, Neosid, SD14, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_Sd14.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 10.00mm diameter 14.2mm Neosid SD14 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Radial_D16.8mm_P11.43mm_Vishay_IHB-1 -Inductor, Radial series, Radial, pin pitch=11.43mm, , diameter=16.8mm, Vishay, IHB-1, http://www.vishay.com/docs/34015/ihb.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 11.43mm diameter 16.8mm Vishay IHB-1 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Radial_D16.8mm_P12.07mm_Vishay_IHB-1 -Inductor, Radial series, Radial, pin pitch=12.07mm, , diameter=16.8mm, Vishay, IHB-1, http://www.vishay.com/docs/34015/ihb.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 12.07mm diameter 16.8mm Vishay IHB-1 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Radial_D16.8mm_P12.70mm_Vishay_IHB-1 -Inductor, Radial series, Radial, pin pitch=12.70mm, , diameter=16.8mm, Vishay, IHB-1, http://www.vishay.com/docs/34015/ihb.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 12.70mm diameter 16.8mm Vishay IHB-1 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Radial_D18.0mm_P10.00mm -Inductor, Radial series, Radial, pin pitch=10.00mm, , diameter=18mm, http://www.abracon.com/Magnetics/radial/AIUR-15.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 10.00mm diameter 18mm -0 -2 -2 -PCM_Inductor_THT_AKL -L_Radial_D21.0mm_P14.61mm_Vishay_IHB-2 -Inductor, Radial series, Radial, pin pitch=14.61mm, , diameter=21mm, Vishay, IHB-2, http://www.vishay.com/docs/34015/ihb.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 14.61mm diameter 21mm Vishay IHB-2 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Radial_D21.0mm_P15.00mm_Vishay_IHB-2 -Inductor, Radial series, Radial, pin pitch=15.00mm, , diameter=21mm, Vishay, IHB-2, http://www.vishay.com/docs/34015/ihb.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 15.00mm diameter 21mm Vishay IHB-2 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Radial_D21.0mm_P15.24mm_Vishay_IHB-2 -Inductor, Radial series, Radial, pin pitch=15.24mm, , diameter=21mm, Vishay, IHB-2, http://www.vishay.com/docs/34015/ihb.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 15.24mm diameter 21mm Vishay IHB-2 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Radial_D21.0mm_P15.75mm_Vishay_IHB-2 -Inductor, Radial series, Radial, pin pitch=15.75mm, , diameter=21mm, Vishay, IHB-2, http://www.vishay.com/docs/34015/ihb.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 15.75mm diameter 21mm Vishay IHB-2 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Radial_D21.0mm_P19.00mm -Inductor, Radial series, Radial, pin pitch=19.00mm, , diameter=21mm, http://www.abracon.com/Magnetics/radial/AIRD02.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 19.00mm diameter 21mm -0 -2 -2 -PCM_Inductor_THT_AKL -L_Radial_D24.0mm_P24.00mm -Inductor, Radial series, Radial, pin pitch=24.00mm, , diameter=24mm, Alternate KiCad Library -Inductor Radial series Radial pin pitch 24.00mm diameter 24mm -0 -2 -2 -PCM_Inductor_THT_AKL -L_Radial_D24.4mm_P22.90mm_muRATA_1400series -Inductor, Radial series, Radial, pin pitch=22.90mm, , diameter=24.4mm, muRATA, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 22.90mm diameter 24.4mm muRATA 1400series -0 -2 -2 -PCM_Inductor_THT_AKL -L_Radial_D24.4mm_P23.10mm_muRATA_1400series -Inductor, Radial series, Radial, pin pitch=23.10mm, , diameter=24.4mm, muRATA, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 23.10mm diameter 24.4mm muRATA 1400series -0 -2 -2 -PCM_Inductor_THT_AKL -L_Radial_D24.4mm_P23.40mm_muRATA_1400series -Inductor, Radial series, Radial, pin pitch=23.40mm, , diameter=24.4mm, muRATA, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 23.40mm diameter 24.4mm muRATA 1400series -0 -2 -2 -PCM_Inductor_THT_AKL -L_Radial_D24.4mm_P23.70mm_muRATA_1400series -Inductor, Radial series, Radial, pin pitch=23.70mm, , diameter=24.4mm, muRATA, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 23.70mm diameter 24.4mm muRATA 1400series -0 -2 -2 -PCM_Inductor_THT_AKL -L_Radial_D24.4mm_P23.90mm_muRATA_1400series -Inductor, Radial series, Radial, pin pitch=23.90mm, , diameter=24.4mm, muRATA, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 23.90mm diameter 24.4mm muRATA 1400series -0 -2 -2 -PCM_Inductor_THT_AKL -L_Radial_D27.9mm_P18.29mm_Vishay_IHB-3 -Inductor, Radial series, Radial, pin pitch=18.29mm, , diameter=27.9mm, Vishay, IHB-3, http://www.vishay.com/docs/34015/ihb.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 18.29mm diameter 27.9mm Vishay IHB-3 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Radial_D27.9mm_P19.05mm_Vishay_IHB-3 -Inductor, Radial series, Radial, pin pitch=19.05mm, , diameter=27.9mm, Vishay, IHB-3, http://www.vishay.com/docs/34015/ihb.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 19.05mm diameter 27.9mm Vishay IHB-3 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Radial_D27.9mm_P20.07mm_Vishay_IHB-3 -Inductor, Radial series, Radial, pin pitch=20.07mm, , diameter=27.9mm, Vishay, IHB-3, http://www.vishay.com/docs/34015/ihb.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 20.07mm diameter 27.9mm Vishay IHB-3 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Radial_D28.0mm_P29.20mm -Inductor, Radial series, Radial, pin pitch=29.20mm, , diameter=28mm, Alternate KiCad Library -Inductor Radial series Radial pin pitch 29.20mm diameter 28mm -0 -2 -2 -PCM_Inductor_THT_AKL -L_Radial_D29.8mm_P28.30mm_muRATA_1400series -Inductor, Radial series, Radial, pin pitch=28.30mm, , diameter=29.8mm, muRATA, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 28.30mm diameter 29.8mm muRATA 1400series -0 -2 -2 -PCM_Inductor_THT_AKL -L_Radial_D29.8mm_P28.50mm_muRATA_1400series -Inductor, Radial series, Radial, pin pitch=28.50mm, , diameter=29.8mm, muRATA, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 28.50mm diameter 29.8mm muRATA 1400series -0 -2 -2 -PCM_Inductor_THT_AKL -L_Radial_D29.8mm_P28.80mm_muRATA_1400series -Inductor, Radial series, Radial, pin pitch=28.80mm, , diameter=29.8mm, muRATA, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 28.80mm diameter 29.8mm muRATA 1400series -0 -2 -2 -PCM_Inductor_THT_AKL -L_Radial_D29.8mm_P29.00mm_muRATA_1400series -Inductor, Radial series, Radial, pin pitch=29.00mm, , diameter=29.8mm, muRATA, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 29.00mm diameter 29.8mm muRATA 1400series -0 -2 -2 -PCM_Inductor_THT_AKL -L_Radial_D29.8mm_P29.30mm_muRATA_1400series -Inductor, Radial series, Radial, pin pitch=29.30mm, , diameter=29.8mm, muRATA, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 29.30mm diameter 29.8mm muRATA 1400series -0 -2 -2 -PCM_Inductor_THT_AKL -L_Radial_D40.6mm_P26.16mm_Vishay_IHB-5 -Inductor, Radial series, Radial, pin pitch=26.16mm, , diameter=40.64mm, Vishay, IHB-5, http://www.vishay.com/docs/34015/ihb.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 26.16mm diameter 40.64mm Vishay IHB-5 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Radial_D40.6mm_P27.18mm_Vishay_IHB-4 -Inductor, Radial series, Radial, pin pitch=27.18mm, , diameter=40.64mm, Vishay, IHB-4, http://www.vishay.com/docs/34015/ihb.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 27.18mm diameter 40.64mm Vishay IHB-4 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Radial_D40.6mm_P27.94mm_Vishay_IHB-4 -Inductor, Radial series, Radial, pin pitch=27.94mm, , diameter=40.64mm, Vishay, IHB-4, http://www.vishay.com/docs/34015/ihb.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 27.94mm diameter 40.64mm Vishay IHB-4 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Radial_D40.6mm_P27.94mm_Vishay_IHB-5 -Inductor, Radial series, Radial, pin pitch=27.94mm, , diameter=40.64mm, Vishay, IHB-5, http://www.vishay.com/docs/34015/ihb.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 27.94mm diameter 40.64mm Vishay IHB-5 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Radial_D40.6mm_P28.70mm_Vishay_IHB-5 -Inductor, Radial series, Radial, pin pitch=28.70mm, , diameter=40.64mm, Vishay, IHB-5, http://www.vishay.com/docs/34015/ihb.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 28.70mm diameter 40.64mm Vishay IHB-5 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Radial_D50.8mm_P33.27mm_Vishay_IHB-6 -Inductor, Radial series, Radial, pin pitch=33.27mm, , diameter=50.8mm, Vishay, IHB-6, http://www.vishay.com/docs/34015/ihb.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 33.27mm diameter 50.8mm Vishay IHB-6 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Radial_D50.8mm_P34.29mm_Vishay_IHB-6 -Inductor, Radial series, Radial, pin pitch=34.29mm, , diameter=50.8mm, Vishay, IHB-6, http://www.vishay.com/docs/34015/ihb.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 34.29mm diameter 50.8mm Vishay IHB-6 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Radial_D50.8mm_P35.81mm_Vishay_IHB-6 -Inductor, Radial series, Radial, pin pitch=35.81mm, , diameter=50.8mm, Vishay, IHB-6, http://www.vishay.com/docs/34015/ihb.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 35.81mm diameter 50.8mm Vishay IHB-6 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Radial_D50.8mm_P36.32mm_Vishay_IHB-6 -Inductor, Radial series, Radial, pin pitch=36.32mm, , diameter=50.8mm, Vishay, IHB-6, http://www.vishay.com/docs/34015/ihb.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 36.32mm diameter 50.8mm Vishay IHB-6 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Radial_D50.8mm_P38.86mm_Vishay_IHB-6 -Inductor, Radial series, Radial, pin pitch=38.86mm, , diameter=50.8mm, Vishay, IHB-6, http://www.vishay.com/docs/34015/ihb.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 38.86mm diameter 50.8mm Vishay IHB-6 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Radial_L7.5mm_W4.6mm_P5.00mm_Neosid_SD75 -Inductor, Radial series, Radial, pin pitch=5.00mm, , length*width=7.5*4.6mm^2, Neosid, SD75, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_Sd75.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 5.00mm length 7.5mm width 4.6mm Neosid SD75 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Radial_L8.0mm_W8.0mm_P5.00mm_Neosid_NE-CPB-07E -Inductor, Radial series, Radial, pin pitch=5.00mm, , length*width=8*8mm^2, Neosid, NE-CPB-07E, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_NE_CPB07E.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 5.00mm length 8mm width 8mm Neosid NE-CPB-07E -0 -2 -2 -PCM_Inductor_THT_AKL -L_Radial_L8.0mm_W8.0mm_P5.00mm_Neosid_SD8 -Inductor, Radial series, Radial, pin pitch=5.00mm, , length*width=8*8mm^2, Neosid, SD8, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_Sd8.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 5.00mm length 8mm width 8mm Neosid SD8 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Radial_L9.1mm_W9.1mm_Px6.35mm_Py6.35mm_Pulse_LP-25 -Inductor, Radial series, Radial, pin pitch=6.35*6.35mm^2, , length*width=9.14*9.14mm^2, Pulse, LP-25, http://datasheet.octopart.com/PE-54044NL-Pulse-datasheet-5313493.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 6.35*6.35mm^2 length 9.14mm width 9.14mm Pulse LP-25 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Radial_L10.2mm_W10.2mm_Px7.62mm_Py7.62mm_Pulse_LP-30 -Inductor, Radial series, Radial, pin pitch=7.62*7.62mm^2, , length*width=10.16*10.16mm^2, Pulse, LP-30, http://datasheet.octopart.com/PE-54044NL-Pulse-datasheet-5313493.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 7.62*7.62mm^2 length 10.16mm width 10.16mm Pulse LP-30 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Radial_L11.5mm_W11.5mm_Px6.00mm_Py6.00mm_Neosid_NE-CPB-11EN_Drill1.3mm -Inductor, Radial series, Radial, pin pitch=6.00*6.00mm^2, , length*width=11.5*11.5mm^2, Neosid, NE-CPB-11EN, Drill1.3mm, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_NE_CPB11EN.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 6.00*6.00mm^2 length 11.5mm width 11.5mm Neosid NE-CPB-11EN Drill1.3mm -0 -2 -2 -PCM_Inductor_THT_AKL -L_Radial_L11.5mm_W11.5mm_Px6.00mm_Py6.00mm_Neosid_NE-CPB-11EN_Drill1.5mm -Inductor, Radial series, Radial, pin pitch=6.00*6.00mm^2, , length*width=11.5*11.5mm^2, Neosid, NE-CPB-11EN, Drill1.5mm, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_NE_CPB11EN.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 6.00*6.00mm^2 length 11.5mm width 11.5mm Neosid NE-CPB-11EN Drill1.5mm -0 -2 -2 -PCM_Inductor_THT_AKL -L_Radial_L11.5mm_W11.5mm_Px6.00mm_Py6.00mm_Neosid_NE-CPB-11EN_Drill1.7mm -Inductor, Radial series, Radial, pin pitch=6.00*6.00mm^2, , length*width=11.5*11.5mm^2, Neosid, NE-CPB-11EN, Drill1.7mm, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_NE_CPB11EN.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 6.00*6.00mm^2 length 11.5mm width 11.5mm Neosid NE-CPB-11EN Drill1.7mm -0 -2 -2 -PCM_Inductor_THT_AKL -L_Radial_L11.5mm_W11.5mm_Px6.00mm_Py6.00mm_Neosid_NE-CPB-11EN_Drill1.8mm -Inductor, Radial series, Radial, pin pitch=6.00*6.00mm^2, , length*width=11.5*11.5mm^2, Neosid, NE-CPB-11EN, Drill1.8mm, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_NE_CPB11EN.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 6.00*6.00mm^2 length 11.5mm width 11.5mm Neosid NE-CPB-11EN Drill1.8mm -0 -2 -2 -PCM_Inductor_THT_AKL -L_Radial_L12.6mm_W12.6mm_Px9.52mm_Py9.52mm_Pulse_LP-37 -Inductor, Radial series, Radial, pin pitch=9.52*9.52mm^2, , length*width=12.57*12.57mm^2, Pulse, LP-37, http://datasheet.octopart.com/PE-54044NL-Pulse-datasheet-5313493.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 9.52*9.52mm^2 length 12.57mm width 12.57mm Pulse LP-37 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Radial_L16.1mm_W16.1mm_Px7.62mm_Py12.70mm_Pulse_LP-44 -Inductor, Radial series, Radial, pin pitch=7.62*12.70mm^2, , length*width=16.13*16.13mm^2, Pulse, LP-44, http://datasheet.octopart.com/PE-54044NL-Pulse-datasheet-5313493.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 7.62*12.70mm^2 length 16.13mm width 16.13mm Pulse LP-44 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Toroid_Horizontal_D3.2mm_P6.40mm_Diameter3-5mm_Amidon-T12 -L_Toroid, Horizontal series, Radial, pin pitch=6.40mm, , diameter=3.175mm, Diameter3-5mm, Amidon-T12, Alternate KiCad Library -L_Toroid Horizontal series Radial pin pitch 6.40mm diameter 3.175mm Diameter3-5mm Amidon-T12 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Toroid_Horizontal_D4.1mm_P8.00mm_Diameter4-5mm_Amidon-T16 -L_Toroid, Horizontal series, Radial, pin pitch=8.00mm, , diameter=4.064mm, Diameter4-5mm, Amidon-T16, Alternate KiCad Library -L_Toroid Horizontal series Radial pin pitch 8.00mm diameter 4.064mm Diameter4-5mm Amidon-T16 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Toroid_Horizontal_D5.1mm_P9.00mm_Diameter6-5mm_Amidon-T20 -L_Toroid, Horizontal series, Radial, pin pitch=9.00mm, , diameter=5.08mm, Diameter6-5mm, Amidon-T20, Alternate KiCad Library -L_Toroid Horizontal series Radial pin pitch 9.00mm diameter 5.08mm Diameter6-5mm Amidon-T20 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Toroid_Horizontal_D6.5mm_P10.00mm_Diameter7-5mm_Amidon-T25 -L_Toroid, Horizontal series, Radial, pin pitch=10.00mm, , diameter=6.476999999999999mm, Diameter7-5mm, Amidon-T25, Alternate KiCad Library -L_Toroid Horizontal series Radial pin pitch 10.00mm diameter 6.476999999999999mm Diameter7-5mm Amidon-T25 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Toroid_Horizontal_D7.8mm_P13.00mm_Diameter9-5mm_Amidon-T30 -L_Toroid, Horizontal series, Radial, pin pitch=13.00mm, , diameter=7.7978mm, Diameter9-5mm, Amidon-T30, Alternate KiCad Library -L_Toroid Horizontal series Radial pin pitch 13.00mm diameter 7.7978mm Diameter9-5mm Amidon-T30 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Toroid_Horizontal_D9.5mm_P15.00mm_Diameter10-5mm_Amidon-T37 -L_Toroid, Horizontal series, Radial, pin pitch=15.00mm, , diameter=9.524999999999999mm, Diameter10-5mm, Amidon-T37, Alternate KiCad Library -L_Toroid Horizontal series Radial pin pitch 15.00mm diameter 9.524999999999999mm Diameter10-5mm Amidon-T37 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Toroid_Horizontal_D11.2mm_P17.00mm_Diameter12-5mm_Amidon-T44 -L_Toroid, Horizontal series, Radial, pin pitch=17.00mm, , diameter=11.176mm, Diameter12-5mm, Amidon-T44, Alternate KiCad Library -L_Toroid Horizontal series Radial pin pitch 17.00mm diameter 11.176mm Diameter12-5mm Amidon-T44 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Toroid_Horizontal_D12.7mm_P20.00mm_Diameter14-5mm_Amidon-T50 -L_Toroid, Horizontal series, Radial, pin pitch=20.00mm, , diameter=12.7mm, Diameter14-5mm, Amidon-T50, Alternate KiCad Library -L_Toroid Horizontal series Radial pin pitch 20.00mm diameter 12.7mm Diameter14-5mm Amidon-T50 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Toroid_Horizontal_D16.8mm_P14.70mm_Vishay_TJ3 -L_Toroid, Horizontal series, Radial, pin pitch=14.70mm, , diameter=16.8mm, Vishay, TJ3, http://www.vishay.com/docs/34079/tj.pdf, Alternate KiCad Library -L_Toroid Horizontal series Radial pin pitch 14.70mm diameter 16.8mm Vishay TJ3 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Toroid_Horizontal_D16.8mm_P14.70mm_Vishay_TJ3_BigPads -L_Toroid, Horizontal series, Radial, pin pitch=14.70mm, , diameter=16.8mm, Vishay, TJ3, BigPads, http://www.vishay.com/docs/34079/tj.pdf, Alternate KiCad Library -L_Toroid Horizontal series Radial pin pitch 14.70mm diameter 16.8mm Vishay TJ3 BigPads -0 -2 -2 -PCM_Inductor_THT_AKL -L_Toroid_Horizontal_D17.3mm_P15.24mm_Bourns_2000 -L_Toroid, Horizontal series, Radial, pin pitch=15.24mm, , diameter=17.3mm, Bourns, 2000, http://www.bourns.com/docs/Product-Datasheets/2000_series.pdf?sfvrsn=5, Alternate KiCad Library -L_Toroid Horizontal series Radial pin pitch 15.24mm diameter 17.3mm Bourns 2000 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Toroid_Horizontal_D21.8mm_P19.10mm_Bourns_2100 -L_Toroid, Horizontal series, Radial, pin pitch=19.10mm, , diameter=21.8mm, Bourns, 2100, http://www.bourns.com/docs/Product-Datasheets/2100_series.pdf?sfvrsn=3, Alternate KiCad Library -L_Toroid Horizontal series Radial pin pitch 19.10mm diameter 21.8mm Bourns 2100 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Toroid_Horizontal_D21.8mm_P19.60mm_Bourns_2100 -L_Toroid, Horizontal series, Radial, pin pitch=19.60mm, , diameter=21.8mm, Bourns, 2100, http://www.bourns.com/docs/Product-Datasheets/2100_series.pdf?sfvrsn=3, Alternate KiCad Library -L_Toroid Horizontal series Radial pin pitch 19.60mm diameter 21.8mm Bourns 2100 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Toroid_Horizontal_D22.4mm_P19.80mm_Vishay_TJ4 -L_Toroid, Horizontal series, Radial, pin pitch=19.80mm, , diameter=22.4mm, Vishay, TJ4, http://www.vishay.com/docs/34079/tj.pdf, Alternate KiCad Library -L_Toroid Horizontal series Radial pin pitch 19.80mm diameter 22.4mm Vishay TJ4 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Toroid_Horizontal_D24.1mm_P21.80mm_Bourns_2200 -L_Toroid, Horizontal series, Radial, pin pitch=21.80mm, , diameter=24.1mm, Bourns, 2200, http://www.bourns.com/docs/Product-Datasheets/2100_series.pdf?sfvrsn=3, Alternate KiCad Library -L_Toroid Horizontal series Radial pin pitch 21.80mm diameter 24.1mm Bourns 2200 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Toroid_Horizontal_D24.1mm_P23.10mm_Bourns_2200 -L_Toroid, Horizontal series, Radial, pin pitch=23.10mm, , diameter=24.1mm, Bourns, 2200, http://www.bourns.com/docs/Product-Datasheets/2100_series.pdf?sfvrsn=3, Alternate KiCad Library -L_Toroid Horizontal series Radial pin pitch 23.10mm diameter 24.1mm Bourns 2200 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Toroid_Horizontal_D25.4mm_P22.90mm_Vishay_TJ5 -L_Toroid, Horizontal series, Radial, pin pitch=22.90mm, , diameter=25.4mm, Vishay, TJ5, http://www.vishay.com/docs/34079/tj.pdf, Alternate KiCad Library -L_Toroid Horizontal series Radial pin pitch 22.90mm diameter 25.4mm Vishay TJ5 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Toroid_Horizontal_D25.4mm_P22.90mm_Vishay_TJ5_BigPads -L_Toroid, Horizontal series, Radial, pin pitch=22.90mm, , diameter=25.4mm, Vishay, TJ5, BigPads, http://www.vishay.com/docs/34079/tj.pdf, Alternate KiCad Library -L_Toroid Horizontal series Radial pin pitch 22.90mm diameter 25.4mm Vishay TJ5 BigPads -0 -2 -2 -PCM_Inductor_THT_AKL -L_Toroid_Horizontal_D26.0mm_P5.08mm -inductor 26mm diameter toroid, Alternate KiCad Library -SELF INDUCTOR -0 -3 -2 -PCM_Inductor_THT_AKL -L_Toroid_Horizontal_D28.0mm_P25.10mm_Bourns_2200 -L_Toroid, Horizontal series, Radial, pin pitch=25.10mm, , diameter=28mm, Bourns, 2200, http://www.bourns.com/docs/Product-Datasheets/2100_series.pdf?sfvrsn=3, Alternate KiCad Library -L_Toroid Horizontal series Radial pin pitch 25.10mm diameter 28mm Bourns 2200 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Toroid_Horizontal_D28.0mm_P26.67mm_Bourns_2200 -L_Toroid, Horizontal series, Radial, pin pitch=26.67mm, , diameter=28mm, Bourns, 2200, http://www.bourns.com/docs/Product-Datasheets/2100_series.pdf?sfvrsn=3, Alternate KiCad Library -L_Toroid Horizontal series Radial pin pitch 26.67mm diameter 28mm Bourns 2200 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Toroid_Horizontal_D32.5mm_P28.90mm_Bourns_2300 -L_Toroid, Horizontal series, Radial, pin pitch=28.90mm, , diameter=32.5mm, Bourns, 2300, http://www.bourns.com/docs/Product-Datasheets/2300_series.pdf?sfvrsn=3, Alternate KiCad Library -L_Toroid Horizontal series Radial pin pitch 28.90mm diameter 32.5mm Bourns 2300 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Toroid_Horizontal_D32.5mm_P30.00mm_Bourns_2300 -L_Toroid, Horizontal series, Radial, pin pitch=30.00mm, , diameter=32.5mm, Bourns, 2300, http://www.bourns.com/docs/Product-Datasheets/2300_series.pdf?sfvrsn=3, Alternate KiCad Library -L_Toroid Horizontal series Radial pin pitch 30.00mm diameter 32.5mm Bourns 2300 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Toroid_Horizontal_D35.1mm_P31.00mm_Vishay_TJ6 -L_Toroid, Horizontal series, Radial, pin pitch=31.00mm, , diameter=35.1mm, Vishay, TJ6, http://www.vishay.com/docs/34079/tj.pdf, Alternate KiCad Library -L_Toroid Horizontal series Radial pin pitch 31.00mm diameter 35.1mm Vishay TJ6 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Toroid_Horizontal_D40.0mm_P48.26mm -L_Toroid, Horizontal series, Radial, pin pitch=48.26mm, , diameter=40mm, Alternate KiCad Library -L_Toroid Horizontal series Radial pin pitch 48.26mm diameter 40mm -0 -2 -2 -PCM_Inductor_THT_AKL -L_Toroid_Horizontal_D41.9mm_P37.60mm_Vishay_TJ7 -L_Toroid, Horizontal series, Radial, pin pitch=37.60mm, , diameter=41.9mm, Vishay, TJ7, http://www.vishay.com/docs/34079/tj.pdf, Alternate KiCad Library -L_Toroid Horizontal series Radial pin pitch 37.60mm diameter 41.9mm Vishay TJ7 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Toroid_Horizontal_D49.3mm_P44.60mm_Vishay_TJ8 -L_Toroid, Horizontal series, Radial, pin pitch=44.60mm, , diameter=49.3mm, Vishay, TJ8, http://www.vishay.com/docs/34079/tj.pdf, Alternate KiCad Library -L_Toroid Horizontal series Radial pin pitch 44.60mm diameter 49.3mm Vishay TJ8 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Toroid_Horizontal_D69.1mm_P63.20mm_Vishay_TJ9 -L_Toroid, Horizontal series, Radial, pin pitch=63.20mm, , diameter=69.1mm, Vishay, TJ9, http://www.vishay.com/docs/34079/tj.pdf, Alternate KiCad Library -L_Toroid Horizontal series Radial pin pitch 63.20mm diameter 69.1mm Vishay TJ9 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Toroid_Vertical_L10.0mm_W5.0mm_P5.08mm -L_Toroid, Vertical series, Radial, pin pitch=5.08mm, , length*width=10*5mm^2, Alternate KiCad Library -L_Toroid Vertical series Radial pin pitch 5.08mm length 10mm width 5mm -0 -2 -2 -PCM_Inductor_THT_AKL -L_Toroid_Vertical_L13.0mm_W6.5mm_P5.60mm -L_Toroid, Vertical series, Radial, pin pitch=5.60mm, , length*width=13*6.5mm^2, Alternate KiCad Library -L_Toroid Vertical series Radial pin pitch 5.60mm length 13mm width 6.5mm -0 -2 -2 -PCM_Inductor_THT_AKL -L_Toroid_Vertical_L14.0mm_W5.6mm_P5.30mm_Bourns_5700 -L_Toroid, Vertical series, Radial, pin pitch=5.30mm, , length*width=14*5.6mm^2, Bourns, 5700, http://www.bourns.com/docs/Product-Datasheets/5700_series.pdf, Alternate KiCad Library -L_Toroid Vertical series Radial pin pitch 5.30mm length 14mm width 5.6mm Bourns 5700 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Toroid_Vertical_L14.0mm_W6.3mm_P4.57mm_Pulse_A -L_Toroid, Vertical series, Radial, pin pitch=4.57mm, , length*width=13.97*6.35mm^2, Pulse, A, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf, Alternate KiCad Library -L_Toroid Vertical series Radial pin pitch 4.57mm length 13.97mm width 6.35mm Pulse A -0 -2 -2 -PCM_Inductor_THT_AKL -L_Toroid_Vertical_L14.7mm_W8.6mm_P5.58mm_Pulse_KM-1 -L_Toroid, Vertical series, Radial, pin pitch=5.58mm, , length*width=14.73*8.64mm^2, Pulse, KM-1, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf, Alternate KiCad Library -L_Toroid Vertical series Radial pin pitch 5.58mm length 14.73mm width 8.64mm Pulse KM-1 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Toroid_Vertical_L16.0mm_W8.0mm_P7.62mm -L_Toroid, Vertical series, Radial, pin pitch=7.62mm, , length*width=16*8mm^2, Alternate KiCad Library -L_Toroid Vertical series Radial pin pitch 7.62mm length 16mm width 8mm -0 -2 -2 -PCM_Inductor_THT_AKL -L_Toroid_Vertical_L16.3mm_W7.1mm_P7.11mm_Pulse_H -L_Toroid, Vertical series, Radial, pin pitch=7.11mm, , length*width=16.26*7.11mm^2, Pulse, H, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf, Alternate KiCad Library -L_Toroid Vertical series Radial pin pitch 7.11mm length 16.26mm width 7.11mm Pulse H -0 -2 -2 -PCM_Inductor_THT_AKL -L_Toroid_Vertical_L16.4mm_W7.6mm_P6.60mm_Vishay_TJ3 -L_Toroid, Vertical series, Radial, pin pitch=6.60mm, , length*width=16.4*7.6mm^2, Vishay, TJ3, http://www.vishay.com/docs/34079/tj.pdf, Alternate KiCad Library -L_Toroid Vertical series Radial pin pitch 6.60mm length 16.4mm width 7.6mm Vishay TJ3 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Toroid_Vertical_L16.5mm_W11.4mm_P7.62mm_Pulse_KM-2 -L_Toroid, Vertical series, Radial, pin pitch=7.62mm, , length*width=16.51*11.43mm^2, Pulse, KM-2, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf, Alternate KiCad Library -L_Toroid Vertical series Radial pin pitch 7.62mm length 16.51mm width 11.43mm Pulse KM-2 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Toroid_Vertical_L16.8mm_W9.2mm_P7.10mm_Vishay_TJ3 -L_Toroid, Vertical series, Radial, pin pitch=7.10mm, , length*width=16.8*9.2mm^2, Vishay, TJ3, http://www.vishay.com/docs/34079/tj.pdf, Alternate KiCad Library -L_Toroid Vertical series Radial pin pitch 7.10mm length 16.8mm width 9.2mm Vishay TJ3 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Toroid_Vertical_L16.8mm_W9.2mm_P7.10mm_Vishay_TJ3_BigPads -L_Toroid, Vertical series, Radial, pin pitch=7.10mm, , length*width=16.8*9.2mm^2, Vishay, TJ3, BigPads, http://www.vishay.com/docs/34079/tj.pdf, Alternate KiCad Library -L_Toroid Vertical series Radial pin pitch 7.10mm length 16.8mm width 9.2mm Vishay TJ3 BigPads -0 -2 -2 -PCM_Inductor_THT_AKL -L_Toroid_Vertical_L17.8mm_W8.1mm_P7.62mm_Bourns_5700 -L_Toroid, Vertical series, Radial, pin pitch=7.62mm, , length*width=17.8*8.1mm^2, Bourns, 5700, http://www.bourns.com/docs/Product-Datasheets/5700_series.pdf, Alternate KiCad Library -L_Toroid Vertical series Radial pin pitch 7.62mm length 17.8mm width 8.1mm Bourns 5700 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Toroid_Vertical_L17.8mm_W9.7mm_P7.11mm_Pulse_B -L_Toroid, Vertical series, Radial, pin pitch=7.11mm, , length*width=17.78*9.65mm^2, Pulse, B, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf, Alternate KiCad Library -L_Toroid Vertical series Radial pin pitch 7.11mm length 17.78mm width 9.65mm Pulse B -0 -2 -2 -PCM_Inductor_THT_AKL -L_Toroid_Vertical_L19.1mm_W8.1mm_P7.10mm_Bourns_5700 -L_Toroid, Vertical series, Radial, pin pitch=7.10mm, , length*width=19.1*8.1mm^2, Bourns, 5700, http://www.bourns.com/docs/Product-Datasheets/5700_series.pdf, Alternate KiCad Library -L_Toroid Vertical series Radial pin pitch 7.10mm length 19.1mm width 8.1mm Bourns 5700 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Toroid_Vertical_L21.6mm_W8.4mm_P8.38mm_Pulse_G -L_Toroid, Vertical series, Radial, pin pitch=8.38mm, , length*width=21.59*8.38mm^2, Pulse, G, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf, Alternate KiCad Library -L_Toroid Vertical series Radial pin pitch 8.38mm length 21.59mm width 8.38mm Pulse G -0 -2 -2 -PCM_Inductor_THT_AKL -L_Toroid_Vertical_L21.6mm_W9.1mm_P8.40mm_Bourns_5700 -L_Toroid, Vertical series, Radial, pin pitch=8.40mm, , length*width=21.6*9.1mm^2, Bourns, 5700, http://www.bourns.com/docs/Product-Datasheets/5700_series.pdf, Alternate KiCad Library -L_Toroid Vertical series Radial pin pitch 8.40mm length 21.6mm width 9.1mm Bourns 5700 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Toroid_Vertical_L21.6mm_W9.5mm_P7.11mm_Pulse_C -L_Toroid, Vertical series, Radial, pin pitch=7.11mm, , length*width=21.59*9.53mm^2, Pulse, C, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf, Alternate KiCad Library -L_Toroid Vertical series Radial pin pitch 7.11mm length 21.59mm width 9.53mm Pulse C -0 -2 -2 -PCM_Inductor_THT_AKL -L_Toroid_Vertical_L21.6mm_W11.4mm_P7.62mm_Pulse_KM-3 -L_Toroid, Vertical series, Radial, pin pitch=7.62mm, , length*width=21.59*11.43mm^2, Pulse, KM-3, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf, Alternate KiCad Library -L_Toroid Vertical series Radial pin pitch 7.62mm length 21.59mm width 11.43mm Pulse KM-3 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Toroid_Vertical_L22.4mm_W10.2mm_P7.90mm_Vishay_TJ4 -L_Toroid, Vertical series, Radial, pin pitch=7.90mm, , length*width=22.4*10.2mm^2, Vishay, TJ4, http://www.vishay.com/docs/34079/tj.pdf, Alternate KiCad Library -L_Toroid Vertical series Radial pin pitch 7.90mm length 22.4mm width 10.2mm Vishay TJ4 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Toroid_Vertical_L24.6mm_W15.5mm_P11.44mm_Pulse_KM-4 -L_Toroid, Vertical series, Radial, pin pitch=11.44mm, , length*width=24.64*15.5mm^2, Pulse, KM-4, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf, Alternate KiCad Library -L_Toroid Vertical series Radial pin pitch 11.44mm length 24.64mm width 15.5mm Pulse KM-4 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Toroid_Vertical_L25.4mm_W14.7mm_P12.20mm_Vishay_TJ5 -L_Toroid, Vertical series, Radial, pin pitch=12.20mm, , length*width=25.4*14.7mm^2, Vishay, TJ5, http://www.vishay.com/docs/34079/tj.pdf, Alternate KiCad Library -L_Toroid Vertical series Radial pin pitch 12.20mm length 25.4mm width 14.7mm Vishay TJ5 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Toroid_Vertical_L25.4mm_W14.7mm_P12.20mm_Vishay_TJ5_BigPads -L_Toroid, Vertical series, Radial, pin pitch=12.20mm, , length*width=25.4*14.7mm^2, Vishay, TJ5, BigPads, http://www.vishay.com/docs/34079/tj.pdf, Alternate KiCad Library -L_Toroid Vertical series Radial pin pitch 12.20mm length 25.4mm width 14.7mm Vishay TJ5 BigPads -0 -2 -2 -PCM_Inductor_THT_AKL -L_Toroid_Vertical_L26.7mm_W14.0mm_P10.16mm_Pulse_D -L_Toroid, Vertical series, Radial, pin pitch=10.16mm, , length*width=26.67*13.97mm^2, Pulse, D, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf, Alternate KiCad Library -L_Toroid Vertical series Radial pin pitch 10.16mm length 26.67mm width 13.97mm Pulse D -0 -2 -2 -PCM_Inductor_THT_AKL -L_Toroid_Vertical_L28.6mm_W14.3mm_P11.43mm_Bourns_5700 -L_Toroid, Vertical series, Radial, pin pitch=11.43mm, , length*width=28.6*14.3mm^2, Bourns, 5700, http://www.bourns.com/docs/Product-Datasheets/5700_series.pdf, Alternate KiCad Library -L_Toroid Vertical series Radial pin pitch 11.43mm length 28.6mm width 14.3mm Bourns 5700 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Toroid_Vertical_L31.8mm_W15.9mm_P13.50mm_Bourns_5700 -L_Toroid, Vertical series, Radial, pin pitch=13.50mm, , length*width=31.8*15.9mm^2, Bourns, 5700, http://www.bourns.com/docs/Product-Datasheets/5700_series.pdf, Alternate KiCad Library -L_Toroid Vertical series Radial pin pitch 13.50mm length 31.8mm width 15.9mm Bourns 5700 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Toroid_Vertical_L33.0mm_W17.8mm_P12.70mm_Pulse_KM-5 -L_Toroid, Vertical series, Radial, pin pitch=12.70mm, , length*width=33.02*17.78mm^2, Pulse, KM-5, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf, Alternate KiCad Library -L_Toroid Vertical series Radial pin pitch 12.70mm length 33.02mm width 17.78mm Pulse KM-5 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Toroid_Vertical_L35.1mm_W21.1mm_P18.50mm_Vishay_TJ6 -L_Toroid, Vertical series, Radial, pin pitch=18.50mm, , length*width=35.1*21.1mm^2, Vishay, TJ6, http://www.vishay.com/docs/34079/tj.pdf, Alternate KiCad Library -L_Toroid Vertical series Radial pin pitch 18.50mm length 35.1mm width 21.1mm Vishay TJ6 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Toroid_Vertical_L35.6mm_W17.8mm_P12.70mm_Pulse_E -L_Toroid, Vertical series, Radial, pin pitch=12.70mm, , length*width=35.56*17.78mm^2, Pulse, E, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf, Alternate KiCad Library -L_Toroid Vertical series Radial pin pitch 12.70mm length 35.56mm width 17.78mm Pulse E -0 -2 -2 -PCM_Inductor_THT_AKL -L_Toroid_Vertical_L41.9mm_W17.8mm_P12.70mm_Pulse_F -L_Toroid, Vertical series, Radial, pin pitch=12.70mm, , length*width=41.91*17.78mm^2, Pulse, F, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf, Alternate KiCad Library -L_Toroid Vertical series Radial pin pitch 12.70mm length 41.91mm width 17.78mm Pulse F -0 -2 -2 -PCM_Inductor_THT_AKL -L_Toroid_Vertical_L41.9mm_W19.1mm_P15.80mm_Vishay_TJ7 -L_Toroid, Vertical series, Radial, pin pitch=15.80mm, , length*width=41.9*19.1mm^2, Vishay, TJ7, http://www.vishay.com/docs/34079/tj.pdf, Alternate KiCad Library -L_Toroid Vertical series Radial pin pitch 15.80mm length 41.9mm width 19.1mm Vishay TJ7 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Toroid_Vertical_L46.0mm_W19.1mm_P21.80mm_Bourns_5700 -L_Toroid, Vertical series, Radial, pin pitch=21.80mm, , length*width=46*19.1mm^2, Bourns, 5700, http://www.bourns.com/docs/Product-Datasheets/5700_series.pdf, Alternate KiCad Library -L_Toroid Vertical series Radial pin pitch 21.80mm length 46mm width 19.1mm Bourns 5700 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Toroid_Vertical_L48.8mm_W25.4mm_P20.80mm_Vishay_TJ8 -L_Toroid, Vertical series, Radial, pin pitch=20.80mm, , length*width=48.8*25.4mm^2, Vishay, TJ8, http://www.vishay.com/docs/34079/tj.pdf, Alternate KiCad Library -L_Toroid Vertical series Radial pin pitch 20.80mm length 48.8mm width 25.4mm Vishay TJ8 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Toroid_Vertical_L54.0mm_W23.8mm_P20.10mm_Bourns_5700 -L_Toroid, Vertical series, Radial, pin pitch=20.10mm, , length*width=54*23.8mm^2, Bourns, 5700, http://www.bourns.com/docs/Product-Datasheets/5700_series.pdf, Alternate KiCad Library -L_Toroid Vertical series Radial pin pitch 20.10mm length 54mm width 23.8mm Bourns 5700 -0 -2 -2 -PCM_Inductor_THT_AKL -L_Toroid_Vertical_L67.6mm_W36.1mm_P31.80mm_Vishay_TJ9 -L_Toroid, Vertical series, Radial, pin pitch=31.80mm, , length*width=67.6*36.1mm^2, Vishay, TJ9, http://www.vishay.com/docs/34079/tj.pdf, Alternate KiCad Library -L_Toroid Vertical series Radial pin pitch 31.80mm length 67.6mm width 36.1mm Vishay TJ9 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -Choke_EPCOS_B82722A -Current-Compensated Ring Core Double Chokes, EPCOS, B82722A, 22.3mmx22.7mm, https://en.tdk.eu/inf/30/db/ind_2008/b82722a_j.pdf, Alternate KiCad Library -chokes epcos tht -0 -4 -4 -PCM_Inductor_THT_AKL_Double -Choke_Schaffner_RN102-04-14.0x14.0mm -Current-compensated Chokes, Schaffner, RN102-04, 14.0mmx14.0mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/, Alternate KiCad Library -chokes schaffner tht -0 -4 -4 -PCM_Inductor_THT_AKL_Double -Choke_Schaffner_RN112-04-17.7x17.1mm -Current-compensated Chokes, Schaffner, RN112-04, 17.7mmx17.1mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/, Alternate KiCad Library -chokes schaffner tht -0 -4 -4 -PCM_Inductor_THT_AKL_Double -Choke_Schaffner_RN114-04-22.5x21.5mm -Current-compensated Chokes, Schaffner, RN114-04, 22.5mmx21.5mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/, Alternate KiCad Library -chokes schaffner tht -0 -4 -4 -PCM_Inductor_THT_AKL_Double -Choke_Schaffner_RN116-04-22.5x21.5mm -Current-compensated Chokes, Schaffner, RN116-04, 22.5mmx21.5mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/, Alternate KiCad Library -chokes schaffner tht -0 -4 -4 -PCM_Inductor_THT_AKL_Double -Choke_Schaffner_RN122-04-28.0x27.0mm -Current-compensated Chokes, Schaffner, RN122-04, 28.0mmx27.0mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/, Alternate KiCad Library -chokes schaffner tht -0 -4 -4 -PCM_Inductor_THT_AKL_Double -Choke_Schaffner_RN142-04-33.1x32.5mm -Current-compensated Chokes, Schaffner, RN142-04, 33.1mmx32.5mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/, Alternate KiCad Library -chokes schaffner tht -0 -4 -4 -PCM_Inductor_THT_AKL_Double -Choke_Schaffner_RN143-04-33.1x32.5mm -Current-compensated Chokes, Schaffner, RN143-04, 33.1mmx32.5mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/, Alternate KiCad Library -chokes schaffner tht -0 -4 -4 -PCM_Inductor_THT_AKL_Double -Choke_Schaffner_RN152-04-43.0x41.8mm -Current-compensated Chokes, Schaffner, RN152-04, 43.0mmx41.8mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/, Alternate KiCad Library -chokes schaffner tht -0 -4 -4 -PCM_Inductor_THT_AKL_Double -Choke_Schaffner_RN202-04-8.8x18.2mm -Current-compensated Chokes, Schaffner, RN202-04, 8.8mmx18.2mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/, Alternate KiCad Library -chokes schaffner tht -0 -4 -4 -PCM_Inductor_THT_AKL_Double -Choke_Schaffner_RN204-04-9.0x14.0mm -Current-compensated Chokes, Schaffner, RN204-04, 9.0mmx14.0mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/, Alternate KiCad Library -chokes schaffner tht -0 -4 -4 -PCM_Inductor_THT_AKL_Double -Choke_Schaffner_RN212-04-12.5x18.0mm -Current-compensated Chokes, Schaffner, RN212-04, 12.5mmx18.0mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/, Alternate KiCad Library -chokes schaffner tht -0 -4 -4 -PCM_Inductor_THT_AKL_Double -Choke_Schaffner_RN214-04-15.5x23.0mm -Current-compensated Chokes, Schaffner, RN214-04, 15.5mmx23.0mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/, Alternate KiCad Library -chokes schaffner tht -0 -4 -4 -PCM_Inductor_THT_AKL_Double -Choke_Schaffner_RN216-04-15.5x23.0mm -Current-compensated Chokes, Schaffner, RN216-04, 15.5mmx23.0mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/, Alternate KiCad Library -chokes schaffner tht -0 -4 -4 -PCM_Inductor_THT_AKL_Double -Choke_Schaffner_RN218-04-12.5x18.0mm -Current-compensated Chokes, Schaffner, RN218-04, 12.5mmx18.0mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/, Alternate KiCad Library -chokes schaffner tht -0 -4 -4 -PCM_Inductor_THT_AKL_Double -Choke_Schaffner_RN222-04-18.0x31.0mm -Current-compensated Chokes, Schaffner, RN222-04, 18.0mmx31.0mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/, Alternate KiCad Library -chokes schaffner tht -0 -4 -4 -PCM_Inductor_THT_AKL_Double -Choke_Schaffner_RN232-04-18.0x31.0mm -Current-compensated Chokes, Schaffner, RN232-04, 18.0mmx31.0mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/, Alternate KiCad Library -chokes schaffner tht -0 -4 -4 -PCM_Inductor_THT_AKL_Double -Choke_Schaffner_RN242-04-18.0x31.0mm -Current-compensated Chokes, Schaffner, RN242-04, 18.0mmx31.0mm https://www.schaffner.com/products/download/product/datasheet/rn-series-common-mode-chokes-new/, Alternate KiCad Library -chokes schaffner tht -0 -4 -4 -PCM_Inductor_THT_AKL_Double -L_Axial_L5.0mm_D3.6mm_P10.00mm_Horizontal_Murata_BL01RN1A2A2 -Inductor, Murata BL01RN1A2A2, Axial, Horizontal, pin pitch=10.00mm, length*diameter=5*3.6mm, https://www.murata.com/en-global/products/productdetail?partno=BL01RN1A2A2%23, Alternate KiCad Library -inductor axial horizontal -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Axial_L5.3mm_D2.2mm_P2.54mm_Vertical_Vishay_IM-1 -Inductor, Axial series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=5.3*2.2mm^2, Vishay, IM-1, http://www.vishay.com/docs/34030/im.pdf, Alternate KiCad Library -Inductor Axial series Axial Vertical pin pitch 2.54mm length 5.3mm diameter 2.2mm Vishay IM-1 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Axial_L5.3mm_D2.2mm_P7.62mm_Horizontal_Vishay_IM-1 -Inductor, Axial series, Axial, Horizontal, pin pitch=7.62mm, , length*diameter=5.3*2.2mm^2, Vishay, IM-1, http://www.vishay.com/docs/34030/im.pdf, Alternate KiCad Library -Inductor Axial series Axial Horizontal pin pitch 7.62mm length 5.3mm diameter 2.2mm Vishay IM-1 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Axial_L5.3mm_D2.2mm_P10.16mm_Horizontal_Vishay_IM-1 -Inductor, Axial series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=5.3*2.2mm^2, Vishay, IM-1, http://www.vishay.com/docs/34030/im.pdf, Alternate KiCad Library -Inductor Axial series Axial Horizontal pin pitch 10.16mm length 5.3mm diameter 2.2mm Vishay IM-1 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Axial_L6.6mm_D2.7mm_P2.54mm_Vertical_Vishay_IM-2 -Inductor, Axial series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=6.6*2.7mm^2, Vishay, IM-2, http://www.vishay.com/docs/34030/im.pdf, Alternate KiCad Library -Inductor Axial series Axial Vertical pin pitch 2.54mm length 6.6mm diameter 2.7mm Vishay IM-2 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Axial_L6.6mm_D2.7mm_P10.16mm_Horizontal_Vishay_IM-2 -Inductor, Axial series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=6.6*2.7mm^2, Vishay, IM-2, http://www.vishay.com/docs/34030/im.pdf, Alternate KiCad Library -Inductor Axial series Axial Horizontal pin pitch 10.16mm length 6.6mm diameter 2.7mm Vishay IM-2 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Axial_L7.0mm_D3.3mm_P2.54mm_Vertical_Fastron_MICC -Inductor, Axial series, Axial, Vertical, pin pitch=2.54mm, , length*diameter=7*3.3mm^2, Fastron, MICC, http://www.fastrongroup.com/image-show/70/MICC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library -Inductor Axial series Axial Vertical pin pitch 2.54mm length 7mm diameter 3.3mm Fastron MICC -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Axial_L7.0mm_D3.3mm_P5.08mm_Vertical_Fastron_MICC -Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=7*3.3mm^2, Fastron, MICC, http://www.fastrongroup.com/image-show/70/MICC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library -Inductor Axial series Axial Vertical pin pitch 5.08mm length 7mm diameter 3.3mm Fastron MICC -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Axial_L7.0mm_D3.3mm_P10.16mm_Horizontal_Fastron_MICC -Inductor, Axial series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=7*3.3mm^2, Fastron, MICC, http://www.fastrongroup.com/image-show/70/MICC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library -Inductor Axial series Axial Horizontal pin pitch 10.16mm length 7mm diameter 3.3mm Fastron MICC -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Axial_L7.0mm_D3.3mm_P12.70mm_Horizontal_Fastron_MICC -Inductor, Axial series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=7*3.3mm^2, Fastron, MICC, http://www.fastrongroup.com/image-show/70/MICC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library -Inductor Axial series Axial Horizontal pin pitch 12.7mm length 7mm diameter 3.3mm Fastron MICC -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Axial_L9.5mm_D4.0mm_P5.08mm_Vertical_Fastron_SMCC -Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=9.5*4mm^2, Fastron, SMCC, http://cdn-reichelt.de/documents/datenblatt/B400/DS_SMCC_NEU.pdf, http://cdn-reichelt.de/documents/datenblatt/B400/LEADEDINDUCTORS.pdf, Alternate KiCad Library -Inductor Axial series Axial Vertical pin pitch 5.08mm length 9.5mm diameter 4mm Fastron SMCC -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Axial_L9.5mm_D4.0mm_P12.70mm_Horizontal_Fastron_SMCC -Inductor, Axial series, Axial, Horizontal, pin pitch=12.7mm, , length*diameter=9.5*4mm^2, Fastron, SMCC, http://cdn-reichelt.de/documents/datenblatt/B400/DS_SMCC_NEU.pdf, http://cdn-reichelt.de/documents/datenblatt/B400/LEADEDINDUCTORS.pdf, Alternate KiCad Library -Inductor Axial series Axial Horizontal pin pitch 12.7mm length 9.5mm diameter 4mm Fastron SMCC -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Axial_L9.5mm_D4.0mm_P15.24mm_Horizontal_Fastron_SMCC -Inductor, Axial series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=9.5*4mm^2, Fastron, SMCC, http://cdn-reichelt.de/documents/datenblatt/B400/DS_SMCC_NEU.pdf, http://cdn-reichelt.de/documents/datenblatt/B400/LEADEDINDUCTORS.pdf, Alternate KiCad Library -Inductor Axial series Axial Horizontal pin pitch 15.24mm length 9.5mm diameter 4mm Fastron SMCC -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Axial_L11.0mm_D4.5mm_P5.08mm_Vertical_Fastron_MECC -Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=11*4.5mm^2, Fastron, MECC, http://www.fastrongroup.com/image-show/21/MECC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library -Inductor Axial series Axial Vertical pin pitch 5.08mm length 11mm diameter 4.5mm Fastron MECC -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Axial_L11.0mm_D4.5mm_P7.62mm_Vertical_Fastron_MECC -Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=11*4.5mm^2, Fastron, MECC, http://www.fastrongroup.com/image-show/21/MECC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library -Inductor Axial series Axial Vertical pin pitch 7.62mm length 11mm diameter 4.5mm Fastron MECC -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Axial_L11.0mm_D4.5mm_P15.24mm_Horizontal_Fastron_MECC -Inductor, Axial series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=11*4.5mm^2, Fastron, MECC, http://www.fastrongroup.com/image-show/21/MECC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library -Inductor Axial series Axial Horizontal pin pitch 15.24mm length 11mm diameter 4.5mm Fastron MECC -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Axial_L12.0mm_D5.0mm_P5.08mm_Vertical_Fastron_MISC -Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=12*5mm^2, Fastron, MISC, http://cdn-reichelt.de/documents/datenblatt/B400/DS_MISC.pdf, Alternate KiCad Library -Inductor Axial series Axial Vertical pin pitch 5.08mm length 12mm diameter 5mm Fastron MISC -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Axial_L12.0mm_D5.0mm_P7.62mm_Vertical_Fastron_MISC -Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=12*5mm^2, Fastron, MISC, http://cdn-reichelt.de/documents/datenblatt/B400/DS_MISC.pdf, Alternate KiCad Library -Inductor Axial series Axial Vertical pin pitch 7.62mm length 12mm diameter 5mm Fastron MISC -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Axial_L12.0mm_D5.0mm_P15.24mm_Horizontal_Fastron_MISC -Inductor, Axial series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=12*5mm^2, Fastron, MISC, http://cdn-reichelt.de/documents/datenblatt/B400/DS_MISC.pdf, Alternate KiCad Library -Inductor Axial series Axial Horizontal pin pitch 15.24mm length 12mm diameter 5mm Fastron MISC -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Axial_L12.8mm_D5.8mm_P5.08mm_Vertical_Fastron_HBCC -Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=12.8*5.8mm^2, Fastron, HBCC, http://www.fastrongroup.com/image-show/18/HBCC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library -Inductor Axial series Axial Vertical pin pitch 5.08mm length 12.8mm diameter 5.8mm Fastron HBCC -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Axial_L12.8mm_D5.8mm_P7.62mm_Vertical_Fastron_HBCC -Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=12.8*5.8mm^2, Fastron, HBCC, http://www.fastrongroup.com/image-show/18/HBCC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library -Inductor Axial series Axial Vertical pin pitch 7.62mm length 12.8mm diameter 5.8mm Fastron HBCC -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Axial_L12.8mm_D5.8mm_P20.32mm_Horizontal_Fastron_HBCC -Inductor, Axial series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=12.8*5.8mm^2, Fastron, HBCC, http://www.fastrongroup.com/image-show/18/HBCC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library -Inductor Axial series Axial Horizontal pin pitch 20.32mm length 12.8mm diameter 5.8mm Fastron HBCC -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Axial_L12.8mm_D5.8mm_P25.40mm_Horizontal_Fastron_HBCC -Inductor, Axial series, Axial, Horizontal, pin pitch=25.4mm, , length*diameter=12.8*5.8mm^2, Fastron, HBCC, http://www.fastrongroup.com/image-show/18/HBCC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library -Inductor Axial series Axial Horizontal pin pitch 25.4mm length 12.8mm diameter 5.8mm Fastron HBCC -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Axial_L13.0mm_D4.5mm_P5.08mm_Vertical_Fastron_HCCC -Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=13*4.5mm^2, Fastron, HCCC, http://www.fastrongroup.com/image-show/19/HCCC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library -Inductor Axial series Axial Vertical pin pitch 5.08mm length 13mm diameter 4.5mm Fastron HCCC -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Axial_L13.0mm_D4.5mm_P7.62mm_Vertical_Fastron_HCCC -Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=13*4.5mm^2, Fastron, HCCC, http://www.fastrongroup.com/image-show/19/HCCC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library -Inductor Axial series Axial Vertical pin pitch 7.62mm length 13mm diameter 4.5mm Fastron HCCC -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Axial_L13.0mm_D4.5mm_P15.24mm_Horizontal_Fastron_HCCC -Inductor, Axial series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=13*4.5mm^2, Fastron, HCCC, http://www.fastrongroup.com/image-show/19/HCCC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library -Inductor Axial series Axial Horizontal pin pitch 15.24mm length 13mm diameter 4.5mm Fastron HCCC -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Axial_L14.0mm_D4.5mm_P5.08mm_Vertical_Fastron_LACC -Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=14*4.5mm^2, Fastron, LACC, http://www.fastrongroup.com/image-show/20/LACC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library -Inductor Axial series Axial Vertical pin pitch 5.08mm length 14mm diameter 4.5mm Fastron LACC -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Axial_L14.0mm_D4.5mm_P7.62mm_Vertical_Fastron_LACC -Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=14*4.5mm^2, Fastron, LACC, http://www.fastrongroup.com/image-show/20/LACC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library -Inductor Axial series Axial Vertical pin pitch 7.62mm length 14mm diameter 4.5mm Fastron LACC -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Axial_L14.0mm_D4.5mm_P15.24mm_Horizontal_Fastron_LACC -Inductor, Axial series, Axial, Horizontal, pin pitch=15.24mm, , length*diameter=14*4.5mm^2, Fastron, LACC, http://www.fastrongroup.com/image-show/20/LACC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library -Inductor Axial series Axial Horizontal pin pitch 15.24mm length 14mm diameter 4.5mm Fastron LACC -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Axial_L14.5mm_D5.8mm_P5.08mm_Vertical_Fastron_HBCC -Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=14.5*5.8mm^2, Fastron, HBCC, http://www.fastrongroup.com/image-show/18/HBCC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library -Inductor Axial series Axial Vertical pin pitch 5.08mm length 14.5mm diameter 5.8mm Fastron HBCC -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Axial_L14.5mm_D5.8mm_P7.62mm_Vertical_Fastron_HBCC -Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=14.5*5.8mm^2, Fastron, HBCC, http://www.fastrongroup.com/image-show/18/HBCC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library -Inductor Axial series Axial Vertical pin pitch 7.62mm length 14.5mm diameter 5.8mm Fastron HBCC -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Axial_L14.5mm_D5.8mm_P20.32mm_Horizontal_Fastron_HBCC -Inductor, Axial series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=14.5*5.8mm^2, Fastron, HBCC, http://www.fastrongroup.com/image-show/18/HBCC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library -Inductor Axial series Axial Horizontal pin pitch 20.32mm length 14.5mm diameter 5.8mm Fastron HBCC -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Axial_L14.5mm_D5.8mm_P25.40mm_Horizontal_Fastron_HBCC -Inductor, Axial series, Axial, Horizontal, pin pitch=25.4mm, , length*diameter=14.5*5.8mm^2, Fastron, HBCC, http://www.fastrongroup.com/image-show/18/HBCC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library -Inductor Axial series Axial Horizontal pin pitch 25.4mm length 14.5mm diameter 5.8mm Fastron HBCC -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Axial_L16.0mm_D6.3mm_P5.08mm_Vertical_Fastron_VHBCC -Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=16*6.3mm^2, Fastron, VHBCC, http://www.fastrongroup.com/image-show/25/VHBCC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library -Inductor Axial series Axial Vertical pin pitch 5.08mm length 16mm diameter 6.3mm Fastron VHBCC -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Axial_L16.0mm_D6.3mm_P7.62mm_Vertical_Fastron_VHBCC -Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=16*6.3mm^2, Fastron, VHBCC, http://www.fastrongroup.com/image-show/25/VHBCC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library -Inductor Axial series Axial Vertical pin pitch 7.62mm length 16mm diameter 6.3mm Fastron VHBCC -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Axial_L16.0mm_D6.3mm_P20.32mm_Horizontal_Fastron_VHBCC -Inductor, Axial series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=16*6.3mm^2, Fastron, VHBCC, http://www.fastrongroup.com/image-show/25/VHBCC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library -Inductor Axial series Axial Horizontal pin pitch 20.32mm length 16mm diameter 6.3mm Fastron VHBCC -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Axial_L16.0mm_D6.3mm_P25.40mm_Horizontal_Fastron_VHBCC -Inductor, Axial series, Axial, Horizontal, pin pitch=25.4mm, , length*diameter=16*6.3mm^2, Fastron, VHBCC, http://www.fastrongroup.com/image-show/25/VHBCC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library -Inductor Axial series Axial Horizontal pin pitch 25.4mm length 16mm diameter 6.3mm Fastron VHBCC -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Axial_L16.0mm_D7.5mm_P5.08mm_Vertical_Fastron_XHBCC -Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=16*7.5mm^2, Fastron, XHBCC, http://www.fastrongroup.com/image-show/26/XHBCC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library -Inductor Axial series Axial Vertical pin pitch 5.08mm length 16mm diameter 7.5mm Fastron XHBCC -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Axial_L16.0mm_D7.5mm_P7.62mm_Vertical_Fastron_XHBCC -Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=16*7.5mm^2, Fastron, XHBCC, http://www.fastrongroup.com/image-show/26/XHBCC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library -Inductor Axial series Axial Vertical pin pitch 7.62mm length 16mm diameter 7.5mm Fastron XHBCC -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Axial_L16.0mm_D7.5mm_P20.32mm_Horizontal_Fastron_XHBCC -Inductor, Axial series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=16*7.5mm^2, Fastron, XHBCC, http://www.fastrongroup.com/image-show/26/XHBCC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library -Inductor Axial series Axial Horizontal pin pitch 20.32mm length 16mm diameter 7.5mm Fastron XHBCC -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Axial_L16.0mm_D7.5mm_P25.40mm_Horizontal_Fastron_XHBCC -Inductor, Axial series, Axial, Horizontal, pin pitch=25.4mm, , length*diameter=16*7.5mm^2, Fastron, XHBCC, http://www.fastrongroup.com/image-show/26/XHBCC.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library -Inductor Axial series Axial Horizontal pin pitch 25.4mm length 16mm diameter 7.5mm Fastron XHBCC -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Axial_L16.0mm_D9.5mm_P5.08mm_Vertical_Vishay_IM-10-37 -Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=16*9.5mm^2, Vishay, IM-10-37, http://www.vishay.com/docs/34030/im10.pdf, Alternate KiCad Library -Inductor Axial series Axial Vertical pin pitch 5.08mm length 16mm diameter 9.5mm Vishay IM-10-37 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Axial_L16.0mm_D9.5mm_P20.32mm_Horizontal_Vishay_IM-10-37 -Inductor, Axial series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=16*9.5mm^2, Vishay, IM-10-37, http://www.vishay.com/docs/34030/im10.pdf, Alternate KiCad Library -Inductor Axial series Axial Horizontal pin pitch 20.32mm length 16mm diameter 9.5mm Vishay IM-10-37 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Axial_L17.5mm_D12.0mm_P7.62mm_Vertical_Vishay_IM-10-46 -Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=17.5*12mm^2, Vishay, IM-10-46, http://www.vishay.com/docs/34030/im10.pdf, Alternate KiCad Library -Inductor Axial series Axial Vertical pin pitch 7.62mm length 17.5mm diameter 12mm Vishay IM-10-46 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Axial_L17.5mm_D12.0mm_P20.32mm_Horizontal_Vishay_IM-10-46 -Inductor, Axial series, Axial, Horizontal, pin pitch=20.32mm, , length*diameter=17.5*12mm^2, Vishay, IM-10-46, http://www.vishay.com/docs/34030/im10.pdf, Alternate KiCad Library -Inductor Axial series Axial Horizontal pin pitch 20.32mm length 17.5mm diameter 12mm Vishay IM-10-46 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Axial_L20.0mm_D8.0mm_P5.08mm_Vertical -Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=20*8mm^2, Alternate KiCad Library -Inductor Axial series Axial Vertical pin pitch 5.08mm length 20mm diameter 8mm -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Axial_L20.0mm_D8.0mm_P7.62mm_Vertical -Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=20*8mm^2, Alternate KiCad Library -Inductor Axial series Axial Vertical pin pitch 7.62mm length 20mm diameter 8mm -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Axial_L20.0mm_D8.0mm_P25.40mm_Horizontal -Inductor, Axial series, Axial, Horizontal, pin pitch=25.4mm, , length*diameter=20*8mm^2, Alternate KiCad Library -Inductor Axial series Axial Horizontal pin pitch 25.4mm length 20mm diameter 8mm -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Axial_L20.3mm_D12.1mm_P7.62mm_Vertical_Vishay_IHA-101 -Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=20.32*12.07mm^2, Vishay, IHA-101, http://www.vishay.com/docs/34014/iha.pdf, Alternate KiCad Library -Inductor Axial series Axial Vertical pin pitch 7.62mm length 20.32mm diameter 12.07mm Vishay IHA-101 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Axial_L20.3mm_D12.1mm_P28.50mm_Horizontal_Vishay_IHA-101 -Inductor, Axial series, Axial, Horizontal, pin pitch=28.5mm, , length*diameter=20.32*12.07mm^2, Vishay, IHA-101, http://www.vishay.com/docs/34014/iha.pdf, Alternate KiCad Library -Inductor Axial series Axial Horizontal pin pitch 28.5mm length 20.32mm diameter 12.07mm Vishay IHA-101 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Axial_L20.3mm_D12.7mm_P7.62mm_Vertical_Vishay_IHA-201 -Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=20.32*12.7mm^2, Vishay, IHA-201, http://www.vishay.com/docs/34014/iha.pdf, Alternate KiCad Library -Inductor Axial series Axial Vertical pin pitch 7.62mm length 20.32mm diameter 12.7mm Vishay IHA-201 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Axial_L20.3mm_D12.7mm_P25.40mm_Horizontal_Vishay_IHA-201 -Inductor, Axial series, Axial, Horizontal, pin pitch=25.4mm, , length*diameter=20.32*12.7mm^2, Vishay, IHA-201, http://www.vishay.com/docs/34014/iha.pdf, Alternate KiCad Library -Inductor Axial series Axial Horizontal pin pitch 25.4mm length 20.32mm diameter 12.7mm Vishay IHA-201 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Axial_L23.4mm_D12.7mm_P7.62mm_Vertical_Vishay_IHA-203 -Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=23.37*12.7mm^2, Vishay, IHA-203, http://www.vishay.com/docs/34014/iha.pdf, Alternate KiCad Library -Inductor Axial series Axial Vertical pin pitch 7.62mm length 23.37mm diameter 12.7mm Vishay IHA-203 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Axial_L23.4mm_D12.7mm_P32.00mm_Horizontal_Vishay_IHA-203 -Inductor, Axial series, Axial, Horizontal, pin pitch=32mm, , length*diameter=23.37*12.7mm^2, Vishay, IHA-203, http://www.vishay.com/docs/34014/iha.pdf, Alternate KiCad Library -Inductor Axial series Axial Horizontal pin pitch 32mm length 23.37mm diameter 12.7mm Vishay IHA-203 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Axial_L24.0mm_D7.1mm_P5.08mm_Vertical_Vishay_IM-10-28 -Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=24*7.1mm^2, Vishay, IM-10-28, http://www.vishay.com/docs/34035/im10.pdf, Alternate KiCad Library -Inductor Axial series Axial Vertical pin pitch 5.08mm length 24mm diameter 7.1mm Vishay IM-10-28 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Axial_L24.0mm_D7.1mm_P30.48mm_Horizontal_Vishay_IM-10-28 -Inductor, Axial series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=24*7.1mm^2, Vishay, IM-10-28, http://www.vishay.com/docs/34035/im10.pdf, Alternate KiCad Library -Inductor Axial series Axial Horizontal pin pitch 30.48mm length 24mm diameter 7.1mm Vishay IM-10-28 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Axial_L24.0mm_D7.5mm_P5.08mm_Vertical_Fastron_MESC -Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=24*7.5mm^2, Fastron, MESC, http://cdn-reichelt.de/documents/datenblatt/B400/DS_MESC.pdf, Alternate KiCad Library -Inductor Axial series Axial Vertical pin pitch 5.08mm length 24mm diameter 7.5mm Fastron MESC -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Axial_L24.0mm_D7.5mm_P7.62mm_Vertical_Fastron_MESC -Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=24*7.5mm^2, Fastron, MESC, http://cdn-reichelt.de/documents/datenblatt/B400/DS_MESC.pdf, Alternate KiCad Library -Inductor Axial series Axial Vertical pin pitch 7.62mm length 24mm diameter 7.5mm Fastron MESC -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Axial_L24.0mm_D7.5mm_P27.94mm_Horizontal_Fastron_MESC -Inductor, Axial series, Axial, Horizontal, pin pitch=27.94mm, , length*diameter=24*7.5mm^2, Fastron, MESC, http://cdn-reichelt.de/documents/datenblatt/B400/DS_MESC.pdf, Alternate KiCad Library -Inductor Axial series Axial Horizontal pin pitch 27.94mm length 24mm diameter 7.5mm Fastron MESC -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Axial_L26.0mm_D9.0mm_P5.08mm_Vertical_Fastron_77A -Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=26*9mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf, Alternate KiCad Library -Inductor Axial series Axial Vertical pin pitch 5.08mm length 26mm diameter 9mm Fastron 77A -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Axial_L26.0mm_D9.0mm_P7.62mm_Vertical_Fastron_77A -Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=26*9mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf, Alternate KiCad Library -Inductor Axial series Axial Vertical pin pitch 7.62mm length 26mm diameter 9mm Fastron 77A -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Axial_L26.0mm_D9.0mm_P30.48mm_Horizontal_Fastron_77A -Inductor, Axial series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=26*9mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf, Alternate KiCad Library -Inductor Axial series Axial Horizontal pin pitch 30.48mm length 26mm diameter 9mm Fastron 77A -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Axial_L26.0mm_D10.0mm_P5.08mm_Vertical_Fastron_77A -Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=26*10mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf, Alternate KiCad Library -Inductor Axial series Axial Vertical pin pitch 5.08mm length 26mm diameter 10mm Fastron 77A -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Axial_L26.0mm_D10.0mm_P7.62mm_Vertical_Fastron_77A -Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=26*10mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf, Alternate KiCad Library -Inductor Axial series Axial Vertical pin pitch 7.62mm length 26mm diameter 10mm Fastron 77A -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Axial_L26.0mm_D10.0mm_P30.48mm_Horizontal_Fastron_77A -Inductor, Axial series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=26*10mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf, Alternate KiCad Library -Inductor Axial series Axial Horizontal pin pitch 30.48mm length 26mm diameter 10mm Fastron 77A -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Axial_L26.0mm_D11.0mm_P5.08mm_Vertical_Fastron_77A -Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=26*11mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf, Alternate KiCad Library -Inductor Axial series Axial Vertical pin pitch 5.08mm length 26mm diameter 11mm Fastron 77A -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Axial_L26.0mm_D11.0mm_P7.62mm_Vertical_Fastron_77A -Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=26*11mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf, Alternate KiCad Library -Inductor Axial series Axial Vertical pin pitch 7.62mm length 26mm diameter 11mm Fastron 77A -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Axial_L26.0mm_D11.0mm_P30.48mm_Horizontal_Fastron_77A -Inductor, Axial series, Axial, Horizontal, pin pitch=30.48mm, , length*diameter=26*11mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf, Alternate KiCad Library -Inductor Axial series Axial Horizontal pin pitch 30.48mm length 26mm diameter 11mm Fastron 77A -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Axial_L26.7mm_D12.1mm_P7.62mm_Vertical_Vishay_IHA-103 -Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=26.67*12.07mm^2, Vishay, IHA-103, http://www.vishay.com/docs/34014/iha.pdf, Alternate KiCad Library -Inductor Axial series Axial Vertical pin pitch 7.62mm length 26.67mm diameter 12.07mm Vishay IHA-103 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Axial_L26.7mm_D12.1mm_P35.00mm_Horizontal_Vishay_IHA-103 -Inductor, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=26.67*12.07mm^2, Vishay, IHA-103, http://www.vishay.com/docs/34014/iha.pdf, Alternate KiCad Library -Inductor Axial series Axial Horizontal pin pitch 35mm length 26.67mm diameter 12.07mm Vishay IHA-103 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Axial_L26.7mm_D14.0mm_P7.62mm_Vertical_Vishay_IHA-104 -Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=26.67*13.97mm^2, Vishay, IHA-104, http://www.vishay.com/docs/34014/iha.pdf, Alternate KiCad Library -Inductor Axial series Axial Vertical pin pitch 7.62mm length 26.67mm diameter 13.97mm Vishay IHA-104 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Axial_L26.7mm_D14.0mm_P35.00mm_Horizontal_Vishay_IHA-104 -Inductor, Axial series, Axial, Horizontal, pin pitch=35mm, , length*diameter=26.67*13.97mm^2, Vishay, IHA-104, http://www.vishay.com/docs/34014/iha.pdf, Alternate KiCad Library -Inductor Axial series Axial Horizontal pin pitch 35mm length 26.67mm diameter 13.97mm Vishay IHA-104 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Axial_L29.9mm_D14.0mm_P7.62mm_Vertical_Vishay_IHA-105 -Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=29.85*13.97mm^2, Vishay, IHA-105, http://www.vishay.com/docs/34014/iha.pdf, Alternate KiCad Library -Inductor Axial series Axial Vertical pin pitch 7.62mm length 29.85mm diameter 13.97mm Vishay IHA-105 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Axial_L29.9mm_D14.0mm_P38.00mm_Horizontal_Vishay_IHA-105 -Inductor, Axial series, Axial, Horizontal, pin pitch=38mm, , length*diameter=29.85*13.97mm^2, Vishay, IHA-105, http://www.vishay.com/docs/34014/iha.pdf, Alternate KiCad Library -Inductor Axial series Axial Horizontal pin pitch 38mm length 29.85mm diameter 13.97mm Vishay IHA-105 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Axial_L30.0mm_D8.0mm_P5.08mm_Vertical_Fastron_77A -Inductor, Axial series, Axial, Vertical, pin pitch=5.08mm, , length*diameter=30*8mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf, Alternate KiCad Library -Inductor Axial series Axial Vertical pin pitch 5.08mm length 30mm diameter 8mm Fastron 77A -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Axial_L30.0mm_D8.0mm_P7.62mm_Vertical_Fastron_77A -Inductor, Axial series, Axial, Vertical, pin pitch=7.62mm, , length*diameter=30*8mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf, Alternate KiCad Library -Inductor Axial series Axial Vertical pin pitch 7.62mm length 30mm diameter 8mm Fastron 77A -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Axial_L30.0mm_D8.0mm_P35.56mm_Horizontal_Fastron_77A -Inductor, Axial series, Axial, Horizontal, pin pitch=35.56mm, , length*diameter=30*8mm^2, Fastron, 77A, http://cdn-reichelt.de/documents/datenblatt/B400/DS_77A.pdf, Alternate KiCad Library -Inductor Axial series Axial Horizontal pin pitch 35.56mm length 30mm diameter 8mm Fastron 77A -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Axial_P2.5mm_Air -Air-Core Inductor, Axial, Horizontal, pin pitch=2.5mm, Alternate KiCad Library -Inductor Air Coil Axial Horizontal pin pitch 2.5mm -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Axial_P5mm_Air -Air-Core Inductor, Axial, Horizontal, pin pitch=5mm, Alternate KiCad Library -Inductor Air Coil Axial Horizontal pin pitch 5mm -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Axial_P7.5mm_Air -Air-Core Inductor, Axial, Horizontal, pin pitch=7.5mm, Alternate KiCad Library -Inductor Air Coil Axial Horizontal pin pitch 7.5mm -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Axial_P10mm_Air -Air-Core Inductor, Axial, Horizontal, pin pitch=10mm, Alternate KiCad Library -Inductor Air Coil Axial Horizontal pin pitch 10mm -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Axial_P12.5mm_Air -Air-Core Inductor, Axial, Horizontal, pin pitch=12.5mm, Alternate KiCad Library -Inductor Air Coil Axial Horizontal pin pitch 12.5mm -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Axial_P15mm_Air -Air-Core Inductor, Axial, Horizontal, pin pitch=15mm, Alternate KiCad Library -Inductor Air Coil Axial Horizontal pin pitch 15mm -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Axial_P20mm_Air -Air-Core Inductor, Axial, Horizontal, pin pitch=20mm, Alternate KiCad Library -Inductor Air Coil Axial Horizontal pin pitch 20mm -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Axial_P25mm_Air -Air-Core Inductor, Axial, Horizontal, pin pitch=25mm, Alternate KiCad Library -Inductor Air Coil Axial Horizontal pin pitch 25mm -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Axial_P30mm_Air -Air-Core Inductor, Axial, Horizontal, pin pitch=30mm, Alternate KiCad Library -Inductor Air Coil Axial Horizontal pin pitch 30mm -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_CommonMode_Toroid_Vertical_L19.3mm_W10.8mm_Px6.35mm_Py15.24mm_Bourns_8100 -L_CommonMode_Toroid, Vertical series, Radial, pin pitch=6.35*15.24mm^2, , length*width=19.304*10.795mm^2, Bourns, 8100, http://datasheet.octopart.com/8120-RC-Bourns-datasheet-10228452.pdf, Alternate KiCad Library -L_CommonMode_Toroid Vertical series Radial pin pitch 6.35*15.24mm^2 length 19.304mm width 10.795mm Bourns 8100 -0 -4 -4 -PCM_Inductor_THT_AKL_Double -L_CommonMode_Toroid_Vertical_L21.0mm_W10.0mm_Px5.08mm_Py12.70mm_muRATA_5100 -L_CommonMode_Toroid, Vertical series, Radial, pin pitch=5.08*12.70mm^2, , length*width=21*10mm^2, muRATA, 5100, http://www.murata-ps.com/data/magnetics/kmp_5100.pdf, Alternate KiCad Library -L_CommonMode_Toroid Vertical series Radial pin pitch 5.08*12.70mm^2 length 21mm width 10mm muRATA 5100 -0 -4 -4 -PCM_Inductor_THT_AKL_Double -L_CommonMode_Toroid_Vertical_L24.0mm_W16.3mm_Px10.16mm_Py20.32mm_muRATA_5200 -L_CommonMode_Toroid, Vertical series, Radial, pin pitch=10.16*20.32mm^2, , length*width=24*16.3mm^2, muRATA, 5200, http://www.murata-ps.com/data/magnetics/kmp_5200.pdf, Alternate KiCad Library -L_CommonMode_Toroid Vertical series Radial pin pitch 10.16*20.32mm^2 length 24mm width 16.3mm muRATA 5200 -0 -4 -4 -PCM_Inductor_THT_AKL_Double -L_CommonMode_Toroid_Vertical_L30.5mm_W15.2mm_Px10.16mm_Py20.32mm_Bourns_8100 -L_CommonMode_Toroid, Vertical series, Radial, pin pitch=10.16*20.32mm^2, , length*width=30.479999999999997*15.239999999999998mm^2, Bourns, 8100, http://datasheet.octopart.com/8120-RC-Bourns-datasheet-10228452.pdf, Alternate KiCad Library -L_CommonMode_Toroid Vertical series Radial pin pitch 10.16*20.32mm^2 length 30.479999999999997mm width 15.239999999999998mm Bourns 8100 -0 -4 -4 -PCM_Inductor_THT_AKL_Double -L_CommonMode_Toroid_Vertical_L34.3mm_W20.3mm_Px15.24mm_Py22.86mm_Bourns_8100 -L_CommonMode_Toroid, Vertical series, Radial, pin pitch=15.24*22.86mm^2, , length*width=34.29*20.32mm^2, Bourns, 8100, http://datasheet.octopart.com/8120-RC-Bourns-datasheet-10228452.pdf, Alternate KiCad Library -L_CommonMode_Toroid Vertical series Radial pin pitch 15.24*22.86mm^2 length 34.29mm width 20.32mm Bourns 8100 -0 -4 -4 -PCM_Inductor_THT_AKL_Double -L_CommonMode_Toroid_Vertical_L36.8mm_W20.3mm_Px15.24mm_Py22.86mm_Bourns_8100 -L_CommonMode_Toroid, Vertical series, Radial, pin pitch=15.24*22.86mm^2, , length*width=36.83*20.32mm^2, Bourns, 8100, http://datasheet.octopart.com/8120-RC-Bourns-datasheet-10228452.pdf, Alternate KiCad Library -L_CommonMode_Toroid Vertical series Radial pin pitch 15.24*22.86mm^2 length 36.83mm width 20.32mm Bourns 8100 -0 -4 -4 -PCM_Inductor_THT_AKL_Double -L_CommonMode_Toroid_Vertical_L38.1mm_W20.3mm_Px15.24mm_Py22.86mm_Bourns_8100 -L_CommonMode_Toroid, Vertical series, Radial, pin pitch=15.24*22.86mm^2, , length*width=38.099999999999994*20.32mm^2, Bourns, 8100, http://datasheet.octopart.com/8120-RC-Bourns-datasheet-10228452.pdf, Alternate KiCad Library -L_CommonMode_Toroid Vertical series Radial pin pitch 15.24*22.86mm^2 length 38.099999999999994mm width 20.32mm Bourns 8100 -0 -4 -4 -PCM_Inductor_THT_AKL_Double -L_CommonMode_Toroid_Vertical_L39.4mm_W20.3mm_Px15.24mm_Py22.86mm_Bourns_8100 -L_CommonMode_Toroid, Vertical series, Radial, pin pitch=15.24*22.86mm^2, , length*width=39.37*20.32mm^2, Bourns, 8100, http://datasheet.octopart.com/8120-RC-Bourns-datasheet-10228452.pdf, Alternate KiCad Library -L_CommonMode_Toroid Vertical series Radial pin pitch 15.24*22.86mm^2 length 39.37mm width 20.32mm Bourns 8100 -0 -4 -4 -PCM_Inductor_THT_AKL_Double -L_CommonMode_Toroid_Vertical_L41.9mm_W20.3mm_Px15.24mm_Py22.86mm_Bourns_8100 -L_CommonMode_Toroid, Vertical series, Radial, pin pitch=15.24*22.86mm^2, , length*width=41.91*20.32mm^2, Bourns, 8100, http://datasheet.octopart.com/8120-RC-Bourns-datasheet-10228452.pdf, Alternate KiCad Library -L_CommonMode_Toroid Vertical series Radial pin pitch 15.24*22.86mm^2 length 41.91mm width 20.32mm Bourns 8100 -0 -4 -4 -PCM_Inductor_THT_AKL_Double -L_CommonMode_Toroid_Vertical_L43.2mm_W22.9mm_Px17.78mm_Py30.48mm_Bourns_8100 -L_CommonMode_Toroid, Vertical series, Radial, pin pitch=17.78*30.48mm^2, , length*width=43.18*22.86mm^2, Bourns, 8100, http://datasheet.octopart.com/8120-RC-Bourns-datasheet-10228452.pdf, Alternate KiCad Library -L_CommonMode_Toroid Vertical series Radial pin pitch 17.78*30.48mm^2 length 43.18mm width 22.86mm Bourns 8100 -0 -4 -4 -PCM_Inductor_THT_AKL_Double -L_CommonMode_Wuerth_WE-CMB-L -Wuerth, WE-CMB, Bauform L,, Alternate KiCad Library -CommonModeChoke Gleichtaktdrossel -0 -4 -4 -PCM_Inductor_THT_AKL_Double -L_CommonMode_Wuerth_WE-CMB-M -Wuerth, WE-CMB, Bauform M, Alternate KiCad Library -CommonModeChoke Gleichtaktdrossel -0 -4 -4 -PCM_Inductor_THT_AKL_Double -L_CommonMode_Wuerth_WE-CMB-S -Wuerth, WE-CMB, Bauform S, Alternate KiCad Library -CommonModeChoke Gleichtaktdrossel -0 -4 -4 -PCM_Inductor_THT_AKL_Double -L_CommonMode_Wuerth_WE-CMB-XL -Wuerth, WE-CMB, Bauform XL,, Alternate KiCad Library -CommonModeChoke Gleichtaktdrossel -0 -4 -4 -PCM_Inductor_THT_AKL_Double -L_CommonMode_Wuerth_WE-CMB-XS -Wuerth, WE-CMB, Bauform XS, Alternate KiCad Library -CommonModeChoke Gleichtaktdrossel -0 -4 -4 -PCM_Inductor_THT_AKL_Double -L_CommonMode_Wuerth_WE-CMB-XXL -Wuerth, WE-CMB, Bauform XXL, Alternate KiCad Library -CommonModeChoke Gleichtaktdrossel -0 -4 -4 -PCM_Inductor_THT_AKL_Double -L_Radial_D7.5mm_P5.00mm_Fastron_07P -Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=7.5mm, Fastron, 07P, http://www.fastrongroup.com/image-show/39/07P.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library -Inductor Radial series Radial pin pitch 5.00mm diameter 7.5mm Fastron 07P -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Radial_D7.8mm_P5.00mm_Fastron_07HCP -Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=7.8mm, Fastron, 07HCP, http://www.abracon.com/Magnetics/radial/AISR875.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 5.00mm diameter 7.8mm Fastron 07HCP -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Radial_D8.7mm_P5.00mm_Fastron_07HCP -Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=8.7mm, Fastron, 07HCP, http://cdn-reichelt.de/documents/datenblatt/B400/DS_07HCP.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 5.00mm diameter 8.7mm Fastron 07HCP -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Radial_D9.5mm_P5.00mm_Fastron_07HVP -Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=9.5mm, Fastron, 07HVP, http://www.fastrongroup.com/image-show/107/07HVP%2007HVP_T.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library -Inductor Radial series Radial pin pitch 5.00mm diameter 9.5mm Fastron 07HVP -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Radial_D10.0mm_P5.00mm_Fastron_07M -Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=10mm, Fastron, 07M, http://www.fastrongroup.com/image-show/37/07M.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library -Inductor Radial series Radial pin pitch 5.00mm diameter 10mm Fastron 07M -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Radial_D10.0mm_P5.00mm_Fastron_07P -Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=10mm, Fastron, 07P, http://www.fastrongroup.com/image-show/37/07M.pdf?type=Complete-DataSheet&productType=series, Alternate KiCad Library -Inductor Radial series Radial pin pitch 5.00mm diameter 10mm Fastron 07P -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Radial_D10.0mm_P5.00mm_Neosid_SD12_style3 -Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=10.0mm, Neosid, SD12, style3, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_Sd12.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 5.00mm diameter 10.0mm Neosid SD12 style3 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Radial_D10.0mm_P5.00mm_Neosid_SD12k_style3 -Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=10.0mm, Neosid, SD12k, style3, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_Sd12k.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 5.00mm diameter 10.0mm Neosid SD12k style3 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Radial_D10.5mm_P4.00x5.00mm_Murata_1200RS -Inductor, Radial, Pitch=4.00x5.00mm, Diameter=10.5mm, Murata 1200RS, http://www.murata-ps.com/data/magnetics/kmp_1200rs.pdf, Alternate KiCad Library -Inductor Radial Murata 1200RS -0 -4 -2 -PCM_Inductor_THT_AKL_Double -L_Radial_D10.5mm_P5.00mm_Abacron_AISR-01 -Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=10.5mm, Abacron, AISR-01, http://www.abracon.com/Magnetics/radial/AISR-01.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 5.00mm diameter 10.5mm Abacron AISR-01 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Radial_D12.0mm_P5.00mm_Fastron_11P -Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=12.0mm, Fastron, 11P, http://cdn-reichelt.de/documents/datenblatt/B400/DS_11P.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 5.00mm diameter 12.0mm Fastron 11P -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Radial_D12.0mm_P5.00mm_Neosid_SD12_style2 -Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=12.0mm, Neosid, SD12, style2, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_Sd12.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 5.00mm diameter 12.0mm Neosid SD12 style2 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Radial_D12.0mm_P5.00mm_Neosid_SD12k_style2 -Inductor, Radial series, Radial, pin pitch=5.00mm, , diameter=12.0mm, Neosid, SD12k, style2, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_Sd12k.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 5.00mm diameter 12.0mm Neosid SD12k style2 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Radial_D12.0mm_P6.00mm_MuRATA_1900R -Inductor, Radial series, Radial, pin pitch=6.00mm, , diameter=12.0mm, MuRATA, 1900R, http://www.murata-ps.com/data/magnetics/kmp_1900r.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 6.00mm diameter 12.0mm MuRATA 1900R -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Radial_D12.0mm_P10.00mm_Neosid_SD12_style1 -Inductor, Radial series, Radial, pin pitch=10.00mm, , diameter=12.0mm, Neosid, SD12, style1, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_Sd12.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 10.00mm diameter 12.0mm Neosid SD12 style1 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Radial_D12.0mm_P10.00mm_Neosid_SD12k_style1 -Inductor, Radial series, Radial, pin pitch=10.00mm, , diameter=12.0mm, Neosid, SD12k, style1, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_Sd12k.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 10.00mm diameter 12.0mm Neosid SD12k style1 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Radial_D12.5mm_P7.00mm_Fastron_09HCP -Inductor, Radial series, Radial, pin pitch=7.00mm, , diameter=12.5mm, Fastron, 09HCP, http://cdn-reichelt.de/documents/datenblatt/B400/DS_09HCP.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 7.00mm diameter 12.5mm Fastron 09HCP -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Radial_D12.5mm_P9.00mm_Fastron_09HCP -Inductor, Radial series, Radial, pin pitch=9.00mm, , diameter=12.5mm, Fastron, 09HCP, http://cdn-reichelt.de/documents/datenblatt/B400/DS_09HCP.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 9.00mm diameter 12.5mm Fastron 09HCP -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Radial_D13.5mm_P7.00mm_Fastron_09HCP -Inductor, Radial series, Radial, pin pitch=7.00mm, , diameter=13.5mm, Fastron, 09HCP, http://cdn-reichelt.de/documents/datenblatt/B400/DS_09HCP.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 7.00mm diameter 13.5mm Fastron 09HCP -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Radial_D14.2mm_P10.00mm_Neosid_SD14 -Inductor, Radial series, Radial, pin pitch=10.00mm, , diameter=14.2mm, Neosid, SD14, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_Sd14.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 10.00mm diameter 14.2mm Neosid SD14 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Radial_D16.8mm_P11.43mm_Vishay_IHB-1 -Inductor, Radial series, Radial, pin pitch=11.43mm, , diameter=16.8mm, Vishay, IHB-1, http://www.vishay.com/docs/34015/ihb.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 11.43mm diameter 16.8mm Vishay IHB-1 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Radial_D16.8mm_P12.07mm_Vishay_IHB-1 -Inductor, Radial series, Radial, pin pitch=12.07mm, , diameter=16.8mm, Vishay, IHB-1, http://www.vishay.com/docs/34015/ihb.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 12.07mm diameter 16.8mm Vishay IHB-1 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Radial_D16.8mm_P12.70mm_Vishay_IHB-1 -Inductor, Radial series, Radial, pin pitch=12.70mm, , diameter=16.8mm, Vishay, IHB-1, http://www.vishay.com/docs/34015/ihb.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 12.70mm diameter 16.8mm Vishay IHB-1 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Radial_D18.0mm_P10.00mm -Inductor, Radial series, Radial, pin pitch=10.00mm, , diameter=18mm, http://www.abracon.com/Magnetics/radial/AIUR-15.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 10.00mm diameter 18mm -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Radial_D21.0mm_P14.61mm_Vishay_IHB-2 -Inductor, Radial series, Radial, pin pitch=14.61mm, , diameter=21mm, Vishay, IHB-2, http://www.vishay.com/docs/34015/ihb.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 14.61mm diameter 21mm Vishay IHB-2 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Radial_D21.0mm_P15.00mm_Vishay_IHB-2 -Inductor, Radial series, Radial, pin pitch=15.00mm, , diameter=21mm, Vishay, IHB-2, http://www.vishay.com/docs/34015/ihb.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 15.00mm diameter 21mm Vishay IHB-2 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Radial_D21.0mm_P15.24mm_Vishay_IHB-2 -Inductor, Radial series, Radial, pin pitch=15.24mm, , diameter=21mm, Vishay, IHB-2, http://www.vishay.com/docs/34015/ihb.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 15.24mm diameter 21mm Vishay IHB-2 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Radial_D21.0mm_P15.75mm_Vishay_IHB-2 -Inductor, Radial series, Radial, pin pitch=15.75mm, , diameter=21mm, Vishay, IHB-2, http://www.vishay.com/docs/34015/ihb.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 15.75mm diameter 21mm Vishay IHB-2 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Radial_D21.0mm_P19.00mm -Inductor, Radial series, Radial, pin pitch=19.00mm, , diameter=21mm, http://www.abracon.com/Magnetics/radial/AIRD02.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 19.00mm diameter 21mm -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Radial_D24.0mm_P24.00mm -Inductor, Radial series, Radial, pin pitch=24.00mm, , diameter=24mm, Alternate KiCad Library -Inductor Radial series Radial pin pitch 24.00mm diameter 24mm -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Radial_D24.4mm_P22.90mm_muRATA_1400series -Inductor, Radial series, Radial, pin pitch=22.90mm, , diameter=24.4mm, muRATA, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 22.90mm diameter 24.4mm muRATA 1400series -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Radial_D24.4mm_P23.10mm_muRATA_1400series -Inductor, Radial series, Radial, pin pitch=23.10mm, , diameter=24.4mm, muRATA, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 23.10mm diameter 24.4mm muRATA 1400series -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Radial_D24.4mm_P23.40mm_muRATA_1400series -Inductor, Radial series, Radial, pin pitch=23.40mm, , diameter=24.4mm, muRATA, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 23.40mm diameter 24.4mm muRATA 1400series -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Radial_D24.4mm_P23.70mm_muRATA_1400series -Inductor, Radial series, Radial, pin pitch=23.70mm, , diameter=24.4mm, muRATA, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 23.70mm diameter 24.4mm muRATA 1400series -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Radial_D24.4mm_P23.90mm_muRATA_1400series -Inductor, Radial series, Radial, pin pitch=23.90mm, , diameter=24.4mm, muRATA, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 23.90mm diameter 24.4mm muRATA 1400series -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Radial_D27.9mm_P18.29mm_Vishay_IHB-3 -Inductor, Radial series, Radial, pin pitch=18.29mm, , diameter=27.9mm, Vishay, IHB-3, http://www.vishay.com/docs/34015/ihb.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 18.29mm diameter 27.9mm Vishay IHB-3 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Radial_D27.9mm_P19.05mm_Vishay_IHB-3 -Inductor, Radial series, Radial, pin pitch=19.05mm, , diameter=27.9mm, Vishay, IHB-3, http://www.vishay.com/docs/34015/ihb.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 19.05mm diameter 27.9mm Vishay IHB-3 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Radial_D27.9mm_P20.07mm_Vishay_IHB-3 -Inductor, Radial series, Radial, pin pitch=20.07mm, , diameter=27.9mm, Vishay, IHB-3, http://www.vishay.com/docs/34015/ihb.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 20.07mm diameter 27.9mm Vishay IHB-3 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Radial_D28.0mm_P29.20mm -Inductor, Radial series, Radial, pin pitch=29.20mm, , diameter=28mm, Alternate KiCad Library -Inductor Radial series Radial pin pitch 29.20mm diameter 28mm -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Radial_D29.8mm_P28.30mm_muRATA_1400series -Inductor, Radial series, Radial, pin pitch=28.30mm, , diameter=29.8mm, muRATA, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 28.30mm diameter 29.8mm muRATA 1400series -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Radial_D29.8mm_P28.50mm_muRATA_1400series -Inductor, Radial series, Radial, pin pitch=28.50mm, , diameter=29.8mm, muRATA, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 28.50mm diameter 29.8mm muRATA 1400series -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Radial_D29.8mm_P28.80mm_muRATA_1400series -Inductor, Radial series, Radial, pin pitch=28.80mm, , diameter=29.8mm, muRATA, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 28.80mm diameter 29.8mm muRATA 1400series -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Radial_D29.8mm_P29.00mm_muRATA_1400series -Inductor, Radial series, Radial, pin pitch=29.00mm, , diameter=29.8mm, muRATA, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 29.00mm diameter 29.8mm muRATA 1400series -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Radial_D29.8mm_P29.30mm_muRATA_1400series -Inductor, Radial series, Radial, pin pitch=29.30mm, , diameter=29.8mm, muRATA, 1400series, http://www.murata-ps.com/data/magnetics/kmp_1400.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 29.30mm diameter 29.8mm muRATA 1400series -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Radial_D40.6mm_P26.16mm_Vishay_IHB-5 -Inductor, Radial series, Radial, pin pitch=26.16mm, , diameter=40.64mm, Vishay, IHB-5, http://www.vishay.com/docs/34015/ihb.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 26.16mm diameter 40.64mm Vishay IHB-5 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Radial_D40.6mm_P27.18mm_Vishay_IHB-4 -Inductor, Radial series, Radial, pin pitch=27.18mm, , diameter=40.64mm, Vishay, IHB-4, http://www.vishay.com/docs/34015/ihb.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 27.18mm diameter 40.64mm Vishay IHB-4 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Radial_D40.6mm_P27.94mm_Vishay_IHB-4 -Inductor, Radial series, Radial, pin pitch=27.94mm, , diameter=40.64mm, Vishay, IHB-4, http://www.vishay.com/docs/34015/ihb.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 27.94mm diameter 40.64mm Vishay IHB-4 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Radial_D40.6mm_P27.94mm_Vishay_IHB-5 -Inductor, Radial series, Radial, pin pitch=27.94mm, , diameter=40.64mm, Vishay, IHB-5, http://www.vishay.com/docs/34015/ihb.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 27.94mm diameter 40.64mm Vishay IHB-5 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Radial_D40.6mm_P28.70mm_Vishay_IHB-5 -Inductor, Radial series, Radial, pin pitch=28.70mm, , diameter=40.64mm, Vishay, IHB-5, http://www.vishay.com/docs/34015/ihb.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 28.70mm diameter 40.64mm Vishay IHB-5 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Radial_D50.8mm_P33.27mm_Vishay_IHB-6 -Inductor, Radial series, Radial, pin pitch=33.27mm, , diameter=50.8mm, Vishay, IHB-6, http://www.vishay.com/docs/34015/ihb.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 33.27mm diameter 50.8mm Vishay IHB-6 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Radial_D50.8mm_P34.29mm_Vishay_IHB-6 -Inductor, Radial series, Radial, pin pitch=34.29mm, , diameter=50.8mm, Vishay, IHB-6, http://www.vishay.com/docs/34015/ihb.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 34.29mm diameter 50.8mm Vishay IHB-6 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Radial_D50.8mm_P35.81mm_Vishay_IHB-6 -Inductor, Radial series, Radial, pin pitch=35.81mm, , diameter=50.8mm, Vishay, IHB-6, http://www.vishay.com/docs/34015/ihb.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 35.81mm diameter 50.8mm Vishay IHB-6 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Radial_D50.8mm_P36.32mm_Vishay_IHB-6 -Inductor, Radial series, Radial, pin pitch=36.32mm, , diameter=50.8mm, Vishay, IHB-6, http://www.vishay.com/docs/34015/ihb.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 36.32mm diameter 50.8mm Vishay IHB-6 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Radial_D50.8mm_P38.86mm_Vishay_IHB-6 -Inductor, Radial series, Radial, pin pitch=38.86mm, , diameter=50.8mm, Vishay, IHB-6, http://www.vishay.com/docs/34015/ihb.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 38.86mm diameter 50.8mm Vishay IHB-6 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Radial_L7.5mm_W4.6mm_P5.00mm_Neosid_SD75 -Inductor, Radial series, Radial, pin pitch=5.00mm, , length*width=7.5*4.6mm^2, Neosid, SD75, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_Sd75.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 5.00mm length 7.5mm width 4.6mm Neosid SD75 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Radial_L8.0mm_W8.0mm_P5.00mm_Neosid_NE-CPB-07E -Inductor, Radial series, Radial, pin pitch=5.00mm, , length*width=8*8mm^2, Neosid, NE-CPB-07E, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_NE_CPB07E.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 5.00mm length 8mm width 8mm Neosid NE-CPB-07E -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Radial_L8.0mm_W8.0mm_P5.00mm_Neosid_SD8 -Inductor, Radial series, Radial, pin pitch=5.00mm, , length*width=8*8mm^2, Neosid, SD8, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_Sd8.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 5.00mm length 8mm width 8mm Neosid SD8 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Radial_L9.1mm_W9.1mm_Px6.35mm_Py6.35mm_Pulse_LP-25 -Inductor, Radial series, Radial, pin pitch=6.35*6.35mm^2, , length*width=9.14*9.14mm^2, Pulse, LP-25, http://datasheet.octopart.com/PE-54044NL-Pulse-datasheet-5313493.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 6.35*6.35mm^2 length 9.14mm width 9.14mm Pulse LP-25 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Radial_L10.2mm_W10.2mm_Px7.62mm_Py7.62mm_Pulse_LP-30 -Inductor, Radial series, Radial, pin pitch=7.62*7.62mm^2, , length*width=10.16*10.16mm^2, Pulse, LP-30, http://datasheet.octopart.com/PE-54044NL-Pulse-datasheet-5313493.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 7.62*7.62mm^2 length 10.16mm width 10.16mm Pulse LP-30 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Radial_L11.5mm_W11.5mm_Px6.00mm_Py6.00mm_Neosid_NE-CPB-11EN_Drill1.3mm -Inductor, Radial series, Radial, pin pitch=6.00*6.00mm^2, , length*width=11.5*11.5mm^2, Neosid, NE-CPB-11EN, Drill1.3mm, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_NE_CPB11EN.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 6.00*6.00mm^2 length 11.5mm width 11.5mm Neosid NE-CPB-11EN Drill1.3mm -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Radial_L11.5mm_W11.5mm_Px6.00mm_Py6.00mm_Neosid_NE-CPB-11EN_Drill1.5mm -Inductor, Radial series, Radial, pin pitch=6.00*6.00mm^2, , length*width=11.5*11.5mm^2, Neosid, NE-CPB-11EN, Drill1.5mm, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_NE_CPB11EN.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 6.00*6.00mm^2 length 11.5mm width 11.5mm Neosid NE-CPB-11EN Drill1.5mm -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Radial_L11.5mm_W11.5mm_Px6.00mm_Py6.00mm_Neosid_NE-CPB-11EN_Drill1.7mm -Inductor, Radial series, Radial, pin pitch=6.00*6.00mm^2, , length*width=11.5*11.5mm^2, Neosid, NE-CPB-11EN, Drill1.7mm, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_NE_CPB11EN.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 6.00*6.00mm^2 length 11.5mm width 11.5mm Neosid NE-CPB-11EN Drill1.7mm -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Radial_L11.5mm_W11.5mm_Px6.00mm_Py6.00mm_Neosid_NE-CPB-11EN_Drill1.8mm -Inductor, Radial series, Radial, pin pitch=6.00*6.00mm^2, , length*width=11.5*11.5mm^2, Neosid, NE-CPB-11EN, Drill1.8mm, http://www.neosid.de/produktblaetter/neosid_Festinduktivitaet_NE_CPB11EN.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 6.00*6.00mm^2 length 11.5mm width 11.5mm Neosid NE-CPB-11EN Drill1.8mm -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Radial_L12.6mm_W12.6mm_Px9.52mm_Py9.52mm_Pulse_LP-37 -Inductor, Radial series, Radial, pin pitch=9.52*9.52mm^2, , length*width=12.57*12.57mm^2, Pulse, LP-37, http://datasheet.octopart.com/PE-54044NL-Pulse-datasheet-5313493.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 9.52*9.52mm^2 length 12.57mm width 12.57mm Pulse LP-37 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Radial_L16.1mm_W16.1mm_Px7.62mm_Py12.70mm_Pulse_LP-44 -Inductor, Radial series, Radial, pin pitch=7.62*12.70mm^2, , length*width=16.13*16.13mm^2, Pulse, LP-44, http://datasheet.octopart.com/PE-54044NL-Pulse-datasheet-5313493.pdf, Alternate KiCad Library -Inductor Radial series Radial pin pitch 7.62*12.70mm^2 length 16.13mm width 16.13mm Pulse LP-44 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Toroid_Horizontal_D3.2mm_P6.40mm_Diameter3-5mm_Amidon-T12 -L_Toroid, Horizontal series, Radial, pin pitch=6.40mm, , diameter=3.175mm, Diameter3-5mm, Amidon-T12, Alternate KiCad Library -L_Toroid Horizontal series Radial pin pitch 6.40mm diameter 3.175mm Diameter3-5mm Amidon-T12 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Toroid_Horizontal_D4.1mm_P8.00mm_Diameter4-5mm_Amidon-T16 -L_Toroid, Horizontal series, Radial, pin pitch=8.00mm, , diameter=4.064mm, Diameter4-5mm, Amidon-T16, Alternate KiCad Library -L_Toroid Horizontal series Radial pin pitch 8.00mm diameter 4.064mm Diameter4-5mm Amidon-T16 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Toroid_Horizontal_D5.1mm_P9.00mm_Diameter6-5mm_Amidon-T20 -L_Toroid, Horizontal series, Radial, pin pitch=9.00mm, , diameter=5.08mm, Diameter6-5mm, Amidon-T20, Alternate KiCad Library -L_Toroid Horizontal series Radial pin pitch 9.00mm diameter 5.08mm Diameter6-5mm Amidon-T20 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Toroid_Horizontal_D6.5mm_P10.00mm_Diameter7-5mm_Amidon-T25 -L_Toroid, Horizontal series, Radial, pin pitch=10.00mm, , diameter=6.476999999999999mm, Diameter7-5mm, Amidon-T25, Alternate KiCad Library -L_Toroid Horizontal series Radial pin pitch 10.00mm diameter 6.476999999999999mm Diameter7-5mm Amidon-T25 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Toroid_Horizontal_D7.8mm_P13.00mm_Diameter9-5mm_Amidon-T30 -L_Toroid, Horizontal series, Radial, pin pitch=13.00mm, , diameter=7.7978mm, Diameter9-5mm, Amidon-T30, Alternate KiCad Library -L_Toroid Horizontal series Radial pin pitch 13.00mm diameter 7.7978mm Diameter9-5mm Amidon-T30 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Toroid_Horizontal_D9.5mm_P15.00mm_Diameter10-5mm_Amidon-T37 -L_Toroid, Horizontal series, Radial, pin pitch=15.00mm, , diameter=9.524999999999999mm, Diameter10-5mm, Amidon-T37, Alternate KiCad Library -L_Toroid Horizontal series Radial pin pitch 15.00mm diameter 9.524999999999999mm Diameter10-5mm Amidon-T37 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Toroid_Horizontal_D11.2mm_P17.00mm_Diameter12-5mm_Amidon-T44 -L_Toroid, Horizontal series, Radial, pin pitch=17.00mm, , diameter=11.176mm, Diameter12-5mm, Amidon-T44, Alternate KiCad Library -L_Toroid Horizontal series Radial pin pitch 17.00mm diameter 11.176mm Diameter12-5mm Amidon-T44 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Toroid_Horizontal_D12.7mm_P20.00mm_Diameter14-5mm_Amidon-T50 -L_Toroid, Horizontal series, Radial, pin pitch=20.00mm, , diameter=12.7mm, Diameter14-5mm, Amidon-T50, Alternate KiCad Library -L_Toroid Horizontal series Radial pin pitch 20.00mm diameter 12.7mm Diameter14-5mm Amidon-T50 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Toroid_Horizontal_D16.8mm_P14.70mm_Vishay_TJ3 -L_Toroid, Horizontal series, Radial, pin pitch=14.70mm, , diameter=16.8mm, Vishay, TJ3, http://www.vishay.com/docs/34079/tj.pdf, Alternate KiCad Library -L_Toroid Horizontal series Radial pin pitch 14.70mm diameter 16.8mm Vishay TJ3 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Toroid_Horizontal_D16.8mm_P14.70mm_Vishay_TJ3_BigPads -L_Toroid, Horizontal series, Radial, pin pitch=14.70mm, , diameter=16.8mm, Vishay, TJ3, BigPads, http://www.vishay.com/docs/34079/tj.pdf, Alternate KiCad Library -L_Toroid Horizontal series Radial pin pitch 14.70mm diameter 16.8mm Vishay TJ3 BigPads -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Toroid_Horizontal_D17.3mm_P15.24mm_Bourns_2000 -L_Toroid, Horizontal series, Radial, pin pitch=15.24mm, , diameter=17.3mm, Bourns, 2000, http://www.bourns.com/docs/Product-Datasheets/2000_series.pdf?sfvrsn=5, Alternate KiCad Library -L_Toroid Horizontal series Radial pin pitch 15.24mm diameter 17.3mm Bourns 2000 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Toroid_Horizontal_D21.8mm_P19.10mm_Bourns_2100 -L_Toroid, Horizontal series, Radial, pin pitch=19.10mm, , diameter=21.8mm, Bourns, 2100, http://www.bourns.com/docs/Product-Datasheets/2100_series.pdf?sfvrsn=3, Alternate KiCad Library -L_Toroid Horizontal series Radial pin pitch 19.10mm diameter 21.8mm Bourns 2100 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Toroid_Horizontal_D21.8mm_P19.60mm_Bourns_2100 -L_Toroid, Horizontal series, Radial, pin pitch=19.60mm, , diameter=21.8mm, Bourns, 2100, http://www.bourns.com/docs/Product-Datasheets/2100_series.pdf?sfvrsn=3, Alternate KiCad Library -L_Toroid Horizontal series Radial pin pitch 19.60mm diameter 21.8mm Bourns 2100 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Toroid_Horizontal_D22.4mm_P19.80mm_Vishay_TJ4 -L_Toroid, Horizontal series, Radial, pin pitch=19.80mm, , diameter=22.4mm, Vishay, TJ4, http://www.vishay.com/docs/34079/tj.pdf, Alternate KiCad Library -L_Toroid Horizontal series Radial pin pitch 19.80mm diameter 22.4mm Vishay TJ4 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Toroid_Horizontal_D24.1mm_P21.80mm_Bourns_2200 -L_Toroid, Horizontal series, Radial, pin pitch=21.80mm, , diameter=24.1mm, Bourns, 2200, http://www.bourns.com/docs/Product-Datasheets/2100_series.pdf?sfvrsn=3, Alternate KiCad Library -L_Toroid Horizontal series Radial pin pitch 21.80mm diameter 24.1mm Bourns 2200 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Toroid_Horizontal_D24.1mm_P23.10mm_Bourns_2200 -L_Toroid, Horizontal series, Radial, pin pitch=23.10mm, , diameter=24.1mm, Bourns, 2200, http://www.bourns.com/docs/Product-Datasheets/2100_series.pdf?sfvrsn=3, Alternate KiCad Library -L_Toroid Horizontal series Radial pin pitch 23.10mm diameter 24.1mm Bourns 2200 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Toroid_Horizontal_D25.4mm_P22.90mm_Vishay_TJ5 -L_Toroid, Horizontal series, Radial, pin pitch=22.90mm, , diameter=25.4mm, Vishay, TJ5, http://www.vishay.com/docs/34079/tj.pdf, Alternate KiCad Library -L_Toroid Horizontal series Radial pin pitch 22.90mm diameter 25.4mm Vishay TJ5 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Toroid_Horizontal_D25.4mm_P22.90mm_Vishay_TJ5_BigPads -L_Toroid, Horizontal series, Radial, pin pitch=22.90mm, , diameter=25.4mm, Vishay, TJ5, BigPads, http://www.vishay.com/docs/34079/tj.pdf, Alternate KiCad Library -L_Toroid Horizontal series Radial pin pitch 22.90mm diameter 25.4mm Vishay TJ5 BigPads -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Toroid_Horizontal_D26.0mm_P5.08mm -inductor 26mm diameter toroid, Alternate KiCad Library -SELF INDUCTOR -0 -3 -2 -PCM_Inductor_THT_AKL_Double -L_Toroid_Horizontal_D28.0mm_P25.10mm_Bourns_2200 -L_Toroid, Horizontal series, Radial, pin pitch=25.10mm, , diameter=28mm, Bourns, 2200, http://www.bourns.com/docs/Product-Datasheets/2100_series.pdf?sfvrsn=3, Alternate KiCad Library -L_Toroid Horizontal series Radial pin pitch 25.10mm diameter 28mm Bourns 2200 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Toroid_Horizontal_D28.0mm_P26.67mm_Bourns_2200 -L_Toroid, Horizontal series, Radial, pin pitch=26.67mm, , diameter=28mm, Bourns, 2200, http://www.bourns.com/docs/Product-Datasheets/2100_series.pdf?sfvrsn=3, Alternate KiCad Library -L_Toroid Horizontal series Radial pin pitch 26.67mm diameter 28mm Bourns 2200 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Toroid_Horizontal_D32.5mm_P28.90mm_Bourns_2300 -L_Toroid, Horizontal series, Radial, pin pitch=28.90mm, , diameter=32.5mm, Bourns, 2300, http://www.bourns.com/docs/Product-Datasheets/2300_series.pdf?sfvrsn=3, Alternate KiCad Library -L_Toroid Horizontal series Radial pin pitch 28.90mm diameter 32.5mm Bourns 2300 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Toroid_Horizontal_D32.5mm_P30.00mm_Bourns_2300 -L_Toroid, Horizontal series, Radial, pin pitch=30.00mm, , diameter=32.5mm, Bourns, 2300, http://www.bourns.com/docs/Product-Datasheets/2300_series.pdf?sfvrsn=3, Alternate KiCad Library -L_Toroid Horizontal series Radial pin pitch 30.00mm diameter 32.5mm Bourns 2300 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Toroid_Horizontal_D35.1mm_P31.00mm_Vishay_TJ6 -L_Toroid, Horizontal series, Radial, pin pitch=31.00mm, , diameter=35.1mm, Vishay, TJ6, http://www.vishay.com/docs/34079/tj.pdf, Alternate KiCad Library -L_Toroid Horizontal series Radial pin pitch 31.00mm diameter 35.1mm Vishay TJ6 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Toroid_Horizontal_D40.0mm_P48.26mm -L_Toroid, Horizontal series, Radial, pin pitch=48.26mm, , diameter=40mm, Alternate KiCad Library -L_Toroid Horizontal series Radial pin pitch 48.26mm diameter 40mm -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Toroid_Horizontal_D41.9mm_P37.60mm_Vishay_TJ7 -L_Toroid, Horizontal series, Radial, pin pitch=37.60mm, , diameter=41.9mm, Vishay, TJ7, http://www.vishay.com/docs/34079/tj.pdf, Alternate KiCad Library -L_Toroid Horizontal series Radial pin pitch 37.60mm diameter 41.9mm Vishay TJ7 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Toroid_Horizontal_D49.3mm_P44.60mm_Vishay_TJ8 -L_Toroid, Horizontal series, Radial, pin pitch=44.60mm, , diameter=49.3mm, Vishay, TJ8, http://www.vishay.com/docs/34079/tj.pdf, Alternate KiCad Library -L_Toroid Horizontal series Radial pin pitch 44.60mm diameter 49.3mm Vishay TJ8 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Toroid_Horizontal_D69.1mm_P63.20mm_Vishay_TJ9 -L_Toroid, Horizontal series, Radial, pin pitch=63.20mm, , diameter=69.1mm, Vishay, TJ9, http://www.vishay.com/docs/34079/tj.pdf, Alternate KiCad Library -L_Toroid Horizontal series Radial pin pitch 63.20mm diameter 69.1mm Vishay TJ9 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Toroid_Vertical_L10.0mm_W5.0mm_P5.08mm -L_Toroid, Vertical series, Radial, pin pitch=5.08mm, , length*width=10*5mm^2, Alternate KiCad Library -L_Toroid Vertical series Radial pin pitch 5.08mm length 10mm width 5mm -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Toroid_Vertical_L13.0mm_W6.5mm_P5.60mm -L_Toroid, Vertical series, Radial, pin pitch=5.60mm, , length*width=13*6.5mm^2, Alternate KiCad Library -L_Toroid Vertical series Radial pin pitch 5.60mm length 13mm width 6.5mm -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Toroid_Vertical_L14.0mm_W5.6mm_P5.30mm_Bourns_5700 -L_Toroid, Vertical series, Radial, pin pitch=5.30mm, , length*width=14*5.6mm^2, Bourns, 5700, http://www.bourns.com/docs/Product-Datasheets/5700_series.pdf, Alternate KiCad Library -L_Toroid Vertical series Radial pin pitch 5.30mm length 14mm width 5.6mm Bourns 5700 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Toroid_Vertical_L16.0mm_W8.0mm_P7.62mm -L_Toroid, Vertical series, Radial, pin pitch=7.62mm, , length*width=16*8mm^2, Alternate KiCad Library -L_Toroid Vertical series Radial pin pitch 7.62mm length 16mm width 8mm -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Toroid_Vertical_L16.3mm_W7.1mm_P7.11mm_Pulse_H -L_Toroid, Vertical series, Radial, pin pitch=7.11mm, , length*width=16.26*7.11mm^2, Pulse, H, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf, Alternate KiCad Library -L_Toroid Vertical series Radial pin pitch 7.11mm length 16.26mm width 7.11mm Pulse H -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Toroid_Vertical_L16.4mm_W7.6mm_P6.60mm_Vishay_TJ3 -L_Toroid, Vertical series, Radial, pin pitch=6.60mm, , length*width=16.4*7.6mm^2, Vishay, TJ3, http://www.vishay.com/docs/34079/tj.pdf, Alternate KiCad Library -L_Toroid Vertical series Radial pin pitch 6.60mm length 16.4mm width 7.6mm Vishay TJ3 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Toroid_Vertical_L16.5mm_W11.4mm_P7.62mm_Pulse_KM-2 -L_Toroid, Vertical series, Radial, pin pitch=7.62mm, , length*width=16.51*11.43mm^2, Pulse, KM-2, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf, Alternate KiCad Library -L_Toroid Vertical series Radial pin pitch 7.62mm length 16.51mm width 11.43mm Pulse KM-2 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Toroid_Vertical_L16.8mm_W9.2mm_P7.10mm_Vishay_TJ3 -L_Toroid, Vertical series, Radial, pin pitch=7.10mm, , length*width=16.8*9.2mm^2, Vishay, TJ3, http://www.vishay.com/docs/34079/tj.pdf, Alternate KiCad Library -L_Toroid Vertical series Radial pin pitch 7.10mm length 16.8mm width 9.2mm Vishay TJ3 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Toroid_Vertical_L16.8mm_W9.2mm_P7.10mm_Vishay_TJ3_BigPads -L_Toroid, Vertical series, Radial, pin pitch=7.10mm, , length*width=16.8*9.2mm^2, Vishay, TJ3, BigPads, http://www.vishay.com/docs/34079/tj.pdf, Alternate KiCad Library -L_Toroid Vertical series Radial pin pitch 7.10mm length 16.8mm width 9.2mm Vishay TJ3 BigPads -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Toroid_Vertical_L17.8mm_W8.1mm_P7.62mm_Bourns_5700 -L_Toroid, Vertical series, Radial, pin pitch=7.62mm, , length*width=17.8*8.1mm^2, Bourns, 5700, http://www.bourns.com/docs/Product-Datasheets/5700_series.pdf, Alternate KiCad Library -L_Toroid Vertical series Radial pin pitch 7.62mm length 17.8mm width 8.1mm Bourns 5700 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Toroid_Vertical_L17.8mm_W9.7mm_P7.11mm_Pulse_B -L_Toroid, Vertical series, Radial, pin pitch=7.11mm, , length*width=17.78*9.65mm^2, Pulse, B, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf, Alternate KiCad Library -L_Toroid Vertical series Radial pin pitch 7.11mm length 17.78mm width 9.65mm Pulse B -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Toroid_Vertical_L19.1mm_W8.1mm_P7.10mm_Bourns_5700 -L_Toroid, Vertical series, Radial, pin pitch=7.10mm, , length*width=19.1*8.1mm^2, Bourns, 5700, http://www.bourns.com/docs/Product-Datasheets/5700_series.pdf, Alternate KiCad Library -L_Toroid Vertical series Radial pin pitch 7.10mm length 19.1mm width 8.1mm Bourns 5700 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Toroid_Vertical_L21.6mm_W8.4mm_P8.38mm_Pulse_G -L_Toroid, Vertical series, Radial, pin pitch=8.38mm, , length*width=21.59*8.38mm^2, Pulse, G, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf, Alternate KiCad Library -L_Toroid Vertical series Radial pin pitch 8.38mm length 21.59mm width 8.38mm Pulse G -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Toroid_Vertical_L21.6mm_W9.1mm_P8.40mm_Bourns_5700 -L_Toroid, Vertical series, Radial, pin pitch=8.40mm, , length*width=21.6*9.1mm^2, Bourns, 5700, http://www.bourns.com/docs/Product-Datasheets/5700_series.pdf, Alternate KiCad Library -L_Toroid Vertical series Radial pin pitch 8.40mm length 21.6mm width 9.1mm Bourns 5700 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Toroid_Vertical_L21.6mm_W9.5mm_P7.11mm_Pulse_C -L_Toroid, Vertical series, Radial, pin pitch=7.11mm, , length*width=21.59*9.53mm^2, Pulse, C, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf, Alternate KiCad Library -L_Toroid Vertical series Radial pin pitch 7.11mm length 21.59mm width 9.53mm Pulse C -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Toroid_Vertical_L21.6mm_W11.4mm_P7.62mm_Pulse_KM-3 -L_Toroid, Vertical series, Radial, pin pitch=7.62mm, , length*width=21.59*11.43mm^2, Pulse, KM-3, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf, Alternate KiCad Library -L_Toroid Vertical series Radial pin pitch 7.62mm length 21.59mm width 11.43mm Pulse KM-3 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Toroid_Vertical_L22.4mm_W10.2mm_P7.90mm_Vishay_TJ4 -L_Toroid, Vertical series, Radial, pin pitch=7.90mm, , length*width=22.4*10.2mm^2, Vishay, TJ4, http://www.vishay.com/docs/34079/tj.pdf, Alternate KiCad Library -L_Toroid Vertical series Radial pin pitch 7.90mm length 22.4mm width 10.2mm Vishay TJ4 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Toroid_Vertical_L24.6mm_W15.5mm_P11.44mm_Pulse_KM-4 -L_Toroid, Vertical series, Radial, pin pitch=11.44mm, , length*width=24.64*15.5mm^2, Pulse, KM-4, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf, Alternate KiCad Library -L_Toroid Vertical series Radial pin pitch 11.44mm length 24.64mm width 15.5mm Pulse KM-4 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Toroid_Vertical_L25.4mm_W14.7mm_P12.20mm_Vishay_TJ5 -L_Toroid, Vertical series, Radial, pin pitch=12.20mm, , length*width=25.4*14.7mm^2, Vishay, TJ5, http://www.vishay.com/docs/34079/tj.pdf, Alternate KiCad Library -L_Toroid Vertical series Radial pin pitch 12.20mm length 25.4mm width 14.7mm Vishay TJ5 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Toroid_Vertical_L25.4mm_W14.7mm_P12.20mm_Vishay_TJ5_BigPads -L_Toroid, Vertical series, Radial, pin pitch=12.20mm, , length*width=25.4*14.7mm^2, Vishay, TJ5, BigPads, http://www.vishay.com/docs/34079/tj.pdf, Alternate KiCad Library -L_Toroid Vertical series Radial pin pitch 12.20mm length 25.4mm width 14.7mm Vishay TJ5 BigPads -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Toroid_Vertical_L26.7mm_W14.0mm_P10.16mm_Pulse_D -L_Toroid, Vertical series, Radial, pin pitch=10.16mm, , length*width=26.67*13.97mm^2, Pulse, D, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf, Alternate KiCad Library -L_Toroid Vertical series Radial pin pitch 10.16mm length 26.67mm width 13.97mm Pulse D -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Toroid_Vertical_L28.6mm_W14.3mm_P11.43mm_Bourns_5700 -L_Toroid, Vertical series, Radial, pin pitch=11.43mm, , length*width=28.6*14.3mm^2, Bourns, 5700, http://www.bourns.com/docs/Product-Datasheets/5700_series.pdf, Alternate KiCad Library -L_Toroid Vertical series Radial pin pitch 11.43mm length 28.6mm width 14.3mm Bourns 5700 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Toroid_Vertical_L31.8mm_W15.9mm_P13.50mm_Bourns_5700 -L_Toroid, Vertical series, Radial, pin pitch=13.50mm, , length*width=31.8*15.9mm^2, Bourns, 5700, http://www.bourns.com/docs/Product-Datasheets/5700_series.pdf, Alternate KiCad Library -L_Toroid Vertical series Radial pin pitch 13.50mm length 31.8mm width 15.9mm Bourns 5700 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Toroid_Vertical_L33.0mm_W17.8mm_P12.70mm_Pulse_KM-5 -L_Toroid, Vertical series, Radial, pin pitch=12.70mm, , length*width=33.02*17.78mm^2, Pulse, KM-5, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf, Alternate KiCad Library -L_Toroid Vertical series Radial pin pitch 12.70mm length 33.02mm width 17.78mm Pulse KM-5 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Toroid_Vertical_L35.1mm_W21.1mm_P18.50mm_Vishay_TJ6 -L_Toroid, Vertical series, Radial, pin pitch=18.50mm, , length*width=35.1*21.1mm^2, Vishay, TJ6, http://www.vishay.com/docs/34079/tj.pdf, Alternate KiCad Library -L_Toroid Vertical series Radial pin pitch 18.50mm length 35.1mm width 21.1mm Vishay TJ6 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Toroid_Vertical_L35.6mm_W17.8mm_P12.70mm_Pulse_E -L_Toroid, Vertical series, Radial, pin pitch=12.70mm, , length*width=35.56*17.78mm^2, Pulse, E, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf, Alternate KiCad Library -L_Toroid Vertical series Radial pin pitch 12.70mm length 35.56mm width 17.78mm Pulse E -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Toroid_Vertical_L41.9mm_W17.8mm_P12.70mm_Pulse_F -L_Toroid, Vertical series, Radial, pin pitch=12.70mm, , length*width=41.91*17.78mm^2, Pulse, F, http://datasheet.octopart.com/PE-92112KNL-Pulse-datasheet-17853305.pdf, Alternate KiCad Library -L_Toroid Vertical series Radial pin pitch 12.70mm length 41.91mm width 17.78mm Pulse F -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Toroid_Vertical_L41.9mm_W19.1mm_P15.80mm_Vishay_TJ7 -L_Toroid, Vertical series, Radial, pin pitch=15.80mm, , length*width=41.9*19.1mm^2, Vishay, TJ7, http://www.vishay.com/docs/34079/tj.pdf, Alternate KiCad Library -L_Toroid Vertical series Radial pin pitch 15.80mm length 41.9mm width 19.1mm Vishay TJ7 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Toroid_Vertical_L46.0mm_W19.1mm_P21.80mm_Bourns_5700 -L_Toroid, Vertical series, Radial, pin pitch=21.80mm, , length*width=46*19.1mm^2, Bourns, 5700, http://www.bourns.com/docs/Product-Datasheets/5700_series.pdf, Alternate KiCad Library -L_Toroid Vertical series Radial pin pitch 21.80mm length 46mm width 19.1mm Bourns 5700 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Toroid_Vertical_L48.8mm_W25.4mm_P20.80mm_Vishay_TJ8 -L_Toroid, Vertical series, Radial, pin pitch=20.80mm, , length*width=48.8*25.4mm^2, Vishay, TJ8, http://www.vishay.com/docs/34079/tj.pdf, Alternate KiCad Library -L_Toroid Vertical series Radial pin pitch 20.80mm length 48.8mm width 25.4mm Vishay TJ8 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Toroid_Vertical_L54.0mm_W23.8mm_P20.10mm_Bourns_5700 -L_Toroid, Vertical series, Radial, pin pitch=20.10mm, , length*width=54*23.8mm^2, Bourns, 5700, http://www.bourns.com/docs/Product-Datasheets/5700_series.pdf, Alternate KiCad Library -L_Toroid Vertical series Radial pin pitch 20.10mm length 54mm width 23.8mm Bourns 5700 -0 -2 -2 -PCM_Inductor_THT_AKL_Double -L_Toroid_Vertical_L67.6mm_W36.1mm_P31.80mm_Vishay_TJ9 -L_Toroid, Vertical series, Radial, pin pitch=31.80mm, , length*width=67.6*36.1mm^2, Vishay, TJ9, http://www.vishay.com/docs/34079/tj.pdf, Alternate KiCad Library -L_Toroid Vertical series Radial pin pitch 31.80mm length 67.6mm width 36.1mm Vishay TJ9 -0 -2 -2 -PCM_Jumper_AKL -Jumper_P2.54mm_D0.7mm -Jumper 2.54mm pitch 0.7mm hole diameter, Alternate KiCad Library -Jumper 2.54mm -0 -2 -2 -PCM_Jumper_AKL -Jumper_P2.54mm_D1.2mm -Jumper 2.54mm pitch 1.2mm hole diameter, Alternate KiCad Library -Jumper 2.54mm -0 -2 -2 -PCM_Jumper_AKL -Jumper_P5.08mm_D0.7mm -Jumper 5.08mm pitch 0.7mm hole diameter, Alternate KiCad Library -Jumper 5.08mm -0 -2 -2 -PCM_Jumper_AKL -Jumper_P5.08mm_D1.2mm -Jumper 5.08mm pitch 1.2mm hole diameter, Alternate KiCad Library -Jumper 5.08mm -0 -2 -2 -PCM_Jumper_AKL -Jumper_P7.62mm_D0.7mm -Jumper 7.62mm pitch 0.7mm hole diameter, Alternate KiCad Library -Jumper 7.62mm -0 -2 -2 -PCM_Jumper_AKL -Jumper_P7.62mm_D1.2mm -Jumper 7.62mm pitch 1.2mm hole diameter, Alternate KiCad Library -Jumper 7.62mm -0 -2 -2 -PCM_Jumper_AKL -Jumper_P10.16mm_D0.7mm -Jumper 10.16mm pitch 0.7mm hole diameter, Alternate KiCad Library -Jumper 10.16mm -0 -2 -2 -PCM_Jumper_AKL -Jumper_P10.16mm_D1.2mm -Jumper 10.16mm pitch 1.2mm hole diameter, Alternate KiCad Library -Jumper 10.16mm -0 -2 -2 -PCM_Jumper_AKL -Jumper_P12.70mm_D0.7mm -Jumper 12.70mm pitch 0.7mm hole diameter, Alternate KiCad Library -Jumper 12.70mm -0 -2 -2 -PCM_Jumper_AKL -Jumper_P12.70mm_D1.2mm -Jumper 12.70mm pitch 1.2mm hole diameter, Alternate KiCad Library -Jumper 12.70mm -0 -2 -2 -PCM_Jumper_AKL -Jumper_P15.24mm_D0.7mm -Jumper 15.24mm pitch 0.7mm hole diameter, Alternate KiCad Library -Jumper 15.24mm -0 -2 -2 -PCM_Jumper_AKL -Jumper_P15.24mm_D1.2mm -Jumper 15.24mm pitch 1.2mm hole diameter, Alternate KiCad Library -Jumper 15.24mm -0 -2 -2 -PCM_Jumper_AKL -Jumper_P17.78mm_D0.7mm -Jumper 17.78mm pitch 0.7mm hole diameter, Alternate KiCad Library -Jumper 17.78mm -0 -2 -2 -PCM_Jumper_AKL -Jumper_P17.78mm_D1.2mm -Jumper 17.78mm pitch 1.2mm hole diameter, Alternate KiCad Library -Jumper 17.78mm -0 -2 -2 -PCM_Jumper_AKL -Jumper_P20.32mm_D0.7mm -Jumper 20.32mm pitch 0.7mm hole diameter, Alternate KiCad Library -Jumper 20.32mm -0 -2 -2 -PCM_Jumper_AKL -Jumper_P20.32mm_D1.2mm -Jumper 20.32mm pitch 1.2mm hole diameter, Alternate KiCad Library -Jumper 20.32mm -0 -2 -2 -PCM_Jumper_AKL -Jumper_P25.40mm_D0.7mm -Jumper 25.40mm pitch 0.7mm hole diameter, Alternate KiCad Library -Jumper 25.40mm -0 -2 -2 -PCM_Jumper_AKL -Jumper_P25.40mm_D1.2mm -Jumper 25.40mm pitch 1.2mm hole diameter, Alternate KiCad Library -Jumper 25.40mm -0 -2 -2 -PCM_Jumper_AKL -Jumper_P30.48mm_D0.7mm -Jumper 30.48mm pitch 0.7mm hole diameter, Alternate KiCad Library -Jumper 30.48mm -0 -2 -2 -PCM_Jumper_AKL -Jumper_P30.48mm_D1.2mm -Jumper 30.48mm pitch 1.2mm hole diameter, Alternate KiCad Library -Jumper 30.48mm -0 -2 -2 -PCM_Jumper_AKL_Double -Jumper_P2.54mm_D0.7mm -Jumper 2.54mm pitch 0.7mm hole diameter, Alternate KiCad Library -Jumper 2.54mm -0 -2 -2 -PCM_Jumper_AKL_Double -Jumper_P5.08mm_D0.7mm -Jumper 5.08mm pitch 0.7mm hole diameter, Alternate KiCad Library -Jumper 5.08mm -0 -2 -2 -PCM_Jumper_AKL_Double -Jumper_P5.08mm_D1.2mm -Jumper 5.08mm pitch 1.2mm hole diameter, Alternate KiCad Library -Jumper 5.08mm -0 -2 -2 -PCM_Jumper_AKL_Double -Jumper_P7.62mm_D0.7mm -Jumper 7.62mm pitch 0.7mm hole diameter, Alternate KiCad Library -Jumper 7.62mm -0 -2 -2 -PCM_Jumper_AKL_Double -Jumper_P7.62mm_D1.2mm -Jumper 7.62mm pitch 1.2mm hole diameter, Alternate KiCad Library -Jumper 7.62mm -0 -2 -2 -PCM_Jumper_AKL_Double -Jumper_P10.16mm_D0.7mm -Jumper 10.16mm pitch 0.7mm hole diameter, Alternate KiCad Library -Jumper 10.16mm -0 -2 -2 -PCM_Jumper_AKL_Double -Jumper_P10.16mm_D1.2mm -Jumper 10.16mm pitch 1.2mm hole diameter, Alternate KiCad Library -Jumper 10.16mm -0 -2 -2 -PCM_Jumper_AKL_Double -Jumper_P12.70mm_D0.7mm -Jumper 12.70mm pitch 0.7mm hole diameter, Alternate KiCad Library -Jumper 12.70mm -0 -2 -2 -PCM_Jumper_AKL_Double -Jumper_P12.70mm_D1.2mm -Jumper 12.70mm pitch 1.2mm hole diameter, Alternate KiCad Library -Jumper 12.70mm -0 -2 -2 -PCM_Jumper_AKL_Double -Jumper_P15.24mm_D0.7mm -Jumper 15.24mm pitch 0.7mm hole diameter, Alternate KiCad Library -Jumper 15.24mm -0 -2 -2 -PCM_Jumper_AKL_Double -Jumper_P15.24mm_D1.2mm -Jumper 15.24mm pitch 1.2mm hole diameter, Alternate KiCad Library -Jumper 15.24mm -0 -2 -2 -PCM_Jumper_AKL_Double -Jumper_P17.78mm_D0.7mm -Jumper 17.78mm pitch 0.7mm hole diameter, Alternate KiCad Library -Jumper 17.78mm -0 -2 -2 -PCM_Jumper_AKL_Double -Jumper_P17.78mm_D1.2mm -Jumper 17.78mm pitch 1.2mm hole diameter, Alternate KiCad Library -Jumper 17.78mm -0 -2 -2 -PCM_Jumper_AKL_Double -Jumper_P20.32mm_D0.7mm -Jumper 20.32mm pitch 0.7mm hole diameter, Alternate KiCad Library -Jumper 20.32mm -0 -2 -2 -PCM_Jumper_AKL_Double -Jumper_P20.32mm_D1.2mm -Jumper 20.32mm pitch 1.2mm hole diameter, Alternate KiCad Library -Jumper 20.32mm -0 -2 -2 -PCM_Jumper_AKL_Double -Jumper_P25.40mm_D0.7mm -Jumper 25.40mm pitch 0.7mm hole diameter, Alternate KiCad Library -Jumper 25.40mm -0 -2 -2 -PCM_Jumper_AKL_Double -Jumper_P25.40mm_D1.2mm -Jumper 25.40mm pitch 1.2mm hole diameter, Alternate KiCad Library -Jumper 25.40mm -0 -2 -2 -PCM_Jumper_AKL_Double -Jumper_P30.48mm_D0.7mm -Jumper 30.48mm pitch 0.7mm hole diameter, Alternate KiCad Library -Jumper 30.48mm -0 -2 -2 -PCM_Jumper_AKL_Double -Jumper_P30.48mm_D1.2mm -Jumper 30.48mm pitch 1.2mm hole diameter, Alternate KiCad Library -Jumper 30.48mm -0 -2 -2 -PCM_Optocoupler_AKL -CEL_PS2911 -Flat lead optocoupler package, CEL PS2911 -PS2199 optocoupler flat lead -0 -4 -4 -PCM_Optocoupler_AKL -Toshiba_TLP3914 -SMD Optocoupler Package, 3.8x2.04mm, P 1.27mm -SMD Optocoupler TLP3914 Toshiba -0 -4 -4 -PCM_Optocoupler_AKL -Vishay_CNY64 -High isolation optocoupler package, 12.8x7.2mm, pitch 10.16x5.08mm, https://www.tme.eu/Document/671d249c87ebde8a1be8eadfd7eb3719/cny64.pdf, Alternate KiCAD Library -CNY 64 high isolation optocoupler isolator -0 -4 -4 -PCM_Optocoupler_AKL -Vishay_CNY64ST -SMD High isolation optocoupler package, 12.8x7.2mm, pitch 12.45x5.08mm, https://www.tme.eu/Document/fed8daf4b36baf062ffeee5d975821f7/CNY64ABST.pdf, Alternate KiCAD Library -CNY 64 SMD high isolation optocoupler isolator -0 -4 -4 -PCM_Optocoupler_AKL -Vishay_CNY65 -High isolation optocoupler package, 17.8x9.6mm, pitch 15.24x7.62mm, https://www.tme.eu/Document/671d249c87ebde8a1be8eadfd7eb3719/cny64.pdf, Alternate KiCAD Library -CNY 65 high isolation optocoupler isolator -0 -4 -4 -PCM_Optocoupler_AKL -Vishay_CNY65ST -SMD High isolation optocoupler package, 17.8x9.6mm, pitch 15.24x7.62mm, https://www.tme.eu/Document/fed8daf4b36baf062ffeee5d975821f7/CNY64ABST.pdf, Alternate KiCAD Library -CNY 65 SMD high isolation optocoupler isolator -0 -4 -4 -PCM_Optocoupler_AKL -Vishay_CNY66 -High isolation optocoupler package, 20.4x9.6mm, pitch 17.8x7.62mm, https://www.tme.eu/Document/671d249c87ebde8a1be8eadfd7eb3719/cny64.pdf, Alternate KiCAD Library -CNY 66 high isolation optocoupler isolator -0 -4 -4 -PCM_Package_CSP_AKL -Analog_LFCSP-8-1EP_3x3mm_P0.5mm_EP1.53x1.85mm -LFCSP, exposed pad, Analog Devices (http://www.analog.com/media/en/technical-documentation/data-sheets/ADL5542.pdf), Alternate KiCAD Library -LFCSP 8 0.5 -0 -14 -5 -PCM_Package_CSP_AKL -LFCSP-8-1EP_3x2mm_P0.5mm_EP1.6x1.65mm -LFCSP 8pin Pitch 0.5mm, http://www.analog.com/media/en/package-pcb-resources/package/57080735642908cp_8_4.pdf, Alternate KiCAD Library -LFCSP 8pin thermal pad 3x2mm Pitch 0.5mm -0 -10 -9 -PCM_Package_CSP_AKL -LFCSP-8-1EP_3x3mm_P0.5mm_EP1.45x1.74mm -LFCSP, 8 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-8/CP_8_13.pdf), Alternate KiCAD Library -LFCSP DFN_QFN -0 -13 -9 -PCM_Package_CSP_AKL -LFCSP-8_2x2mm_P0.5mm -LFCSP 8pin Pitch 0.5mm, http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_8_6.pdf, Alternate KiCAD Library -LFCSP 8pin 2x2mm Pitch 0.5mm -0 -8 -8 -PCM_Package_CSP_AKL -LFCSP-16-1EP_3x3mm_P0.5mm_EP1.3x1.3mm -LFCSP, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-16/CP_16_21.pdf), Alternate KiCAD Library -LFCSP NoLead -0 -21 -17 -PCM_Package_CSP_AKL -LFCSP-16-1EP_3x3mm_P0.5mm_EP1.3x1.3mm_ThermalVias -LFCSP, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-16/CP_16_21.pdf), Alternate KiCAD Library -LFCSP NoLead -0 -26 -17 -PCM_Package_CSP_AKL -LFCSP-16-1EP_3x3mm_P0.5mm_EP1.6x1.6mm -LFCSP, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-16/CP_16_22.pdf), Alternate KiCAD Library -LFCSP NoLead -0 -21 -17 -PCM_Package_CSP_AKL -LFCSP-16-1EP_3x3mm_P0.5mm_EP1.6x1.6mm_ThermalVias -LFCSP, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-16/CP_16_22.pdf), Alternate KiCAD Library -LFCSP NoLead -0 -26 -17 -PCM_Package_CSP_AKL -LFCSP-16-1EP_3x3mm_P0.5mm_EP1.7x1.7mm -LFCSP, 16 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/HMC7992.pdf), Alternate KiCAD Library -LFCSP NoLead -0 -21 -17 -PCM_Package_CSP_AKL -LFCSP-16-1EP_3x3mm_P0.5mm_EP1.7x1.7mm_ThermalVias -LFCSP, 16 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/HMC7992.pdf), Alternate KiCAD Library -LFCSP NoLead -0 -26 -17 -PCM_Package_CSP_AKL -LFCSP-16-1EP_3x3mm_P0.5mm_EP1.854x1.854mm -16-Lead Lead Frame Chip Scale Package, 3x3mm, 0.5mm pitch, 1.854mm thermal pad (CP-16-22, http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_16_22.pdf), Alternate KiCAD Library -LFCSP 16 0.5 -0 -21 -17 -PCM_Package_CSP_AKL -LFCSP-16-1EP_4x4mm_P0.65mm_EP2.1x2.1mm -LFCSP, 16 pin, 4x4mm, 2.1mm sq pad (http://www.analog.com/media/en/technical-documentation/data-sheets/ADG633.pdf), Alternate KiCAD Library -LFCSP 16 0.65 -0 -21 -17 -PCM_Package_CSP_AKL -LFCSP-16-1EP_4x4mm_P0.65mm_EP2.4x2.4mm -LFCSP, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-16/cp-16-40.pdf), Alternate KiCAD Library -LFCSP NoLead -0 -21 -17 -PCM_Package_CSP_AKL -LFCSP-16-1EP_4x4mm_P0.65mm_EP2.4x2.4mm_ThermalVias -LFCSP, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-16/cp-16-40.pdf), Alternate KiCAD Library -LFCSP NoLead -0 -31 -17 -PCM_Package_CSP_AKL -LFCSP-20-1EP_4x4mm_P0.5mm_EP2.1x2.1mm -20-Lead Frame Chip Scale Package - 4x4x0.9 mm Body [LFCSP], (see http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_20_6.pdf), Alternate KiCAD Library -LFCSP 0.5 -0 -25 -21 -PCM_Package_CSP_AKL -LFCSP-20-1EP_4x4mm_P0.5mm_EP2.5x2.5mm -LFCSP, 20 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/AD7682_7689.pdf), Alternate KiCAD Library -LFCSP DFN_QFN -0 -25 -21 -PCM_Package_CSP_AKL -LFCSP-20-1EP_4x4mm_P0.5mm_EP2.5x2.5mm_ThermalVias -LFCSP, 20 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/AD7682_7689.pdf), Alternate KiCAD Library -LFCSP DFN_QFN -0 -35 -21 -PCM_Package_CSP_AKL -LFCSP-20-1EP_4x4mm_P0.5mm_EP2.6x2.6mm -LFCSP, 20 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-20/CP_20_8.pdf), Alternate KiCAD Library -LFCSP NoLead -0 -25 -21 -PCM_Package_CSP_AKL -LFCSP-20-1EP_4x4mm_P0.5mm_EP2.6x2.6mm_ThermalVias -LFCSP, 20 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-20/CP_20_8.pdf), Alternate KiCAD Library -LFCSP NoLead -0 -35 -21 -PCM_Package_CSP_AKL -LFCSP-24-1EP_4x4mm_P0.5mm_EP2.3x2.3mm -LFCSP, 24 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_24_14.pdf), Alternate KiCAD Library -LFCSP NoLead -0 -29 -25 -PCM_Package_CSP_AKL -LFCSP-24-1EP_4x4mm_P0.5mm_EP2.3x2.3mm_ThermalVias -LFCSP, 24 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_24_14.pdf), Alternate KiCAD Library -LFCSP NoLead -0 -39 -25 -PCM_Package_CSP_AKL -LFCSP-24-1EP_4x4mm_P0.5mm_EP2.5x2.5mm -LFCSP, 24 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_24_7.pdf), Alternate KiCAD Library -LFCSP NoLead -0 -29 -25 -PCM_Package_CSP_AKL -LFCSP-24-1EP_4x4mm_P0.5mm_EP2.5x2.5mm_ThermalVias -LFCSP, 24 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_24_7.pdf), Alternate KiCAD Library -LFCSP NoLead -0 -39 -25 -PCM_Package_CSP_AKL -LFCSP-28-1EP_5x5mm_P0.5mm_EP3.14x3.14mm -LFCSP, 28 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-28/CP_28_10.pdf), Alternate KiCAD Library -LFCSP NoLead -0 -33 -29 -PCM_Package_CSP_AKL -LFCSP-28-1EP_5x5mm_P0.5mm_EP3.14x3.14mm_ThermalVias -LFCSP, 28 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-28/CP_28_10.pdf), Alternate KiCAD Library -LFCSP NoLead -0 -43 -29 -PCM_Package_CSP_AKL -LFCSP-32-1EP_5x5mm_P0.5mm_EP3.1x3.1mm -LFCSP, 32 Pin (https://www.analog.com/media/en/package-pcb-resources/package/414143737956480539664569cp_32_2.pdf), Alternate KiCAD Library -LFCSP NoLead -0 -37 -33 -PCM_Package_CSP_AKL -LFCSP-32-1EP_5x5mm_P0.5mm_EP3.1x3.1mm_ThermalVias -LFCSP, 32 Pin (https://www.analog.com/media/en/package-pcb-resources/package/414143737956480539664569cp_32_2.pdf), Alternate KiCAD Library -LFCSP NoLead -0 -59 -33 -PCM_Package_CSP_AKL -LFCSP-32-1EP_5x5mm_P0.5mm_EP3.25x3.25mm -32-Lead Frame Chip Scale Package LFCSP (5mm x 5mm); (see http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-32/CP_32_27.pdf, Alternate KiCAD Library -LFCSP 0.5 -0 -37 -33 -PCM_Package_CSP_AKL -LFCSP-48-1EP_7x7mm_P0.5mm_EP4.1x4.1mm -LFCSP, 48 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_48_5.pdf), Alternate KiCAD Library -LFCSP NoLead -0 -58 -49 -PCM_Package_CSP_AKL -LFCSP-48-1EP_7x7mm_P0.5mm_EP4.1x4.1mm_ThermalVias -LFCSP, 48 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_48_5.pdf), Alternate KiCAD Library -LFCSP NoLead -0 -75 -49 -PCM_Package_CSP_AKL -LFCSP-64-1EP_9x9mm_P0.5mm_EP5.21x5.21mm -LFCSP, 64 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_64_7.pdf), Alternate KiCAD Library -LFCSP NoLead -0 -69 -65 -PCM_Package_CSP_AKL -LFCSP-64-1EP_9x9mm_P0.5mm_EP5.21x5.21mm_ThermalVias -LFCSP, 64 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_64_7.pdf), Alternate KiCAD Library -LFCSP NoLead -0 -86 -65 -PCM_Package_CSP_AKL -LFCSP-72-1EP_10x10mm_P0.5mm_EP5.3x5.3mm -LFCSP, 72 Pin (http://www.analog.com/media/en/technical-documentation/data-sheets/ADAU1452_1451_1450.pdf), Alternate KiCAD Library -LFCSP NoLead -0 -82 -73 -PCM_Package_CSP_AKL -LFCSP-72-1EP_10x10mm_P0.5mm_EP5.3x5.3mm_ThermalVias -LFCSP, 72 Pin (http://www.analog.com/media/en/technical-documentation/data-sheets/ADAU1452_1451_1450.pdf), Alternate KiCAD Library -LFCSP NoLead -0 -99 -73 -PCM_Package_CSP_AKL -LFCSP-72-1EP_10x10mm_P0.5mm_EP6.15x6.15mm -72-Lead Frame Chip Scale Package - 10x10x0.9 mm Body [LFCSP]; (see https://www.intersil.com/content/dam/Intersil/documents/l72_/l72.10x10c.pdf), Alternate KiCAD Library -LFCSP 0.5 -0 -77 -73 -PCM_Package_CSP_AKL -LFCSP-VD-8-1EP_3x3mm_P0.5mm_EP1.89x1.6mm -LFCSP VD, 8 pin, exposed pad, 4x4mm body, pitch 0.5mm (https://www.tme.eu/Document/6928e194772bf23c3fafecf86c19b356/AD8139ARDZ-Analog-Devices.pdf), Alternate KiCAD Library -LFCSP 0.5 -0 -13 -9 -PCM_Package_CSP_AKL -LFCSP-VQ-16_4x4mm_P0.65mm -LFCSP VQ, 24 pin, exposed pad, 4x4mm body, pitch 0.5mm (http://www.analog.com/media/en/package-pcb-resources/package/56702234806764cp_24_3.pdf, http://www.analog.com/media/en/technical-documentation/data-sheets/ADL5801.pdf), Alternate KiCAD Library -LFCSP 0.5 -0 -16 -16 -PCM_Package_CSP_AKL -LFCSP-VQ-24-1EP_4x4mm_P0.5mm_EP2.642x2.642mm -LFCSP VQ, 24 pin, exposed pad, 4x4mm body, pitch 0.5mm (http://www.analog.com/media/en/package-pcb-resources/package/56702234806764cp_24_3.pdf, http://www.analog.com/media/en/technical-documentation/data-sheets/ADL5801.pdf), Alternate KiCAD Library -LFCSP 0.5 -0 -29 -25 -PCM_Package_CSP_AKL -LFCSP-VQ-48-1EP_7x7mm_P0.5mm -LFCSP VQ, 48 pin, exposed pad, 7x7mm body (http://www.analog.com/media/en/technical-documentation/data-sheets/AD7951.pdf, http://www.analog.com/en/design-center/packaging-quality-symbols-footprints/symbols-and-footprints/AD7951.html), Alternate KiCAD Library -LFCSP 48 -0 -58 -49 -PCM_Package_CSP_AKL -LFCSP-WD-8-1EP_3x3mm_P0.65mm_EP1.6x2.44mm -LFCSP-WD, 8 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/CP_8_19.pdf), Alternate KiCAD Library -LFCSP-WD NoLead -0 -15 -9 -PCM_Package_CSP_AKL -LFCSP-WD-8-1EP_3x3mm_P0.65mm_EP1.6x2.44mm_ThermalVias -LFCSP-WD, 8 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/CP_8_19.pdf), Alternate KiCAD Library -LFCSP-WD NoLead -0 -22 -9 -PCM_Package_CSP_AKL -LFCSP-WD-10-1EP_3x3mm_P0.5mm_EP1.64x2.38mm -LFCSP-WD, 10 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-10/CP_10_9.pdf), Alternate KiCAD Library -LFCSP-WD NoLead -0 -17 -11 -PCM_Package_CSP_AKL -LFCSP-WD-10-1EP_3x3mm_P0.5mm_EP1.64x2.38mm_ThermalVias -LFCSP-WD, 10 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-10/CP_10_9.pdf), Alternate KiCAD Library -LFCSP-WD NoLead -0 -24 -11 -PCM_Package_CSP_AKL -ST_WLCSP-25_Die425 -WLCSP-25, 5x5 raster, 2.097x2.493mm package, pitch 0.4mm; see section 7.6 of http://www.st.com/resource/en/datasheet/stm32l031f6.pdf, Alternate KiCAD Library -BGA 25 0.4 -0 -25 -25 -PCM_Package_CSP_AKL -ST_WLCSP-25_Die444 -WLCSP-25, 5x5 raster, 2.423x2.325mm package, pitch 0.4mm; see section 7.5 of http://www.st.com/resource/en/datasheet/stm32f031k6.pdf, Alternate KiCAD Library -BGA 25 0.4 -0 -25 -25 -PCM_Package_CSP_AKL -ST_WLCSP-25_Die457 -WLCSP-25, 5x5 raster, 2.133x2.070mm package, pitch 0.4mm; see section 7.3 of http://www.st.com/resource/en/datasheet/stm32l011k3.pdf, Alternate KiCAD Library -BGA 25 0.4 -0 -25 -25 -PCM_Package_CSP_AKL -ST_WLCSP-36_Die417 -WLCSP-36, 6x6 raster, 2.61x2.88mm package, pitch 0.4mm; see section 7.4 of http://www.st.com/resource/en/datasheet/stm32l052t8.pdf, Alternate KiCAD Library -BGA 36 0.4 -0 -36 -36 -PCM_Package_CSP_AKL -ST_WLCSP-36_Die440 -WLCSP-36, 6x6 raster, 2.605x2.703mm package, pitch 0.4mm; see section 7.5 of http://www.st.com/resource/en/datasheet/stm32f051t8.pdf, Alternate KiCAD Library -BGA 36 0.4 -0 -36 -36 -PCM_Package_CSP_AKL -ST_WLCSP-36_Die445 -WLCSP-36, 6x6 raster, 2.605x2.703mm package, pitch 0.4mm; see section 7.3 of http://www.st.com/resource/en/datasheet/stm32f042k6.pdf, Alternate KiCAD Library -BGA 36 0.4 -0 -36 -36 -PCM_Package_CSP_AKL -ST_WLCSP-36_Die458 -WLCSP-36, 6x6 raster, 2.553x2.579mm package, pitch 0.4mm; see section 7.1 of http://www.st.com/resource/en/datasheet/stm32f410t8.pdf, Alternate KiCAD Library -BGA 36 0.4 -0 -36 -36 -PCM_Package_CSP_AKL -ST_WLCSP-49_Die423 -WLCSP-49, 7x7 raster, 2.965x2.965mm package, pitch 0.4mm; see section 7.1 of http://www.st.com/resource/en/datasheet/stm32f401vc.pdf, Alternate KiCAD Library -BGA 49 0.4 -0 -49 -49 -PCM_Package_CSP_AKL -ST_WLCSP-49_Die431 -WLCSP-49, 7x7 raster, 2.999x3.185mm package, pitch 0.4mm; see section 7.1 of http://www.st.com/resource/en/datasheet/stm32f411vc.pdf, Alternate KiCAD Library -BGA 49 0.4 -0 -49 -49 -PCM_Package_CSP_AKL -ST_WLCSP-49_Die433 -WLCSP-49, 7x7 raster, 3.029x3.029mm package, pitch 0.4mm; see section 7.1.1 of http://www.st.com/resource/en/datasheet/stm32f401ce.pdf, Alternate KiCAD Library -BGA 49 0.4 -0 -49 -49 -PCM_Package_CSP_AKL -ST_WLCSP-49_Die435 -WLCSP-49, 7x7 raster, 3.141x3.127mm package, pitch 0.4mm; see section 7.6 of http://www.st.com/resource/en/datasheet/DM00257211.pdf, Alternate KiCAD Library -BGA 49 0.4 -0 -49 -49 -PCM_Package_CSP_AKL -ST_WLCSP-49_Die438 -WLCSP-49, 7x7 raster, 3.89x3.74mm package, pitch 0.5mm; see section 7.5 of http://www.st.com/resource/en/datasheet/stm32f303r8.pdf, Alternate KiCAD Library -BGA 49 0.5 -0 -49 -49 -PCM_Package_CSP_AKL -ST_WLCSP-49_Die439 -WLCSP-49, 7x7 raster, 3.417x3.151mm package, pitch 0.4mm; see section 7.1 of http://www.st.com/resource/en/datasheet/stm32f301r8.pdf, Alternate KiCAD Library -BGA 49 0.4 -0 -49 -49 -PCM_Package_CSP_AKL -ST_WLCSP-49_Die447 -WLCSP-49, 7x7 raster, 3.294x3.258mm package, pitch 0.4mm; see section 7.6 of http://www.st.com/resource/en/datasheet/stm32l072kz.pdf, Alternate KiCAD Library -BGA 49 0.4 -0 -49 -49 -PCM_Package_CSP_AKL -ST_WLCSP-49_Die448 -WLCSP-49, 7x7 raster, 3.277x3.109mm package, pitch 0.4mm; see section 7.4 of http://www.st.com/resource/en/datasheet/stm32f071v8.pdf, Alternate KiCAD Library -BGA 49 0.4 -0 -49 -49 -PCM_Package_CSP_AKL -ST_WLCSP-63_Die427 -WLCSP-63, 7x9 raster, 3.228x4.164mm package, pitch 0.4mm; see section 7.6 of http://www.st.com/resource/en/datasheet/stm32l151cc.pdf, Alternate KiCAD Library -BGA 63 0.4 -0 -63 -63 -PCM_Package_CSP_AKL -ST_WLCSP-64_Die414 -WLCSP-64, 8x8 raster, 4.466x4.395mm package, pitch 0.5mm; see section 6.3 of http://www.st.com/resource/en/datasheet/stm32f103ze.pdf, Alternate KiCAD Library -BGA 64 0.5 -0 -64 -64 -PCM_Package_CSP_AKL -ST_WLCSP-64_Die427 -WLCSP-64, 8x8 raster, 4.539x4.911mm package, pitch 0.4mm; see section 7.5 of http://www.st.com/resource/en/datasheet/stm32l152zc.pdf, Alternate KiCAD Library -BGA 64 0.4 -0 -64 -64 -PCM_Package_CSP_AKL -ST_WLCSP-64_Die435 -WLCSP-64, 8x8 raster, 3.141x3.127mm package, pitch 0.35mm; see section 7.5 of http://www.st.com/resource/en/datasheet/DM00257211.pdf, Alternate KiCAD Library -BGA 64 0.35 -0 -64 -64 -PCM_Package_CSP_AKL -ST_WLCSP-64_Die436 -WLCSP-64, 8x8 raster, 4.539x4.911mm package, pitch 0.4mm; see section 7.5 of http://www.st.com/resource/en/datasheet/stm32l152zd.pdf, Alternate KiCAD Library -BGA 64 0.4 -0 -64 -64 -PCM_Package_CSP_AKL -ST_WLCSP-64_Die441 -WLCSP-64, 8x8 raster, 3.623x3.651mm package, pitch 0.4mm; see section 7.1 of http://www.st.com/resource/en/datasheet/DM00213872.pdf, Alternate KiCAD Library -BGA 64 0.4 -0 -64 -64 -PCM_Package_CSP_AKL -ST_WLCSP-64_Die442 -WLCSP-64, 8x8 raster, 3.347x3.585mm package, pitch 0.4mm; see section 7.4 of http://www.st.com/resource/en/datasheet/stm32f091vb.pdf, Alternate KiCAD Library -BGA 64 0.4 -0 -64 -64 -PCM_Package_CSP_AKL -ST_WLCSP-64_Die462 -WLCSP-64, 8x8 raster, 3.357x3.657mm package, pitch 0.4mm; see section 7.5 of http://www.st.com/resource/en/datasheet/DM00340475.pdf, Alternate KiCAD Library -BGA 64 0.4 -0 -64 -64 -PCM_Package_CSP_AKL -ST_WLCSP-66_Die411 -WLCSP-66, 9x9 raster, 3.639x3.971mm package, pitch 0.4mm; see section 7.2 of http://www.st.com/resource/en/datasheet/stm32f207vg.pdf, Alternate KiCAD Library -BGA 66 0.4 -0 -66 -66 -PCM_Package_CSP_AKL -ST_WLCSP-66_Die432 -WLCSP-66, 8x9 raster, 3.767x4.229mm package, pitch 0.4mm; see section 7.2 of http://www.st.com/resource/en/datasheet/stm32f378vc.pdf, Alternate KiCAD Library -BGA 66 0.4 -0 -66 -66 -PCM_Package_CSP_AKL -ST_WLCSP-72_Die415 -WLCSP-72, 9x9 raster, 4.4084x3.7594mm package, pitch 0.4mm; see section 7.5 of http://www.st.com/resource/en/datasheet/stm32l476me.pdf, Alternate KiCAD Library -BGA 72 0.4 -0 -72 -72 -PCM_Package_CSP_AKL -ST_WLCSP-81_Die415 -WLCSP-81, 9x9 raster, 4.4084x3.7594mm package, pitch 0.4mm; see section 7.4 of http://www.st.com/resource/en/datasheet/stm32l476me.pdf, Alternate KiCAD Library -BGA 81 0.4 -0 -81 -81 -PCM_Package_CSP_AKL -ST_WLCSP-81_Die421 -WLCSP-81, 9x9 raster, 3.693x3.815mm package, pitch 0.4mm; see section 7.6 of http://www.st.com/resource/en/datasheet/stm32f446ze.pdf, Alternate KiCAD Library -BGA 81 0.4 -0 -81 -81 -PCM_Package_CSP_AKL -ST_WLCSP-81_Die463 -WLCSP-81, 9x9 raster, 4.039x3.951mm package, pitch 0.4mm; see section 7.1 of http://www.st.com/resource/en/datasheet/DM00282249.pdf, Alternate KiCAD Library -BGA 81 0.4 -0 -81 -81 -PCM_Package_CSP_AKL -ST_WLCSP-90_Die413 -WLCSP-90, 10x9 raster, 4.223x3.969mm package, pitch 0.4mm; see section 6.1 of http://www.st.com/resource/en/datasheet/stm32f405og.pdf, Alternate KiCAD Library -BGA 90 0.4 -0 -90 -90 -PCM_Package_CSP_AKL -ST_WLCSP-100_Die422 -WLCSP-100, 10x10 raster, 4.201x4.663mm package, pitch 0.4mm; see section 7.4 of http://www.st.com/resource/en/datasheet/stm32f302vc.pdf, Alternate KiCAD Library -BGA 100 0.4 -0 -100 -100 -PCM_Package_CSP_AKL -ST_WLCSP-100_Die446 -WLCSP-100, 10x10 raster, 4.775x5.041mm package, pitch 0.4mm; see section 7.5 of http://www.st.com/resource/en/datasheet/stm32f303zd.pdf, Alternate KiCAD Library -BGA 100 0.4 -0 -100 -100 -PCM_Package_CSP_AKL -ST_WLCSP-100_Die452 -WLCSP-100, 10x10 raster, 4.201x4.663mm package, pitch 0.4mm; see section 7.7 of http://www.st.com/resource/en/datasheet/DM00330506.pdf, Alternate KiCAD Library -BGA 100 0.4 -0 -100 -100 -PCM_Package_CSP_AKL -ST_WLCSP-100_Die461 -WLCSP-100, 10x10 raster, 4.618x4.142mm package, pitch 0.4mm; see section 7.5 of http://www.st.com/resource/en/datasheet/DM00284211.pdf, Alternate KiCAD Library -BGA 100 0.4 -0 -100 -100 -PCM_Package_CSP_AKL -ST_WLCSP-104_Die437 -WLCSP-104, 9x12 raster, 4.095x5.094mm package, pitch 0.4mm; see section 7.5 of http://www.st.com/resource/en/datasheet/stm32l152ze.pdf, Alternate KiCAD Library -BGA 104 0.4 -0 -104 -104 -PCM_Package_CSP_AKL -ST_WLCSP-143_Die419 -WLCSP-143, 11x13 raster, 4.521x5.547mm package, pitch 0.4mm; see section 7.2 of http://www.st.com/resource/en/datasheet/stm32f429ng.pdf, Alternate KiCAD Library -BGA 143 0.4 -0 -143 -143 -PCM_Package_CSP_AKL -ST_WLCSP-143_Die449 -WLCSP-143, 11x13 raster, 4.539x5.849mm package, pitch 0.4mm; see section 6.3 of http://www.st.com/resource/en/datasheet/stm32f746zg.pdf, Alternate KiCAD Library -BGA 143 0.4 -0 -143 -143 -PCM_Package_CSP_AKL -ST_WLCSP-144_Die470 -WLCSP-144, 12x12 raster, 5.24x5.24mm package, pitch 0.4mm; see section 7.4 of http://www.st.com/resource/en/datasheet/DM00366448.pdf, Alternate KiCAD Library -BGA 144 0.4 -0 -144 -144 -PCM_Package_CSP_AKL -ST_WLCSP-168_Die434 -WLCSP-168, 12x14 raster, 4.891x5.692mm package, pitch 0.4mm; see section 6.3 of http://www.st.com/resource/en/datasheet/stm32f469ni.pdf, Alternate KiCAD Library -BGA 168 0.4 -0 -168 -168 -PCM_Package_CSP_AKL -ST_WLCSP-180_Die451 -WLCSP-180, 13x14 raster, 5.537x6.095mm package, pitch 0.4mm; see section 6.6 of http://www.st.com/resource/en/datasheet/DM00273119.pdf, Alternate KiCAD Library -BGA 180 0.4 -0 -180 -180 -PCM_Package_CSP_AKL -WLCSP-5_1.33x0.9mm_P0.5mm -5pin Pitch 0.5mm, See: https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/wlcspcb/cb_5_1.pdf, Alternate KiCAD Library -5pin Pitch 0.5mm WLCSP CB-5-1 -0 -5 -5 -PCM_Package_CSP_AKL -WLCSP-6_1.4x1.0mm_P0.4mm -6pin Pitch 0.4mm, Alternate KiCAD Library -6pin Pitch 0.4mm WLCSP -0 -6 -6 -PCM_Package_CSP_AKL -WLCSP-8_1.58x1.63x0.35mm_Layout3x5_P0.35x0.4mm_Ball0.25mm_Pad0.25mm_NSMD -WLCSP/XFBGA 8-pin package, staggered pins, http://www.adestotech.com/wp-content/uploads/DS-AT25DF041B_040.pdf, Alternate KiCAD Library -WLCSP WLCSP-8 XFBGA XFBGA-8 CSP BGA Chip-Scale Glass-Top -0 -8 -8 -PCM_Package_CSP_AKL -WLCSP-8_1.825x1.48mm_P0.5mm -8pin Pitch 0.5mm, See: https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/wlcspcb/CB_8_1.pdf, Alternate KiCAD Library -8pin Pitch 0.5mm WLCSP CB-8-1 -0 -8 -8 -PCM_Package_CSP_AKL -WLCSP-12_1.56x1.56mm_P0.4mm -WLCSP 12 1.56x1.56 https://ae-bst.resource.bosch.com/media/_tech/media/datasheets/BST-BMM150-DS001-01.pdf, Alternate KiCAD Library -BMM150 WLCSP -0 -12 -12 -PCM_Package_CSP_AKL -WLCSP-12_1.403x1.555mm_P0.4mm_Stagger -WLCSP-12, 6x4 raster staggered array, 1.403x1.555mm package, pitch 0.4mm; http://ww1.microchip.com/downloads/en/devicedoc/atmel-8235-8-bit-avr-microcontroller-attiny20_datasheet.pdf#page=208, Alternate KiCAD Library -CSP 12 0.2x0.346333 -0 -12 -12 -PCM_Package_CSP_AKL -WLCSP-16_4x4_B2.17x2.32mm_P0.5mm -WLCSP-16, http://www.nxp.com/documents/data_sheet/LPC1102_1104.pdf, http://www.nxp.com/assets/documents/data/en/application-notes/AN3846.pdf, Alternate KiCAD Library -WLCSP-16 NXP -0 -16 -16 -PCM_Package_CSP_AKL -WLCSP-20_1.934x2.434mm_Layout4x5_P0.4mm -WLCSP-20, 4x5 raster, 1.934x2.434mm package, pitch 0.4mm; see section 36.2.3 of http://ww1.microchip.com/downloads/en/DeviceDoc/Atmel-42363-SAM-D11_Datasheet.pdf, Alternate KiCAD Library -BGA 20 0.4 -0 -20 -20 -PCM_Package_CSP_AKL -WLCSP-20_1.994x1.94mm_Layout4x5_P0.4mm -WLCSP-20, https://www.nxp.com/docs/en/package-information/98ASA00539D.pdf, Alternate KiCAD Library -WLCSP-20 -0 -20 -20 -PCM_Package_CSP_AKL -WLCSP-20_1.994x1.609mm_Layout5x4_P0.4mm -WLCSP-20, https://www.nxp.com/docs/en/package-information/98ASA00676D.pdf, Alternate KiCAD Library -WLCSP-20 -0 -20 -20 -PCM_Package_CSP_AKL -WLCSP-36_2.82x2.67mm_Layout6x6_P0.4mm -WLCSP-36, https://www.nxp.com/docs/en/package-information/98ASA00949D.pdf, Alternate KiCAD Library -WLCSP-36 -0 -36 -36 -PCM_Package_CSP_AKL -WLCSP-36_2.374x2.459mm_Layout6x6_P0.35mm -WLCSP-36, https://www.nxp.com/docs/en/package-information/98ASA00604D.pdf, Alternate KiCAD Library -WLCSP-36 -0 -36 -36 -PCM_Package_CSP_AKL -WLCSP-56_3.170x3.444mm_Layout7x8_P0.4mm -WLCSP-56, 7x8 raster, 3.170x3.444mm package, pitch 0.4mm; see section 48.2.4 of http://ww1.microchip.com/downloads/en/DeviceDoc/DS60001479B.pdf, Alternate KiCAD Library -BGA 56 0.4 -0 -56 -56 -PCM_Package_CSP_AKL -WLCSP-81_4.41x3.76mm_P0.4mm -WLCSP-81, 9x9, 0.4mm Pitch, http://www.st.com/content/ccc/resource/technical/document/technical_note/92/30/3c/a1/4c/bb/43/6f/DM00103228.pdf/files/DM00103228.pdf/jcr:content/translations/en.DM00103228.pdf, Alternate KiCAD Library -WLCSP ST -0 -81 -81 -PCM_Package_CSP_AKL -pSemi_CSP-16_1.64x2.04mm_P0.4mm -pSemi CSP-16 1.64x2.04x0.285mm (http://www.psemi.com/pdf/datasheets/pe29101ds.pdf, http://www.psemi.com/pdf/app_notes/an77.pdf), Alternate KiCAD Library -psemi csp 16 -0 -16 -16 -PCM_Package_CSP_AKL -pSemi_CSP-16_1.64x2.04mm_P0.4mm_Pad0.18mm -pSemi CSP-16 1.64x2.04x0.285mm (http://www.psemi.com/pdf/datasheets/pe29101ds.pdf, http://www.psemi.com/pdf/app_notes/an77.pdf), Alternate KiCAD Library -psemi csp 16 -0 -16 -16 -PCM_Package_DFN_QFN_AKL -AMS_QFN-4-1EP_2x2mm_P0.95mm_EP0.7x1.6mm -UFD Package, 4-Lead Plastic QFN (2mm x 2mm), http://ams.com/eng/content/download/950231/2267959/483138, Alternate KiCad Library -QFN 0.95 -0 -6 -5 -PCM_Package_DFN_QFN_AKL -Cypress_QFN-56-1EP_8x8mm_P0.5mm_EP6.22x6.22mm_ThermalVias -56-Lead Plastic Quad Flat, No Lead Package (ML) - 8x8x0.9 mm Body [QFN] (see datasheet at http://www.cypress.com/file/138911/download and app note at http://www.cypress.com/file/140006/download), Alternate KiCad Library -QFN 0.5 -0 -87 -57 -PCM_Package_DFN_QFN_AKL -DFN-3-1EP-2x2mm_P0.5mm_EP1x1.35mm -DFN, 3 Pin (https://www.tme.eu/Document/2ef05ce476351bded9b9bb9750bc2061/670323fd.pdf), Alternate KiCad Library -DFN NoLead -0 -8 -4 -PCM_Package_DFN_QFN_AKL -DFN-4-1EP-2x2mm_P0.45mm_EP1x1.35mm -DFN, 4 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/600345fd.pdf), Alternate KiCad Library -DFN NoLead -0 -9 -5 -PCM_Package_DFN_QFN_AKL -DFN-6-1EP_1.2x1.2mm_P0.4mm_EP0.3x0.94mm_PullBack -DFN, 6 Pin (http://www.onsemi.com/pub/Collateral/NCP133-D.PDF), Alternate KiCad Library -DFN NoLead -0 -9 -7 -PCM_Package_DFN_QFN_AKL -DFN-6-1EP_1.6x1.6mm_P0.5mm_EP0.6x1mm -QFN, 1.6x1.6mm, Pitch = 0.5mm, EP 0.6mm x 1mm , https://www.tme.eu/Document/be9ffa898e0327c32970bb8c31613110/AOZ8102DI-DTE.pdf, Alternate KiCad Library -DFN 6 1.6x1.6mm -0 -9 -7 -PCM_Package_DFN_QFN_AKL -DFN-6-1EP_2x1.8mm_P0.5mm_EP1.2x1.6mm -DFN, 6 Pin (https://www.diodes.com/assets/Package-Files/U-DFN2018-6.pdf), Alternate KiCad Library -DFN NoLead -0 -11 -7 -PCM_Package_DFN_QFN_AKL -DFN-6-1EP_2x2mm_P0.5mm_EP0.6x1.37mm -DFN, 6 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-dfn/05081703_C_DC6.pdf), Alternate KiCad Library -DFN NoLead -0 -9 -7 -PCM_Package_DFN_QFN_AKL -DFN-6-1EP_2x2mm_P0.5mm_EP0.61x1.42mm -DC6 Package; 6-Lead Plastic DFN (2mm x 2mm) (see Linear Technology DFN_6_05-08-1703.pdf), Alternate KiCad Library -DFN 0.5 -0 -9 -7 -PCM_Package_DFN_QFN_AKL -DFN-6-1EP_2x2mm_P0.65mm_EP1x1.6mm -6-Lead Plastic Dual Flat, No Lead Package (MA) - 2x2x0.9 mm Body [DFN] (see Microchip Packaging Specification 00000049BS.pdf), Alternate KiCad Library -DFN 0.65 -0 -9 -7 -PCM_Package_DFN_QFN_AKL -DFN-6-1EP_3x2mm_P0.5mm_EP1.65x1.35mm -DFN, 6 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-dfn/(DCB6)%20DFN%2005-08-1715%20Rev%20A.pdf), Alternate KiCad Library -DFN NoLead -0 -11 -7 -PCM_Package_DFN_QFN_AKL -DFN-6-1EP_3x3mm_P0.95mm_EP1.7x2.6mm -DFN6 3*3 MM, 0.95 PITCH; CASE 506AH-01 (see ON Semiconductor 506AH.PDF), Alternate KiCad Library -DFN 0.95 -0 -13 -7 -PCM_Package_DFN_QFN_AKL -DFN-6-1EP_3x3mm_P1mm_EP1.5x2.4mm -DFN, 6 Pin (https://www.silabs.com/documents/public/data-sheets/Si7020-A20.pdf), Alternate KiCad Library -DFN NoLead -0 -11 -7 -PCM_Package_DFN_QFN_AKL -DFN-6-2EP_2x2mm_P0.65mm_EP1.15x0.95mm_EP0.8x0.48mm -2x2mm DFN package, 2 Bottom pads, https://www.tme.eu/Document/f1fed6b3a8e9584a14fa0cad93f2419a/DMP2023UFDF.pdf -DFN 2x2 2mmx2mm DFN2020 -0 -9 -8 -PCM_Package_DFN_QFN_AKL -DFN-6_1.3x1.2mm_P0.4mm -6-Lead Plastic DFN (1.3mm x 1.2mm) , Alternate KiCad Library -DFN 0.4 -0 -6 -6 -PCM_Package_DFN_QFN_AKL -DFN-6_1.3x1.6mm_P0.4mm -QFN, 1.3x1.6mm, Pitch = 0.4mm, No EP, https://www.st.com/resource/en/datasheet/tsv991.pdf, Alternate KiCad Library -DFN 6 1.6x1.6mm -0 -6 -6 -PCM_Package_DFN_QFN_AKL -DFN-6_1.6x1.6mm_P0.5mm -QFN, 1.6x1.6mm, Pitch = 0.5mm, No EP, https://www.tme.eu/Document/9832bcd74d37095f4f40f4a839a83d37/AOZ8001DI-DTE.pdf, Alternate KiCad Library -DFN 6 1.6x1.6mm -0 -6 -6 -PCM_Package_DFN_QFN_AKL -DFN-8-1EP_2x2mm_P0.5mm_EP0.7x1.3mm -DFN, 8 Pin (https://www.onsemi.com/pub/Collateral/NUF4401MN-D.PDF#page=6), Alternate KiCad Library -DFN NoLead -0 -13 -9 -PCM_Package_DFN_QFN_AKL -DFN-8-1EP_2x2mm_P0.5mm_EP0.9x1.3mm -DFN, 8 Pin (https://www.onsemi.com/pub/Collateral/NB3N551-D.PDF#page=7), Alternate KiCad Library -DFN NoLead -0 -13 -9 -PCM_Package_DFN_QFN_AKL -DFN-8-1EP_2x2mm_P0.5mm_EP0.9x1.5mm -DFN, 8 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/Atmel-8127-AVR-8-bit-Microcontroller-ATtiny4-ATtiny5-ATtiny9-ATtiny10_Datasheet.pdf), Alternate KiCad Library -DFN NoLead -0 -13 -9 -PCM_Package_DFN_QFN_AKL -DFN-8-1EP_2x2mm_P0.5mm_EP1.05x1.75mm -DFN8 2x2, 0.5P; CASE 506CN (see ON Semiconductor 506CN.PDF), Alternate KiCad Library -DFN 0.5 -0 -11 -9 -PCM_Package_DFN_QFN_AKL -DFN-8-1EP_2x2mm_P0.45mm_EP0.64x1.38mm -DC8 Package 8-Lead Plastic DFN (2mm x 2mm) (see Linear Technology DFN_8_05-08-1719.pdf), Alternate KiCad Library -DFN 0.45 -0 -11 -9 -PCM_Package_DFN_QFN_AKL -DFN-8-1EP_2x3mm_P0.5mm_EP0.61x2.2mm -DDB Package; 8-Lead Plastic DFN (3mm x 2mm) (see Linear Technology DFN_8_05-08-1702.pdf), Alternate KiCad Library -DFN 0.5 -0 -12 -9 -PCM_Package_DFN_QFN_AKL -DFN-8-1EP_3x2mm_P0.5mm_EP1.3x1.5mm -8-Lead Plastic Dual Flat, No Lead Package (8MA2) - 2x3x0.6 mm Body [UDFN] (see Atmel-8815-SEEPROM-AT24CS01-02-Datasheet.pdf), Alternate KiCad Library -DFN 0.5 -0 -13 -9 -PCM_Package_DFN_QFN_AKL -DFN-8-1EP_3x2mm_P0.5mm_EP1.36x1.46mm -8-Lead Plastic Dual Flat, No Lead Package (8MA2) - 2x3x0.6 mm Body (http://ww1.microchip.com/downloads/en/DeviceDoc/20005010F.pdf), Alternate KiCad Library -DFN 0.5 -0 -13 -9 -PCM_Package_DFN_QFN_AKL -DFN-8-1EP_3x2mm_P0.5mm_EP1.75x1.45mm -8-Lead Plastic Dual Flat, No Lead Package (MC) - 2x3x0.9 mm Body [DFN] (see Microchip Packaging Specification 00000049BS.pdf), Alternate KiCad Library -DFN 0.5 -0 -13 -9 -PCM_Package_DFN_QFN_AKL -DFN-8-1EP_3x2mm_P0.45mm_EP1.66x1.36mm -DCB Package 8-Lead Plastic DFN (2mm x 3mm) (see Linear Technology DFN_8_05-08-1718.pdf), Alternate KiCad Library -DFN 0.45 -0 -13 -9 -PCM_Package_DFN_QFN_AKL -DFN-8-1EP_3x3mm_P0.5mm_EP1.2x2mm -DD Package; 8-Lead Plastic DFN (3mm x 3mm) (see https://www.ti.com/lit/ds/symlink/opa1612.pdf?ts=1640252453965&ref_url=https%253A%252F%252Fwww.google.com%252F), Alternate KiCad Library -DFN 0.5 -0 -13 -9 -PCM_Package_DFN_QFN_AKL -DFN-8-1EP_3x3mm_P0.5mm_EP1.7x1.7mm -DD Package; 8-Lead Plastic DFN (3mm x 3mm) (see Linear Technology DFN_8_05-08-1698.pdf), Alternate KiCad Library -DFN 0.5 -0 -13 -9 -PCM_Package_DFN_QFN_AKL -DFN-8-1EP_3x3mm_P0.5mm_EP1.45x2.4mm -DD Package; 8-Lead Plastic DFN (3mm x 3mm) (see https://www.ti.com/lit/ds/symlink/ina333.pdf?ts=1636192898771&ref_url=https%253A%252F%252Fwww.google.com%252F), Alternate KiCad Library -DFN 0.5 -0 -13 -9 -PCM_Package_DFN_QFN_AKL -DFN-8-1EP_3x3mm_P0.5mm_EP1.55x1.85mm -DD Package; 8-Lead Plastic DFN (3mm x 3mm), Alternate KiCad Library -DFN 0.5 -0 -13 -9 -PCM_Package_DFN_QFN_AKL -DFN-8-1EP_3x3mm_P0.5mm_EP1.66x2.38mm -DD Package; 8-Lead Plastic DFN (3mm x 3mm) (see Linear Technology DFN_8_05-08-1698.pdf), Alternate KiCad Library -DFN 0.5 -0 -13 -9 -PCM_Package_DFN_QFN_AKL -DFN-8-1EP_3x3mm_P0.65mm_EP1.7x2.05mm -DFN, 8 Pin (http://www.ixysic.com/home/pdfs.nsf/www/IX4426-27-28.pdf/$file/IX4426-27-28.pdf), Alternate KiCad Library -DFN NoLead -0 -13 -9 -PCM_Package_DFN_QFN_AKL -DFN-8-1EP_3x3mm_P0.65mm_EP1.55x2.4mm -8-Lead Plastic Dual Flat, No Lead Package (MF) - 3x3x0.9 mm Body [DFN] (see Microchip Packaging Specification 00000049BS.pdf), Alternate KiCad Library -DFN 0.65 -0 -13 -9 -PCM_Package_DFN_QFN_AKL -DFN-8-1EP_4x4mm_P0.8mm_EP2.3x3.24mm -DFN, 8 Pin (https://www.st.com/resource/en/datasheet/ld1086.pdf#page=35), Alternate KiCad Library -DFN NoLead -0 -13 -9 -PCM_Package_DFN_QFN_AKL -DFN-8-1EP_4x4mm_P0.8mm_EP2.5x3.6mm -8-Lead Plastic Dual Flat, No Lead Package (MD) - 4x4x0.9 mm Body [DFN] (see Microchip Packaging Specification 00000049BS.pdf), Alternate KiCad Library -DFN 0.8 -0 -15 -9 -PCM_Package_DFN_QFN_AKL -DFN-8-1EP_4x4mm_P0.8mm_EP2.39x2.21mm -8-Lead Plastic Dual Flat, No Lead Package (MD) - 4x4x0.9 mm Body [DFN] (http://www.onsemi.com/pub/Collateral/NCP4308-D.PDF), Alternate KiCad Library -DFN 0.8 -0 -13 -9 -PCM_Package_DFN_QFN_AKL -DFN-8-1EP_6x5mm_P1.27mm_EP2x2mm -DD Package; 8-Lead Plastic DFN (6mm x 5mm) (see http://www.everspin.com/file/236/download), Alternate KiCad Library -dfn -0 -13 -9 -PCM_Package_DFN_QFN_AKL -DFN-8-1EP_6x5mm_P1.27mm_EP4x4mm -DD Package; 8-Lead Plastic DFN (6mm x 5mm) (see http://www.everspin.com/file/236/download), Alternate KiCad Library -dfn -0 -25 -9 -PCM_Package_DFN_QFN_AKL -DFN-8_2x2mm_P0.5mm -DFN8 2x2, 0.5P; No exposed pad - Ref http://pdfserv.maximintegrated.com/land_patterns/90-0349.PDF, Alternate KiCad Library -DFN 0.5 -0 -8 -8 -PCM_Package_DFN_QFN_AKL -DFN-10-1EP-2.6x2.6mm_P0.5_EP1.26x2.35mm -DFN, 10 Leads, 2.6mm x 2.6mm, with 1.26x2.35mm Pad, https://www.tme.eu/Document/5199d66f9e18e2fe144a476f52ca327b/AOZ8318DI-DTE.pdf, Alternate KiCAD Library -DFN 10 -0 -15 -11 -PCM_Package_DFN_QFN_AKL -DFN-10-1EP_2x3mm_P0.5mm_EP0.64x2.4mm -DDB Package; 10-Lead Plastic DFN (3mm x 2mm) (see Linear Technology DFN_10_05-08-1722.pdf), Alternate KiCad Library -DFN 0.5 -0 -13 -11 -PCM_Package_DFN_QFN_AKL -DFN-10-1EP_3x3mm_P0.5mm_EP1.7x2.5mm -DFN, 10 Pin (https://www.monolithicpower.com/pub/media/document/MPQ2483_r1.05.pdf), Alternate KiCad Library -DFN NoLead -0 -15 -11 -PCM_Package_DFN_QFN_AKL -DFN-10-1EP_3x3mm_P0.5mm_EP1.55x2.48mm -10-Lead Plastic Dual Flat, No Lead Package (MF) - 3x3x0.9 mm Body [DFN] (see Microchip Packaging Specification 00000049BS.pdf), Alternate KiCad Library -DFN 0.5 -0 -15 -11 -PCM_Package_DFN_QFN_AKL -DFN-10-1EP_3x3mm_P0.5mm_EP1.65x2.38mm -DFN, 10 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/3471fb.pdf#page=15), Alternate KiCad Library -DFN NoLead -0 -15 -11 -PCM_Package_DFN_QFN_AKL -DFN-10-1EP_3x3mm_P0.5mm_EP1.65x2.38mm_ThermalVias -DFN, 10 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/3471fb.pdf#page=15), Alternate KiCad Library -DFN NoLead -0 -22 -11 -PCM_Package_DFN_QFN_AKL -DFN-10-1EP_3x3mm_P0.5mm_EP1.75x2.7mm -10-Lead Plastic Dual Flat No-Lead Package, 3x3mm Body (see Atmel Appnote 8826), Alternate KiCad Library -DFN 0.5 -0 -15 -11 -PCM_Package_DFN_QFN_AKL -DFN-10_1EP_2x2mm_P0.4mm_EP0.9x1.5mm -10-Lead Plastic DFN (2mm x 2mm) 0.40mm pitch, 0.9x1.5mm exposed pad, Alternate KiCad Library -DFN 10 0.4mm -0 -13 -11 -PCM_Package_DFN_QFN_AKL -DFN-10_2x2mm_P0.4mm -10-Lead Plastic DFN (2mm x 2mm) 0.40mm pitch, Alternate KiCad Library -DFN 10 0.4mm -0 -10 -10 -PCM_Package_DFN_QFN_AKL -DFN-12-1EP_2x3mm_P0.45mm_EP0.64x2.4mm -DDB Package; 12-Lead Plastic DFN (3mm x 2mm) (see Linear Technology DFN_12_05-08-1723.pdf), Alternate KiCad Library -DFN 0.45 -0 -15 -13 -PCM_Package_DFN_QFN_AKL -DFN-12-1EP_3x3mm_P0.5mm_EP2.05x2.86mm -10-Lead Plastic Dual Flat, No Lead Package (MF) - 3x3x0.9 mm Body [DFN] (see Microchip Packaging Specification 00000049BS.pdf), Alternate KiCad Library -DFN 0.5 -0 -17 -13 -PCM_Package_DFN_QFN_AKL -DFN-12-1EP_3x3mm_P0.45mm_EP1.66x2.38mm -DD Package; 12-Lead Plastic DFN (3mm x 3mm) (see Linear Technology DFN_12_05-08-1725.pdf), Alternate KiCad Library -DFN 0.45 -0 -17 -13 -PCM_Package_DFN_QFN_AKL -DFN-12-1EP_3x4mm_P0.5mm_EP1.7x3.3mm -DE/UE Package; 12-Lead Plastic DFN (4mm x 3mm) (see Linear Technology DFN_12_05-08-1695.pdf), Alternate KiCad Library -DFN 0.5 -0 -21 -13 -PCM_Package_DFN_QFN_AKL -DFN-12-1EP_4x4mm_P0.5mm_EP2.66x3.38mm -DF Package; 12-Lead Plastic DFN (4mm x 4mm) (see Linear Technology 05081733_A_DF12.pdf), Alternate KiCad Library -DFN 0.5 -0 -21 -13 -PCM_Package_DFN_QFN_AKL -DFN-12-1EP_4x4mm_P0.65mm_EP2.64x3.54mm -DFN12, 4x4, 0.65P; CASE 506CE (see ON Semiconductor 506CE.PDF), Alternate KiCad Library -DFN 0.65 -0 -21 -13 -PCM_Package_DFN_QFN_AKL -DFN-14-1EP_3x3mm_P0.4mm_EP1.78x2.35mm -DD Package; 14-Lead Plastic DFN (3mm x 3mm) (http://pdfserv.maximintegrated.com/land_patterns/90-0063.PDF), Alternate KiCad Library -DFN 0.40 -0 -19 -15 -PCM_Package_DFN_QFN_AKL -DFN-14-1EP_3x4.5mm_P0.65mm_EP1.65x4.25mm -14-lead very thin plastic quad flat, 3.0x4.5mm size, 0.65mm pitch (http://ww1.microchip.com/downloads/en/DeviceDoc/14L_VDFN_4_5x3_0mm_JHA_C041198A.pdf), Alternate KiCad Library -VDFN DFN 0.65mm -0 -23 -15 -PCM_Package_DFN_QFN_AKL -DFN-14-1EP_3x4.5mm_P0.65mm_EP1.65x4.25mm_ThermalVias -14-lead very thin plastic quad flat, 3.0x4.5mm size, 0.65mm pitch (http://ww1.microchip.com/downloads/en/DeviceDoc/14L_VDFN_4_5x3_0mm_JHA_C041198A.pdf), Alternate KiCad Library -VDFN DFN 0.65mm -0 -34 -15 -PCM_Package_DFN_QFN_AKL -DFN-14-1EP_3x4mm_P0.5mm_EP1.7x3.3mm -DE Package; 14-Lead Plastic DFN (4mm x 3mm) (see Linear Technology DFN_14_05-08-1708.pdf), Alternate KiCad Library -DFN 0.5 -0 -23 -15 -PCM_Package_DFN_QFN_AKL -DFN-14-1EP_4x4mm_P0.5mm_EP2.86x3.6mm -DFN14, 4x4, 0.5P; CASE 506CM (see ON Semiconductor 506CM.PDF), Alternate KiCad Library -DFN 0.5 -0 -23 -15 -PCM_Package_DFN_QFN_AKL -DFN-16-1EP_3x4mm_P0.45mm_EP1.7x3.3mm -DE Package; 16-Lead Plastic DFN (4mm x 3mm) (see Linear Technology DFN_16_05-08-1732.pdf), Alternate KiCad Library -DFN 0.45 -0 -25 -17 -PCM_Package_DFN_QFN_AKL -DFN-16-1EP_3x5mm_P0.5mm_EP1.66x4.4mm -DHC Package; 16-Lead Plastic DFN (5mm x 3mm) (see Linear Technology DFN_16_05-08-1706.pdf), Alternate KiCad Library -DFN 0.5 -0 -27 -17 -PCM_Package_DFN_QFN_AKL -DFN-16-1EP_4x5mm_P0.5mm_EP2.44x4.34mm -DHD Package; 16-Lead Plastic DFN (5mm x 4mm) (see Linear Technology 05081707_A_DHD16.pdf), Alternate KiCad Library -DFN 0.5 -0 -25 -17 -PCM_Package_DFN_QFN_AKL -DFN-16-1EP_5x5mm_P0.5mm_EP3.46x4mm -DH Package; 16-Lead Plastic DFN (5mm x 5mm) (see Linear Technology DFN_16_05-08-1709.pdf), Alternate KiCad Library -DFN 0.5 -0 -26 -17 -PCM_Package_DFN_QFN_AKL -DFN-18-1EP_3x5mm_P0.5mm_EP1.66x4.4mm -DHC Package; 18-Lead Plastic DFN (5mm x 3mm) (see Linear Technology 05081955_0_DHC18.pdf), Alternate KiCad Library -DFN 0.5 -0 -29 -19 -PCM_Package_DFN_QFN_AKL -DFN-18-1EP_4x5mm_P0.5mm_EP2.44x4.34mm -DHD Package; 18-Lead Plastic DFN (5mm x 4mm) (see Linear Technology DFN_18_05-08-1778.pdf), Alternate KiCad Library -DFN 0.5 -0 -27 -19 -PCM_Package_DFN_QFN_AKL -DFN-20-1EP_5x6mm_P0.5mm_EP3.24x4.24mm -DFN20, 6x5, 0.5P; CASE 505AB (see ON Semiconductor 505AB.PDF), Alternate KiCad Library -DFN 0.5 -0 -33 -21 -PCM_Package_DFN_QFN_AKL -DFN-22-1EP_5x6mm_P0.5mm_EP3.14x4.3mm -DFN22 6*5*0.9 MM, 0.5 P; CASE 506AF\xe2\x88\x9201 (see ON Semiconductor 506AF.PDF), Alternate KiCad Library -DFN 0.5 -0 -35 -23 -PCM_Package_DFN_QFN_AKL -DFN-24-1EP_4x7mm_P0.5mm_EP2.64x6.44mm -DKD Package; 24-Lead Plastic DFN (7mm x 4mm) (see Linear Technology DFN_24_05-08-1864.pdf), Alternate KiCad Library -DFN 0.5 -0 -35 -25 -PCM_Package_DFN_QFN_AKL -DFN-32-1EP_4x7mm_P0.4mm_EP2.64x6.44mm -DKD Package; 32-Lead Plastic DFN (7mm x 4mm) (see Linear Technology DFN_32_05-08-1734.pdf), Alternate KiCad Library -DFN 0.4 -0 -43 -33 -PCM_Package_DFN_QFN_AKL -DFN-44-1EP_5x8.9mm_P0.4mm_EP3.7x8.4mm -DFN44 8.9x5, 0.4P; CASE 506BU-01 (see ON Semiconductor 506BU.PDF), Alternate KiCad Library -DFN 0.4 -0 -63 -45 -PCM_Package_DFN_QFN_AKL -DFN-S-8-1EP_6x5mm_P1.27mm -8-Lead Plastic Dual Flat, No Lead Package (MF) - 6x5 mm Body [DFN-S] (see Microchip Packaging Specification 00000049BS.pdf), Alternate KiCad Library -DFN 1.27 -0 -17 -9 -PCM_Package_DFN_QFN_AKL -Diodes_DFN1006-3 -DFN package size 1006 3 pins, Alternate KiCad Library -DFN package size 1006 3 pins -0 -3 -3 -PCM_Package_DFN_QFN_AKL -Diodes_UDFN-6_1.4x1.0mm_P0.5mm -X2-DFN1410-6 package used by Diodes Incorporated (https://www.tme.eu/Document/d29270fce96b388e3c7360ba4998e94f/AZV300x.pdf), Alternate KiCad Library -UDFN-6 1.4x1 Diodes -0 -6 -6 -PCM_Package_DFN_QFN_AKL -Diodes_UDFN-10_1.0x2.5mm_P0.5mm -U-DFN2510-10 package used by Diodes Incorporated (https://www.diodes.com/assets/Package-Files/U-DFN2510-10-Type-CJ.pdf), Alternate KiCad Library -UDFN-10 U-DFN2510-10 Diodes -0 -10 -10 -PCM_Package_DFN_QFN_AKL -HVQFN-24-1EP_4x4mm_P0.5mm_EP2.5x2.5mm -HVQFN, 24 Pin (https://www.nxp.com/docs/en/package-information/SOT616-3.pdf), Alternate KiCad Library -HVQFN NoLead -0 -29 -25 -PCM_Package_DFN_QFN_AKL -HVQFN-24-1EP_4x4mm_P0.5mm_EP2.5x2.5mm_ThermalVias -HVQFN, 24 Pin (https://www.nxp.com/docs/en/package-information/SOT616-3.pdf), Alternate KiCad Library -HVQFN NoLead -0 -39 -25 -PCM_Package_DFN_QFN_AKL -HVQFN-24-1EP_4x4mm_P0.5mm_EP2.6x2.6mm -HVQFN, 24 Pin (https://www.nxp.com/docs/en/package-information/SOT616-3.pdf), Alternate KiCad Library -HVQFN NoLead -0 -34 -25 -PCM_Package_DFN_QFN_AKL -HVQFN-24-1EP_4x4mm_P0.5mm_EP2.6x2.6mm_ThermalVias -HVQFN, 24 Pin (https://www.nxp.com/docs/en/package-information/SOT616-3.pdf), Alternate KiCad Library -HVQFN NoLead -0 -39 -25 -PCM_Package_DFN_QFN_AKL -Infineon_MLPQ-16-14-1EP_4x4mm_P0.5mm -MLPQ 32 leads, 7x7mm, 0.127mm stencil (https://www.infineon.com/dgdl/Infineon-AN1170-AN-v05_00-EN.pdf?fileId=5546d462533600a40153559ac3e51134), Alternate KiCad Library -mlpq 32 7x7mm -0 -17 -15 -PCM_Package_DFN_QFN_AKL -Infineon_MLPQ-40-32-1EP_7x7mm_P0.5mm -MLPQ 32 leads, 7x7mm, 0.127mm stencil (https://www.infineon.com/dgdl/Infineon-AN1170-AN-v05_00-EN.pdf?fileId=5546d462533600a40153559ac3e51134), Alternate KiCad Library -mlpq 32 7x7mm -0 -42 -33 -PCM_Package_DFN_QFN_AKL -Infineon_MLPQ-48-1EP_7x7mm_P0.5mm_EP5.55x5.55mm -MLPQ 48 leads, 7x7mm (https://www.infineon.com/dgdl/irs2093mpbf.pdf?fileId=5546d462533600a401535675fb892793), Alternate KiCad Library -mlpq 32 7x7mm -0 -65 -49 -PCM_Package_DFN_QFN_AKL -Infineon_MLPQ-48-1EP_7x7mm_P0.5mm_Pad5.15x5.15mm -MLPQ 48 leads, 7x7mm (https://www.infineon.com/dgdl/irs2052mpbf.pdf?fileId=5546d462533600a401535675d3b32788), Alternate KiCad Library -mlpq 32 7x7mm -0 -65 -49 -PCM_Package_DFN_QFN_AKL -Infineon_MLPQ-48-1EP_7x7mm_P0.5mm_Pad5.55x5.55mm -MLPQ 48 leads, 7x7mm (https://www.infineon.com/dgdl/irs2093mpbf.pdf?fileId=5546d462533600a401535675fb892793), Alternate KiCad Library -mlpq 32 7x7mm -0 -65 -49 -PCM_Package_DFN_QFN_AKL -Infineon_PQFN-22-15-4EP_6x5mm_P0.65mm -PQFN 22 leads, 5x6mm, 0.127mm stencil (https://www.infineon.com/dgdl/ir4301.pdf?fileId=5546d462533600a4015355d5fc691819, https://www.infineon.com/dgdl/Infineon-AN1170-AN-v05_00-EN.pdf?fileId=5546d462533600a40153559ac3e51134), Alternate KiCad Library -pqfn 22 5x6mm -0 -47 -15 -PCM_Package_DFN_QFN_AKL -Infineon_PQFN-44-31-5EP_7x7mm_P0.5mm -PQFN 44 leads, 7x7mm, 0.127mm stencil (https://www.infineon.com/dgdl/ir4302.pdf?fileId=5546d462533600a4015355d602a9181d, https://www.infineon.com/dgdl/Infineon-AN1170-AN-v05_00-EN.pdf?fileId=5546d462533600a40153559ac3e51134), Alternate KiCad Library -pqfn 44 7x7mm -0 -107 -27 -PCM_Package_DFN_QFN_AKL -Linear_DE14MA -14-Lead Plastic DFN, 4mm x 3mm (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-dfn/05081731_C_DE14MA.pdf), Alternate KiCad Library -DFN 0.5 -0 -22 -14 -PCM_Package_DFN_QFN_AKL -Linear_DJC_DFN22_6x3mm -DFN22 6*3 MM, 0.5 P; Linear DJC Package(see https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-dfn/DFN_22_05-08-1714.pdf), Alternate KiCad Library -DFN 0.5 DJC -0 -34 -23 -PCM_Package_DFN_QFN_AKL -Linear_UGK52_QFN-46-52 -Linear UKG52(46) package, QFN-52-1EP variant (see http://cds.linear.com/docs/en/datasheet/3886fe.pdf), Alternate KiCad Library -QFN 0.5 -0 -62 -47 -PCM_Package_DFN_QFN_AKL -MLF-6-1EP_1.6x1.6mm_P0.5mm_EP0.5x1.26mm -MLF, 6 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/mic5353.pdf), Alternate KiCad Library -MLF NoLead -0 -9 -7 -PCM_Package_DFN_QFN_AKL -MLF-8-1EP_3x3mm_P0.65mm_EP1.55x2.3mm -8-Pin ePad 3mm x 3mm MLF - 3x3x0.85 mm Body (see Microchip datasheet http://ww1.microchip.com/downloads/en/DeviceDoc/mic5355_6.pdf), Alternate KiCad Library -DFN MLF 0.65 -0 -12 -9 -PCM_Package_DFN_QFN_AKL -MLF-8-1EP_3x3mm_P0.65mm_EP1.55x2.3mm_ThermalVias -8-Pin ePad 3mm x 3mm MLF - 3x3x0.85 mm Body (see Microchip datasheet http://ww1.microchip.com/downloads/en/DeviceDoc/mic5355_6.pdf), Alternate KiCad Library -DFN MLF 0.65 -0 -15 -9 -PCM_Package_DFN_QFN_AKL -MLF-20-1EP_4x4mm_P0.5mm_EP2.6x2.6mm -MLF, 20 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/doc8246.pdf#page=263), Alternate KiCad Library -MLF NoLead -0 -25 -21 -PCM_Package_DFN_QFN_AKL -MLF-20-1EP_4x4mm_P0.5mm_EP2.6x2.6mm_ThermalVias -MLF, 20 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/doc8246.pdf#page=263), Alternate KiCad Library -MLF NoLead -0 -30 -21 -PCM_Package_DFN_QFN_AKL -MLPQ-16-1EP_4x4mm_P0.65mm_EP2.8x2.8mm -Micro Leadframe Package, 16 pin with exposed pad, Alternate KiCad Library -MLPQ- 0.65 -0 -21 -17 -PCM_Package_DFN_QFN_AKL -Micrel_MLF-8-1EP_2x2mm_P0.5mm_EP0.8x1.3mm_ThermalVias -http://ww1.microchip.com/downloads/en/DeviceDoc/mic2290.pdf, Alternate KiCad Library -mlf 8 2x2 mm -0 -14 -9 -PCM_Package_DFN_QFN_AKL -Microchip_8E-16 -16-Lead Quad Flat, No Lead Package (8E) - 4x4x0.9 mm Body [UQFN]; (see Microchip Packaging Specification 00000049BS.pdf), Alternate KiCad Library -QFN Microchip 8E 16 -0 -21 -17 -PCM_Package_DFN_QFN_AKL -Microchip_DRQFN-44-1EP_5x5mm_P0.7mm_EP2.65x2.65mm -QFN, 44 Pin, dual row (http://ww1.microchip.com/downloads/en/DeviceDoc/44L_VQFN_5x5mm_Dual_Row_%5BS3B%5D_C04-21399a.pdf), Alternate KiCad Library -QFN dual row -0 -49 -45 -PCM_Package_DFN_QFN_AKL -Microchip_DRQFN-44-1EP_5x5mm_P0.7mm_EP2.65x2.65mm_ThermalVias -QFN, 44 Pin, dual row (http://ww1.microchip.com/downloads/en/DeviceDoc/44L_VQFN_5x5mm_Dual_Row_%5BS3B%5D_C04-21399a.pdf), Alternate KiCad Library -QFN dual row -0 -59 -45 -PCM_Package_DFN_QFN_AKL -Microchip_DRQFN-64-1EP_7x7mm_P0.65mm_EP4.1x4.1mm -QFN, 64 Pin, dual row (http://ww1.microchip.com/downloads/en/DeviceDoc/64L_VQFN_7x7_Dual_Row_%5BSVB%5D_C04-21420a.pdf), Alternate KiCad Library -QFN dual row -0 -74 -65 -PCM_Package_DFN_QFN_AKL -Microchip_DRQFN-64-1EP_7x7mm_P0.65mm_EP4.1x4.1mm_ThermalVias -QFN, 64 Pin, dual row (http://ww1.microchip.com/downloads/en/DeviceDoc/64L_VQFN_7x7_Dual_Row_%5BSVB%5D_C04-21420a.pdf), Alternate KiCad Library -QFN dual row -0 -91 -65 -PCM_Package_DFN_QFN_AKL -Microsemi_QFN-40-32-2EP_6x8mm_P0.5mm -40-Lead (32-Lead Populated) Plastic Quad Flat, No Lead Package - 6x8x0.9mm Body (https://www.microsemi.com/document-portal/doc_download/131677-pd70224-data-sheet), Alternate KiCad Library -QFN 0.5 -0 -92 -34 -PCM_Package_DFN_QFN_AKL -Mini-Circuits_DL805 -https://ww2.minicircuits.com/case_style/DL805.pdf, Alternate KiCad Library -RF Switch -0 -15 -9 -PCM_Package_DFN_QFN_AKL -Mini-Circuits_FG873-4_3x3mm -Mini Circuits Case style FG (https://ww2.minicircuits.com/case_style/FG873.pdf), Alternate KiCad Library -FG873 -0 -4 -4 -PCM_Package_DFN_QFN_AKL -Nordic_AQFN-73-1EP_7x7mm_P0.5mm -http://infocenter.nordicsemi.com/index.jsp?topic=%2Fcom.nordic.infocenter.nrf52%2Fdita%2Fnrf52%2Fchips%2Fnrf52840.html, Alternate KiCad Library -AQFN 7mm -0 -78 -74 -PCM_Package_DFN_QFN_AKL -OnSemi_DFN-8_2x2mm_P0.5mm -DFN8 2x2, 0.5P (https://www.onsemi.com/pub/Collateral/511AT.PDF), Alternate KiCad Library -DFN 0.5 -0 -8 -8 -PCM_Package_DFN_QFN_AKL -OnSemi_UDFN-8_1.2x1.8mm_P0.4mm -8-Lead Plastic Dual Flat, No Lead Package, 1.2x1.8x1.55 mm Body [UDFN] (See http://www.onsemi.com/pub/Collateral/NLSV2T244-D.PDF), Alternate KiCad Library -dfn udfn dual flat -0 -8 -8 -PCM_Package_DFN_QFN_AKL -OnSemi_VCT-28_3.5x3.5mm_P0.4mm -OnSemi VCT, 28 Pin (http://www.onsemi.com/pub/Collateral/601AE.PDF), Alternate KiCad Library -OnSemi VCT DFN_QFN -0 -28 -28 -PCM_Package_DFN_QFN_AKL -OnSemi_WQFN-10_2.6x2.6mm_P0.5mm -WQFN, 10 Leads, 2.6mm x 2.6mm, https://www.tme.eu/Document/19a281ef0df304017c95a46671185e88/MC3x07x.PDF, Alternate KiCAD Library -QFN 10 CASE 510AJ -0 -10 -10 -PCM_Package_DFN_QFN_AKL -Panasonic_HQFN-16-1EP_4x4mm_P0.65mm_EP2.9x2.9mm -Panasonic HQFN-16, 4x4x0.85mm (https://industrial.panasonic.com/content/data/SC/ds/ds7/c0/PKG_HQFN016-A-0404XZL_EN.pdf), Alternate KiCad Library -panasonic hqfn -0 -21 -17 -PCM_Package_DFN_QFN_AKL -Panasonic_HSON-8_8x8mm_P2.00mm -Panasonic HSON-8, 8x8x1.25mm (https://industrial.panasonic.com/content/data/SC/ds/ds7/c0/PKG_HSON008-A-0808XXI_EN.pdf), Alternate KiCad Library -panasonic hson -0 -19 -9 -PCM_Package_DFN_QFN_AKL -QFN-12-1EP_3x3mm_P0.5mm_EP1.65x1.65mm -QFN, 12 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_12_%2005-08-1855.pdf), Alternate KiCad Library -QFN NoLead -0 -17 -13 -PCM_Package_DFN_QFN_AKL -QFN-12-1EP_3x3mm_P0.5mm_EP1.65x1.65mm_ThermalVias -QFN, 12 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_12_%2005-08-1855.pdf), Alternate KiCad Library -QFN NoLead -0 -22 -13 -PCM_Package_DFN_QFN_AKL -QFN-12-1EP_3x3mm_P0.51mm_EP1.45x1.45mm -QFN, 12 Pin (https://ww2.minicircuits.com/case_style/DQ1225.pdf), Alternate KiCad Library -QFN NoLead -0 -17 -13 -PCM_Package_DFN_QFN_AKL -QFN-14-1EP_1.6x1.6mm_P0.4mm_EP0.74x0.74mm -QFN, 14 Pin (http://www.skyworksinc.com/uploads/documents/SKY13575_639LF_203270D.pdf), Alternate KiCad Library -QFN NoLead -0 -19 -15 -PCM_Package_DFN_QFN_AKL -QFN-16-1EP_3x3mm_P0.5mm_EP1.7x1.7mm -QFN, 16 Pin (https://www.st.com/resource/en/datasheet/tsv521.pdf), Alternate KiCad Library -QFN NoLead -0 -21 -17 -PCM_Package_DFN_QFN_AKL -QFN-16-1EP_3x3mm_P0.5mm_EP1.7x1.7mm_ThermalVias -QFN, 16 Pin (http://www.cypress.com/file/46236/download), Alternate KiCad Library -QFN DFN_QFN -0 -31 -17 -PCM_Package_DFN_QFN_AKL -QFN-16-1EP_3x3mm_P0.5mm_EP1.9x1.9mm -QFN, 16 Pin (https://www.nxp.com/docs/en/package-information/98ASA00525D.pdf), Alternate KiCad Library -QFN NoLead -0 -21 -17 -PCM_Package_DFN_QFN_AKL -QFN-16-1EP_3x3mm_P0.5mm_EP1.9x1.9mm_ThermalVias -QFN, 16 Pin (https://www.nxp.com/docs/en/package-information/98ASA00525D.pdf), Alternate KiCad Library -QFN NoLead -0 -26 -17 -PCM_Package_DFN_QFN_AKL -QFN-16-1EP_3x3mm_P0.5mm_EP1.45x1.45mm -QFN, 16 Pin (http://cds.linear.com/docs/en/datasheet/37551fd.pdf), Alternate KiCad Library -QFN NoLead -0 -21 -17 -PCM_Package_DFN_QFN_AKL -QFN-16-1EP_3x3mm_P0.5mm_EP1.45x1.45mm_ThermalVias -QFN, 16 Pin (http://cds.linear.com/docs/en/datasheet/37551fd.pdf), Alternate KiCad Library -QFN NoLead -0 -26 -17 -PCM_Package_DFN_QFN_AKL -QFN-16-1EP_3x3mm_P0.5mm_EP1.75x1.75mm -QFN, 16 Pin (https://www.onsemi.com/pub/Collateral/NCN4555-D.PDF), Alternate KiCad Library -QFN NoLead -0 -21 -17 -PCM_Package_DFN_QFN_AKL -QFN-16-1EP_3x3mm_P0.5mm_EP1.75x1.75mm_ThermalVias -QFN, 16 Pin (https://www.onsemi.com/pub/Collateral/NCN4555-D.PDF), Alternate KiCad Library -QFN NoLead -0 -26 -17 -PCM_Package_DFN_QFN_AKL -QFN-16-1EP_4x4mm_P0.5mm_EP2.45x2.45mm -QFN, 16 Pin (https://www.renesas.com/eu/en/www/doc/datasheet/isl8117.pdf#page=22), Alternate KiCad Library -QFN NoLead -0 -21 -17 -PCM_Package_DFN_QFN_AKL -QFN-16-1EP_4x4mm_P0.5mm_EP2.45x2.45mm_ThermalVias -QFN, 16 Pin (https://www.renesas.com/eu/en/www/doc/datasheet/isl8117.pdf#page=22), Alternate KiCad Library -QFN NoLead -0 -31 -17 -PCM_Package_DFN_QFN_AKL -QFN-16-1EP_4x4mm_P0.65mm_EP2.1x2.1mm -QFN, 16 Pin (http://www.thatcorp.com/datashts/THAT_1580_Datasheet.pdf), Alternate KiCad Library -QFN NoLead -0 -21 -17 -PCM_Package_DFN_QFN_AKL -QFN-16-1EP_4x4mm_P0.65mm_EP2.1x2.1mm_ThermalVias -QFN, 16 Pin (http://www.thatcorp.com/datashts/THAT_1580_Datasheet.pdf), Alternate KiCad Library -QFN NoLead -0 -31 -17 -PCM_Package_DFN_QFN_AKL -QFN-16-1EP_4x4mm_P0.65mm_EP2.5x2.5mm -QFN, 16 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=266), Alternate KiCad Library -QFN NoLead -0 -21 -17 -PCM_Package_DFN_QFN_AKL -QFN-16-1EP_4x4mm_P0.65mm_EP2.5x2.5mm_ThermalVias -QFN, 16 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=266), Alternate KiCad Library -QFN NoLead -0 -31 -17 -PCM_Package_DFN_QFN_AKL -QFN-16-1EP_4x4mm_P0.65mm_EP2.7x2.7mm -QFN, 16 Pin (https://www.allegromicro.com/~/media/Files/Datasheets/A4403-Datasheet.ashx), Alternate KiCad Library -QFN NoLead -0 -21 -17 -PCM_Package_DFN_QFN_AKL -QFN-16-1EP_4x4mm_P0.65mm_EP2.7x2.7mm_PullBack -QFN, 16 Pin (https://ams.com/documents/20143/36005/AS5055A_DS000304_2-00.pdf#page=24), Alternate KiCad Library -QFN NoLead -0 -21 -17 -PCM_Package_DFN_QFN_AKL -QFN-16-1EP_4x4mm_P0.65mm_EP2.7x2.7mm_PullBack_ThermalVias -QFN, 16 Pin (https://ams.com/documents/20143/36005/AS5055A_DS000304_2-00.pdf#page=24), Alternate KiCad Library -QFN NoLead -0 -31 -17 -PCM_Package_DFN_QFN_AKL -QFN-16-1EP_4x4mm_P0.65mm_EP2.7x2.7mm_ThermalVias -QFN, 16 Pin (https://www.allegromicro.com/~/media/Files/Datasheets/A4403-Datasheet.ashx), Alternate KiCad Library -QFN NoLead -0 -31 -17 -PCM_Package_DFN_QFN_AKL -QFN-16-1EP_4x4mm_P0.65mm_EP2.15x2.15mm -QFN, 16 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/4001f.pdf), Alternate KiCad Library -QFN NoLead -0 -21 -17 -PCM_Package_DFN_QFN_AKL -QFN-16-1EP_4x4mm_P0.65mm_EP2.15x2.15mm_ThermalVias -QFN, 16 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/4001f.pdf), Alternate KiCad Library -QFN NoLead -0 -31 -17 -PCM_Package_DFN_QFN_AKL -QFN-16-1EP_5x5mm_P0.8mm_EP2.7x2.7mm -QFN, 16 Pin (http://www.intersil.com/content/dam/Intersil/documents/l16_/l16.5x5.pdf), Alternate KiCad Library -QFN NoLead -0 -21 -17 -PCM_Package_DFN_QFN_AKL -QFN-16-1EP_5x5mm_P0.8mm_EP2.7x2.7mm_ThermalVias -QFN, 16 Pin (http://www.intersil.com/content/dam/Intersil/documents/l16_/l16.5x5.pdf), Alternate KiCad Library -QFN NoLead -0 -31 -17 -PCM_Package_DFN_QFN_AKL -QFN-16_3x3mm_P0.5mm -QFN, 16 Pin (https://www.st.com/resource/en/datasheet/tsx631.pdf), Alternate KiCad Library -QFN NoLead -0 -16 -16 -PCM_Package_DFN_QFN_AKL -QFN-20-1EP_3.5x3.5mm_P0.5mm_EP2x2mm -QFN, 20 Pin (http://www.ti.com/lit/ml/mpqf239/mpqf239.pdf), Alternate KiCad Library -QFN NoLead -0 -25 -21 -PCM_Package_DFN_QFN_AKL -QFN-20-1EP_3.5x3.5mm_P0.5mm_EP2x2mm_ThermalVias -QFN, 20 Pin (http://www.ti.com/lit/ml/mpqf239/mpqf239.pdf), Alternate KiCad Library -QFN NoLead -0 -30 -21 -PCM_Package_DFN_QFN_AKL -QFN-20-1EP_3x3mm_P0.4mm_EP1.65x1.65mm -QFN, 20 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/3553fc.pdf#page=34), Alternate KiCad Library -QFN NoLead -0 -25 -21 -PCM_Package_DFN_QFN_AKL -QFN-20-1EP_3x3mm_P0.4mm_EP1.65x1.65mm_ThermalVias -QFN, 20 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/3553fc.pdf#page=34), Alternate KiCad Library -QFN NoLead -0 -30 -21 -PCM_Package_DFN_QFN_AKL -QFN-20-1EP_3x3mm_P0.45mm_EP1.6x1.6mm -QFN, 20 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/atmel-8235-8-bit-avr-microcontroller-attiny20_datasheet.pdf#page=212), Alternate KiCad Library -QFN NoLead -0 -25 -21 -PCM_Package_DFN_QFN_AKL -QFN-20-1EP_3x3mm_P0.45mm_EP1.6x1.6mm_ThermalVias -QFN, 20 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/atmel-8235-8-bit-avr-microcontroller-attiny20_datasheet.pdf#page=212), Alternate KiCad Library -QFN NoLead -0 -30 -21 -PCM_Package_DFN_QFN_AKL -QFN-20-1EP_3x4mm_P0.5mm_EP1.65x2.65mm -QFN, 20 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_20_05-08-1742.pdf), Alternate KiCad Library -QFN NoLead -0 -25 -21 -PCM_Package_DFN_QFN_AKL -QFN-20-1EP_3x4mm_P0.5mm_EP1.65x2.65mm_ThermalVias -QFN, 20 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_20_05-08-1742.pdf), Alternate KiCad Library -QFN NoLead -0 -32 -21 -PCM_Package_DFN_QFN_AKL -QFN-20-1EP_4x4mm_P0.5mm_EP2.5x2.5mm -QFN, 20 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=274), Alternate KiCad Library -QFN NoLead -0 -25 -21 -PCM_Package_DFN_QFN_AKL -QFN-20-1EP_4x4mm_P0.5mm_EP2.5x2.5mm_ThermalVias -QFN, 20 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=274), Alternate KiCad Library -QFN NoLead -0 -30 -21 -PCM_Package_DFN_QFN_AKL -QFN-20-1EP_4x4mm_P0.5mm_EP2.6x2.6mm -QFN, 20 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/doc2535.pdf#page=164), Alternate KiCad Library -QFN NoLead -0 -25 -21 -PCM_Package_DFN_QFN_AKL -QFN-20-1EP_4x4mm_P0.5mm_EP2.6x2.6mm_ThermalVias -QFN, 20 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/doc2535.pdf#page=164), Alternate KiCad Library -QFN NoLead -0 -30 -21 -PCM_Package_DFN_QFN_AKL -QFN-20-1EP_4x4mm_P0.5mm_EP2.7x2.7mm -QFN, 20 Pin (https://www.silabs.com/documents/public/data-sheets/Si5351-B.pdf), Alternate KiCad Library -QFN NoLead -0 -25 -21 -PCM_Package_DFN_QFN_AKL -QFN-20-1EP_4x4mm_P0.5mm_EP2.7x2.7mm_ThermalVias -QFN, 20 Pin (https://www.silabs.com/documents/public/data-sheets/Si5351-B.pdf), Alternate KiCad Library -QFN NoLead -0 -30 -21 -PCM_Package_DFN_QFN_AKL -QFN-20-1EP_4x5mm_P0.5mm_EP2.65x3.65mm -QFN, 20 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_20_05-08-1711.pdf), Alternate KiCad Library -QFN NoLead -0 -27 -21 -PCM_Package_DFN_QFN_AKL -QFN-20-1EP_4x5mm_P0.5mm_EP2.65x3.65mm_ThermalVias -QFN, 20 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_20_05-08-1711.pdf), Alternate KiCad Library -QFN NoLead -0 -40 -21 -PCM_Package_DFN_QFN_AKL -QFN-20-1EP_5x5mm_P0.65mm_EP3.35x3.35mm -QFN, 20 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=276), Alternate KiCad Library -QFN NoLead -0 -25 -21 -PCM_Package_DFN_QFN_AKL -QFN-20-1EP_5x5mm_P0.65mm_EP3.35x3.35mm_ThermalVias -QFN, 20 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=276), Alternate KiCad Library -QFN NoLead -0 -35 -21 -PCM_Package_DFN_QFN_AKL -QFN-24-1EP_3x3mm_P0.4mm_EP1.75x1.6mm -QFN, 24 Pin (https://www.invensense.com/wp-content/uploads/2015/02/PS-MPU-9250A-01-v1.1.pdf#page=39), Alternate KiCad Library -QFN NoLead -0 -29 -25 -PCM_Package_DFN_QFN_AKL -QFN-24-1EP_3x3mm_P0.4mm_EP1.75x1.6mm_ThermalVias -QFN, 24 Pin (https://www.invensense.com/wp-content/uploads/2015/02/PS-MPU-9250A-01-v1.1.pdf#page=39), Alternate KiCad Library -QFN NoLead -0 -34 -25 -PCM_Package_DFN_QFN_AKL -QFN-24-1EP_3x4mm_P0.4mm_EP1.65x2.65mm -QFN, 24 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_20_05-08-1742.pdf), Alternate KiCad Library -QFN NoLead -0 -31 -25 -PCM_Package_DFN_QFN_AKL -QFN-24-1EP_3x4mm_P0.4mm_EP1.65x2.65mm_ThermalVias -QFN, 24 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_20_05-08-1742.pdf), Alternate KiCad Library -QFN NoLead -0 -38 -25 -PCM_Package_DFN_QFN_AKL -QFN-24-1EP_4x4mm_P0.5mm_EP2.6x2.6mm -QFN, 24 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=278), Alternate KiCad Library -QFN NoLead -0 -29 -25 -PCM_Package_DFN_QFN_AKL -QFN-24-1EP_4x4mm_P0.5mm_EP2.6x2.6mm_ThermalVias -QFN, 24 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=278), Alternate KiCad Library -QFN NoLead -0 -39 -25 -PCM_Package_DFN_QFN_AKL -QFN-24-1EP_4x4mm_P0.5mm_EP2.7x2.6mm -QFN, 24 Pin (https://store.invensense.com/datasheets/invensense/MPU-6050_DataSheet_V3%204.pdf), Alternate KiCad Library -QFN NoLead -0 -29 -25 -PCM_Package_DFN_QFN_AKL -QFN-24-1EP_4x4mm_P0.5mm_EP2.7x2.6mm_ThermalVias -QFN, 24 Pin (https://store.invensense.com/datasheets/invensense/MPU-6050_DataSheet_V3%204.pdf), Alternate KiCad Library -QFN NoLead -0 -39 -25 -PCM_Package_DFN_QFN_AKL -QFN-24-1EP_4x4mm_P0.5mm_EP2.7x2.7mm -QFN, 24 Pin (http://www.alfarzpp.lv/eng/sc/AS3330.pdf), Alternate KiCad Library -QFN NoLead -0 -29 -25 -PCM_Package_DFN_QFN_AKL -QFN-24-1EP_4x4mm_P0.5mm_EP2.7x2.7mm_ThermalVias -QFN, 24 Pin (http://www.alfarzpp.lv/eng/sc/AS3330.pdf), Alternate KiCad Library -QFN NoLead -0 -39 -25 -PCM_Package_DFN_QFN_AKL -QFN-24-1EP_4x4mm_P0.5mm_EP2.8x2.8mm -QFN, 24 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/hmc431.pdf), Alternate KiCad Library -QFN NoLead -0 -29 -25 -PCM_Package_DFN_QFN_AKL -QFN-24-1EP_4x4mm_P0.5mm_EP2.8x2.8mm_ThermalVias -QFN, 24 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/hmc431.pdf), Alternate KiCad Library -QFN NoLead -0 -39 -25 -PCM_Package_DFN_QFN_AKL -QFN-24-1EP_4x4mm_P0.5mm_EP2.65x2.65mm -QFN, 24 Pin (http://www.cypress.com/file/46236/download), Alternate KiCad Library -QFN NoLead -0 -29 -25 -PCM_Package_DFN_QFN_AKL -QFN-24-1EP_4x4mm_P0.5mm_EP2.65x2.65mm_ThermalVias -QFN, 24 Pin (http://www.cypress.com/file/46236/download), Alternate KiCad Library -QFN NoLead -0 -39 -25 -PCM_Package_DFN_QFN_AKL -QFN-24-1EP_4x5mm_P0.5mm_EP2.65x3.65mm -QFN, 24 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_24_05-08-1696.pdf), Alternate KiCad Library -QFN NoLead -0 -31 -25 -PCM_Package_DFN_QFN_AKL -QFN-24-1EP_4x5mm_P0.5mm_EP2.65x3.65mm_ThermalVias -QFN, 24 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_24_05-08-1696.pdf), Alternate KiCad Library -QFN NoLead -0 -44 -25 -PCM_Package_DFN_QFN_AKL -QFN-24-1EP_5x5mm_P0.65mm_EP3.2x3.2mm -QFN, 24 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/(UH24)%20QFN%2005-08-1747%20Rev%20A.pdf), Alternate KiCad Library -QFN NoLead -0 -29 -25 -PCM_Package_DFN_QFN_AKL -QFN-24-1EP_5x5mm_P0.65mm_EP3.2x3.2mm_ThermalVias -QFN, 24 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/(UH24)%20QFN%2005-08-1747%20Rev%20A.pdf), Alternate KiCad Library -QFN NoLead -0 -51 -25 -PCM_Package_DFN_QFN_AKL -QFN-24-1EP_5x5mm_P0.65mm_EP3.4x3.4mm -QFN, 24 Pin (http://www.thatcorp.com/datashts/THAT_5173_Datasheet.pdf#page=17), Alternate KiCad Library -QFN NoLead -0 -29 -25 -PCM_Package_DFN_QFN_AKL -QFN-24-1EP_5x5mm_P0.65mm_EP3.4x3.4mm_ThermalVias -QFN, 24 Pin (http://www.thatcorp.com/datashts/THAT_5173_Datasheet.pdf#page=17), Alternate KiCad Library -QFN NoLead -0 -39 -25 -PCM_Package_DFN_QFN_AKL -QFN-24-1EP_5x5mm_P0.65mm_EP3.6x3.6mm -QFN, 24 Pin (https://www.nxp.com/docs/en/package-information/98ASA00734D.pdf), Alternate KiCad Library -QFN NoLead -0 -34 -25 -PCM_Package_DFN_QFN_AKL -QFN-24-1EP_5x5mm_P0.65mm_EP3.6x3.6mm_ThermalVias -QFN, 24 Pin (https://www.nxp.com/docs/en/package-information/98ASA00734D.pdf), Alternate KiCad Library -QFN NoLead -0 -67 -25 -PCM_Package_DFN_QFN_AKL -QFN-28-1EP_3x6mm_P0.5mm_EP1.7x4.75mm -QFN, 28 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/05081926_0_UDE28.pdf), Alternate KiCad Library -QFN NoLead -0 -37 -29 -PCM_Package_DFN_QFN_AKL -QFN-28-1EP_3x6mm_P0.5mm_EP1.7x4.75mm_ThermalVias -QFN, 28 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/05081926_0_UDE28.pdf), Alternate KiCad Library -QFN NoLead -0 -53 -29 -PCM_Package_DFN_QFN_AKL -QFN-28-1EP_4x4mm_P0.4mm_EP2.3x2.3mm -QFN, 28 Pin (http://www.issi.com/WW/pdf/31FL3731.pdf#page=21), Alternate KiCad Library -QFN NoLead -0 -33 -29 -PCM_Package_DFN_QFN_AKL -QFN-28-1EP_4x4mm_P0.4mm_EP2.3x2.3mm_ThermalVias -QFN, 28 Pin (http://www.issi.com/WW/pdf/31FL3731.pdf#page=21), Alternate KiCad Library -QFN NoLead -0 -43 -29 -PCM_Package_DFN_QFN_AKL -QFN-28-1EP_4x4mm_P0.4mm_EP2.4x2.4mm -QFN, 28 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=280), Alternate KiCad Library -QFN NoLead -0 -33 -29 -PCM_Package_DFN_QFN_AKL -QFN-28-1EP_4x4mm_P0.4mm_EP2.4x2.4mm_ThermalVias -QFN, 28 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=280), Alternate KiCad Library -QFN NoLead -0 -43 -29 -PCM_Package_DFN_QFN_AKL -QFN-28-1EP_4x4mm_P0.4mm_EP2.6x2.6mm -QFN, 28 Pin (package code T2844-1; https://pdfserv.maximintegrated.com/package_dwgs/21-0139.PDF), Alternate KiCad Library -QFN NoLead -0 -33 -29 -PCM_Package_DFN_QFN_AKL -QFN-28-1EP_4x4mm_P0.4mm_EP2.6x2.6mm_ThermalVias -QFN, 28 Pin (package code T2844-1; https://pdfserv.maximintegrated.com/package_dwgs/21-0139.PDF), Alternate KiCad Library -QFN NoLead -0 -43 -29 -PCM_Package_DFN_QFN_AKL -QFN-28-1EP_4x4mm_P0.45mm_EP2.4x2.4mm -QFN, 28 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/8008S.pdf#page=16), Alternate KiCad Library -QFN NoLead -0 -33 -29 -PCM_Package_DFN_QFN_AKL -QFN-28-1EP_4x4mm_P0.45mm_EP2.4x2.4mm_ThermalVias -QFN, 28 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/8008S.pdf#page=16), Alternate KiCad Library -QFN NoLead -0 -43 -29 -PCM_Package_DFN_QFN_AKL -QFN-28-1EP_4x5mm_P0.5mm_EP2.65x3.65mm -QFN, 28 Pin (http://www.analog.com/media/en/technical-documentation/data-sheets/3555fe.pdf#page=32), Alternate KiCad Library -QFN NoLead -0 -35 -29 -PCM_Package_DFN_QFN_AKL -QFN-28-1EP_4x5mm_P0.5mm_EP2.65x3.65mm_ThermalVias -QFN, 28 Pin (http://www.analog.com/media/en/technical-documentation/data-sheets/3555fe.pdf#page=32), Alternate KiCad Library -QFN NoLead -0 -48 -29 -PCM_Package_DFN_QFN_AKL -QFN-28-1EP_5x5mm_P0.5mm_EP3.35x3.35mm -QFN, 28 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=283), Alternate KiCad Library -QFN NoLead -0 -38 -29 -PCM_Package_DFN_QFN_AKL -QFN-28-1EP_5x5mm_P0.5mm_EP3.35x3.35mm_ThermalVias -QFN, 28 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=283), Alternate KiCad Library -QFN NoLead -0 -55 -29 -PCM_Package_DFN_QFN_AKL -QFN-28-1EP_5x6mm_P0.5mm_EP3.65x4.65mm -QFN, 28 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/05081932_0_UHE28.pdf), Alternate KiCad Library -QFN NoLead -0 -41 -29 -PCM_Package_DFN_QFN_AKL -QFN-28-1EP_5x6mm_P0.5mm_EP3.65x4.65mm_ThermalVias -QFN, 28 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/05081932_0_UHE28.pdf), Alternate KiCad Library -QFN NoLead -0 -62 -29 -PCM_Package_DFN_QFN_AKL -QFN-28-1EP_6x6mm_P0.65mm_EP4.8x4.8mm -QFN, 28 Pin (https://www.semtech.com/uploads/documents/sx1272.pdf#page=125), Alternate KiCad Library -QFN NoLead -0 -38 -29 -PCM_Package_DFN_QFN_AKL -QFN-28-1EP_6x6mm_P0.65mm_EP4.8x4.8mm_ThermalVias -QFN, 28 Pin (https://www.semtech.com/uploads/documents/sx1272.pdf#page=125), Alternate KiCad Library -QFN NoLead -0 -71 -29 -PCM_Package_DFN_QFN_AKL -QFN-28-1EP_6x6mm_P0.65mm_EP4.25x4.25mm -QFN, 28 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=289), Alternate KiCad Library -QFN NoLead -0 -38 -29 -PCM_Package_DFN_QFN_AKL -QFN-28-1EP_6x6mm_P0.65mm_EP4.25x4.25mm_ThermalVias -QFN, 28 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=289), Alternate KiCad Library -QFN NoLead -0 -71 -29 -PCM_Package_DFN_QFN_AKL -QFN-28_4x4mm_P0.5mm -QFN, 28 Pin (http://www.st.com/resource/en/datasheet/stm32f031k6.pdf#page=90), Alternate KiCad Library -QFN NoLead -0 -28 -28 -PCM_Package_DFN_QFN_AKL -QFN-32-1EP_4x4mm_P0.4mm_EP2.9x2.9mm -QFN, 32 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/atmel-8153-8-and-16-bit-avr-microcontroller-xmega-e-atxmega8e5-atxmega16e5-atxmega32e5_datasheet.pdf#page=70), Alternate KiCad Library -QFN NoLead -0 -37 -33 -PCM_Package_DFN_QFN_AKL -QFN-32-1EP_4x4mm_P0.4mm_EP2.9x2.9mm_ThermalVias -QFN, 32 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/atmel-8153-8-and-16-bit-avr-microcontroller-xmega-e-atxmega8e5-atxmega16e5-atxmega32e5_datasheet.pdf#page=70), Alternate KiCad Library -QFN NoLead -0 -47 -33 -PCM_Package_DFN_QFN_AKL -QFN-32-1EP_4x4mm_P0.4mm_EP2.65x2.65mm -QFN, 32 Pin (https://www.renesas.com/eu/en/package-image/pdf/outdrawing/l32.4x4a.pdf), Alternate KiCad Library -QFN NoLead -0 -37 -33 -PCM_Package_DFN_QFN_AKL -QFN-32-1EP_4x4mm_P0.4mm_EP2.65x2.65mm_ThermalVias -QFN, 32 Pin (https://www.renesas.com/eu/en/package-image/pdf/outdrawing/l32.4x4a.pdf), Alternate KiCad Library -QFN NoLead -0 -59 -33 -PCM_Package_DFN_QFN_AKL -QFN-32-1EP_5x5mm_P0.5mm_EP3.1x3.1mm -QFN, 32 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/8008S.pdf#page=20), Alternate KiCad Library -QFN NoLead -0 -42 -33 -PCM_Package_DFN_QFN_AKL -QFN-32-1EP_5x5mm_P0.5mm_EP3.1x3.1mm_ThermalVias -QFN, 32 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/8008S.pdf#page=20), Alternate KiCad Library -QFN NoLead -0 -59 -33 -PCM_Package_DFN_QFN_AKL -QFN-32-1EP_5x5mm_P0.5mm_EP3.3x3.3mm -QFN, 32 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/00002164B.pdf#page=68), Alternate KiCad Library -QFN NoLead -0 -42 -33 -PCM_Package_DFN_QFN_AKL -QFN-32-1EP_5x5mm_P0.5mm_EP3.3x3.3mm_ThermalVias -QFN, 32 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/00002164B.pdf#page=68), Alternate KiCad Library -QFN NoLead -0 -59 -33 -PCM_Package_DFN_QFN_AKL -QFN-32-1EP_5x5mm_P0.5mm_EP3.6x3.6mm -QFN, 32 Pin (http://infocenter.nordicsemi.com/pdf/nRF52810_PS_v1.1.pdf#page=468), Alternate KiCad Library -QFN NoLead -0 -42 -33 -PCM_Package_DFN_QFN_AKL -QFN-32-1EP_5x5mm_P0.5mm_EP3.6x3.6mm_ThermalVias -QFN, 32 Pin (http://infocenter.nordicsemi.com/pdf/nRF52810_PS_v1.1.pdf#page=468), Alternate KiCad Library -QFN NoLead -0 -59 -33 -PCM_Package_DFN_QFN_AKL -QFN-32-1EP_5x5mm_P0.5mm_EP3.7x3.7mm -QFN, 32 Pin (https://www.espressif.com/sites/default/files/documentation/0a-esp8285_datasheet_en.pdf), Alternate KiCad Library -QFN NoLead -0 -37 -33 -PCM_Package_DFN_QFN_AKL -QFN-32-1EP_5x5mm_P0.5mm_EP3.7x3.7mm_ThermalVias -QFN, 32 Pin (https://www.espressif.com/sites/default/files/documentation/0a-esp8285_datasheet_en.pdf), Alternate KiCad Library -QFN NoLead -0 -59 -33 -PCM_Package_DFN_QFN_AKL -QFN-32-1EP_5x5mm_P0.5mm_EP3.45x3.45mm -QFN, 32 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_32_05-08-1693.pdf), Alternate KiCad Library -QFN NoLead -0 -42 -33 -PCM_Package_DFN_QFN_AKL -QFN-32-1EP_5x5mm_P0.5mm_EP3.45x3.45mm_ThermalVias -QFN, 32 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_32_05-08-1693.pdf), Alternate KiCad Library -QFN NoLead -0 -59 -33 -PCM_Package_DFN_QFN_AKL -QFN-32-1EP_5x5mm_P0.5mm_EP3.65x3.65mm -QFN, 32 Pin (https://www.exar.com/ds/mxl7704.pdf#page=35), Alternate KiCad Library -QFN NoLead -0 -42 -33 -PCM_Package_DFN_QFN_AKL -QFN-32-1EP_5x5mm_P0.5mm_EP3.65x3.65mm_ThermalVias -QFN, 32 Pin (https://www.exar.com/ds/mxl7704.pdf#page=35), Alternate KiCad Library -QFN NoLead -0 -59 -33 -PCM_Package_DFN_QFN_AKL -QFN-32-1EP_7x7mm_P0.65mm_EP4.7x4.7mm -QFN, 32 Pin (https://www.nxp.com/docs/en/data-sheet/LPC111X.pdf#page=108), Alternate KiCad Library -QFN NoLead -0 -49 -33 -PCM_Package_DFN_QFN_AKL -QFN-32-1EP_7x7mm_P0.65mm_EP4.7x4.7mm_ThermalVias -QFN, 32 Pin (https://www.nxp.com/docs/en/data-sheet/LPC111X.pdf#page=108), Alternate KiCad Library -QFN NoLead -0 -75 -33 -PCM_Package_DFN_QFN_AKL -QFN-32-1EP_7x7mm_P0.65mm_EP4.65x4.65mm -QFN, 32 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/Atmel-8209-8-bit%20AVR%20ATmega16M1-32M1-64M1_Datasheet.pdf#page=426), Alternate KiCad Library -QFN NoLead -0 -49 -33 -PCM_Package_DFN_QFN_AKL -QFN-32-1EP_7x7mm_P0.65mm_EP4.65x4.65mm_ThermalVias -QFN, 32 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/Atmel-8209-8-bit%20AVR%20ATmega16M1-32M1-64M1_Datasheet.pdf#page=426), Alternate KiCad Library -QFN NoLead -0 -75 -33 -PCM_Package_DFN_QFN_AKL -QFN-32-1EP_7x7mm_P0.65mm_EP5.4x5.4mm -QFN, 32 Pin (http://www.thatcorp.com/datashts/THAT_5171_Datasheet.pdf), Alternate KiCad Library -QFN NoLead -0 -49 -33 -PCM_Package_DFN_QFN_AKL -QFN-32-1EP_7x7mm_P0.65mm_EP5.4x5.4mm_ThermalVias -QFN, 32 Pin (http://www.thatcorp.com/datashts/THAT_5171_Datasheet.pdf), Alternate KiCad Library -QFN NoLead -0 -75 -33 -PCM_Package_DFN_QFN_AKL -QFN-36-1EP_5x6mm_P0.5mm_EP3.6x4.1mm -QFN, 36 Pin (https://www.trinamic.com/fileadmin/assets/Products/ICs_Documents/TMC2100_datasheet_Rev1.08.pdf#page=43), Alternate KiCad Library -QFN NoLead -0 -46 -37 -PCM_Package_DFN_QFN_AKL -QFN-36-1EP_5x6mm_P0.5mm_EP3.6x4.1mm_ThermalVias -QFN, 36 Pin (https://www.trinamic.com/fileadmin/assets/Products/ICs_Documents/TMC2100_datasheet_Rev1.08.pdf#page=43), Alternate KiCad Library -QFN NoLead -0 -56 -37 -PCM_Package_DFN_QFN_AKL -QFN-36-1EP_5x6mm_P0.5mm_EP3.6x4.6mm -QFN, 36 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/(UHE36)%20QFN%2005-08-1876%20Rev%20%C3%98.pdf), Alternate KiCad Library -QFN NoLead -0 -49 -37 -PCM_Package_DFN_QFN_AKL -QFN-36-1EP_5x6mm_P0.5mm_EP3.6x4.6mm_ThermalVias -QFN, 36 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/(UHE36)%20QFN%2005-08-1876%20Rev%20%C3%98.pdf), Alternate KiCad Library -QFN NoLead -0 -56 -37 -PCM_Package_DFN_QFN_AKL -QFN-36-1EP_6x6mm_P0.5mm_EP3.7x3.7mm -QFN, 36 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/36L_QFN_6x6_with_3_7x3_7_EP_Punch_Dimpled_4E_C04-0241A.pdf), Alternate KiCad Library -QFN NoLead -0 -46 -37 -PCM_Package_DFN_QFN_AKL -QFN-36-1EP_6x6mm_P0.5mm_EP3.7x3.7mm_ThermalVias -QFN, 36 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/36L_QFN_6x6_with_3_7x3_7_EP_Punch_Dimpled_4E_C04-0241A.pdf), Alternate KiCad Library -QFN NoLead -0 -63 -37 -PCM_Package_DFN_QFN_AKL -QFN-36-1EP_6x6mm_P0.5mm_EP4.1x4.1mm -QFN, 36 Pin (www.st.com/resource/en/datasheet/stm32f101t6.pdf#page=72), Alternate KiCad Library -QFN NoLead -0 -46 -37 -PCM_Package_DFN_QFN_AKL -QFN-36-1EP_6x6mm_P0.5mm_EP4.1x4.1mm_ThermalVias -QFN, 36 Pin (www.st.com/resource/en/datasheet/stm32f101t6.pdf#page=72), Alternate KiCad Library -QFN NoLead -0 -63 -37 -PCM_Package_DFN_QFN_AKL -QFN-38-1EP_4x6mm_P0.4mm_EP2.65x4.65mm -QFN, 38 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_38_05-08-1750.pdf), Alternate KiCad Library -QFN NoLead -0 -47 -39 -PCM_Package_DFN_QFN_AKL -QFN-38-1EP_4x6mm_P0.4mm_EP2.65x4.65mm_ThermalVias -QFN, 38 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_38_05-08-1750.pdf), Alternate KiCad Library -QFN NoLead -0 -56 -39 -PCM_Package_DFN_QFN_AKL -QFN-38-1EP_5x7mm_P0.5mm_EP3.15x5.15mm -QFN, 38 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_38_05-08-1701.pdf), Alternate KiCad Library -QFN NoLead -0 -54 -39 -PCM_Package_DFN_QFN_AKL -QFN-38-1EP_5x7mm_P0.5mm_EP3.15x5.15mm_ThermalVias -QFN, 38 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_38_05-08-1701.pdf), Alternate KiCad Library -QFN NoLead -0 -63 -39 -PCM_Package_DFN_QFN_AKL -QFN-40-1EP_5x5mm_P0.4mm_EP3.6x3.6mm -QFN, 40 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=297), Alternate KiCad Library -QFN NoLead -0 -50 -41 -PCM_Package_DFN_QFN_AKL -QFN-40-1EP_5x5mm_P0.4mm_EP3.6x3.6mm_ThermalVias -QFN, 40 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=297), Alternate KiCad Library -QFN NoLead -0 -67 -41 -PCM_Package_DFN_QFN_AKL -QFN-40-1EP_5x5mm_P0.4mm_EP3.8x3.8mm -QFN, 40 Pin (http://www.issi.com/WW/pdf/31FL3736.pdf#page=28), Alternate KiCad Library -QFN NoLead -0 -50 -41 -PCM_Package_DFN_QFN_AKL -QFN-40-1EP_5x5mm_P0.4mm_EP3.8x3.8mm_ThermalVias -QFN, 40 Pin (http://www.issi.com/WW/pdf/31FL3736.pdf#page=28), Alternate KiCad Library -QFN NoLead -0 -67 -41 -PCM_Package_DFN_QFN_AKL -QFN-40-1EP_6x6mm_P0.5mm_EP4.6x4.6mm -QFN, 40 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=295), Alternate KiCad Library -QFN NoLead -0 -57 -41 -PCM_Package_DFN_QFN_AKL -QFN-40-1EP_6x6mm_P0.5mm_EP4.6x4.6mm_ThermalVias -QFN, 40 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=295), Alternate KiCad Library -QFN NoLead -0 -83 -41 -PCM_Package_DFN_QFN_AKL -QFN-42-1EP_5x6mm_P0.4mm_EP3.7x4.7mm -QFN, 42 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/05081875_0_UHE42.pdf), Alternate KiCad Library -QFN NoLead -0 -55 -43 -PCM_Package_DFN_QFN_AKL -QFN-42-1EP_5x6mm_P0.4mm_EP3.7x4.7mm_ThermalVias -QFN, 42 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/05081875_0_UHE42.pdf), Alternate KiCad Library -QFN NoLead -0 -76 -43 -PCM_Package_DFN_QFN_AKL -QFN-44-1EP_7x7mm_P0.5mm_EP5.2x5.2mm -QFN, 44 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/2512S.pdf#page=17), Alternate KiCad Library -QFN NoLead -0 -61 -45 -PCM_Package_DFN_QFN_AKL -QFN-44-1EP_7x7mm_P0.5mm_EP5.2x5.2mm_ThermalVias -QFN, 44 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/2512S.pdf#page=17), Alternate KiCad Library -QFN NoLead -0 -87 -45 -PCM_Package_DFN_QFN_AKL -QFN-44-1EP_7x7mm_P0.5mm_EP5.15x5.15mm -QFN, 44 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_44_05-08-1763.pdf), Alternate KiCad Library -QFN NoLead -0 -61 -45 -PCM_Package_DFN_QFN_AKL -QFN-44-1EP_7x7mm_P0.5mm_EP5.15x5.15mm_ThermalVias -QFN, 44 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_44_05-08-1763.pdf), Alternate KiCad Library -QFN NoLead -0 -87 -45 -PCM_Package_DFN_QFN_AKL -QFN-44-1EP_8x8mm_P0.65mm_EP6.45x6.45mm -QFN, 44 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/39935c.pdf#page=152), Alternate KiCad Library -QFN NoLead -0 -70 -45 -PCM_Package_DFN_QFN_AKL -QFN-44-1EP_8x8mm_P0.65mm_EP6.45x6.45mm_ThermalVias -QFN, 44 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/39935c.pdf#page=152), Alternate KiCad Library -QFN NoLead -0 -107 -45 -PCM_Package_DFN_QFN_AKL -QFN-44-1EP_9x9mm_P0.65mm_EP7.5x7.5mm -44-Lead Plastic Quad Flat, No Lead Package - 9x9 mm Body [QFN]; see section 10.3 of https://www.parallax.com/sites/default/files/downloads/P8X32A-Propeller-Datasheet-v1.4.0_0.pdf, Alternate KiCad Library -QFN 0.65 -0 -61 -45 -PCM_Package_DFN_QFN_AKL -QFN-44-1EP_9x9mm_P0.65mm_EP7.5x7.5mm_ThermalVias -44-Lead Plastic Quad Flat, No Lead Package - 9x9 mm Body [QFN] with thermal vias; see section 10.3 of https://www.parallax.com/sites/default/files/downloads/P8X32A-Propeller-Datasheet-v1.4.0_0.pdf, Alternate KiCad Library -QFN 0.65 -0 -67 -45 -PCM_Package_DFN_QFN_AKL -QFN-48-1EP_5x5mm_P0.35mm_EP3.7x3.7mm -QFN, 48 Pin (https://www.espressif.com/sites/default/files/documentation/esp32_datasheet_en.pdf#page=38), Alternate KiCad Library -QFN NoLead -0 -58 -49 -PCM_Package_DFN_QFN_AKL -QFN-48-1EP_5x5mm_P0.35mm_EP3.7x3.7mm_ThermalVias -QFN, 48 Pin (https://www.espressif.com/sites/default/files/documentation/esp32_datasheet_en.pdf#page=38), Alternate KiCad Library -QFN NoLead -0 -75 -49 -PCM_Package_DFN_QFN_AKL -QFN-48-1EP_6x6mm_P0.4mm_EP4.2x4.2mm -QFN, 48 Pin (https://static.dev.sifive.com/SiFive-FE310-G000-datasheet-v1p5.pdf#page=20), Alternate KiCad Library -QFN NoLead -0 -58 -49 -PCM_Package_DFN_QFN_AKL -QFN-48-1EP_6x6mm_P0.4mm_EP4.2x4.2mm_ThermalVias -QFN, 48 Pin (https://static.dev.sifive.com/SiFive-FE310-G000-datasheet-v1p5.pdf#page=20), Alternate KiCad Library -QFN NoLead -0 -91 -49 -PCM_Package_DFN_QFN_AKL -QFN-48-1EP_6x6mm_P0.4mm_EP4.3x4.3mm -QFN, 48 Pin (https://www.espressif.com/sites/default/files/documentation/esp32_datasheet_en.pdf#page=38), Alternate KiCad Library -QFN NoLead -0 -58 -49 -PCM_Package_DFN_QFN_AKL -QFN-48-1EP_6x6mm_P0.4mm_EP4.3x4.3mm_ThermalVias -QFN, 48 Pin (https://www.espressif.com/sites/default/files/documentation/esp32_datasheet_en.pdf#page=38), Alternate KiCad Library -QFN NoLead -0 -75 -49 -PCM_Package_DFN_QFN_AKL -QFN-48-1EP_6x6mm_P0.4mm_EP4.6x4.6mm -QFN, 48 Pin (http://infocenter.nordicsemi.com/pdf/nRF51822_PS_v3.3.pdf#page=67), Alternate KiCad Library -QFN NoLead -0 -58 -49 -PCM_Package_DFN_QFN_AKL -QFN-48-1EP_6x6mm_P0.4mm_EP4.6x4.6mm_ThermalVias -QFN, 48 Pin (http://infocenter.nordicsemi.com/pdf/nRF51822_PS_v3.3.pdf#page=67), Alternate KiCad Library -QFN NoLead -0 -91 -49 -PCM_Package_DFN_QFN_AKL -QFN-48-1EP_6x6mm_P0.4mm_EP4.66x4.66mm -QFN, 48 Pin (https://www.onsemi.com/pub/Collateral/485BA.PDF), Alternate KiCad Library -QFN NoLead -0 -58 -49 -PCM_Package_DFN_QFN_AKL -QFN-48-1EP_6x6mm_P0.4mm_EP4.66x4.66mm_ThermalVias -QFN, 48 Pin (https://www.onsemi.com/pub/Collateral/485BA.PDF), Alternate KiCad Library -QFN NoLead -0 -91 -49 -PCM_Package_DFN_QFN_AKL -QFN-48-1EP_7x7mm_P0.5mm_EP5.3x5.3mm -QFN, 48 Pin (https://www.trinamic.com/fileadmin/assets/Products/ICs_Documents/TMC2041_datasheet.pdf#page=62), Alternate KiCad Library -QFN NoLead -0 -65 -49 -PCM_Package_DFN_QFN_AKL -QFN-48-1EP_7x7mm_P0.5mm_EP5.3x5.3mm_ThermalVias -QFN, 48 Pin (https://www.trinamic.com/fileadmin/assets/Products/ICs_Documents/TMC2041_datasheet.pdf#page=62), Alternate KiCad Library -QFN NoLead -0 -91 -49 -PCM_Package_DFN_QFN_AKL -QFN-48-1EP_7x7mm_P0.5mm_EP5.6x5.6mm -QFN, 48 Pin (http://www.st.com/resource/en/datasheet/stm32f042k6.pdf#page=94), Alternate KiCad Library -QFN NoLead -0 -65 -49 -PCM_Package_DFN_QFN_AKL -QFN-48-1EP_7x7mm_P0.5mm_EP5.6x5.6mm_ThermalVias -QFN, 48 Pin (http://www.st.com/resource/en/datasheet/stm32f042k6.pdf#page=94), Alternate KiCad Library -QFN NoLead -0 -91 -49 -PCM_Package_DFN_QFN_AKL -QFN-48-1EP_7x7mm_P0.5mm_EP5.15x5.15mm -QFN, 48 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_48_05-08-1704.pdf), Alternate KiCad Library -QFN NoLead -0 -65 -49 -PCM_Package_DFN_QFN_AKL -QFN-48-1EP_7x7mm_P0.5mm_EP5.15x5.15mm_ThermalVias -QFN, 48 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_48_05-08-1704.pdf), Alternate KiCad Library -QFN NoLead -0 -91 -49 -PCM_Package_DFN_QFN_AKL -QFN-48-1EP_7x7mm_P0.5mm_EP5.45x5.45mm -QFN, 48 Pin (http://www.thatcorp.com/datashts/THAT_626x_Datasheet.pdf), Alternate KiCad Library -QFN NoLead -0 -65 -49 -PCM_Package_DFN_QFN_AKL -QFN-48-1EP_7x7mm_P0.5mm_EP5.45x5.45mm_ThermalVias -QFN, 48 Pin (http://www.thatcorp.com/datashts/THAT_626x_Datasheet.pdf), Alternate KiCad Library -QFN NoLead -0 -91 -49 -PCM_Package_DFN_QFN_AKL -QFN-48-1EP_8x8mm_P0.5mm_EP6.2x6.2mm -QFN, 48 Pin (https://www.ftdichip.com/Support/Documents/DataSheets/ICs/DS_FT232H.pdf#page=49), Alternate KiCad Library -QFN NoLead -0 -74 -49 -PCM_Package_DFN_QFN_AKL -QFN-48-1EP_8x8mm_P0.5mm_EP6.2x6.2mm_ThermalVias -QFN, 48 Pin (https://www.ftdichip.com/Support/Documents/DataSheets/ICs/DS_FT232H.pdf#page=49), Alternate KiCad Library -QFN NoLead -0 -111 -49 -PCM_Package_DFN_QFN_AKL -QFN-52-1EP_7x8mm_P0.5mm_EP5.41x6.45mm -QFN, 52 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_52_05-08-1729.pdf), Alternate KiCad Library -QFN NoLead -0 -73 -53 -PCM_Package_DFN_QFN_AKL -QFN-52-1EP_7x8mm_P0.5mm_EP5.41x6.45mm_ThermalVias -QFN, 52 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_52_05-08-1729.pdf), Alternate KiCad Library -QFN NoLead -0 -104 -53 -PCM_Package_DFN_QFN_AKL -QFN-56-1EP_7x7mm_P0.4mm_EP5.6x5.6mm -QFN, 56 Pin (http://www.cypress.com/file/416486/download#page=40), Alternate KiCad Library -QFN NoLead -0 -73 -57 -PCM_Package_DFN_QFN_AKL -QFN-56-1EP_7x7mm_P0.4mm_EP5.6x5.6mm_ThermalVias -QFN, 56 Pin (http://www.cypress.com/file/416486/download#page=40), Alternate KiCad Library -QFN NoLead -0 -99 -57 -PCM_Package_DFN_QFN_AKL -QFN-56-1EP_8x8mm_P0.5mm_EP4.3x4.3mm -QFN, 56 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/00002142A.pdf#page=40), Alternate KiCad Library -QFN NoLead -0 -73 -57 -PCM_Package_DFN_QFN_AKL -QFN-56-1EP_8x8mm_P0.5mm_EP4.3x4.3mm_ThermalVias -QFN, 56 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/00002142A.pdf#page=40), Alternate KiCad Library -QFN NoLead -0 -99 -57 -PCM_Package_DFN_QFN_AKL -QFN-56-1EP_8x8mm_P0.5mm_EP4.5x5.2mm -QFN, 56 Pin (http://www.ti.com/lit/an/scea032/scea032.pdf#page=4), Alternate KiCad Library -QFN NoLead -0 -73 -57 -PCM_Package_DFN_QFN_AKL -QFN-56-1EP_8x8mm_P0.5mm_EP4.5x5.2mm_ThermalVias -QFN, 56 Pin (http://www.ti.com/lit/an/scea032/scea032.pdf#page=4), Alternate KiCad Library -QFN NoLead -0 -99 -57 -PCM_Package_DFN_QFN_AKL -QFN-56-1EP_8x8mm_P0.5mm_EP5.6x5.6mm -QFN, 56 Pin (http://www.ti.com/lit/ds/symlink/tlc5957.pdf#page=23), Alternate KiCad Library -QFN NoLead -0 -73 -57 -PCM_Package_DFN_QFN_AKL -QFN-56-1EP_8x8mm_P0.5mm_EP5.6x5.6mm_ThermalVias -QFN, 56 Pin (http://www.ti.com/lit/ds/symlink/tlc5957.pdf#page=23), Alternate KiCad Library -QFN NoLead -0 -99 -57 -PCM_Package_DFN_QFN_AKL -QFN-64-1EP_8x8mm_P0.4mm_EP6.5x6.5mm -QFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/64L_VQFN_8x8_with%206_5x6_5%20EP_JXX_C04-0437A.pdf), Alternate KiCad Library -QFN NoLead -0 -90 -65 -PCM_Package_DFN_QFN_AKL -QFN-64-1EP_8x8mm_P0.4mm_EP6.5x6.5mm_ThermalVias -QFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/64L_VQFN_8x8_with%206_5x6_5%20EP_JXX_C04-0437A.pdf), Alternate KiCad Library -QFN NoLead -0 -127 -65 -PCM_Package_DFN_QFN_AKL -QFN-64-1EP_9x9mm_P0.5mm_EP3.8x3.8mm -QFN, 64 Pin (https://datasheet.lcsc.com/szlcsc/Realtek-Semicon-RTL8211EG-VB-CG_C69264.pdf#page=77), Alternate KiCad Library -QFN NoLead -0 -74 -65 -PCM_Package_DFN_QFN_AKL -QFN-64-1EP_9x9mm_P0.5mm_EP3.8x3.8mm_ThermalVias -QFN, 64 Pin (https://datasheet.lcsc.com/szlcsc/Realtek-Semicon-RTL8211EG-VB-CG_C69264.pdf#page=77), Alternate KiCad Library -QFN NoLead -0 -79 -65 -PCM_Package_DFN_QFN_AKL -QFN-64-1EP_9x9mm_P0.5mm_EP4.7x4.7mm -QFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/60001477A.pdf (page 1083)), Alternate KiCad Library -QFN NoLead -0 -74 -65 -PCM_Package_DFN_QFN_AKL -QFN-64-1EP_9x9mm_P0.5mm_EP4.7x4.7mm_ThermalVias -QFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/60001477A.pdf (page 1083)), Alternate KiCad Library -QFN NoLead -0 -91 -65 -PCM_Package_DFN_QFN_AKL -QFN-64-1EP_9x9mm_P0.5mm_EP4.35x4.35mm -QFN, 64 Pin (https://www.ftdichip.com/Support/Documents/DataSheets/ICs/DS_FT2232H.pdf#page=57), Alternate KiCad Library -QFN NoLead -0 -74 -65 -PCM_Package_DFN_QFN_AKL -QFN-64-1EP_9x9mm_P0.5mm_EP4.35x4.35mm_ThermalVias -QFN, 64 Pin (https://www.ftdichip.com/Support/Documents/DataSheets/ICs/DS_FT2232H.pdf#page=57), Alternate KiCad Library -QFN NoLead -0 -91 -65 -PCM_Package_DFN_QFN_AKL -QFN-64-1EP_9x9mm_P0.5mm_EP5.4x5.4mm -QFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/70593d.pdf), Alternate KiCad Library -QFN NoLead -0 -81 -65 -PCM_Package_DFN_QFN_AKL -QFN-64-1EP_9x9mm_P0.5mm_EP5.4x5.4mm_ThermalVias -QFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/70593d.pdf), Alternate KiCad Library -QFN NoLead -0 -107 -65 -PCM_Package_DFN_QFN_AKL -QFN-64-1EP_9x9mm_P0.5mm_EP5.45x5.45mm -QFN, 64 Pin (https://www.infineon.com/dgdl/Infineon-MA12040-DS-v01_00-EN.pdf?fileId=5546d46264a8de7e0164b7467a3d617c#page=81), Alternate KiCad Library -QFN NoLead -0 -81 -65 -PCM_Package_DFN_QFN_AKL -QFN-64-1EP_9x9mm_P0.5mm_EP5.45x5.45mm_ThermalVias -QFN, 64 Pin (https://www.infineon.com/dgdl/Infineon-MA12040-DS-v01_00-EN.pdf?fileId=5546d46264a8de7e0164b7467a3d617c#page=81), Alternate KiCad Library -QFN NoLead -0 -107 -65 -PCM_Package_DFN_QFN_AKL -QFN-64-1EP_9x9mm_P0.5mm_EP6x6mm -QFN, 64 Pin (http://www.ti.com/lit/ds/symlink/tusb8041.pdf#page=42), Alternate KiCad Library -QFN NoLead -0 -81 -65 -PCM_Package_DFN_QFN_AKL -QFN-64-1EP_9x9mm_P0.5mm_EP6x6mm_ThermalVias -QFN, 64 Pin (http://www.ti.com/lit/ds/symlink/tusb8041.pdf#page=42), Alternate KiCad Library -QFN NoLead -0 -107 -65 -PCM_Package_DFN_QFN_AKL -QFN-64-1EP_9x9mm_P0.5mm_EP7.3x7.3mm -QFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/00002304A.pdf (page 43)), Alternate KiCad Library -QFN NoLead -0 -90 -65 -PCM_Package_DFN_QFN_AKL -QFN-64-1EP_9x9mm_P0.5mm_EP7.3x7.3mm_ThermalVias -QFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/00002304A.pdf (page 43)), Alternate KiCad Library -QFN NoLead -0 -127 -65 -PCM_Package_DFN_QFN_AKL -QFN-64-1EP_9x9mm_P0.5mm_EP7.5x7.5mm -QFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/doc7593.pdf (page 432)), Alternate KiCad Library -QFN NoLead -0 -101 -65 -PCM_Package_DFN_QFN_AKL -QFN-64-1EP_9x9mm_P0.5mm_EP7.5x7.5mm_ThermalVias -QFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/doc7593.pdf (page 432)), Alternate KiCad Library -QFN NoLead -0 -151 -65 -PCM_Package_DFN_QFN_AKL -QFN-64-1EP_9x9mm_P0.5mm_EP7.15x7.15mm -QFN, 64 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/229321fa.pdf#page=27), Alternate KiCad Library -QFN NoLead -0 -90 -65 -PCM_Package_DFN_QFN_AKL -QFN-64-1EP_9x9mm_P0.5mm_EP7.15x7.15mm_ThermalVias -QFN, 64 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/229321fa.pdf#page=27), Alternate KiCad Library -QFN NoLead -0 -127 -65 -PCM_Package_DFN_QFN_AKL -QFN-64-1EP_9x9mm_P0.5mm_EP7.25x7.25mm -64-Lead Plastic Quad Flat No-Lead Package, 9x9mm Body (see Atmel Appnote 8826), Alternate KiCad Library -QFN 0.5 -0 -90 -65 -PCM_Package_DFN_QFN_AKL -QFN-64-1EP_9x9mm_P0.5mm_EP7.35x7.35mm -64-Lead Plastic Quad Flat, No Lead Package (MR) - 9x9x0.9 mm Body [QFN]; (see Microchip Packaging Specification 00000049BS.pdf), Alternate KiCad Library -QFN 0.5 -0 -90 -65 -PCM_Package_DFN_QFN_AKL -QFN-64-1EP_9x9mm_P0.5mm_EP7.65x7.65mm -QFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/Atmel-2549-8-bit-AVR-Microcontroller-ATmega640-1280-1281-2560-2561_datasheet.pdf (page 415)), Alternate KiCad Library -QFN NoLead -0 -101 -65 -PCM_Package_DFN_QFN_AKL -QFN-64-1EP_9x9mm_P0.5mm_EP7.65x7.65mm_ThermalVias -QFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/Atmel-2549-8-bit-AVR-Microcontroller-ATmega640-1280-1281-2560-2561_datasheet.pdf (page 415)), Alternate KiCad Library -QFN NoLead -0 -151 -65 -PCM_Package_DFN_QFN_AKL -QFN-68-1EP_8x8mm_P0.4mm_EP5.2x5.2mm -QFN, 68 Pin (https://cdn.microsemi.com/documents/1bf6886f-5919-4508-a50b-b1dbf3fdf0f4/download/#page=98), Alternate KiCad Library -QFN NoLead -0 -85 -69 -PCM_Package_DFN_QFN_AKL -QFN-68-1EP_8x8mm_P0.4mm_EP5.2x5.2mm_ThermalVias -QFN, 68 Pin (https://cdn.microsemi.com/documents/1bf6886f-5919-4508-a50b-b1dbf3fdf0f4/download/#page=98), Alternate KiCad Library -QFN NoLead -0 -111 -69 -PCM_Package_DFN_QFN_AKL -QFN-72-1EP_10x10mm_P0.5mm_EP6x6mm -QFN, 72 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/00001682C.pdf#page=70), Alternate KiCad Library -QFN NoLead -0 -82 -73 -PCM_Package_DFN_QFN_AKL -QFN-72-1EP_10x10mm_P0.5mm_EP6x6mm_ThermalVias -QFN, 72 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/00001682C.pdf#page=70), Alternate KiCad Library -QFN NoLead -0 -135 -73 -PCM_Package_DFN_QFN_AKL -QFN-76-1EP_9x9mm_P0.4mm_EP3.8x3.8mm -QFN, 76 Pin (https://www.marvell.com/documents/bqcwxsoiqfjkcjdjhkvc/#page=19), Alternate KiCad Library -QFN NoLead -0 -86 -77 -PCM_Package_DFN_QFN_AKL -QFN-76-1EP_9x9mm_P0.4mm_EP3.8x3.8mm_ThermalVias -QFN, 76 Pin (https://www.marvell.com/documents/bqcwxsoiqfjkcjdjhkvc/#page=19), Alternate KiCad Library -QFN NoLead -0 -103 -77 -PCM_Package_DFN_QFN_AKL -Qorvo_DFN-8-1EP_2x2mm_P0.5mm -DFN 8 2x2mm, 0.5mm http://www.qorvo.com/products/d/da000896, Alternate KiCad Library -DFN 0.5 Qorvo 2x2mm -0 -9 -9 -PCM_Package_DFN_QFN_AKL -ROHM_DFN0604-3 -DFN package size 0604 3 pins, Alternate KiCad Library -DFN package size 0604 3 pins -0 -3 -3 -PCM_Package_DFN_QFN_AKL -ST_UFQFPN-20_3x3mm_P0.5mm -UFQFPN 20-lead, 3 x 3 mm, 0.5 mm pitch, ultra thin fine pitch quad flat package (http://www.st.com/resource/en/datasheet/stm8s003f3.pdf), Alternate KiCad Library -UFQFPN 0.5 -0 -20 -20 -PCM_Package_DFN_QFN_AKL -ST_UQFN-6L_1.5x1.7mm_Pitch0.5mm -ST UQFN 6 pin 0.5mm Pitch http://www.st.com/resource/en/datasheet/ecmf02-2amx6.pdf, Alternate KiCad Library -UQFN DFN 0.5 ST -0 -6 -6 -PCM_Package_DFN_QFN_AKL -SiliconLabs_QFN-20-1EP_3x3mm_P0.5mm -20-Lead Plastic Quad Flat, No Lead Package - 3x3 mm Body [QFN] with corner pads; see figure 8.2 of https://www.silabs.com/documents/public/data-sheets/efm8bb1-datasheet.pdf, Alternate KiCad Library -QFN 0.5 -0 -25 -21 -PCM_Package_DFN_QFN_AKL -SiliconLabs_QFN-20-1EP_3x3mm_P0.5mm_EP1.8x1.8mm -20-Lead Plastic Quad Flat, No Lead Package - 3x3 mm Body [QFN] with corner pads; see figure 8.2 of https://www.silabs.com/documents/public/data-sheets/efm8bb1-datasheet.pdf, Alternate KiCad Library -QFN 0.5 -0 -25 -21 -PCM_Package_DFN_QFN_AKL -SiliconLabs_QFN-20-1EP_3x3mm_P0.5mm_EP1.8x1.8mm_ThermalVias -20-Lead Plastic Quad Flat, No Lead Package - 3x3 mm Body [QFN] with corner pads and thermal vias; see figure 8.2 of https://www.silabs.com/documents/public/data-sheets/efm8bb1-datasheet.pdf, Alternate KiCad Library -QFN 0.5 -0 -31 -21 -PCM_Package_DFN_QFN_AKL -SiliconLabs_QFN-20-1EP_3x3mm_P0.5mm_ThermalVias -20-Lead Plastic Quad Flat, No Lead Package - 3x3 mm Body [QFN] with corner pads and thermal vias; see figure 8.2 of https://www.silabs.com/documents/public/data-sheets/efm8bb1-datasheet.pdf, Alternate KiCad Library -QFN 0.5 -0 -31 -21 -PCM_Package_DFN_QFN_AKL -TDFN-6-1EP_2.5x2.5mm_P0.65mm_EP1.3x2mm -TDFN, 6 Pin (http://www.nve.com/Downloads/ab3.pdf), Alternate KiCad Library -TDFN NoLead -0 -11 -7 -PCM_Package_DFN_QFN_AKL -TDFN-6-1EP_2.5x2.5mm_P0.65mm_EP1.3x2mm_ThermalVias -TDFN, 6 Pin (http://www.nve.com/Downloads/ab3.pdf), Alternate KiCad Library -TDFN NoLead -0 -18 -7 -PCM_Package_DFN_QFN_AKL -TDFN-8-1EP_2x2mm_P0.5mm_EP0.8x1.2mm -TDFN, 8 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0168.PDF), Alternate KiCad Library -TDFN NoLead -0 -13 -9 -PCM_Package_DFN_QFN_AKL -TDFN-8-1EP_3x2mm_P0.5mm_EP1.80x1.65mm -8-lead plastic dual flat, 2x3x0.75mm size, 0.5mm pitch (http://ww1.microchip.com/downloads/en/DeviceDoc/8L_TDFN_2x3_MN_C04-0129E-MN.pdf), Alternate KiCad Library -TDFN DFN 0.5mm -0 -13 -9 -PCM_Package_DFN_QFN_AKL -TDFN-8-1EP_3x2mm_P0.5mm_EP1.80x1.65mm_ThermalVias -8-lead plastic dual flat, 2x3x0.75mm size, 0.5mm pitch (http://ww1.microchip.com/downloads/en/DeviceDoc/8L_TDFN_2x3_MN_C04-0129E-MN.pdf), Alternate KiCad Library -TDFN DFN 0.5mm -0 -18 -9 -PCM_Package_DFN_QFN_AKL -TDFN-10-1EP_2x3mm_P0.5mm_EP0.9x2mm -TDFN, 10 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0429.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py, Alternate KiCad Library -TDFN NoLead -0 -13 -11 -PCM_Package_DFN_QFN_AKL -TDFN-10-1EP_2x3mm_P0.5mm_EP0.9x2mm_ThermalVias -TDFN, 10 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0429.PDF), Alternate KiCad Library -TDFN NoLead -0 -16 -11 -PCM_Package_DFN_QFN_AKL -TDFN-12_2x3mm_P0.5mm -TDFN, 12 Pads, No exposed, http://www.st.com/resource/en/datasheet/stm6600.pdf, Alternate KiCad Library -DFN -0 -12 -12 -PCM_Package_DFN_QFN_AKL -TQFN-16-1EP_3x3mm_P0.5mm_EP1.6x1.6mm -TQFN, 16 Pin (https://www.diodes.com/assets/Datasheets/PI6C5946002.pdf#page=12), Alternate KiCad Library -TQFN NoLead -0 -21 -17 -PCM_Package_DFN_QFN_AKL -TQFN-16-1EP_3x3mm_P0.5mm_EP1.23x1.23mm -TQFN, 16 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0136.PDF (T1633-5), https://pdfserv.maximintegrated.com/land_patterns/90-0032.PDF), Alternate KiCad Library -TQFN NoLead -0 -21 -17 -PCM_Package_DFN_QFN_AKL -TQFN-16-1EP_3x3mm_P0.5mm_EP1.23x1.23mm_ThermalVias -TQFN, 16 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0136.PDF (T1633-5), https://pdfserv.maximintegrated.com/land_patterns/90-0032.PDF), Alternate KiCad Library -TQFN NoLead -0 -26 -17 -PCM_Package_DFN_QFN_AKL -TQFN-16-1EP_5x5mm_P0.8mm_EP2.29x2.29mm -TQFN, 16 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T1655-4)), Alternate KiCad Library -TQFN NoLead -0 -21 -17 -PCM_Package_DFN_QFN_AKL -TQFN-16-1EP_5x5mm_P0.8mm_EP2.29x2.29mm_ThermalVias -TQFN, 16 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T1655-4)), Alternate KiCad Library -TQFN NoLead -0 -26 -17 -PCM_Package_DFN_QFN_AKL -TQFN-16-1EP_5x5mm_P0.8mm_EP3.1x3.1mm -TQFN, 16 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T1655-2)), Alternate KiCad Library -TQFN NoLead -0 -21 -17 -PCM_Package_DFN_QFN_AKL -TQFN-16-1EP_5x5mm_P0.8mm_EP3.1x3.1mm_ThermalVias -TQFN, 16 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T1655-2)), Alternate KiCad Library -TQFN NoLead -0 -31 -17 -PCM_Package_DFN_QFN_AKL -TQFN-20-1EP_5x5mm_P0.65mm_EP3.1x3.1mm -TQFN, 20 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T2055-3)), Alternate KiCad Library -TQFN NoLead -0 -25 -21 -PCM_Package_DFN_QFN_AKL -TQFN-20-1EP_5x5mm_P0.65mm_EP3.1x3.1mm_ThermalVias -TQFN, 20 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T2055-3)), Alternate KiCad Library -TQFN NoLead -0 -35 -21 -PCM_Package_DFN_QFN_AKL -TQFN-20-1EP_5x5mm_P0.65mm_EP3.25x3.25mm -TQFN, 20 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T2055-5)), Alternate KiCad Library -TQFN NoLead -0 -25 -21 -PCM_Package_DFN_QFN_AKL -TQFN-20-1EP_5x5mm_P0.65mm_EP3.25x3.25mm_ThermalVias -TQFN, 20 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T2055-5)), Alternate KiCad Library -TQFN NoLead -0 -35 -21 -PCM_Package_DFN_QFN_AKL -TQFN-24-1EP_4x4mm_P0.5mm_EP2.8x2.8mm_PullBack -TQFN, 24 Pin (https://ams.com/documents/20143/36005/AS1115_DS000206_1-00.pdf), Alternate KiCad Library -TQFN NoLead -0 -29 -25 -PCM_Package_DFN_QFN_AKL -TQFN-24-1EP_4x4mm_P0.5mm_EP2.8x2.8mm_PullBack_ThermalVias -TQFN, 24 Pin (https://ams.com/documents/20143/36005/AS1115_DS000206_1-00.pdf), Alternate KiCad Library -TQFN NoLead -0 -39 -25 -PCM_Package_DFN_QFN_AKL -TQFN-28-1EP_5x5mm_P0.5mm_EP2.7x2.7mm -TQFN, 28 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T2855-4)), Alternate KiCad Library -TQFN NoLead -0 -33 -29 -PCM_Package_DFN_QFN_AKL -TQFN-28-1EP_5x5mm_P0.5mm_EP2.7x2.7mm_ThermalVias -TQFN, 28 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T2855-4)), Alternate KiCad Library -TQFN NoLead -0 -38 -29 -PCM_Package_DFN_QFN_AKL -TQFN-28-1EP_5x5mm_P0.5mm_EP3.25x3.25mm -TQFN, 28 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T2855-3)), Alternate KiCad Library -TQFN NoLead -0 -33 -29 -PCM_Package_DFN_QFN_AKL -TQFN-28-1EP_5x5mm_P0.5mm_EP3.25x3.25mm_ThermalVias -TQFN, 28 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T2855-3)), Alternate KiCad Library -TQFN NoLead -0 -43 -29 -PCM_Package_DFN_QFN_AKL -TQFN-32-1EP_5x5mm_P0.5mm_EP2.1x2.1mm -TQFN, 32 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T3255-6)), Alternate KiCad Library -TQFN NoLead -0 -37 -33 -PCM_Package_DFN_QFN_AKL -TQFN-32-1EP_5x5mm_P0.5mm_EP2.1x2.1mm_ThermalVias -TQFN, 32 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T3255-6)), Alternate KiCad Library -TQFN NoLead -0 -42 -33 -PCM_Package_DFN_QFN_AKL -TQFN-32-1EP_5x5mm_P0.5mm_EP3.1x3.1mm -TQFN, 32 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T3255-3)), Alternate KiCad Library -TQFN NoLead -0 -37 -33 -PCM_Package_DFN_QFN_AKL -TQFN-32-1EP_5x5mm_P0.5mm_EP3.1x3.1mm_ThermalVias -TQFN, 32 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T3255-3)), Alternate KiCad Library -TQFN NoLead -0 -47 -33 -PCM_Package_DFN_QFN_AKL -TQFN-32-1EP_5x5mm_P0.5mm_EP3.4x3.4mm -TQFN, 32 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T3255-9)), Alternate KiCad Library -TQFN NoLead -0 -37 -33 -PCM_Package_DFN_QFN_AKL -TQFN-32-1EP_5x5mm_P0.5mm_EP3.4x3.4mm_ThermalVias -TQFN, 32 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T3255-9)), Alternate KiCad Library -TQFN NoLead -0 -47 -33 -PCM_Package_DFN_QFN_AKL -TQFN-40-1EP_5x5mm_P0.4mm_EP3.5x3.5mm -TQFN, 40 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T4055-1)), Alternate KiCad Library -TQFN NoLead -0 -45 -41 -PCM_Package_DFN_QFN_AKL -TQFN-40-1EP_5x5mm_P0.4mm_EP3.5x3.5mm_ThermalVias -TQFN, 40 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T4055-1)), Alternate KiCad Library -TQFN NoLead -0 -55 -41 -PCM_Package_DFN_QFN_AKL -TQFN-48-1EP_7x7mm_P0.5mm_EP5.1x5.1mm -TQFN, 48 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0144.PDF), Alternate KiCad Library -TQFN NoLead -0 -58 -49 -PCM_Package_DFN_QFN_AKL -TQFN-48-1EP_7x7mm_P0.5mm_EP5.1x5.1mm_ThermalVias -TQFN, 48 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0144.PDF), Alternate KiCad Library -TQFN NoLead -0 -75 -49 -PCM_Package_DFN_QFN_AKL -Texas_DRB0008A -DFN-8, 3x3x1mm, http://www.ti.com/lit/ds/symlink/ucc24610.pdf, Alternate KiCad Library -DRB0008A -0 -23 -9 -PCM_Package_DFN_QFN_AKL -Texas_MOF0009A -Texas Instruments, QFM MOF0009A, 6x8x2mm (http://www.ti.com/lit/ml/mpsi063a/mpsi063a.pdf), Alternate KiCad Library -ti qfm mof0009a -0 -24 -9 -PCM_Package_DFN_QFN_AKL -Texas_QFN-41_10x16mm -QFN, 41 Pin (http://www.ti.com/lit/ml/mpqf506/mpqf506.pdf), Alternate KiCad Library -QFN DFN_QFN -0 -65 -41 -PCM_Package_DFN_QFN_AKL -Texas_R-PUQFN-N10 -http://www.ti.com/general/docs/lit/getliterature.tsp?baseLiteratureNumber=MPQF186&fileType=pdf, Alternate KiCad Library -Texas_R-PUQFN-N10 -0 -10 -10 -PCM_Package_DFN_QFN_AKL -Texas_R-PWQFN-N28_EP2.1x3.1mm -QFN, 28 Pin (http://www.ti.com/lit/ds/symlink/tps51363.pdf#page=29), Alternate KiCad Library -QFN NoLead -0 -33 -29 -PCM_Package_DFN_QFN_AKL -Texas_R-PWQFN-N28_EP2.1x3.1mm_ThermalVias -QFN, 28 Pin (http://www.ti.com/lit/ds/symlink/tps51363.pdf#page=29), Alternate KiCad Library -QFN NoLead -0 -43 -29 -PCM_Package_DFN_QFN_AKL -Texas_RGE0024C_EP2.1x2.1mm -Texas QFN, 24 Pin (http://www.ti.com/lit/ds/symlink/pca9548a.pdf#page=37), Alternate KiCad Library -Texas QFN NoLead -0 -29 -25 -PCM_Package_DFN_QFN_AKL -Texas_RGE0024C_EP2.1x2.1mm_ThermalVias -Texas QFN, 24 Pin (http://www.ti.com/lit/ds/symlink/pca9548a.pdf#page=37), Alternate KiCad Library -Texas QFN NoLead -0 -39 -25 -PCM_Package_DFN_QFN_AKL -Texas_RGE0024H_EP2.7x2.7mm -Texas QFN, 24 Pin (http://www.ti.com/lit/ds/symlink/tlc5971.pdf#page=39), Alternate KiCad Library -Texas QFN NoLead -0 -29 -25 -PCM_Package_DFN_QFN_AKL -Texas_RGE0024H_EP2.7x2.7mm_ThermalVias -Texas QFN, 24 Pin (http://www.ti.com/lit/ds/symlink/tlc5971.pdf#page=39), Alternate KiCad Library -Texas QFN NoLead -0 -39 -25 -PCM_Package_DFN_QFN_AKL -Texas_RGV_S-PVQFN-N16_EP2.1x2.1mm -QFN, 16 Pin (http://www.ti.com/lit/ds/symlink/ina3221.pdf#page=44), Alternate KiCad Library -QFN NoLead -0 -21 -17 -PCM_Package_DFN_QFN_AKL -Texas_RGV_S-PVQFN-N16_EP2.1x2.1mm_ThermalVias -QFN, 16 Pin (http://www.ti.com/lit/ds/symlink/ina3221.pdf#page=44), Alternate KiCad Library -QFN NoLead -0 -31 -17 -PCM_Package_DFN_QFN_AKL -Texas_RGY_R-PVQFN-N24_EP2.05x3.1mm -QFN, 24 Pin (http://www.ti.com/lit/ds/symlink/bq24133.pdf#page=40), Alternate KiCad Library -QFN NoLead -0 -29 -25 -PCM_Package_DFN_QFN_AKL -Texas_RGY_R-PVQFN-N24_EP2.05x3.1mm_ThermalVias -QFN, 24 Pin (http://www.ti.com/lit/ds/symlink/bq24133.pdf#page=40), Alternate KiCad Library -QFN NoLead -0 -36 -25 -PCM_Package_DFN_QFN_AKL -Texas_RNN0018A -Texas Instruments, VQFN-HR RNN0018A (http://www.ti.com/lit/ds/symlink/tps568215.pdf), Alternate KiCad Library -ti vqfn-hr rnn0018a -0 -26 -18 -PCM_Package_DFN_QFN_AKL -Texas_RSV_UQFN16_1.8x2.6mm_P0.4mm -UQFN-16 RSV Package, 1.8x2.6mm Size, 0.4mm Pin Pitch, see: https://www.ti.com/lit/ds/sbos259f/sbos259f.pdf?ts=1640682968070&ref_url=https%253A%252F%252Fwww.google.com%252F, Alternate KiCad Library -QFN UQFN RSV 1.8x2.6 -0 -16 -16 -PCM_Package_DFN_QFN_AKL -Texas_RUM0016A_EP2.6x2.6mm -QFN, 16 Pin (http://www.ti.com/lit/ds/symlink/lmh0074.pdf#page=13), Alternate KiCad Library -QFN NoLead -0 -21 -17 -PCM_Package_DFN_QFN_AKL -Texas_RUM0016A_EP2.6x2.6mm_ThermalVias -QFN, 16 Pin (http://www.ti.com/lit/ds/symlink/lmh0074.pdf#page=13), Alternate KiCad Library -QFN NoLead -0 -31 -17 -PCM_Package_DFN_QFN_AKL -Texas_RWH0032A -Texas Instruments, RWH0032A, 8x8x0.9mm (http://www.ti.com/lit/ds/snosd10c/snosd10c.pdf), Alternate KiCad Library -ti rwh0032a -0 -43 -33 -PCM_Package_DFN_QFN_AKL -Texas_RWH0032A_ThermalVias -Texas Instruments, RWH0032A, 8x8x0.9mm (http://www.ti.com/lit/ds/snosd10c/snosd10c.pdf), Alternate KiCad Library -ti rwh0032a -0 -66 -33 -PCM_Package_DFN_QFN_AKL -Texas_R_PUQFN-N12 -Texas_R_PUQFN-N12 http://www.ti.com/lit/ds/symlink/txb0104.pdf, Alternate KiCad Library -Texas_R_PUQFN-N12 -0 -13 -12 -PCM_Package_DFN_QFN_AKL -Texas_S-PDSO-N10_EP1.2x2mm -DFN, 10 Pin (http://www.ti.com/lit/ds/symlink/tps7a91.pdf#page=30), Alternate KiCad Library -DFN NoLead -0 -15 -11 -PCM_Package_DFN_QFN_AKL -Texas_S-PDSO-N10_EP1.2x2mm_ThermalVias -DFN, 10 Pin (http://www.ti.com/lit/ds/symlink/tps7a91.pdf#page=30), Alternate KiCad Library -DFN NoLead -0 -22 -11 -PCM_Package_DFN_QFN_AKL -Texas_S-PVQFN-N14 -Texas_S-PVQFN-N14 http://www.ti.com/lit/ds/symlink/txb0104.pdf, Alternate KiCad Library -Texas_S-PVQFN-N14_4.3x4.3_Pitch0.5mm_ThermalPad -0 -19 -15 -PCM_Package_DFN_QFN_AKL -Texas_S-PVQFN-N14_ThermalVias -Texas_S-PVQFN-N14_ThermalVias http://www.ti.com/lit/ds/symlink/txb0104.pdf, Alternate KiCad Library -Texas_S-PVQFN-N14_ThermalVias -0 -24 -15 -PCM_Package_DFN_QFN_AKL -Texas_S-PVQFN-N16_EP2.7x2.7mm -QFN, 16 Pin (http://www.ti.com/lit/ds/symlink/msp430g2001.pdf#page=43), Alternate KiCad Library -QFN NoLead -0 -26 -17 -PCM_Package_DFN_QFN_AKL -Texas_S-PVQFN-N16_EP2.7x2.7mm_ThermalVias -QFN, 16 Pin (http://www.ti.com/lit/ds/symlink/msp430g2001.pdf#page=43), Alternate KiCad Library -QFN NoLead -0 -31 -17 -PCM_Package_DFN_QFN_AKL -Texas_S-PVQFN-N20_EP2.4x2.4mm -QFN, 20 Pin (http://www.ti.com/lit/ds/symlink/cc1101.pdf#page=101), Alternate KiCad Library -QFN NoLead -0 -25 -21 -PCM_Package_DFN_QFN_AKL -Texas_S-PVQFN-N20_EP2.4x2.4mm_ThermalVias -QFN, 20 Pin (http://www.ti.com/lit/ds/symlink/cc1101.pdf#page=101), Alternate KiCad Library -QFN NoLead -0 -35 -21 -PCM_Package_DFN_QFN_AKL -Texas_S-PVQFN-N20_EP2.7x2.7mm -QFN, 20 Pin (http://www.ti.com/lit/ds/symlink/drv8662.pdf#page=23), Alternate KiCad Library -QFN NoLead -0 -25 -21 -PCM_Package_DFN_QFN_AKL -Texas_S-PVQFN-N20_EP2.7x2.7mm_ThermalVias -QFN, 20 Pin (http://www.ti.com/lit/ds/symlink/drv8662.pdf#page=23), Alternate KiCad Library -QFN NoLead -0 -35 -21 -PCM_Package_DFN_QFN_AKL -Texas_S-PVQFN-N20_EP3.15x3.15mm -QFN, 20 Pin (www.ti.com/lit/ds/symlink/tps7a7200.pdf#page=36), Alternate KiCad Library -QFN NoLead -0 -25 -21 -PCM_Package_DFN_QFN_AKL -Texas_S-PVQFN-N20_EP3.15x3.15mm_ThermalVias -QFN, 20 Pin (www.ti.com/lit/ds/symlink/tps7a7200.pdf#page=36), Alternate KiCad Library -QFN NoLead -0 -47 -21 -PCM_Package_DFN_QFN_AKL -Texas_S-PVQFN-N24_EP2.1x2.1mm -QFN, 24 Pin (http://www.ti.com/lit/ds/symlink/msp430fr5720.pdf#page=108), Alternate KiCad Library -QFN NoLead -0 -29 -25 -PCM_Package_DFN_QFN_AKL -Texas_S-PVQFN-N24_EP2.1x2.1mm_ThermalVias -QFN, 24 Pin (http://www.ti.com/lit/ds/symlink/msp430fr5720.pdf#page=108), Alternate KiCad Library -QFN NoLead -0 -39 -25 -PCM_Package_DFN_QFN_AKL -Texas_S-PVQFN-N32_EP3.45x3.45mm -QFN, 32 Pin (http://www.ti.com/lit/ds/symlink/msp430f1122.pdf#page=54), Alternate KiCad Library -QFN NoLead -0 -42 -33 -PCM_Package_DFN_QFN_AKL -Texas_S-PVQFN-N32_EP3.45x3.45mm_ThermalVias -QFN, 32 Pin (http://www.ti.com/lit/ds/symlink/msp430f1122.pdf#page=54), Alternate KiCad Library -QFN NoLead -0 -59 -33 -PCM_Package_DFN_QFN_AKL -Texas_S-PVQFN-N36_EP4.4x4.4mm -QFN, 36 Pin (http://www.ti.com/lit/ds/slvsba5d/slvsba5d.pdf#page=35), Alternate KiCad Library -QFN NoLead -0 -46 -37 -PCM_Package_DFN_QFN_AKL -Texas_S-PVQFN-N36_EP4.4x4.4mm_ThermalVias -QFN, 36 Pin (http://www.ti.com/lit/ds/slvsba5d/slvsba5d.pdf#page=35), Alternate KiCad Library -QFN NoLead -0 -79 -37 -PCM_Package_DFN_QFN_AKL -Texas_S-PVQFN-N40_EP2.9x2.9mm -QFN, 40 Pin (http://www.ti.com/lit/ds/symlink/msp430fr5731.pdf#page=111 JEDEC MO-220 variation VJJD-2), Alternate KiCad Library -QFN NoLead -0 -45 -41 -PCM_Package_DFN_QFN_AKL -Texas_S-PVQFN-N40_EP2.9x2.9mm_ThermalVias -QFN, 40 Pin (http://www.ti.com/lit/ds/symlink/msp430fr5731.pdf#page=111 JEDEC MO-220 variation VJJD-2), Alternate KiCad Library -QFN NoLead -0 -55 -41 -PCM_Package_DFN_QFN_AKL -Texas_S-PVQFN-N40_EP3.52x2.62mm -QFN, 40 Pin (http://www.ti.com/lit/ds/symlink/drv8308.pdf#page=56 JEDEC MO-220 variation VJJD-2), Alternate KiCad Library -QFN NoLead -0 -47 -41 -PCM_Package_DFN_QFN_AKL -Texas_S-PVQFN-N40_EP3.52x2.62mm_ThermalVias -QFN, 40 Pin (http://www.ti.com/lit/ds/symlink/drv8308.pdf#page=56 JEDEC MO-220 variation VJJD-2), Alternate KiCad Library -QFN NoLead -0 -60 -41 -PCM_Package_DFN_QFN_AKL -Texas_S-PVQFN-N40_EP4.6x4.6mm -QFN, 40 Pin (http://www.ti.com/lit/ds/symlink/dac7750.pdf#page=54), Alternate KiCad Library -QFN NoLead -0 -50 -41 -PCM_Package_DFN_QFN_AKL -Texas_S-PVQFN-N40_EP4.6x4.6mm_ThermalVias -QFN, 40 Pin (http://www.ti.com/lit/ds/symlink/dac7750.pdf#page=54), Alternate KiCad Library -QFN NoLead -0 -83 -41 -PCM_Package_DFN_QFN_AKL -Texas_S-PVQFN-N40_EP4.15x4.15mm -QFN, 40 Pin (http://www.ti.com/lit/ds/symlink/msp430g2755.pdf#page=70 JEDEC MO-220 variation VJJD-2), Alternate KiCad Library -QFN NoLead -0 -50 -41 -PCM_Package_DFN_QFN_AKL -Texas_S-PVQFN-N40_EP4.15x4.15mm_ThermalVias -QFN, 40 Pin (http://www.ti.com/lit/ds/symlink/msp430g2755.pdf#page=70 JEDEC MO-220 variation VJJD-2), Alternate KiCad Library -QFN NoLead -0 -83 -41 -PCM_Package_DFN_QFN_AKL -Texas_S-PVQFN-N48_EP5.15x5.15mm -QFN, 48 Pin (http://www.ti.com/lit/ds/symlink/msp430f5232.pdf#page=111), Alternate KiCad Library -QFN NoLead -0 -65 -49 -PCM_Package_DFN_QFN_AKL -Texas_S-PVQFN-N48_EP5.15x5.15mm_ThermalVias -QFN, 48 Pin (http://www.ti.com/lit/ds/symlink/msp430f5232.pdf#page=111), Alternate KiCad Library -QFN NoLead -0 -111 -49 -PCM_Package_DFN_QFN_AKL -Texas_S-PVQFN-N64_EP4.25x4.25mm -QFN, 64 Pin (http://www.ti.com/lit/ds/symlink/msp430f5217.pdf#page=120), Alternate KiCad Library -QFN NoLead -0 -69 -65 -PCM_Package_DFN_QFN_AKL -Texas_S-PVQFN-N64_EP4.25x4.25mm_ThermalVias -QFN, 64 Pin (http://www.ti.com/lit/ds/symlink/msp430f5217.pdf#page=120), Alternate KiCad Library -QFN NoLead -0 -127 -65 -PCM_Package_DFN_QFN_AKL -Texas_S-PWQFN-N16_EP2.1x2.1mm -QFN, 16 Pin (http://www.ti.com/lit/ds/symlink/drv8801.pdf#page=31 MO-220 variation VGGC), Alternate KiCad Library -QFN NoLead -0 -21 -17 -PCM_Package_DFN_QFN_AKL -Texas_S-PWQFN-N16_EP2.1x2.1mm_ThermalVias -QFN, 16 Pin (http://www.ti.com/lit/ds/symlink/drv8801.pdf#page=31 MO-220 variation VGGC), Alternate KiCad Library -QFN NoLead -0 -31 -17 -PCM_Package_DFN_QFN_AKL -Texas_S-PWQFN-N20 -20-Pin Plastic Quad Flatpack No-Lead Package, Body 3.0x3.0x0.8mm, Texas Instruments (http://www.ti.com/lit/ds/symlink/tps22993.pdf), Alternate KiCad Library -QFN 0.4 -0 -24 -20 -PCM_Package_DFN_QFN_AKL -Texas_S-PWQFN-N24_EP2.7x2.7mm -QFN, 24 Pin (http://www.ti.com/lit/ds/symlink/bq25601.pdf#page=54), Alternate KiCad Library -QFN NoLead -0 -29 -25 -PCM_Package_DFN_QFN_AKL -Texas_S-PWQFN-N24_EP2.7x2.7mm_ThermalVias -QFN, 24 Pin (http://www.ti.com/lit/ds/symlink/bq25601.pdf#page=54), Alternate KiCad Library -QFN NoLead -0 -39 -25 -PCM_Package_DFN_QFN_AKL -Texas_S-PWQFN-N32_EP2.8x2.8mm -QFN, 32 Pin (https://www.ti.com/lit/ds/symlink/bq25703a.pdf#page=90), Alternate KiCad Library -QFN NoLead -0 -37 -33 -PCM_Package_DFN_QFN_AKL -Texas_S-PWQFN-N32_EP2.8x2.8mm_ThermalVias -QFN, 32 Pin (https://www.ti.com/lit/ds/symlink/bq25703a.pdf#page=90), Alternate KiCad Library -QFN NoLead -0 -47 -33 -PCM_Package_DFN_QFN_AKL -Texas_S-PWQFN-N100_EP5.5x5.5mm -http://www.ti.com/general/docs/lit/getliterature.tsp?baseLiteratureNumber=szza059&fileType=pdf,http://www.ti.com/lit/ds/sllse76m/sllse76m.pdf, Alternate KiCad Library -MultiRow QFN -0 -114 -105 -PCM_Package_DFN_QFN_AKL -Texas_S-PWQFN-N100_EP5.5x5.5mm_ThermalVias -http://www.ti.com/general/docs/lit/getliterature.tsp?baseLiteratureNumber=szza059&fileType=pdf,http://www.ti.com/lit/ds/sllse76m/sllse76m.pdf, Alternate KiCad Library -MultiRow QFN -0 -131 -105 -PCM_Package_DFN_QFN_AKL -Texas_S-PX2QFN-14 -Texas QFN, 14 Pin (http://www.ti.com/lit/ds/symlink/tlv9004.pdf#page=64), Alternate KiCad Library -Texas QFN NoLead -0 -14 -14 -PCM_Package_DFN_QFN_AKL -Texas_VQFN-RHL-20 -http://www.ti.com/lit/ds/symlink/bq51050b.pdf, Alternate KiCad Library -RHL0020A -0 -35 -21 -PCM_Package_DFN_QFN_AKL -Texas_VQFN-RHL-20_ThermalVias -http://www.ti.com/lit/ds/symlink/bq51050b.pdf, Alternate KiCad Library -RHL0020A -0 -44 -21 -PCM_Package_DFN_QFN_AKL -Texas_VSON-HR-8_1.5x2mm_P0.5mm -Texas VSON-HR, 8 Pin (http://www.ti.com/lit/ds/symlink/tps62823.pdf#page=29), Alternate KiCad Library -Texas VSON-HR NoLead -0 -8 -8 -PCM_Package_DFN_QFN_AKL -Texas_WQFN-MR-100_3x3-DapStencil -http://www.ti.com/general/docs/lit/getliterature.tsp?baseLiteratureNumber=szza059&fileType=pdf,http://www.ti.com/general/docs/lit/getliterature.tsp?baseLiteratureNumber=mpqf258&fileType=pdf,http://www.ti.com/general/docs/lit/getliterature.tsp?baseLiteratureNumber=LPPD235&fileType=pdf, Alternate KiCad Library -MultiRow QFN -0 -114 -105 -PCM_Package_DFN_QFN_AKL -Texas_WQFN-MR-100_ThermalVias_3x3-DapStencil -http://www.ti.com/general/docs/lit/getliterature.tsp?baseLiteratureNumber=szza059&fileType=pdf,http://www.ti.com/general/docs/lit/getliterature.tsp?baseLiteratureNumber=mpqf258&fileType=pdf,http://www.ti.com/general/docs/lit/getliterature.tsp?baseLiteratureNumber=LPPD235&fileType=pdf, Alternate KiCad Library -MultiRow QFN -0 -131 -105 -PCM_Package_DFN_QFN_AKL -Texas_X2QFN-8_1.5x1.5mm -Texas Instruments RUG package, 1.5mm x 1.5mm QFN package, https://www.ti.com/lit/ds/symlink/tlv1701.pdf?ts=1647331616173&ref_url=https%253A%252F%252Fwww.ti.com%252Fproduct%252FTLV1701 -QFN RUG texas X2QFN 1.5x1.5 -0 -8 -8 -PCM_Package_DFN_QFN_AKL -Texas_X2QFN-12_1.6x1.6mm_P0.4mm -Texas X2QFN, 12 Pin (http://www.ti.com/lit/ml/mpqf391c/mpqf391c.pdf), Alternate KiCad Library -Texas X2QFN NoLead -0 -12 -12 -PCM_Package_DFN_QFN_AKL -UDFN-4-1EP_1x1mm_P0.65mm_EP0.48x0.48mm -UDFN-4_1x1mm_P0.65mm, http://ww1.microchip.com/downloads/en/DeviceDoc/MIC550x-300mA-Single-Output-LDO-in-Small-Packages-DS20006006A.pdf, Alternate KiCad Library -UDFN-4_1x1mm_P0.65mm -0 -5 -5 -PCM_Package_DFN_QFN_AKL -UDFN-9_1.0x3.8mm_P0.5mm -9-pin UDFN package, 1.0x3.8mm, (Ref: https://katalog.we-online.de/pbs/datasheet/824014881.pdf), Alternate KiCad Library -UDFN SMD -0 -9 -9 -PCM_Package_DFN_QFN_AKL -UDFN-10_1.35x2.6mm_P0.5mm -http://www.st.com/content/ccc/resource/technical/document/datasheet/f2/11/8a/ed/40/31/40/56/DM00088292.pdf/files/DM00088292.pdf/jcr:content/translations/en.DM00088292.pdf, Alternate KiCad Library -UDFN 0.5 uQFN -0 -10 -10 -PCM_Package_DFN_QFN_AKL -UQFN-10_1.3x1.8mm_P0.4mm -UQFN, 10 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/00001725D.pdf (Page 9)), Alternate KiCad Library -UQFN NoLead -0 -10 -10 -PCM_Package_DFN_QFN_AKL -UQFN-10_1.4x1.8mm_P0.4mm -UQFN 10pin, https://www.onsemi.com/pub/Collateral/488AT.PDF, Alternate KiCad Library -UQFN-10_1.4x1.8mm_P0.4mm -0 -10 -10 -PCM_Package_DFN_QFN_AKL -UQFN-10_1.6x2.1mm_P0.5mm -UQFN, 10 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/00001725D.pdf (Page 12)), Alternate KiCad Library -UQFN NoLead -0 -10 -10 -PCM_Package_DFN_QFN_AKL -UQFN-16-1EP_3x3mm_P0.5mm_EP1.75x1.75mm -16-Lead Ultra Thin Quad Flat, No Lead Package (UC) - 3x3x0.5 mm Body [UQFN]; (see Microchip Packaging Specification 00000049BS.pdf), Alternate KiCad Library -QFN 0.5 -0 -21 -17 -PCM_Package_DFN_QFN_AKL -UQFN-16-1EP_4x4mm_P0.65mm_EP2.6x2.6mm -UQFN, 16 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/16L_UQFN_4x4x0_5mm_JQ_C04257A.pdf), Alternate KiCad Library -UQFN NoLead -0 -21 -17 -PCM_Package_DFN_QFN_AKL -UQFN-16-1EP_4x4mm_P0.65mm_EP2.6x2.6mm_ThermalVias -UQFN, 16 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/16L_UQFN_4x4x0_5mm_JQ_C04257A.pdf), Alternate KiCad Library -UQFN NoLead -0 -31 -17 -PCM_Package_DFN_QFN_AKL -UQFN-16-1EP_4x4mm_P0.65mm_EP2.7x2.7mm -16-Lead Ultra Thin Plastic Quad Flat, No Lead Package (JQ) - 4x4x0.5 mm Body [UQFN]; (see Microchip Packaging Specification 00000049BS.pdf), Alternate KiCad Library -QFN 0.65 -0 -21 -17 -PCM_Package_DFN_QFN_AKL -UQFN-20-1EP_3x3mm_P0.4mm_EP1.85x1.85mm -UQFN, 20 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=332), Alternate KiCad Library -UQFN NoLead -0 -25 -21 -PCM_Package_DFN_QFN_AKL -UQFN-20-1EP_3x3mm_P0.4mm_EP1.85x1.85mm_ThermalVias -UQFN, 20 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=332), Alternate KiCad Library -UQFN NoLead -0 -30 -21 -PCM_Package_DFN_QFN_AKL -UQFN-20-1EP_4x4mm_P0.5mm_EP2.8x2.8mm -UQFN, 20 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/40001839B.pdf#page=464), Alternate KiCad Library -UQFN NoLead -0 -25 -21 -PCM_Package_DFN_QFN_AKL -UQFN-20-1EP_4x4mm_P0.5mm_EP2.8x2.8mm_ThermalVias -UQFN, 20 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/40001839B.pdf#page=464), Alternate KiCad Library -UQFN NoLead -0 -35 -21 -PCM_Package_DFN_QFN_AKL -UQFN-28-1EP_4x4mm_P0.4mm_EP2.35x2.35mm -UQFN, 28 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=338), Alternate KiCad Library -UQFN NoLead -0 -33 -29 -PCM_Package_DFN_QFN_AKL -UQFN-28-1EP_4x4mm_P0.4mm_EP2.35x2.35mm_ThermalVias -UQFN, 28 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=338), Alternate KiCad Library -UQFN NoLead -0 -43 -29 -PCM_Package_DFN_QFN_AKL -UQFN-40-1EP_5x5mm_P0.4mm_EP3.8x3.8mm -UQFN, 40 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=345), Alternate KiCad Library -UQFN NoLead -0 -50 -41 -PCM_Package_DFN_QFN_AKL -UQFN-40-1EP_5x5mm_P0.4mm_EP3.8x3.8mm_ThermalVias -UQFN, 40 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=345), Alternate KiCad Library -UQFN NoLead -0 -67 -41 -PCM_Package_DFN_QFN_AKL -UQFN-48-1EP_6x6mm_P0.4mm_EP4.45x4.45mm -UQFN, 48 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=347), Alternate KiCad Library -UQFN NoLead -0 -58 -49 -PCM_Package_DFN_QFN_AKL -UQFN-48-1EP_6x6mm_P0.4mm_EP4.45x4.45mm_ThermalVias -UQFN, 48 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=347), Alternate KiCad Library -UQFN NoLead -0 -75 -49 -PCM_Package_DFN_QFN_AKL -UQFN-48-1EP_6x6mm_P0.4mm_EP4.62x4.62mm -UQFN, 48 Pin (https://github.com/KiCad/kicad-symbols/pull/1189#issuecomment-449506354), Alternate KiCad Library -UQFN NoLead -0 -53 -49 -PCM_Package_DFN_QFN_AKL -UQFN-48-1EP_6x6mm_P0.4mm_EP4.62x4.62mm_ThermalVias -UQFN, 48 Pin (https://github.com/KiCad/kicad-symbols/pull/1189#issuecomment-449506354), Alternate KiCad Library -UQFN NoLead -0 -75 -49 -PCM_Package_DFN_QFN_AKL -VDFN-8-1EP_2x2mm_P0.5mm_EP0.9x1.7mm -8-Lead Very Thin Dual Flatpack No-Lead (LZ) - 2x3x0.9 mm Body [VDFN] (see Microchip Packaging Specification 00000049BS.pdf), Alternate KiCad Library -DFN 0.5 -0 -11 -9 -PCM_Package_DFN_QFN_AKL -VQFN-16-1EP_3x3mm_P0.5mm_EP1.6x1.6mm -VQFN, 16 Pin (http://www.ti.com/lit/ds/symlink/cdclvp1102.pdf#page=28), Alternate KiCad Library -VQFN NoLead -0 -21 -17 -PCM_Package_DFN_QFN_AKL -VQFN-16-1EP_3x3mm_P0.5mm_EP1.6x1.6mm_ThermalVias -VQFN, 16 Pin (http://www.ti.com/lit/ds/symlink/cdclvp1102.pdf#page=28), Alternate KiCad Library -VQFN NoLead -0 -26 -17 -PCM_Package_DFN_QFN_AKL -VQFN-16-1EP_3x3mm_P0.5mm_EP1.8x1.8mm -VQFN, 16 Pin (https://www.st.com/resource/en/datasheet/stspin220.pdf), Alternate KiCad Library -VQFN NoLead -0 -21 -17 -PCM_Package_DFN_QFN_AKL -VQFN-16-1EP_3x3mm_P0.5mm_EP1.8x1.8mm_ThermalVias -VQFN, 16 Pin (https://www.st.com/resource/en/datasheet/stspin220.pdf), Alternate KiCad Library -VQFN NoLead -0 -26 -17 -PCM_Package_DFN_QFN_AKL -VQFN-16-1EP_3x3mm_P0.5mm_EP1.45x1.45mm -VQFN, 16 Pin (http://www.ti.com/lit/ds/sbos354a/sbos354a.pdf, JEDEC MO-220 variant VEED-6), Alternate KiCad Library -VQFN NoLead -0 -21 -17 -PCM_Package_DFN_QFN_AKL -VQFN-16-1EP_3x3mm_P0.5mm_EP1.45x1.45mm_ThermalVias -VQFN, 16 Pin (http://www.ti.com/lit/ds/sbos354a/sbos354a.pdf, JEDEC MO-220 variant VEED-6), Alternate KiCad Library -VQFN NoLead -0 -26 -17 -PCM_Package_DFN_QFN_AKL -VQFN-16-1EP_3x3mm_P0.5mm_EP1.68x1.68mm -VQFN, 16 Pin (http://www.ti.com/lit/ds/symlink/tlv62095.pdf), Alternate KiCad Library -VQFN NoLead -0 -21 -17 -PCM_Package_DFN_QFN_AKL -VQFN-16-1EP_3x3mm_P0.5mm_EP1.68x1.68mm_ThermalVias -VQFN, 16 Pin (http://www.ti.com/lit/ds/symlink/tlv62095.pdf), Alternate KiCad Library -VQFN NoLead -0 -26 -17 -PCM_Package_DFN_QFN_AKL -VQFN-20-1EP_3x3mm_P0.4mm_EP1.7x1.7mm -VQFN, 20 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/20%20Lead%20VQFN%203x3x0_9mm_1_7EP%20U2B%20C04-21496a.pdf), Alternate KiCad Library -VQFN NoLead -0 -25 -21 -PCM_Package_DFN_QFN_AKL -VQFN-20-1EP_3x3mm_P0.4mm_EP1.7x1.7mm_ThermalVias -VQFN, 20 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/20%20Lead%20VQFN%203x3x0_9mm_1_7EP%20U2B%20C04-21496a.pdf), Alternate KiCad Library -VQFN NoLead -0 -30 -21 -PCM_Package_DFN_QFN_AKL -VQFN-20-1EP_3x3mm_P0.45mm_EP1.55x1.55mm -VQFN, 20 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/doc8246.pdf#page=264), Alternate KiCad Library -VQFN NoLead -0 -25 -21 -PCM_Package_DFN_QFN_AKL -VQFN-20-1EP_3x3mm_P0.45mm_EP1.55x1.55mm_ThermalVias -VQFN, 20 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/doc8246.pdf#page=264), Alternate KiCad Library -VQFN NoLead -0 -30 -21 -PCM_Package_DFN_QFN_AKL -VQFN-24-1EP_4x4mm_P0.5mm_EP2.45x2.45mm -VQFN, 24 Pin (http://www.ti.com/lit/ds/symlink/msp430f1101a.pdf), Alternate KiCad Library -VQFN NoLead -0 -34 -25 -PCM_Package_DFN_QFN_AKL -VQFN-24-1EP_4x4mm_P0.5mm_EP2.45x2.45mm_ThermalVias -VQFN, 24 Pin (http://www.ti.com/lit/ds/symlink/msp430f1101a.pdf), Alternate KiCad Library -VQFN NoLead -0 -39 -25 -PCM_Package_DFN_QFN_AKL -VQFN-28-1EP_4x4mm_P0.45mm_EP2.4x2.4mm -VQFN, 28 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/Atmel-9505-AT42-QTouch-BSW-AT42QT1060_Datasheet.pdf#page=28), Alternate KiCad Library -VQFN NoLead -0 -33 -29 -PCM_Package_DFN_QFN_AKL -VQFN-28-1EP_4x4mm_P0.45mm_EP2.4x2.4mm_ThermalVias -VQFN, 28 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/Atmel-9505-AT42-QTouch-BSW-AT42QT1060_Datasheet.pdf#page=28), Alternate KiCad Library -VQFN NoLead -0 -43 -29 -PCM_Package_DFN_QFN_AKL -VQFN-28-1EP_4x5mm_P0.5mm_EP2.55x3.55mm -VQFN, 28 Pin (http://www.ti.com/lit/ds/symlink/lm5175.pdf#page=40), Alternate KiCad Library -VQFN NoLead -0 -35 -29 -PCM_Package_DFN_QFN_AKL -VQFN-28-1EP_4x5mm_P0.5mm_EP2.55x3.55mm_ThermalVias -VQFN, 28 Pin (http://www.ti.com/lit/ds/symlink/lm5175.pdf#page=40), Alternate KiCad Library -VQFN NoLead -0 -48 -29 -PCM_Package_DFN_QFN_AKL -VQFN-32-1EP_5x5mm_P0.5mm_EP3.1x3.1mm -VQFN, 32 Pin (http://ww1.microchip.com/downloads/en/devicedoc/atmel-9520-at42-qtouch-bsw-at42qt1110_datasheet.pdf#page=42), Alternate KiCad Library -VQFN NoLead -0 -37 -33 -PCM_Package_DFN_QFN_AKL -VQFN-32-1EP_5x5mm_P0.5mm_EP3.1x3.1mm_ThermalVias -VQFN, 32 Pin (http://ww1.microchip.com/downloads/en/devicedoc/atmel-9520-at42-qtouch-bsw-at42qt1110_datasheet.pdf#page=42), Alternate KiCad Library -VQFN NoLead -0 -47 -33 -PCM_Package_DFN_QFN_AKL -VQFN-32-1EP_5x5mm_P0.5mm_EP3.5x3.5mm -VQFN, 32 Pin (https://www.ftdichip.com/Support/Documents/DataSheets/ICs/DS_FT4222H.pdf#page=40), Alternate KiCad Library -VQFN NoLead -0 -37 -33 -PCM_Package_DFN_QFN_AKL -VQFN-32-1EP_5x5mm_P0.5mm_EP3.5x3.5mm_ThermalVias -VQFN, 32 Pin (https://www.ftdichip.com/Support/Documents/DataSheets/ICs/DS_FT4222H.pdf#page=40), Alternate KiCad Library -VQFN NoLead -0 -47 -33 -PCM_Package_DFN_QFN_AKL -VQFN-46-1EP_5x6mm_P0.4mm_EP2.8x3.8mm -VQFN, 46 Pin (http://www.ti.com/lit/ds/symlink/lp5036.pdf#page=59), Alternate KiCad Library -VQFN NoLead -0 -53 -47 -PCM_Package_DFN_QFN_AKL -VQFN-46-1EP_5x6mm_P0.4mm_EP2.8x3.8mm_ThermalVias -VQFN, 46 Pin (http://www.ti.com/lit/ds/symlink/lp5036.pdf#page=59), Alternate KiCad Library -VQFN NoLead -0 -66 -47 -PCM_Package_DFN_QFN_AKL -VQFN-48-1EP_7x7mm_P0.5mm_EP5.15x5.15mm -VQFN, 48 Pin (http://www.ti.com/lit/ds/symlink/cc1312r.pdf#page=48), Alternate KiCad Library -VQFN NoLead -0 -53 -49 -PCM_Package_DFN_QFN_AKL -VQFN-48-1EP_7x7mm_P0.5mm_EP5.15x5.15mm_ThermalVias -VQFN, 48 Pin (http://www.ti.com/lit/ds/symlink/cc1312r.pdf#page=48), Alternate KiCad Library -VQFN NoLead -0 -79 -49 -PCM_Package_DFN_QFN_AKL -WDFN-8-1EP_2x2.2mm_P0.5mm_EP0.80x0.54 -https://www.onsemi.com/pub/Collateral/511BN.PDF, Alternate KiCad Library -WDFN-8 1EP 2.2X2.0 0.5P -0 -9 -9 -PCM_Package_DFN_QFN_AKL -WDFN-8-1EP_3x2mm_P0.5mm_EP1.3x1.4mm -WDFN, 8 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/8L_TDFN_2x3_MNY_C04-0129E-MNY.pdf), Alternate KiCad Library -WDFN NoLead -0 -13 -9 -PCM_Package_DFN_QFN_AKL -WDFN-12-1EP_3x3mm_P0.45mm_EP1.7x2.5mm -WDFN, 12 Pin (https://www.diodes.com/assets/Datasheets/PAM2306.pdf), Alternate KiCad Library -WDFN NoLead -0 -17 -13 -PCM_Package_DIP_AKL -DIP-4-8_W7.62mm -4-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils) -THT DIP DIL PDIP 2.54mm 7.62mm 300mil -0 -4 -4 -PCM_Package_DIP_AKL -DIP-4-8_W7.62mm_LongPads -4-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils) -THT DIP DIL PDIP 2.54mm 7.62mm 300mil -0 -4 -4 -PCM_Package_DIP_AKL -DIP-4_W7.62mm -4-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils) -THT DIP DIL PDIP 2.54mm 7.62mm 300mil -0 -4 -4 -PCM_Package_DIP_AKL -DIP-4_W7.62mm_LongPads -4-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads -THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads -0 -4 -4 -PCM_Package_DIP_AKL -DIP-4_W7.62mm_SMDSocket_SmallPads -4-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), SMDSocket, SmallPads -THT DIP DIL PDIP 2.54mm 7.62mm 300mil SMDSocket SmallPads -0 -4 -4 -PCM_Package_DIP_AKL -DIP-4_W7.62mm_Socket -4-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket -THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket -0 -4 -4 -PCM_Package_DIP_AKL -DIP-4_W7.62mm_Socket_LongPads -4-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads -THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads -0 -4 -4 -PCM_Package_DIP_AKL -DIP-4_W8.89mm_SMDSocket_LongPads -4-lead though-hole mounted DIP package, row spacing 8.89 mm (350 mils), SMDSocket, LongPads -THT DIP DIL PDIP 2.54mm 8.89mm 350mil SMDSocket LongPads -0 -4 -4 -PCM_Package_DIP_AKL -DIP-4_W10.16mm -4-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils) -THT DIP DIL PDIP 2.54mm 10.16mm 400mil -0 -4 -4 -PCM_Package_DIP_AKL -DIP-4_W10.16mm_LongPads -4-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), LongPads -THT DIP DIL PDIP 2.54mm 10.16mm 400mil LongPads -0 -4 -4 -PCM_Package_DIP_AKL -DIP-5-6_W7.62mm -5-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils) -THT DIP DIL PDIP 2.54mm 7.62mm 300mil -0 -5 -5 -PCM_Package_DIP_AKL -DIP-5-6_W7.62mm_LongPads -5-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads -THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads -0 -5 -5 -PCM_Package_DIP_AKL -DIP-5-6_W7.62mm_SMDSocket_SmallPads -5-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), SMDSocket, SmallPads -THT DIP DIL PDIP 2.54mm 7.62mm 300mil SMDSocket SmallPads -0 -5 -5 -PCM_Package_DIP_AKL -DIP-5-6_W7.62mm_Socket -5-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket -THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket -0 -5 -5 -PCM_Package_DIP_AKL -DIP-5-6_W7.62mm_Socket_LongPads -5-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads -THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads -0 -5 -5 -PCM_Package_DIP_AKL -DIP-5-6_W8.89mm_SMDSocket_LongPads -5-lead though-hole mounted DIP package, row spacing 8.89 mm (350 mils), SMDSocket, LongPads -THT DIP DIL PDIP 2.54mm 8.89mm 350mil SMDSocket LongPads -0 -5 -5 -PCM_Package_DIP_AKL -DIP-5-6_W10.16mm -5-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils) -THT DIP DIL PDIP 2.54mm 10.16mm 400mil -0 -5 -5 -PCM_Package_DIP_AKL -DIP-5-6_W10.16mm_LongPads -5-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), LongPads -THT DIP DIL PDIP 2.54mm 10.16mm 400mil LongPads -0 -5 -5 -PCM_Package_DIP_AKL -DIP-6_W7.62mm -6-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils) -THT DIP DIL PDIP 2.54mm 7.62mm 300mil -0 -6 -6 -PCM_Package_DIP_AKL -DIP-6_W7.62mm_LongPads -6-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads -THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads -0 -6 -6 -PCM_Package_DIP_AKL -DIP-6_W7.62mm_SMDSocket_SmallPads -6-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), SMDSocket, SmallPads -THT DIP DIL PDIP 2.54mm 7.62mm 300mil SMDSocket SmallPads -0 -6 -6 -PCM_Package_DIP_AKL -DIP-6_W7.62mm_Socket -6-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket -THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket -0 -6 -6 -PCM_Package_DIP_AKL -DIP-6_W7.62mm_Socket_LongPads -6-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads -THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads -0 -6 -6 -PCM_Package_DIP_AKL -DIP-6_W8.89mm_SMDSocket_LongPads -6-lead though-hole mounted DIP package, row spacing 8.89 mm (350 mils), SMDSocket, LongPads -THT DIP DIL PDIP 2.54mm 8.89mm 350mil SMDSocket LongPads -0 -6 -6 -PCM_Package_DIP_AKL -DIP-6_W10.16mm -6-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils) -THT DIP DIL PDIP 2.54mm 10.16mm 400mil -0 -6 -6 -PCM_Package_DIP_AKL -DIP-6_W10.16mm_LongPads -6-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), LongPads -THT DIP DIL PDIP 2.54mm 10.16mm 400mil LongPads -0 -6 -6 -PCM_Package_DIP_AKL -DIP-8-16_W7.62mm -16-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils) -THT DIP DIL PDIP 2.54mm 7.62mm 300mil -0 -8 -8 -PCM_Package_DIP_AKL -DIP-8-16_W7.62mm_LongPads -16-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads -THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads -0 -8 -8 -PCM_Package_DIP_AKL -DIP-8-16_W7.62mm_Socket -16-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket -THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket -0 -8 -8 -PCM_Package_DIP_AKL -DIP-8-16_W7.62mm_Socket_LongPads -16-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads -THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads -0 -8 -8 -PCM_Package_DIP_AKL -DIP-8-N6_W7.62mm -8-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), missing pin 6 -THT DIP DIL PDIP 2.54mm 7.62mm 300mil -0 -7 -7 -PCM_Package_DIP_AKL -DIP-8-N7_W7.62mm -8-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), missing pin 7 -THT DIP DIL PDIP 2.54mm 7.62mm 300mil -0 -7 -7 -PCM_Package_DIP_AKL -DIP-8_W7.62mm -8-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils) -THT DIP DIL PDIP 2.54mm 7.62mm 300mil -0 -8 -8 -PCM_Package_DIP_AKL -DIP-8_W7.62mm_LongPads -8-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads -THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads -0 -8 -8 -PCM_Package_DIP_AKL -DIP-8_W7.62mm_SMDSocket_SmallPads -8-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), SMDSocket, SmallPads -THT DIP DIL PDIP 2.54mm 7.62mm 300mil SMDSocket SmallPads -0 -8 -8 -PCM_Package_DIP_AKL -DIP-8_W7.62mm_Socket -8-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket -THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket -0 -8 -8 -PCM_Package_DIP_AKL -DIP-8_W7.62mm_Socket_LongPads -8-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads -THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads -0 -8 -8 -PCM_Package_DIP_AKL -DIP-8_W8.89mm_SMDSocket_LongPads -8-lead though-hole mounted DIP package, row spacing 8.89 mm (350 mils), SMDSocket, LongPads -THT DIP DIL PDIP 2.54mm 8.89mm 350mil SMDSocket LongPads -0 -8 -8 -PCM_Package_DIP_AKL -DIP-8_W10.16mm -8-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils) -THT DIP DIL PDIP 2.54mm 10.16mm 400mil -0 -8 -8 -PCM_Package_DIP_AKL -DIP-8_W10.16mm_LongPads -8-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), LongPads -THT DIP DIL PDIP 2.54mm 10.16mm 400mil LongPads -0 -8 -8 -PCM_Package_DIP_AKL -DIP-10_W7.62mm -10-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils) -THT DIP DIL PDIP 2.54mm 7.62mm 300mil -0 -10 -10 -PCM_Package_DIP_AKL -DIP-10_W7.62mm_LongPads -10-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads -THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads -0 -10 -10 -PCM_Package_DIP_AKL -DIP-10_W7.62mm_SMDSocket_SmallPads -10-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), SMDSocket, SmallPads -THT DIP DIL PDIP 2.54mm 7.62mm 300mil SMDSocket SmallPads -0 -10 -10 -PCM_Package_DIP_AKL -DIP-10_W7.62mm_Socket -10-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket -THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket -0 -10 -10 -PCM_Package_DIP_AKL -DIP-10_W7.62mm_Socket_LongPads -10-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads -THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads -0 -10 -10 -PCM_Package_DIP_AKL -DIP-10_W8.89mm_SMDSocket_LongPads -10-lead though-hole mounted DIP package, row spacing 8.89 mm (350 mils), SMDSocket, LongPads -THT DIP DIL PDIP 2.54mm 8.89mm 350mil SMDSocket LongPads -0 -10 -10 -PCM_Package_DIP_AKL -DIP-10_W10.16mm -10-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils) -THT DIP DIL PDIP 2.54mm 10.16mm 400mil -0 -10 -10 -PCM_Package_DIP_AKL -DIP-10_W10.16mm_LongPads -10-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), LongPads -THT DIP DIL PDIP 2.54mm 10.16mm 400mil LongPads -0 -10 -10 -PCM_Package_DIP_AKL -DIP-12_W7.62mm -12-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils) -THT DIP DIL PDIP 2.54mm 7.62mm 300mil -0 -12 -12 -PCM_Package_DIP_AKL -DIP-12_W7.62mm_LongPads -12-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads -THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads -0 -12 -12 -PCM_Package_DIP_AKL -DIP-12_W7.62mm_SMDSocket_SmallPads -12-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), SMDSocket, SmallPads -THT DIP DIL PDIP 2.54mm 7.62mm 300mil SMDSocket SmallPads -0 -12 -12 -PCM_Package_DIP_AKL -DIP-12_W7.62mm_Socket -12-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket -THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket -0 -12 -12 -PCM_Package_DIP_AKL -DIP-12_W7.62mm_Socket_LongPads -12-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads -THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads -0 -12 -12 -PCM_Package_DIP_AKL -DIP-12_W8.89mm_SMDSocket_LongPads -12-lead though-hole mounted DIP package, row spacing 8.89 mm (350 mils), SMDSocket, LongPads -THT DIP DIL PDIP 2.54mm 8.89mm 350mil SMDSocket LongPads -0 -12 -12 -PCM_Package_DIP_AKL -DIP-12_W10.16mm -12-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils) -THT DIP DIL PDIP 2.54mm 10.16mm 400mil -0 -12 -12 -PCM_Package_DIP_AKL -DIP-12_W10.16mm_LongPads -12-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), LongPads -THT DIP DIL PDIP 2.54mm 10.16mm 400mil LongPads -0 -12 -12 -PCM_Package_DIP_AKL -DIP-14_W7.62mm -14-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils) -THT DIP DIL PDIP 2.54mm 7.62mm 300mil -0 -14 -14 -PCM_Package_DIP_AKL -DIP-14_W7.62mm_LongPads -14-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads -THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads -0 -14 -14 -PCM_Package_DIP_AKL -DIP-14_W7.62mm_SMDSocket_SmallPads -14-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), SMDSocket, SmallPads -THT DIP DIL PDIP 2.54mm 7.62mm 300mil SMDSocket SmallPads -0 -14 -14 -PCM_Package_DIP_AKL -DIP-14_W7.62mm_Socket -14-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket -THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket -0 -14 -14 -PCM_Package_DIP_AKL -DIP-14_W7.62mm_Socket_LongPads -14-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads -THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads -0 -14 -14 -PCM_Package_DIP_AKL -DIP-14_W8.89mm_SMDSocket_LongPads -14-lead though-hole mounted DIP package, row spacing 8.89 mm (350 mils), SMDSocket, LongPads -THT DIP DIL PDIP 2.54mm 8.89mm 350mil SMDSocket LongPads -0 -14 -14 -PCM_Package_DIP_AKL -DIP-14_W10.16mm -14-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils) -THT DIP DIL PDIP 2.54mm 10.16mm 400mil -0 -14 -14 -PCM_Package_DIP_AKL -DIP-14_W10.16mm_LongPads -14-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), LongPads -THT DIP DIL PDIP 2.54mm 10.16mm 400mil LongPads -0 -14 -14 -PCM_Package_DIP_AKL -DIP-16_W7.62mm -16-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils) -THT DIP DIL PDIP 2.54mm 7.62mm 300mil -0 -16 -16 -PCM_Package_DIP_AKL -DIP-16_W7.62mm_LongPads -16-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads -THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads -0 -16 -16 -PCM_Package_DIP_AKL -DIP-16_W7.62mm_SMDSocket_SmallPads -16-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), SMDSocket, SmallPads -THT DIP DIL PDIP 2.54mm 7.62mm 300mil SMDSocket SmallPads -0 -16 -16 -PCM_Package_DIP_AKL -DIP-16_W7.62mm_Socket -16-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket -THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket -0 -16 -16 -PCM_Package_DIP_AKL -DIP-16_W7.62mm_Socket_LongPads -16-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads -THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads -0 -16 -16 -PCM_Package_DIP_AKL -DIP-16_W8.89mm_SMDSocket_LongPads -16-lead though-hole mounted DIP package, row spacing 8.89 mm (350 mils), SMDSocket, LongPads -THT DIP DIL PDIP 2.54mm 8.89mm 350mil SMDSocket LongPads -0 -16 -16 -PCM_Package_DIP_AKL -DIP-16_W10.16mm -16-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils) -THT DIP DIL PDIP 2.54mm 10.16mm 400mil -0 -16 -16 -PCM_Package_DIP_AKL -DIP-16_W10.16mm_LongPads -16-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), LongPads -THT DIP DIL PDIP 2.54mm 10.16mm 400mil LongPads -0 -16 -16 -PCM_Package_DIP_AKL -DIP-18_W7.62mm -18-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils) -THT DIP DIL PDIP 2.54mm 7.62mm 300mil -0 -18 -18 -PCM_Package_DIP_AKL -DIP-18_W7.62mm_LongPads -18-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads -THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads -0 -18 -18 -PCM_Package_DIP_AKL -DIP-18_W7.62mm_SMDSocket_SmallPads -18-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), SMDSocket, SmallPads -THT DIP DIL PDIP 2.54mm 7.62mm 300mil SMDSocket SmallPads -0 -18 -18 -PCM_Package_DIP_AKL -DIP-18_W7.62mm_Socket -18-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket -THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket -0 -18 -18 -PCM_Package_DIP_AKL -DIP-18_W7.62mm_Socket_LongPads -18-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads -THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads -0 -18 -18 -PCM_Package_DIP_AKL -DIP-18_W8.89mm_SMDSocket_LongPads -18-lead though-hole mounted DIP package, row spacing 8.89 mm (350 mils), SMDSocket, LongPads -THT DIP DIL PDIP 2.54mm 8.89mm 350mil SMDSocket LongPads -0 -18 -18 -PCM_Package_DIP_AKL -DIP-20_W7.62mm -20-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils) -THT DIP DIL PDIP 2.54mm 7.62mm 300mil -0 -20 -20 -PCM_Package_DIP_AKL -DIP-20_W7.62mm_LongPads -20-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads -THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads -0 -20 -20 -PCM_Package_DIP_AKL -DIP-20_W7.62mm_SMDSocket_SmallPads -20-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), SMDSocket, SmallPads -THT DIP DIL PDIP 2.54mm 7.62mm 300mil SMDSocket SmallPads -0 -20 -20 -PCM_Package_DIP_AKL -DIP-20_W7.62mm_Socket -20-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket -THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket -0 -20 -20 -PCM_Package_DIP_AKL -DIP-20_W7.62mm_Socket_LongPads -20-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads -THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads -0 -20 -20 -PCM_Package_DIP_AKL -DIP-20_W8.89mm_SMDSocket_LongPads -20-lead though-hole mounted DIP package, row spacing 8.89 mm (350 mils), SMDSocket, LongPads -THT DIP DIL PDIP 2.54mm 8.89mm 350mil SMDSocket LongPads -0 -20 -20 -PCM_Package_DIP_AKL -DIP-22_W7.62mm -22-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils) -THT DIP DIL PDIP 2.54mm 7.62mm 300mil -0 -22 -22 -PCM_Package_DIP_AKL -DIP-22_W7.62mm_LongPads -22-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads -THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads -0 -22 -22 -PCM_Package_DIP_AKL -DIP-22_W7.62mm_SMDSocket_SmallPads -22-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), SMDSocket, SmallPads -THT DIP DIL PDIP 2.54mm 7.62mm 300mil SMDSocket SmallPads -0 -22 -22 -PCM_Package_DIP_AKL -DIP-22_W7.62mm_Socket -22-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket -THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket -0 -22 -22 -PCM_Package_DIP_AKL -DIP-22_W7.62mm_Socket_LongPads -22-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads -THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads -0 -22 -22 -PCM_Package_DIP_AKL -DIP-22_W8.89mm_SMDSocket_LongPads -22-lead though-hole mounted DIP package, row spacing 8.89 mm (350 mils), SMDSocket, LongPads -THT DIP DIL PDIP 2.54mm 8.89mm 350mil SMDSocket LongPads -0 -22 -22 -PCM_Package_DIP_AKL -DIP-22_W10.16mm -22-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils) -THT DIP DIL PDIP 2.54mm 10.16mm 400mil -0 -22 -22 -PCM_Package_DIP_AKL -DIP-22_W10.16mm_LongPads -22-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), LongPads -THT DIP DIL PDIP 2.54mm 10.16mm 400mil LongPads -0 -22 -22 -PCM_Package_DIP_AKL -DIP-22_W10.16mm_SMDSocket_SmallPads -22-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), SMDSocket, SmallPads -THT DIP DIL PDIP 2.54mm 10.16mm 400mil SMDSocket SmallPads -0 -22 -22 -PCM_Package_DIP_AKL -DIP-22_W10.16mm_Socket -22-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), Socket -THT DIP DIL PDIP 2.54mm 10.16mm 400mil Socket -0 -22 -22 -PCM_Package_DIP_AKL -DIP-22_W10.16mm_Socket_LongPads -22-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), Socket, LongPads -THT DIP DIL PDIP 2.54mm 10.16mm 400mil Socket LongPads -0 -22 -22 -PCM_Package_DIP_AKL -DIP-22_W11.43mm_SMDSocket_LongPads -22-lead though-hole mounted DIP package, row spacing 11.43 mm (450 mils), SMDSocket, LongPads -THT DIP DIL PDIP 2.54mm 11.43mm 450mil SMDSocket LongPads -0 -22 -22 -PCM_Package_DIP_AKL -DIP-24_W7.62mm -24-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils) -THT DIP DIL PDIP 2.54mm 7.62mm 300mil -0 -24 -24 -PCM_Package_DIP_AKL -DIP-24_W7.62mm_LongPads -24-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads -THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads -0 -24 -24 -PCM_Package_DIP_AKL -DIP-24_W7.62mm_SMDSocket_SmallPads -24-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), SMDSocket, SmallPads -THT DIP DIL PDIP 2.54mm 7.62mm 300mil SMDSocket SmallPads -0 -24 -24 -PCM_Package_DIP_AKL -DIP-24_W7.62mm_Socket -24-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket -THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket -0 -24 -24 -PCM_Package_DIP_AKL -DIP-24_W7.62mm_Socket_LongPads -24-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads -THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads -0 -24 -24 -PCM_Package_DIP_AKL -DIP-24_W8.89mm_SMDSocket_LongPads -24-lead though-hole mounted DIP package, row spacing 8.89 mm (350 mils), SMDSocket, LongPads -THT DIP DIL PDIP 2.54mm 8.89mm 350mil SMDSocket LongPads -0 -24 -24 -PCM_Package_DIP_AKL -DIP-24_W10.16mm -24-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils) -THT DIP DIL PDIP 2.54mm 10.16mm 400mil -0 -24 -24 -PCM_Package_DIP_AKL -DIP-24_W10.16mm_LongPads -24-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), LongPads -THT DIP DIL PDIP 2.54mm 10.16mm 400mil LongPads -0 -24 -24 -PCM_Package_DIP_AKL -DIP-24_W10.16mm_SMDSocket_SmallPads -24-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), SMDSocket, SmallPads -THT DIP DIL PDIP 2.54mm 10.16mm 400mil SMDSocket SmallPads -0 -24 -24 -PCM_Package_DIP_AKL -DIP-24_W10.16mm_Socket -24-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), Socket -THT DIP DIL PDIP 2.54mm 10.16mm 400mil Socket -0 -24 -24 -PCM_Package_DIP_AKL -DIP-24_W10.16mm_Socket_LongPads -24-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), Socket, LongPads -THT DIP DIL PDIP 2.54mm 10.16mm 400mil Socket LongPads -0 -24 -24 -PCM_Package_DIP_AKL -DIP-24_W11.43mm_SMDSocket_LongPads -24-lead though-hole mounted DIP package, row spacing 11.43 mm (450 mils), SMDSocket, LongPads -THT DIP DIL PDIP 2.54mm 11.43mm 450mil SMDSocket LongPads -0 -24 -24 -PCM_Package_DIP_AKL -DIP-24_W15.24mm -24-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils) -THT DIP DIL PDIP 2.54mm 15.24mm 600mil -0 -24 -24 -PCM_Package_DIP_AKL -DIP-24_W15.24mm_LongPads -24-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), LongPads -THT DIP DIL PDIP 2.54mm 15.24mm 600mil LongPads -0 -24 -24 -PCM_Package_DIP_AKL -DIP-24_W15.24mm_SMDSocket_SmallPads -24-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), SMDSocket, SmallPads -THT DIP DIL PDIP 2.54mm 15.24mm 600mil SMDSocket SmallPads -0 -24 -24 -PCM_Package_DIP_AKL -DIP-24_W15.24mm_Socket -24-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket -THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket -0 -24 -24 -PCM_Package_DIP_AKL -DIP-24_W15.24mm_Socket_LongPads -24-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket, LongPads -THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket LongPads -0 -24 -24 -PCM_Package_DIP_AKL -DIP-24_W16.51mm_SMDSocket_LongPads -24-lead though-hole mounted DIP package, row spacing 16.51 mm (650 mils), SMDSocket, LongPads -THT DIP DIL PDIP 2.54mm 16.51mm 650mil SMDSocket LongPads -0 -24 -24 -PCM_Package_DIP_AKL -DIP-28_W7.62mm -28-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils) -THT DIP DIL PDIP 2.54mm 7.62mm 300mil -0 -28 -28 -PCM_Package_DIP_AKL -DIP-28_W7.62mm_LongPads -28-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads -THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads -0 -28 -28 -PCM_Package_DIP_AKL -DIP-28_W7.62mm_SMDSocket_SmallPads -28-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), SMDSocket, SmallPads -THT DIP DIL PDIP 2.54mm 7.62mm 300mil SMDSocket SmallPads -0 -28 -28 -PCM_Package_DIP_AKL -DIP-28_W7.62mm_Socket -28-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket -THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket -0 -28 -28 -PCM_Package_DIP_AKL -DIP-28_W7.62mm_Socket_LongPads -28-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads -THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads -0 -28 -28 -PCM_Package_DIP_AKL -DIP-28_W8.89mm_SMDSocket_LongPads -28-lead though-hole mounted DIP package, row spacing 8.89 mm (350 mils), SMDSocket, LongPads -THT DIP DIL PDIP 2.54mm 8.89mm 350mil SMDSocket LongPads -0 -28 -28 -PCM_Package_DIP_AKL -DIP-28_W15.24mm -28-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils) -THT DIP DIL PDIP 2.54mm 15.24mm 600mil -0 -28 -28 -PCM_Package_DIP_AKL -DIP-28_W15.24mm_LongPads -28-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), LongPads -THT DIP DIL PDIP 2.54mm 15.24mm 600mil LongPads -0 -28 -28 -PCM_Package_DIP_AKL -DIP-28_W15.24mm_SMDSocket_SmallPads -28-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), SMDSocket, SmallPads -THT DIP DIL PDIP 2.54mm 15.24mm 600mil SMDSocket SmallPads -0 -28 -28 -PCM_Package_DIP_AKL -DIP-28_W15.24mm_Socket -28-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket -THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket -0 -28 -28 -PCM_Package_DIP_AKL -DIP-28_W15.24mm_Socket_LongPads -28-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket, LongPads -THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket LongPads -0 -28 -28 -PCM_Package_DIP_AKL -DIP-28_W16.51mm_SMDSocket_LongPads -28-lead though-hole mounted DIP package, row spacing 16.51 mm (650 mils), SMDSocket, LongPads -THT DIP DIL PDIP 2.54mm 16.51mm 650mil SMDSocket LongPads -0 -28 -28 -PCM_Package_DIP_AKL -DIP-32_W7.62mm -32-lead dip package, row spacing 7.62 mm (300 mils) -DIL DIP PDIP 2.54mm 7.62mm 300mil -0 -32 -32 -PCM_Package_DIP_AKL -DIP-32_W15.24mm -32-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils) -THT DIP DIL PDIP 2.54mm 15.24mm 600mil -0 -32 -32 -PCM_Package_DIP_AKL -DIP-32_W15.24mm_LongPads -32-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), LongPads -THT DIP DIL PDIP 2.54mm 15.24mm 600mil LongPads -0 -32 -32 -PCM_Package_DIP_AKL -DIP-32_W15.24mm_SMDSocket_SmallPads -32-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), SMDSocket, SmallPads -THT DIP DIL PDIP 2.54mm 15.24mm 600mil SMDSocket SmallPads -0 -32 -32 -PCM_Package_DIP_AKL -DIP-32_W15.24mm_Socket -32-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket -THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket -0 -32 -32 -PCM_Package_DIP_AKL -DIP-32_W15.24mm_Socket_LongPads -32-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket, LongPads -THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket LongPads -0 -32 -32 -PCM_Package_DIP_AKL -DIP-32_W16.51mm_SMDSocket_LongPads -32-lead though-hole mounted DIP package, row spacing 16.51 mm (650 mils), SMDSocket, LongPads -THT DIP DIL PDIP 2.54mm 16.51mm 650mil SMDSocket LongPads -0 -32 -32 -PCM_Package_DIP_AKL -DIP-40_W15.24mm -40-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils) -THT DIP DIL PDIP 2.54mm 15.24mm 600mil -0 -40 -40 -PCM_Package_DIP_AKL -DIP-40_W15.24mm_LongPads -40-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), LongPads -THT DIP DIL PDIP 2.54mm 15.24mm 600mil LongPads -0 -40 -40 -PCM_Package_DIP_AKL -DIP-40_W15.24mm_SMDSocket_SmallPads -40-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), SMDSocket, SmallPads -THT DIP DIL PDIP 2.54mm 15.24mm 600mil SMDSocket SmallPads -0 -40 -40 -PCM_Package_DIP_AKL -DIP-40_W15.24mm_Socket -40-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket -THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket -0 -40 -40 -PCM_Package_DIP_AKL -DIP-40_W15.24mm_Socket_LongPads -40-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket, LongPads -THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket LongPads -0 -40 -40 -PCM_Package_DIP_AKL -DIP-40_W16.51mm_SMDSocket_LongPads -40-lead though-hole mounted DIP package, row spacing 16.51 mm (650 mils), SMDSocket, LongPads -THT DIP DIL PDIP 2.54mm 16.51mm 650mil SMDSocket LongPads -0 -40 -40 -PCM_Package_DIP_AKL -DIP-40_W25.4mm -40-lead though-hole mounted DIP package, row spacing 25.4 mm (1000 mils) -THT DIP DIL PDIP 2.54mm 25.4mm 1000mil -0 -40 -40 -PCM_Package_DIP_AKL -DIP-40_W25.4mm_LongPads -40-lead though-hole mounted DIP package, row spacing 25.4 mm (1000 mils), LongPads -THT DIP DIL PDIP 2.54mm 25.4mm 1000mil LongPads -0 -40 -40 -PCM_Package_DIP_AKL -DIP-40_W25.4mm_SMDSocket_SmallPads -40-lead though-hole mounted DIP package, row spacing 25.4 mm (1000 mils), SMDSocket, SmallPads -THT DIP DIL PDIP 2.54mm 25.4mm 1000mil SMDSocket SmallPads -0 -40 -40 -PCM_Package_DIP_AKL -DIP-40_W25.4mm_Socket -40-lead though-hole mounted DIP package, row spacing 25.4 mm (1000 mils), Socket -THT DIP DIL PDIP 2.54mm 25.4mm 1000mil Socket -0 -40 -40 -PCM_Package_DIP_AKL -DIP-40_W25.4mm_Socket_LongPads -40-lead though-hole mounted DIP package, row spacing 25.4 mm (1000 mils), Socket, LongPads -THT DIP DIL PDIP 2.54mm 25.4mm 1000mil Socket LongPads -0 -40 -40 -PCM_Package_DIP_AKL -DIP-40_W26.67mm_SMDSocket_LongPads -40-lead though-hole mounted DIP package, row spacing 26.67 mm (1050 mils), SMDSocket, LongPads -THT DIP DIL PDIP 2.54mm 26.669999999999998mm 1050mil SMDSocket LongPads -0 -40 -40 -PCM_Package_DIP_AKL -DIP-42_W15.24mm -42-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils) -THT DIP DIL PDIP 2.54mm 15.24mm 600mil -0 -42 -42 -PCM_Package_DIP_AKL -DIP-42_W15.24mm_LongPads -42-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), LongPads -THT DIP DIL PDIP 2.54mm 15.24mm 600mil LongPads -0 -42 -42 -PCM_Package_DIP_AKL -DIP-42_W15.24mm_SMDSocket_SmallPads -42-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), SMDSocket, SmallPads -THT DIP DIL PDIP 2.54mm 15.24mm 600mil SMDSocket SmallPads -0 -42 -42 -PCM_Package_DIP_AKL -DIP-42_W15.24mm_Socket -42-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket -THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket -0 -42 -42 -PCM_Package_DIP_AKL -DIP-42_W15.24mm_Socket_LongPads -42-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket, LongPads -THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket LongPads -0 -42 -42 -PCM_Package_DIP_AKL -DIP-42_W16.51mm_SMDSocket_LongPads -42-lead though-hole mounted DIP package, row spacing 16.51 mm (650 mils), SMDSocket, LongPads -THT DIP DIL PDIP 2.54mm 16.51mm 650mil SMDSocket LongPads -0 -42 -42 -PCM_Package_DIP_AKL -DIP-48_W15.24mm -48-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils) -THT DIP DIL PDIP 2.54mm 15.24mm 600mil -0 -48 -48 -PCM_Package_DIP_AKL -DIP-48_W15.24mm_LongPads -48-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), LongPads -THT DIP DIL PDIP 2.54mm 15.24mm 600mil LongPads -0 -48 -48 -PCM_Package_DIP_AKL -DIP-48_W15.24mm_SMDSocket_SmallPads -48-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), SMDSocket, SmallPads -THT DIP DIL PDIP 2.54mm 15.24mm 600mil SMDSocket SmallPads -0 -48 -48 -PCM_Package_DIP_AKL -DIP-48_W15.24mm_Socket -48-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket -THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket -0 -48 -48 -PCM_Package_DIP_AKL -DIP-48_W15.24mm_Socket_LongPads -48-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket, LongPads -THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket LongPads -0 -48 -48 -PCM_Package_DIP_AKL -DIP-48_W16.51mm_SMDSocket_LongPads -48-lead though-hole mounted DIP package, row spacing 16.51 mm (650 mils), SMDSocket, LongPads -THT DIP DIL PDIP 2.54mm 16.51mm 650mil SMDSocket LongPads -0 -48 -48 -PCM_Package_DIP_AKL -DIP-64_W15.24mm -64-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils) -THT DIP DIL PDIP 2.54mm 15.24mm 600mil -0 -64 -64 -PCM_Package_DIP_AKL -DIP-64_W15.24mm_LongPads -64-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), LongPads -THT DIP DIL PDIP 2.54mm 15.24mm 600mil LongPads -0 -64 -64 -PCM_Package_DIP_AKL -DIP-64_W15.24mm_SMDSocket_SmallPads -64-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), SMDSocket, SmallPads -THT DIP DIL PDIP 2.54mm 15.24mm 600mil SMDSocket SmallPads -0 -64 -64 -PCM_Package_DIP_AKL -DIP-64_W15.24mm_Socket -64-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket -THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket -0 -64 -64 -PCM_Package_DIP_AKL -DIP-64_W15.24mm_Socket_LongPads -64-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket, LongPads -THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket LongPads -0 -64 -64 -PCM_Package_DIP_AKL -DIP-64_W16.51mm_SMDSocket_LongPads -64-lead though-hole mounted DIP package, row spacing 16.51 mm (650 mils), SMDSocket, LongPads -THT DIP DIL PDIP 2.54mm 16.51mm 650mil SMDSocket LongPads -0 -64 -64 -PCM_Package_DIP_AKL -DIP-64_W22.86mm -64-lead though-hole mounted DIP package, row spacing 22.86 mm (900 mils) -THT DIP DIL PDIP 2.54mm 22.86mm 900mil -0 -64 -64 -PCM_Package_DIP_AKL -DIP-64_W22.86mm_LongPads -64-lead though-hole mounted DIP package, row spacing 22.86 mm (900 mils), LongPads -THT DIP DIL PDIP 2.54mm 22.86mm 900mil LongPads -0 -64 -64 -PCM_Package_DIP_AKL -DIP-64_W22.86mm_SMDSocket_SmallPads -64-lead though-hole mounted DIP package, row spacing 22.86 mm (900 mils), SMDSocket, SmallPads -THT DIP DIL PDIP 2.54mm 22.86mm 900mil SMDSocket SmallPads -0 -64 -64 -PCM_Package_DIP_AKL -DIP-64_W22.86mm_Socket -64-lead though-hole mounted DIP package, row spacing 22.86 mm (900 mils), Socket -THT DIP DIL PDIP 2.54mm 22.86mm 900mil Socket -0 -64 -64 -PCM_Package_DIP_AKL -DIP-64_W22.86mm_Socket_LongPads -64-lead though-hole mounted DIP package, row spacing 22.86 mm (900 mils), Socket, LongPads -THT DIP DIL PDIP 2.54mm 22.86mm 900mil Socket LongPads -0 -64 -64 -PCM_Package_DIP_AKL -DIP-64_W24.13mm_SMDSocket_LongPads -64-lead though-hole mounted DIP package, row spacing 24.13 mm (950 mils), SMDSocket, LongPads -THT DIP DIL PDIP 2.54mm 24.13mm 950mil SMDSocket LongPads -0 -64 -64 -PCM_Package_DIP_AKL -DIP-64_W25.4mm -64-lead though-hole mounted DIP package, row spacing 25.4 mm (1000 mils) -THT DIP DIL PDIP 2.54mm 25.4mm 1000mil -0 -64 -64 -PCM_Package_DIP_AKL -DIP-64_W25.4mm_LongPads -64-lead though-hole mounted DIP package, row spacing 25.4 mm (1000 mils), LongPads -THT DIP DIL PDIP 2.54mm 25.4mm 1000mil LongPads -0 -64 -64 -PCM_Package_DIP_AKL -DIP-64_W25.4mm_SMDSocket_SmallPads -64-lead though-hole mounted DIP package, row spacing 25.4 mm (1000 mils), SMDSocket, SmallPads -THT DIP DIL PDIP 2.54mm 25.4mm 1000mil SMDSocket SmallPads -0 -64 -64 -PCM_Package_DIP_AKL -DIP-64_W25.4mm_Socket -64-lead though-hole mounted DIP package, row spacing 25.4 mm (1000 mils), Socket -THT DIP DIL PDIP 2.54mm 25.4mm 1000mil Socket -0 -64 -64 -PCM_Package_DIP_AKL -DIP-64_W25.4mm_Socket_LongPads -64-lead though-hole mounted DIP package, row spacing 25.4 mm (1000 mils), Socket, LongPads -THT DIP DIL PDIP 2.54mm 25.4mm 1000mil Socket LongPads -0 -64 -64 -PCM_Package_DIP_AKL -DIP-64_W26.67mm_SMDSocket_LongPads -64-lead though-hole mounted DIP package, row spacing 26.67 mm (1050 mils), SMDSocket, LongPads -THT DIP DIL PDIP 2.54mm 26.669999999999998mm 1050mil SMDSocket LongPads -0 -64 -64 -PCM_Package_DIP_AKL -Fairchild_LSOP-8 -8-Lead, 300\" Wide, Surface Mount Package (https://www.fairchildsemi.com/package-drawings/ML/MLSOP08A.pdf) -LSOP 2.54mm 300mil -0 -8 -8 -PCM_Package_DIP_AKL -PowerIntegrations_PDIP-8B -Power Integrations variant of 8-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads, see https://www.power.com/sites/default/files/product-docs/lnk520.pdf -THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads -0 -7 -7 -PCM_Package_DIP_AKL -PowerIntegrations_PDIP-8C -Power Integrations variant of 8-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads, see https://ac-dc.power.com/sites/default/files/product-docs/tinyswitch-iii_family_datasheet.pdf -THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads -0 -7 -7 -PCM_Package_DIP_AKL -PowerIntegrations_SDIP-10C -PowerIntegrations variant of 10-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads, see https://www.power.com/sites/default/files/product-docs/tophx_family_datasheet.pdf -THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads -0 -9 -9 -PCM_Package_DIP_AKL -PowerIntegrations_SMD-8 -PowerIntegrations variant of 8-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils), see https://www.power.com/sites/default/files/product-docs/lnk520.pdf -SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil -0 -8 -8 -PCM_Package_DIP_AKL -PowerIntegrations_SMD-8B -PowerIntegrations variant of 8-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils), see https://www.power.com/sites/default/files/product-docs/lnk520.pdf -SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil -0 -7 -7 -PCM_Package_DIP_AKL -PowerIntegrations_SMD-8C -PowerIntegrations variant of 8-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils), see https://ac-dc.power.com/sites/default/files/product-docs/tinyswitch-iii_family_datasheet.pdf -SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil -0 -7 -7 -PCM_Package_DIP_AKL -PowerIntegrations_eDIP-12B -Power Integrations eDIP-12B, see https://www.power.com/sites/default/files/product-docs/linkswitch-pl_family_datasheet.pdf -THT DIP DIL PDIP 2.54mm 7.62mm 300mil -0 -11 -11 -PCM_Package_DIP_AKL -SMDIP-4-8_W9.53mm -8-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil -0 -4 -4 -PCM_Package_DIP_AKL -SMDIP-4_W7.62mm -4-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil -0 -4 -4 -PCM_Package_DIP_AKL -SMDIP-4_W9.53mm -4-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil -0 -4 -4 -PCM_Package_DIP_AKL -SMDIP-4_W9.53mm_Clearance8mm -4-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils), Clearance8mm -SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil Clearance8mm -0 -4 -4 -PCM_Package_DIP_AKL -SMDIP-4_W11.48mm -4-lead surface-mounted (SMD) DIP package, row spacing 11.48 mm (451 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 11.48mm 451mil -0 -4 -4 -PCM_Package_DIP_AKL -SMDIP-5-6_W9.53mm -6-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil -0 -5 -5 -PCM_Package_DIP_AKL -SMDIP-6_W7.62mm -6-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil -0 -6 -6 -PCM_Package_DIP_AKL -SMDIP-6_W9.53mm -6-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil -0 -6 -6 -PCM_Package_DIP_AKL -SMDIP-6_W9.53mm_Clearance8mm -6-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils), Clearance8mm -SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil Clearance8mm -0 -6 -6 -PCM_Package_DIP_AKL -SMDIP-6_W11.48mm -6-lead surface-mounted (SMD) DIP package, row spacing 11.48 mm (451 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 11.48mm 451mil -0 -6 -6 -PCM_Package_DIP_AKL -SMDIP-8_W7.62mm -8-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil -0 -8 -8 -PCM_Package_DIP_AKL -SMDIP-8_W9.53mm -8-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil -0 -8 -8 -PCM_Package_DIP_AKL -SMDIP-8_W9.53mm_Clearance8mm -8-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils), Clearance8mm -SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil Clearance8mm -0 -8 -8 -PCM_Package_DIP_AKL -SMDIP-8_W11.48mm -8-lead surface-mounted (SMD) DIP package, row spacing 11.48 mm (451 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 11.48mm 451mil -0 -8 -8 -PCM_Package_DIP_AKL -SMDIP-10_W7.62mm -10-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil -0 -10 -10 -PCM_Package_DIP_AKL -SMDIP-10_W9.53mm -10-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil -0 -10 -10 -PCM_Package_DIP_AKL -SMDIP-10_W9.53mm_Clearance8mm -10-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils), Clearance8mm -SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil Clearance8mm -0 -10 -10 -PCM_Package_DIP_AKL -SMDIP-10_W11.48mm -10-lead surface-mounted (SMD) DIP package, row spacing 11.48 mm (451 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 11.48mm 451mil -0 -10 -10 -PCM_Package_DIP_AKL -SMDIP-12_W7.62mm -12-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil -0 -12 -12 -PCM_Package_DIP_AKL -SMDIP-12_W9.53mm -12-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil -0 -12 -12 -PCM_Package_DIP_AKL -SMDIP-12_W9.53mm_Clearance8mm -12-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils), Clearance8mm -SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil Clearance8mm -0 -12 -12 -PCM_Package_DIP_AKL -SMDIP-12_W11.48mm -12-lead surface-mounted (SMD) DIP package, row spacing 11.48 mm (451 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 11.48mm 451mil -0 -12 -12 -PCM_Package_DIP_AKL -SMDIP-14_W7.62mm -14-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil -0 -14 -14 -PCM_Package_DIP_AKL -SMDIP-14_W9.53mm -14-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil -0 -14 -14 -PCM_Package_DIP_AKL -SMDIP-14_W9.53mm_Clearance8mm -14-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils), Clearance8mm -SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil Clearance8mm -0 -14 -14 -PCM_Package_DIP_AKL -SMDIP-14_W11.48mm -14-lead surface-mounted (SMD) DIP package, row spacing 11.48 mm (451 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 11.48mm 451mil -0 -14 -14 -PCM_Package_DIP_AKL -SMDIP-16_W7.62mm -16-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil -0 -16 -16 -PCM_Package_DIP_AKL -SMDIP-16_W9.53mm -16-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil -0 -16 -16 -PCM_Package_DIP_AKL -SMDIP-16_W9.53mm_Clearance8mm -16-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils), Clearance8mm -SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil Clearance8mm -0 -16 -16 -PCM_Package_DIP_AKL -SMDIP-16_W11.48mm -16-lead surface-mounted (SMD) DIP package, row spacing 11.48 mm (451 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 11.48mm 451mil -0 -16 -16 -PCM_Package_DIP_AKL -SMDIP-18_W7.62mm -18-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil -0 -18 -18 -PCM_Package_DIP_AKL -SMDIP-18_W9.53mm -18-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil -0 -18 -18 -PCM_Package_DIP_AKL -SMDIP-18_W9.53mm_Clearance8mm -18-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils), Clearance8mm -SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil Clearance8mm -0 -18 -18 -PCM_Package_DIP_AKL -SMDIP-18_W11.48mm -18-lead surface-mounted (SMD) DIP package, row spacing 11.48 mm (451 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 11.48mm 451mil -0 -18 -18 -PCM_Package_DIP_AKL -SMDIP-20_W7.62mm -20-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil -0 -20 -20 -PCM_Package_DIP_AKL -SMDIP-20_W9.53mm -20-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil -0 -20 -20 -PCM_Package_DIP_AKL -SMDIP-20_W9.53mm_Clearance8mm -20-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils), Clearance8mm -SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil Clearance8mm -0 -20 -20 -PCM_Package_DIP_AKL -SMDIP-20_W11.48mm -20-lead surface-mounted (SMD) DIP package, row spacing 11.48 mm (451 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 11.48mm 451mil -0 -20 -20 -PCM_Package_DIP_AKL -SMDIP-22_W7.62mm -22-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil -0 -22 -22 -PCM_Package_DIP_AKL -SMDIP-22_W9.53mm -22-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil -0 -22 -22 -PCM_Package_DIP_AKL -SMDIP-22_W9.53mm_Clearance8mm -22-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils), Clearance8mm -SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil Clearance8mm -0 -22 -22 -PCM_Package_DIP_AKL -SMDIP-22_W11.48mm -22-lead surface-mounted (SMD) DIP package, row spacing 11.48 mm (451 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 11.48mm 451mil -0 -22 -22 -PCM_Package_DIP_AKL -SMDIP-24_W7.62mm -24-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil -0 -24 -24 -PCM_Package_DIP_AKL -SMDIP-24_W9.53mm -24-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil -0 -24 -24 -PCM_Package_DIP_AKL -SMDIP-24_W11.48mm -24-lead surface-mounted (SMD) DIP package, row spacing 11.48 mm (451 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 11.48mm 451mil -0 -24 -24 -PCM_Package_DIP_AKL -SMDIP-24_W15.24mm -24-lead surface-mounted (SMD) DIP package, row spacing 15.24 mm (600 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 15.24mm 600mil -0 -24 -24 -PCM_Package_DIP_AKL -SMDIP-28_W15.24mm -28-lead surface-mounted (SMD) DIP package, row spacing 15.24 mm (600 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 15.24mm 600mil -0 -28 -28 -PCM_Package_DIP_AKL -SMDIP-32_W7.62mm -32-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil -0 -32 -32 -PCM_Package_DIP_AKL -SMDIP-32_W9.53mm -32-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil -0 -32 -32 -PCM_Package_DIP_AKL -SMDIP-32_W11.48mm -32-lead surface-mounted (SMD) DIP package, row spacing 11.48 mm (451 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 11.48mm 451mil -0 -32 -32 -PCM_Package_DIP_AKL -SMDIP-32_W15.24mm -32-lead surface-mounted (SMD) DIP package, row spacing 15.24 mm (600 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 15.24mm 600mil -0 -32 -32 -PCM_Package_DIP_AKL -SMDIP-40_W15.24mm -40-lead surface-mounted (SMD) DIP package, row spacing 15.24 mm (600 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 15.24mm 600mil -0 -40 -40 -PCM_Package_DIP_AKL -SMDIP-40_W25.24mm -40-lead surface-mounted (SMD) DIP package, row spacing 25.24 mm (993 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 25.24mm 993mil -0 -40 -40 -PCM_Package_DIP_AKL -SMDIP-42_W15.24mm -42-lead surface-mounted (SMD) DIP package, row spacing 15.24 mm (600 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 15.24mm 600mil -0 -42 -42 -PCM_Package_DIP_AKL -SMDIP-48_W15.24mm -48-lead surface-mounted (SMD) DIP package, row spacing 15.24 mm (600 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 15.24mm 600mil -0 -48 -48 -PCM_Package_DIP_AKL -SMDIP-64_W15.24mm -64-lead surface-mounted (SMD) DIP package, row spacing 15.24 mm (600 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 15.24mm 600mil -0 -64 -64 -PCM_Package_DIP_AKL -Toshiba_11-7A9 -Toshiba 11-7A9 package, like 6-lead dip package with missing pin 5, row spacing 7.62 mm (300 mils), https://toshiba.semicon-storage.com/info/docget.jsp?did=1421&prodName=TLP3021(S) -Toshiba 11-7A9 DIL DIP PDIP 2.54mm 7.62mm 300mil -0 -5 -5 -PCM_Package_DIP_AKL -Vishay_HVM-DIP-3_W7.62mm -3-lead though-hole mounted high-volatge DIP package (based on standard DIP-4), row spacing 7.62 mm (300 mils), see https://www.vishay.com/docs/91361/hexdip.pdf -THT DIP DIL PDIP 2.54mm 7.62mm 300mil Vishay HVMDIP HEXDIP -0 -4 -3 -PCM_Package_LCC_AKL -PLCC-20 -PLCC, 20 pins, surface mount, Alternate KiCad Library -plcc smt -0 -20 -20 -PCM_Package_LCC_AKL -PLCC-20_SMD-Socket -PLCC, 20 pins, surface mount, Alternate KiCad Library -plcc smt -0 -20 -20 -PCM_Package_LCC_AKL -PLCC-20_THT-Socket -PLCC, 20 pins, through hole, Alternate KiCad Library -plcc leaded -0 -20 -20 -PCM_Package_LCC_AKL -PLCC-28 -PLCC, 28 pins, surface mount, Alternate KiCad Library -plcc smt -0 -28 -28 -PCM_Package_LCC_AKL -PLCC-28_SMD-Socket -PLCC, 28 pins, surface mount, Alternate KiCad Library -plcc smt -0 -28 -28 -PCM_Package_LCC_AKL -PLCC-28_THT-Socket -PLCC, 28 pins, through hole, Alternate KiCad Library -plcc leaded -0 -28 -28 -PCM_Package_LCC_AKL -PLCC-32 -PLCC, 32 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/doc0015.pdf), Alternate KiCad Library -PLCC LCC -0 -32 -32 -PCM_Package_LCC_AKL -PLCC-32_SMD-Socket -PLCC, 32 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/doc0015.pdf), Alternate KiCad Library -PLCC LCC -0 -32 -32 -PCM_Package_LCC_AKL -PLCC-32_THT-Socket -PLCC, 32 pins, through hole, http://www.assmann-wsw.com/fileadmin/datasheets/ASS_0981_CO.pdf, Alternate KiCad Library -plcc leaded -0 -32 -32 -PCM_Package_LCC_AKL -PLCC-44 -PLCC, 44 pins, surface mount, Alternate KiCad Library -plcc smt -0 -44 -44 -PCM_Package_LCC_AKL -PLCC-44_SMD-Socket -PLCC, 44 pins, surface mount, Alternate KiCad Library -plcc smt -0 -44 -44 -PCM_Package_LCC_AKL -PLCC-44_THT-Socket -PLCC, 44 pins, through hole, Alternate KiCad Library -plcc leaded -0 -44 -44 -PCM_Package_LCC_AKL -PLCC-52 -PLCC, 52 pins, surface mount, Alternate KiCad Library -plcc smt -0 -52 -52 -PCM_Package_LCC_AKL -PLCC-52_SMD-Socket -PLCC, 52 pins, surface mount, Alternate KiCad Library -plcc smt -0 -52 -52 -PCM_Package_LCC_AKL -PLCC-52_THT-Socket -PLCC, 52 pins, through hole, Alternate KiCad Library -plcc leaded -0 -52 -52 -PCM_Package_LCC_AKL -PLCC-68 -PLCC, 68 pins, surface mount, Alternate KiCad Library -plcc smt -0 -68 -68 -PCM_Package_LCC_AKL -PLCC-68_SMD-Socket -PLCC, 68 pins, surface mount, Alternate KiCad Library -plcc smt -0 -68 -68 -PCM_Package_LCC_AKL -PLCC-68_THT-Socket -PLCC, 68 pins, through hole, Alternate KiCad Library -plcc leaded -0 -68 -68 -PCM_Package_LCC_AKL -PLCC-84 -PLCC, 84 pins, surface mount, Alternate KiCad Library -plcc smt -0 -84 -84 -PCM_Package_LCC_AKL -PLCC-84_SMD-Socket -PLCC, 84 pins, surface mount, Alternate KiCad Library -plcc smt -0 -84 -84 -PCM_Package_LCC_AKL -PLCC-84_THT-Socket -PLCC, 84 pins, through hole, Alternate KiCad Library -plcc leaded -0 -84 -84 -PCM_Package_QFP_AKL -EQFP-144-1EP_20x20mm_P0.5mm_EP4x4mm -EQFP, 144 Pin (https://www.intel.com/content/dam/www/programmable/us/en/pdfs/literature/packaging/04r00482-02.pdf), Alternate KiCad Library -EQFP QFP -0 -154 -145 -PCM_Package_QFP_AKL -EQFP-144-1EP_20x20mm_P0.5mm_EP4x4mm_ThermalVias -EQFP, 144 Pin (https://www.intel.com/content/dam/www/programmable/us/en/pdfs/literature/packaging/04r00482-02.pdf), Alternate KiCad Library -EQFP QFP -0 -171 -145 -PCM_Package_QFP_AKL -EQFP-144-1EP_20x20mm_P0.5mm_EP5x5mm -EQFP, 144 Pin (https://www.intel.com/content/dam/www/programmable/us/en/pdfs/literature/packaging/04r00476-02.pdf), Alternate KiCad Library -EQFP QFP -0 -161 -145 -PCM_Package_QFP_AKL -EQFP-144-1EP_20x20mm_P0.5mm_EP5x5mm_ThermalVias -EQFP, 144 Pin (https://www.intel.com/content/dam/www/programmable/us/en/pdfs/literature/packaging/04r00476-02.pdf), Alternate KiCad Library -EQFP QFP -0 -187 -145 -PCM_Package_QFP_AKL -EQFP-144-1EP_20x20mm_P0.5mm_EP6.61x5.615mm -EQFP, 144 Pin (https://www.intel.com/content/dam/www/programmable/us/en/pdfs/literature/packaging/04r00485-02.pdf), Alternate KiCad Library -EQFP QFP -0 -165 -145 -PCM_Package_QFP_AKL -EQFP-144-1EP_20x20mm_P0.5mm_EP6.61x5.615mm_ThermalVias -EQFP, 144 Pin (https://www.intel.com/content/dam/www/programmable/us/en/pdfs/literature/packaging/04r00485-02.pdf), Alternate KiCad Library -EQFP QFP -0 -196 -145 -PCM_Package_QFP_AKL -EQFP-144-1EP_20x20mm_P0.5mm_EP7.2x6.35mm -EQFP, 144 Pin (https://www.intel.com/content/dam/www/programmable/us/en/pdfs/literature/packaging/04r00487-01.pdf), Alternate KiCad Library -EQFP QFP -0 -175 -145 -PCM_Package_QFP_AKL -EQFP-144-1EP_20x20mm_P0.5mm_EP7.2x6.35mm_ThermalVias -EQFP, 144 Pin (https://www.intel.com/content/dam/www/programmable/us/en/pdfs/literature/packaging/04r00487-01.pdf), Alternate KiCad Library -EQFP QFP -0 -218 -145 -PCM_Package_QFP_AKL -EQFP-144-1EP_20x20mm_P0.5mm_EP8.93x8.7mm -EQFP, 144 Pin (https://www.intel.com/content/dam/www/programmable/us/en/pdfs/literature/packaging/04r00479-02.pdf), Alternate KiCad Library -EQFP QFP -0 -194 -145 -PCM_Package_QFP_AKL -EQFP-144-1EP_20x20mm_P0.5mm_EP8.93x8.7mm_ThermalVias -EQFP, 144 Pin (https://www.intel.com/content/dam/www/programmable/us/en/pdfs/literature/packaging/04r00479-02.pdf), Alternate KiCad Library -EQFP QFP -0 -259 -145 -PCM_Package_QFP_AKL -HTQFP-64-1EP_10x10mm_P0.5mm_EP8x8mm -64-Lead Plastic Thin Quad Flatpack (PT) - 10x10x1 mm Body, 2.00 mm Footprint [HTQFP] thermal pad, Alternate KiCad Library -HTQFP-64 Pitch 0.5 -0 -90 -65 -PCM_Package_QFP_AKL -HTQFP-64-1EP_10x10mm_P0.5mm_EP8x8mm_Mask4.4x4.4mm_ThermalVias -64-Lead Plastic Thin Quad Flatpack (PT) - 10x10x1 mm Body, 2.00 mm Footprint [HTQFP] thermal pad, Alternate KiCad Library -HTQFP-64 Pitch 0.5 -0 -156 -65 -PCM_Package_QFP_AKL -LQFP-32_5x5mm_P0.5mm -LQFP, 32 Pin (https://www.nxp.com/docs/en/package-information/SOT401-1.pdf), Alternate KiCad Library -LQFP QFP -0 -32 -32 -PCM_Package_QFP_AKL -LQFP-32_7x7mm_P0.8mm -LQFP, 32 Pin (https://www.nxp.com/docs/en/package-information/SOT358-1.pdf), Alternate KiCad Library -LQFP QFP -0 -32 -32 -PCM_Package_QFP_AKL -LQFP-36_7x7mm_P0.65mm -LQFP, 36 Pin (https://www.onsemi.com/pub/Collateral/561AV.PDF), Alternate KiCad Library -LQFP QFP -0 -36 -36 -PCM_Package_QFP_AKL -LQFP-44_10x10mm_P0.8mm -LQFP, 44 Pin (https://www.nxp.com/files-static/shared/doc/package_info/98ASS23225W.pdf?&fsrch=1), Alternate KiCad Library -LQFP QFP -0 -44 -44 -PCM_Package_QFP_AKL -LQFP-48-1EP_7x7mm_P0.5mm_EP3.6x3.6mm -LQFP, 48 Pin (http://www.analog.com/media/en/technical-documentation/data-sheets/LTC7810.pdf), Alternate KiCad Library -LQFP QFP -0 -58 -49 -PCM_Package_QFP_AKL -LQFP-48-1EP_7x7mm_P0.5mm_EP3.6x3.6mm_ThermalVias -LQFP, 48 Pin (http://www.analog.com/media/en/technical-documentation/data-sheets/LTC7810.pdf), Alternate KiCad Library -LQFP QFP -0 -75 -49 -PCM_Package_QFP_AKL -LQFP-48_7x7mm_P0.5mm -LQFP, 48 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/ltc2358-16.pdf), Alternate KiCad Library -LQFP QFP -0 -48 -48 -PCM_Package_QFP_AKL -LQFP-52-1EP_10x10mm_P0.65mm_EP4.8x4.8mm -LQFP, 52 Pin (https://www.onsemi.com/pub/Collateral/848H-01.PDF), Alternate KiCad Library -LQFP QFP -0 -62 -53 -PCM_Package_QFP_AKL -LQFP-52-1EP_10x10mm_P0.65mm_EP4.8x4.8mm_ThermalVias -LQFP, 52 Pin (https://www.onsemi.com/pub/Collateral/848H-01.PDF), Alternate KiCad Library -LQFP QFP -0 -95 -53 -PCM_Package_QFP_AKL -LQFP-52_10x10mm_P0.65mm -LQFP, 52 Pin (https://www.nxp.com/docs/en/package-information/98ARL10526D.pdf), Alternate KiCad Library -LQFP QFP -0 -52 -52 -PCM_Package_QFP_AKL -LQFP-52_14x14mm_P1mm -LQFP, 52 Pin (http://www.holtek.com/documents/10179/116711/HT1632Cv170.pdf), Alternate KiCad Library -LQFP QFP -0 -52 -52 -PCM_Package_QFP_AKL -LQFP-64-1EP_10x10mm_P0.5mm_EP5x5mm -LQFP, 64 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/adv7611.pdf), Alternate KiCad Library -LQFP QFP -0 -90 -65 -PCM_Package_QFP_AKL -LQFP-64-1EP_10x10mm_P0.5mm_EP5x5mm_ThermalVias -LQFP, 64 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/adv7611.pdf), Alternate KiCad Library -LQFP QFP -0 -107 -65 -PCM_Package_QFP_AKL -LQFP-64-1EP_10x10mm_P0.5mm_EP6.5x6.5mm -LQFP, 64 Pin (https://www.nxp.com/files-static/shared/doc/package_info/98ARH98426A.pdf), Alternate KiCad Library -LQFP QFP -0 -90 -65 -PCM_Package_QFP_AKL -LQFP-64-1EP_10x10mm_P0.5mm_EP6.5x6.5mm_ThermalVias -LQFP, 64 Pin (https://www.nxp.com/files-static/shared/doc/package_info/98ARH98426A.pdf), Alternate KiCad Library -LQFP QFP -0 -127 -65 -PCM_Package_QFP_AKL -LQFP-64_7x7mm_P0.4mm -LQFP, 64 Pin (https://www.nxp.com/docs/en/package-information/SOT414-1.pdf), Alternate KiCad Library -LQFP QFP -0 -64 -64 -PCM_Package_QFP_AKL -LQFP-64_10x10mm_P0.5mm -LQFP, 64 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/ad7606_7606-6_7606-4.pdf), Alternate KiCad Library -LQFP QFP -0 -64 -64 -PCM_Package_QFP_AKL -LQFP-64_14x14mm_P0.8mm -LQFP, 64 Pin (https://www.nxp.com/docs/en/package-information/SOT791-1.pdf), Alternate KiCad Library -LQFP QFP -0 -64 -64 -PCM_Package_QFP_AKL -LQFP-80_10x10mm_P0.4mm -LQFP, 80 Pin (https://www.renesas.com/eu/en/package-image/pdf/outdrawing/q80.10x10.pdf), Alternate KiCad Library -LQFP QFP -0 -80 -80 -PCM_Package_QFP_AKL -LQFP-80_12x12mm_P0.5mm -LQFP, 80 Pin (https://www.nxp.com/docs/en/package-information/SOT315-1.pdf), Alternate KiCad Library -LQFP QFP -0 -80 -80 -PCM_Package_QFP_AKL -LQFP-80_14x14mm_P0.65mm -LQFP, 80 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/AD9852.pdf), Alternate KiCad Library -LQFP QFP -0 -80 -80 -PCM_Package_QFP_AKL -LQFP-100_14x14mm_P0.5mm -LQFP, 100 Pin (https://www.nxp.com/docs/en/package-information/SOT407-1.pdf), Alternate KiCad Library -LQFP QFP -0 -100 -100 -PCM_Package_QFP_AKL -LQFP-128_14x14mm_P0.4mm -LQFP, 128 Pin (https://www.renesas.com/eu/en/package-image/pdf/outdrawing/q128.14x14.pdf), Alternate KiCad Library -LQFP QFP -0 -128 -128 -PCM_Package_QFP_AKL -LQFP-128_14x20mm_P0.5mm -LQFP, 128 Pin (https://www.nxp.com/docs/en/package-information/SOT425-1.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -LQFP QFP -0 -128 -128 -PCM_Package_QFP_AKL -LQFP-144_20x20mm_P0.5mm -LQFP, 144 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=425), Alternate KiCad Library -LQFP QFP -0 -144 -144 -PCM_Package_QFP_AKL -LQFP-160_24x24mm_P0.5mm -LQFP, 160 Pin (https://www.nxp.com/docs/en/package-information/SOT435-1.pdf), Alternate KiCad Library -LQFP QFP -0 -160 -160 -PCM_Package_QFP_AKL -LQFP-176_20x20mm_P0.4mm -LQFP, 176 Pin (https://www.onsemi.com/pub/Collateral/566DB.PDF), Alternate KiCad Library -LQFP QFP -0 -176 -176 -PCM_Package_QFP_AKL -LQFP-176_24x24mm_P0.5mm -LQFP, 176 Pin (https://www.st.com/resource/en/datasheet/stm32f207vg.pdf#page=163), Alternate KiCad Library -LQFP QFP -0 -176 -176 -PCM_Package_QFP_AKL -LQFP-208_28x28mm_P0.5mm -LQFP, 208 Pin (https://www.nxp.com/docs/en/package-information/SOT459-1.pdf), Alternate KiCad Library -LQFP QFP -0 -208 -208 -PCM_Package_QFP_AKL -LQFP-216_24x24mm_P0.4mm -LQFP, 216 Pin (https://www.onsemi.com/pub/Collateral/561BE.PDF), Alternate KiCad Library -LQFP QFP -0 -216 -216 -PCM_Package_QFP_AKL -MQFP-44_10x10mm_P0.8mm -MQFP, 44 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/ad7722.pdf), Alternate KiCad Library -MQFP QFP -0 -44 -44 -PCM_Package_QFP_AKL -PQFP-44_10x10mm_P0.8mm -44-Lead Plastic Quad Flatpack - 10x10x2.5mm Body (http://www.onsemi.com/pub/Collateral/122BK.PDF), Alternate KiCad Library -PQFP 0.8 -0 -44 -44 -PCM_Package_QFP_AKL -PQFP-80_14x20mm_P0.8mm -PQFP80 14x20 / QIP80E CASE 122BS (see ON Semiconductor 122BS.PDF), Alternate KiCad Library -QFP 0.8 -0 -80 -80 -PCM_Package_QFP_AKL -PQFP-100_14x20mm_P0.65mm -PQFP, 100 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), Alternate KiCad Library -PQFP QFP -0 -100 -100 -PCM_Package_QFP_AKL -PQFP-112_20x20mm_P0.65mm -PQFP, 112 pins, 20mm sq body, 0.65mm pitch (http://cache.freescale.com/files/shared/doc/package_info/98ASS23330W.pdf, http://www.nxp.com/docs/en/application-note/AN4388.pdf), Alternate KiCad Library -PQFP 112 -0 -112 -112 -PCM_Package_QFP_AKL -PQFP-132_24x24mm_P0.635mm -PQFP, 132 pins, 24mm sq body, 0.635mm pitch (https://www.intel.com/content/dam/www/public/us/en/documents/packaging-databooks/packaging-chapter-02-databook.pdf, http://www.nxp.com/docs/en/application-note/AN4388.pdf), Alternate KiCad Library -PQFP 132 -0 -132 -132 -PCM_Package_QFP_AKL -PQFP-132_24x24mm_P0.635mm_i386 -PQFP, 132 pins, 24mm sq body, 0.635mm pitch, Intel 386EX (https://www.intel.com/content/dam/www/public/us/en/documents/packaging-databooks/packaging-chapter-02-databook.pdf, http://www.nxp.com/docs/en/application-note/AN4388.pdf), Alternate KiCad Library -PQFP 132 Intel 386EX -0 -132 -132 -PCM_Package_QFP_AKL -PQFP-144_28x28mm_P0.65mm -PQFP, 144 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), Alternate KiCad Library -PQFP QFP -0 -144 -144 -PCM_Package_QFP_AKL -PQFP-160_28x28mm_P0.65mm -PQFP, 160 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), Alternate KiCad Library -PQFP QFP -0 -160 -160 -PCM_Package_QFP_AKL -PQFP-208_28x28mm_P0.5mm -PQFP, 208 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), Alternate KiCad Library -PQFP QFP -0 -208 -208 -PCM_Package_QFP_AKL -PQFP-240_32.1x32.1mm_P0.5mm -PQFP, 240 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), Alternate KiCad Library -PQFP QFP -0 -240 -240 -PCM_Package_QFP_AKL -PQFP-256_28x28mm_P0.4mm -PQFP256 28x28 / QFP256J CASE 122BX (see ON Semiconductor 122BX.PDF), Alternate KiCad Library -QFP 0.4 -0 -256 -256 -PCM_Package_QFP_AKL -TQFP-32_7x7mm_P0.8mm -32-Lead Plastic Thin Quad Flatpack (PT) - 7x7x1.0 mm Body, 2.00 mm [TQFP] (see Microchip Packaging Specification 00000049BS.pdf), Alternate KiCad Library -QFP 0.8 -0 -32 -32 -PCM_Package_QFP_AKL -TQFP-44-1EP_10x10mm_P0.8mm_EP4.5x4.5mm -44-Lead Plastic Thin Quad Flatpack (MW) - 10x10x1.0 mm Body [TQFP] With 4.5x4.5 mm Exposed Pad (see Microchip Packaging Specification 00000049BS.pdf), Alternate KiCad Library -QFP 0.8 -0 -54 -45 -PCM_Package_QFP_AKL -TQFP-44_10x10mm_P0.8mm -44-Lead Plastic Thin Quad Flatpack (PT) - 10x10x1.0 mm Body [TQFP] (see Microchip Packaging Specification 00000049BS.pdf), Alternate KiCad Library -QFP 0.8 -0 -44 -44 -PCM_Package_QFP_AKL -TQFP-48-1EP_7x7mm_P0.5mm_EP3.5x3.5mm -48-Lead Thin Quad Flatpack (PT) - 7x7x1.0 mm Body [TQFP] With Exposed Pad (see Microchip Packaging Specification 00000049BS.pdf), Alternate KiCad Library -QFP 0.5 -0 -53 -49 -PCM_Package_QFP_AKL -TQFP-48-1EP_7x7mm_P0.5mm_EP5x5mm -TQFP, 48 Pin (https://www.trinamic.com/fileadmin/assets/Products/ICs_Documents/TMC2100_datasheet_Rev1.08.pdf (page 45)), Alternate KiCad Library -TQFP QFP -0 -65 -49 -PCM_Package_QFP_AKL -TQFP-48-1EP_7x7mm_P0.5mm_EP5x5mm_ThermalVias -TQFP, 48 Pin (https://www.trinamic.com/fileadmin/assets/Products/ICs_Documents/TMC2100_datasheet_Rev1.08.pdf (page 45)), Alternate KiCad Library -TQFP QFP -0 -91 -49 -PCM_Package_QFP_AKL -TQFP-48_7x7mm_P0.5mm -48 LEAD TQFP 7x7mm (see MICREL TQFP7x7-48LD-PL-1.pdf), Alternate KiCad Library -QFP 0.5 -0 -48 -48 -PCM_Package_QFP_AKL -TQFP-52-1EP_10x10mm_P0.65mm_EP6.5x6.5mm -TQFP, 52 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/tqfp_edsv/sv_52_1.pdf), Alternate KiCad Library -TQFP QFP -0 -78 -53 -PCM_Package_QFP_AKL -TQFP-52-1EP_10x10mm_P0.65mm_EP6.5x6.5mm_ThermalVias -TQFP, 52 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/tqfp_edsv/sv_52_1.pdf), Alternate KiCad Library -TQFP QFP -0 -79 -53 -PCM_Package_QFP_AKL -TQFP-64-1EP_10x10mm_P0.5mm_EP8x8mm -64-Lead Plastic Thin Quad Flatpack (PT) - 10x10x1 mm Body, 2.00 mm Footprint [TQFP] thermal pad, Alternate KiCad Library -QFP 0.5 -0 -90 -65 -PCM_Package_QFP_AKL -TQFP-64_7x7mm_P0.4mm -TQFP64 7x7, 0.4P CASE 932BH (see ON Semiconductor 932BH.PDF), Alternate KiCad Library -QFP 0.4 -0 -64 -64 -PCM_Package_QFP_AKL -TQFP-64_10x10mm_P0.5mm -TQFP, 64 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), Alternate KiCad Library -TQFP QFP -0 -64 -64 -PCM_Package_QFP_AKL -TQFP-64_14x14mm_P0.8mm -64-Lead Plastic Thin Quad Flatpack (PF) - 14x14x1 mm Body, 2.00 mm [TQFP] (see Microchip Packaging Specification 00000049BS.pdf), Alternate KiCad Library -QFP 0.8 -0 -64 -64 -PCM_Package_QFP_AKL -TQFP-80-1EP_14x14mm_P0.65mm_EP9.5x9.5mm -80-Lead Plastic Thin Quad Flatpack (PF) - 14x14mm body, 9.5mm sq thermal pad (http://www.analog.com/media/en/technical-documentation/data-sheets/AD9852.pdf), Alternate KiCad Library -QFP 0.65 -0 -106 -81 -PCM_Package_QFP_AKL -TQFP-80_12x12mm_P0.5mm -80-Lead Plastic Thin Quad Flatpack (PT) - 12x12x1 mm Body, 2.00 mm [TQFP] (see Microchip Packaging Specification 00000049BS.pdf), Alternate KiCad Library -QFP 0.5 -0 -80 -80 -PCM_Package_QFP_AKL -TQFP-80_14x14mm_P0.65mm -80-Lead Plastic Thin Quad Flatpack (PF) - 14x14x1 mm Body, 2.00 mm [TQFP] (see Microchip Packaging Specification 00000049BS.pdf), Alternate KiCad Library -QFP 0.65 -0 -80 -80 -PCM_Package_QFP_AKL -TQFP-100-1EP_14x14mm_P0.5mm_EP5x5mm -TQFP, 100 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/tqfp_edsv/sv_100_4.pdf), Alternate KiCad Library -TQFP QFP -0 -117 -101 -PCM_Package_QFP_AKL -TQFP-100-1EP_14x14mm_P0.5mm_EP5x5mm_ThermalVias -TQFP, 100 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/tqfp_edsv/sv_100_4.pdf), Alternate KiCad Library -TQFP QFP -0 -143 -101 -PCM_Package_QFP_AKL -TQFP-100_12x12mm_P0.4mm -100-Lead Plastic Thin Quad Flatpack (PT) - 12x12x1 mm Body, 2.00 mm [TQFP] (see Microchip Packaging Specification 00000049BS.pdf), Alternate KiCad Library -QFP 0.4 -0 -100 -100 -PCM_Package_QFP_AKL -TQFP-100_14x14mm_P0.5mm -TQFP, 100 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), Alternate KiCad Library -TQFP QFP -0 -100 -100 -PCM_Package_QFP_AKL -TQFP-120_14x14mm_P0.4mm -TQFP120 14x14 / TQFP120 CASE 932AZ (see ON Semiconductor 932AZ.PDF), Alternate KiCad Library -QFP 0.4 -0 -120 -120 -PCM_Package_QFP_AKL -TQFP-128_14x14mm_P0.4mm -TQFP128 14x14 / TQFP128 CASE 932BB (see ON Semiconductor 932BB.PDF), Alternate KiCad Library -QFP 0.4 -0 -128 -128 -PCM_Package_QFP_AKL -TQFP-144_16x16mm_P0.4mm -144-Lead Plastic Thin Quad Flatpack (PH) - 16x16x1 mm Body, 2.00 mm Footprint [TQFP] (see Microchip Packaging Specification 00000049BS.pdf), Alternate KiCad Library -QFP 0.4 -0 -144 -144 -PCM_Package_QFP_AKL -TQFP-144_20x20mm_P0.5mm -TQFP, 144 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), Alternate KiCad Library -TQFP QFP -0 -144 -144 -PCM_Package_QFP_AKL -TQFP-176_24x24mm_P0.5mm -TQFP, 176 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), Alternate KiCad Library -TQFP QFP -0 -176 -176 -PCM_Package_QFP_AKL -VQFP-80_14x14mm_P0.65mm -VQFP, 80 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), Alternate KiCad Library -VQFP QFP -0 -80 -80 -PCM_Package_QFP_AKL -VQFP-100_14x14mm_P0.5mm -VQFP, 100 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), Alternate KiCad Library -VQFP QFP -0 -100 -100 -PCM_Package_QFP_AKL -VQFP-128_14x14mm_P0.4mm -VQFP, 128 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), Alternate KiCad Library -VQFP QFP -0 -128 -128 -PCM_Package_QFP_AKL -VQFP-176_20x20mm_P0.4mm -VQFP, 176 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), Alternate KiCad Library -VQFP QFP -0 -176 -176 -PCM_Package_SIP_AKL -PowerIntegrations_eSIP-7C -eSIP-7C Vertical Flat Package with Heatsink Tab, https://ac-dc.power.com/sites/default/files/product-docs/topswitch-jx_family_datasheet.pdf -Power Integrations E Package -0 -6 -6 -PCM_Package_SIP_AKL -PowerIntegrations_eSIP-7F -eSIP-7F Flat Package with Heatsink Tab https://ac-dc.power.com/sites/default/files/product-docs/linkswitch-ph_family_datasheet.pdf -Power Integrations L Package -0 -6 -6 -PCM_Package_SIP_AKL -SIP-8 -SIP-8 19.4x3mm 2.54mm Pin Pitch -SIP8 SIP -0 -8 -8 -PCM_Package_SIP_AKL -SIP-8_BigPads -SIP-8 19.4x3mm 2.54mm Pin Pitch -SIP8 SIP -0 -8 -8 -PCM_Package_SIP_AKL -SIP-9 -SIP-9 22x3mm 2.54mm Pin Pitch -SIP9 SIP -0 -9 -9 -PCM_Package_SIP_AKL -SIP-9_BigPads -SIP-9 22x3mm 2.54mm Pin Pitch -SIP9 SIP -0 -9 -9 -PCM_Package_SIP_AKL -SIP-10 -SIP-9 24.4x3mm 2.54mm Pin Pitch -SIP9 SIP -0 -10 -10 -PCM_Package_SIP_AKL -SIP-10_BigPads -SIP-9 24.4x3mm 2.54mm Pin Pitch -SIP9 SIP -0 -10 -10 -PCM_Package_SIP_AKL -SIP3_11.6x8.5mm -RECOM,R78EXX,https://www.recom-power.com/pdf/Innoline/R-78Exx-0.5.pdf -SIP3 Regulator Module -0 -3 -3 -PCM_Package_SIP_AKL -SIP4_Sharp-SSR_P7.62mm_Angled -SIP4 Footprint for SSR made by Sharp -Solid State relais SSR Sharp -0 -4 -4 -PCM_Package_SIP_AKL -SIP4_Sharp-SSR_P7.62mm_Angled_NoHole -SIP4 Footprint for SSR made by Sharp -Solid State relais SSR Sharp -0 -4 -4 -PCM_Package_SIP_AKL -SIP4_Sharp-SSR_P7.62mm_Straight -SIP4 Footprint for SSR made by Sharp -Solid State relais SSR Sharp -0 -4 -4 -PCM_Package_SIP_AKL -SLA704XM -SIP SLA704XM (http://www.sumzi.com/upload/files/2007/07/2007073114282034189.PDF) -SIP -0 -18 -18 -PCM_Package_SIP_AKL -STK672-040-E -SIP-22 (http://www.onsemi.com/pub_link/Collateral/EN5227-D.PDF) -SIP-22 -0 -22 -22 -PCM_Package_SIP_AKL -STK672-080-E -SIP-15 (http://www.onsemi.com/pub_link/Collateral/EN6507-D.PDF) -SIP-15 -0 -15 -15 -PCM_Package_SIP_AKL -Sanyo_STK4xx-15_59.2x8.0mm_P2.54mm -Sanyo SIP-15, 59.2mm x 8.0mm bosy size, STK-433E STK-435E STK-436E (http://datasheet.octopart.com/STK430-Sanyo-datasheet-107060.pdf) -Sanyo SIP-15 -0 -15 -15 -PCM_Package_SIP_AKL -Sanyo_STK4xx-15_78.0x8.0mm_P2.54mm -Sanyo SIP-15, 78.0mm x 8.0mm bosy size, STK-437E STK-439E STK-441E STK-443E (http://datasheet.octopart.com/STK430-Sanyo-datasheet-107060.pdf) -Sanyo SIP-15 -0 -15 -15 -PCM_Package_SON_AKL -Diodes_PowerDI3333-8 -Diodes Incorporated PowerDI3333-8, Plastic Dual Flat No Lead Package, 3.3x3.3x0.8mm Body, https://www.diodes.com/assets/Package-Files/PowerDI3333-8.pdf, Alternate KiCad Library -PowerDI 0.65 -0 -17 -5 -PCM_Package_SON_AKL -Fairchild_DualPower33-6_3x3mm -Fairchild Power33 MOSFET package, 3x3mm (see https://www.fairchildsemi.com/datasheets/FD/FDMC8032L.pdf), Alternate KiCad Library -mosfet -0 -18 -6 -PCM_Package_SON_AKL -Fairchild_MicroPak-6_1.0x1.45mm_P0.5mm -Fairchild-specific MicroPak-6 1.0x1.45mm Pitch 0.5mm https://www.nxp.com/docs/en/application-note/AN10343.pdff, Alternate KiCad Library -Fairchild-specific MicroPak-6 1.0x1.45mm Pitch 0.5mm -0 -6 -6 -PCM_Package_SON_AKL -Fairchild_MicroPak2-6_1.0x1.0mm_P0.35mm -Fairchild-specific MicroPak2-6 1.0x1.0mm Pitch 0.35mm https://www.nxp.com/docs/en/application-note/AN10343.pdff, Alternate KiCad Library -Fairchild-specific MicroPak2-6 1.0x1.0mm Pitch 0.35mm -0 -6 -6 -PCM_Package_SON_AKL -HUSON-3-1EP_2x2mm_P1.3mm_EP1.1x1.6mm -HUSON, 3 Pin, SOT1061 (Ref: https://assets.nexperia.com/documents/data-sheet/PMEG2020CPA.pdf), Alternate KiCad Library -huson nolead SOT1061 -0 -7 -3 -PCM_Package_SON_AKL -HVSON-8-1EP_4x4mm_P0.8mm_EP2.2x3.1mm -HVSON, 8 Pin (https://www.nxp.com/docs/en/data-sheet/PCF8523.pdf (page 57)), Alternate KiCad Library -HVSON NoLead -0 -13 -9 -PCM_Package_SON_AKL -Infineon_PG-TDSON-8 -5x6mm SMD power transistor package, https://www.infineon.com/cms/en/product/packages/PG-TDSON/PG-TDSON-8-1/, Alternate KiCAD Library -TDSON-8 5x6mm infineon -0 -17 -5 -PCM_Package_SON_AKL -Infineon_PG-TDSON-8_Dual -5x6mm SMD dual power transistor package, https://www.infineon.com/cms/en/product/packages/PG-TDSON/PG-TDSON-8-10/, Alternate KiCAD Library -TDSON-8 dual 5x6mm infineon -0 -18 -6 -PCM_Package_SON_AKL -Infineon_PG-TDSON-8_FL -5x6mm SMD power transistor package, https://www.tme.eu/Document/028a6fc70d61beeb6da410f8ad1fc3a4/BSC010N04LS6ATMA1.pdf, Alternate KiCAD Library -TDSON-8 5x6mm infineon -0 -24 -3 -PCM_Package_SON_AKL -Infineon_PG-TISON-8-2 -Infineon, PG-TISON-8-2, 5x6x1.15mm, 1.27mm Pitch, Exposed Paddle, https://www.infineon.com/cms/en/product/packages/PG-TISON/PG-TISON-8-2/, Alternate KiCad Library -tison -0 -25 -7 -PCM_Package_SON_AKL -Infineon_PG-TISON-8-3 -Infineon, PG-TISON-8-2, 5x6x1.15mm, 1.27mm Pitch, Exposed Paddle, https://www.infineon.com/cms/en/product/packages/PG-TISON/PG-TISON-8-2/, Alternate KiCad Library -tison -0 -25 -7 -PCM_Package_SON_AKL -Infineon_PG-TISON-8-4 -Infineon, PG-TISON-8-4, 5x6x1.15mm, 1.27mm Pitch, Exposed Paddle, https://www.infineon.com/cms/en/product/packages/PG-TISON/PG-TISON-8-4/, Alternate KiCad Library -tison -0 -25 -8 -PCM_Package_SON_AKL -Infineon_PG-TISON-8-5 -Infineon, PG-TISON-8-5, 8x8x1.1mm, 1mm Pitch, https://www.infineon.com/cms/en/product/packages/PG-TISON/PG-TISON-8-5/, Alternate KiCad Library -tison -0 -31 -8 -PCM_Package_SON_AKL -Infineon_PG-VDSON-4_ThinPAK_8x8 -8x8mm Power transistor package, https://www.infineon.com/dgdl/Infineon-ApplicationNote_Recommendations_for_Assembly_VDSON_Packages-AN-v01_00-EN.pdf?fileId=db3a304342c787030142e6cd89812185, Alternate KiCAD Library -infineon ThinPAK 8x8 VDSON-4 -0 -17 -5 -PCM_Package_SON_AKL -Infineon_PG_TSDSON-8 -3.3x3.3mm SMD power transistor package, https://www.infineon.com/cms/en/product/packages/PG-TSDSON/PG-TSDSON-8-31/, Alternate KiCAD Library -3.3x3.3mm TSDSON infineon -0 -17 -5 -PCM_Package_SON_AKL -Infineon_PG_TSDSON-8_FL -3.3x3.3mm SMD power transistor package, https://www.infineon.com/cms/en/product/packages/PG-TSDSON/PG-TSDSON-8-32/, Alternate KiCAD Library -3.3x3.3mm TSDSON infineon -0 -21 -3 -PCM_Package_SON_AKL -NXP_XSON-16 -http://www.nxp.com/documents/outline_drawing/SOT1341-1.pdf, Alternate KiCad Library -NXP XSON SOT-1341 -0 -16 -16 -PCM_Package_SON_AKL -ROHM_VML0806 -VML0806, Rohm (http://rohmfs.rohm.com/en/techdata_basic/transistor/soldering_condition/VML0806_Soldering_Condition.pdf, http://rohmfs.rohm.com/en/products/databook/package/spec/discrete/vml0806_tr-e.pdf), Alternate KiCad Library -ROHM VML0806 -0 -3 -3 -PCM_Package_SON_AKL -RTC_SMD_MicroCrystal_C3_2.5x3.7mm -MicroCrystal C3 2.5x3.7mm, https://www.microcrystal.com/fileadmin/Media/Products/RTC/Datasheet/RV-1805-C3.pdf, Alternate KiCad Library -RTC C3 -0 -10 -10 -PCM_Package_SON_AKL -SON-8-1EP_3x2mm_P0.5mm_EP1.4x1.6mm -SON, 8 Pin (http://www.fujitsu.com/downloads/MICRO/fsa/pdf/products/memory/fram/MB85RS16-DS501-00014-6v0-E.pdf), Alternate KiCad Library -SON NoLead -0 -13 -9 -PCM_Package_SON_AKL -Texas_DQK -Texas WSON-6 DQK, http://www.ti.com/lit/ds/symlink/csd16301q2.pdf, Alternate KiCad Library -Texas WSON6 2x2mm -0 -10 -8 -PCM_Package_SON_AKL -Texas_DRC0010J -Texas DRC0010J, VSON10 3x3mm Body, 0.5mm Pitch, http://www.ti.com/lit/ds/symlink/tps63000.pdf, Alternate KiCad Library -Texas VSON10 3x3mm -0 -21 -11 -PCM_Package_SON_AKL -Texas_DRC0010J_ThermalVias -Texas DRC0010J, VSON10 3x3mm Body, 0.5mm Pitch, http://www.ti.com/lit/ds/symlink/tps63000.pdf, Alternate KiCad Library -Texas VSON10 3x3mm -0 -26 -11 -PCM_Package_SON_AKL -Texas_DSC0010J -3x3mm Body, 0.5mm Pitch, DSC0010J, WSON, http://www.ti.com/lit/ds/symlink/tps61201.pdf, Alternate KiCad Library -0.5 DSC0010J WSON -0 -21 -11 -PCM_Package_SON_AKL -Texas_DSC0010J_ThermalVias -3x3mm Body, 0.5mm Pitch, DSC0010J, WSON, http://www.ti.com/lit/ds/symlink/tps61201.pdf, Alternate KiCad Library -0.5 DSC0010J WSON -0 -27 -11 -PCM_Package_SON_AKL -Texas_PWSON-N6 -Plastic Small Outline No-Lead http://www.ti.com/lit/ml/mpds176e/mpds176e.pdf, Alternate KiCad Library -Plastic Small Outline No-Lead -0 -11 -7 -PCM_Package_SON_AKL -Texas_R-PWSON-N12_EP0.4x2mm -http://www.ti.com/lit/ds/symlink/tpd6f003.pdf, Alternate KiCad Library -WSON SMD -0 -16 -13 -PCM_Package_SON_AKL -Texas_S-PDSO-N12 -http://www.ti.com/lit/ds/symlink/bq27441-g1.pdf, Alternate KiCad Library -SON thermal pads -0 -36 -13 -PCM_Package_SON_AKL -Texas_S-PVSON-N8 -8-Lead Plastic VSON, 3x3mm Body, 0.65mm Pitch, S-PVSON-N8, http://www.ti.com/lit/ds/symlink/opa2333.pdf, Alternate KiCad Library -DFN 0.65 S-PVSON-N8 -0 -13 -9 -PCM_Package_SON_AKL -Texas_S-PVSON-N8_ThermalVias -8-Lead Plastic VSON, 3x3mm Body, 0.65mm Pitch, S-PVSON-N8, http://www.ti.com/lit/ds/symlink/opa2333.pdf, Alternate KiCad Library -DFN 0.65 S-PVSON-N8 -0 -19 -9 -PCM_Package_SON_AKL -Texas_S-PVSON-N10 -3x3mm Body, 0.5mm Pitch, S-PVSON-N10, DRC, http://www.ti.com/lit/ds/symlink/tps61201.pdf, Alternate KiCad Library -0.5 S-PVSON-N10 DRC -0 -21 -11 -PCM_Package_SON_AKL -Texas_S-PVSON-N10_ThermalVias -3x3mm Body, 0.5mm Pitch, S-PVSON-N10, DRC, http://www.ti.com/lit/ds/symlink/tps61201.pdf, Alternate KiCad Library -0.5 S-PVSON-N10 DRC -0 -27 -11 -PCM_Package_SON_AKL -Texas_S-PWSON-N8_EP1.2x2mm -WSON, 8 Pin (http://www.ti.com/lit/ds/symlink/lp2951.pdf#page=27), Alternate KiCad Library -WSON NoLead -0 -11 -9 -PCM_Package_SON_AKL -Texas_S-PWSON-N8_EP1.2x2mm_ThermalVias -WSON, 8 Pin (http://www.ti.com/lit/ds/symlink/lp2951.pdf#page=27), Alternate KiCad Library -WSON NoLead -0 -18 -9 -PCM_Package_SON_AKL -Texas_S-PWSON-N8_EP2.2x3mm -WSON, 8 Pin (https://www.ti.com/lit/ds/symlink/ina188.pdf?ts=1630816487707&ref_url=https%253A%252F%252Fwww.google.com%252F), Alternate KiCad Library -WSON NoLead -0 -13 -9 -PCM_Package_SON_AKL -Texas_S-PWSON-N8_EP2.2x3mm_ThermalVias -WSON, 8 Pin (https://www.ti.com/lit/ds/symlink/ina188.pdf?ts=1630816487707&ref_url=https%253A%252F%252Fwww.google.com%252F), Alternate KiCad Library -WSON NoLead -0 -26 -9 -PCM_Package_SON_AKL -Texas_S-PWSON-N10 -3x3mm Body, 0.5mm Pitch, S-PWSON-N10, DSC, http://www.ti.com/lit/ds/symlink/tps63060.pdf, Alternate KiCad Library -0.5 S-PWSON-N10 DSC -0 -39 -11 -PCM_Package_SON_AKL -Texas_S-PWSON-N10_ThermalVias -3x3mm Body, 0.5mm Pitch, S-PWSON-N10, DSC, http://www.ti.com/lit/ds/symlink/tps63060.pdf, Alternate KiCad Library -0.5 S-PWSON-N10 DSC -0 -45 -11 -PCM_Package_SON_AKL -Texas_X2SON-4_1x1mm_P0.65mm -X2SON 5 pin 1x1mm package (Reference Datasheet: http://www.ti.com/lit/ds/sbvs193d/sbvs193d.pdf Reference part: TPS383x), Alternate KiCad Library -X2SON -0 -13 -5 -PCM_Package_SON_AKL -Texas_X2SON-6_1x1mm_P0.35mm -Texas Instruments DPF Package, 1x1mm X2SON, https://www.ti.com/lit/ds/symlink/tlv3691.pdf?ts=1647587193911, Alternate KiCad Library -DPF 1x1 SON X2SON -0 -6 -6 -PCM_Package_SON_AKL -USON-10_2.5x1.0mm_P0.5mm -USON-10 2.5x1.0mm_ Pitch 0.5mm http://www.ti.com/lit/ds/symlink/tpd4e02b04.pdf, Alternate KiCad Library -USON-10 2.5x1.0mm Pitch 0.5mm -0 -10 -10 -PCM_Package_SON_AKL -USON-20_2x4mm_P0.4mm -USON-20 2x4mm Pitch 0.4mm http://www.ti.com/lit/ds/symlink/txb0108.pdf, Alternate KiCad Library -USON-20 2x4mm Pitch 0.4mm -0 -20 -20 -PCM_Package_SON_AKL -VSON-8_3.3x3.3mm_P0.65mm_NexFET -8-Lead Plastic Dual Flat, No Lead Package (MF) - 3.3x3.3x1 mm Body [VSON] http://www.ti.com/lit/ds/symlink/csd87334q3d.pdf, Alternate KiCad Library -VSON 0.65 -0 -15 -5 -PCM_Package_SON_AKL -VSON-10-1EP_3x3mm_P0.5mm_EP1.2x2mm -VSON, 10 Pin (http://rohmfs.rohm.com/en/products/databook/datasheet/ic/power/switching_regulator/bd8314nuv-e.pdf (Page 20)), Alternate KiCad Library -VSON NoLead -0 -15 -11 -PCM_Package_SON_AKL -VSON-10-1EP_3x3mm_P0.5mm_EP1.2x2mm_ThermalVias -VSON, 10 Pin (http://rohmfs.rohm.com/en/products/databook/datasheet/ic/power/switching_regulator/bd8314nuv-e.pdf (Page 20)), Alternate KiCad Library -VSON NoLead -0 -18 -11 -PCM_Package_SON_AKL -VSON-10-1EP_3x3mm_P0.5mm_EP1.65x2.4mm -VSON 10 Thermal on 11 3x3mm Pitch 0.5mm http://chip.tomsk.ru/chip/chipdoc.nsf/Package/D8A64DD165C2AAD9472579400024FC41!OpenDocument, Alternate KiCad Library -VSON 10 Thermal on 11 3x3mm Pitch 0.5mm -0 -21 -11 -PCM_Package_SON_AKL -VSON-10-1EP_3x3mm_P0.5mm_EP1.65x2.4mm_ThermalVias -VSON 10 Thermal on 11 3x3mm Pitch 0.5mm http://chip.tomsk.ru/chip/chipdoc.nsf/Package/D8A64DD165C2AAD9472579400024FC41!OpenDocument, Alternate KiCad Library -VSON 10 Thermal on 11 3x3mm Pitch 0.5mm -0 -27 -11 -PCM_Package_SON_AKL -VSONP-8-1EP_5x6_P1.27mm -SON, 8-Leads, Body 5x6x1mm, Pitch 1.27mm; (see Texas Instruments CSD18531Q5A http://www.ti.com/lit/ds/symlink/csd18531q5a.pdf), Alternate KiCad Library -VSONP 1.27 -0 -17 -3 -PCM_Package_SON_AKL -WSON-6-1EP_2x2mm_P0.65mm_EP1x1.6mm -WSON, 6 Pin (http://www.ti.com/lit/ds/symlink/tps61040.pdf#page=35), Alternate KiCad Library -WSON NoLead -0 -9 -7 -PCM_Package_SON_AKL -WSON-6-1EP_2x2mm_P0.65mm_EP1x1.6mm_ThermalVias -WSON, 6 Pin (http://www.ti.com/lit/ds/symlink/tps61040.pdf#page=35), Alternate KiCad Library -WSON NoLead -0 -12 -7 -PCM_Package_SON_AKL -WSON-6-1EP_3x3mm_P0.95mm -WSON6 3*3 MM, 0.95 PITCH; http://www.ti.com/lit/ds/symlink/lmr62421.pdf, Alternate KiCad Library -WSON6 0.95 -0 -11 -7 -PCM_Package_SON_AKL -WSON-6_1.5x1.5mm_P0.5mm -WSON6, http://www.ti.com/lit/ds/symlink/tlv702.pdf, Alternate KiCad Library -WSON6_1.5x1.5mm_P0.5mm -0 -6 -6 -PCM_Package_SON_AKL -WSON-8-1EP_2x2mm_P0.5mm_EP0.9x1.6mm -8-Lead Plastic WSON, 2x2mm Body, 0.5mm Pitch, WSON-8, http://www.ti.com/lit/ds/symlink/lm27761.pdf, Alternate KiCad Library -WSON 8 1EP -0 -11 -9 -PCM_Package_SON_AKL -WSON-8-1EP_2x2mm_P0.5mm_EP0.9x1.6mm_ThermalVias -8-Lead Plastic WSON, 2x2mm Body, 0.5mm Pitch, WSON-8, http://www.ti.com/lit/ds/symlink/lm27761.pdf, Alternate KiCad Library -WSON 8 1EP ThermalVias -0 -14 -9 -PCM_Package_SON_AKL -WSON-8-1EP_3x2.5mm_P0.5mm_EP1.2x1.5mm_PullBack -WSON, 8 Pin (http://www.ti.com/lit/ml/mpds400/mpds400.pdf), Alternate KiCad Library -WSON NoLead -0 -13 -9 -PCM_Package_SON_AKL -WSON-8-1EP_3x2.5mm_P0.5mm_EP1.2x1.5mm_PullBack_ThermalVias -WSON, 8 Pin (http://www.ti.com/lit/ml/mpds400/mpds400.pdf), Alternate KiCad Library -WSON NoLead -0 -18 -9 -PCM_Package_SON_AKL -WSON-8-1EP_3x3mm_P0.5mm_EP1.6x2.0mm -8-Lead Plastic WSON, 2x2mm Body, 0.5mm Pitch, WSON-8, http://www.ti.com/lit/ds/symlink/lm27761.pdf, Alternate KiCad Library -WSON 8 1EP -0 -13 -9 -PCM_Package_SON_AKL -WSON-8-1EP_3x3mm_P0.5mm_EP1.45x2.4mm -8-Lead Plastic WSON, 3x3mm Body, 0.5mm Pitch, WSON-8, https://www.ti.com/lit/ds/symlink/ina819.pdf?ts=1630823367142&ref_url=https%253A%252F%252Fwww.google.com%252F, Alternate KiCad Library -WSON 8 1EP -0 -11 -9 -PCM_Package_SON_AKL -WSON-8-1EP_6x5mm_P1.27mm_EP3.4x4.3mm -WSON, 8 Pin (http://www.winbond.com/resource-files/w25q32jv%20revg%2003272018%20plus.pdf (page 68)), Alternate KiCad Library -WSON NoLead -0 -13 -9 -PCM_Package_SON_AKL -WSON-8-1EP_6x5mm_P1.27mm_EP3.4x4mm -WSON, 8 Pin (http://ww1.microchip.com/downloads/en/AppNotes/S72030.pdf), Alternate KiCad Library -WSON NoLead -0 -13 -9 -PCM_Package_SON_AKL -WSON-8_4x4mm_P0.8mm -http://www.ti.com/lit/ml/mpds406/mpds406.pdf, Alternate KiCad Library -WSON8_4x4mm_P0.8mm -0 -13 -9 -PCM_Package_SON_AKL -WSON-10-1EP_2.5x2.5mm_P0.5mm_EP1.2x2mm -WSON, 10 Pin (http://www.ti.com/lit/gpn/tps63030#page=24), Alternate KiCad Library -WSON NoLead -0 -15 -11 -PCM_Package_SON_AKL -WSON-10-1EP_2.5x2.5mm_P0.5mm_EP1.2x2mm_ThermalVias -WSON, 10 Pin (http://www.ti.com/lit/gpn/tps63030#page=24), Alternate KiCad Library -WSON NoLead -0 -22 -11 -PCM_Package_SON_AKL -WSON-10-1EP_2x3mm_P0.5mm_EP0.84x2.4mm -WSON-10 package 2x3mm body, pitch 0.5mm, see http://www.ti.com/lit/ds/symlink/tps62177.pdf, Alternate KiCad Library -WSON 0.5 -0 -14 -11 -PCM_Package_SON_AKL -WSON-10-1EP_2x3mm_P0.5mm_EP0.84x2.4mm_ThermalVias -WSON-10 package 2x3mm body, pitch 0.5mm, thermal vias and counter-pad, see http://www.ti.com/lit/ds/symlink/tps62177.pdf, Alternate KiCad Library -WSON 0.5 thermal vias -0 -17 -11 -PCM_Package_SON_AKL -WSON-10-1EP_4x3mm_P0.5mm_EP2.2x2mm -10-Lead Plastic WSON, 4x3mm Body, 0.5mm Pitch (http://www.ti.com/lit/ds/symlink/lm4990.pdf), Alternate KiCad Library -WSON 0.5 -0 -15 -11 -PCM_Package_SON_AKL -WSON-12-1EP_3x2mm_P0.5mm_EP1x2.65 -WSON-12 http://www.ti.com/lit/ds/symlink/lm27762.pdf, Alternate KiCad Library -WSON-12 -0 -15 -13 -PCM_Package_SON_AKL -WSON-12-1EP_3x2mm_P0.5mm_EP1x2.65_ThermalVias -WSON-12 http://www.ti.com/lit/ds/symlink/lm27762.pdf, Alternate KiCad Library -WSON-12 -0 -19 -13 -PCM_Package_SON_AKL -WSON-12-1EP_4x4mm_P0.5mm_EP2.6x3mm -WSON, 12 Pin (http://www.ti.com/lit/ds/symlink/ldc1312.pdf#page=62), Alternate KiCad Library -WSON NoLead -0 -17 -13 -PCM_Package_SON_AKL -WSON-12-1EP_4x4mm_P0.5mm_EP2.6x3mm_ThermalVias -WSON, 12 Pin (http://www.ti.com/lit/ds/symlink/ldc1312.pdf#page=62), Alternate KiCad Library -WSON NoLead -0 -27 -13 -PCM_Package_SON_AKL -WSON-14-1EP_4.0x4.0mm_P0.5mm_EP2.6x2.6mm -14-Lead Plastic Dual Flat, No Lead Package - 4.0x4.0x0.8 mm Body [WSON], http://www.ti.com/lit/ml/mpds421/mpds421.pdf, Alternate KiCad Library -NHL014B -0 -19 -15 -PCM_Package_SON_AKL -WSON-16_3.3x1.35_P0.4mm -WSON-16 3.3 x 1.35mm Pitch 0.4mm http://www.chip.tomsk.ru/chip/chipdoc.nsf/Package/C67E729A4D6C883A4725793E004C8739!OpenDocument, Alternate KiCad Library -WSON-16 3.3 x 1.35mm Pitch 0.4mm -0 -21 -17 -PCM_Package_SON_AKL -X2SON-8_1.4x1mm_P0.35mm -X2SON-8 1.4x1mm Pitch0.35mm http://www.ti.com/lit/ds/symlink/pca9306.pdf, Alternate KiCad Library -X2SON-8 1.4x1mm Pitch0.35mm -0 -8 -8 -PCM_Package_SO_AKL -Diodes_PSOP-8 -8-Lead Plastic PSOP, Exposed Die Pad (see https://www.diodes.com/assets/Datasheets/AP2204.pdf), Alternate KiCad Library -SSOP 0.50 exposed pad -0 -13 -9 -PCM_Package_SO_AKL -Diodes_SO-8EP -8-Lead Plastic SO, Exposed Die Pad (see https://www.diodes.com/assets/Package-Files/SO-8EP.pdf), Alternate KiCad Library -SO exposed pad -0 -13 -9 -PCM_Package_SO_AKL -ETSSOP-20-1EP_4.4x6.5mm_P0.65mm_EP3x4.2mm -20-Lead Plastic Thin Shrink Small Outline (ST)-4.4 mm Body with Exposed Pad [eTSSOP] (see Microchip Packaging Specification 00000049BS.pdf), Alternate KiCad Library -SSOP 0.65 -0 -27 -21 -PCM_Package_SO_AKL -HSOP-8-1EP_3.9x4.9mm_P1.27mm_EP2.41x3.1mm -HSOP, 8 Pin (https://www.st.com/resource/en/datasheet/l5973d.pdf), Alternate KiCad Library -HSOP SO -0 -13 -9 -PCM_Package_SO_AKL -HSOP-8-1EP_3.9x4.9mm_P1.27mm_EP2.41x3.1mm_ThermalVias -HSOP, 8 Pin (https://www.st.com/resource/en/datasheet/l5973d.pdf), Alternate KiCad Library -HSOP SO -0 -20 -9 -PCM_Package_SO_AKL -HSOP-20-1EP_11.0x15.9mm_P1.27mm_SlugDown -HSOP 11.0x15.9mm Pitch 1.27mm Slug Down (PowerSO-20) [JEDEC MO-166] (http://www.st.com/resource/en/datasheet/tda7266d.pdf, www.st.com/resource/en/application_note/cd00003801.pdf), Alternate KiCad Library -HSOP 11.0 x 15.9mm Pitch 1.27mm -0 -55 -21 -PCM_Package_SO_AKL -HSOP-20-1EP_11.0x15.9mm_P1.27mm_SlugDown_ThermalVias -HSOP 11.0x15.9mm Pitch 1.27mm Slug Down Thermal Vias (PowerSO-20) [JEDEC MO-166] (http://www.st.com/resource/en/datasheet/tda7266d.pdf, www.st.com/resource/en/application_note/cd00003801.pdf), Alternate KiCad Library -HSOP 11.0 x 15.9mm Pitch 1.27mm -0 -101 -21 -PCM_Package_SO_AKL -HSOP-20-1EP_11.0x15.9mm_P1.27mm_SlugUp -HSOP 11.0x15.9mm Pitch 1.27mm Slug Up (PowerSO-20) [JEDEC MO-166] (http://www.st.com/resource/en/datasheet/tda7266d.pdf, www.st.com/resource/en/application_note/cd00003801.pdf), Alternate KiCad Library -HSOP 11.0 x 15.9mm Pitch 1.27mm -0 -20 -20 -PCM_Package_SO_AKL -HSOP-36-1EP_11.0x15.9mm_P0.65mm_SlugDown -HSOP 11.0x15.9mm Pitch 0.65mm Slug Down (PowerSO-36) [JEDEC MO-166] (http://www.st.com/resource/en/datasheet/vn808cm-32-e.pdf, http://www.st.com/resource/en/application_note/cd00003801.pdf), Alternate KiCad Library -HSOP 11.0 x 15.9mm Pitch 0.65mm -0 -71 -37 -PCM_Package_SO_AKL -HSOP-36-1EP_11.0x15.9mm_P0.65mm_SlugDown_ThermalVias -HSOP 11.0x15.9mm Pitch 0.65mm Slug Down Thermal Vias (PowerSO-36) [JEDEC MO-166] (http://www.st.com/resource/en/datasheet/vn808cm-32-e.pdf, http://www.st.com/resource/en/application_note/cd00003801.pdf), Alternate KiCad Library -HSOP 11.0 x 15.9mm Pitch 0.65mm -0 -117 -37 -PCM_Package_SO_AKL -HSOP-36-1EP_11.0x15.9mm_P0.65mm_SlugUp -HSOP 11.0x15.9mm Pitch 0.65mm Slug Up (PowerSO-36) [JEDEC MO-166] (http://www.st.com/resource/en/datasheet/vn808cm-32-e.pdf, http://www.st.com/resource/en/application_note/cd00003801.pdf), Alternate KiCad Library -HSOP 11.0 x 15.9mm Pitch 0.65mm -0 -36 -36 -PCM_Package_SO_AKL -HTSOP-8-1EP_3.9x4.9mm_P1.27mm_EP2.4x3.2mm -HTSOP, 8 Pin (https://media.digikey.com/pdf/Data%20Sheets/Rohm%20PDFs/BD9G341EFJ.pdf), Alternate KiCad Library -HTSOP SO -0 -13 -9 -PCM_Package_SO_AKL -HTSOP-8-1EP_3.9x4.9mm_P1.27mm_EP2.4x3.2mm_ThermalVias -HTSOP, 8 Pin (https://media.digikey.com/pdf/Data%20Sheets/Rohm%20PDFs/BD9G341EFJ.pdf), Alternate KiCad Library -HTSOP SO -0 -20 -9 -PCM_Package_SO_AKL -HTSSOP-14-1EP_4.4x5mm_P0.65mm_EP3.4x5mm_Mask3x3.1mm -HTSSOP, 14 Pin (http://www.ti.com/lit/ds/symlink/lm5161.pdf#page=34), Alternate KiCad Library -HTSSOP SO -0 -20 -15 -PCM_Package_SO_AKL -HTSSOP-14-1EP_4.4x5mm_P0.65mm_EP3.4x5mm_Mask3x3.1mm_ThermalVias -HTSSOP, 14 Pin (http://www.ti.com/lit/ds/symlink/lm5161.pdf#page=34), Alternate KiCad Library -HTSSOP SO -0 -30 -15 -PCM_Package_SO_AKL -HTSSOP-16-1EP_4.4x5mm_P0.65mm_EP3.4x5mm -16-Lead Plastic HTSSOP (4.4x5x1.2mm); Thermal pad; (http://www.ti.com/lit/ds/symlink/drv8833.pdf), Alternate KiCad Library -SSOP 0.65 -0 -29 -17 -PCM_Package_SO_AKL -HTSSOP-16-1EP_4.4x5mm_P0.65mm_EP3.4x5mm_Mask2.46x2.31mm -HTSSOP, 16 Pin (http://www.analog.com/media/en/technical-documentation/data-sheets/LTC7810.pdf), Alternate KiCad Library -HTSSOP SO -0 -22 -17 -PCM_Package_SO_AKL -HTSSOP-16-1EP_4.4x5mm_P0.65mm_EP3.4x5mm_Mask2.46x2.31mm_ThermalVias -HTSSOP, 16 Pin (http://www.analog.com/media/en/technical-documentation/data-sheets/LTC7810.pdf), Alternate KiCad Library -HTSSOP SO -0 -29 -17 -PCM_Package_SO_AKL -HTSSOP-16-1EP_4.4x5mm_P0.65mm_EP3.4x5mm_Mask3x3mm_ThermalVias -16-Lead Plastic HTSSOP (4.4x5x1.2mm); Thermal pad with vias; (http://www.ti.com/lit/ds/symlink/drv8800.pdf), Alternate KiCad Library -SSOP 0.65 -0 -40 -17 -PCM_Package_SO_AKL -HTSSOP-16-1EP_4.4x5mm_P0.65mm_EP3x3mm -HTSSOP, 16 Pin (https://www.st.com/resource/en/datasheet/stp08cp05.pdf#page=20), Alternate KiCad Library -HTSSOP SO -0 -21 -17 -PCM_Package_SO_AKL -HTSSOP-20-1EP_4.4x6.5mm_P0.65mm_EP2.85x4mm -HTSSOP, 20 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0108.PDF U20E-1), Alternate KiCad Library -HTSSOP SO -0 -23 -21 -PCM_Package_SO_AKL -HTSSOP-20-1EP_4.4x6.5mm_P0.65mm_EP3.4x6.5mm -20-Lead Plastic Thin Shrink Small Outline (ST)-4.4 mm Body [HTSSOP], with thermal pad with vias, Alternate KiCad Library -HTSSOP 0.65 -0 -29 -21 -PCM_Package_SO_AKL -HTSSOP-20-1EP_4.4x6.5mm_P0.65mm_EP3.4x6.5mm_Mask2.4x3.7mm -HTSSOP, 20 Pin (http://www.ti.com/lit/ds/symlink/bq24006.pdf), Alternate KiCad Library -HTSSOP SO -0 -24 -21 -PCM_Package_SO_AKL -HTSSOP-20-1EP_4.4x6.5mm_P0.65mm_EP3.4x6.5mm_Mask2.75x3.43mm -HTSSOP, 20 Pin (http://www.ti.com/lit/ds/symlink/tlc5971.pdf#page=37&zoom=160,-90,3), Alternate KiCad Library -HTSSOP SO -0 -26 -21 -PCM_Package_SO_AKL -HTSSOP-20-1EP_4.4x6.5mm_P0.65mm_EP3.4x6.5mm_Mask2.75x3.43mm_ThermalVias -HTSSOP, 20 Pin (http://www.ti.com/lit/ds/symlink/tlc5971.pdf#page=37&zoom=160,-90,3), Alternate KiCad Library -HTSSOP SO -0 -42 -21 -PCM_Package_SO_AKL -HTSSOP-20-1EP_4.4x6.5mm_P0.65mm_EP3.4x6.5mm_Mask2.75x3.43mm_ThermalVias_HandSolder -HTSSOP, 20 Pin (http://www.ti.com/lit/ds/symlink/tlc5971.pdf#page=37&zoom=160,-90,3), Alternate KiCad Library -HTSSOP SO -0 -42 -21 -PCM_Package_SO_AKL -HTSSOP-20-1EP_4.4x6.5mm_P0.65mm_EP3.4x6.5mm_Mask2.96x2.96mm -HTSSOP, 20 Pin (https://www.ti.com/lit/ds/symlink/tps2663.pdf#page=49), Alternate KiCad Library -HTSSOP SO -0 -26 -21 -PCM_Package_SO_AKL -HTSSOP-20-1EP_4.4x6.5mm_P0.65mm_EP3.4x6.5mm_Mask2.96x2.96mm_ThermalVias -HTSSOP, 20 Pin (https://www.ti.com/lit/ds/symlink/tps2663.pdf#page=49), Alternate KiCad Library -HTSSOP SO -0 -42 -21 -PCM_Package_SO_AKL -HTSSOP-20-1EP_4.4x6.5mm_P0.65mm_EP3.4x6.5mm_ThermalVias -20-Lead Plastic Thin Shrink Small Outline (ST)-4.4 mm Body [HTSSOP], with thermal pad with vias, Alternate KiCad Library -HTSSOP 0.65 -0 -45 -21 -PCM_Package_SO_AKL -HTSSOP-24-1EP_4.4x7.8mm_P0.65mm_EP3.2x5mm -HTSSOP, 24 Pin (https://www.st.com/resource/en/datasheet/stp16cp05.pdf#page=25), Alternate KiCad Library -HTSSOP SO -0 -31 -25 -PCM_Package_SO_AKL -HTSSOP-24-1EP_4.4x7.8mm_P0.65mm_EP3.4x7.8mm_Mask2.4x4.68mm -HTSSOP, 24 Pin (http://www.ti.com/lit/ds/symlink/tps703.pdf), Alternate KiCad Library -HTSSOP SO -0 -28 -25 -PCM_Package_SO_AKL -HTSSOP-24-1EP_4.4x7.8mm_P0.65mm_EP3.4x7.8mm_Mask2.4x4.68mm_ThermalVias -HTSSOP, 24 Pin (http://www.ti.com/lit/ds/symlink/tps703.pdf), Alternate KiCad Library -HTSSOP SO -0 -47 -25 -PCM_Package_SO_AKL -HTSSOP-28-1EP_4.4x9.7mm_P0.65mm_EP2.85x5.4mm -HTSSOP, 28 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0108.PDF), Alternate KiCad Library -HTSSOP SO -0 -32 -29 -PCM_Package_SO_AKL -HTSSOP-28-1EP_4.4x9.7mm_P0.65mm_EP2.85x5.4mm_ThermalVias -HTSSOP, 28 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0108.PDF), Alternate KiCad Library -HTSSOP SO -0 -41 -29 -PCM_Package_SO_AKL -HTSSOP-28-1EP_4.4x9.7mm_P0.65mm_EP3.4x9.5mm -HTSSOP28: plastic thin shrink small outline package; 28 leads; body width 4.4 mm; thermal pad, Alternate KiCad Library -TSSOP HTSSOP 0.65 thermal pad -0 -39 -29 -PCM_Package_SO_AKL -HTSSOP-28-1EP_4.4x9.7mm_P0.65mm_EP3.4x9.5mm_Mask2.4x6.17mm -HTSSOP28: plastic thin shrink small outline package; 28 leads; body width 4.4 mm; thermal pad, Alternate KiCad Library -TSSOP HTSSOP 0.65 thermal pad -0 -40 -29 -PCM_Package_SO_AKL -HTSSOP-28-1EP_4.4x9.7mm_P0.65mm_EP3.4x9.5mm_Mask2.4x6.17mm_ThermalVias -HTSSOP28: plastic thin shrink small outline package; 28 leads; body width 4.4 mm; thermal pad, Alternate KiCad Library -TSSOP HTSSOP 0.65 thermal pad -0 -55 -29 -PCM_Package_SO_AKL -HTSSOP-28-1EP_4.4x9.7mm_P0.65mm_EP3.4x9.5mm_Mask2.25x6.17mm_ThermalVias -HTSSOP28: plastic thin shrink small outline package; 28 leads; body width 4.4 mm; thermal pad, Alternate KiCad Library -TSSOP HTSSOP 0.65 thermal pad -0 -55 -29 -PCM_Package_SO_AKL -HTSSOP-28-1EP_4.4x9.7mm_P0.65mm_EP3.4x9.5mm_ThermalVias -HTSSOP28: plastic thin shrink small outline package; 28 leads; body width 4.4 mm; thermal pad, Alternate KiCad Library -TSSOP HTSSOP 0.65 thermal pad -0 -58 -29 -PCM_Package_SO_AKL -HTSSOP-32-1EP_6.1x11mm_P0.65mm_EP5.2x11mm_Mask4.11x4.36mm -HTSSOP32: plastic thin shrink small outline package; 32 leads; body width 6.1 mm; lead pitch 0.65 mm (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot487-1_po.pdf), Alternate KiCad Library -SSOP 0.65 PowerPAD -0 -43 -33 -PCM_Package_SO_AKL -HTSSOP-32-1EP_6.1x11mm_P0.65mm_EP5.2x11mm_Mask4.11x4.36mm_ThermalVias -HTSSOP32: plastic thin shrink small outline package; 32 leads; body width 6.1 mm; lead pitch 0.65 mm (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot487-1_po.pdf), Alternate KiCad Library -SSOP 0.65 PowerPAD -0 -83 -33 -PCM_Package_SO_AKL -HTSSOP-38-1EP_6.1x12.5mm_P0.65mm_EP5.2x12.5mm_Mask3.39x6.35mm -HTSSOP, 38 Pin (http://www.ti.com/lit/ds/symlink/tlc5951.pdf#page=47&zoom=140,-67,15), Alternate KiCad Library -HTSSOP SO -0 -46 -39 -PCM_Package_SO_AKL -HTSSOP-38-1EP_6.1x12.5mm_P0.65mm_EP5.2x12.5mm_Mask3.39x6.35mm_ThermalVias -HTSSOP, 38 Pin (http://www.ti.com/lit/ds/symlink/tlc5951.pdf#page=47&zoom=140,-67,15), Alternate KiCad Library -HTSSOP SO -0 -87 -39 -PCM_Package_SO_AKL -HTSSOP-56-1EP_6.1x14mm_P0.5mm_EP3.61x6.35mm -HTSSOP56: plastic thin shrink small outline package http://www.ti.com/lit/ds/symlink/drv8301.pdf, Alternate KiCad Library -HTSSOP 0.5 -0 -72 -57 -PCM_Package_SO_AKL -Infineon_PG-DSO-8-27_3.9x4.9mm_EP2.65x3mm -Infineon PG-DSO, 8 Pin (https://www.infineon.com/cms/en/product/packages/PG-DSO/PG-DSO-8-27), Alternate KiCad Library -Infineon PG-DSO SO -0 -13 -9 -PCM_Package_SO_AKL -Infineon_PG-DSO-8-27_3.9x4.9mm_EP2.65x3mm_ThermalVias -Infineon PG-DSO, 8 Pin (https://www.infineon.com/cms/en/product/packages/PG-DSO/PG-DSO-8-27), Alternate KiCad Library -Infineon PG-DSO SO -0 -23 -9 -PCM_Package_SO_AKL -Infineon_PG-DSO-8-43 -Infineon_PG-DSO-8-43, Alternate KiCad Library -DSO DSO-8 SOIC SOIC-8 -0 -13 -9 -PCM_Package_SO_AKL -Infineon_PG-DSO-12-9 -Infineon PG-DSO 12 pin, exposed pad: 4.5x8.1mm, with thermal vias (https://www.infineon.com/cms/en/product/packages/PG-DSO/PG-DSO-12-9/), Alternate KiCad Library -PG-DSO -0 -23 -13 -PCM_Package_SO_AKL -Infineon_PG-DSO-12-9_ThermalVias -Infineon PG-DSO 12 pin, exposed pad: 4.5x8.1mm, with thermal vias (https://www.infineon.com/cms/en/product/packages/PG-DSO/PG-DSO-12-9/), Alternate KiCad Library -PG-DSO -0 -42 -13 -PCM_Package_SO_AKL -Infineon_PG-DSO-12-11 -Infineon PG-DSO 12 pin, exposed pad: 4.5x8.1mm, with thermal vias (https://www.infineon.com/cms/en/product/packages/PG-DSO/PG-DSO-12-11/), Alternate KiCad Library -PG-DSO -0 -23 -13 -PCM_Package_SO_AKL -Infineon_PG-DSO-12-11_ThermalVias -Infineon PG-DSO 12 pin, exposed pad: 4.5x8.1mm, with thermal vias (https://www.infineon.com/cms/en/product/packages/PG-DSO/PG-DSO-12-11/), Alternate KiCad Library -PG-DSO -0 -42 -13 -PCM_Package_SO_AKL -Infineon_PG-DSO-20-30 -Infineon SO package 20pin, exposed pad 4.5x7mm (https://www.infineon.com/cms/en/product/packages/PG-DSO/PG-DSO-20-71/), Alternate KiCad Library -DSO-20 -0 -31 -21 -PCM_Package_SO_AKL -Infineon_PG-DSO-20-30_ThermalVias -Infineon SO package 20pin, exposed pad 4.5x7mm (https://www.infineon.com/cms/en/product/packages/PG-DSO/PG-DSO-20-71/), Alternate KiCad Library -DSO-20 -0 -45 -21 -PCM_Package_SO_AKL -Infineon_PG-DSO-20-32 -Infineon SO package 20pin without exposed pad (https://www.infineon.com/cms/en/product/packages/PG-DSO/PG-DSO-20-32/), Alternate KiCad Library -DSO-20 -0 -20 -20 -PCM_Package_SO_AKL -Infineon_PG-TSDSO-14-22 -Infineon_PG-TSDSO-14-22, Alternate KiCad Library -Infineon TSDSO 14-22 -0 -17 -15 -PCM_Package_SO_AKL -Linear_MSOP-12-16-1EP_3x4mm_P0.5mm -12-Lead Plastic Micro Small Outline Package (MS) [MSOP], variant of MSOP-16 (see http://cds.linear.com/docs/en/datasheet/3630fd.pdf), Alternate KiCad Library -SSOP 0.5 -0 -15 -13 -PCM_Package_SO_AKL -Linear_MSOP-12-16_3x4mm_P0.5mm -12-Lead Plastic Micro Small Outline Package (MS) [MSOP], variant of MSOP-16 (see https://www.analog.com/media/en/technical-documentation/data-sheets/3748fb.pdf), Alternate KiCad Library -SSOP 0.5 -0 -12 -12 -PCM_Package_SO_AKL -MFSOP6-4_4.4x3.6mm_P1.27mm -https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.4pin%20MFSOP6.html, Alternate KiCad Library -MFSOP 4 pin SMD -0 -4 -4 -PCM_Package_SO_AKL -MFSOP6-5_4.4x3.6mm_P1.27mm -https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.5pin%20MFSOP6.html, Alternate KiCad Library -MFSOP 4 pin SMD -0 -5 -5 -PCM_Package_SO_AKL -MSOP-8-1EP_3x3mm_P0.65mm_EP1.68x1.88mm -MSOP, 8 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/4440fb.pdf#page=13), Alternate KiCad Library -MSOP SO -0 -13 -9 -PCM_Package_SO_AKL -MSOP-8-1EP_3x3mm_P0.65mm_EP1.68x1.88mm_ThermalVias -MSOP, 8 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/4440fb.pdf#page=13), Alternate KiCad Library -MSOP SO -0 -18 -9 -PCM_Package_SO_AKL -MSOP-8-1EP_3x3mm_P0.65mm_EP1.73x1.85mm -MSOP, 8 Pin (http://www.ti.com/lit/ds/symlink/lm25085.pdf#page=32), Alternate KiCad Library -MSOP SO -0 -13 -9 -PCM_Package_SO_AKL -MSOP-8-1EP_3x3mm_P0.65mm_EP1.73x1.85mm_ThermalVias -MSOP, 8 Pin (http://www.ti.com/lit/ds/symlink/lm25085.pdf#page=32), Alternate KiCad Library -MSOP SO -0 -18 -9 -PCM_Package_SO_AKL -MSOP-8-1EP_3x3mm_P0.65mm_EP1.95x2.15mm -MSOP, 8 Pin (http://www.st.com/resource/en/datasheet/pm8834.pdf), Alternate KiCad Library -MSOP SO -0 -13 -9 -PCM_Package_SO_AKL -MSOP-8-1EP_3x3mm_P0.65mm_EP1.95x2.15mm_ThermalVias -MSOP, 8 Pin (http://www.st.com/resource/en/datasheet/pm8834.pdf), Alternate KiCad Library -MSOP SO -0 -18 -9 -PCM_Package_SO_AKL -MSOP-8-1EP_3x3mm_P0.65mm_EP2.5x3mm_Mask1.73x2.36mm -MSOP, 8 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/mic5355_6.pdf#page=15), Alternate KiCad Library -MSOP SO -0 -14 -9 -PCM_Package_SO_AKL -MSOP-8-1EP_3x3mm_P0.65mm_EP2.5x3mm_Mask1.73x2.36mm_ThermalVias -MSOP, 8 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/mic5355_6.pdf#page=15), Alternate KiCad Library -MSOP SO -0 -19 -9 -PCM_Package_SO_AKL -MSOP-8_3x3mm_P0.65mm -MSOP, 8 Pin (https://www.jedec.org/system/files/docs/mo-187F.pdf variant AA), Alternate KiCad Library -MSOP SO -0 -8 -8 -PCM_Package_SO_AKL -MSOP-10-1EP_3x3mm_P0.5mm_EP1.68x1.88mm -MSOP, 10 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/3805fg.pdf#page=18), Alternate KiCad Library -MSOP SO -0 -15 -11 -PCM_Package_SO_AKL -MSOP-10-1EP_3x3mm_P0.5mm_EP1.68x1.88mm_ThermalVias -MSOP, 10 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/3805fg.pdf#page=18), Alternate KiCad Library -MSOP SO -0 -20 -11 -PCM_Package_SO_AKL -MSOP-10-1EP_3x3mm_P0.5mm_EP1.73x1.98mm -MSOP, 10 Pin (www.allegromicro.com/~/media/Files/Datasheets/A4952-3-Datasheet.ashx?la=en#page=10), Alternate KiCad Library -MSOP SO -0 -15 -11 -PCM_Package_SO_AKL -MSOP-10-1EP_3x3mm_P0.5mm_EP1.73x1.98mm_ThermalVias -MSOP, 10 Pin (www.allegromicro.com/~/media/Files/Datasheets/A4952-3-Datasheet.ashx?la=en#page=10), Alternate KiCad Library -MSOP SO -0 -20 -11 -PCM_Package_SO_AKL -MSOP-10_3x3mm_P0.5mm -10-Lead Plastic Micro Small Outline Package (MS) [MSOP] (see Microchip Packaging Specification 00000049BS.pdf), Alternate KiCad Library -SSOP 0.5 -0 -10 -10 -PCM_Package_SO_AKL -MSOP-12-1EP_3x4mm_P0.65mm_EP1.65x2.85mm -MSOP, 12 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/3652fe.pdf#page=24), Alternate KiCad Library -MSOP SO -0 -17 -13 -PCM_Package_SO_AKL -MSOP-12-1EP_3x4mm_P0.65mm_EP1.65x2.85mm_ThermalVias -MSOP, 12 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/3652fe.pdf#page=24), Alternate KiCad Library -MSOP SO -0 -24 -13 -PCM_Package_SO_AKL -MSOP-12-16-1EP_3x4mm_P0.5mm_EP1.65x2.85mm -10-Lead Plastic Micro Small Outline Package (MS) [MSOP] (see Microchip Packaging Specification 00000049BS.pdf), Alternate KiCad Library -SSOP 0.5 -0 -19 -13 -PCM_Package_SO_AKL -MSOP-12-16-1EP_3x4mm_P0.5mm_EP1.65x2.85mm_ThermalVias -10-Lead Plastic Micro Small Outline Package (MS) [MSOP] (see Microchip Packaging Specification 00000049BS.pdf), Alternate KiCad Library -SSOP 0.5 -0 -25 -13 -PCM_Package_SO_AKL -MSOP-12-16_3x4mm_P0.5mm -10-Lead Plastic Micro Small Outline Package (MS) [MSOP] (see Microchip Packaging Specification 00000049BS.pdf), Alternate KiCad Library -SSOP 0.5 -0 -12 -12 -PCM_Package_SO_AKL -MSOP-12_3x4mm_P0.65mm -MSOP, 12 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/6957fb.pdf#page=36), Alternate KiCad Library -MSOP SO -0 -12 -12 -PCM_Package_SO_AKL -MSOP-16-1EP_3x4.039mm_P0.5mm_EP1.651x2.845mm -MSOP, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-msop/05081667_F_MSE16.pdf), Alternate KiCad Library -MSOP SO -0 -21 -17 -PCM_Package_SO_AKL -MSOP-16-1EP_3x4.039mm_P0.5mm_EP1.651x2.845mm_ThermalVias -MSOP, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-msop/05081667_F_MSE16.pdf), Alternate KiCad Library -MSOP SO -0 -28 -17 -PCM_Package_SO_AKL -MSOP-16-1EP_3x4mm_P0.5mm_EP1.65x2.85mm -MSOP, 16 Pin (http://cds.linear.com/docs/en/datasheet/37551fd.pdf#page=23), Alternate KiCad Library -MSOP SO -0 -21 -17 -PCM_Package_SO_AKL -MSOP-16-1EP_3x4mm_P0.5mm_EP1.65x2.85mm_ThermalVias -MSOP, 16 Pin (http://cds.linear.com/docs/en/datasheet/37551fd.pdf#page=23), Alternate KiCad Library -MSOP SO -0 -28 -17 -PCM_Package_SO_AKL -MSOP-16_3x4.039mm_P0.5mm -MSOP, 16 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-msop/05081669_A_MS16.pdf), Alternate KiCad Library -MSOP SO -0 -16 -16 -PCM_Package_SO_AKL -MSOP-16_3x4mm_P0.5mm -MSOP, 16 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/436412f.pdf#page=22), Alternate KiCad Library -MSOP SO -0 -16 -16 -PCM_Package_SO_AKL -ONSemi_SO-8FL_488AA -ON Semi DFN5 5x6mm 1.27P SO-8FL CASE 488A https://www.onsemi.com/pub/Collateral/488AA.PDF, Alternate KiCad Library -ON Semi DFN5 5x6mm 1.27P SO-8FL CASE 488A -0 -17 -5 -PCM_Package_SO_AKL -OnSemi_Micro8 -ON Semiconductor Micro8 (Case846A-02): https://www.onsemi.com/pub/Collateral/846A-02.PDF, Alternate KiCad Library -micro8 -0 -8 -8 -PCM_Package_SO_AKL -PSOP-44_16.9x27.17mm_P1.27mm -PSOP44: plastic thin shrink small outline package; 44 leads; body width 16.90 mm, Alternate KiCad Library -PSOP 1.27 -0 -44 -44 -PCM_Package_SO_AKL -PowerIntegrations_SO-8 -Power-Integrations variant of 8-Lead Plastic Small Outline (SN) - Narrow, 3.90 mm Body [SOIC], see https://ac-dc.power.com/sites/default/files/product-docs/senzero_family_datasheet.pdf, Alternate KiCad Library -SOIC 1.27 -0 -8 -8 -PCM_Package_SO_AKL -PowerIntegrations_SO-8B -Power-Integrations variant of 8-Lead Plastic Small Outline (SN) - Narrow, 3.90 mm Body [SOIC], see https://www.mouser.com/ds/2/328/linkswitch-pl_family_datasheet-12517.pdf, Alternate KiCad Library -SOIC 1.27 -0 -7 -7 -PCM_Package_SO_AKL -PowerIntegrations_SO-8C -Power-Integrations variant of 8-Lead Plastic Small Outline (SN) - Narrow, 3.90 mm Body [SOIC], see https://www.mouser.com/ds/2/328/linkswitch-pl_family_datasheet-12517.pdf, Alternate KiCad Library -SOIC 1.27 -0 -7 -7 -PCM_Package_SO_AKL -PowerIntegrations_eSOP-12B -eSOP-12B SMT Flat Package with Heatsink Tab, see https://ac-dc.power.com/sites/default/files/product-docs/topswitch-jx_family_datasheet.pdf, Alternate KiCad Library -Power Integrations K Package -0 -27 -12 -PCM_Package_SO_AKL -PowerPAK_SO-8_Dual -PowerPAK SO-8 Dual (https://www.vishay.com/docs/71655/powerpak.pdf, https://www.vishay.com/docs/72600/72600.pdf), Alternate KiCad Library -PowerPAK SO-8 Dual -0 -14 -6 -PCM_Package_SO_AKL -PowerPAK_SO-8_Single -PowerPAK SO-8 Single (https://www.vishay.com/docs/71655/powerpak.pdf, https://www.vishay.com/docs/72599/72599.pdf), Alternate KiCad Library -PowerPAK SO-8 Single -0 -13 -5 -PCM_Package_SO_AKL -QSOP-16_3.9x4.9mm_P0.635mm -16-Lead Plastic Shrink Small Outline Narrow Body (QR)-.150" Body [QSOP] (see Microchip Packaging Specification 00000049BS.pdf), Alternate KiCad Library -SSOP 0.635 -0 -16 -16 -PCM_Package_SO_AKL -QSOP-20_3.9x8.7mm_P0.635mm -20-Lead Plastic Shrink Small Outline Narrow Body (http://www.analog.com/media/en/technical-documentation/data-sheets/ADuM7640_7641_7642_7643.pdf), Alternate KiCad Library -QSOP 0.635 -0 -20 -20 -PCM_Package_SO_AKL -QSOP-24_3.9x8.7mm_P0.635mm -24-Lead Plastic Shrink Small Outline Narrow Body (QR)-.150" Body [QSOP] (see Microchip Packaging Specification 00000049CH.pdf), Alternate KiCad Library -QSOP 0.635 -0 -24 -24 -PCM_Package_SO_AKL -SC-74-6_1.5x2.9mm_P0.95mm -SC-74, 6 Pin (https://www.nxp.com/docs/en/package-information/SOT457.pdf), Alternate KiCad Library -SC-74 SO -0 -6 -6 -PCM_Package_SO_AKL -SO-4_4.4x2.3mm_P1.27mm -4-Lead Plastic Small Outline (SO), see http://datasheet.octopart.com/OPIA403BTRE-Optek-datasheet-5328560.pdf, Alternate KiCad Library -SO SOIC 1.27 -0 -4 -4 -PCM_Package_SO_AKL -SO-4_4.4x3.6mm_P2.54mm -4-Lead Plastic Small Outline (SO), see https://www.elpro.org/de/index.php?controller=attachment&id_attachment=339, Alternate KiCad Library -SO SOIC 2.54 -0 -4 -4 -PCM_Package_SO_AKL -SO-4_4.4x3.9mm_P2.54mm -SO, 4 Pin (https://toshiba.semicon-storage.com/info/docget.jsp?did=10047&prodName=TLP3123), Alternate KiCad Library -SO SO -0 -4 -4 -PCM_Package_SO_AKL -SO-4_4.4x4.3mm_P2.54mm -4-Lead Plastic Small Outline (SO), see https://docs.broadcom.com/docs/AV02-0173EN, Alternate KiCad Library -SO SOIC 2.54 -0 -4 -4 -PCM_Package_SO_AKL -SO-4_7.6x3.6mm_P2.54mm -4-Lead Plastic Small Outline (SO) (http://www.everlight.com/file/ProductFile/201407061745083848.pdf), Alternate KiCad Library -SO SOIC 2.54 -0 -4 -4 -PCM_Package_SO_AKL -SO-5_4.4x3.6mm_P1.27mm -5-Lead Plastic Small Outline (SO), see https://docs.broadcom.com/cs/Satellite?blobcol=urldata&blobheader=application%2Fpdf&blobheadername1=Content-Disposition&blobheadername2=Content-Type&blobheadername3=MDT-Type&blobheadervalue1=attachment%3Bfilename%3DIPD-Selection-Guide_AV00-0254EN_030617.pdf&blobheadervalue2=application%2Fx-download&blobheadervalue3=abinary%253B%2Bcharset%253DUTF-8&blobkey=id&blobnocache=true&blobtable=MungoBlobs&blobwhere=1430884105675&ssbinary=true, Alternate KiCad Library -SO SOIC 1.27 -0 -5 -5 -PCM_Package_SO_AKL -SO-5_4.4x4.1mm_P1.27mm -5-Lead Plastic Small Outline (SO), see https://www.tme.eu/Document/8491f02d2d82a7fa1d039b86b6b63043/FODM452.pdf, Alternate KiCad Library -SO SOIC 1.27 -0 -5 -5 -PCM_Package_SO_AKL -SO-5_7.6x3.6mm_P2.54mm -4-Lead Plastic Small Outline (SO) (http://www.everlight.com/file/ProductFile/201407061745083848.pdf), Alternate KiCad Library -SO SOIC 2.54 -0 -5 -5 -PCM_Package_SO_AKL -SO-6L_10x3.84mm_P1.27mm -6-pin plasic small outline 7,5mm long https://toshiba.semicon-storage.com/info/docget.jsp?did=53548&prodName=TLP2770, Alternate KiCad Library -SO-6L -0 -6 -6 -PCM_Package_SO_AKL -SO-6_4.4x3.6mm_P1.27mm -6-Lead Plastic Small Outline (SO), see https://docs.broadcom.com/cs/Satellite?blobcol=urldata&blobheader=application%2Fpdf&blobheadername1=Content-Disposition&blobheadername2=Content-Type&blobheadername3=MDT-Type&blobheadervalue1=attachment%3Bfilename%3DIPD-Selection-Guide_AV00-0254EN_030617.pdf&blobheadervalue2=application%2Fx-download&blobheadervalue3=abinary%253B%2Bcharset%253DUTF-8&blobkey=id&blobnocache=true&blobtable=MungoBlobs&blobwhere=1430884105675&ssbinary=true, Alternate KiCad Library -SO SOIC 1.27 -0 -6 -6 -PCM_Package_SO_AKL -SO-6_6.8x4.6mm_P1.27mm -SO, 6 Pin (https://www.tme.eu/Document/6a786b7eaf7ffa2b2ea7a23b4081d680/ACPL-H312-000E.pdf), Alternate KiCad Library -SO SO -0 -6 -6 -PCM_Package_SO_AKL -SO-6_6.8x4.6mm_P1.27mm_Wide -SO, 6 Pin, Wide lead form variant (12.65mm) (https://www.tme.eu/Document/6a786b7eaf7ffa2b2ea7a23b4081d680/ACPL-H312-000E.pdf), Alternate KiCad Library -SO SO -0 -6 -6 -PCM_Package_SO_AKL -SO-6_7.5x3.84mm_P1.27mm -SO, 6 Pin (https://www.tme.eu/Document/0f43e954bced53526738cacd57456531/TLP2704-E-T.pdf), Alternate KiCad Library -SO SO -0 -6 -6 -PCM_Package_SO_AKL -SO-6_7.5x3.84mm_P1.27mm_Wide -SO, 6 Pin (https://www.tme.eu/Document/0f43e954bced53526738cacd57456531/TLP2704-E-T.pdf), Alternate KiCad Library -SO SO -0 -6 -6 -PCM_Package_SO_AKL -SO-8_3.9x4.9mm_P1.27mm -SO, 8 Pin (https://www.nxp.com/docs/en/data-sheet/PCF8523.pdf), Alternate KiCad Library -SO SO -0 -8 -8 -PCM_Package_SO_AKL -SO-8_3.9x6.2mm_P1.27mm -SO, 8 Pin (https://www.nxp.com/docs/en/data-sheet/PCF8523.pdf), Alternate KiCad Library -SO SO -0 -8 -8 -PCM_Package_SO_AKL -SO-8_4.4x5mm_P1.27mm -8-Lead Plastic Small Outline (SO), see https://www.tme.eu/Document/ddb3144ac72a0aaee2862110062bae81/BA4560F.pdf, Alternate KiCad Library -SO SOIC 1.27 -0 -8 -8 -PCM_Package_SO_AKL -SO-8_5.3x6.2mm_P1.27mm -SO, 8 Pin (https://www.ti.com/lit/ml/msop001a/msop001a.pdf), Alternate KiCad Library -SO SO -0 -8 -8 -PCM_Package_SO_AKL -SO-8_5x5mm_P1.27mm -SO, NJR DMP8 Package, 8 Pin (https://www.nisshinbo-microdevices.co.jp/en/pdf/package/dmp8.pdf), Alternate KiCad Library -SO SO DMP8 -0 -8 -8 -PCM_Package_SO_AKL -SO-8_6.8x5.9mm_P1.27mm -SO, 8 Pin (https://www.tme.eu/Document/6a786b7eaf7ffa2b2ea7a23b4081d680/ACPL-H312-000E.pdf), Alternate KiCad Library -SO SO -0 -8 -8 -PCM_Package_SO_AKL -SO-8_6.8x5.9mm_P1.27mm_Wide -SO, 8 Pin, Wide lead form variant (12.65mm) (https://www.tme.eu/Document/6a786b7eaf7ffa2b2ea7a23b4081d680/ACPL-H312-000E.pdf), Alternate KiCad Library -SO SO -0 -8 -8 -PCM_Package_SO_AKL -SO-14_5.3x10.2mm_P1.27mm -SO, 14 Pin (https://www.ti.com/lit/ml/msop002a/msop002a.pdf), Alternate KiCad Library -SO SO -0 -14 -14 -PCM_Package_SO_AKL -SO-16_5.3x10.2mm_P1.27mm -SO, 16 Pin (https://www.ti.com/lit/ml/msop002a/msop002a.pdf), Alternate KiCad Library -SO SO -0 -16 -16 -PCM_Package_SO_AKL -SO-20-1EP_7.52x12.825mm_P1.27mm_EP6.045x12.09mm_Mask3.56x4.47mm -SO, 20 Pin (http://www.ti.com/lit/ds/symlink/opa569.pdf, http://www.ti.com/lit/an/slma004b/slma004b.pdf), Alternate KiCad Library -SO SO -0 -26 -21 -PCM_Package_SO_AKL -SO-20-1EP_7.52x12.825mm_P1.27mm_EP6.045x12.09mm_Mask3.56x4.47mm_ThermalVias -SO, 20 Pin (http://www.ti.com/lit/ds/symlink/opa569.pdf, http://www.ti.com/lit/an/slma004b/slma004b.pdf), Alternate KiCad Library -SO SO -0 -51 -21 -PCM_Package_SO_AKL -SO-20_5.3x12.6mm_P1.27mm -SO, 20 Pin (https://www.ti.com/lit/ml/msop002a/msop002a.pdf), Alternate KiCad Library -SO SO -0 -20 -20 -PCM_Package_SO_AKL -SO-20_12.8x7.5mm_P1.27mm -SO-20, 12.8x7.5mm, https://www.nxp.com/docs/en/data-sheet/SA605.pdf, Alternate KiCad Library -S0-20 -0 -20 -20 -PCM_Package_SO_AKL -SO-24_5.3x15mm_P1.27mm -SO, 24 Pin (https://www.ti.com/lit/ml/msop002a/msop002a.pdf), Alternate KiCad Library -SO SO -0 -24 -24 -PCM_Package_SO_AKL -SOIC-4_4.55x2.6mm_P1.27mm -SOIC, 4 Pin (https://toshiba.semicon-storage.com/info/docget.jsp?did=12884&prodName=TLP291), Alternate KiCad Library -SOIC SO -0 -4 -4 -PCM_Package_SO_AKL -SOIC-4_4.55x3.7mm_P2.54mm -SOIC, 4 Pin (https://toshiba.semicon-storage.com/info/docget.jsp?did=11791&prodName=TLP185), Alternate KiCad Library -SOIC SO -0 -4 -4 -PCM_Package_SO_AKL -SOIC-4_4.55x4.4mm_P2.54mm -SOIC, 4 Pin (https://toshiba.semicon-storage.com/info/docget.jsp?did=11791&prodName=TLP185), Alternate KiCad Library -SOIC SO -0 -4 -4 -PCM_Package_SO_AKL -SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.29x3mm -SOIC, 8 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/ada4898-1_4898-2.pdf#page=29), Alternate KiCad Library -SOIC SO -0 -13 -9 -PCM_Package_SO_AKL -SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.29x3mm_ThermalVias -SOIC, 8 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/ada4898-1_4898-2.pdf#page=29), Alternate KiCad Library -SOIC SO -0 -20 -9 -PCM_Package_SO_AKL -SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.41x3.3mm -SOIC, 8 Pin (http://www.allegromicro.com/~/media/Files/Datasheets/A4950-Datasheet.ashx#page=8), Alternate KiCad Library -SOIC SO -0 -13 -9 -PCM_Package_SO_AKL -SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.41x3.3mm_ThermalVias -SOIC, 8 Pin (http://www.allegromicro.com/~/media/Files/Datasheets/A4950-Datasheet.ashx#page=8), Alternate KiCad Library -SOIC SO -0 -20 -9 -PCM_Package_SO_AKL -SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.41x3.81mm -SOIC, 8 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/ada4898-1_4898-2.pdf#page=29), Alternate KiCad Library -SOIC SO -0 -13 -9 -PCM_Package_SO_AKL -SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.41x3.81mm_ThermalVias -SOIC, 8 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/ada4898-1_4898-2.pdf#page=29), Alternate KiCad Library -SOIC SO -0 -20 -9 -PCM_Package_SO_AKL -SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.95x4.9mm_Mask2.71x3.4mm -SOIC, 8 Pin (http://www.ti.com/lit/ds/symlink/lm5017.pdf#page=31), Alternate KiCad Library -SOIC SO -0 -14 -9 -PCM_Package_SO_AKL -SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.95x4.9mm_Mask2.71x3.4mm_ThermalVias -SOIC, 8 Pin (http://www.ti.com/lit/ds/symlink/lm5017.pdf#page=31), Alternate KiCad Library -SOIC SO -0 -23 -9 -PCM_Package_SO_AKL -SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.514x3.2mm -SOIC, 8 Pin (https://www.renesas.com/eu/en/www/doc/datasheet/hip2100.pdf#page=13), Alternate KiCad Library -SOIC SO -0 -13 -9 -PCM_Package_SO_AKL -SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.514x3.2mm_ThermalVias -SOIC, 8 Pin (https://www.renesas.com/eu/en/www/doc/datasheet/hip2100.pdf#page=13), Alternate KiCad Library -SOIC SO -0 -20 -9 -PCM_Package_SO_AKL -SOIC-8-N7_3.9x4.9mm_P1.27mm -8-Lead Plastic Small Outline (SN) - Narrow, 3.90 mm Body [SOIC], pin 7 removed (Microchip Packaging Specification 00000049BS.pdf, http://www.onsemi.com/pub/Collateral/NCP1207B.PDF), Alternate KiCad Library -SOIC 1.27 -0 -7 -7 -PCM_Package_SO_AKL -SOIC-8_3.9x4.9mm_P1.27mm -SOIC, 8 Pin (JEDEC MS-012AA, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/soic_narrow-r/r_8.pdf), Alternate KiCad Library -SOIC SO -0 -8 -8 -PCM_Package_SO_AKL -SOIC-8_5.23x5.23mm_P1.27mm -SOIC, 8 Pin (http://www.winbond.com/resource-files/w25q32jv%20revg%2003272018%20plus.pdf#page=68), Alternate KiCad Library -SOIC SO -0 -8 -8 -PCM_Package_SO_AKL -SOIC-8_5.275x5.275mm_P1.27mm -SOIC, 8 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/20005045C.pdf#page=23), Alternate KiCad Library -SOIC SO -0 -8 -8 -PCM_Package_SO_AKL -SOIC-8_7.5x5.85mm_P1.27mm -SOIC, 8 Pin (http://www.ti.com/lit/ml/mpds382b/mpds382b.pdf), Alternate KiCad Library -SOIC SO -0 -8 -8 -PCM_Package_SO_AKL -SOIC-14W_7.5x9mm_P1.27mm -SOIC, 14 Pin (JEDEC MS-013AF, https://www.analog.com/media/en/package-pcb-resources/package/54614177245586rw_14.pdf), Alternate KiCad Library -SOIC SO -0 -14 -14 -PCM_Package_SO_AKL -SOIC-14_3.9x8.7mm_P1.27mm -SOIC, 14 Pin (JEDEC MS-012AB, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/soic_narrow-r/r_14.pdf), Alternate KiCad Library -SOIC SO -0 -14 -14 -PCM_Package_SO_AKL -SOIC-16W-12_7.5x10.3mm_P1.27mm -SOIC-16 With 12 Pin Placed - Wide, 7.50 mm Body [SOIC] (https://docs.broadcom.com/docs/AV02-0169EN), Alternate KiCad Library -SOIC 1.27 16 12 Wide -0 -12 -12 -PCM_Package_SO_AKL -SOIC-16W_5.3x10.2mm_P1.27mm -16-Lead Plastic Small Outline (SO) - Wide, 5.3 mm Body (http://www.ti.com/lit/ml/msop002a/msop002a.pdf), Alternate KiCad Library -SOIC 1.27 -0 -16 -16 -PCM_Package_SO_AKL -SOIC-16W_7.5x10.3mm_P1.27mm -SOIC, 16 Pin (JEDEC MS-013AA, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/soic_wide-rw/rw_16.pdf), Alternate KiCad Library -SOIC SO -0 -16 -16 -PCM_Package_SO_AKL -SOIC-16W_7.5x12.8mm_P1.27mm -SOIC, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ri_soic_ic/ri_16_1.pdf), Alternate KiCad Library -SOIC SO -0 -16 -16 -PCM_Package_SO_AKL -SOIC-16_3.9x9.9mm_P1.27mm -SOIC, 16 Pin (JEDEC MS-012AC, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/soic_narrow-r/r_16.pdf), Alternate KiCad Library -SOIC SO -0 -16 -16 -PCM_Package_SO_AKL -SOIC-16_4.55x10.3mm_P1.27mm -SOIC, 16 Pin (https://toshiba.semicon-storage.com/info/docget.jsp?did=12858&prodName=TLP291-4), Alternate KiCad Library -SOIC SO -0 -16 -16 -PCM_Package_SO_AKL -SOIC-18W_7.5x11.6mm_P1.27mm -SOIC, 18 Pin (JEDEC MS-013AB, https://www.analog.com/media/en/package-pcb-resources/package/33254132129439rw_18.pdf), Alternate KiCad Library -SOIC SO -0 -18 -18 -PCM_Package_SO_AKL -SOIC-20W_7.5x12.8mm_P1.27mm -SOIC, 20 Pin (JEDEC MS-013AC, https://www.analog.com/media/en/package-pcb-resources/package/233848rw_20.pdf), Alternate KiCad Library -SOIC SO -0 -20 -20 -PCM_Package_SO_AKL -SOIC-24W_7.5x15.4mm_P1.27mm -SOIC, 24 Pin (JEDEC MS-013AD, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/soic_wide-rw/RW_24.pdf), Alternate KiCad Library -SOIC SO -0 -24 -24 -PCM_Package_SO_AKL -SOIC-28W-8_7.5x17.9mm_P1.27mm -SOIC, 8 Pin High isolation, (https://www.ti.com/lit/ds/symlink/iso122.pdf?ts=1630824878123&ref_url=https%253A%252F%252Fwww.google.com%252F), Alternate KiCad Library -SOIC SO -0 -8 -8 -PCM_Package_SO_AKL -SOIC-28W_7.5x17.9mm_P1.27mm -SOIC, 28 Pin (JEDEC MS-013AE, https://www.analog.com/media/en/package-pcb-resources/package/35833120341221rw_28.pdf), Alternate KiCad Library -SOIC SO -0 -28 -28 -PCM_Package_SO_AKL -SOIC-28W_7.5x18.7mm_P1.27mm -SOIC, 28 Pin (https://www.akm.com/akm/en/file/datasheet/AK5394AVS.pdf#page=23), Alternate KiCad Library -SOIC SO -0 -28 -28 -PCM_Package_SO_AKL -SOIJ-8_5.3x5.3mm_P1.27mm -8-Lead Plastic Small Outline (SM) - Medium, 5.28 mm Body [SOIC] (see Microchip Packaging Specification 00000049BS.pdf), Alternate KiCad Library -SOIC 1.27 -0 -8 -8 -PCM_Package_SO_AKL -SOJ-36_10.16x23.49mm_P1.27mm -SOJ, 36 Pin (http://www.issi.com/WW/pdf/61-64C5128AL.pdf), Alternate KiCad Library -SOJ SO -0 -36 -36 -PCM_Package_SO_AKL -SOP-4_3.8x4.1mm_P2.54mm -SOP, 4 Pin (http://www.ixysic.com/home/pdfs.nsf/www/CPC1017N.pdf/$file/CPC1017N.pdf), Alternate KiCad Library -SOP SO -0 -4 -4 -PCM_Package_SO_AKL -SOP-4_4.4x2.6mm_P1.27mm -SOP, 4 Pin (http://www.vishay.com/docs/83510/tcmt1100.pdf), Alternate KiCad Library -SOP SO -0 -4 -4 -PCM_Package_SO_AKL -SOP-8-1EP_4.57x4.57mm_P1.27mm_EP4.57x4.45mm -SOP, 8 Pin (https://ww2.minicircuits.com/case_style/XX112.pdf), Alternate KiCad Library -SOP SO -0 -13 -9 -PCM_Package_SO_AKL -SOP-8-1EP_4.57x4.57mm_P1.27mm_EP4.57x4.45mm_ThermalVias -SOP, 8 Pin (https://ww2.minicircuits.com/case_style/XX112.pdf), Alternate KiCad Library -SOP SO -0 -20 -9 -PCM_Package_SO_AKL -SOP-8_3.9x4.9mm_P1.27mm -SOP, 8 Pin (http://www.macronix.com/Lists/Datasheet/Attachments/7534/MX25R3235F,%20Wide%20Range,%2032Mb,%20v1.6.pdf#page=79), Alternate KiCad Library -SOP SO -0 -8 -8 -PCM_Package_SO_AKL -SOP-8_3.76x4.96mm_P1.27mm -SOP, 8 Pin (https://ww2.minicircuits.com/case_style/XX211.pdf), Alternate KiCad Library -SOP SO -0 -8 -8 -PCM_Package_SO_AKL -SOP-8_5.28x5.23mm_P1.27mm -SOP, 8 Pin (http://www.macronix.com/Lists/Datasheet/Attachments/7534/MX25R3235F,%20Wide%20Range,%2032Mb,%20v1.6.pdf#page=80), Alternate KiCad Library -SOP SO -0 -8 -8 -PCM_Package_SO_AKL -SOP-8_6.62x9.15mm_P2.54mm -SOP, 8 Pin (http://www.ti.com/lit/ds/symlink/iso1050.pdf), Alternate KiCad Library -SOP SO -0 -8 -8 -PCM_Package_SO_AKL -SOP-16_4.4x10.4mm_P1.27mm -16-Lead Plastic Small Outline http://www.vishay.com/docs/49633/sg2098.pdf, Alternate KiCad Library -SOP 1.27 -0 -16 -16 -PCM_Package_SO_AKL -SOP-16_4.55x10.3mm_P1.27mm -SOP, 16 Pin (https://toshiba.semicon-storage.com/info/docget.jsp?did=12855&prodName=TLP290-4), Alternate KiCad Library -SOP SO -0 -16 -16 -PCM_Package_SO_AKL -SOP-18_7x12.5mm_P1.27mm -SOP, 18 Pin (https://toshiba.semicon-storage.com/info/docget.jsp?did=30523), Alternate KiCad Library -SOP SO -0 -18 -18 -PCM_Package_SO_AKL -SOP-24_7.5x15.4mm_P1.27mm -SOP, 24 Pin (http://www.issi.com/WW/pdf/31FL3218.pdf#page=14), Alternate KiCad Library -SOP SO -0 -24 -24 -PCM_Package_SO_AKL -SSO-4_6.7x5.1mm_P2.54mm_Clearance8mm -4-Lead Plastic Stretched Small Outline (SSO/Stretched SO), see https://www.vishay.com/docs/84299/vor1142b4.pdf, Alternate KiCad Library -SSO Stretched SO SOIC 2.54 -0 -4 -4 -PCM_Package_SO_AKL -SSO-6_6.8x4.6mm_P1.27mm_Clearance7mm -6-Lead Plastic Stretched Small Outline (SSO/Stretched SO), see https://docs.broadcom.com/cs/Satellite?blobcol=urldata&blobheader=application%2Fpdf&blobheadername1=Content-Disposition&blobheadername2=Content-Type&blobheadername3=MDT-Type&blobheadervalue1=attachment%3Bfilename%3DIPD-Selection-Guide_AV00-0254EN_030617.pdf&blobheadervalue2=application%2Fx-download&blobheadervalue3=abinary%253B%2Bcharset%253DUTF-8&blobkey=id&blobnocache=true&blobtable=MungoBlobs&blobwhere=1430884105675&ssbinary=true, Alternate KiCad Library -SSO Stretched SO SOIC 1.27 -0 -6 -6 -PCM_Package_SO_AKL -SSO-6_6.8x4.6mm_P1.27mm_Clearance8mm -6-Lead Plastic Stretched Small Outline (SSO/Stretched SO), see https://docs.broadcom.com/cs/Satellite?blobcol=urldata&blobheader=application%2Fpdf&blobheadername1=Content-Disposition&blobheadername2=Content-Type&blobheadername3=MDT-Type&blobheadervalue1=attachment%3Bfilename%3DIPD-Selection-Guide_AV00-0254EN_030617.pdf&blobheadervalue2=application%2Fx-download&blobheadervalue3=abinary%253B%2Bcharset%253DUTF-8&blobkey=id&blobnocache=true&blobtable=MungoBlobs&blobwhere=1430884105675&ssbinary=true, Alternate KiCad Library -SSO Stretched SO SOIC 1.27 -0 -6 -6 -PCM_Package_SO_AKL -SSO-8_6.7x9.8mm_P2.54mm_Clearance8mm -8-Lead Plastic Stretched Small Outline (SSO/Stretched SO), see https://www.vishay.com/docs/83831/lh1533ab.pdf, Alternate KiCad Library -SSO Stretched SO SOIC Pitch 2.54 -0 -8 -8 -PCM_Package_SO_AKL -SSO-8_6.8x5.9mm_P1.27mm_Clearance7mm -8-Lead Plastic Stretched Small Outline (SSO/Stretched SO), see https://docs.broadcom.com/cs/Satellite?blobcol=urldata&blobheader=application%2Fpdf&blobheadername1=Content-Disposition&blobheadername2=Content-Type&blobheadername3=MDT-Type&blobheadervalue1=attachment%3Bfilename%3DIPD-Selection-Guide_AV00-0254EN_030617.pdf&blobheadervalue2=application%2Fx-download&blobheadervalue3=abinary%253B%2Bcharset%253DUTF-8&blobkey=id&blobnocache=true&blobtable=MungoBlobs&blobwhere=1430884105675&ssbinary=true, Alternate KiCad Library -SSO Stretched SO SOIC Pitch 1.27 -0 -8 -8 -PCM_Package_SO_AKL -SSO-8_6.8x5.9mm_P1.27mm_Clearance8mm -8-Lead Plastic Stretched Small Outline (SSO/Stretched SO), see https://docs.broadcom.com/cs/Satellite?blobcol=urldata&blobheader=application%2Fpdf&blobheadername1=Content-Disposition&blobheadername2=Content-Type&blobheadername3=MDT-Type&blobheadervalue1=attachment%3Bfilename%3DIPD-Selection-Guide_AV00-0254EN_030617.pdf&blobheadervalue2=application%2Fx-download&blobheadervalue3=abinary%253B%2Bcharset%253DUTF-8&blobkey=id&blobnocache=true&blobtable=MungoBlobs&blobwhere=1430884105675&ssbinary=true, Alternate KiCad Library -SSO Stretched SO SOIC Pitch 1.27 -0 -8 -8 -PCM_Package_SO_AKL -SSO-8_9.6x6.3mm_P1.27mm_Clearance10.5mm -8-Lead Plastic Stretched Small Outline (SSO/Stretched SO), see https://docs.broadcom.com/cs/Satellite?blobcol=urldata&blobheader=application%2Fpdf&blobheadername1=Content-Disposition&blobheadername2=Content-Type&blobheadername3=MDT-Type&blobheadervalue1=attachment%3Bfilename%3DIPD-Selection-Guide_AV00-0254EN_030617.pdf&blobheadervalue2=application%2Fx-download&blobheadervalue3=abinary%253B%2Bcharset%253DUTF-8&blobkey=id&blobnocache=true&blobtable=MungoBlobs&blobwhere=1430884105675&ssbinary=true, Alternate KiCad Library -SSO Stretched SO SOIC Pitch 1.27 -0 -8 -8 -PCM_Package_SO_AKL -SSO-8_13.6x6.3mm_P1.27mm_Clearance14.2mm -8-Lead Plastic Stretched Small Outline (SSO/Stretched SO), see https://docs.broadcom.com/cs/Satellite?blobcol=urldata&blobheader=application%2Fpdf&blobheadername1=Content-Disposition&blobheadername2=Content-Type&blobheadername3=MDT-Type&blobheadervalue1=attachment%3Bfilename%3DIPD-Selection-Guide_AV00-0254EN_030617.pdf&blobheadervalue2=application%2Fx-download&blobheadervalue3=abinary%253B%2Bcharset%253DUTF-8&blobkey=id&blobnocache=true&blobtable=MungoBlobs&blobwhere=1430884105675&ssbinary=true, Alternate KiCad Library -SSO Stretched SO SOIC Pitch 1.27 -0 -8 -8 -PCM_Package_SO_AKL -SSOP-8_2.95x2.8mm_P0.65mm -SSOP-8 2.9 x2.8mm Pitch 0.65mm, Alternate KiCad Library -SSOP-8 2.95x2.8mm Pitch 0.65mm -0 -8 -8 -PCM_Package_SO_AKL -SSOP-8_3.9x5.05mm_P1.27mm -SSOP, 8 Pin (http://www.fujitsu.com/downloads/MICRO/fsa/pdf/products/memory/fram/MB85RS16-DS501-00014-6v0-E.pdf), Alternate KiCad Library -SSOP SO -0 -8 -8 -PCM_Package_SO_AKL -SSOP-8_3.95x5.21x3.27mm_P1.27mm -SSOP-8 3.95x5.21x3.27mm Pitch 1.27mm, Alternate KiCad Library -SSOP-8 3.95x5.21x3.27mm 1.27mm -0 -8 -8 -PCM_Package_SO_AKL -SSOP-8_4.4x3.5mm_P0.65mm -SSOP, 8 Pin (https://www.nisshinbo-microdevices.co.jp/en/pdf/package/ssop8_n.pdf), Alternate KiCad Library -SSOP SO -0 -8 -8 -PCM_Package_SO_AKL -SSOP-8_5.25x5.24mm_P1.27mm -SSOP, 8 Pin (http://www.fujitsu.com/ca/en/Images/MB85RS2MT-DS501-00023-1v0-E.pdf), Alternate KiCad Library -SSOP SO -0 -8 -8 -PCM_Package_SO_AKL -SSOP-10_3.9x4.9mm_P1.00mm -10-Lead SSOP, 3.9 x 4.9mm body, 1.00mm pitch (http://www.st.com/resource/en/datasheet/viper01.pdf), Alternate KiCad Library -SSOP 3.9 4.9 1.00 -0 -10 -10 -PCM_Package_SO_AKL -SSOP-14_5.3x6.2mm_P0.65mm -SSOP14: plastic shrink small outline package; 14 leads; body width 5.3 mm; (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot337-1_po.pdf), Alternate KiCad Library -SSOP 0.65 -0 -14 -14 -PCM_Package_SO_AKL -SSOP-16_3.9x4.9mm_P0.635mm -SSOP16: plastic shrink small outline package; 16 leads; body width 3.9 mm; lead pitch 0.635; (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot519-1_po.pdf), Alternate KiCad Library -SSOP 0.635 -0 -16 -16 -PCM_Package_SO_AKL -SSOP-16_4.4x5.2mm_P0.65mm -SSOP16: plastic shrink small outline package; 16 leads; body width 4.4 mm; (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot369-1_po.pdf), Alternate KiCad Library -SSOP 0.65 -0 -16 -16 -PCM_Package_SO_AKL -SSOP-16_5.3x6.2mm_P0.65mm -SSOP16: plastic shrink small outline package; 16 leads; body width 5.3 mm; (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot338-1_po.pdf), Alternate KiCad Library -SSOP 0.65 -0 -16 -16 -PCM_Package_SO_AKL -SSOP-18_4.4x6.5mm_P0.65mm -SSOP18: plastic shrink small outline package; 18 leads; body width 4.4 mm (http://toshiba.semicon-storage.com/info/docget.jsp?did=30523&prodName=TBD62783APG), Alternate KiCad Library -SSOP 0.65 -0 -18 -18 -PCM_Package_SO_AKL -SSOP-20_3.9x8.7mm_P0.635mm -SSOP20: plastic shrink small outline package; 24 leads; body width 3.9 mm; lead pitch 0.635; (see http://www.ftdichip.com/Support/Documents/DataSheets/ICs/DS_FT231X.pdf), Alternate KiCad Library -SSOP 0.635 -0 -20 -20 -PCM_Package_SO_AKL -SSOP-20_4.4x6.5mm_P0.65mm -SSOP20: plastic shrink small outline package; 20 leads; body width 4.4 mm; (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot266-1_po.pdf), Alternate KiCad Library -SSOP 0.65 -0 -20 -20 -PCM_Package_SO_AKL -SSOP-20_5.3x7.2mm_P0.65mm -SSOP, 20 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/40001800C.pdf), Alternate KiCad Library -SSOP SO -0 -20 -20 -PCM_Package_SO_AKL -SSOP-24_3.9x8.7mm_P0.635mm -SSOP24: plastic shrink small outline package; 24 leads; body width 3.9 mm; lead pitch 0.635; (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot556-1_po.pdf), Alternate KiCad Library -SSOP 0.635 -0 -24 -24 -PCM_Package_SO_AKL -SSOP-24_5.3x8.2mm_P0.65mm -24-Lead Plastic Shrink Small Outline (SS)-5.30 mm Body [SSOP] (see Microchip Packaging Specification 00000049BS.pdf), Alternate KiCad Library -SSOP 0.65 -0 -24 -24 -PCM_Package_SO_AKL -SSOP-28_3.9x9.9mm_P0.635mm -SSOP28: plastic shrink small outline package; 28 leads; body width 3.9 mm; lead pitch 0.635; (see http://cds.linear.com/docs/en/datasheet/38901fb.pdf), Alternate KiCad Library -SSOP 0.635 -0 -28 -28 -PCM_Package_SO_AKL -SSOP-28_5.3x10.2mm_P0.65mm -28-Lead Plastic Shrink Small Outline (SS)-5.30 mm Body [SSOP] (see Microchip Packaging Specification 00000049BS.pdf), Alternate KiCad Library -SSOP 0.65 -0 -28 -28 -PCM_Package_SO_AKL -SSOP-32_11.305x20.495mm_P1.27mm -SSOP, 32 Pin (http://www.issi.com/WW/pdf/61-64C5128AL.pdf), Alternate KiCad Library -SSOP SO -0 -32 -32 -PCM_Package_SO_AKL -SSOP-44_5.3x12.8mm_P0.5mm -44-Lead Plastic Shrink Small Outline (SS)-5.30 mm Body [SSOP] (http://cds.linear.com/docs/en/datasheet/680313fa.pdf), Alternate KiCad Library -SSOP 0.5 -0 -44 -44 -PCM_Package_SO_AKL -SSOP-48_7.5x15.9mm_P0.635mm -SSOP48: plastic shrink small outline package; 48 leads; body width 7.5 mm; (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot370-1_po.pdf), Alternate KiCad Library -SSOP 0.635 -0 -48 -48 -PCM_Package_SO_AKL -SSOP-56_7.5x18.5mm_P0.635mm -SSOP56: plastic shrink small outline package; 56 leads; body width 7.5 mm; (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot371-1_po.pdf), Alternate KiCad Library -SSOP 0.635 -0 -56 -56 -PCM_Package_SO_AKL -STC_SOP-16_3.9x9.9mm_P1.27mm -STC SOP, 16 Pin (https://www.stcmicro.com/datasheet/STC15F2K60S2-en.pdf#page=156), Alternate KiCad Library -STC SOP SO -0 -16 -16 -PCM_Package_SO_AKL -ST_MultiPowerSO-30 -MultiPowerSO-30 3EP 16.0x17.2mm Pitch 1mm (http://www.st.com/resource/en/datasheet/vnh2sp30-e.pdf), Alternate KiCad Library -MultiPowerSO-30 3EP 16.0x17.2mm Pitch 1mm -0 -75 -33 -PCM_Package_SO_AKL -ST_PowerSSO-24_SlugDown -ST PowerSSO-24 1EP 7.5x10.3mm Pitch 0.8mm [JEDEC MO-271] (http://www.st.com/resource/en/datasheet/tda7266p.pdf, http://freedatasheets.com/downloads/Technical%20Note%20Powersso24%20TN0054.pdf), Alternate KiCad Library -ST PowerSSO-24 1EP 7.5x10.3mm Pitch 0.8mm -0 -37 -25 -PCM_Package_SO_AKL -ST_PowerSSO-24_SlugDown_ThermalVias -ST PowerSSO-24 1EP 7.5x10.3mm Pitch 0.8mm [JEDEC MO-271] (http://www.st.com/resource/en/datasheet/tda7266p.pdf, http://freedatasheets.com/downloads/Technical%20Note%20Powersso24%20TN0054.pdf), Alternate KiCad Library -ST PowerSSO-24 1EP 7.5x10.3mm Pitch 0.8mm -0 -50 -25 -PCM_Package_SO_AKL -ST_PowerSSO-24_SlugUp -ST PowerSSO-24 1EP 7.5x10.3mm Pitch 0.8mm [JEDEC MO-271] (http://www.st.com/resource/en/datasheet/tda7266p.pdf, http://freedatasheets.com/downloads/Technical%20Note%20Powersso24%20TN0054.pdf), Alternate KiCad Library -ST PowerSSO-24 1EP 7.5x10.3mm Pitch 0.8mm -0 -24 -24 -PCM_Package_SO_AKL -ST_PowerSSO-36_SlugDown -ST PowerSSO-36 1EP 7.5x10.3mm Pitch 0.8mm [JEDEC MO-271] (http://www.st.com/resource/en/datasheet/tda7492p.pdf, http://freedatasheets.com/downloads/Technical%20Note%20Powersso24%20TN0054.pdf), Alternate KiCad Library -ST PowerSSO-36 1EP 7.5x10.3mm Pitch 0.8mm -0 -49 -37 -PCM_Package_SO_AKL -ST_PowerSSO-36_SlugDown_ThermalVias -ST PowerSSO-36 1EP 7.5x10.3mm Pitch 0.8mm [JEDEC MO-271] (http://www.st.com/resource/en/datasheet/tda7492p.pdf, http://freedatasheets.com/downloads/Technical%20Note%20Powersso24%20TN0054.pdf), Alternate KiCad Library -ST PowerSSO-36 1EP 7.5x10.3mm Pitch 0.8mm -0 -62 -37 -PCM_Package_SO_AKL -ST_PowerSSO-36_SlugUp -ST PowerSSO-36 1EP 7.5x10.3mm Pitch 0.8mm [JEDEC MO-271] (http://www.st.com/resource/en/datasheet/tda7492p.pdf, http://freedatasheets.com/downloads/Technical%20Note%20Powersso24%20TN0054.pdf), Alternate KiCad Library -ST PowerSSO-36 1EP 7.5x10.3mm Pitch 0.8mm -0 -36 -36 -PCM_Package_SO_AKL -TI_SO-PowerPAD-8 -8-Lead Plastic PSOP, Exposed Die Pad (TI DDA0008B, see http://www.ti.com/lit/ds/symlink/lm3404.pdf), Alternate KiCad Library -SSOP 0.50 exposed pad -0 -13 -9 -PCM_Package_SO_AKL -TI_SO-PowerPAD-8_ThermalVias -8-pin HTSOP package with 1.27mm pin pitch, compatible with SOIC-8, 3.9x4.9mm² body, exposed pad, thermal vias with large copper area, as proposed in http://www.ti.com/lit/ds/symlink/tps5430.pdf, Alternate KiCad Library -HTSOP 1.27 -0 -23 -9 -PCM_Package_SO_AKL -TSOP-5_1.65x3.05mm_P0.95mm -TSOP-5 package (comparable to TSOT-23), https://www.vishay.com/docs/71200/71200.pdf, Alternate KiCad Library -Jedec MO-193C TSOP-5L -0 -5 -5 -PCM_Package_SO_AKL -TSOP-6_1.65x3.05mm_P0.95mm -TSOP-6 package (comparable to TSOT-23), https://www.vishay.com/docs/71200/71200.pdf, Alternate KiCad Library -Jedec MO-193C TSOP-6L -0 -6 -6 -PCM_Package_SO_AKL -TSOP-I-28_11.8x8mm_P0.55mm -TSOP I, 28 pins, 18.8x8mm body, 0.55mm pitch, IPC-calculated pads (http://ww1.microchip.com/downloads/en/devicedoc/doc0807.pdf), Alternate KiCad Library -TSOP I 28 pins -0 -28 -28 -PCM_Package_SO_AKL -TSOP-I-32_11.8x8mm_P0.5mm -TSOP-I, 32 Pin (http://www.issi.com/WW/pdf/61-64C5128AL.pdf), Alternate KiCad Library -TSOP-I SO -0 -32 -32 -PCM_Package_SO_AKL -TSOP-I-32_18.4x8mm_P0.5mm -TSOP I, 32 pins, 18.4x8mm body (https://www.micron.com/~/media/documents/products/technical-note/nor-flash/tn1225_land_pad_design.pdf, http://www.fujitsu.com/downloads/MICRO/fma/pdfmcu/f32pm25.pdf), Alternate KiCad Library -TSOP I 32 -0 -32 -32 -PCM_Package_SO_AKL -TSOP-I-32_18.4x8mm_P0.5mm_Reverse -TSOP I, 32 pins, 18.4x8mm body (http://www.futurlec.com/Datasheet/Memory/628128.pdf), reverse mount, Alternate KiCad Library -TSOP I 32 reverse -0 -32 -32 -PCM_Package_SO_AKL -TSOP-I-48_18.4x12mm_P0.5mm -TSOP I, 32 pins, 18.4x8mm body (https://www.micron.com/~/media/documents/products/technical-note/nor-flash/tn1225_land_pad_design.pdf), Alternate KiCad Library -TSOP I 32 -0 -48 -48 -PCM_Package_SO_AKL -TSOP-I-56_18.4x14mm_P0.5mm -TSOP I, 32 pins, 18.4x8mm body (https://www.micron.com/~/media/documents/products/technical-note/nor-flash/tn1225_land_pad_design.pdf), Alternate KiCad Library -TSOP I 32 -0 -56 -56 -PCM_Package_SO_AKL -TSOP-II-32_21.0x10.2mm_P1.27mm -32-lead plastic TSOP; Type II, Alternate KiCad Library -TSOP-II 32 -0 -32 -32 -PCM_Package_SO_AKL -TSOP-II-44_10.16x18.41mm_P0.8mm -TSOP-II, 44 Pin (http://www.issi.com/WW/pdf/61-64C5128AL.pdf), Alternate KiCad Library -TSOP-II SO -0 -44 -44 -PCM_Package_SO_AKL -TSOP-II-54_22.2x10.16mm_P0.8mm -54-lead TSOP typ II package, Alternate KiCad Library -TSOPII TSOP2 -0 -54 -54 -PCM_Package_SO_AKL -TSSOP-8_3x3mm_P0.65mm -TSSOP8: plastic thin shrink small outline package; 8 leads; body width 3 mm; (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot505-1_po.pdf), Alternate KiCad Library -SSOP 0.65 -0 -8 -8 -PCM_Package_SO_AKL -TSSOP-8_4.4x3mm_P0.65mm -TSSOP, 8 Pin (JEDEC MO-153 Var AA https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library -TSSOP SO -0 -8 -8 -PCM_Package_SO_AKL -TSSOP-10_3x3mm_P0.5mm -TSSOP10: plastic thin shrink small outline package; 10 leads; body width 3 mm; (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot552-1_po.pdf), Alternate KiCad Library -SSOP 0.5 -0 -10 -10 -PCM_Package_SO_AKL -TSSOP-14-1EP_4.4x5mm_P0.65mm -14-Lead Plastic Thin Shrink Small Outline (ST)-4.4 mm Body [TSSOP] with exposed pad (http://cds.linear.com/docs/en/datasheet/34301fa.pdf), Alternate KiCad Library -SSOP 0.65 exposed pad -0 -19 -15 -PCM_Package_SO_AKL -TSSOP-14-1EP_4.4x5mm_P0.65mm_EP2.31x2.46mm -14-Lead Plastic Thin Shrink Small Outline (ST)-4.4 mm Body [TSSOP] with exposed pad (http://cds.linear.com/docs/en/datasheet/34301fa.pdf), Alternate KiCad Library -SSOP 0.65 exposed pad -0 -19 -15 -PCM_Package_SO_AKL -TSSOP-14_4.4x5mm_P0.65mm -TSSOP, 14 Pin (JEDEC MO-153 Var AB-1 https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library -TSSOP SO -0 -14 -14 -PCM_Package_SO_AKL -TSSOP-16-1EP_4.4x5mm_P0.65mm -FE Package; 16-Lead Plastic TSSOP (4.4mm); Exposed Pad Variation BB; (see Linear Technology 1956f.pdf), Alternate KiCad Library -SSOP 0.65 -0 -23 -16 -PCM_Package_SO_AKL -TSSOP-16_4.4x5mm_P0.65mm -TSSOP, 16 Pin (JEDEC MO-153 Var AB https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library -TSSOP SO -0 -16 -16 -PCM_Package_SO_AKL -TSSOP-20-1EP_4.4x6.5mm_P0.65mm_EP2.4x3.4mm -TSSOP, 20 Pin with exposed thermal pad, PWP or R-PDSO-G20 (https://www.ti.com/lit/ds/symlink/tlc072.pdf?ts=1640705296384&ref_url=https%253A%252F%252Fwww.ti.com%252Fproduct%252FTLC072), Alternate KiCad Library -TSSOP SO PWP R-PDSO-G20 -0 -25 -21 -PCM_Package_SO_AKL -TSSOP-20_4.4x5mm_P0.5mm -TSSOP, 20 Pin (JEDEC MO-153 Var BA https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library -TSSOP SO -0 -20 -20 -PCM_Package_SO_AKL -TSSOP-20_4.4x6.5mm_P0.65mm -TSSOP, 20 Pin (JEDEC MO-153 Var AC https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library -TSSOP SO -0 -20 -20 -PCM_Package_SO_AKL -TSSOP-24_4.4x5mm_P0.4mm -TSSOP, 24 Pin (JEDEC MO-153 Var CA https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library -TSSOP SO -0 -24 -24 -PCM_Package_SO_AKL -TSSOP-24_4.4x6.5mm_P0.5mm -TSSOP, 24 Pin (JEDEC MO-153 Var BB https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library -TSSOP SO -0 -24 -24 -PCM_Package_SO_AKL -TSSOP-24_4.4x7.8mm_P0.65mm -TSSOP, 24 Pin (JEDEC MO-153 Var AD https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library -TSSOP SO -0 -24 -24 -PCM_Package_SO_AKL -TSSOP-24_6.1x7.8mm_P0.65mm -TSSOP, 24 Pin (JEDEC MO-153 Var DA https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library -TSSOP SO -0 -24 -24 -PCM_Package_SO_AKL -TSSOP-28-1EP_4.4x9.7mm_P0.65mm -TSSOP28: plastic thin shrink small outline package; 28 leads; body width 4.4 mm; Exposed Pad Variation; (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot361-1_po.pdf), Alternate KiCad Library -SSOP 0.65 -0 -39 -29 -PCM_Package_SO_AKL -TSSOP-28_4.4x7.8mm_P0.5mm -TSSOP, 28 Pin (JEDEC MO-153 Var BC https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library -TSSOP SO -0 -28 -28 -PCM_Package_SO_AKL -TSSOP-28_4.4x9.7mm_P0.65mm -TSSOP, 28 Pin (JEDEC MO-153 Var AE https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library -TSSOP SO -0 -28 -28 -PCM_Package_SO_AKL -TSSOP-28_6.1x7.8mm_P0.5mm -TSSOP, 28 Pin (JEDEC MO-153 Var EA https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library -TSSOP SO -0 -28 -28 -PCM_Package_SO_AKL -TSSOP-28_6.1x9.7mm_P0.65mm -TSSOP, 28 Pin (JEDEC MO-153 Var DB https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library -TSSOP SO -0 -28 -28 -PCM_Package_SO_AKL -TSSOP-28_8x9.7mm_P0.65mm -TSSOP, 28 Pin (JEDEC MO-153 Var GA https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library -TSSOP SO -0 -28 -28 -PCM_Package_SO_AKL -TSSOP-30_4.4x7.8mm_P0.5mm -TSSOP, 30 Pin (JEDEC MO-153 Var BC-1 https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library -TSSOP SO -0 -30 -30 -PCM_Package_SO_AKL -TSSOP-30_6.1x9.7mm_P0.65mm -TSSOP, 30 Pin (JEDEC MO-153 Var DB-1 https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library -TSSOP SO -0 -30 -30 -PCM_Package_SO_AKL -TSSOP-32_4.4x6.5mm_P0.4mm -TSSOP, 32 Pin (JEDEC MO-153 Var CB https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library -TSSOP SO -0 -32 -32 -PCM_Package_SO_AKL -TSSOP-32_6.1x11mm_P0.65mm -TSSOP, 32 Pin (JEDEC MO-153 Var DC https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library -TSSOP SO -0 -32 -32 -PCM_Package_SO_AKL -TSSOP-32_8x11mm_P0.65mm -TSSOP, 32 Pin (JEDEC MO-153 Var GB https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library -TSSOP SO -0 -32 -32 -PCM_Package_SO_AKL -TSSOP-36_4.4x7.8mm_P0.4mm -TSSOP, 36 Pin (JEDEC MO-153 Var CC https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library -TSSOP SO -0 -36 -36 -PCM_Package_SO_AKL -TSSOP-36_4.4x9.7mm_P0.5mm -TSSOP, 36 Pin (JEDEC MO-153 Var BD https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library -TSSOP SO -0 -36 -36 -PCM_Package_SO_AKL -TSSOP-36_6.1x7.8mm_P0.4mm -TSSOP, 36 Pin (JEDEC MO-153 Var FA https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library -TSSOP SO -0 -36 -36 -PCM_Package_SO_AKL -TSSOP-36_6.1x9.7mm_P0.5mm -TSSOP, 36 Pin (JEDEC MO-153 Var EB https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library -TSSOP SO -0 -36 -36 -PCM_Package_SO_AKL -TSSOP-36_6.1x12.5mm_P0.65mm -TSSOP, 36 Pin (JEDEC MO-153 Var DD https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library -TSSOP SO -0 -36 -36 -PCM_Package_SO_AKL -TSSOP-36_8x9.7mm_P0.5mm -TSSOP, 36 Pin (JEDEC MO-153 Var HA https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library -TSSOP SO -0 -36 -36 -PCM_Package_SO_AKL -TSSOP-36_8x12.5mm_P0.65mm -TSSOP, 36 Pin (JEDEC MO-153 Var GC https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library -TSSOP SO -0 -36 -36 -PCM_Package_SO_AKL -TSSOP-38_4.4x9.7mm_P0.5mm -TSSOP, 38 Pin (JEDEC MO-153 Var BD https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library -TSSOP SO -0 -38 -38 -PCM_Package_SO_AKL -TSSOP-38_6.1x12.5mm_P0.65mm -TSSOP, 38 Pin (JEDEC MO-153 Var DD-1 https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library -TSSOP SO -0 -38 -38 -PCM_Package_SO_AKL -TSSOP-40_6.1x11mm_P0.5mm -TSSOP, 40 Pin (JEDEC MO-153 Var EC https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library -TSSOP SO -0 -40 -40 -PCM_Package_SO_AKL -TSSOP-40_6.1x14mm_P0.65mm -TSSOP, 40 Pin (JEDEC MO-153 Var DE https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library -TSSOP SO -0 -40 -40 -PCM_Package_SO_AKL -TSSOP-40_8x11mm_P0.5mm -TSSOP, 40 Pin (JEDEC MO-153 Var HB https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library -TSSOP SO -0 -40 -40 -PCM_Package_SO_AKL -TSSOP-40_8x14mm_P0.65mm -TSSOP, 40 Pin (JEDEC MO-153 Var GD https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library -TSSOP SO -0 -40 -40 -PCM_Package_SO_AKL -TSSOP-44_4.4x11.2mm_P0.5mm -TSSOP44: plastic thin shrink small outline package; 44 leads; body width 4.4 mm (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot510-1_po.pdf), Alternate KiCad Library -SSOP 0.5 -0 -44 -44 -PCM_Package_SO_AKL -TSSOP-44_4.4x11mm_P0.5mm -TSSOP, 44 Pin (JEDEC MO-153 Var BE https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library -TSSOP SO -0 -44 -44 -PCM_Package_SO_AKL -TSSOP-44_6.1x11mm_P0.5mm -TSSOP, 44 Pin (JEDEC MO-153 Var EC-1 https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library -TSSOP SO -0 -44 -44 -PCM_Package_SO_AKL -TSSOP-48_4.4x9.7mm_P0.4mm -TSSOP, 48 Pin (JEDEC MO-153 Var CD https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library -TSSOP SO -0 -48 -48 -PCM_Package_SO_AKL -TSSOP-48_6.1x9.7mm_P0.4mm -TSSOP, 48 Pin (JEDEC MO-153 Var FB https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library -TSSOP SO -0 -48 -48 -PCM_Package_SO_AKL -TSSOP-48_6.1x12.5mm_P0.5mm -TSSOP, 48 Pin (JEDEC MO-153 Var ED https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library -TSSOP SO -0 -48 -48 -PCM_Package_SO_AKL -TSSOP-48_8x9.7mm_P0.4mm -TSSOP, 48 Pin (JEDEC MO-153 Var JA https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library -TSSOP SO -0 -48 -48 -PCM_Package_SO_AKL -TSSOP-48_8x12.5mm_P0.5mm -TSSOP, 48 Pin (JEDEC MO-153 Var HC https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library -TSSOP SO -0 -48 -48 -PCM_Package_SO_AKL -TSSOP-50_4.4x12.5mm_P0.5mm -TSSOP, 50 Pin (JEDEC MO-153 Var BF https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library -TSSOP SO -0 -50 -50 -PCM_Package_SO_AKL -TSSOP-52_6.1x11mm_P0.4mm -TSSOP, 52 Pin (JEDEC MO-153 Var FC https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library -TSSOP SO -0 -52 -52 -PCM_Package_SO_AKL -TSSOP-52_8x11mm_P0.4mm -TSSOP, 52 Pin (JEDEC MO-153 Var JB https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library -TSSOP SO -0 -52 -52 -PCM_Package_SO_AKL -TSSOP-56_6.1x12.5mm_P0.4mm -TSSOP, 56 Pin (JEDEC MO-153 Var FD https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library -TSSOP SO -0 -56 -56 -PCM_Package_SO_AKL -TSSOP-56_6.1x14mm_P0.5mm -TSSOP, 56 Pin (JEDEC MO-153 Var EE https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library -TSSOP SO -0 -56 -56 -PCM_Package_SO_AKL -TSSOP-56_8x12.5mm_P0.4mm -TSSOP, 56 Pin (JEDEC MO-153 Var JC https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library -TSSOP SO -0 -56 -56 -PCM_Package_SO_AKL -TSSOP-56_8x14mm_P0.5mm -TSSOP, 56 Pin (JEDEC MO-153 Var HD https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library -TSSOP SO -0 -56 -56 -PCM_Package_SO_AKL -TSSOP-60_8x12.5mm_P0.4mm -TSSOP, 60 Pin (JEDEC MO-153 Var JC-1 https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library -TSSOP SO -0 -60 -60 -PCM_Package_SO_AKL -TSSOP-64_6.1x14mm_P0.4mm -TSSOP, 64 Pin (JEDEC MO-153 Var FE https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library -TSSOP SO -0 -64 -64 -PCM_Package_SO_AKL -TSSOP-64_6.1x17mm_P0.5mm -TSSOP, 64 Pin (JEDEC MO-153 Var EF https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library -TSSOP SO -0 -64 -64 -PCM_Package_SO_AKL -TSSOP-64_8x14mm_P0.4mm -TSSOP, 64 Pin (JEDEC MO-153 Var JD https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library -TSSOP SO -0 -64 -64 -PCM_Package_SO_AKL -TSSOP-68_8x14mm_P0.4mm -TSSOP, 68 Pin (JEDEC MO-153 Var JD-1 https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library -TSSOP SO -0 -68 -68 -PCM_Package_SO_AKL -TSSOP-80_6.1x17mm_P0.4mm -TSSOP, 80 Pin (JEDEC MO-153 Var FF https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), Alternate KiCad Library -TSSOP SO -0 -80 -80 -PCM_Package_SO_AKL -Texas_HSOP-8-1EP_3.9x4.9mm_P1.27mm -Texas Instruments HSOP 9, 1.27mm pitch, 3.9x4.9mm body, exposed pad, DDA0008J (http://www.ti.com/lit/ds/symlink/tps5430.pdf), Alternate KiCad Library -HSOP 1.27 -0 -14 -9 -PCM_Package_SO_AKL -Texas_HSOP-8-1EP_3.9x4.9mm_P1.27mm_ThermalVias -Texas Instruments HSOP 9, 1.27mm pitch, 3.9x4.9mm body, exposed pad, thermal vias, DDA0008J (http://www.ti.com/lit/ds/symlink/tps5430.pdf), Alternate KiCad Library -HSOP 1.27 -0 -23 -9 -PCM_Package_SO_AKL -Texas_HTSOP-8-1EP_3.9x4.9mm_P1.27mm_EP2.95x4.9mm_Mask2.4x3.1mm_ThermalVias -8-pin HTSOP package with 1.27mm pin pitch, compatible with SOIC-8, 3.9x4.9mm body, exposed pad, thermal vias, http://www.ti.com/lit/ds/symlink/drv8870.pdf, Alternate KiCad Library -HTSOP 1.27 -0 -21 -9 -PCM_Package_SO_AKL -Texas_PWP0020A -20-Pin Thermally Enhanced Thin Shrink Small-Outline Package, Body 4.4x6.5x1.1mm, Pad 3.0x4.2mm, Texas Instruments (see http://www.ti.com/lit/ds/symlink/lm5118.pdf), Alternate KiCad Library -PWP HTSSOP 0.65mm -0 -25 -21 -PCM_Package_SO_AKL -Texas_R-PDSO-G8_EP2.95x4.9mm_Mask2.4x3.1mm -HSOIC, 8 Pin (http://www.ti.com/lit/ds/symlink/lmr14030.pdf#page=28, http://www.ti.com/lit/ml/msoi002j/msoi002j.pdf), Alternate KiCad Library -HSOIC SO -0 -16 -9 -PCM_Package_SO_AKL -Texas_R-PDSO-G8_EP2.95x4.9mm_Mask2.4x3.1mm_ThermalVias -HSOIC, 8 Pin (http://www.ti.com/lit/ds/symlink/lmr14030.pdf#page=28, http://www.ti.com/lit/ml/msoi002j/msoi002j.pdf), Alternate KiCad Library -HSOIC SO -0 -23 -9 -PCM_Package_SO_AKL -Texas_R-PDSO-N5 -Plastic Small outline http://www.ti.com/lit/ml/mpds158c/mpds158c.pdf, Alternate KiCad Library -SOT23 R-PDSO-N5 -0 -5 -5 -PCM_Package_SO_AKL -VSO-40_7.6x15.4mm_P0.762mm -VSO40: plastic very small outline package; 40 leads (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot158-1_po.pdf), Alternate KiCad Library -SSOP 0.762 -0 -40 -40 -PCM_Package_SO_AKL -VSO-56_11.1x21.5mm_P0.75mm -VSO56: plastic very small outline package; 56 leads (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot190-1_po.pdf), Alternate KiCad Library -SSOP 0.75 -0 -56 -56 -PCM_Package_SO_AKL -VSSOP-8_2.3x2mm_P0.5mm -VSSOP-8 2.3x2mm Pitch 0.5mm, Alternate KiCad Library -VSSOP-8 2.3x2mm Pitch 0.5mm -0 -8 -8 -PCM_Package_SO_AKL -VSSOP-8_2.4x2.1mm_P0.5mm -http://www.ti.com/lit/ml/mpds050d/mpds050d.pdf, Alternate KiCad Library -VSSOP DCU R-PDSO-G8 Pitch0.5mm -0 -8 -8 -PCM_Package_SO_AKL -VSSOP-8_3.0x3.0mm_P0.65mm -VSSOP-8 3.0 x 3.0, http://www.ti.com/lit/ds/symlink/lm75b.pdf, Alternate KiCad Library -VSSOP-8 3.0 x 3.0 -0 -8 -8 -PCM_Package_SO_AKL -VSSOP-10_3x3mm_P0.5mm -VSSOP, 10 Pin (http://www.ti.com/lit/ds/symlink/ads1115.pdf), Alternate KiCad Library -VSSOP SO -0 -10 -10 -PCM_Package_SO_AKL -Vishay_PowerPAK_1212-8_Dual -PowerPAK 1212-8 Dual (https://www.vishay.com/docs/71656/ppak12128.pdf, https://www.vishay.com/docs/72598/72598.pdf), Alternate KiCad Library -Vishay_PowerPAK_1212-8_Dual -0 -12 -6 -PCM_Package_SO_AKL -Vishay_PowerPAK_1212-8_Single -PowerPAK 1212-8 Single (https://www.vishay.com/docs/71656/ppak12128.pdf, https://www.vishay.com/docs/72597/72597.pdf), Alternate KiCad Library -Vishay PowerPAK 1212-8 Single -0 -11 -5 -PCM_Package_SO_AKL -Zetex_SM8 -Zetex, SMD, 8 pin package (http://datasheet.octopart.com/ZDT6758TA-Zetex-datasheet-68057.pdf), Alternate KiCad Library -Zetex SM8 -0 -8 -8 -PCM_Package_TO_SOT_SMD_AKL -ATPAK-2 -ATPAK SMD package, http://www.onsemi.com/pub/Collateral/ENA2192-D.PDF, Alternate KiCad Library -ATPAK -0 -12 -3 -PCM_Package_TO_SOT_SMD_AKL -Analog_KS-4 -Analog Devices KS-4, http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/sc70ks/ks_4.pdf, Alternate KiCad Library -Analog Devices KS-4 (like EIAJ SC-82) -0 -4 -4 -PCM_Package_TO_SOT_SMD_AKL -Diodes_SOT-553 -Diodes SOT-553, https://www.diodes.com/assets/Package-Files/SOT553.pdf, Alternate KiCad Library -SOT-553 -0 -5 -5 -PCM_Package_TO_SOT_SMD_AKL -HVSOF5 -HVSOF5, http://rohmfs.rohm.com/en/techdata_basic/ic/package/hvsof5_1-e.pdf, http://rohmfs.rohm.com/en/products/databook/datasheet/ic/sensor/hall/bu52001gul-e.pdf, Alternate KiCad Library -HVSOF5 -0 -10 -5 -PCM_Package_TO_SOT_SMD_AKL -HVSOF6 -HVSOF6, http://rohmfs.rohm.com/en/techdata_basic/ic/package/hvsof6_1-e.pdf, http://rohmfs.rohm.com/en/products/databook/datasheet/ic/audio_video/video_amplifier/bh76106hfv-e.pdf, Alternate KiCad Library -HVSOF6 -0 -11 -7 -PCM_Package_TO_SOT_SMD_AKL -Infineon_PG-HDSOP-10-1 -Infineon PG-HDSOP-10-1 (DDPAK), 20.96x6.5x2.3mm, slug up (https://www.infineon.com/cms/en/product/packages/PG-HDSOP/PG-HDSOP-10-1/), Alternate KiCad Library -hdsop 10 ddpak -0 -10 -10 -PCM_Package_TO_SOT_SMD_AKL -Infineon_PG-HSOF-8-1 -HSOF-8-1 [TOLL] power MOSFET (http://www.infineon.com/cms/en/product/packages/PG-HSOF/PG-HSOF-8-1/), Alternate KiCad Library -mosfet hsof toll -0 -34 -3 -PCM_Package_TO_SOT_SMD_AKL -Infineon_PG-HSOF-8-1_ThermalVias -HSOF-8-1 [TOLL] power MOSFET (http://www.infineon.com/cms/en/product/packages/PG-HSOF/PG-HSOF-8-1/), Alternate KiCad Library -mosfet hsof toll thermal vias -0 -87 -3 -PCM_Package_TO_SOT_SMD_AKL -Infineon_PG-HSOF-8-2 -HSOF-8-2 [TOLL] power MOSFET (http://www.infineon.com/cms/en/product/packages/PG-HSOF/PG-HSOF-8-2/), Alternate KiCad Library -mosfet hsof toll -0 -35 -4 -PCM_Package_TO_SOT_SMD_AKL -Infineon_PG-HSOF-8-2_ThermalVias -HSOF-8-2 [TOLL] power MOSFET (http://www.infineon.com/cms/en/product/packages/PG-HSOF/PG-HSOF-8-2/), Alternate KiCad Library -mosfet hsof toll thermal vias -0 -80 -4 -PCM_Package_TO_SOT_SMD_AKL -Infineon_PG-HSOF-8-2_ThermalVias2 -HSOF-8-2 [TOLL] power MOSFET (http://www.infineon.com/cms/en/product/packages/PG-HSOF/PG-HSOF-8-2/, https://www.infineon.com/dgdl/Infineon-ApplicationNote_600V_CoolMOS_C7_Gold_TOLL-AN-v01_00-EN.pdf?fileId=5546d4625b10283a015b144a1af70df6), Alternate KiCad Library -mosfet hsof toll thermal vias -0 -184 -4 -PCM_Package_TO_SOT_SMD_AKL -Infineon_PG-TO-220-7Lead_TabPin8 -Infineon PG-TO-220-7, Tab as Pin 8, see e.g. https://www.infineon.com/dgdl/Infineon-BTS50055-1TMC-DS-v01_00-EN.pdf?fileId=5546d4625a888733015aa9b0007235e9, Alternate KiCad Library -Infineon PG-TO-220-7 -0 -24 -8 -PCM_Package_TO_SOT_SMD_AKL -LFPAK33 -LFPAK33 SOT-1210 https://assets.nexperia.com/documents/outline-drawing/SOT1210.pdf, Alternate KiCad Library -LFPAK33 SOT-1210 -0 -13 -5 -PCM_Package_TO_SOT_SMD_AKL -LFPAK56 -LFPAK56 https://assets.nexperia.com/documents/outline-drawing/SOT669.pdf, Alternate KiCad Library -LFPAK56 SOT-669 Power-SO8 -0 -15 -5 -PCM_Package_TO_SOT_SMD_AKL -OnSemi_ECH8 -On Semiconductor ECH8, https://www.onsemi.com/pub/Collateral/318BF.PDF, Alternate KiCad Library -ECH8 SOT28-FL SOT-28-FL -0 -8 -8 -PCM_Package_TO_SOT_SMD_AKL -PQFN_8x8 -Low Profile 8x8mm PQFN, Dual Cool 88, https://www.onsemi.com/pub/Collateral/FDMT80080DC-D.pdf, Alternate KiCad Library -pqfn vdfn mosfet -0 -26 -3 -PCM_Package_TO_SOT_SMD_AKL -PowerMacro_M234_BECE_NoHole -TO-50-4 Power Macro Package Style M234, Alternate KiCad Library -TO-50-4 Power Macro Package Style M234 -0 -4 -4 -PCM_Package_TO_SOT_SMD_AKL -PowerMacro_M234_BECE_WithHole -TO-50-4 Power Macro Package Style M234, Alternate KiCad Library -TO-50-4 Power Macro Package Style M234 -0 -4 -4 -PCM_Package_TO_SOT_SMD_AKL -PowerMacro_M234_NoHole -TO-50-4 Power Macro Package Style M234, Alternate KiCad Library -TO-50-4 Power Macro Package Style M234 -0 -4 -4 -PCM_Package_TO_SOT_SMD_AKL -PowerMacro_M234_WithHole -TO-50-4 Power Macro Package Style M234, Alternate KiCad Library -TO-50-4 Power Macro Package Style M234 -0 -4 -4 -PCM_Package_TO_SOT_SMD_AKL -Rohm_HRP7 -Rohm HRP7 SMD package, http://rohmfs.rohm.com/en/techdata_basic/ic/package/hrp7_1-e.pdf, http://rohmfs.rohm.com/en/products/databook/datasheet/ic/motor/dc/bd621x-e.pdf, Alternate KiCad Library -Rohm HRP7 SMD -0 -81 -7 -PCM_Package_TO_SOT_SMD_AKL -SC-59 -SC-59, https://lib.chipdip.ru/images/import_diod/original/SOT-23_SC-59.jpg, Alternate KiCad Library -SC-59 -0 -3 -3 -PCM_Package_TO_SOT_SMD_AKL -SC-59_BigPads -SC-59, hand-soldering varaint, https://lib.chipdip.ru/images/import_diod/original/SOT-23_SC-59.jpg, Alternate KiCad Library -SC-59 hand-soldering -0 -3 -3 -PCM_Package_TO_SOT_SMD_AKL -SC-59_Handsoldering -SC-59, hand-soldering varaint, https://lib.chipdip.ru/images/import_diod/original/SOT-23_SC-59.jpg, Alternate KiCad Library -SC-59 hand-soldering -0 -3 -3 -PCM_Package_TO_SOT_SMD_AKL -SC-70-8 -SC70-8, Alternate KiCad Library -SC70-8 -0 -8 -8 -PCM_Package_TO_SOT_SMD_AKL -SC-70-8_BigPads -SC70-8, Handsoldering, Alternate KiCad Library -SC70-8 Handsoldering -0 -8 -8 -PCM_Package_TO_SOT_SMD_AKL -SC-70-8_Handsoldering -SC70-8, Handsoldering, Alternate KiCad Library -SC70-8 Handsoldering -0 -8 -8 -PCM_Package_TO_SOT_SMD_AKL -SC-82AA -SC-82AA, Alternate KiCad Library -SC-82AA -0 -4 -4 -PCM_Package_TO_SOT_SMD_AKL -SC-82AA_BigPads -SC-82AA, Alternate KiCad Library -SC-82AA -0 -4 -4 -PCM_Package_TO_SOT_SMD_AKL -SC-82AA_Handsoldering -SC-82AA, Alternate KiCad Library -SC-82AA -0 -4 -4 -PCM_Package_TO_SOT_SMD_AKL -SC-82AB -SC-82AB, Alternate KiCad Library -SC-82AB -0 -4 -4 -PCM_Package_TO_SOT_SMD_AKL -SC-82AB_BigPads -SC-82AB, Alternate KiCad Library -SC-82AB -0 -4 -4 -PCM_Package_TO_SOT_SMD_AKL -SC-82AB_Handsoldering -SC-82AB, Alternate KiCad Library -SC-82AB -0 -4 -4 -PCM_Package_TO_SOT_SMD_AKL -SOT-23 -SOT-23, Standard, Alternate KiCad Library -SOT-23 -0 -3 -3 -PCM_Package_TO_SOT_SMD_AKL -SOT-23-5 -5-pin SOT23 package, Alternate KiCad Library -SOT-23-5 -0 -5 -5 -PCM_Package_TO_SOT_SMD_AKL -SOT-23-5_BigPads -5-pin SOT23 package, Alternate KiCad Library -SOT-23-5 hand-soldering -0 -5 -5 -PCM_Package_TO_SOT_SMD_AKL -SOT-23-5_HandSoldering -5-pin SOT23 package, Alternate KiCad Library -SOT-23-5 hand-soldering -0 -5 -5 -PCM_Package_TO_SOT_SMD_AKL -SOT-23-6 -6-pin SOT-23 package, Alternate KiCad Library -SOT-23-6 -0 -6 -6 -PCM_Package_TO_SOT_SMD_AKL -SOT-23-6_BigPads -6-pin SOT-23 package, Handsoldering, Alternate KiCad Library -SOT-23-6 Handsoldering -0 -6 -6 -PCM_Package_TO_SOT_SMD_AKL -SOT-23-6_Handsoldering -6-pin SOT-23 package, Handsoldering, Alternate KiCad Library -SOT-23-6 Handsoldering -0 -6 -6 -PCM_Package_TO_SOT_SMD_AKL -SOT-23-8 -8-pin SOT-23 package, http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/sot-23rj/rj_8.pdf, Alternate KiCad Library -SOT-23-8 -0 -8 -8 -PCM_Package_TO_SOT_SMD_AKL -SOT-23-8_BigPads -8-pin SOT-23 package, Handsoldering, http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/sot-23rj/rj_8.pdf, Alternate KiCad Library -SOT-23-8 Handsoldering -0 -8 -8 -PCM_Package_TO_SOT_SMD_AKL -SOT-23-8_Handsoldering -8-pin SOT-23 package, Handsoldering, http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/sot-23rj/rj_8.pdf, Alternate KiCad Library -SOT-23-8 Handsoldering -0 -8 -8 -PCM_Package_TO_SOT_SMD_AKL -SOT-23W -SOT-23W http://www.allegromicro.com/~/media/Files/Datasheets/A112x-Datasheet.ashx?la=en&hash=7BC461E058CC246E0BAB62433B2F1ECA104CA9D3, Alternate KiCad Library -SOT-23W -0 -3 -3 -PCM_Package_TO_SOT_SMD_AKL -SOT-23W_BigPads -SOT-23W http://www.allegromicro.com/~/media/Files/Datasheets/A112x-Datasheet.ashx?la=en&hash=7BC461E058CC246E0BAB62433B2F1ECA104CA9D3, Alternate KiCad Library -SOT-23W for handsoldering -0 -3 -3 -PCM_Package_TO_SOT_SMD_AKL -SOT-23W_Handsoldering -SOT-23W http://www.allegromicro.com/~/media/Files/Datasheets/A112x-Datasheet.ashx?la=en&hash=7BC461E058CC246E0BAB62433B2F1ECA104CA9D3, Alternate KiCad Library -SOT-23W for handsoldering -0 -3 -3 -PCM_Package_TO_SOT_SMD_AKL -SOT-23_BigPads -SOT-23, Handsoldering, Alternate KiCad Library -SOT-23 -0 -3 -3 -PCM_Package_TO_SOT_SMD_AKL -SOT-23_Handsoldering -SOT-23, Handsoldering, Alternate KiCad Library -SOT-23 -0 -3 -3 -PCM_Package_TO_SOT_SMD_AKL -SOT-89-3 -SOT-89-3, http://ww1.microchip.com/downloads/en/DeviceDoc/3L_SOT-89_MB_C04-029C.pdf, Alternate KiCad Library -SOT-89-3 -0 -4 -3 -PCM_Package_TO_SOT_SMD_AKL -SOT-89-3_BigPads -SOT-89-3 Handsoldering, Alternate KiCad Library -SOT-89-3 Handsoldering -0 -4 -3 -PCM_Package_TO_SOT_SMD_AKL -SOT-89-3_Handsoldering -SOT-89-3 Handsoldering, Alternate KiCad Library -SOT-89-3 Handsoldering -0 -3 -3 -PCM_Package_TO_SOT_SMD_AKL -SOT-89-5 -SOT-89-5, http://www.e-devices.ricoh.co.jp/en/products/product_power/pkg/sot-89-5.pdf, Alternate KiCad Library -SOT-89-5 -0 -10 -5 -PCM_Package_TO_SOT_SMD_AKL -SOT-89-5_BigPads -SOT-89-5, http://www.e-devices.ricoh.co.jp/en/products/product_power/pkg/sot-89-5.pdf, Alternate KiCad Library -SOT-89-5 -0 -10 -5 -PCM_Package_TO_SOT_SMD_AKL -SOT-89-5_Handsoldering -SOT-89-5, http://www.e-devices.ricoh.co.jp/en/products/product_power/pkg/sot-89-5.pdf, Alternate KiCad Library -SOT-89-5 -0 -5 -5 -PCM_Package_TO_SOT_SMD_AKL -SOT-143 -SOT-143, Alternate KiCad Library -SOT-143 -0 -4 -4 -PCM_Package_TO_SOT_SMD_AKL -SOT-143R_Reverse -SOT-143R Reverse, Alternate KiCad Library -SOT-143R Reverse -0 -4 -4 -PCM_Package_TO_SOT_SMD_AKL -SOT-143R_Reverse_BigPads -SOT-143R Reverse Handsoldering, Alternate KiCad Library -SOT-143 Reverse Handsoldering -0 -4 -4 -PCM_Package_TO_SOT_SMD_AKL -SOT-143R_Reverse_Handsoldering -SOT-143R Reverse Handsoldering, Alternate KiCad Library -SOT-143 Reverse Handsoldering -0 -4 -4 -PCM_Package_TO_SOT_SMD_AKL -SOT-143_BigPads -SOT-143 Handsoldering, Alternate KiCad Library -SOT-143 Handsoldering -0 -4 -4 -PCM_Package_TO_SOT_SMD_AKL -SOT-143_Handsoldering -SOT-143 Handsoldering, Alternate KiCad Library -SOT-143 Handsoldering -0 -4 -4 -PCM_Package_TO_SOT_SMD_AKL -SOT-223 -module CMS SOT223 4 pins, Alternate KiCad Library -CMS SOT -0 -4 -4 -PCM_Package_TO_SOT_SMD_AKL -SOT-223-3_TabPin2 -module CMS SOT223 4 pins, Alternate KiCad Library -CMS SOT -0 -4 -3 -PCM_Package_TO_SOT_SMD_AKL -SOT-223-5 -module CMS SOT223 5 pins, http://ww1.microchip.com/downloads/en/DeviceDoc/51751a.pdf, Alternate KiCad Library -CMS SOT -0 -5 -5 -PCM_Package_TO_SOT_SMD_AKL -SOT-223-6 -module CMS SOT223 6 pins, http://www.ti.com/lit/ds/symlink/tps737.pdf, Alternate KiCad Library -CMS SOT -0 -6 -6 -PCM_Package_TO_SOT_SMD_AKL -SOT-223-6_TabPin3 -module CMS SOT223 6 pins, http://www.ti.com/lit/ds/symlink/tps737.pdf, Alternate KiCad Library -CMS SOT -0 -6 -5 -PCM_Package_TO_SOT_SMD_AKL -SOT-223-8 -module CMS SOT223 8 pins, https://www.diodes.com/assets/Datasheets/ZXSBMR16PT8.pdf, Alternate KiCad Library -CMS SOT -0 -8 -8 -PCM_Package_TO_SOT_SMD_AKL -SOT-323_SC-70 -SOT-323, SC-70, Alternate KiCad Library -SOT-323 SC-70 -0 -3 -3 -PCM_Package_TO_SOT_SMD_AKL -SOT-323_SC-70_BigPads -SOT-323, SC-70 Handsoldering, Alternate KiCad Library -SOT-323 SC-70 Handsoldering -0 -3 -3 -PCM_Package_TO_SOT_SMD_AKL -SOT-323_SC-70_Handsoldering -SOT-323, SC-70 Handsoldering, Alternate KiCad Library -SOT-323 SC-70 Handsoldering -0 -3 -3 -PCM_Package_TO_SOT_SMD_AKL -SOT-343_SC-70-4 -SOT-343, SC-70-4, Alternate KiCad Library -SOT-343 SC-70-4 -0 -4 -4 -PCM_Package_TO_SOT_SMD_AKL -SOT-343_SC-70-4_BigPads -SOT-343, SC-70-4, Handsoldering, Alternate KiCad Library -SOT-343 SC-70-4 Handsoldering -0 -4 -4 -PCM_Package_TO_SOT_SMD_AKL -SOT-343_SC-70-4_Handsoldering -SOT-343, SC-70-4, Handsoldering, Alternate KiCad Library -SOT-343 SC-70-4 Handsoldering -0 -4 -4 -PCM_Package_TO_SOT_SMD_AKL -SOT-353_SC-70-5 -SOT-353, SC-70-5, Alternate KiCad Library -SOT-353 SC-70-5 -0 -5 -5 -PCM_Package_TO_SOT_SMD_AKL -SOT-353_SC-70-5_BigPads -SOT-353, SC-70-5, Handsoldering, Alternate KiCad Library -SOT-353 SC-70-5 Handsoldering -0 -5 -5 -PCM_Package_TO_SOT_SMD_AKL -SOT-353_SC-70-5_Handsoldering -SOT-353, SC-70-5, Handsoldering, Alternate KiCad Library -SOT-353 SC-70-5 Handsoldering -0 -5 -5 -PCM_Package_TO_SOT_SMD_AKL -SOT-363_SC-70-6 -SOT-363, SC-70-6, Alternate KiCad Library -SOT-363 SC-70-6 -0 -6 -6 -PCM_Package_TO_SOT_SMD_AKL -SOT-363_SC-70-6_BigPads -SOT-363, SC-70-6, Handsoldering, Alternate KiCad Library -SOT-363 SC-70-6 Handsoldering -0 -6 -6 -PCM_Package_TO_SOT_SMD_AKL -SOT-363_SC-70-6_Handsoldering -SOT-363, SC-70-6, Handsoldering, Alternate KiCad Library -SOT-363 SC-70-6 Handsoldering -0 -6 -6 -PCM_Package_TO_SOT_SMD_AKL -SOT-383F -8-pin SOT-383F, http://www.mouser.com/ds/2/80/CPDVR085V0C-HF-RevB-10783.pdf, Alternate KiCad Library -SOT-383F -0 -11 -9 -PCM_Package_TO_SOT_SMD_AKL -SOT-383FL -8-pin SOT-383FL package, http://www.onsemi.com/pub_link/Collateral/ENA2267-D.PDF, Alternate KiCad Library -SOT-383FL -0 -8 -8 -PCM_Package_TO_SOT_SMD_AKL -SOT-416 -SOT-416, https://www.nxp.com/docs/en/package-information/SOT416.pdf, Alternate KiCad Library -SOT-416 -0 -3 -3 -PCM_Package_TO_SOT_SMD_AKL -SOT-523 -SOT523, https://www.diodes.com/assets/Package-Files/SOT523.pdf, Alternate KiCad Library -SOT-523 -0 -3 -3 -PCM_Package_TO_SOT_SMD_AKL -SOT-543 -SOT-543 4 lead surface package, Alternate KiCad Library -SOT-543 SC-107A EMD4 -0 -4 -4 -PCM_Package_TO_SOT_SMD_AKL -SOT-553 -SOT553, Alternate KiCad Library -SOT-553 -0 -5 -5 -PCM_Package_TO_SOT_SMD_AKL -SOT-563 -SOT563, Alternate KiCad Library -SOT-563 -0 -6 -6 -PCM_Package_TO_SOT_SMD_AKL -SOT-665 -SOT665, Alternate KiCad Library -SOT-665 -0 -5 -5 -PCM_Package_TO_SOT_SMD_AKL -SOT-666 -SOT666, Alternate KiCad Library -SOT-666 -0 -6 -6 -PCM_Package_TO_SOT_SMD_AKL -SOT-723 -http://toshiba.semicon-storage.com/info/docget.jsp?did=5879&prodName=RN1104MFV, Alternate KiCad Library -sot 723 -0 -3 -3 -PCM_Package_TO_SOT_SMD_AKL -SOT-883 -SOT-883, https://assets.nexperia.com/documents/outline-drawing/SOT883.pdf, Alternate KiCad Library -SOT-883 -0 -3 -3 -PCM_Package_TO_SOT_SMD_AKL -SOT-886 -SOT-886, Alternate KiCad Library -SOT-886 -0 -6 -6 -PCM_Package_TO_SOT_SMD_AKL -SOT-963 -SOT 963 6 pins package 1x0.8mm pitch 0.35mm, Alternate KiCad Library -SOT 963 6 pins package 1x0.8mm pitch 0.35mm -0 -6 -6 -PCM_Package_TO_SOT_SMD_AKL -SOT-1123 -SOT-1123 small outline transistor (see http://www.onsemi.com/pub/Collateral/NST3906F3-D.PDF), Alternate KiCad Library -SOT-1123 transistor -0 -3 -3 -PCM_Package_TO_SOT_SMD_AKL -SOT-1333-1 -SOT-1333-1 , Alternate KiCad Library -SOT-1333-1 -0 -9 -9 -PCM_Package_TO_SOT_SMD_AKL -SOT-1334-1 -SOT-1334-1, Alternate KiCad Library -SOT-1334-1 -0 -14 -14 -PCM_Package_TO_SOT_SMD_AKL -SuperSOT-3 -3-pin SuperSOT package https://www.fairchildsemi.com/package-drawings/MA/MA03B.pdf, Alternate KiCad Library -SuperSOT-3 SSOT-3 -0 -3 -3 -PCM_Package_TO_SOT_SMD_AKL -SuperSOT-6 -6-pin SuperSOT package http://www.mouser.com/ds/2/149/FMB5551-889214.pdf, Alternate KiCad Library -SuperSOT-6 SSOT-6 -0 -6 -6 -PCM_Package_TO_SOT_SMD_AKL -SuperSOT-8 -8-pin SuperSOT package, http://www.icbank.com/icbank_data/semi_package/ssot8_dim.pdf, Alternate KiCad Library -SuperSOT-8 SSOT-8 -0 -8 -8 -PCM_Package_TO_SOT_SMD_AKL -TDSON-8-1 -Power MOSFET package, TDSON-8-1, 5.15x5.9mm (https://www.infineon.com/cms/en/product/packages/PG-TDSON/PG-TDSON-8-1/), Alternate KiCad Library -tdson -0 -18 -5 -PCM_Package_TO_SOT_SMD_AKL -TO-50-3_LongPad-NoHole_BEC_Housing -TO-50-3 Macro T Package Style M236, Alternate KiCad Library -TO-50-3 Macro T Package Style M236 -0 -3 -3 -PCM_Package_TO_SOT_SMD_AKL -TO-50-3_LongPad-NoHole_EBC_Housing -TO-50-3 Macro T Package Style M236, Alternate KiCad Library -TO-50-3 Macro T Package Style M236 -0 -3 -3 -PCM_Package_TO_SOT_SMD_AKL -TO-50-3_LongPad-NoHole_Housing -TO-50-3 Macro T Package Style M236, Alternate KiCad Library -TO-50-3 Macro T Package Style M236 -0 -3 -3 -PCM_Package_TO_SOT_SMD_AKL -TO-50-3_LongPad-WithHole_BEC_Housing -TO-50-3 Macro T Package Style M236, Alternate KiCad Library -TO-50-3 Macro T Package Style M236 -0 -3 -3 -PCM_Package_TO_SOT_SMD_AKL -TO-50-3_LongPad-WithHole_EBC_Housing -TO-50-3 Macro T Package Style M236, Alternate KiCad Library -TO-50-3 Macro T Package Style M236 -0 -3 -3 -PCM_Package_TO_SOT_SMD_AKL -TO-50-3_LongPad-WithHole_Housing -TO-50-3 Macro T Package Style M236, Alternate KiCad Library -TO-50-3 Macro T Package Style M236 -0 -3 -3 -PCM_Package_TO_SOT_SMD_AKL -TO-50-3_ShortPad-NoHole_BEC_Housing -TO-50-3 Macro T Package Style M236, Alternate KiCad Library -TO-50-3 Macro T Package Style M236 -0 -3 -3 -PCM_Package_TO_SOT_SMD_AKL -TO-50-3_ShortPad-NoHole_EBC_Housing -TO-50-3 Macro T Package Style M236, Alternate KiCad Library -TO-50-3 Macro T Package Style M236 -0 -3 -3 -PCM_Package_TO_SOT_SMD_AKL -TO-50-3_ShortPad-NoHole_Housing -TO-50-3 Macro T Package Style M236, Alternate KiCad Library -TO-50-3 Macro T Package Style M236 -0 -3 -3 -PCM_Package_TO_SOT_SMD_AKL -TO-50-3_ShortPad-WithHole_BEC_Housing -TO-50-3 Macro T Package Style M236, Alternate KiCad Library -TO-50-3 Macro T Package Style M236 -0 -3 -3 -PCM_Package_TO_SOT_SMD_AKL -TO-50-3_ShortPad-WithHole_EBC_Housing -TO-50-3 Macro T Package Style M236, Alternate KiCad Library -TO-50-3 Macro T Package Style M236 -0 -3 -3 -PCM_Package_TO_SOT_SMD_AKL -TO-50-3_ShortPad-WithHole_Housing -TO-50-3 Macro T Package Style M236, Alternate KiCad Library -TO-50-3 Macro T Package Style M236 -0 -3 -3 -PCM_Package_TO_SOT_SMD_AKL -TO-50-4_LongPad-NoHole_BECE_Housing -TO-50-4 Macro X Package Style M238, Alternate KiCad Library -TO-50-4 Macro X Package Style M238 -0 -4 -4 -PCM_Package_TO_SOT_SMD_AKL -TO-50-4_LongPad-NoHole_Housing -TO-50-4 Macro X Package Style M238, Alternate KiCad Library -TO-50-4 Macro X Package Style M238 -0 -4 -4 -PCM_Package_TO_SOT_SMD_AKL -TO-50-4_LongPad-WithHole_BECE_Housing -TO-50-4 Macro X Package Style M238, Alternate KiCad Library -TO-50-4 Macro X Package Style M238 -0 -4 -4 -PCM_Package_TO_SOT_SMD_AKL -TO-50-4_LongPad-WithHole_Housing -TO-50-4 Macro X Package Style M238, Alternate KiCad Library -TO-50-4 Macro X Package Style M238 -0 -4 -4 -PCM_Package_TO_SOT_SMD_AKL -TO-50-4_ShortPad-NoHole_BECE_Housing -TO-50-4 Macro X Package Style M238, Alternate KiCad Library -TO-50-4 Macro X Package Style M238 -0 -4 -4 -PCM_Package_TO_SOT_SMD_AKL -TO-50-4_ShortPad-NoHole_Housing -TO-50-4 Macro X Package Style M238, Alternate KiCad Library -TO-50-4 Macro X Package Style M238 -0 -4 -4 -PCM_Package_TO_SOT_SMD_AKL -TO-50-4_ShortPad-WithHole_BECE_Housing -TO-50-4 Macro X Package Style M238, Alternate KiCad Library -TO-50-4 Macro X Package Style M238 -0 -4 -4 -PCM_Package_TO_SOT_SMD_AKL -TO-50-4_ShortPad-WithHole_Housing -TO-50-4 Macro X Package Style M238, Alternate KiCad Library -TO-50-4 Macro X Package Style M238 -0 -4 -4 -PCM_Package_TO_SOT_SMD_AKL -TO-252-2 -TO-252 / DPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO252/PG-TO252-3-1/, Alternate KiCad Library -DPAK TO-252 DPAK-3 TO-252-3 SOT-428 -0 -12 -3 -PCM_Package_TO_SOT_SMD_AKL -TO-252-2_TabPin1 -TO-252-2, tab to pin 1 https://www.wolfspeed.com/media/downloads/87/CSD01060.pdf, Alternate KiCad Library -TO-252-2 diode -0 -12 -2 -PCM_Package_TO_SOT_SMD_AKL -TO-252-3_TabPin2 -TO-252 / DPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO252/PG-TO252-3-1/, Alternate KiCad Library -DPAK TO-252 DPAK-3 TO-252-3 SOT-428 -0 -13 -3 -PCM_Package_TO_SOT_SMD_AKL -TO-252-3_TabPin4 -TO-252 / DPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO252/PG-TO252-3-1/, Alternate KiCad Library -DPAK TO-252 DPAK-3 TO-252-3 SOT-428 -0 -13 -4 -PCM_Package_TO_SOT_SMD_AKL -TO-252-4 -TO-252 / DPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO252/PG-TO252-5-11/, Alternate KiCad Library -DPAK TO-252 DPAK-5 TO-252-5 -0 -14 -5 -PCM_Package_TO_SOT_SMD_AKL -TO-252-5_TabPin3 -TO-252 / DPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO252/PG-TO252-5-11/, Alternate KiCad Library -DPAK TO-252 DPAK-5 TO-252-5 -0 -15 -5 -PCM_Package_TO_SOT_SMD_AKL -TO-252-5_TabPin6 -TO-252 / DPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO252/PG-TO252-5-11/, Alternate KiCad Library -DPAK TO-252 DPAK-5 TO-252-5 -0 -15 -6 -PCM_Package_TO_SOT_SMD_AKL -TO-263-2 -TO-263 / D2PAK / DDPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO263/PG-TO263-3-1/, Alternate KiCad Library -D2PAK DDPAK TO-263 D2PAK-3 TO-263-3 SOT-404 -0 -19 -3 -PCM_Package_TO_SOT_SMD_AKL -TO-263-2_TabPin1 -TO-263 / D2PAK / DDPAK SMD package, tab to pin 1, https://www.wolfspeed.com/media/downloads/137/C3D06060G.pdf, Alternate KiCad Library -D2PAK DDPAK TO-263 D2PAK-3 TO-263-3 SOT-404 diode -0 -19 -2 -PCM_Package_TO_SOT_SMD_AKL -TO-263-3_TabPin2 -TO-263 / D2PAK / DDPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO263/PG-TO263-3-1/, Alternate KiCad Library -D2PAK DDPAK TO-263 D2PAK-3 TO-263-3 SOT-404 -0 -20 -3 -PCM_Package_TO_SOT_SMD_AKL -TO-263-3_TabPin4 -TO-263 / D2PAK / DDPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO263/PG-TO263-3-1/, Alternate KiCad Library -D2PAK DDPAK TO-263 D2PAK-3 TO-263-3 SOT-404 -0 -20 -4 -PCM_Package_TO_SOT_SMD_AKL -TO-263-4 -TO-263 / D2PAK / DDPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO263/PG-TO263-5-1/, Alternate KiCad Library -D2PAK DDPAK TO-263 D2PAK-5 TO-263-5 SOT-426 -0 -21 -5 -PCM_Package_TO_SOT_SMD_AKL -TO-263-5_TabPin3 -TO-263 / D2PAK / DDPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO263/PG-TO263-5-1/, Alternate KiCad Library -D2PAK DDPAK TO-263 D2PAK-5 TO-263-5 SOT-426 -0 -22 -5 -PCM_Package_TO_SOT_SMD_AKL -TO-263-5_TabPin6 -TO-263 / D2PAK / DDPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO263/PG-TO263-5-1/, Alternate KiCad Library -D2PAK DDPAK TO-263 D2PAK-5 TO-263-5 SOT-426 -0 -22 -6 -PCM_Package_TO_SOT_SMD_AKL -TO-263-6 -TO-263 / D2PAK / DDPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO263/PG-TO263-7-1/, Alternate KiCad Library -D2PAK DDPAK TO-263 D2PAK-7 TO-263-7 SOT-427 -0 -23 -7 -PCM_Package_TO_SOT_SMD_AKL -TO-263-7_TabPin4 -TO-263 / D2PAK / DDPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO263/PG-TO263-7-1/, Alternate KiCad Library -D2PAK DDPAK TO-263 D2PAK-7 TO-263-7 SOT-427 -0 -24 -7 -PCM_Package_TO_SOT_SMD_AKL -TO-263-7_TabPin8 -TO-263 / D2PAK / DDPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO263/PG-TO263-7-1/, Alternate KiCad Library -D2PAK DDPAK TO-263 D2PAK-7 TO-263-7 SOT-427 -0 -24 -8 -PCM_Package_TO_SOT_SMD_AKL -TO-263-9_TabPin5 -TO-263 / D2PAK / DDPAK SMD package, http://www.ti.com/lit/ds/symlink/lm4755.pdf, Alternate KiCad Library -D2PAK DDPAK TO-263 D2PAK-9 TO-263-9 -0 -26 -9 -PCM_Package_TO_SOT_SMD_AKL -TO-263-9_TabPin10 -TO-263 / D2PAK / DDPAK SMD package, http://www.ti.com/lit/ds/symlink/lm4755.pdf, Alternate KiCad Library -D2PAK DDPAK TO-263 D2PAK-9 TO-263-9 -0 -26 -10 -PCM_Package_TO_SOT_SMD_AKL -TO-268-2 -TO-268/D3PAK SMD package, http://www.icbank.com/icbank_data/semi_package/to268aa_dim.pdf, Alternate KiCad Library -D3PAK TO-268 D3PAK-3 TO-268-3 -0 -23 -3 -PCM_Package_TO_SOT_SMD_AKL -TO-269AA -SMD package TO-269AA (e.g. diode bridge), see http://www.vishay.com/docs/88854/padlayouts.pdf, Alternate KiCad Library -TO-269AA MBS diode bridge -0 -4 -4 -PCM_Package_TO_SOT_SMD_AKL -TO-277A -Thermal enhanced ultra thin SMD package; 3 leads; body: 4.3x6.1x0.43mm, https://www.vishay.com/docs/95570/to-277asmpc.pdf, Alternate KiCad Library -TO-277A SMPC -0 -12 -3 -PCM_Package_TO_SOT_SMD_AKL -TO-277B -TO-227B https://media.digikey.com/pdf/Data%20Sheets/Littelfuse%20PDFs/DST2050S.pdf, Alternate KiCad Library -TO-277B -0 -9 -3 -PCM_Package_TO_SOT_SMD_AKL -TSOT-23 -3-pin TSOT23 package, http://www.analog.com.tw/pdf/All_In_One.pdf, Alternate KiCad Library -TSOT-23 -0 -3 -3 -PCM_Package_TO_SOT_SMD_AKL -TSOT-23-5 -5-pin TSOT23 package, http://cds.linear.com/docs/en/packaging/SOT_5_05-08-1635.pdf, Alternate KiCad Library -TSOT-23-5 -0 -5 -5 -PCM_Package_TO_SOT_SMD_AKL -TSOT-23-5_BigPads -5-pin TSOT23 package, http://cds.linear.com/docs/en/packaging/SOT_5_05-08-1635.pdf, Alternate KiCad Library -TSOT-23-5 Hand-soldering -0 -5 -5 -PCM_Package_TO_SOT_SMD_AKL -TSOT-23-5_HandSoldering -5-pin TSOT23 package, http://cds.linear.com/docs/en/packaging/SOT_5_05-08-1635.pdf, Alternate KiCad Library -TSOT-23-5 Hand-soldering -0 -5 -5 -PCM_Package_TO_SOT_SMD_AKL -TSOT-23-6 -6-pin TSOT23 package, http://cds.linear.com/docs/en/packaging/SOT_6_05-08-1636.pdf, Alternate KiCad Library -TSOT-23-6 MK06A TSOT-6 -0 -6 -6 -PCM_Package_TO_SOT_SMD_AKL -TSOT-23-6_BigPads -6-pin TSOT23 package, http://cds.linear.com/docs/en/packaging/SOT_6_05-08-1636.pdf, Alternate KiCad Library -TSOT-23-6 MK06A TSOT-6 Hand-soldering -0 -6 -6 -PCM_Package_TO_SOT_SMD_AKL -TSOT-23-6_HandSoldering -6-pin TSOT23 package, http://cds.linear.com/docs/en/packaging/SOT_6_05-08-1636.pdf, Alternate KiCad Library -TSOT-23-6 MK06A TSOT-6 Hand-soldering -0 -6 -6 -PCM_Package_TO_SOT_SMD_AKL -TSOT-23-8 -8-pin TSOT23 package, http://cds.linear.com/docs/en/packaging/SOT_8_05-08-1637.pdf, Alternate KiCad Library -TSOT-23-8 -0 -8 -8 -PCM_Package_TO_SOT_SMD_AKL -TSOT-23-8_BigPads -8-pin TSOT23 package, http://cds.linear.com/docs/en/packaging/SOT_8_05-08-1637.pdf, Alternate KiCad Library -TSOT-23-8 Hand-soldering -0 -8 -8 -PCM_Package_TO_SOT_SMD_AKL -TSOT-23-8_HandSoldering -8-pin TSOT23 package, http://cds.linear.com/docs/en/packaging/SOT_8_05-08-1637.pdf, Alternate KiCad Library -TSOT-23-8 Hand-soldering -0 -8 -8 -PCM_Package_TO_SOT_SMD_AKL -TSOT-23_BigPads -5-pin TSOT23 package, http://cds.linear.com/docs/en/packaging/SOT_5_05-08-1635.pdf, Alternate KiCad Library -TSOT-23 Hand-soldering -0 -3 -3 -PCM_Package_TO_SOT_SMD_AKL -TSOT-23_HandSoldering -5-pin TSOT23 package, http://cds.linear.com/docs/en/packaging/SOT_5_05-08-1635.pdf, Alternate KiCad Library -TSOT-23 Hand-soldering -0 -3 -3 -PCM_Package_TO_SOT_SMD_AKL -Texas_DRT-3 -Texas Instrument DRT-3 1x0.8mm Pitch 0.7mm http://www.ti.com/lit/ds/symlink/tpd2eusb30.pdf, Alternate KiCad Library -DRT-3 1x0.8mm Pitch 0.7mm -0 -3 -3 -PCM_Package_TO_SOT_SMD_AKL -Texas_NDQ -Texas Instruments, NDQ, 5 pin (https://www.ti.com/lit/ml/mmsf022/mmsf022.pdf), Alternate KiCad Library -ti pfm dap -0 -18 -6 -PCM_Package_TO_SOT_SMD_AKL -Texas_NDY0011A -TO-PMOD-11 11-pin switching regulator package, http://www.ti.com/lit/ml/mmsf025/mmsf025.pdf, Alternate KiCad Library -Texas TO-PMOD NDY00011A -0 -42 -12 -PCM_Package_TO_SOT_SMD_AKL -Texas_R-PDSO-G6 -R-PDSO-G6, http://www.ti.com/lit/ds/slis144b/slis144b.pdf, Alternate KiCad Library -R-PDSO-G6 SC-70-6 -0 -6 -6 -PCM_Package_TO_SOT_SMD_AKL -VSOF5 -VSOF5, Alternate KiCad Library -VSOF5 -0 -5 -5 -PCM_Package_TO_SOT_SMD_AKL -Vishay_PowerPAK_SC70-6L_Dual -Vishay PowerPAK SC70 dual transistor package http://www.vishay.com/docs/70487/70487.pdf, Alternate KiCad Library -powerpak sc70 sc-70 dual -0 -10 -6 -PCM_Package_TO_SOT_SMD_AKL -Vishay_PowerPAK_SC70-6L_Single -Vishay PowerPAK SC70 single transistor package http://www.vishay.com/docs/70486/70486.pdf, Alternate KiCad Library -powerpak sc70 sc-70 -0 -14 -3 -PCM_Package_TO_SOT_THT_AKL -Fairchild_TO-220F-6L -Fairchild TO-220F-6L, http://www.mouser.com/ds/2/149/FSL136MRT-113334.pdf, Alternate KiCad Library -Fairchild TO-220F-6L -0 -6 -6 -PCM_Package_TO_SOT_THT_AKL -Heraeus_TO-92-2 -TO-92 2-pin variant by Heraeus, drill 0.75mm (http://www.produktinfo.conrad.com/datenblaetter/175000-199999/181293-da-01-de-TO92_Temperatursensor_PT1000_32209225.pdf), Alternate KiCad Library -to-92 -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL -NEC_Molded_7x4x9mm -Molded Japan Transistor Package 7x4x9mm^3, http://rtellason.com/transdata/2sb734.pdf, Alternate KiCad Library -Japan transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -PowerIntegrations_TO-220-7C -Non Isolated Modified TO-220 7pin Package, see http://www.farnell.com/datasheets/5793.pdf, Alternate KiCad Library -Power Integration Y Package -0 -6 -6 -PCM_Package_TO_SOT_THT_AKL -SIPAK-1EP_Horizontal_TabDown -SIPAK, Horizontal, RM 2.286mm, Alternate KiCad Library -SIPAK Horizontal RM 2.286mm -0 -13 -4 -PCM_Package_TO_SOT_THT_AKL -SIPAK_Vertical -SIPAK, Vertical, RM 2.286mm, Alternate KiCad Library -SIPAK Vertical RM 2.286mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -SOD-70_P2.54mm -Plastic near cylindrical package Sod-70 see: https://www.nxp.com/docs/en/data-sheet/KTY81_SER.pdf, Alternate KiCad Library -Sod-70 -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL -SOD-70_P5.08mm -Plastic near cylindrical package Sod-70 see: https://www.nxp.com/docs/en/data-sheet/KTY81_SER.pdf , Alternate KiCad Library -Sod-70 -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL -SOT-227 -SOT-227 / SOT-227B / ISOTOP, M4 mounting screws (https://www.vishay.com/docs/95423/sot227g2.pdf, https://www.vishay.com/docs/95793/vs-fc420sa10.pdf), Alternate KiCad Library -sot 227 isotop -0 -8 -4 -PCM_Package_TO_SOT_THT_AKL -TO-3 -Transistor TO-3, Alternate KiCad Library -TR TO-3 TO3 TO-204 -0 -4 -3 -PCM_Package_TO_SOT_THT_AKL -TO-3-8_Isolated -TO-3 8-Pin Metal Can Power Package, Alternate KiCad Library -TO-3 TO3 TO-204 -0 -10 -8 -PCM_Package_TO_SOT_THT_AKL -TO-3P-3_Horizontal_TabDown -TO-3P-3, Horizontal, RM 5.45mm, , see https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.TO-3P(N).html, Alternate KiCad Library -TO-3P-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-3P-3_Horizontal_TabDown_BCE -TO-3P-3, Horizontal, RM 5.45mm, , see https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.TO-3P(N).html, Alternate KiCad Library -TO-3P-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-3P-3_Horizontal_TabDown_GCE -TO-3P-3, Horizontal, RM 5.45mm, , see https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.TO-3P(N).html, Alternate KiCad Library -TO-3P-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-3P-3_Horizontal_TabDown_GDS -TO-3P-3, Horizontal, RM 5.45mm, , see https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.TO-3P(N).html, Alternate KiCad Library -TO-3P-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-3P-3_Horizontal_TabDown_KAG -TO-3P-3, Horizontal, RM 5.45mm, , see https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.TO-3P(N).html, Alternate KiCad Library -TO-3P-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-3P-3_Horizontal_TabUp -TO-3P-3, Horizontal, RM 5.45mm, , see https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.TO-3P(N).html, Alternate KiCad Library -TO-3P-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-3P-3_Horizontal_TabUp_BCE -TO-3P-3, Horizontal, RM 5.45mm, , see https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.TO-3P(N).html, Alternate KiCad Library -TO-3P-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-3P-3_Horizontal_TabUp_GCE -TO-3P-3, Horizontal, RM 5.45mm, , see https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.TO-3P(N).html, Alternate KiCad Library -TO-3P-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-3P-3_Horizontal_TabUp_GDS -TO-3P-3, Horizontal, RM 5.45mm, , see https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.TO-3P(N).html, Alternate KiCad Library -TO-3P-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-3P-3_Horizontal_TabUp_KAG -TO-3P-3, Horizontal, RM 5.45mm, , see https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.TO-3P(N).html, Alternate KiCad Library -TO-3P-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-3P-3_Vertical -TO-3P-3, Vertical, RM 5.45mm, , see https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.TO-3P(N).html, Alternate KiCad Library -TO-3P-3 Vertical RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-3P-3_Vertical_BCE -TO-3P-3, Vertical, RM 5.45mm, , see https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.TO-3P(N).html, Alternate KiCad Library -TO-3P-3 Vertical RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-3P-3_Vertical_GCE -TO-3P-3, Vertical, RM 5.45mm, , see https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.TO-3P(N).html, Alternate KiCad Library -TO-3P-3 Vertical RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-3P-3_Vertical_GDS -TO-3P-3, Vertical, RM 5.45mm, , see https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.TO-3P(N).html, Alternate KiCad Library -TO-3P-3 Vertical RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-3P-3_Vertical_KAG -TO-3P-3, Vertical, RM 5.45mm, , see https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.TO-3P(N).html, Alternate KiCad Library -TO-3P-3 Vertical RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-3PB-3_Horizontal_TabDown -TO-3PB-3, Horizontal, RM 5.45mm, , see http://www.onsemi.com/pub/Collateral/340AC.PDF, Alternate KiCad Library -TO-3PB-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-3PB-3_Horizontal_TabDown_BCE -TO-3PB-3, Horizontal, RM 5.45mm, , see http://www.onsemi.com/pub/Collateral/340AC.PDF, Alternate KiCad Library -TO-3PB-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-3PB-3_Horizontal_TabDown_GDS -TO-3PB-3, Horizontal, RM 5.45mm, , see http://www.onsemi.com/pub/Collateral/340AC.PDF, Alternate KiCad Library -TO-3PB-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-3PB-3_Horizontal_TabUp -TO-3PB-3, Horizontal, RM 5.45mm, , see http://www.onsemi.com/pub/Collateral/340AC.PDF, Alternate KiCad Library -TO-3PB-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-3PB-3_Horizontal_TabUp_BCE -TO-3PB-3, Horizontal, RM 5.45mm, , see http://www.onsemi.com/pub/Collateral/340AC.PDF, Alternate KiCad Library -TO-3PB-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-3PB-3_Horizontal_TabUp_GDS -TO-3PB-3, Horizontal, RM 5.45mm, , see http://www.onsemi.com/pub/Collateral/340AC.PDF, Alternate KiCad Library -TO-3PB-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-3PB-3_Vertical -TO-3PB-3, Vertical, RM 5.45mm, , see http://www.onsemi.com/pub/Collateral/340AC.PDF, Alternate KiCad Library -TO-3PB-3 Vertical RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-3PB-3_Vertical_BCE -TO-3PB-3, Vertical, RM 5.45mm, , see http://www.onsemi.com/pub/Collateral/340AC.PDF, Alternate KiCad Library -TO-3PB-3 Vertical RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-3PB-3_Vertical_GDS -TO-3PB-3, Vertical, RM 5.45mm, , see http://www.onsemi.com/pub/Collateral/340AC.PDF, Alternate KiCad Library -TO-3PB-3 Vertical RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-3PF-3_Horizontal_TabDown -TO-3PF-3, Horizontal, RM 5.45mm, , see https://pl.mouser.com/datasheet/2/308/FJAF4310-D-1809538.pdf, Alternate KiCad Library -TO-3PF-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-3PF-3_Horizontal_TabDown_BCE -TO-3PF-3, Horizontal, RM 5.45mm, , see https://pl.mouser.com/datasheet/2/308/FJAF4310-D-1809538.pdf, Alternate KiCad Library -TO-3PF-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-3PF-3_Horizontal_TabDown_GCE -TO-3PF-3, Horizontal, RM 5.45mm, , see https://pl.mouser.com/datasheet/2/308/FJAF4310-D-1809538.pdf, Alternate KiCad Library -TO-3PF-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-3PF-3_Horizontal_TabDown_GDS -TO-3PF-3, Horizontal, RM 5.45mm, , see https://pl.mouser.com/datasheet/2/308/FJAF4310-D-1809538.pdf, Alternate KiCad Library -TO-3PF-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-3PF-3_Horizontal_TabUp -TO-3PF-3, Horizontal, RM 5.45mm, , see https://pl.mouser.com/datasheet/2/308/FJAF4310-D-1809538.pdf, Alternate KiCad Library -TO-3PF-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-3PF-3_Horizontal_TabUp_BCE -TO-3PF-3, Horizontal, RM 5.45mm, , see https://pl.mouser.com/datasheet/2/308/FJAF4310-D-1809538.pdf, Alternate KiCad Library -TO-3PF-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-3PF-3_Horizontal_TabUp_GCE -TO-3PF-3, Horizontal, RM 5.45mm, , see https://pl.mouser.com/datasheet/2/308/FJAF4310-D-1809538.pdf, Alternate KiCad Library -TO-3PF-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-3PF-3_Horizontal_TabUp_GDS -TO-3PF-3, Horizontal, RM 5.45mm, , see https://pl.mouser.com/datasheet/2/308/FJAF4310-D-1809538.pdf, Alternate KiCad Library -TO-3PF-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-3PF-3_Vertical -TO-3PF-3, Vertical, RM 5.45mm, , see https://pl.mouser.com/datasheet/2/308/FJAF4310-D-1809538.pdf, Alternate KiCad Library -TO-3PF-3 Vertical RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-3PF-3_Vertical_BCE -TO-3PF-3, Vertical, RM 5.45mm, , see https://pl.mouser.com/datasheet/2/308/FJAF4310-D-1809538.pdf, Alternate KiCad Library -TO-3PF-3 Vertical RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-3PF-3_Vertical_GCE -TO-3PF-3, Vertical, RM 5.45mm, , see https://pl.mouser.com/datasheet/2/308/FJAF4310-D-1809538.pdf, Alternate KiCad Library -TO-3PF-3 Vertical RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-3PF-3_Vertical_GDS -TO-3PF-3, Vertical, RM 5.45mm, , see https://pl.mouser.com/datasheet/2/308/FJAF4310-D-1809538.pdf, Alternate KiCad Library -TO-3PF-3 Vertical RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-3_BEC -Transistor TO-3, Alternate KiCad Library -TR TO-3 TO3 TO-204 -0 -4 -3 -PCM_Package_TO_SOT_THT_AKL -TO-3_GSD -Transistor TO-3, Alternate KiCad Library -TR TO-3 TO3 TO-204 -0 -4 -3 -PCM_Package_TO_SOT_THT_AKL -TO-5-2 -TO-5-2, Alternate KiCad Library -TO-5-2 -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL -TO-5-2_AK -TO-5-2, Alternate KiCad Library -TO-5-2 -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL -TO-5-2_KA -TO-5-2, Alternate KiCad Library -TO-5-2 -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL -TO-5-2_Window -TO-5-2_Window, Window, Alternate KiCad Library -TO-5-2_Window Window -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL -TO-5-2_Window_AK -TO-5-2_Window, Window, Alternate KiCad Library -TO-5-2_Window Window -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL -TO-5-2_Window_KA -TO-5-2_Window, Window, Alternate KiCad Library -TO-5-2_Window Window -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL -TO-5-3 -TO-5-3, Alternate KiCad Library -TO-5-3 -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-5-3_EBC -TO-5-3, Alternate KiCad Library -TO-5-3 -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-5-3_Window -TO-5-3_Window, Window, Alternate KiCad Library -TO-5-3_Window Window -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-5-3_Window_EBC -TO-5-3_Window, Window, Alternate KiCad Library -TO-5-3_Window Window -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-5-4 -TO-5-4, Alternate KiCad Library -TO-5-4 -0 -4 -4 -PCM_Package_TO_SOT_THT_AKL -TO-5-4_EBC -TO-5-4, Alternate KiCad Library -TO-5-4 -0 -4 -4 -PCM_Package_TO_SOT_THT_AKL -TO-5-4_Window -TO-5-4_Window, Window, Alternate KiCad Library -TO-5-4_Window Window -0 -4 -4 -PCM_Package_TO_SOT_THT_AKL -TO-5-6 -TO-5-6, Alternate KiCad Library -TO-5-6 -0 -6 -6 -PCM_Package_TO_SOT_THT_AKL -TO-5-6_CBE-EBC -TO-5-6, Alternate KiCad Library -TO-5-6 -0 -6 -6 -PCM_Package_TO_SOT_THT_AKL -TO-5-6_Window -TO-5-6_Window, Window, Alternate KiCad Library -TO-5-6_Window Window -0 -6 -6 -PCM_Package_TO_SOT_THT_AKL -TO-5-8 -TO-5-8, Alternate KiCad Library -TO-5-8 -0 -8 -8 -PCM_Package_TO_SOT_THT_AKL -TO-5-8_PD5.08 -TO-5-8_PD5.08, Alternate KiCad Library -TO-5-8_PD5.08 -0 -8 -8 -PCM_Package_TO_SOT_THT_AKL -TO-5-8_PD5.08_Window -TO-5-8_PD5.08_Window, Window, Alternate KiCad Library -TO-5-8_PD5.08_Window Window -0 -8 -8 -PCM_Package_TO_SOT_THT_AKL -TO-5-8_Window -TO-5-8_Window, Window, Alternate KiCad Library -TO-5-8_Window Window -0 -8 -8 -PCM_Package_TO_SOT_THT_AKL -TO-5-10 -TO-5-10, Alternate KiCad Library -TO-5-10 -0 -10 -10 -PCM_Package_TO_SOT_THT_AKL -TO-5-10_Window -TO-5-10_Window, Window, Alternate KiCad Library -TO-5-10_Window Window -0 -10 -10 -PCM_Package_TO_SOT_THT_AKL -TO-8-2 -TO-8-2, Alternate KiCad Library -TO-8-2 -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL -TO-8-2_Window -TO-8-2_Window, Window, Alternate KiCad Library -TO-8-2_Window Window -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL -TO-8-3 -TO-8-3, Alternate KiCad Library -TO-8-3 -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-8-3_Window -TO-8-3_Window, Window, Alternate KiCad Library -TO-8-3_Window Window -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-11-2 -TO-11-2, Alternate KiCad Library -TO-11-2 -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL -TO-11-2_Window -TO-11-2_Window, Window, Alternate KiCad Library -TO-11-2_Window Window -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL -TO-11-3 -TO-11-3, Alternate KiCad Library -TO-11-3 -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-11-3_Window -TO-11-3_Window, Window, Alternate KiCad Library -TO-11-3_Window Window -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-12-4 -TO-12-4, Alternate KiCad Library -TO-12-4 -0 -4 -4 -PCM_Package_TO_SOT_THT_AKL -TO-12-4_Window -TO-12-4_Window, Window, Alternate KiCad Library -TO-12-4_Window Window -0 -4 -4 -PCM_Package_TO_SOT_THT_AKL -TO-17-4 -TO-17-4, Alternate KiCad Library -TO-17-4 -0 -4 -4 -PCM_Package_TO_SOT_THT_AKL -TO-17-4_Window -TO-17-4_Window, Window, Alternate KiCad Library -TO-17-4_Window Window -0 -4 -4 -PCM_Package_TO_SOT_THT_AKL -TO-18-2 -TO-18-2, Alternate KiCad Library -TO-18-2 -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL -TO-18-2_AK -TO-18-2, Alternate KiCad Library -TO-18-2 -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL -TO-18-2_KA -TO-18-2, Alternate KiCad Library -TO-18-2 -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL -TO-18-2_Lens -TO-18-2_Lens, Lens, Alternate KiCad Library -TO-18-2_Lens Lens -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL -TO-18-2_Lens_AK -TO-18-2_Lens, Lens, Alternate KiCad Library -TO-18-2_Lens Lens -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL -TO-18-2_Lens_KA -TO-18-2_Lens, Lens, Alternate KiCad Library -TO-18-2_Lens Lens -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL -TO-18-2_Window -TO-18-2_Window, Window, Alternate KiCad Library -TO-18-2_Window Window -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL -TO-18-2_Window_AK -TO-18-2_Window, Window, Alternate KiCad Library -TO-18-2_Window Window -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL -TO-18-2_Window_KA -TO-18-2_Window, Window, Alternate KiCad Library -TO-18-2_Window Window -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL -TO-18-2_Zener -TO-18-2, Alternate KiCad Library -TO-18-2 -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL -TO-18-3 -TO-18-3, Alternate KiCad Library -TO-18-3 -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-18-3_Board -TO-18-3 Mounted through a board, Alternate KiCad Library -TO-18-3 -0 -4 -4 -PCM_Package_TO_SOT_THT_AKL -TO-18-3_Board_EBC -TO-18-3 Mounted through a board, BJT connections, Alternate KiCad Library -TO-18-3 -0 -4 -4 -PCM_Package_TO_SOT_THT_AKL -TO-18-3_Board_SDG -TO-18-3 Mounted through a board, FET connections, Alternate KiCad Library -TO-18-3 -0 -4 -4 -PCM_Package_TO_SOT_THT_AKL -TO-18-3_EBC -TO-18-3, Alternate KiCad Library -TO-18-3 -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-18-3_Lens -TO-18-3_Lens, Lens, Alternate KiCad Library -TO-18-3_Lens Lens -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-18-3_SDG -TO-18-3, Alternate KiCad Library -TO-18-3 -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-18-3_SGD -TO-18-3, Alternate KiCad Library -TO-18-3 -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-18-3_Window -TO-18-3_Window, Window, Alternate KiCad Library -TO-18-3_Window Window -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-18-4 -TO-18-4, Alternate KiCad Library -TO-18-4 -0 -4 -4 -PCM_Package_TO_SOT_THT_AKL -TO-18-4_EBC -TO-18-4, Alternate KiCad Library -TO-18-4 -0 -4 -4 -PCM_Package_TO_SOT_THT_AKL -TO-18-4_Lens -TO-18-4_Lens, Lens, Alternate KiCad Library -TO-18-4_Lens Lens -0 -4 -4 -PCM_Package_TO_SOT_THT_AKL -TO-18-4_Window -TO-18-4_Window, Window, Alternate KiCad Library -TO-18-4_Window Window -0 -4 -4 -PCM_Package_TO_SOT_THT_AKL -TO-33-4 -TO-33-4, Alternate KiCad Library -TO-33-4 -0 -4 -4 -PCM_Package_TO_SOT_THT_AKL -TO-33-4_Window -TO-33-4_Window, Window, Alternate KiCad Library -TO-33-4_Window Window -0 -4 -4 -PCM_Package_TO_SOT_THT_AKL -TO-38-2 -TO-38-2, Alternate KiCad Library -TO-38-2 -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL -TO-38-2_Window -TO-38-2_Window, Window, Alternate KiCad Library -TO-38-2_Window Window -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL -TO-38-3 -TO-38-3, Alternate KiCad Library -TO-38-3 -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-38-3_Window -TO-38-3_Window, Window, Alternate KiCad Library -TO-38-3_Window Window -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-39-2 -TO-39-2, Alternate KiCad Library -TO-39-2 -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL -TO-39-2_Window -TO-39-2_Window, Window, Alternate KiCad Library -TO-39-2_Window Window -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL -TO-39-3 -TO-39-3, Alternate KiCad Library -TO-39-3 -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-39-3_Board -TO-39-3 Mounted through a board, Alternate KiCad Library -TO-39-3 -0 -4 -3 -PCM_Package_TO_SOT_THT_AKL -TO-39-3_Board_EBC -TO-39-3 Mounted through a board, BJT connections, Alternate KiCad Library -TO-39-3 -0 -4 -3 -PCM_Package_TO_SOT_THT_AKL -TO-39-3_EBC -TO-39-3, Alternate KiCad Library -TO-39-3 -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-39-3_SDG -TO-39-3, Alternate KiCad Library -TO-39-3 -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-39-3_SGD -TO-39-3, Alternate KiCad Library -TO-39-3 -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-39-3_Window -TO-39-3_Window, Window, Alternate KiCad Library -TO-39-3_Window Window -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-39-3_Window_EBC -TO-39-3_Window, Window, Alternate KiCad Library -TO-39-3_Window Window -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-39-4 -TO-39-4, Alternate KiCad Library -TO-39-4 -0 -4 -4 -PCM_Package_TO_SOT_THT_AKL -TO-39-4_Window -TO-39-4_Window, Window, Alternate KiCad Library -TO-39-4_Window Window -0 -4 -4 -PCM_Package_TO_SOT_THT_AKL -TO-39-6 -TO-39-6, Alternate KiCad Library -TO-39-6 -0 -6 -6 -PCM_Package_TO_SOT_THT_AKL -TO-39-6_Window -TO-39-6_Window, Window, Alternate KiCad Library -TO-39-6_Window Window -0 -6 -6 -PCM_Package_TO_SOT_THT_AKL -TO-39-8 -TO-39-8, Alternate KiCad Library -TO-39-8 -0 -8 -8 -PCM_Package_TO_SOT_THT_AKL -TO-39-8_Window -TO-39-8_Window, Window, Alternate KiCad Library -TO-39-8_Window Window -0 -8 -8 -PCM_Package_TO_SOT_THT_AKL -TO-39-10 -TO-39-10, Alternate KiCad Library -TO-39-10 -0 -10 -10 -PCM_Package_TO_SOT_THT_AKL -TO-39-10_Window -TO-39-10_Window, Window, Alternate KiCad Library -TO-39-10_Window Window -0 -10 -10 -PCM_Package_TO_SOT_THT_AKL -TO-46-2 -TO-46-2, Alternate KiCad Library -TO-46-2 -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL -TO-46-2_Pin2Center -TO-46-2, Pin2 at center of package, Thorlabs photodiodes, Alternate KiCad Library -TO-46-2 Thorlabs -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL -TO-46-2_Pin2Center_Window -TO-46-2, Pin2 at center of package, Thorlabs photodiodes, Alternate KiCad Library -TO-46-2 Thorlabs -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL -TO-46-2_Window -TO-46-2_Window, Window, Alternate KiCad Library -TO-46-2_Window Window -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL -TO-46-3 -TO-46-3, Alternate KiCad Library -TO-46-3 -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-46-3_Pin2Center -TO-46-3, Pin2 at center of package, Thorlabs photodiodes, https://www.thorlabs.de/drawings/374b6862eb3b5a04-9360B5F6-5056-2306-D912111C06C3F830/FDGA05-SpecSheet.pdf, Alternate KiCad Library -TO-46-3 Thorlabs -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-46-3_Pin2Center_Window -TO-46-3, Pin2 at center of package, Thorlabs photodiodes, https://www.thorlabs.de/drawings/374b6862eb3b5a04-9360B5F6-5056-2306-D912111C06C3F830/FDGA05-SpecSheet.pdf, Alternate KiCad Library -TO-46-3 Thorlabs -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-46-3_Window -TO-46-3_Window, Window, Alternate KiCad Library -TO-46-3_Window Window -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-46-4 -TO-46-4, Alternate KiCad Library -TO-46-4 -0 -4 -4 -PCM_Package_TO_SOT_THT_AKL -TO-46-4_ThermalShield -TO-46-4 with LM399 thermal shield, https://www.tme.eu/Document/af285c6dd18bf8b2f9c0aa8c89d237e3/lm399ah.pdf, Alternate KiCad Library -TO-46-4 -0 -4 -4 -PCM_Package_TO_SOT_THT_AKL -TO-46-4_Window -TO-46-4_Window, Window, Alternate KiCad Library -TO-46-4_Window Window -0 -4 -4 -PCM_Package_TO_SOT_THT_AKL -TO-52-2 -TO-52-2, Alternate KiCad Library -TO-52-2 -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL -TO-52-2_Window -TO-52-2_Window, Window, Alternate KiCad Library -TO-52-2_Window Window -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL -TO-52-3 -TO-52-3, Alternate KiCad Library -TO-52-3 -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-52-3_Window -TO-52-3_Window, Window, Alternate KiCad Library -TO-52-3_Window Window -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-66 -TO-66 Metal powet transistor package, https://www.centralsemi.com/PDFS/CASE/TO-66PD.PDF, Alternate KiCAD Library -TO-66 -0 -4 -3 -PCM_Package_TO_SOT_THT_AKL -TO-66_BEC -TO-66 Metal powet transistor package, https://www.centralsemi.com/PDFS/CASE/TO-66PD.PDF, Alternate KiCAD Library -TO-66 -0 -4 -3 -PCM_Package_TO_SOT_THT_AKL -TO-72-4 -TO-72-4, Alternate KiCad Library -TO-72-4 -0 -4 -4 -PCM_Package_TO_SOT_THT_AKL -TO-72-4_Board -TO-72-4 Mounted through a board, Alternate KiCad Library -TO-72-4 -0 -5 -4 -PCM_Package_TO_SOT_THT_AKL -TO-72-4_Board_DGGS -TO-72-4 Mounted through a board, Dual Gate FET connections, Alternate KiCad Library -TO-72-4 -0 -5 -4 -PCM_Package_TO_SOT_THT_AKL -TO-72-4_Board_EBC -TO-72-4 Mounted through a board, BJT connections, Alternate KiCad Library -TO-72-4 -0 -5 -4 -PCM_Package_TO_SOT_THT_AKL -TO-72-4_EBC -TO-72-4, Alternate KiCad Library -TO-72-4 -0 -4 -4 -PCM_Package_TO_SOT_THT_AKL -TO-72-4_SDG -TO-72-4, Alternate KiCad Library -TO-72-4 -0 -4 -4 -PCM_Package_TO_SOT_THT_AKL -TO-72-4_Window -TO-72-4_Window, Window, Alternate KiCad Library -TO-72-4_Window Window -0 -4 -4 -PCM_Package_TO_SOT_THT_AKL -TO-75-6 -TO-75-6, Alternate KiCad Library -TO-75-6 -0 -6 -6 -PCM_Package_TO_SOT_THT_AKL -TO-75-6_Window -TO-75-6_Window, Window, Alternate KiCad Library -TO-75-6_Window Window -0 -6 -6 -PCM_Package_TO_SOT_THT_AKL -TO-78-6 -TO-78-6, Alternate KiCad Library -TO-78-6 -0 -6 -6 -PCM_Package_TO_SOT_THT_AKL -TO-78-6_CBE-EBC -TO-78-6, Alternate KiCad Library -TO-78-6 -0 -6 -6 -PCM_Package_TO_SOT_THT_AKL -TO-78-6_Window -TO-78-6_Window, Window, Alternate KiCad Library -TO-78-6_Window Window -0 -6 -6 -PCM_Package_TO_SOT_THT_AKL -TO-78-8 -TO-78-8, Alternate KiCad Library -TO-78-8 -0 -8 -8 -PCM_Package_TO_SOT_THT_AKL -TO-78-8_Window -TO-78-8_Window, Window, Alternate KiCad Library -TO-78-8_Window Window -0 -8 -8 -PCM_Package_TO_SOT_THT_AKL -TO-78-10 -TO-78-10, Alternate KiCad Library -TO-78-10 -0 -10 -10 -PCM_Package_TO_SOT_THT_AKL -TO-78-10_Window -TO-78-10_Window, Window, Alternate KiCad Library -TO-78-10_Window Window -0 -10 -10 -PCM_Package_TO_SOT_THT_AKL -TO-92 -TO-92 leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-92-2 -TO-92 2-pin leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 diode SOD70 -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL -TO-92-2_AK -TO-92 2-pin leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 diode SOD70 -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL -TO-92-2_Horizontal1 -2-pin TO-92 horizontal, leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 temperature sensor diode -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL -TO-92-2_Horizontal1_KA -2-pin TO-92 horizontal, leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 temperature sensor diode -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL -TO-92-2_Horizontal2 -2-pin TO-92 horizontal, leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 temperature sensor diode -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL -TO-92-2_Horizontal2_KA -2-pin TO-92 horizontal, leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 temperature sensor diode -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL -TO-92-2_KA -TO-92 2-pin leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 diode SOD70 -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL -TO-92-2_W4.0mm_Horizontal_FlatSideDown -TO-92 horizontal, leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL -TO-92-2_W4.0mm_Horizontal_FlatSideUp -TO-92 horizontal, leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL -TO-92-2_Wide -TO-92 2-pin leads in-line, wide, drill 0.75mm, Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 diode SOD70 -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL -TO-92-2_Wide_AK -TO-92 2-pin leads in-line, wide, drill 0.75mm, Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 diode SOD70 -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL -TO-92-2_Wide_KA -TO-92 2-pin leads in-line, wide, drill 0.75mm, Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 diode SOD70 -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL -TO-92Flat -TO-92Flat package, often used for hall sensors, drill 0.75mm (see e.g. http://www.ti.com/lit/ds/symlink/drv5023.pdf), Alternate KiCad Library -to-92Flat hall sensor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-92L -TO-92L leads in-line (large body variant of TO-92), also known as TO-226, wide, drill 0.75mm (see https://www.diodes.com/assets/Package-Files/TO92L.pdf and http://www.ti.com/lit/an/snoa059/snoa059.pdf), Alternate KiCad Library -TO-92L Molded Narrow transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-92L_ECB -TO-92L leads in-line (large body variant of TO-92), also known as TO-226, wide, drill 0.75mm (see https://www.diodes.com/assets/Package-Files/TO92L.pdf and http://www.ti.com/lit/an/snoa059/snoa059.pdf), Alternate KiCad Library -TO-92L Molded Narrow transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-92L_HandSolder -TO-92L leads in-line (large body variant of TO-92), also known as TO-226, wide, drill 0.75mm, hand-soldering variant with enlarged pads (see https://www.diodes.com/assets/Package-Files/TO92L.pdf and http://www.ti.com/lit/an/snoa059/snoa059.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-92L_Inline -TO-92L leads in-line (large body variant of TO-92), also known as TO-226, wide, drill 0.75mm (see https://www.diodes.com/assets/Package-Files/TO92L.pdf and http://www.ti.com/lit/an/snoa059/snoa059.pdf), Alternate KiCad Library -TO-92L Inline Wide transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-92L_Inline_ECB -TO-92L leads in-line (large body variant of TO-92), also known as TO-226, wide, drill 0.75mm (see https://www.diodes.com/assets/Package-Files/TO92L.pdf and http://www.ti.com/lit/an/snoa059/snoa059.pdf), Alternate KiCad Library -TO-92L Inline Wide transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-92L_Inline_Wide -TO-92L leads in-line (large body variant of TO-92), also known as TO-226, wide, drill 0.75mm (see https://www.diodes.com/assets/Package-Files/TO92L.pdf and http://www.ti.com/lit/an/snoa059/snoa059.pdf), Alternate KiCad Library -TO-92L Inline Wide transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-92L_Inline_Wide_ECB -TO-92L leads in-line (large body variant of TO-92), also known as TO-226, wide, drill 0.75mm (see https://www.diodes.com/assets/Package-Files/TO92L.pdf and http://www.ti.com/lit/an/snoa059/snoa059.pdf), Alternate KiCad Library -TO-92L Inline Wide transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-92L_Wide -TO-92L leads in-line (large body variant of TO-92), also known as TO-226, wide, drill 0.75mm (see https://www.diodes.com/assets/Package-Files/TO92L.pdf and http://www.ti.com/lit/an/snoa059/snoa059.pdf), Alternate KiCad Library -TO-92L Molded Wide transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-92L_Wide_ECB -TO-92L leads in-line (large body variant of TO-92), also known as TO-226, wide, drill 0.75mm (see https://www.diodes.com/assets/Package-Files/TO92L.pdf and http://www.ti.com/lit/an/snoa059/snoa059.pdf), Alternate KiCad Library -TO-92L Molded Wide transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-92Mini-2 -TO-92Mini package, drill 0.6mm (https://media.digikey.com/pdf/Data%20Sheets/Infineon%20PDFs/KT,KTY.pdf), Alternate KiCad Library -to-92Mini transistor -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL -TO-92S -TO-92S package, drill 0.75mm (https://www.diodes.com/assets/Package-Files/TO92S%20(Type%20B).pdf), Alternate KiCad Library -to-92S transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-92S-2 -TO-92S package, 2-pin, drill 0.75mm (https://www.diodes.com/assets/Package-Files/TO92S%20(Type%20B).pdf), Alternate KiCad Library -to-92S transistor -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL -TO-92S_ECB -TO-92S package, drill 0.75mm (https://www.diodes.com/assets/Package-Files/TO92S%20(Type%20B).pdf), Alternate KiCad Library -to-92S transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-92S_Wide -TO-92S_Wide package, drill 0.75mm (https://www.diodes.com/assets/Package-Files/TO92S%20(Type%20B).pdf), Alternate KiCad Library -TO-92S_Wide transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-92S_Wide_ECB -TO-92S_Wide package, drill 0.75mm (https://www.diodes.com/assets/Package-Files/TO92S%20(Type%20B).pdf), Alternate KiCad Library -TO-92S_Wide transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-92_CBE -TO-92 leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-92_CEB -TO-92 leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-92_DGS -TO-92 leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-92_DSG -TO-92 leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-92_EBC -TO-92 leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-92_ECB -TO-92 leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-92_GDS -TO-92 leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-92_GSD -TO-92 leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-92_HandSolder -TO-92 leads molded, narrow, drill 0.75mm, handsoldering variant with enlarged pads (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-92_Horizontal1 -TO-92 horizontal, leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-92_Horizontal2 -TO-92 horizontal, leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-92_Inline -TO-92 leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-92_Inline_CBE -TO-92 leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-92_Inline_CEB -TO-92 leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-92_Inline_DGS -TO-92 leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-92_Inline_DSG -TO-92 leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-92_Inline_EBC -TO-92 leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-92_Inline_ECB -TO-92 leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-92_Inline_GDS -TO-92 leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-92_Inline_GSD -TO-92 leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-92_Inline_Horizontal1 -TO-92 horizontal, leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-92_Inline_Horizontal2 -TO-92 horizontal, leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-92_Inline_SDG -TO-92 leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-92_Inline_SGD -TO-92 leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-92_Inline_W4.0mm_Horizontal_FlatSideDown -TO-92 horizontal, leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-92_Inline_W4.0mm_Horizontal_FlatSideUp -TO-92 horizontal, leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-92_Inline_Wide -TO-92 leads in-line, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-92_Inline_Wide_CBE -TO-92 leads in-line, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-92_Inline_Wide_CEB -TO-92 leads in-line, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-92_Inline_Wide_DGS -TO-92 leads in-line, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-92_Inline_Wide_DSG -TO-92 leads in-line, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-92_Inline_Wide_EBC -TO-92 leads in-line, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-92_Inline_Wide_ECB -TO-92 leads in-line, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-92_Inline_Wide_GDS -TO-92 leads in-line, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-92_Inline_Wide_GSD -TO-92 leads in-line, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-92_Inline_Wide_SDG -TO-92 leads in-line, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-92_Inline_Wide_SGD -TO-92 leads in-line, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-92_SDG -TO-92 leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-92_SGD -TO-92 leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-92_W4.0mm_StaggerEven_Horizontal_FlatSideDown -TO-92 horizontal, leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-92_W4.0mm_StaggerEven_Horizontal_FlatSideUp -TO-92 horizontal, leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-92_Wide -TO-92 leads molded, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-92_Wide_CBE -TO-92 leads molded, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-92_Wide_CEB -TO-92 leads molded, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-92_Wide_DGS -TO-92 leads molded, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-92_Wide_DSG -TO-92 leads molded, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-92_Wide_EBC -TO-92 leads molded, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-92_Wide_ECB -TO-92 leads molded, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-92_Wide_GDS -TO-92 leads molded, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-92_Wide_GSD -TO-92 leads molded, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-92_Wide_SDG -TO-92 leads molded, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-92_Wide_SGD -TO-92 leads molded, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-99-6 -TO-99-6, Alternate KiCad Library -TO-99-6 -0 -6 -6 -PCM_Package_TO_SOT_THT_AKL -TO-99-6_Window -TO-99-6_Window, Window, Alternate KiCad Library -TO-99-6_Window Window -0 -6 -6 -PCM_Package_TO_SOT_THT_AKL -TO-99-8 -TO-99-8, Alternate KiCad Library -TO-99-8 -0 -8 -8 -PCM_Package_TO_SOT_THT_AKL -TO-99-8_Window -TO-99-8_Window, Window, Alternate KiCad Library -TO-99-8_Window Window -0 -8 -8 -PCM_Package_TO_SOT_THT_AKL -TO-100-10 -TO-100-10, Alternate KiCad Library -TO-100-10 -0 -10 -10 -PCM_Package_TO_SOT_THT_AKL -TO-100-10_Window -TO-100-10_Window, Window, Alternate KiCad Library -TO-100-10_Window Window -0 -10 -10 -PCM_Package_TO_SOT_THT_AKL -TO-126-2_Horizontal_TabDown -TO-126-2, Horizontal, RM 5.08mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf, Alternate KiCad Library -TO-126-2 Horizontal RM 5.08mm -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL -TO-126-2_Horizontal_TabUp -TO-126-2, Horizontal, RM 5.08mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf, Alternate KiCad Library -TO-126-2 Horizontal RM 5.08mm -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL -TO-126-2_Vertical -TO-126-2, Vertical, RM 5.08mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf, Alternate KiCad Library -TO-126-2 Vertical RM 5.08mm -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL -TO-126-3_Horizontal_TabDown -TO-126-3, Horizontal, RM 2.54mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf, Alternate KiCad Library -TO-126-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-126-3_Horizontal_TabDown_AAG -TO-126-3, Horizontal, RM 2.54mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf, Alternate KiCad Library -TO-126-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-126-3_Horizontal_TabDown_BCE -TO-126-3, Horizontal, RM 2.54mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf, Alternate KiCad Library -TO-126-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-126-3_Horizontal_TabDown_ECB -TO-126-3, Horizontal, RM 2.54mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf, Alternate KiCad Library -TO-126-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-126-3_Horizontal_TabDown_KAG -TO-126-3, Horizontal, RM 2.54mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf, Alternate KiCad Library -TO-126-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-126-3_Horizontal_TabUp -TO-126-3, Horizontal, RM 2.54mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf, Alternate KiCad Library -TO-126-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-126-3_Horizontal_TabUp_AAG -TO-126-3, Horizontal, RM 2.54mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf, Alternate KiCad Library -TO-126-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-126-3_Horizontal_TabUp_BCE -TO-126-3, Horizontal, RM 2.54mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf, Alternate KiCad Library -TO-126-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-126-3_Horizontal_TabUp_ECB -TO-126-3, Horizontal, RM 2.54mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf, Alternate KiCad Library -TO-126-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-126-3_Horizontal_TabUp_KAG -TO-126-3, Horizontal, RM 2.54mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf, Alternate KiCad Library -TO-126-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-126-3_Vertical -TO-126-3, Vertical, RM 2.54mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf, Alternate KiCad Library -TO-126-3 Vertical RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-126-3_Vertical_AAG -TO-126-3, Vertical, RM 2.54mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf, Alternate KiCad Library -TO-126-3 Vertical RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-126-3_Vertical_BCE -TO-126-3, Vertical, RM 2.54mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf, Alternate KiCad Library -TO-126-3 Vertical RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-126-3_Vertical_ECB -TO-126-3, Vertical, RM 2.54mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf, Alternate KiCad Library -TO-126-3 Vertical RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-126-3_Vertical_KAG -TO-126-3, Vertical, RM 2.54mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf, Alternate KiCad Library -TO-126-3 Vertical RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-202-3_Horizontal_Down -TO-202-3, Horizontal, RM 2.54mm, see https://pl.mouser.com/datasheet/2/68/cen-u05-07_55-57-1518512.pdf, Alternate KiCad Library -TO-202-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-202-3_Horizontal_Down_BCE -TO-202-3, Horizontal, RM 2.54mm, see https://pl.mouser.com/datasheet/2/68/cen-u05-07_55-57-1518512.pdf, Alternate KiCad Library -TO-202-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-202-3_Horizontal_Tabless_Down -TO-202-3, Horizontal, RM 2.54mm, see https://pl.mouser.com/datasheet/2/68/cen-u05-07_55-57-1518512.pdf, Alternate KiCad Library -TO-202-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-202-3_Horizontal_Tabless_Down_KAG -TO-202-3, Horizontal, RM 2.54mm, see https://pl.mouser.com/datasheet/2/68/cen-u05-07_55-57-1518512.pdf, Alternate KiCad Library -TO-202-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-202-3_Horizontal_Tabless_Up -TO-202-3, Horizontal, RM 2.54mm, see https://pl.mouser.com/datasheet/2/68/cen-u05-07_55-57-1518512.pdf, Alternate KiCad Library -TO-202-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-202-3_Horizontal_Tabless_Up_KAG -TO-202-3, Horizontal, RM 2.54mm, see https://pl.mouser.com/datasheet/2/68/cen-u05-07_55-57-1518512.pdf, Alternate KiCad Library -TO-202-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-202-3_Horizontal_Up -TO-202-3, Horizontal, RM 2.54mm, see https://pl.mouser.com/datasheet/2/68/cen-u05-07_55-57-1518512.pdf, Alternate KiCad Library -TO-202-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-202-3_Horizontal_Up_BCE -TO-202-3, Horizontal, RM 2.54mm, see https://pl.mouser.com/datasheet/2/68/cen-u05-07_55-57-1518512.pdf, Alternate KiCad Library -TO-202-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-202-3_Vertical -TO-202-3, Vertical, RM 2.54mm, see https://pl.mouser.com/datasheet/2/68/cen-u05-07_55-57-1518512.pdf, Alternate KiCad Library -TO-202-3 Vertical RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-202-3_Vertical_BCE -TO-202-3, Vertical, RM 2.54mm, see https://pl.mouser.com/datasheet/2/68/cen-u05-07_55-57-1518512.pdf, Alternate KiCad Library -TO-202-3 Vertical RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-202-3_Vertical_Tabless -TO-202-3, Vertical, RM 2.54mm, without tab, see https://pl.mouser.com/datasheet/2/389/cd00001569-1795487.pdf, Alternate KiCad Library -TO-202-3 Vertical RM 2.54mm Tabless -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-202-3_Vertical_Tabless_KAG -TO-202-3, Vertical, RM 2.54mm, without tab, see https://pl.mouser.com/datasheet/2/389/cd00001569-1795487.pdf, Alternate KiCad Library -TO-202-3 Vertical RM 2.54mm Tabless -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-218-2_Horizontal_TabDown -TO-218-2, Horizontal, RM 10.95mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library -TO-218-2 Horizontal RM 10.95mm SOT-93 -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL -TO-218-2_Horizontal_TabDown_KA -TO-218-2, Horizontal, RM 10.95mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library -TO-218-2 Horizontal RM 10.95mm SOT-93 -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL -TO-218-2_Horizontal_TabUp -TO-218-2, Horizontal, RM 10.95mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library -TO-218-2 Horizontal RM 10.95mm SOT-93 -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL -TO-218-2_Horizontal_TabUp_KA -TO-218-2, Horizontal, RM 10.95mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library -TO-218-2 Horizontal RM 10.95mm SOT-93 -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL -TO-218-2_Vertical -TO-218-2, Vertical, RM 10.95mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library -TO-218-2 Vertical RM 10.95mm SOT-93 -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL -TO-218-2_Vertical_KA -TO-218-2, Vertical, RM 10.95mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library -TO-218-2 Vertical RM 10.95mm SOT-93 -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL -TO-218-3_Horizontal_TabDown -TO-218-3, Horizontal, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library -TO-218-3 Horizontal RM 5.475mm SOT-93 -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-218-3_Horizontal_TabDown_AAG -TO-218-3, Horizontal, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library -TO-218-3 Horizontal RM 5.475mm SOT-93 -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-218-3_Horizontal_TabDown_AKA -TO-218-3, Horizontal, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library -TO-218-3 Horizontal RM 5.475mm SOT-93 -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-218-3_Horizontal_TabDown_BCE -TO-218-3, Horizontal, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library -TO-218-3 Horizontal RM 5.475mm SOT-93 -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-218-3_Horizontal_TabDown_GDS -TO-218-3, Horizontal, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library -TO-218-3 Horizontal RM 5.475mm SOT-93 -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-218-3_Horizontal_TabDown_KAG -TO-218-3, Horizontal, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library -TO-218-3 Horizontal RM 5.475mm SOT-93 -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-218-3_Horizontal_TabUp -TO-218-3, Horizontal, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library -TO-218-3 Horizontal RM 5.475mm SOT-93 -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-218-3_Horizontal_TabUp_AAG -TO-218-3, Horizontal, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library -TO-218-3 Horizontal RM 5.475mm SOT-93 -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-218-3_Horizontal_TabUp_AKA -TO-218-3, Horizontal, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library -TO-218-3 Horizontal RM 5.475mm SOT-93 -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-218-3_Horizontal_TabUp_BCE -TO-218-3, Horizontal, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library -TO-218-3 Horizontal RM 5.475mm SOT-93 -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-218-3_Horizontal_TabUp_GDS -TO-218-3, Horizontal, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library -TO-218-3 Horizontal RM 5.475mm SOT-93 -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-218-3_Horizontal_TabUp_KAG -TO-218-3, Horizontal, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library -TO-218-3 Horizontal RM 5.475mm SOT-93 -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-218-3_Vertical -TO-218-3, Vertical, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library -TO-218-3 Vertical RM 5.475mm SOT-93 -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-218-3_Vertical_AAG -TO-218-3, Vertical, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library -TO-218-3 Vertical RM 5.475mm SOT-93 -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-218-3_Vertical_AKA -TO-218-3, Vertical, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library -TO-218-3 Vertical RM 5.475mm SOT-93 -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-218-3_Vertical_BCE -TO-218-3, Vertical, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library -TO-218-3 Vertical RM 5.475mm SOT-93 -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-218-3_Vertical_GDS -TO-218-3, Vertical, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library -TO-218-3 Vertical RM 5.475mm SOT-93 -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-218-3_Vertical_KAG -TO-218-3, Vertical, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library -TO-218-3 Vertical RM 5.475mm SOT-93 -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-220-2_Horizontal_TabDown -TO-220-2, Horizontal, RM 5.08mm, see https://www.centralsemi.com/PDFS/CASE/TO-220-2PD.PDF, Alternate KiCad Library -TO-220-2 Horizontal RM 5.08mm -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL -TO-220-2_Horizontal_TabDown_KA -TO-220-2, Horizontal, RM 5.08mm, see https://www.centralsemi.com/PDFS/CASE/TO-220-2PD.PDF, Alternate KiCad Library -TO-220-2 Horizontal RM 5.08mm -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL -TO-220-2_Horizontal_TabUp -TO-220-2, Horizontal, RM 5.08mm, see https://www.centralsemi.com/PDFS/CASE/TO-220-2PD.PDF, Alternate KiCad Library -TO-220-2 Horizontal RM 5.08mm -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL -TO-220-2_Horizontal_TabUp_KA -TO-220-2, Horizontal, RM 5.08mm, see https://www.centralsemi.com/PDFS/CASE/TO-220-2PD.PDF, Alternate KiCad Library -TO-220-2 Horizontal RM 5.08mm -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL -TO-220-2_Vertical -TO-220-2, Vertical, RM 5.08mm, see https://www.centralsemi.com/PDFS/CASE/TO-220-2PD.PDF, Alternate KiCad Library -TO-220-2 Vertical RM 5.08mm -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL -TO-220-2_Vertical_KA -TO-220-2, Vertical, RM 5.08mm, see https://www.centralsemi.com/PDFS/CASE/TO-220-2PD.PDF, Alternate KiCad Library -TO-220-2 Vertical RM 5.08mm -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL -TO-220-3_Horizontal_TabDown -TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library -TO-220-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-220-3_Horizontal_TabDown_AAG -TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library -TO-220-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-220-3_Horizontal_TabDown_AKA -TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library -TO-220-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-220-3_Horizontal_TabDown_BCE -TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library -TO-220-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-220-3_Horizontal_TabDown_GCE -TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library -TO-220-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-220-3_Horizontal_TabDown_GDS -TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library -TO-220-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-220-3_Horizontal_TabDown_KAG -TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library -TO-220-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-220-3_Horizontal_TabDown_KAK -TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library -TO-220-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-220-3_Horizontal_TabDown_Series -TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library -TO-220-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-220-3_Horizontal_TabUp -TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library -TO-220-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-220-3_Horizontal_TabUp_AAG -TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library -TO-220-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-220-3_Horizontal_TabUp_AKA -TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library -TO-220-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-220-3_Horizontal_TabUp_BCE -TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library -TO-220-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-220-3_Horizontal_TabUp_GCE -TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library -TO-220-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-220-3_Horizontal_TabUp_GDS -TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library -TO-220-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-220-3_Horizontal_TabUp_KAG -TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library -TO-220-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-220-3_Horizontal_TabUp_KAK -TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library -TO-220-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-220-3_Horizontal_TabUp_Series -TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library -TO-220-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-220-3_Staggered_Vertical -TO-220-3, Vertical, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library -TO-220-3 Vertical RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-220-3_Staggered_Vertical_AAG -TO-220-3, Vertical, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library -TO-220-3 Vertical RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-220-3_Staggered_Vertical_BCE -TO-220-3, Vertical, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library -TO-220-3 Vertical RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-220-3_Staggered_Vertical_GCE -TO-220-3, Vertical, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library -TO-220-3 Vertical RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-220-3_Staggered_Vertical_GDS -TO-220-3, Vertical, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library -TO-220-3 Vertical RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-220-3_Staggered_Vertical_KAG -TO-220-3, Vertical, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library -TO-220-3 Vertical RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-220-3_Vertical -TO-220-3, Vertical, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library -TO-220-3 Vertical RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-220-3_Vertical_AAG -TO-220-3, Vertical, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library -TO-220-3 Vertical RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-220-3_Vertical_AKA -TO-220-3, Vertical, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library -TO-220-3 Vertical RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-220-3_Vertical_BCE -TO-220-3, Vertical, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library -TO-220-3 Vertical RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-220-3_Vertical_GCE -TO-220-3, Vertical, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library -TO-220-3 Vertical RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-220-3_Vertical_GDS -TO-220-3, Vertical, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library -TO-220-3 Vertical RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-220-3_Vertical_KAG -TO-220-3, Vertical, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library -TO-220-3 Vertical RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-220-3_Vertical_KAK -TO-220-3, Vertical, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library -TO-220-3 Vertical RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-220-3_Vertical_Series -TO-220-3, Vertical, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library -TO-220-3 Vertical RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-220-4_Horizontal_TabDown -TO-220-4, Horizontal, RM 2.54mm, Alternate KiCad Library -TO-220-4 Horizontal RM 2.54mm -0 -4 -4 -PCM_Package_TO_SOT_THT_AKL -TO-220-4_Horizontal_TabUp -TO-220-4, Horizontal, RM 2.54mm, Alternate KiCad Library -TO-220-4 Horizontal RM 2.54mm -0 -4 -4 -PCM_Package_TO_SOT_THT_AKL -TO-220-4_P5.08x2.54mm_StaggerEven_Lead3.8mm_Vertical -TO-220-4, Vertical, RM 2.54mm, staggered type-2, Alternate KiCad Library -TO-220-4 Vertical RM 2.54mm staggered type-2 -0 -4 -4 -PCM_Package_TO_SOT_THT_AKL -TO-220-4_P5.08x2.54mm_StaggerEven_Lead5.84mm_TabDown -TO-220-4, Horizontal, RM 2.54mm, staggered type-2, Alternate KiCad Library -TO-220-4 Horizontal RM 2.54mm staggered type-2 -0 -4 -4 -PCM_Package_TO_SOT_THT_AKL -TO-220-4_P5.08x2.54mm_StaggerOdd_Lead3.8mm_Vertical -TO-220-4, Vertical, RM 2.54mm, staggered type-1, Alternate KiCad Library -TO-220-4 Vertical RM 2.54mm staggered type-1 -0 -4 -4 -PCM_Package_TO_SOT_THT_AKL -TO-220-4_P5.08x2.54mm_StaggerOdd_Lead5.84mm_TabDown -TO-220-4, Horizontal, RM 2.54mm, staggered type-1, Alternate KiCad Library -TO-220-4 Horizontal RM 2.54mm staggered type-1 -0 -4 -4 -PCM_Package_TO_SOT_THT_AKL -TO-220-4_Vertical -TO-220-4, Vertical, RM 2.54mm, Alternate KiCad Library -TO-220-4 Vertical RM 2.54mm -0 -4 -4 -PCM_Package_TO_SOT_THT_AKL -TO-220-5_Horizontal_TabDown -TO-220-5, Horizontal, RM 1.7mm, Pentawatt, Multiwatt-5, see http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-to-220/to-220_5_05-08-1421_straight_lead.pdf, Alternate KiCad Library -TO-220-5 Horizontal RM 1.7mm Pentawatt Multiwatt-5 -0 -5 -5 -PCM_Package_TO_SOT_THT_AKL -TO-220-5_Horizontal_TabUp -TO-220-5, Horizontal, RM 1.7mm, Pentawatt, Multiwatt-5, see http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-to-220/to-220_5_05-08-1421_straight_lead.pdf, Alternate KiCad Library -TO-220-5 Horizontal RM 1.7mm Pentawatt Multiwatt-5 -0 -5 -5 -PCM_Package_TO_SOT_THT_AKL -TO-220-5_P3.4x3.7mm_StaggerEven_Lead3.8mm_Vertical -TO-220-5, Vertical, RM 1.7mm, Pentawatt, Multiwatt-5, staggered type-2, see http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-to-220/to-220_5_05-08-1421.pdf?domain=www.linear.com, https://www.diodes.com/assets/Package-Files/TO220-5.pdf, Alternate KiCad Library -TO-220-5 Vertical RM 1.7mm Pentawatt Multiwatt-5 staggered type-2 -0 -5 -5 -PCM_Package_TO_SOT_THT_AKL -TO-220-5_P3.4x3.7mm_StaggerOdd_Lead3.8mm_Vertical -TO-220-5, Vertical, RM 1.7mm, Pentawatt, Multiwatt-5, staggered type-1, see http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-to-220/to-220_5_05-08-1421.pdf?domain=www.linear.com, https://www.diodes.com/assets/Package-Files/TO220-5.pdf, Alternate KiCad Library -TO-220-5 Vertical RM 1.7mm Pentawatt Multiwatt-5 staggered type-1 -0 -5 -5 -PCM_Package_TO_SOT_THT_AKL -TO-220-5_P3.4x3.8mm_StaggerEven_Lead7.13mm_TabDown -TO-220-5, Horizontal, RM 1.7mm, Pentawatt, Multiwatt-5, staggered type-2, see http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-to-220/to-220_5_05-08-1421.pdf?domain=www.linear.com, https://www.diodes.com/assets/Package-Files/TO220-5.pdf, Alternate KiCad Library -TO-220-5 Horizontal RM 1.7mm Pentawatt Multiwatt-5 staggered type-2 -0 -5 -5 -PCM_Package_TO_SOT_THT_AKL -TO-220-5_P3.4x3.8mm_StaggerOdd_Lead7.13mm_TabDown -TO-220-5, Horizontal, RM 1.7mm, Pentawatt, Multiwatt-5, staggered type-1, see http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-to-220/to-220_5_05-08-1421.pdf?domain=www.linear.com, https://www.diodes.com/assets/Package-Files/TO220-5.pdf, Alternate KiCad Library -TO-220-5 Horizontal RM 1.7mm Pentawatt Multiwatt-5 staggered type-1 -0 -5 -5 -PCM_Package_TO_SOT_THT_AKL -TO-220-5_Vertical -TO-220-5, Vertical, RM 1.7mm, Pentawatt, Multiwatt-5, see http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-to-220/to-220_5_05-08-1421_straight_lead.pdf, Alternate KiCad Library -TO-220-5 Vertical RM 1.7mm Pentawatt Multiwatt-5 -0 -5 -5 -PCM_Package_TO_SOT_THT_AKL -TO-220-7_P2.54x3.7mm_StaggerEven_Lead3.8mm_Vertical -TO-220-7, Vertical, RM 1.27mm, Multiwatt-7, staggered type-2, Alternate KiCad Library -TO-220-7 Vertical RM 1.27mm Multiwatt-7 staggered type-2 -0 -7 -7 -PCM_Package_TO_SOT_THT_AKL -TO-220-7_P2.54x3.7mm_StaggerOdd_Lead3.8mm_Vertical -TO-220-7, Vertical, RM 1.27mm, Multiwatt-7, staggered type-1, Alternate KiCad Library -TO-220-7 Vertical RM 1.27mm Multiwatt-7 staggered type-1 -0 -7 -7 -PCM_Package_TO_SOT_THT_AKL -TO-220-7_P2.54x3.8mm_StaggerEven_Lead5.85mm_TabDown -TO-220-7, Horizontal, RM 1.27mm, Multiwatt-7, staggered type-2, Alternate KiCad Library -TO-220-7 Horizontal RM 1.27mm Multiwatt-7 staggered type-2 -0 -7 -7 -PCM_Package_TO_SOT_THT_AKL -TO-220-7_P2.54x3.8mm_StaggerOdd_Lead5.85mm_TabDown -TO-220-7, Horizontal, RM 1.27mm, Multiwatt-7, staggered type-1, Alternate KiCad Library -TO-220-7 Horizontal RM 1.27mm Multiwatt-7 staggered type-1 -0 -7 -7 -PCM_Package_TO_SOT_THT_AKL -TO-220-8_Vertical -TO-220-8 (Multiwatt8), Vertical, 2.54mm Pitch (http://www.st.com/resource/en/datasheet/tda7264.pdf), Alternate KiCad Library -TO-220-9 Vertical 2.54mm Pitch Multiwatt 8 -0 -8 -8 -PCM_Package_TO_SOT_THT_AKL -TO-220-9_P1.94x3.7mm_StaggerEven_Lead3.8mm_Vertical -TO-220-9, Vertical, RM 0.97mm, Multiwatt-9, staggered type-2, Alternate KiCad Library -TO-220-9 Vertical RM 0.97mm Multiwatt-9 staggered type-2 -0 -9 -9 -PCM_Package_TO_SOT_THT_AKL -TO-220-9_P1.94x3.7mm_StaggerOdd_Lead3.8mm_Vertical -TO-220-9, Vertical, RM 0.97mm, Multiwatt-9, staggered type-1, Alternate KiCad Library -TO-220-9 Vertical RM 0.97mm Multiwatt-9 staggered type-1 -0 -9 -9 -PCM_Package_TO_SOT_THT_AKL -TO-220-9_P1.94x3.8mm_StaggerEven_Lead5.85mm_TabDown -TO-220-9, Horizontal, RM 0.97mm, Multiwatt-9, staggered type-2, Alternate KiCad Library -TO-220-9 Horizontal RM 0.97mm Multiwatt-9 staggered type-2 -0 -9 -9 -PCM_Package_TO_SOT_THT_AKL -TO-220-9_P1.94x3.8mm_StaggerOdd_Lead5.85mm_TabDown -TO-220-9, Horizontal, RM 0.97mm, Multiwatt-9, staggered type-1, Alternate KiCad Library -TO-220-9 Horizontal RM 0.97mm Multiwatt-9 staggered type-1 -0 -9 -9 -PCM_Package_TO_SOT_THT_AKL -TO-220-11_P3.4x2.54mm_StaggerEven_Lead5.84mm_TabDown -TO-220-11, Horizontal, RM 1.7mm, staggered type-2, see http://www.st.com/resource/en/datasheet/tda7391lv.pdf, Alternate KiCad Library -TO-220-11 Horizontal RM 1.7mm staggered type-2 -0 -11 -11 -PCM_Package_TO_SOT_THT_AKL -TO-220-11_P3.4x2.54mm_StaggerOdd_Lead5.84mm_TabDown -TO-220-11, Horizontal, RM 1.7mm, staggered type-1, see http://www.st.com/resource/en/datasheet/tda7391lv.pdf, Alternate KiCad Library -TO-220-11 Horizontal RM 1.7mm staggered type-1 -0 -11 -11 -PCM_Package_TO_SOT_THT_AKL -TO-220-11_P3.4x5.08mm_StaggerEven_Lead4.58mm_Vertical -TO-220-11, Vertical, RM 1.7mm, staggered type-2, see http://www.st.com/resource/en/datasheet/tda7391lv.pdf, Alternate KiCad Library -TO-220-11 Vertical RM 1.7mm staggered type-2 -0 -11 -11 -PCM_Package_TO_SOT_THT_AKL -TO-220-11_P3.4x5.08mm_StaggerOdd_Lead4.85mm_Vertical -TO-220-11, Vertical, RM 1.7mm, staggered type-1, see http://www.st.com/resource/en/datasheet/tda7391lv.pdf, Alternate KiCad Library -TO-220-11 Vertical RM 1.7mm staggered type-1 -0 -11 -11 -PCM_Package_TO_SOT_THT_AKL -TO-220-11_P3.4x5.08mm_StaggerOdd_Lead8.45mm_TabDown -TO-220-11, Horizontal, RM 1.7mm, staggered type-1, see http://www.ti.com/lit/ds/symlink/lmd18200.pdf, Alternate KiCad Library -TO-220-11 Horizontal RM 1.7mm staggered type-1 -0 -11 -11 -PCM_Package_TO_SOT_THT_AKL -TO-220-15_P2.54x2.54mm_StaggerEven_Lead4.58mm_Vertical -TO-220-15, Vertical, RM 1.27mm, staggered type-2, see http://www.st.com/resource/en/datasheet/l298.pdf, Alternate KiCad Library -TO-220-15 Vertical RM 1.27mm staggered type-2 -0 -15 -15 -PCM_Package_TO_SOT_THT_AKL -TO-220-15_P2.54x2.54mm_StaggerEven_Lead5.84mm_TabDown -TO-220-15, Horizontal, RM 1.27mm, staggered type-2, see http://www.st.com/resource/en/datasheet/l298.pdf, Alternate KiCad Library -TO-220-15 Horizontal RM 1.27mm staggered type-2 -0 -15 -15 -PCM_Package_TO_SOT_THT_AKL -TO-220-15_P2.54x2.54mm_StaggerOdd_Lead4.58mm_Vertical -TO-220-15, Vertical, RM 1.27mm, staggered type-1, see http://www.st.com/resource/en/datasheet/l298.pdf, Alternate KiCad Library -TO-220-15 Vertical RM 1.27mm staggered type-1 -0 -15 -15 -PCM_Package_TO_SOT_THT_AKL -TO-220-15_P2.54x2.54mm_StaggerOdd_Lead5.84mm_TabDown -TO-220-15, Horizontal, RM 1.27mm, staggered type-1, see http://www.st.com/resource/en/datasheet/l298.pdf, Alternate KiCad Library -TO-220-15 Horizontal RM 1.27mm staggered type-1 -0 -15 -15 -PCM_Package_TO_SOT_THT_AKL -TO-220F-2_Horizontal_TabDown -TO-220F-2, Horizontal, RM 5.08mm, see http://www.onsemi.com/pub/Collateral/FFPF10F150S-D.pdf, Alternate KiCad Library -TO-220F-2 Horizontal RM 5.08mm -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL -TO-220F-2_Horizontal_TabDown_KA -TO-220F-2, Horizontal, RM 5.08mm, see http://www.onsemi.com/pub/Collateral/FFPF10F150S-D.pdf, Alternate KiCad Library -TO-220F-2 Horizontal RM 5.08mm -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL -TO-220F-2_Horizontal_TabUp -TO-220F-2, Horizontal, RM 5.08mm, see http://www.onsemi.com/pub/Collateral/FFPF10F150S-D.pdf, Alternate KiCad Library -TO-220F-2 Horizontal RM 5.08mm -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL -TO-220F-2_Horizontal_TabUp_KA -TO-220F-2, Horizontal, RM 5.08mm, see http://www.onsemi.com/pub/Collateral/FFPF10F150S-D.pdf, Alternate KiCad Library -TO-220F-2 Horizontal RM 5.08mm -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL -TO-220F-2_Vertical -TO-220F-2, Vertical, RM 5.08mm, see http://www.onsemi.com/pub/Collateral/FFPF10F150S-D.pdf, Alternate KiCad Library -TO-220F-2 Vertical RM 5.08mm -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL -TO-220F-2_Vertical_KA -TO-220F-2, Vertical, RM 5.08mm, see http://www.onsemi.com/pub/Collateral/FFPF10F150S-D.pdf, Alternate KiCad Library -TO-220F-2 Vertical RM 5.08mm -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL -TO-220F-3_Horizontal_TabDown -TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library -TO-220F-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-220F-3_Horizontal_TabDown_AAG -TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library -TO-220F-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-220F-3_Horizontal_TabDown_AKA -TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library -TO-220F-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-220F-3_Horizontal_TabDown_BCE -TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library -TO-220F-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-220F-3_Horizontal_TabDown_GCE -TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library -TO-220F-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-220F-3_Horizontal_TabDown_GDS -TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library -TO-220F-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-220F-3_Horizontal_TabDown_KAG -TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library -TO-220F-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-220F-3_Horizontal_TabDown_KAK -TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library -TO-220F-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-220F-3_Horizontal_TabDown_Series -TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library -TO-220F-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-220F-3_Horizontal_TabUp -TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library -TO-220F-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-220F-3_Horizontal_TabUp_AAG -TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library -TO-220F-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-220F-3_Horizontal_TabUp_AKA -TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library -TO-220F-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-220F-3_Horizontal_TabUp_BCE -TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library -TO-220F-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-220F-3_Horizontal_TabUp_GCE -TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library -TO-220F-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-220F-3_Horizontal_TabUp_GDS -TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library -TO-220F-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-220F-3_Horizontal_TabUp_KAG -TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library -TO-220F-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-220F-3_Horizontal_TabUp_KAK -TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library -TO-220F-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-220F-3_Horizontal_TabUp_Series -TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library -TO-220F-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-220F-3_Staggered_Vertical -TO-220F Staggered Vertical, Alternate KiCad Library -TO-220F vertical staggered -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-220F-3_Staggered_Vertical_AAG -TO-220F Staggered Vertical, Alternate KiCad Library -TO-220F vertical staggered -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-220F-3_Staggered_Vertical_BCE -TO-220F Staggered Vertical, Alternate KiCad Library -TO-220F vertical staggered -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-220F-3_Staggered_Vertical_GCE -TO-220F Staggered Vertical, Alternate KiCad Library -TO-220F vertical staggered -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-220F-3_Staggered_Vertical_GDS -TO-220F Staggered Vertical, Alternate KiCad Library -TO-220F vertical staggered -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-220F-3_Staggered_Vertical_KAG -TO-220F Staggered Vertical, Alternate KiCad Library -TO-220F vertical staggered -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-220F-3_Vertical -TO-220F-3, Vertical, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library -TO-220F-3 Vertical RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-220F-3_Vertical_AAG -TO-220F-3, Vertical, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library -TO-220F-3 Vertical RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-220F-3_Vertical_AKA -TO-220F-3, Vertical, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library -TO-220F-3 Vertical RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-220F-3_Vertical_BCE -TO-220F-3, Vertical, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library -TO-220F-3 Vertical RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-220F-3_Vertical_GCE -TO-220F-3, Vertical, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library -TO-220F-3 Vertical RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-220F-3_Vertical_GDS -TO-220F-3, Vertical, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library -TO-220F-3 Vertical RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-220F-3_Vertical_KAG -TO-220F-3, Vertical, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library -TO-220F-3 Vertical RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-220F-3_Vertical_KAK -TO-220F-3, Vertical, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library -TO-220F-3 Vertical RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-220F-3_Vertical_Series -TO-220F-3, Vertical, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library -TO-220F-3 Vertical RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-220F-4_Horizontal_TabDown -TO-220F-4, Horizontal, RM 2.54mm, see https://www.njr.com/semicon/PDF/package/TO-220F-4_E.pdf, Alternate KiCad Library -TO-220F-4 Horizontal RM 2.54mm -0 -4 -4 -PCM_Package_TO_SOT_THT_AKL -TO-220F-4_Horizontal_TabUp -TO-220F-4, Horizontal, RM 2.54mm, see https://www.njr.com/semicon/PDF/package/TO-220F-4_E.pdf, Alternate KiCad Library -TO-220F-4 Horizontal RM 2.54mm -0 -4 -4 -PCM_Package_TO_SOT_THT_AKL -TO-220F-4_P5.08x2.05mm_StaggerEven_Lead1.85mm_Vertical -TO-220F-4, Vertical, RM 2.54mm, staggered type-2, see https://www.njr.com/semicon/PDF/package/TO-220F-4_E.pdf, Alternate KiCad Library -TO-220F-4 Vertical RM 2.54mm staggered type-2 -0 -4 -4 -PCM_Package_TO_SOT_THT_AKL -TO-220F-4_P5.08x2.05mm_StaggerOdd_Lead1.85mm_Vertical -TO-220F-4, Vertical, RM 2.54mm, staggered type-1, see https://www.njr.com/semicon/PDF/package/TO-220F-4_E.pdf, Alternate KiCad Library -TO-220F-4 Vertical RM 2.54mm staggered type-1 -0 -4 -4 -PCM_Package_TO_SOT_THT_AKL -TO-220F-4_P5.08x3.7mm_StaggerEven_Lead3.5mm_Vertical -TO-220F-4, Vertical, RM 2.54mm, staggered type-2, see https://www.njr.com/semicon/PDF/package/TO-220F-4_E.pdf, Alternate KiCad Library -TO-220F-4 Vertical RM 2.54mm staggered type-2 -0 -4 -4 -PCM_Package_TO_SOT_THT_AKL -TO-220F-4_P5.08x3.7mm_StaggerOdd_Lead3.5mm_Vertical -TO-220F-4, Vertical, RM 2.54mm, staggered type-1, see https://www.njr.com/semicon/PDF/package/TO-220F-4_E.pdf, Alternate KiCad Library -TO-220F-4 Vertical RM 2.54mm staggered type-1 -0 -4 -4 -PCM_Package_TO_SOT_THT_AKL -TO-220F-4_Vertical -TO-220F-4, Vertical, RM 2.54mm, see https://www.njr.com/semicon/PDF/package/TO-220F-4_E.pdf, Alternate KiCad Library -TO-220F-4 Vertical RM 2.54mm -0 -4 -4 -PCM_Package_TO_SOT_THT_AKL -TO-220F-5_Horizontal_TabDown -TO-220F-5, Horizontal, RM 1.7mm, PentawattF-, MultiwattF-5, Alternate KiCad Library -TO-220F-5 Horizontal RM 1.7mm PentawattF- MultiwattF-5 -0 -5 -5 -PCM_Package_TO_SOT_THT_AKL -TO-220F-5_Horizontal_TabUp -TO-220F-5, Horizontal, RM 1.7mm, PentawattF-, MultiwattF-5, Alternate KiCad Library -TO-220F-5 Horizontal RM 1.7mm PentawattF- MultiwattF-5 -0 -5 -5 -PCM_Package_TO_SOT_THT_AKL -TO-220F-5_P3.4x2.06mm_StaggerEven_Lead1.86mm_Vertical -TO-220F-5, Vertical, RM 1.7mm, PentawattF-, MultiwattF-5, staggered type-2, Alternate KiCad Library -TO-220F-5 Vertical RM 1.7mm PentawattF- MultiwattF-5 staggered type-2 -0 -5 -5 -PCM_Package_TO_SOT_THT_AKL -TO-220F-5_P3.4x2.06mm_StaggerOdd_Lead1.86mm_Vertical -TO-220F-5, Vertical, RM 1.7mm, PentawattF-, MultiwattF-5, staggered type-1, Alternate KiCad Library -TO-220F-5 Vertical RM 1.7mm PentawattF- MultiwattF-5 staggered type-1 -0 -5 -5 -PCM_Package_TO_SOT_THT_AKL -TO-220F-5_P3.4x3.7mm_StaggerEven_Lead3.5mm_Vertical -TO-220F-5, Vertical, RM 1.7mm, PentawattF-, MultiwattF-5, staggered type-2, Alternate KiCad Library -TO-220F-5 Vertical RM 1.7mm PentawattF- MultiwattF-5 staggered type-2 -0 -5 -5 -PCM_Package_TO_SOT_THT_AKL -TO-220F-5_P3.4x3.7mm_StaggerOdd_Lead3.5mm_Vertical -TO-220F-5, Vertical, RM 1.7mm, PentawattF-, MultiwattF-5, staggered type-1, Alternate KiCad Library -TO-220F-5 Vertical RM 1.7mm PentawattF- MultiwattF-5 staggered type-1 -0 -5 -5 -PCM_Package_TO_SOT_THT_AKL -TO-220F-5_Vertical -TO-220F-5, Vertical, RM 1.7mm, PentawattF-, MultiwattF-5, Alternate KiCad Library -TO-220F-5 Vertical RM 1.7mm PentawattF- MultiwattF-5 -0 -5 -5 -PCM_Package_TO_SOT_THT_AKL -TO-220F-7_P2.54x3.7mm_StaggerEven_Lead3.5mm_Vertical -TO-220F-7, Vertical, RM 1.27mm, staggered type-2, Alternate KiCad Library -TO-220F-7 Vertical RM 1.27mm staggered type-2 -0 -7 -7 -PCM_Package_TO_SOT_THT_AKL -TO-220F-7_P2.54x3.7mm_StaggerOdd_Lead3.5mm_Vertical -TO-220F-7, Vertical, RM 1.27mm, staggered type-1, Alternate KiCad Library -TO-220F-7 Vertical RM 1.27mm staggered type-1 -0 -7 -7 -PCM_Package_TO_SOT_THT_AKL -TO-220F-9_P1.8x3.7mm_StaggerEven_Lead3.5mm_Vertical -TO-220F-9, Vertical, RM 0.9mm, staggered type-2, Alternate KiCad Library -TO-220F-9 Vertical RM 0.9mm staggered type-2 -0 -9 -9 -PCM_Package_TO_SOT_THT_AKL -TO-220F-9_P1.8x3.7mm_StaggerOdd_Lead3.5mm_Vertical -TO-220F-9, Vertical, RM 0.9mm, staggered type-1, Alternate KiCad Library -TO-220F-9 Vertical RM 0.9mm staggered type-1 -0 -9 -9 -PCM_Package_TO_SOT_THT_AKL -TO-220F-11_P3.4x5.08mm_StaggerEven_Lead5.08mm_Vertical -TO-220F-11, Vertical, RM 1.7mm, MultiwattF-11, staggered type-2, see http://www.ti.com/lit/ds/symlink/lm3886.pdf, Alternate KiCad Library -TO-220F-11 Vertical RM 1.7mm MultiwattF-11 staggered type-2 -0 -11 -11 -PCM_Package_TO_SOT_THT_AKL -TO-220F-11_P3.4x5.08mm_StaggerOdd_Lead5.08mm_Vertical -TO-220F-11, Vertical, RM 1.7mm, MultiwattF-11, staggered type-1, see http://www.ti.com/lit/ds/symlink/lm3886.pdf, Alternate KiCad Library -TO-220F-11 Vertical RM 1.7mm MultiwattF-11 staggered type-1 -0 -11 -11 -PCM_Package_TO_SOT_THT_AKL -TO-220F-15_P2.54x5.08mm_StaggerEven_Lead5.08mm_Vertical -TO-220F-15, Vertical, RM 1.27mm, MultiwattF-15, staggered type-2, Alternate KiCad Library -TO-220F-15 Vertical RM 1.27mm MultiwattF-15 staggered type-2 -0 -15 -15 -PCM_Package_TO_SOT_THT_AKL -TO-220F-15_P2.54x5.08mm_StaggerOdd_Lead5.08mm_Vertical -TO-220F-15, Vertical, RM 1.27mm, MultiwattF-15, staggered type-1, Alternate KiCad Library -TO-220F-15 Vertical RM 1.27mm MultiwattF-15 staggered type-1 -0 -15 -15 -PCM_Package_TO_SOT_THT_AKL -TO-247-2_Horizontal_TabDown -TO-247-2, Horizontal, RM 10.9mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library -TO-247-2 Horizontal RM 10.9mm -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL -TO-247-2_Horizontal_TabDown_KA -TO-247-2, Horizontal, RM 10.9mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library -TO-247-2 Horizontal RM 10.9mm -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL -TO-247-2_Horizontal_TabUp -TO-247-2, Horizontal, RM 10.9mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library -TO-247-2 Horizontal RM 10.9mm -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL -TO-247-2_Horizontal_TabUp_KA -TO-247-2, Horizontal, RM 10.9mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library -TO-247-2 Horizontal RM 10.9mm -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL -TO-247-2_Vertical -TO-247-2, Vertical, RM 10.9mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library -TO-247-2 Vertical RM 10.9mm -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL -TO-247-2_Vertical_KA -TO-247-2, Vertical, RM 10.9mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library -TO-247-2 Vertical RM 10.9mm -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL -TO-247-3_Horizontal_TabDown -TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library -TO-247-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-247-3_Horizontal_TabDown_AAG -TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library -TO-247-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-247-3_Horizontal_TabDown_AKA -TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library -TO-247-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-247-3_Horizontal_TabDown_BCE -TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library -TO-247-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-247-3_Horizontal_TabDown_GCE -TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library -TO-247-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-247-3_Horizontal_TabDown_GDS -TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library -TO-247-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-247-3_Horizontal_TabDown_KAG -TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library -TO-247-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-247-3_Horizontal_TabDown_KAK -TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library -TO-247-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-247-3_Horizontal_TabDown_xKA -TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library -TO-247-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-247-3_Horizontal_TabUp -TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library -TO-247-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-247-3_Horizontal_TabUp_AAG -TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library -TO-247-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-247-3_Horizontal_TabUp_AKA -TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library -TO-247-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-247-3_Horizontal_TabUp_BCE -TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library -TO-247-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-247-3_Horizontal_TabUp_GCE -TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library -TO-247-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-247-3_Horizontal_TabUp_GDS -TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library -TO-247-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-247-3_Horizontal_TabUp_KAG -TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library -TO-247-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-247-3_Horizontal_TabUp_KAK -TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library -TO-247-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-247-3_Horizontal_TabUp_xKA -TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library -TO-247-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-247-3_Vertical -TO-247-3, Vertical, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library -TO-247-3 Vertical RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-247-3_Vertical_AAG -TO-247-3, Vertical, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library -TO-247-3 Vertical RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-247-3_Vertical_AKA -TO-247-3, Vertical, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library -TO-247-3 Vertical RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-247-3_Vertical_BCE -TO-247-3, Vertical, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library -TO-247-3 Vertical RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-247-3_Vertical_GCE -TO-247-3, Vertical, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library -TO-247-3 Vertical RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-247-3_Vertical_GDS -TO-247-3, Vertical, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library -TO-247-3 Vertical RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-247-3_Vertical_KAG -TO-247-3, Vertical, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library -TO-247-3 Vertical RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-247-3_Vertical_KAK -TO-247-3, Vertical, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library -TO-247-3 Vertical RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-247-3_Vertical_xKA -TO-247-3, Vertical, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library -TO-247-3 Vertical RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-247-4_Horizontal_TabDown -TO-247-4, Horizontal, RM 2.54mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library -TO-247-4 Horizontal RM 2.54mm -0 -4 -4 -PCM_Package_TO_SOT_THT_AKL -TO-247-4_Horizontal_TabUp -TO-247-4, Horizontal, RM 2.54mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library -TO-247-4 Horizontal RM 2.54mm -0 -4 -4 -PCM_Package_TO_SOT_THT_AKL -TO-247-4_Vertical -TO-247-4, Vertical, RM 2.54mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library -TO-247-4 Vertical RM 2.54mm -0 -4 -4 -PCM_Package_TO_SOT_THT_AKL -TO-247-5_Horizontal_TabDown -TO-247-5, Horizontal, RM 2.54mm, see http://ww1.microchip.com/downloads/en/DeviceDoc/20005685A.pdf, Alternate KiCad Library -TO-247-5 Horizontal RM 2.54mm -0 -5 -5 -PCM_Package_TO_SOT_THT_AKL -TO-247-5_Horizontal_TabUp -TO-247-5, Horizontal, RM 2.54mm, see http://ww1.microchip.com/downloads/en/DeviceDoc/20005685A.pdf, Alternate KiCad Library -TO-247-5 Horizontal RM 2.54mm -0 -5 -5 -PCM_Package_TO_SOT_THT_AKL -TO-247-5_Vertical -TO-247-5, Vertical, RM 2.54mm, see http://ww1.microchip.com/downloads/en/DeviceDoc/20005685A.pdf, Alternate KiCad Library -TO-247-5 Vertical RM 2.54mm -0 -5 -5 -PCM_Package_TO_SOT_THT_AKL -TO-251-2-1EP_Horizontal_TabDown -TO-251-2, Horizontal, RM 4.58mm, IPAK, see https://www.diodes.com/assets/Package-Files/TO251.pdf, Alternate KiCad Library -TO-251-2 Horizontal RM 4.58mm IPAK -0 -12 -3 -PCM_Package_TO_SOT_THT_AKL -TO-251-2_Vertical -TO-251-2, Vertical, RM 4.58mm, IPAK, see https://www.diodes.com/assets/Package-Files/TO251.pdf, Alternate KiCad Library -TO-251-2 Vertical RM 4.58mm IPAK -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL -TO-251-3-1EP_Horizontal_TabDown -TO-251-3, Horizontal, RM 2.29mm, IPAK, see https://www.diodes.com/assets/Package-Files/TO251.pdf, Alternate KiCad Library -TO-251-3 Horizontal RM 2.29mm IPAK -0 -13 -4 -PCM_Package_TO_SOT_THT_AKL -TO-251-3_Vertical -TO-251-3, Vertical, RM 2.29mm, IPAK, see https://www.diodes.com/assets/Package-Files/TO251.pdf, Alternate KiCad Library -TO-251-3 Vertical RM 2.29mm IPAK -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-251-3_Vertical_BCE -TO-251-3, Vertical, RM 2.29mm, IPAK, see https://www.diodes.com/assets/Package-Files/TO251.pdf, Alternate KiCad Library -TO-251-3 Vertical RM 2.29mm IPAK -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-251-3_Vertical_GCE -TO-251-3, Vertical, RM 2.29mm, IPAK, see https://www.diodes.com/assets/Package-Files/TO251.pdf, Alternate KiCad Library -TO-251-3 Vertical RM 2.29mm IPAK -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-251-3_Vertical_GDS -TO-251-3, Vertical, RM 2.29mm, IPAK, see https://www.diodes.com/assets/Package-Files/TO251.pdf, Alternate KiCad Library -TO-251-3 Vertical RM 2.29mm IPAK -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-262-2-1EP_Horizontal_TabDown -TO-262-2, Horizontal, RM 2.54mm, IIPAK, I2PAK, see http://www.onsemi.com/pub/Collateral/EN8586-D.PDF, Alternate KiCad Library -TO-262-2 Horizontal RM 2.54mm IIPAK I2PAK -0 -23 -3 -PCM_Package_TO_SOT_THT_AKL -TO-262-2-1EP_Horizontal_TabPin1 -TO-262-2, Horizontal, RM 2.54mm, IIPAK, I2PAK, see http://www.onsemi.com/pub/Collateral/EN8586-D.PDF, Alternate KiCad Library -TO-262-2 Horizontal RM 2.54mm IIPAK I2PAK -0 -23 -2 -PCM_Package_TO_SOT_THT_AKL -TO-262-2_Vertical -TO-262-2, Vertical, RM 2.54mm, IIPAK, I2PAK, see http://www.onsemi.com/pub/Collateral/EN8586-D.PDF, Alternate KiCad Library -TO-262-2 Vertical RM 2.54mm IIPAK I2PAK -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL -TO-262-2_Vertical_KA -TO-262-2, Vertical, RM 2.54mm, IIPAK, I2PAK, see http://www.onsemi.com/pub/Collateral/EN8586-D.PDF, Alternate KiCad Library -TO-262-2 Vertical RM 2.54mm IIPAK I2PAK -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL -TO-262-3-1EP_Horizontal_TabDown -TO-262-3, Horizontal, RM 2.54mm, IIPAK, I2PAK, see http://www.onsemi.com/pub/Collateral/EN8586-D.PDF, Alternate KiCad Library -TO-262-3 Horizontal RM 2.54mm IIPAK I2PAK -0 -24 -4 -PCM_Package_TO_SOT_THT_AKL -TO-262-3_Vertical -TO-262-3, Vertical, RM 2.54mm, IIPAK, I2PAK, see http://www.onsemi.com/pub/Collateral/EN8586-D.PDF, Alternate KiCad Library -TO-262-3 Vertical RM 2.54mm IIPAK I2PAK -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-262-3_Vertical_BCE -TO-262-3, Vertical, RM 2.54mm, IIPAK, I2PAK, see http://www.onsemi.com/pub/Collateral/EN8586-D.PDF, Alternate KiCad Library -TO-262-3 Vertical RM 2.54mm IIPAK I2PAK -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-262-3_Vertical_GCE -TO-262-3, Vertical, RM 2.54mm, IIPAK, I2PAK, see http://www.onsemi.com/pub/Collateral/EN8586-D.PDF, Alternate KiCad Library -TO-262-3 Vertical RM 2.54mm IIPAK I2PAK -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-262-3_Vertical_GDS -TO-262-3, Vertical, RM 2.54mm, IIPAK, I2PAK, see http://www.onsemi.com/pub/Collateral/EN8586-D.PDF, Alternate KiCad Library -TO-262-3 Vertical RM 2.54mm IIPAK I2PAK -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-262-5-1EP_Horizontal_TabDown -TO-262-5, Horizontal, RM 1.7mm, IIPAK, I2PAK, see http://pdf.datasheetcatalog.com/datasheet/irf/iris4011.pdf, Alternate KiCad Library -TO-262-5 Horizontal RM 1.7mm IIPAK I2PAK -0 -26 -6 -PCM_Package_TO_SOT_THT_AKL -TO-262-5_Vertical -TO-262-5, Vertical, RM 1.7mm, IIPAK, I2PAK, see http://pdf.datasheetcatalog.com/datasheet/irf/iris4011.pdf, Alternate KiCad Library -TO-262-5 Vertical RM 1.7mm IIPAK I2PAK -0 -5 -5 -PCM_Package_TO_SOT_THT_AKL -TO-264-2_Horizontal_TabDown -TO-264-2, Horizontal, RM 10.9mm, see https://www.fairchildsemi.com/package-drawings/TO/TO264A03.pdf, Alternate KiCad Library -TO-264-2 Horizontal RM 10.9mm -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL -TO-264-2_Horizontal_TabUp -TO-264-2, Horizontal, RM 10.9mm, see https://www.fairchildsemi.com/package-drawings/TO/TO264A03.pdf, Alternate KiCad Library -TO-264-2 Horizontal RM 10.9mm -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL -TO-264-2_Vertical -TO-264-2, Vertical, RM 10.9mm, see https://www.fairchildsemi.com/package-drawings/TO/TO264A03.pdf, Alternate KiCad Library -TO-264-2 Vertical RM 10.9mm -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL -TO-264-3_Horizontal_TabDown -TO-264-3, Horizontal, RM 5.45mm, see https://www.fairchildsemi.com/package-drawings/TO/TO264A03.pdf, Alternate KiCad Library -TO-264-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-264-3_Horizontal_TabDown_BCE -TO-264-3, Horizontal, RM 5.45mm, see https://www.fairchildsemi.com/package-drawings/TO/TO264A03.pdf, Alternate KiCad Library -TO-264-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-264-3_Horizontal_TabDown_GCE -TO-264-3, Horizontal, RM 5.45mm, see https://www.fairchildsemi.com/package-drawings/TO/TO264A03.pdf, Alternate KiCad Library -TO-264-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-264-3_Horizontal_TabDown_GDS -TO-264-3, Horizontal, RM 5.45mm, see https://www.fairchildsemi.com/package-drawings/TO/TO264A03.pdf, Alternate KiCad Library -TO-264-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-264-3_Horizontal_TabUp -TO-264-3, Horizontal, RM 5.45mm, see https://www.fairchildsemi.com/package-drawings/TO/TO264A03.pdf, Alternate KiCad Library -TO-264-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-264-3_Horizontal_TabUp_BCE -TO-264-3, Horizontal, RM 5.45mm, see https://www.fairchildsemi.com/package-drawings/TO/TO264A03.pdf, Alternate KiCad Library -TO-264-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-264-3_Horizontal_TabUp_GCE -TO-264-3, Horizontal, RM 5.45mm, see https://www.fairchildsemi.com/package-drawings/TO/TO264A03.pdf, Alternate KiCad Library -TO-264-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-264-3_Horizontal_TabUp_GDS -TO-264-3, Horizontal, RM 5.45mm, see https://www.fairchildsemi.com/package-drawings/TO/TO264A03.pdf, Alternate KiCad Library -TO-264-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-264-3_Vertical -TO-264-3, Vertical, RM 5.45mm, see https://www.fairchildsemi.com/package-drawings/TO/TO264A03.pdf, Alternate KiCad Library -TO-264-3 Vertical RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-264-3_Vertical_BCE -TO-264-3, Vertical, RM 5.45mm, see https://www.fairchildsemi.com/package-drawings/TO/TO264A03.pdf, Alternate KiCad Library -TO-264-3 Vertical RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-264-3_Vertical_GCE -TO-264-3, Vertical, RM 5.45mm, see https://www.fairchildsemi.com/package-drawings/TO/TO264A03.pdf, Alternate KiCad Library -TO-264-3 Vertical RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-264-3_Vertical_GDS -TO-264-3, Vertical, RM 5.45mm, see https://www.fairchildsemi.com/package-drawings/TO/TO264A03.pdf, Alternate KiCad Library -TO-264-3 Vertical RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL -TO-264-5_Horizontal_TabDown -TO-264-5, Horizontal, RM 3.81mm, see https://www.onsemi.com/pub/Collateral/NJL3281D-D.PDF, Alternate KiCad Library -TO-264-5 Horizontal RM 3.81mm -0 -5 -5 -PCM_Package_TO_SOT_THT_AKL -TO-264-5_Horizontal_TabUp -TO-264-5, Horizontal, RM 3.81mm, see https://www.onsemi.com/pub/Collateral/NJL3281D-D.PDF, Alternate KiCad Library -TO-264-5 Horizontal RM 3.81mm -0 -5 -5 -PCM_Package_TO_SOT_THT_AKL -TO-264-5_Vertical -TO-264-5, Vertical, RM 3.81mm, see https://www.onsemi.com/pub/Collateral/NJL3281D-D.PDF, Alternate KiCad Library -TO-264-5 Vertical RM 3.81mm -0 -5 -5 -PCM_Package_TO_SOT_THT_AKL_Double -TO-3P-3_Horizontal_TabDown_BCE -TO-3P-3, Horizontal, RM 5.45mm, , see https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.TO-3P(N).html, Alternate KiCad Library -TO-3P-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-3P-3_Horizontal_TabDown_GCE -TO-3P-3, Horizontal, RM 5.45mm, , see https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.TO-3P(N).html, Alternate KiCad Library -TO-3P-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-3P-3_Horizontal_TabDown_GDS -TO-3P-3, Horizontal, RM 5.45mm, , see https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.TO-3P(N).html, Alternate KiCad Library -TO-3P-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-3P-3_Horizontal_TabDown_KAG -TO-3P-3, Horizontal, RM 5.45mm, , see https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.TO-3P(N).html, Alternate KiCad Library -TO-3P-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-3P-3_Horizontal_TabUp_BCE -TO-3P-3, Horizontal, RM 5.45mm, , see https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.TO-3P(N).html, Alternate KiCad Library -TO-3P-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-3P-3_Horizontal_TabUp_GCE -TO-3P-3, Horizontal, RM 5.45mm, , see https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.TO-3P(N).html, Alternate KiCad Library -TO-3P-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-3P-3_Horizontal_TabUp_GDS -TO-3P-3, Horizontal, RM 5.45mm, , see https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.TO-3P(N).html, Alternate KiCad Library -TO-3P-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-3P-3_Horizontal_TabUp_KAG -TO-3P-3, Horizontal, RM 5.45mm, , see https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.TO-3P(N).html, Alternate KiCad Library -TO-3P-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-3P-3_Vertical_BCE -TO-3P-3, Vertical, RM 5.45mm, , see https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.TO-3P(N).html, Alternate KiCad Library -TO-3P-3 Vertical RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-3P-3_Vertical_GCE -TO-3P-3, Vertical, RM 5.45mm, , see https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.TO-3P(N).html, Alternate KiCad Library -TO-3P-3 Vertical RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-3P-3_Vertical_GDS -TO-3P-3, Vertical, RM 5.45mm, , see https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.TO-3P(N).html, Alternate KiCad Library -TO-3P-3 Vertical RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-3P-3_Vertical_KAG -TO-3P-3, Vertical, RM 5.45mm, , see https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.TO-3P(N).html, Alternate KiCad Library -TO-3P-3 Vertical RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-3PB-3_Horizontal_TabDown_BCE -TO-3PB-3, Horizontal, RM 5.45mm, , see http://www.onsemi.com/pub/Collateral/340AC.PDF, Alternate KiCad Library -TO-3PB-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-3PB-3_Horizontal_TabDown_GDS -TO-3PB-3, Horizontal, RM 5.45mm, , see http://www.onsemi.com/pub/Collateral/340AC.PDF, Alternate KiCad Library -TO-3PB-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-3PB-3_Horizontal_TabUp_BCE -TO-3PB-3, Horizontal, RM 5.45mm, , see http://www.onsemi.com/pub/Collateral/340AC.PDF, Alternate KiCad Library -TO-3PB-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-3PB-3_Horizontal_TabUp_GDS -TO-3PB-3, Horizontal, RM 5.45mm, , see http://www.onsemi.com/pub/Collateral/340AC.PDF, Alternate KiCad Library -TO-3PB-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-3PB-3_Vertical_BCE -TO-3PB-3, Vertical, RM 5.45mm, , see http://www.onsemi.com/pub/Collateral/340AC.PDF, Alternate KiCad Library -TO-3PB-3 Vertical RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-3PB-3_Vertical_GDS -TO-3PB-3, Vertical, RM 5.45mm, , see http://www.onsemi.com/pub/Collateral/340AC.PDF, Alternate KiCad Library -TO-3PB-3 Vertical RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-3PF-3_Horizontal_TabDown_BCE -TO-3PF-3, Horizontal, RM 5.45mm, , see https://pl.mouser.com/datasheet/2/308/FJAF4310-D-1809538.pdf, Alternate KiCad Library -TO-3PF-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-3PF-3_Horizontal_TabDown_GCE -TO-3PF-3, Horizontal, RM 5.45mm, , see https://pl.mouser.com/datasheet/2/308/FJAF4310-D-1809538.pdf, Alternate KiCad Library -TO-3PF-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-3PF-3_Horizontal_TabDown_GDS -TO-3PF-3, Horizontal, RM 5.45mm, , see https://pl.mouser.com/datasheet/2/308/FJAF4310-D-1809538.pdf, Alternate KiCad Library -TO-3PF-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-3PF-3_Horizontal_TabUp_BCE -TO-3PF-3, Horizontal, RM 5.45mm, , see https://pl.mouser.com/datasheet/2/308/FJAF4310-D-1809538.pdf, Alternate KiCad Library -TO-3PF-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-3PF-3_Horizontal_TabUp_GCE -TO-3PF-3, Horizontal, RM 5.45mm, , see https://pl.mouser.com/datasheet/2/308/FJAF4310-D-1809538.pdf, Alternate KiCad Library -TO-3PF-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-3PF-3_Horizontal_TabUp_GDS -TO-3PF-3, Horizontal, RM 5.45mm, , see https://pl.mouser.com/datasheet/2/308/FJAF4310-D-1809538.pdf, Alternate KiCad Library -TO-3PF-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-3PF-3_Vertical_BCE -TO-3PF-3, Vertical, RM 5.45mm, , see https://pl.mouser.com/datasheet/2/308/FJAF4310-D-1809538.pdf, Alternate KiCad Library -TO-3PF-3 Vertical RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-3PF-3_Vertical_GCE -TO-3PF-3, Vertical, RM 5.45mm, , see https://pl.mouser.com/datasheet/2/308/FJAF4310-D-1809538.pdf, Alternate KiCad Library -TO-3PF-3 Vertical RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-3PF-3_Vertical_GDS -TO-3PF-3, Vertical, RM 5.45mm, , see https://pl.mouser.com/datasheet/2/308/FJAF4310-D-1809538.pdf, Alternate KiCad Library -TO-3PF-3 Vertical RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-3_BEC -Transistor TO-3, Alternate KiCad Library -TR TO-3 TO3 TO-204 -0 -4 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-3_GSD -Transistor TO-3, Alternate KiCad Library -TR TO-3 TO3 TO-204 -0 -4 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-5-2_AK -TO-5-2, Alternate KiCad Library -TO-5-2 -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL_Double -TO-5-2_KA -TO-5-2, Alternate KiCad Library -TO-5-2 -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL_Double -TO-5-2_Window_AK -TO-5-2_Window, Window, Alternate KiCad Library -TO-5-2_Window Window -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL_Double -TO-5-2_Window_KA -TO-5-2_Window, Window, Alternate KiCad Library -TO-5-2_Window Window -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL_Double -TO-5-3_EBC -TO-5-3, Alternate KiCad Library -TO-5-3 -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-5-3_Window_EBC -TO-5-3_Window, Window, Alternate KiCad Library -TO-5-3_Window Window -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-5-4_EBC -TO-5-4, Alternate KiCad Library -TO-5-4 -0 -4 -4 -PCM_Package_TO_SOT_THT_AKL_Double -TO-5-6_CBE-EBC -TO-5-6, Alternate KiCad Library -TO-5-6 -0 -6 -6 -PCM_Package_TO_SOT_THT_AKL_Double -TO-18-2_AK -TO-18-2, Alternate KiCad Library -TO-18-2 -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL_Double -TO-18-2_KA -TO-18-2, Alternate KiCad Library -TO-18-2 -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL_Double -TO-18-2_Lens_AK -TO-18-2_Lens, Lens, Alternate KiCad Library -TO-18-2_Lens Lens -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL_Double -TO-18-2_Lens_KA -TO-18-2_Lens, Lens, Alternate KiCad Library -TO-18-2_Lens Lens -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL_Double -TO-18-2_Window_AK -TO-18-2_Window, Window, Alternate KiCad Library -TO-18-2_Window Window -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL_Double -TO-18-2_Window_KA -TO-18-2_Window, Window, Alternate KiCad Library -TO-18-2_Window Window -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL_Double -TO-18-2_Zener -TO-18-2, Alternate KiCad Library -TO-18-2 -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL_Double -TO-18-3_EBC -TO-18-3, Alternate KiCad Library -TO-18-3 -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-18-3_SDG -TO-18-3, Alternate KiCad Library -TO-18-3 -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-18-3_SGD -TO-18-3, Alternate KiCad Library -TO-18-3 -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-18-4_EBC -TO-18-4, Alternate KiCad Library -TO-18-4 -0 -4 -4 -PCM_Package_TO_SOT_THT_AKL_Double -TO-39-3_EBC -TO-39-3, Alternate KiCad Library -TO-39-3 -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-39-3_SGD -TO-39-3, Alternate KiCad Library -TO-39-3 -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-39-3_Window_EBC -TO-39-3_Window, Window, Alternate KiCad Library -TO-39-3_Window Window -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-66_BEC -TO-66 Metal powet transistor package, https://www.centralsemi.com/PDFS/CASE/TO-66PD.PDF, Alternate KiCAD Library -TO-66 -0 -4 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-72-4_EBC -TO-72-4, Alternate KiCad Library -TO-72-4 -0 -4 -4 -PCM_Package_TO_SOT_THT_AKL_Double -TO-72-4_SDG -TO-72-4, Alternate KiCad Library -TO-72-4 -0 -4 -4 -PCM_Package_TO_SOT_THT_AKL_Double -TO-78-6_CBE-EBC -TO-78-6, Alternate KiCad Library -TO-78-6 -0 -6 -6 -PCM_Package_TO_SOT_THT_AKL_Double -TO-92-2_AK -TO-92 2-pin leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 diode SOD70 -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL_Double -TO-92-2_Horizontal1_KA -2-pin TO-92 horizontal, leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 temperature sensor diode -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL_Double -TO-92-2_Horizontal2_KA -2-pin TO-92 horizontal, leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 temperature sensor diode -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL_Double -TO-92-2_KA -TO-92 2-pin leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 diode SOD70 -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL_Double -TO-92-2_Wide_AK -TO-92 2-pin leads in-line, wide, drill 0.75mm, Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 diode SOD70 -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL_Double -TO-92-2_Wide_KA -TO-92 2-pin leads in-line, wide, drill 0.75mm, Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 diode SOD70 -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL_Double -TO-92L_ECB -TO-92L leads in-line (large body variant of TO-92), also known as TO-226, wide, drill 0.75mm (see https://www.diodes.com/assets/Package-Files/TO92L.pdf and http://www.ti.com/lit/an/snoa059/snoa059.pdf), Alternate KiCad Library -TO-92L Molded Narrow transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-92L_Inline_ECB -TO-92L leads in-line (large body variant of TO-92), also known as TO-226, wide, drill 0.75mm (see https://www.diodes.com/assets/Package-Files/TO92L.pdf and http://www.ti.com/lit/an/snoa059/snoa059.pdf), Alternate KiCad Library -TO-92L Inline Wide transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-92L_Inline_Wide_ECB -TO-92L leads in-line (large body variant of TO-92), also known as TO-226, wide, drill 0.75mm (see https://www.diodes.com/assets/Package-Files/TO92L.pdf and http://www.ti.com/lit/an/snoa059/snoa059.pdf), Alternate KiCad Library -TO-92L Inline Wide transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-92L_Wide_ECB -TO-92L leads in-line (large body variant of TO-92), also known as TO-226, wide, drill 0.75mm (see https://www.diodes.com/assets/Package-Files/TO92L.pdf and http://www.ti.com/lit/an/snoa059/snoa059.pdf), Alternate KiCad Library -TO-92L Molded Wide transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-92S_ECB -TO-92S package, drill 0.75mm (https://www.diodes.com/assets/Package-Files/TO92S%20(Type%20B).pdf), Alternate KiCad Library -to-92S transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-92S_Wide_ECB -TO-92S_Wide package, drill 0.75mm (https://www.diodes.com/assets/Package-Files/TO92S%20(Type%20B).pdf), Alternate KiCad Library -TO-92S_Wide transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-92_CBE -TO-92 leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-92_CEB -TO-92 leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-92_DGS -TO-92 leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-92_DSG -TO-92 leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-92_EBC -TO-92 leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-92_ECB -TO-92 leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-92_GDS -TO-92 leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-92_GSD -TO-92 leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-92_Inline_CBE -TO-92 leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-92_Inline_CEB -TO-92 leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-92_Inline_DGS -TO-92 leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-92_Inline_DSG -TO-92 leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-92_Inline_EBC -TO-92 leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-92_Inline_ECB -TO-92 leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-92_Inline_GDS -TO-92 leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-92_Inline_GSD -TO-92 leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-92_Inline_SDG -TO-92 leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-92_Inline_SGD -TO-92 leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-92_Inline_Wide_CBE -TO-92 leads in-line, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-92_Inline_Wide_CEB -TO-92 leads in-line, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-92_Inline_Wide_DGS -TO-92 leads in-line, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-92_Inline_Wide_DSG -TO-92 leads in-line, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-92_Inline_Wide_EBC -TO-92 leads in-line, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-92_Inline_Wide_ECB -TO-92 leads in-line, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-92_Inline_Wide_GDS -TO-92 leads in-line, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-92_Inline_Wide_GSD -TO-92 leads in-line, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-92_Inline_Wide_SDG -TO-92 leads in-line, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-92_Inline_Wide_SGD -TO-92 leads in-line, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-92_SDG -TO-92 leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-92_SGD -TO-92 leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-92_Wide_CBE -TO-92 leads molded, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-92_Wide_CEB -TO-92 leads molded, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-92_Wide_DGS -TO-92 leads molded, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-92_Wide_DSG -TO-92 leads molded, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-92_Wide_EBC -TO-92 leads molded, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-92_Wide_ECB -TO-92 leads molded, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-92_Wide_GDS -TO-92 leads molded, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-92_Wide_GSD -TO-92 leads molded, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-92_Wide_SDG -TO-92 leads molded, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-92_Wide_SGD -TO-92 leads molded, wide, drill 0.75mm (see NXP sot054_po.pdf), Alternate KiCad Library -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-126-3_Horizontal_TabDown_AAG -TO-126-3, Horizontal, RM 2.54mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf, Alternate KiCad Library -TO-126-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-126-3_Horizontal_TabDown_BCE -TO-126-3, Horizontal, RM 2.54mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf, Alternate KiCad Library -TO-126-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-126-3_Horizontal_TabDown_ECB -TO-126-3, Horizontal, RM 2.54mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf, Alternate KiCad Library -TO-126-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-126-3_Horizontal_TabDown_KAG -TO-126-3, Horizontal, RM 2.54mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf, Alternate KiCad Library -TO-126-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-126-3_Horizontal_TabUp_AAG -TO-126-3, Horizontal, RM 2.54mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf, Alternate KiCad Library -TO-126-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-126-3_Horizontal_TabUp_BCE -TO-126-3, Horizontal, RM 2.54mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf, Alternate KiCad Library -TO-126-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-126-3_Horizontal_TabUp_ECB -TO-126-3, Horizontal, RM 2.54mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf, Alternate KiCad Library -TO-126-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-126-3_Horizontal_TabUp_KAG -TO-126-3, Horizontal, RM 2.54mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf, Alternate KiCad Library -TO-126-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-126-3_Vertical_AAG -TO-126-3, Vertical, RM 2.54mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf, Alternate KiCad Library -TO-126-3 Vertical RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-126-3_Vertical_BCE -TO-126-3, Vertical, RM 2.54mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf, Alternate KiCad Library -TO-126-3 Vertical RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-126-3_Vertical_ECB -TO-126-3, Vertical, RM 2.54mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf, Alternate KiCad Library -TO-126-3 Vertical RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-126-3_Vertical_KAG -TO-126-3, Vertical, RM 2.54mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf, Alternate KiCad Library -TO-126-3 Vertical RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-202-3_Horizontal_Down_BCE -TO-202-3, Horizontal, RM 2.54mm, see https://pl.mouser.com/datasheet/2/68/cen-u05-07_55-57-1518512.pdf, Alternate KiCad Library -TO-202-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-202-3_Horizontal_Tabless_Down_KAG -TO-202-3, Horizontal, RM 2.54mm, see https://pl.mouser.com/datasheet/2/68/cen-u05-07_55-57-1518512.pdf, Alternate KiCad Library -TO-202-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-202-3_Horizontal_Tabless_Up_KAG -TO-202-3, Horizontal, RM 2.54mm, see https://pl.mouser.com/datasheet/2/68/cen-u05-07_55-57-1518512.pdf, Alternate KiCad Library -TO-202-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-202-3_Horizontal_Up_BCE -TO-202-3, Horizontal, RM 2.54mm, see https://pl.mouser.com/datasheet/2/68/cen-u05-07_55-57-1518512.pdf, Alternate KiCad Library -TO-202-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-202-3_Vertical_BCE -TO-202-3, Vertical, RM 2.54mm, see https://pl.mouser.com/datasheet/2/68/cen-u05-07_55-57-1518512.pdf, Alternate KiCad Library -TO-202-3 Vertical RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-202-3_Vertical_Tabless_KAG -TO-202-3, Vertical, RM 2.54mm, without tab, see https://pl.mouser.com/datasheet/2/389/cd00001569-1795487.pdf, Alternate KiCad Library -TO-202-3 Vertical RM 2.54mm Tabless -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-218-2_Horizontal_TabDown_KA -TO-218-2, Horizontal, RM 10.95mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library -TO-218-2 Horizontal RM 10.95mm SOT-93 -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL_Double -TO-218-2_Horizontal_TabUp_KA -TO-218-2, Horizontal, RM 10.95mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library -TO-218-2 Horizontal RM 10.95mm SOT-93 -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL_Double -TO-218-2_Vertical_KA -TO-218-2, Vertical, RM 10.95mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library -TO-218-2 Vertical RM 10.95mm SOT-93 -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL_Double -TO-218-3_Horizontal_TabDown_AAG -TO-218-3, Horizontal, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library -TO-218-3 Horizontal RM 5.475mm SOT-93 -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-218-3_Horizontal_TabDown_AKA -TO-218-3, Horizontal, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library -TO-218-3 Horizontal RM 5.475mm SOT-93 -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-218-3_Horizontal_TabDown_BCE -TO-218-3, Horizontal, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library -TO-218-3 Horizontal RM 5.475mm SOT-93 -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-218-3_Horizontal_TabDown_GDS -TO-218-3, Horizontal, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library -TO-218-3 Horizontal RM 5.475mm SOT-93 -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-218-3_Horizontal_TabDown_KAG -TO-218-3, Horizontal, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library -TO-218-3 Horizontal RM 5.475mm SOT-93 -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-218-3_Horizontal_TabUp_AAG -TO-218-3, Horizontal, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library -TO-218-3 Horizontal RM 5.475mm SOT-93 -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-218-3_Horizontal_TabUp_AKA -TO-218-3, Horizontal, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library -TO-218-3 Horizontal RM 5.475mm SOT-93 -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-218-3_Horizontal_TabUp_BCE -TO-218-3, Horizontal, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library -TO-218-3 Horizontal RM 5.475mm SOT-93 -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-218-3_Horizontal_TabUp_GDS -TO-218-3, Horizontal, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library -TO-218-3 Horizontal RM 5.475mm SOT-93 -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-218-3_Horizontal_TabUp_KAG -TO-218-3, Horizontal, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library -TO-218-3 Horizontal RM 5.475mm SOT-93 -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-218-3_Vertical_AAG -TO-218-3, Vertical, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library -TO-218-3 Vertical RM 5.475mm SOT-93 -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-218-3_Vertical_AKA -TO-218-3, Vertical, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library -TO-218-3 Vertical RM 5.475mm SOT-93 -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-218-3_Vertical_BCE -TO-218-3, Vertical, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library -TO-218-3 Vertical RM 5.475mm SOT-93 -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-218-3_Vertical_GDS -TO-218-3, Vertical, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library -TO-218-3 Vertical RM 5.475mm SOT-93 -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-218-3_Vertical_KAG -TO-218-3, Vertical, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf, Alternate KiCad Library -TO-218-3 Vertical RM 5.475mm SOT-93 -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-220-2_Horizontal_TabDown_KA -TO-220-2, Horizontal, RM 5.08mm, see https://www.centralsemi.com/PDFS/CASE/TO-220-2PD.PDF, Alternate KiCad Library -TO-220-2 Horizontal RM 5.08mm -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL_Double -TO-220-2_Horizontal_TabUp_KA -TO-220-2, Horizontal, RM 5.08mm, see https://www.centralsemi.com/PDFS/CASE/TO-220-2PD.PDF, Alternate KiCad Library -TO-220-2 Horizontal RM 5.08mm -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL_Double -TO-220-2_Vertical_KA -TO-220-2, Vertical, RM 5.08mm, see https://www.centralsemi.com/PDFS/CASE/TO-220-2PD.PDF, Alternate KiCad Library -TO-220-2 Vertical RM 5.08mm -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL_Double -TO-220-3_Horizontal_TabDown_AAG -TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library -TO-220-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-220-3_Horizontal_TabDown_AKA -TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library -TO-220-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-220-3_Horizontal_TabDown_BCE -TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library -TO-220-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-220-3_Horizontal_TabDown_GCE -TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library -TO-220-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-220-3_Horizontal_TabDown_GDS -TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library -TO-220-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-220-3_Horizontal_TabDown_KAG -TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library -TO-220-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-220-3_Horizontal_TabDown_KAK -TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library -TO-220-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-220-3_Horizontal_TabDown_Series -TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library -TO-220-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-220-3_Horizontal_TabUp_AAG -TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library -TO-220-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-220-3_Horizontal_TabUp_AKA -TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library -TO-220-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-220-3_Horizontal_TabUp_BCE -TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library -TO-220-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-220-3_Horizontal_TabUp_GCE -TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library -TO-220-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-220-3_Horizontal_TabUp_GDS -TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library -TO-220-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-220-3_Horizontal_TabUp_KAG -TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library -TO-220-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-220-3_Horizontal_TabUp_KAK -TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library -TO-220-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-220-3_Horizontal_TabUp_Series -TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library -TO-220-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-220-3_Staggered_Vertical_AAG -TO-220-3, Vertical, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library -TO-220-3 Vertical RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-220-3_Staggered_Vertical_BCE -TO-220-3, Vertical, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library -TO-220-3 Vertical RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-220-3_Staggered_Vertical_GCE -TO-220-3, Vertical, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library -TO-220-3 Vertical RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-220-3_Staggered_Vertical_GDS -TO-220-3, Vertical, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library -TO-220-3 Vertical RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-220-3_Staggered_Vertical_KAG -TO-220-3, Vertical, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library -TO-220-3 Vertical RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-220-3_Vertical_AAG -TO-220-3, Vertical, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library -TO-220-3 Vertical RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-220-3_Vertical_AKA -TO-220-3, Vertical, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library -TO-220-3 Vertical RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-220-3_Vertical_BCE -TO-220-3, Vertical, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library -TO-220-3 Vertical RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-220-3_Vertical_GCE -TO-220-3, Vertical, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library -TO-220-3 Vertical RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-220-3_Vertical_GDS -TO-220-3, Vertical, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library -TO-220-3 Vertical RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-220-3_Vertical_KAG -TO-220-3, Vertical, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library -TO-220-3 Vertical RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-220-3_Vertical_KAK -TO-220-3, Vertical, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library -TO-220-3 Vertical RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-220-3_Vertical_Series -TO-220-3, Vertical, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf, Alternate KiCad Library -TO-220-3 Vertical RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-220F-2_Horizontal_TabDown_KA -TO-220F-2, Horizontal, RM 5.08mm, see http://www.onsemi.com/pub/Collateral/FFPF10F150S-D.pdf, Alternate KiCad Library -TO-220F-2 Horizontal RM 5.08mm -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL_Double -TO-220F-2_Horizontal_TabUp_KA -TO-220F-2, Horizontal, RM 5.08mm, see http://www.onsemi.com/pub/Collateral/FFPF10F150S-D.pdf, Alternate KiCad Library -TO-220F-2 Horizontal RM 5.08mm -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL_Double -TO-220F-2_Vertical_KA -TO-220F-2, Vertical, RM 5.08mm, see http://www.onsemi.com/pub/Collateral/FFPF10F150S-D.pdf, Alternate KiCad Library -TO-220F-2 Vertical RM 5.08mm -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL_Double -TO-220F-3_Horizontal_TabDown_AAG -TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library -TO-220F-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-220F-3_Horizontal_TabDown_AKA -TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library -TO-220F-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-220F-3_Horizontal_TabDown_BCE -TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library -TO-220F-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-220F-3_Horizontal_TabDown_GCE -TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library -TO-220F-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-220F-3_Horizontal_TabDown_GDS -TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library -TO-220F-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-220F-3_Horizontal_TabDown_KAG -TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library -TO-220F-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-220F-3_Horizontal_TabDown_KAK -TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library -TO-220F-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-220F-3_Horizontal_TabDown_Series -TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library -TO-220F-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-220F-3_Horizontal_TabUp_AAG -TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library -TO-220F-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-220F-3_Horizontal_TabUp_AKA -TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library -TO-220F-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-220F-3_Horizontal_TabUp_BCE -TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library -TO-220F-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-220F-3_Horizontal_TabUp_GCE -TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library -TO-220F-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-220F-3_Horizontal_TabUp_GDS -TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library -TO-220F-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-220F-3_Horizontal_TabUp_KAG -TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library -TO-220F-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-220F-3_Horizontal_TabUp_KAK -TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library -TO-220F-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-220F-3_Horizontal_TabUp_Series -TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library -TO-220F-3 Horizontal RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-220F-3_Staggered_Vertical_AAG -TO-220F Staggered Vertical, Alternate KiCad Library -TO-220F vertical staggered -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-220F-3_Staggered_Vertical_BCE -TO-220F Staggered Vertical, Alternate KiCad Library -TO-220F vertical staggered -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-220F-3_Staggered_Vertical_GCE -TO-220F Staggered Vertical, Alternate KiCad Library -TO-220F vertical staggered -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-220F-3_Staggered_Vertical_GDS -TO-220F Staggered Vertical, Alternate KiCad Library -TO-220F vertical staggered -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-220F-3_Staggered_Vertical_KAG -TO-220F Staggered Vertical, Alternate KiCad Library -TO-220F vertical staggered -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-220F-3_Vertical_AAG -TO-220F-3, Vertical, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library -TO-220F-3 Vertical RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-220F-3_Vertical_AKA -TO-220F-3, Vertical, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library -TO-220F-3 Vertical RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-220F-3_Vertical_BCE -TO-220F-3, Vertical, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library -TO-220F-3 Vertical RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-220F-3_Vertical_GCE -TO-220F-3, Vertical, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library -TO-220F-3 Vertical RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-220F-3_Vertical_GDS -TO-220F-3, Vertical, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library -TO-220F-3 Vertical RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-220F-3_Vertical_KAG -TO-220F-3, Vertical, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library -TO-220F-3 Vertical RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-220F-3_Vertical_KAK -TO-220F-3, Vertical, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library -TO-220F-3 Vertical RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-220F-3_Vertical_Series -TO-220F-3, Vertical, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf, Alternate KiCad Library -TO-220F-3 Vertical RM 2.54mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-247-2_Horizontal_TabDown_KA -TO-247-2, Horizontal, RM 10.9mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library -TO-247-2 Horizontal RM 10.9mm -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL_Double -TO-247-2_Horizontal_TabUp_KA -TO-247-2, Horizontal, RM 10.9mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library -TO-247-2 Horizontal RM 10.9mm -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL_Double -TO-247-2_Vertical_KA -TO-247-2, Vertical, RM 10.9mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library -TO-247-2 Vertical RM 10.9mm -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL_Double -TO-247-3_Horizontal_TabDown_AAG -TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library -TO-247-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-247-3_Horizontal_TabDown_AKA -TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library -TO-247-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-247-3_Horizontal_TabDown_BCE -TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library -TO-247-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-247-3_Horizontal_TabDown_GCE -TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library -TO-247-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-247-3_Horizontal_TabDown_GDS -TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library -TO-247-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-247-3_Horizontal_TabDown_KAG -TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library -TO-247-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-247-3_Horizontal_TabDown_KAK -TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library -TO-247-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-247-3_Horizontal_TabDown_xKA -TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library -TO-247-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-247-3_Horizontal_TabUp_AAG -TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library -TO-247-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-247-3_Horizontal_TabUp_AKA -TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library -TO-247-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-247-3_Horizontal_TabUp_BCE -TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library -TO-247-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-247-3_Horizontal_TabUp_GCE -TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library -TO-247-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-247-3_Horizontal_TabUp_GDS -TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library -TO-247-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-247-3_Horizontal_TabUp_KAG -TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library -TO-247-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-247-3_Horizontal_TabUp_KAK -TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library -TO-247-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-247-3_Horizontal_TabUp_xKA -TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library -TO-247-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-247-3_Vertical_AAG -TO-247-3, Vertical, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library -TO-247-3 Vertical RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-247-3_Vertical_AKA -TO-247-3, Vertical, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library -TO-247-3 Vertical RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-247-3_Vertical_BCE -TO-247-3, Vertical, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library -TO-247-3 Vertical RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-247-3_Vertical_GCE -TO-247-3, Vertical, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library -TO-247-3 Vertical RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-247-3_Vertical_GDS -TO-247-3, Vertical, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library -TO-247-3 Vertical RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-247-3_Vertical_KAG -TO-247-3, Vertical, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library -TO-247-3 Vertical RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-247-3_Vertical_KAK -TO-247-3, Vertical, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library -TO-247-3 Vertical RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-247-3_Vertical_xKA -TO-247-3, Vertical, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html, Alternate KiCad Library -TO-247-3 Vertical RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-251-3_Vertical_BCE -TO-251-3, Vertical, RM 2.29mm, IPAK, see https://www.diodes.com/assets/Package-Files/TO251.pdf, Alternate KiCad Library -TO-251-3 Vertical RM 2.29mm IPAK -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-251-3_Vertical_GCE -TO-251-3, Vertical, RM 2.29mm, IPAK, see https://www.diodes.com/assets/Package-Files/TO251.pdf, Alternate KiCad Library -TO-251-3 Vertical RM 2.29mm IPAK -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-251-3_Vertical_GDS -TO-251-3, Vertical, RM 2.29mm, IPAK, see https://www.diodes.com/assets/Package-Files/TO251.pdf, Alternate KiCad Library -TO-251-3 Vertical RM 2.29mm IPAK -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-262-2_Vertical_KA -TO-262-2, Vertical, RM 2.54mm, IIPAK, I2PAK, see http://www.onsemi.com/pub/Collateral/EN8586-D.PDF, Alternate KiCad Library -TO-262-2 Vertical RM 2.54mm IIPAK I2PAK -0 -2 -2 -PCM_Package_TO_SOT_THT_AKL_Double -TO-262-3_Vertical_BCE -TO-262-3, Vertical, RM 2.54mm, IIPAK, I2PAK, see http://www.onsemi.com/pub/Collateral/EN8586-D.PDF, Alternate KiCad Library -TO-262-3 Vertical RM 2.54mm IIPAK I2PAK -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-262-3_Vertical_GCE -TO-262-3, Vertical, RM 2.54mm, IIPAK, I2PAK, see http://www.onsemi.com/pub/Collateral/EN8586-D.PDF, Alternate KiCad Library -TO-262-3 Vertical RM 2.54mm IIPAK I2PAK -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-262-3_Vertical_GDS -TO-262-3, Vertical, RM 2.54mm, IIPAK, I2PAK, see http://www.onsemi.com/pub/Collateral/EN8586-D.PDF, Alternate KiCad Library -TO-262-3 Vertical RM 2.54mm IIPAK I2PAK -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-264-3_Horizontal_TabDown_BCE -TO-264-3, Horizontal, RM 5.45mm, see https://www.fairchildsemi.com/package-drawings/TO/TO264A03.pdf, Alternate KiCad Library -TO-264-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-264-3_Horizontal_TabDown_GCE -TO-264-3, Horizontal, RM 5.45mm, see https://www.fairchildsemi.com/package-drawings/TO/TO264A03.pdf, Alternate KiCad Library -TO-264-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-264-3_Horizontal_TabDown_GDS -TO-264-3, Horizontal, RM 5.45mm, see https://www.fairchildsemi.com/package-drawings/TO/TO264A03.pdf, Alternate KiCad Library -TO-264-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-264-3_Horizontal_TabUp_BCE -TO-264-3, Horizontal, RM 5.45mm, see https://www.fairchildsemi.com/package-drawings/TO/TO264A03.pdf, Alternate KiCad Library -TO-264-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-264-3_Horizontal_TabUp_GCE -TO-264-3, Horizontal, RM 5.45mm, see https://www.fairchildsemi.com/package-drawings/TO/TO264A03.pdf, Alternate KiCad Library -TO-264-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-264-3_Horizontal_TabUp_GDS -TO-264-3, Horizontal, RM 5.45mm, see https://www.fairchildsemi.com/package-drawings/TO/TO264A03.pdf, Alternate KiCad Library -TO-264-3 Horizontal RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-264-3_Vertical_BCE -TO-264-3, Vertical, RM 5.45mm, see https://www.fairchildsemi.com/package-drawings/TO/TO264A03.pdf, Alternate KiCad Library -TO-264-3 Vertical RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-264-3_Vertical_GCE -TO-264-3, Vertical, RM 5.45mm, see https://www.fairchildsemi.com/package-drawings/TO/TO264A03.pdf, Alternate KiCad Library -TO-264-3 Vertical RM 5.45mm -0 -3 -3 -PCM_Package_TO_SOT_THT_AKL_Double -TO-264-3_Vertical_GDS -TO-264-3, Vertical, RM 5.45mm, see https://www.fairchildsemi.com/package-drawings/TO/TO264A03.pdf, Alternate KiCad Library -TO-264-3 Vertical RM 5.45mm -0 -3 -3 -PCM_Potentiometer_SMD_AKL -Potentiometer_ACP_CA6-VSMD_Vertical -Potentiometer, vertical, ACP CA6-VSMD, http://www.acptechnologies.com/wp-content/uploads/2017/06/01-ACP-CA6.pdf -Potentiometer vertical ACP CA6-VSMD -0 -3 -3 -PCM_Potentiometer_SMD_AKL -Potentiometer_ACP_CA6-VSMD_Vertical_Hole -Potentiometer, vertical, shaft hole, ACP CA6-VSMD, http://www.acptechnologies.com/wp-content/uploads/2017/06/01-ACP-CA6.pdf -Potentiometer vertical hole ACP CA6-VSMD -0 -3 -3 -PCM_Potentiometer_SMD_AKL -Potentiometer_ACP_CA9-VSMD_Vertical -Potentiometer, vertical, ACP CA9-VSMD, http://www.acptechnologies.com/wp-content/uploads/2017/05/02-ACP-CA9-CE9.pdf -Potentiometer vertical ACP CA9-VSMD -0 -3 -3 -PCM_Potentiometer_SMD_AKL -Potentiometer_ACP_CA9-VSMD_Vertical_Hole -Potentiometer, vertical, shaft hole, ACP CA9-VSMD, http://www.acptechnologies.com/wp-content/uploads/2017/05/02-ACP-CA9-CE9.pdf -Potentiometer vertical hole ACP CA9-VSMD -0 -3 -3 -PCM_Potentiometer_SMD_AKL -Potentiometer_ACP_CA14-VSMD_Vertical -Potentiometer, vertical, ACP CA14-VSMD, http://www.acptechnologies.com/wp-content/uploads/2017/10/03-ACP-CA14-CE14.pdf -Potentiometer vertical ACP CA14-VSMD -0 -3 -3 -PCM_Potentiometer_SMD_AKL -Potentiometer_ACP_CA14-VSMD_Vertical_Hole -Potentiometer, vertical, shaft hole, ACP CA14-VSMD, http://www.acptechnologies.com/wp-content/uploads/2017/10/03-ACP-CA14-CE14.pdf -Potentiometer vertical hole ACP CA14-VSMD -0 -3 -3 -PCM_Potentiometer_SMD_AKL -Potentiometer_Bourns_3214G_Horizontal -Potentiometer, horizontal, Bourns 3214G, https://www.bourns.com/docs/Product-Datasheets/3214.pdf -Potentiometer horizontal Bourns 3214G -0 -3 -3 -PCM_Potentiometer_SMD_AKL -Potentiometer_Bourns_3214J_Horizontal -Potentiometer, horizontal, Bourns 3214J, https://www.bourns.com/docs/Product-Datasheets/3214.pdf -Potentiometer horizontal Bourns 3214J -0 -3 -3 -PCM_Potentiometer_SMD_AKL -Potentiometer_Bourns_3214W_Vertical -Potentiometer, vertical, Bourns 3214W, https://www.bourns.com/docs/Product-Datasheets/3214.pdf -Potentiometer vertical Bourns 3214W -0 -3 -3 -PCM_Potentiometer_SMD_AKL -Potentiometer_Bourns_3214X_Vertical -Potentiometer, vertical, Bourns 3214X, https://www.bourns.com/docs/Product-Datasheets/3214.pdf -Potentiometer vertical Bourns 3214X -0 -3 -3 -PCM_Potentiometer_SMD_AKL -Potentiometer_Bourns_3224G_Horizontal -Potentiometer, horizontal, Bourns 3224G, https://www.bourns.com/docs/Product-Datasheets/3224.pdf -Potentiometer horizontal Bourns 3224G -0 -3 -3 -PCM_Potentiometer_SMD_AKL -Potentiometer_Bourns_3224J_Horizontal -Potentiometer, horizontal, Bourns 3224J, https://www.bourns.com/docs/Product-Datasheets/3224.pdf -Potentiometer horizontal Bourns 3224J -0 -3 -3 -PCM_Potentiometer_SMD_AKL -Potentiometer_Bourns_3224W_Vertical -Potentiometer, vertical, Bourns 3224W, https://www.bourns.com/docs/Product-Datasheets/3224.pdf -Potentiometer vertical Bourns 3224W -0 -3 -3 -PCM_Potentiometer_SMD_AKL -Potentiometer_Bourns_3224X_Vertical -Potentiometer, vertical, Bourns 3224X, https://www.bourns.com/docs/Product-Datasheets/3224.pdf -Potentiometer vertical Bourns 3224X -0 -3 -3 -PCM_Potentiometer_SMD_AKL -Potentiometer_Bourns_3269P_Horizontal -Potentiometer, horizontal, Bourns 3269P, https://www.bourns.com/docs/Product-Datasheets/3269.pdf -Potentiometer horizontal Bourns 3269P -0 -3 -3 -PCM_Potentiometer_SMD_AKL -Potentiometer_Bourns_3269W_Vertical -Potentiometer, vertical, Bourns 3269W, https://www.bourns.com/docs/Product-Datasheets/3269.pdf -Potentiometer vertical Bourns 3269W -0 -3 -3 -PCM_Potentiometer_SMD_AKL -Potentiometer_Bourns_3269X_Horizontal -Potentiometer, horizontal, Bourns 3269X, https://www.bourns.com/docs/Product-Datasheets/3269.pdf -Potentiometer horizontal Bourns 3269X -0 -3 -3 -PCM_Potentiometer_SMD_AKL -Potentiometer_Bourns_3314G_Vertical -Potentiometer, vertical, Bourns 3314G, http://www.bourns.com/docs/Product-Datasheets/3314.pdf -Potentiometer vertical Bourns 3314G -0 -3 -3 -PCM_Potentiometer_SMD_AKL -Potentiometer_Bourns_3314J_Vertical -Potentiometer, vertical, Bourns 3314J, http://www.bourns.com/docs/Product-Datasheets/3314.pdf -Potentiometer vertical Bourns 3314J -0 -3 -3 -PCM_Potentiometer_SMD_AKL -Potentiometer_Bourns_3314R-1_Vertical_Hole -Potentiometer, vertical, shaft hole, Bourns 3314R-1, http://www.bourns.com/docs/Product-Datasheets/3314.pdf -Potentiometer vertical hole Bourns 3314R-1 -0 -3 -3 -PCM_Potentiometer_SMD_AKL -Potentiometer_Bourns_3314R-GM5_Vertical -Potentiometer, vertical, Bourns 3314R-GM5, http://www.bourns.com/docs/Product-Datasheets/3314.pdf -Potentiometer vertical Bourns 3314R-GM5 -0 -3 -3 -PCM_Potentiometer_SMD_AKL -Potentiometer_Bourns_3314S_Horizontal -Potentiometer, horizontal, Bourns 3314S, http://www.bourns.com/docs/Product-Datasheets/3314.pdf -Potentiometer horizontal Bourns 3314S -0 -3 -3 -PCM_Potentiometer_SMD_AKL -Potentiometer_Bourns_PRS11S_Vertical -Potentiometer, vertical, Bourns PRS11S, http://www.bourns.com/docs/Product-Datasheets/PRS11S.pdf -Potentiometer vertical Bourns PRS11S -0 -5 -5 -PCM_Potentiometer_SMD_AKL -Potentiometer_Bourns_TC33X_Vertical -Potentiometer, Bourns, TC33X, Vertical, https://www.bourns.com/pdfs/TC33.pdf -Potentiometer Bourns TC33X Vertical -0 -3 -3 -PCM_Potentiometer_SMD_AKL -Potentiometer_Vishay_TS53YJ_Vertical -Potentiometer, vertical, Vishay TS53YJ, https://www.vishay.com/docs/51008/ts53.pdf -Potentiometer vertical Vishay TS53YJ -0 -3 -3 -PCM_Potentiometer_SMD_AKL -Potentiometer_Vishay_TS53YL_Vertical -Potentiometer, vertical, Vishay TS53YL, https://www.vishay.com/docs/51008/ts53.pdf -Potentiometer vertical Vishay TS53YL -0 -3 -3 -PCM_Potentiometer_SMD_Handsoldering_AKL -Potentiometer_ACP_CA6-VSMD_Vertical -Potentiometer, vertical, ACP CA6-VSMD, http://www.acptechnologies.com/wp-content/uploads/2017/06/01-ACP-CA6.pdf -Potentiometer vertical ACP CA6-VSMD -0 -3 -3 -PCM_Potentiometer_SMD_Handsoldering_AKL -Potentiometer_ACP_CA6-VSMD_Vertical_Hole -Potentiometer, vertical, shaft hole, ACP CA6-VSMD, http://www.acptechnologies.com/wp-content/uploads/2017/06/01-ACP-CA6.pdf -Potentiometer vertical hole ACP CA6-VSMD -0 -3 -3 -PCM_Potentiometer_SMD_Handsoldering_AKL -Potentiometer_ACP_CA9-VSMD_Vertical -Potentiometer, vertical, ACP CA9-VSMD, http://www.acptechnologies.com/wp-content/uploads/2017/05/02-ACP-CA9-CE9.pdf -Potentiometer vertical ACP CA9-VSMD -0 -3 -3 -PCM_Potentiometer_SMD_Handsoldering_AKL -Potentiometer_ACP_CA9-VSMD_Vertical_Hole -Potentiometer, vertical, shaft hole, ACP CA9-VSMD, http://www.acptechnologies.com/wp-content/uploads/2017/05/02-ACP-CA9-CE9.pdf -Potentiometer vertical hole ACP CA9-VSMD -0 -3 -3 -PCM_Potentiometer_SMD_Handsoldering_AKL -Potentiometer_ACP_CA14-VSMD_Vertical -Potentiometer, vertical, ACP CA14-VSMD, http://www.acptechnologies.com/wp-content/uploads/2017/10/03-ACP-CA14-CE14.pdf -Potentiometer vertical ACP CA14-VSMD -0 -3 -3 -PCM_Potentiometer_SMD_Handsoldering_AKL -Potentiometer_ACP_CA14-VSMD_Vertical_Hole -Potentiometer, vertical, shaft hole, ACP CA14-VSMD, http://www.acptechnologies.com/wp-content/uploads/2017/10/03-ACP-CA14-CE14.pdf -Potentiometer vertical hole ACP CA14-VSMD -0 -3 -3 -PCM_Potentiometer_SMD_Handsoldering_AKL -Potentiometer_Bourns_3214G_Horizontal -Potentiometer, horizontal, Bourns 3214G, https://www.bourns.com/docs/Product-Datasheets/3214.pdf -Potentiometer horizontal Bourns 3214G -0 -3 -3 -PCM_Potentiometer_SMD_Handsoldering_AKL -Potentiometer_Bourns_3214J_Horizontal -Potentiometer, horizontal, Bourns 3214J, https://www.bourns.com/docs/Product-Datasheets/3214.pdf -Potentiometer horizontal Bourns 3214J -0 -3 -3 -PCM_Potentiometer_SMD_Handsoldering_AKL -Potentiometer_Bourns_3214W_Vertical -Potentiometer, vertical, Bourns 3214W, https://www.bourns.com/docs/Product-Datasheets/3214.pdf -Potentiometer vertical Bourns 3214W -0 -3 -3 -PCM_Potentiometer_SMD_Handsoldering_AKL -Potentiometer_Bourns_3214X_Vertical -Potentiometer, vertical, Bourns 3214X, https://www.bourns.com/docs/Product-Datasheets/3214.pdf -Potentiometer vertical Bourns 3214X -0 -3 -3 -PCM_Potentiometer_SMD_Handsoldering_AKL -Potentiometer_Bourns_3224G_Horizontal -Potentiometer, horizontal, Bourns 3224G, https://www.bourns.com/docs/Product-Datasheets/3224.pdf -Potentiometer horizontal Bourns 3224G -0 -3 -3 -PCM_Potentiometer_SMD_Handsoldering_AKL -Potentiometer_Bourns_3224J_Horizontal -Potentiometer, horizontal, Bourns 3224J, https://www.bourns.com/docs/Product-Datasheets/3224.pdf -Potentiometer horizontal Bourns 3224J -0 -3 -3 -PCM_Potentiometer_SMD_Handsoldering_AKL -Potentiometer_Bourns_3224W_Vertical -Potentiometer, vertical, Bourns 3224W, https://www.bourns.com/docs/Product-Datasheets/3224.pdf -Potentiometer vertical Bourns 3224W -0 -3 -3 -PCM_Potentiometer_SMD_Handsoldering_AKL -Potentiometer_Bourns_3224X_Vertical -Potentiometer, vertical, Bourns 3224X, https://www.bourns.com/docs/Product-Datasheets/3224.pdf -Potentiometer vertical Bourns 3224X -0 -3 -3 -PCM_Potentiometer_SMD_Handsoldering_AKL -Potentiometer_Bourns_3269P_Horizontal -Potentiometer, horizontal, Bourns 3269P, https://www.bourns.com/docs/Product-Datasheets/3269.pdf -Potentiometer horizontal Bourns 3269P -0 -3 -3 -PCM_Potentiometer_SMD_Handsoldering_AKL -Potentiometer_Bourns_3269W_Vertical -Potentiometer, vertical, Bourns 3269W, https://www.bourns.com/docs/Product-Datasheets/3269.pdf -Potentiometer vertical Bourns 3269W -0 -3 -3 -PCM_Potentiometer_SMD_Handsoldering_AKL -Potentiometer_Bourns_3269X_Horizontal -Potentiometer, horizontal, Bourns 3269X, https://www.bourns.com/docs/Product-Datasheets/3269.pdf -Potentiometer horizontal Bourns 3269X -0 -3 -3 -PCM_Potentiometer_SMD_Handsoldering_AKL -Potentiometer_Bourns_3314G_Vertical -Potentiometer, vertical, Bourns 3314G, http://www.bourns.com/docs/Product-Datasheets/3314.pdf -Potentiometer vertical Bourns 3314G -0 -3 -3 -PCM_Potentiometer_SMD_Handsoldering_AKL -Potentiometer_Bourns_3314J_Vertical -Potentiometer, vertical, Bourns 3314J, http://www.bourns.com/docs/Product-Datasheets/3314.pdf -Potentiometer vertical Bourns 3314J -0 -3 -3 -PCM_Potentiometer_SMD_Handsoldering_AKL -Potentiometer_Bourns_3314R-1_Vertical_Hole -Potentiometer, vertical, shaft hole, Bourns 3314R-1, http://www.bourns.com/docs/Product-Datasheets/3314.pdf -Potentiometer vertical hole Bourns 3314R-1 -0 -3 -3 -PCM_Potentiometer_SMD_Handsoldering_AKL -Potentiometer_Bourns_3314R-GM5_Vertical -Potentiometer, vertical, Bourns 3314R-GM5, http://www.bourns.com/docs/Product-Datasheets/3314.pdf -Potentiometer vertical Bourns 3314R-GM5 -0 -3 -3 -PCM_Potentiometer_SMD_Handsoldering_AKL -Potentiometer_Bourns_3314S_Horizontal -Potentiometer, horizontal, Bourns 3314S, http://www.bourns.com/docs/Product-Datasheets/3314.pdf -Potentiometer horizontal Bourns 3314S -0 -3 -3 -PCM_Potentiometer_SMD_Handsoldering_AKL -Potentiometer_Bourns_PRS11S_Vertical -Potentiometer, vertical, Bourns PRS11S, http://www.bourns.com/docs/Product-Datasheets/PRS11S.pdf -Potentiometer vertical Bourns PRS11S -0 -5 -5 -PCM_Potentiometer_SMD_Handsoldering_AKL -Potentiometer_Bourns_TC33X_Vertical -Potentiometer, Bourns, TC33X, Vertical, https://www.bourns.com/pdfs/TC33.pdf -Potentiometer Bourns TC33X Vertical -0 -3 -3 -PCM_Potentiometer_SMD_Handsoldering_AKL -Potentiometer_Vishay_TS53YJ_Vertical -Potentiometer, vertical, Vishay TS53YJ, https://www.vishay.com/docs/51008/ts53.pdf -Potentiometer vertical Vishay TS53YJ -0 -3 -3 -PCM_Potentiometer_SMD_Handsoldering_AKL -Potentiometer_Vishay_TS53YL_Vertical -Potentiometer, vertical, Vishay TS53YL, https://www.vishay.com/docs/51008/ts53.pdf -Potentiometer vertical Vishay TS53YL -0 -3 -3 -PCM_Potentiometer_SMD_US_Handsoldering_AKL -Potentiometer_ACP_CA6-VSMD_Vertical -Potentiometer, vertical, ACP CA6-VSMD, http://www.acptechnologies.com/wp-content/uploads/2017/06/01-ACP-CA6.pdf -Potentiometer vertical ACP CA6-VSMD -0 -3 -3 -PCM_Potentiometer_SMD_US_Handsoldering_AKL -Potentiometer_ACP_CA6-VSMD_Vertical_Hole -Potentiometer, vertical, shaft hole, ACP CA6-VSMD, http://www.acptechnologies.com/wp-content/uploads/2017/06/01-ACP-CA6.pdf -Potentiometer vertical hole ACP CA6-VSMD -0 -3 -3 -PCM_Potentiometer_SMD_US_Handsoldering_AKL -Potentiometer_ACP_CA9-VSMD_Vertical -Potentiometer, vertical, ACP CA9-VSMD, http://www.acptechnologies.com/wp-content/uploads/2017/05/02-ACP-CA9-CE9.pdf -Potentiometer vertical ACP CA9-VSMD -0 -3 -3 -PCM_Potentiometer_SMD_US_Handsoldering_AKL -Potentiometer_ACP_CA9-VSMD_Vertical_Hole -Potentiometer, vertical, shaft hole, ACP CA9-VSMD, http://www.acptechnologies.com/wp-content/uploads/2017/05/02-ACP-CA9-CE9.pdf -Potentiometer vertical hole ACP CA9-VSMD -0 -3 -3 -PCM_Potentiometer_SMD_US_Handsoldering_AKL -Potentiometer_ACP_CA14-VSMD_Vertical -Potentiometer, vertical, ACP CA14-VSMD, http://www.acptechnologies.com/wp-content/uploads/2017/10/03-ACP-CA14-CE14.pdf -Potentiometer vertical ACP CA14-VSMD -0 -3 -3 -PCM_Potentiometer_SMD_US_Handsoldering_AKL -Potentiometer_ACP_CA14-VSMD_Vertical_Hole -Potentiometer, vertical, shaft hole, ACP CA14-VSMD, http://www.acptechnologies.com/wp-content/uploads/2017/10/03-ACP-CA14-CE14.pdf -Potentiometer vertical hole ACP CA14-VSMD -0 -3 -3 -PCM_Potentiometer_SMD_US_Handsoldering_AKL -Potentiometer_Bourns_3214G_Horizontal -Potentiometer, horizontal, Bourns 3214G, https://www.bourns.com/docs/Product-Datasheets/3214.pdf -Potentiometer horizontal Bourns 3214G -0 -3 -3 -PCM_Potentiometer_SMD_US_Handsoldering_AKL -Potentiometer_Bourns_3214J_Horizontal -Potentiometer, horizontal, Bourns 3214J, https://www.bourns.com/docs/Product-Datasheets/3214.pdf -Potentiometer horizontal Bourns 3214J -0 -3 -3 -PCM_Potentiometer_SMD_US_Handsoldering_AKL -Potentiometer_Bourns_3214W_Vertical -Potentiometer, vertical, Bourns 3214W, https://www.bourns.com/docs/Product-Datasheets/3214.pdf -Potentiometer vertical Bourns 3214W -0 -3 -3 -PCM_Potentiometer_SMD_US_Handsoldering_AKL -Potentiometer_Bourns_3214X_Vertical -Potentiometer, vertical, Bourns 3214X, https://www.bourns.com/docs/Product-Datasheets/3214.pdf -Potentiometer vertical Bourns 3214X -0 -3 -3 -PCM_Potentiometer_SMD_US_Handsoldering_AKL -Potentiometer_Bourns_3224G_Horizontal -Potentiometer, horizontal, Bourns 3224G, https://www.bourns.com/docs/Product-Datasheets/3224.pdf -Potentiometer horizontal Bourns 3224G -0 -3 -3 -PCM_Potentiometer_SMD_US_Handsoldering_AKL -Potentiometer_Bourns_3224J_Horizontal -Potentiometer, horizontal, Bourns 3224J, https://www.bourns.com/docs/Product-Datasheets/3224.pdf -Potentiometer horizontal Bourns 3224J -0 -3 -3 -PCM_Potentiometer_SMD_US_Handsoldering_AKL -Potentiometer_Bourns_3224W_Vertical -Potentiometer, vertical, Bourns 3224W, https://www.bourns.com/docs/Product-Datasheets/3224.pdf -Potentiometer vertical Bourns 3224W -0 -3 -3 -PCM_Potentiometer_SMD_US_Handsoldering_AKL -Potentiometer_Bourns_3224X_Vertical -Potentiometer, vertical, Bourns 3224X, https://www.bourns.com/docs/Product-Datasheets/3224.pdf -Potentiometer vertical Bourns 3224X -0 -3 -3 -PCM_Potentiometer_SMD_US_Handsoldering_AKL -Potentiometer_Bourns_3269P_Horizontal -Potentiometer, horizontal, Bourns 3269P, https://www.bourns.com/docs/Product-Datasheets/3269.pdf -Potentiometer horizontal Bourns 3269P -0 -3 -3 -PCM_Potentiometer_SMD_US_Handsoldering_AKL -Potentiometer_Bourns_3269W_Vertical -Potentiometer, vertical, Bourns 3269W, https://www.bourns.com/docs/Product-Datasheets/3269.pdf -Potentiometer vertical Bourns 3269W -0 -3 -3 -PCM_Potentiometer_SMD_US_Handsoldering_AKL -Potentiometer_Bourns_3269X_Horizontal -Potentiometer, horizontal, Bourns 3269X, https://www.bourns.com/docs/Product-Datasheets/3269.pdf -Potentiometer horizontal Bourns 3269X -0 -3 -3 -PCM_Potentiometer_SMD_US_Handsoldering_AKL -Potentiometer_Bourns_3314G_Vertical -Potentiometer, vertical, Bourns 3314G, http://www.bourns.com/docs/Product-Datasheets/3314.pdf -Potentiometer vertical Bourns 3314G -0 -3 -3 -PCM_Potentiometer_SMD_US_Handsoldering_AKL -Potentiometer_Bourns_3314J_Vertical -Potentiometer, vertical, Bourns 3314J, http://www.bourns.com/docs/Product-Datasheets/3314.pdf -Potentiometer vertical Bourns 3314J -0 -3 -3 -PCM_Potentiometer_SMD_US_Handsoldering_AKL -Potentiometer_Bourns_3314R-1_Vertical_Hole -Potentiometer, vertical, shaft hole, Bourns 3314R-1, http://www.bourns.com/docs/Product-Datasheets/3314.pdf -Potentiometer vertical hole Bourns 3314R-1 -0 -3 -3 -PCM_Potentiometer_SMD_US_Handsoldering_AKL -Potentiometer_Bourns_3314R-GM5_Vertical -Potentiometer, vertical, Bourns 3314R-GM5, http://www.bourns.com/docs/Product-Datasheets/3314.pdf -Potentiometer vertical Bourns 3314R-GM5 -0 -3 -3 -PCM_Potentiometer_SMD_US_Handsoldering_AKL -Potentiometer_Bourns_3314S_Horizontal -Potentiometer, horizontal, Bourns 3314S, http://www.bourns.com/docs/Product-Datasheets/3314.pdf -Potentiometer horizontal Bourns 3314S -0 -3 -3 -PCM_Potentiometer_SMD_US_Handsoldering_AKL -Potentiometer_Bourns_PRS11S_Vertical -Potentiometer, vertical, Bourns PRS11S, http://www.bourns.com/docs/Product-Datasheets/PRS11S.pdf -Potentiometer vertical Bourns PRS11S -0 -5 -5 -PCM_Potentiometer_SMD_US_Handsoldering_AKL -Potentiometer_Bourns_TC33X_Vertical -Potentiometer, Bourns, TC33X, Vertical, https://www.bourns.com/pdfs/TC33.pdf -Potentiometer Bourns TC33X Vertical -0 -3 -3 -PCM_Potentiometer_SMD_US_Handsoldering_AKL -Potentiometer_Vishay_TS53YJ_Vertical -Potentiometer, vertical, Vishay TS53YJ, https://www.vishay.com/docs/51008/ts53.pdf -Potentiometer vertical Vishay TS53YJ -0 -3 -3 -PCM_Potentiometer_SMD_US_Handsoldering_AKL -Potentiometer_Vishay_TS53YL_Vertical -Potentiometer, vertical, Vishay TS53YL, https://www.vishay.com/docs/51008/ts53.pdf -Potentiometer vertical Vishay TS53YL -0 -3 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_ACP_CA6-H2,5_Horizontal -Potentiometer, horizontal, ACP CA6-H2,5, http://www.acptechnologies.com/wp-content/uploads/2017/06/01-ACP-CA6.pdf -Potentiometer horizontal ACP CA6-H2,5 -0 -3 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_ACP_CA9-H2,5_Horizontal -Potentiometer, horizontal, ACP CA9-H2,5, http://www.acptechnologies.com/wp-content/uploads/2017/05/02-ACP-CA9-CE9.pdf -Potentiometer horizontal ACP CA9-H2,5 -0 -3 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_ACP_CA9-H3,8_Horizontal -Potentiometer, horizontal, ACP CA9-H3,8, http://www.acptechnologies.com/wp-content/uploads/2017/05/02-ACP-CA9-CE9.pdf -Potentiometer horizontal ACP CA9-H3,8 -0 -3 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_ACP_CA9-H5_Horizontal -Potentiometer, horizontal, ACP CA9-H5, http://www.acptechnologies.com/wp-content/uploads/2017/05/02-ACP-CA9-CE9.pdf -Potentiometer horizontal ACP CA9-H5 -0 -3 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_ACP_CA9-V10_Vertical -Potentiometer, vertical, ACP CA9-V10, http://www.acptechnologies.com/wp-content/uploads/2017/05/02-ACP-CA9-CE9.pdf -Potentiometer vertical ACP CA9-V10 -0 -3 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_ACP_CA9-V10_Vertical_Hole -Potentiometer, vertical, shaft hole, ACP CA9-V10, http://www.acptechnologies.com/wp-content/uploads/2017/05/02-ACP-CA9-CE9.pdf -Potentiometer vertical hole ACP CA9-V10 -0 -3 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_ACP_CA14-H2,5_Horizontal -Potentiometer, horizontal, ACP CA14-H2,5, http://www.acptechnologies.com/wp-content/uploads/2017/10/03-ACP-CA14-CE14.pdf -Potentiometer horizontal ACP CA14-H2,5 -0 -3 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_ACP_CA14-H4_Horizontal -Potentiometer, horizontal, ACP CA14-H4, http://www.acptechnologies.com/wp-content/uploads/2017/10/03-ACP-CA14-CE14.pdf -Potentiometer horizontal ACP CA14-H4 -0 -3 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_ACP_CA14-H5_Horizontal -Potentiometer, horizontal, ACP CA14-H5, http://www.acptechnologies.com/wp-content/uploads/2017/10/03-ACP-CA14-CE14.pdf -Potentiometer horizontal ACP CA14-H5 -0 -3 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_ACP_CA14V-15_Vertical -Potentiometer, vertical, ACP CA14V-15, http://www.acptechnologies.com/wp-content/uploads/2017/10/03-ACP-CA14-CE14.pdf -Potentiometer vertical ACP CA14V-15 -0 -3 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_ACP_CA14V-15_Vertical_Hole -Potentiometer, vertical, shaft hole, ACP CA14V-15, http://www.acptechnologies.com/wp-content/uploads/2017/10/03-ACP-CA14-CE14.pdf -Potentiometer vertical hole ACP CA14V-15 -0 -3 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_Alpha_RD901F-40-00D_Single_Vertical -Potentiometer, vertical, 9mm, single, http://www.taiwanalpha.com.tw/downloads?target=products&id=113 -potentiometer vertical 9mm single -0 -5 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_Alpha_RD901F-40-00D_Single_Vertical_CircularHoles -Potentiometer, vertical, 9mm, single, http://www.taiwanalpha.com.tw/downloads?target=products&id=113 -potentiometer vertical 9mm single -0 -5 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_Alpha_RD902F-40-00D_Dual_Vertical -Potentiometer, vertical, 9mm, dual, http://www.taiwanalpha.com.tw/downloads?target=products&id=113 -potentiometer vertical 9mm dual -0 -8 -6 -PCM_Potentiometer_THT_AKL -Potentiometer_Alpha_RD902F-40-00D_Dual_Vertical_CircularHoles -Potentiometer, vertical, 9mm, dual, http://www.taiwanalpha.com.tw/downloads?target=products&id=113 -potentiometer vertical 9mm dual -0 -8 -6 -PCM_Potentiometer_THT_AKL -Potentiometer_Alps_RK09K_Single_Horizontal -Potentiometer, horizontal, Alps RK09K Single, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK09K/RK09K_list.html -Potentiometer horizontal Alps RK09K Single -0 -5 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_Alps_RK09K_Single_Vertical -Potentiometer, vertical, Alps RK09K Single, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK09K/RK09K_list.html -Potentiometer vertical Alps RK09K Single -0 -3 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_Alps_RK09L_Double_Horizontal -Potentiometer, horizontal, Alps RK09L Double, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK09L/RK09L_list.html -Potentiometer horizontal Alps RK09L Double -0 -8 -6 -PCM_Potentiometer_THT_AKL -Potentiometer_Alps_RK09L_Double_Vertical -Potentiometer, vertical, Alps RK09L Double, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK09L/RK09L_list.html -Potentiometer vertical Alps RK09L Double -0 -6 -6 -PCM_Potentiometer_THT_AKL -Potentiometer_Alps_RK09L_Single_Horizontal -Potentiometer, horizontal, Alps RK09L Single, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK09L/RK09L_list.html -Potentiometer horizontal Alps RK09L Single -0 -5 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_Alps_RK09L_Single_Vertical -Potentiometer, vertical, Alps RK09L Single, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK09L/RK09L_list.html -Potentiometer vertical Alps RK09L Single -0 -3 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_Alps_RK09Y11_Single_Horizontal -Potentiometer, horizontal, Alps RK09Y11 Single, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK09Y11/RK09Y11_list.html -Potentiometer horizontal Alps RK09Y11 Single -0 -3 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_Alps_RK097_Dual_Horizontal -Potentiometer, horizontal, Alps RK097 Dual, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK097/RK097_list.html -Potentiometer horizontal Alps RK097 Dual -0 -6 -6 -PCM_Potentiometer_THT_AKL -Potentiometer_Alps_RK097_Single_Horizontal -Potentiometer, horizontal, Alps RK097 Single, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK097/RK097_list.html -Potentiometer horizontal Alps RK097 Single -0 -3 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_Alps_RK163_Dual_Horizontal -Potentiometer, horizontal, Alps RK163 Dual, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK16/RK16_list.html -Potentiometer horizontal Alps RK163 Dual -0 -6 -6 -PCM_Potentiometer_THT_AKL -Potentiometer_Alps_RK163_Single_Horizontal -Potentiometer, horizontal, Alps RK163 Single, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK16/RK16_list.html -Potentiometer horizontal Alps RK163 Single -0 -3 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_Bourns_3005_Horizontal -Potentiometer, horizontal, Bourns 3005, http://www.bourns.com/docs/Product-Datasheets/3005.pdf -Potentiometer horizontal Bourns 3005 -0 -3 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_Bourns_3006P_Horizontal -Potentiometer, horizontal, Bourns 3006P, https://www.bourns.com/docs/Product-Datasheets/3006.pdf -Potentiometer horizontal Bourns 3006P -0 -3 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_Bourns_3006W_Horizontal -Potentiometer, horizontal, Bourns 3006W, https://www.bourns.com/docs/Product-Datasheets/3006.pdf -Potentiometer horizontal Bourns 3006W -0 -3 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_Bourns_3006Y_Horizontal -Potentiometer, horizontal, Bourns 3006Y, https://www.bourns.com/docs/Product-Datasheets/3006.pdf -Potentiometer horizontal Bourns 3006Y -0 -3 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_Bourns_3009P_Horizontal -Potentiometer, horizontal, Bourns 3009P, http://www.bourns.com/docs/Product-Datasheets/3009.pdf -Potentiometer horizontal Bourns 3009P -0 -3 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_Bourns_3009Y_Horizontal -Potentiometer, horizontal, Bourns 3009Y, http://www.bourns.com/docs/Product-Datasheets/3009.pdf -Potentiometer horizontal Bourns 3009Y -0 -3 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_Bourns_3266P_Horizontal -Potentiometer, horizontal, Bourns 3266P, https://www.bourns.com/docs/Product-Datasheets/3266.pdf -Potentiometer horizontal Bourns 3266P -0 -3 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_Bourns_3266W_Vertical -Potentiometer, vertical, Bourns 3266W, https://www.bourns.com/docs/Product-Datasheets/3266.pdf -Potentiometer vertical Bourns 3266W -0 -3 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_Bourns_3266X_Horizontal -Potentiometer, horizontal, Bourns 3266X, https://www.bourns.com/docs/Product-Datasheets/3266.pdf -Potentiometer horizontal Bourns 3266X -0 -3 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_Bourns_3266Y_Vertical -Potentiometer, vertical, Bourns 3266Y, https://www.bourns.com/docs/Product-Datasheets/3266.pdf -Potentiometer vertical Bourns 3266Y -0 -3 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_Bourns_3266Z_Horizontal -Potentiometer, horizontal, Bourns 3266Z, https://www.bourns.com/docs/Product-Datasheets/3266.pdf -Potentiometer horizontal Bourns 3266Z -0 -3 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_Bourns_3296P_Horizontal -Potentiometer, horizontal, Bourns 3296P, https://www.bourns.com/pdfs/3296.pdf -Potentiometer horizontal Bourns 3296P -0 -3 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_Bourns_3296W_Vertical -Potentiometer, vertical, Bourns 3296W, https://www.bourns.com/pdfs/3296.pdf -Potentiometer vertical Bourns 3296W -0 -3 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_Bourns_3296X_Horizontal -Potentiometer, horizontal, Bourns 3296X, https://www.bourns.com/pdfs/3296.pdf -Potentiometer horizontal Bourns 3296X -0 -3 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_Bourns_3296Y_Vertical -Potentiometer, vertical, Bourns 3296Y, https://www.bourns.com/pdfs/3296.pdf -Potentiometer vertical Bourns 3296Y -0 -3 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_Bourns_3296Z_Horizontal -Potentiometer, horizontal, Bourns 3296Z, https://www.bourns.com/pdfs/3296.pdf -Potentiometer horizontal Bourns 3296Z -0 -3 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_Bourns_3299P_Horizontal -Potentiometer, horizontal, Bourns 3299P, https://www.bourns.com/pdfs/3299.pdf -Potentiometer horizontal Bourns 3299P -0 -3 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_Bourns_3299W_Vertical -Potentiometer, vertical, Bourns 3299W, https://www.bourns.com/pdfs/3299.pdf -Potentiometer vertical Bourns 3299W -0 -3 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_Bourns_3299X_Horizontal -Potentiometer, horizontal, Bourns 3299X, https://www.bourns.com/pdfs/3299.pdf -Potentiometer horizontal Bourns 3299X -0 -3 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_Bourns_3299Y_Vertical -Potentiometer, vertical, Bourns 3299Y, https://www.bourns.com/pdfs/3299.pdf -Potentiometer vertical Bourns 3299Y -0 -3 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_Bourns_3299Z_Horizontal -Potentiometer, horizontal, Bourns 3299Z, https://www.bourns.com/pdfs/3299.pdf -Potentiometer horizontal Bourns 3299Z -0 -3 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_Bourns_3339H_Vertical -Potentiometer, vertical, Bourns 3339H, http://www.bourns.com/docs/Product-Datasheets/3339.pdf -Potentiometer vertical Bourns 3339H -0 -3 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_Bourns_3339P_Vertical -Potentiometer, vertical, Bourns 3339P, http://www.bourns.com/docs/Product-Datasheets/3339.pdf -Potentiometer vertical Bourns 3339P -0 -3 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_Bourns_3339P_Vertical_HandSoldering -Potentiometer, vertical, Bourns 3339P, hand-soldering, http://www.bourns.com/docs/Product-Datasheets/3339.pdf -Potentiometer vertical Bourns 3339P hand-soldering -0 -3 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_Bourns_3339S_Horizontal -Potentiometer, horizontal, Bourns 3339S, http://www.bourns.com/docs/Product-Datasheets/3339.pdf -Potentiometer horizontal Bourns 3339S -0 -3 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_Bourns_3339W_Horizontal -Potentiometer, horizontal, Bourns 3339W, http://www.bourns.com/docs/Product-Datasheets/3339.pdf -Potentiometer horizontal Bourns 3339W -0 -3 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_Bourns_3386C_Horizontal -Potentiometer, horizontal, Bourns 3386C, https://www.bourns.com/pdfs/3386.pdf -Potentiometer horizontal Bourns 3386C -0 -3 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_Bourns_3386F_Vertical -Potentiometer, vertical, Bourns 3386F, https://www.bourns.com/pdfs/3386.pdf -Potentiometer vertical Bourns 3386F -0 -3 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_Bourns_3386P_Vertical -Potentiometer, vertical, Bourns 3386P, https://www.bourns.com/pdfs/3386.pdf -Potentiometer vertical Bourns 3386P -0 -3 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_Bourns_3386X_Horizontal -Potentiometer, horizontal, Bourns 3386X, https://www.bourns.com/pdfs/3386.pdf -Potentiometer horizontal Bourns 3386X -0 -3 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_Bourns_PTA1543_Single_Slide -Bourns single-gang slide potentiometer, 15.0mm travel, https://www.bourns.com/docs/Product-Datasheets/pta.pdf -Bourns single-gang slide potentiometer 15.0mm -0 -7 -4 -PCM_Potentiometer_THT_AKL -Potentiometer_Bourns_PTA2043_Single_Slide -Bourns single-gang slide potentiometer, 20.0mm travel, https://www.bourns.com/docs/Product-Datasheets/pta.pdf -Bourns single-gang slide potentiometer 20.0mm -0 -7 -4 -PCM_Potentiometer_THT_AKL -Potentiometer_Bourns_PTA3043_Single_Slide -Bourns single-gang slide potentiometer, 30.0mm travel, https://www.bourns.com/docs/Product-Datasheets/pta.pdf -Bourns single-gang slide potentiometer 30.0mm -0 -7 -4 -PCM_Potentiometer_THT_AKL -Potentiometer_Bourns_PTA4543_Single_Slide -Bourns single-gang slide potentiometer, 45.0mm travel, https://www.bourns.com/docs/Product-Datasheets/pta.pdf -Bourns single-gang slide potentiometer 45.0mm -0 -7 -4 -PCM_Potentiometer_THT_AKL -Potentiometer_Bourns_PTA6043_Single_Slide -Bourns single-gang slide potentiometer, 60.0mm travel, https://www.bourns.com/docs/Product-Datasheets/pta.pdf -Bourns single-gang slide potentiometer 60.0mm -0 -7 -4 -PCM_Potentiometer_THT_AKL -Potentiometer_Bourns_PTV09A-1_Single_Vertical -Potentiometer, vertical, Bourns PTV09A-1 Single, http://www.bourns.com/docs/Product-Datasheets/ptv09.pdf -Potentiometer vertical Bourns PTV09A-1 Single -0 -3 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_Bourns_PTV09A-2_Single_Horizontal -Potentiometer, horizontal, Bourns PTV09A-2 Single, http://www.bourns.com/docs/Product-Datasheets/ptv09.pdf -Potentiometer horizontal Bourns PTV09A-2 Single -0 -5 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_D22mm_H12.5mm -Wirewound Trimpot 22mm Diameter, 12.5mm Height, no datasheet available, measurements based on a physical example, Alternate KiCad Library -potentiometer pot trimpot 22mm diameter -0 -4 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_D22mm_H12.5mm_Hole -Wirewound Trimpot 22mm Diameter, 12.5mm Height, no datasheet available, measurements based on a physical example, Alternate KiCad Library -potentiometer pot trimpot 22mm diameter -0 -4 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_Omeg_PC16BU_Horizontal -Potentiometer, horizontal, Omeg PC16BU, http://www.omeg.co.uk/pc6bubrc.htm -Potentiometer horizontal Omeg PC16BU -0 -3 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_Omeg_PC16BU_Vertical -Potentiometer, vertical, Omeg PC16BU, http://www.omeg.co.uk/pc6bubrc.htm -Potentiometer vertical Omeg PC16BU -0 -3 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_Piher_PC-16_Dual_Horizontal -Potentiometer, horizontal, Piher PC-16 Dual, http://www.piher-nacesa.com/pdf/20-PC16v03.pdf -Potentiometer horizontal Piher PC-16 Dual -0 -6 -6 -PCM_Potentiometer_THT_AKL -Potentiometer_Piher_PC-16_Single_Horizontal -Potentiometer, horizontal, Piher PC-16 Single, http://www.piher-nacesa.com/pdf/20-PC16v03.pdf -Potentiometer horizontal Piher PC-16 Single -0 -3 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_Piher_PC-16_Single_Vertical -Potentiometer, vertical, Piher PC-16 Single, http://www.piher-nacesa.com/pdf/20-PC16v03.pdf -Potentiometer vertical Piher PC-16 Single -0 -3 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_Piher_PC-16_Triple_Horizontal -Potentiometer, horizontal, Piher PC-16 Triple, http://www.piher-nacesa.com/pdf/20-PC16v03.pdf -Potentiometer horizontal Piher PC-16 Triple -0 -9 -9 -PCM_Potentiometer_THT_AKL -Potentiometer_Piher_PT-6-H_Horizontal -Potentiometer, horizontal, Piher PT-6-H, http://www.piher-nacesa.com/pdf/11-PT6v03.pdf -Potentiometer horizontal Piher PT-6-H -0 -3 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_Piher_PT-6-V_Vertical -Potentiometer, vertical, Piher PT-6-V, http://www.piher-nacesa.com/pdf/11-PT6v03.pdf -Potentiometer vertical Piher PT-6-V -0 -3 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_Piher_PT-6-V_Vertical_Hole -Potentiometer, vertical, shaft hole, Piher PT-6-V, http://www.piher-nacesa.com/pdf/11-PT6v03.pdf -Potentiometer vertical hole Piher PT-6-V -0 -3 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_Piher_PT-10-H01_Horizontal -Potentiometer, horizontal, Piher PT-10-H01, http://www.piher-nacesa.com/pdf/12-PT10v03.pdf -Potentiometer horizontal Piher PT-10-H01 -0 -3 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_Piher_PT-10-H05_Horizontal -Potentiometer, horizontal, Piher PT-10-H05, http://www.piher-nacesa.com/pdf/12-PT10v03.pdf -Potentiometer horizontal Piher PT-10-H05 -0 -3 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_Piher_PT-10-V05_Vertical -Potentiometer, vertical, Piher PT-10-V05, http://www.piher-nacesa.com/pdf/12-PT10v03.pdf -Potentiometer vertical Piher PT-10-V05 -0 -3 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_Piher_PT-10-V10_Vertical -Potentiometer, vertical, Piher PT-10-V10, http://www.piher-nacesa.com/pdf/12-PT10v03.pdf -Potentiometer vertical Piher PT-10-V10 -0 -3 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_Piher_PT-10-V10_Vertical_Hole -Potentiometer, vertical, shaft hole, Piher PT-10-V10, http://www.piher-nacesa.com/pdf/12-PT10v03.pdf -Potentiometer vertical hole Piher PT-10-V10 -0 -3 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_Piher_PT-15-H01_Horizontal -Potentiometer, horizontal, Piher PT-15-H01, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf -Potentiometer horizontal Piher PT-15-H01 -0 -3 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_Piher_PT-15-H05_Horizontal -Potentiometer, horizontal, Piher PT-15-H05, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf -Potentiometer horizontal Piher PT-15-H05 -0 -3 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_Piher_PT-15-H06_Horizontal -Potentiometer, horizontal, Piher PT-15-H06, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf -Potentiometer horizontal Piher PT-15-H06 -0 -3 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_Piher_PT-15-H25_Horizontal -Potentiometer, horizontal, Piher PT-15-H25, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf -Potentiometer horizontal Piher PT-15-H25 -0 -3 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_Piher_PT-15-V02_Vertical -Potentiometer, vertical, Piher PT-15-V02, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf -Potentiometer vertical Piher PT-15-V02 -0 -3 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_Piher_PT-15-V02_Vertical_Hole -Potentiometer, vertical, shaft hole, Piher PT-15-V02, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf -Potentiometer vertical hole Piher PT-15-V02 -0 -3 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_Piher_PT-15-V15_Vertical -Potentiometer, vertical, Piher PT-15-V15, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf -Potentiometer vertical Piher PT-15-V15 -0 -3 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_Piher_PT-15-V15_Vertical_Hole -Potentiometer, vertical, shaft hole, Piher PT-15-V15, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf -Potentiometer vertical hole Piher PT-15-V15 -0 -3 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_Piher_T-16H_Double_Horizontal -Potentiometer, horizontal, Piher T-16H Double, http://www.piher-nacesa.com/pdf/22-T16v03.pdf -Potentiometer horizontal Piher T-16H Double -0 -6 -6 -PCM_Potentiometer_THT_AKL -Potentiometer_Piher_T-16H_Single_Horizontal -Potentiometer, horizontal, Piher T-16H Single, http://www.piher-nacesa.com/pdf/22-T16v03.pdf -Potentiometer horizontal Piher T-16H Single -0 -3 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_Piher_T-16L_Single_Vertical_Hole -Potentiometer, vertical, shaft hole, Piher T-16L Single, http://www.piher-nacesa.com/pdf/22-T16v03.pdf -Potentiometer vertical hole Piher T-16L Single -0 -3 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_Runtron_RM-063_Horizontal -Potentiometer, horizontal, Trimmer, RM-063 http://www.runtron.com/down/PDF%20Datasheet/Carbon%20Film%20Potentiometer/RM065%20RM063.pdf -Potentiometer Trimmer RM-063 -0 -3 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_Runtron_RM-065_Vertical -Potentiometer, vertical, Trimmer, RM-065 http://www.runtron.com/down/PDF%20Datasheet/Carbon%20Film%20Potentiometer/RM065%20RM063.pdf -Potentiometer Trimmer RM-065 -0 -3 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_TT_P0915N -http://www.ttelectronics.com/sites/default/files/download-files/Datasheet_PanelPot_P09xSeries.pdf -potentiometer vertical TT P0915N single -0 -5 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_Telpod_CN15.1 -Potentiometer, Horizontal, Cermet Trimmer, see: https://www.tme.eu/Document/9e1f2e7eeb18eaafc0c79dd4ded321d1/CN-15_EN.pdf, Alternate KiCad Library -potentiometer pot trimpot trimmer cn15 horizontal cermet -0 -3 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_Telpod_CN15.2 -Potentiometer, Horizontal, Cermet Trimmer, see: https://www.tme.eu/Document/9e1f2e7eeb18eaafc0c79dd4ded321d1/CN-15_EN.pdf, Alternate KiCad Library -potentiometer pot trimpot trimmer cn15 horizontal cermet -0 -3 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_Telpod_TVP1212 -Potentiometer, Horizontal, Trimmer, see: https://www.tme.eu/Document/74c8f084b4f3a91e95fcb6d7b40bba42/TVP-12%20datasheet%20EN.pdf, Alternate KiCad Library -potentiometer pot trimpot trimmer tvp12 horizontal -0 -3 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_Telpod_TVP1232 -Potentiometer, Vertical, Trimmer, see: https://www.tme.eu/Document/74c8f084b4f3a91e95fcb6d7b40bba42/TVP-12%20datasheet%20EN.pdf, Alternate KiCad Library -potentiometer pot trimpot trimmer tvp12 vertical -0 -3 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_Vishay_43_Horizontal -Potentiometer, horizontal, Vishay 43, http://www.vishay.com/docs/57026/43.pdf -Potentiometer horizontal Vishay 43 -0 -3 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_Vishay_148-149_Dual_Horizontal -Potentiometer, horizontal, Vishay 148-149 Dual, http://www.vishay.com/docs/57040/148149.pdf -Potentiometer horizontal Vishay 148-149 Dual -0 -6 -6 -PCM_Potentiometer_THT_AKL -Potentiometer_Vishay_148-149_Single_Horizontal -Potentiometer, horizontal, Vishay 148-149 Single, http://www.vishay.com/docs/57040/148149.pdf -Potentiometer horizontal Vishay 148-149 Single -0 -3 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_Vishay_148-149_Single_Vertical -Potentiometer, vertical, Vishay 148-149 Single, http://www.vishay.com/docs/57040/148149.pdf -Potentiometer vertical Vishay 148-149 Single -0 -3 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_Vishay_148E-149E_Dual_Horizontal -Potentiometer, horizontal, Vishay 148E-149E Dual, http://www.vishay.com/docs/57040/148149.pdf -Potentiometer horizontal Vishay 148E-149E Dual -0 -10 -6 -PCM_Potentiometer_THT_AKL -Potentiometer_Vishay_148E-149E_Single_Horizontal -Potentiometer, horizontal, Vishay 148E-149E Single, http://www.vishay.com/docs/57040/148149.pdf -Potentiometer horizontal Vishay 148E-149E Single -0 -7 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_Vishay_248BH-249BH_Single_Horizontal -Potentiometer, horizontal, Vishay 248BH-249BH Single, http://www.vishay.com/docs/57054/248249.pdf -Potentiometer horizontal Vishay 248BH-249BH Single -0 -3 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_Vishay_248GJ-249GJ_Single_Horizontal -Potentiometer, horizontal, Vishay 248GJ-249GJ Single, http://www.vishay.com/docs/57054/248249.pdf -Potentiometer horizontal Vishay 248GJ-249GJ Single -0 -3 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_Vishay_248GJ-249GJ_Single_Vertical -Potentiometer, vertical, Vishay 248GJ-249GJ Single, http://www.vishay.com/docs/57054/248249.pdf -Potentiometer vertical Vishay 248GJ-249GJ Single -0 -3 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_Vishay_T7-YA_Single_Vertical -Potentiometer, vertical, Vishay T7-YA Single, http://www.vishay.com/docs/51015/t7.pdf -Potentiometer vertical Vishay T7-YA Single -0 -3 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_Vishay_T73XW_Horizontal -Potentiometer, horizontal, Vishay T73XW, http://www.vishay.com/docs/51016/t73.pdf -Potentiometer horizontal Vishay T73XW -0 -3 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_Vishay_T73XX_Horizontal -Potentiometer, horizontal, Vishay T73XX, http://www.vishay.com/docs/51016/t73.pdf -Potentiometer horizontal Vishay T73XX -0 -3 -3 -PCM_Potentiometer_THT_AKL -Potentiometer_Vishay_T73YP_Vertical -Potentiometer, vertical, Vishay T73YP, http://www.vishay.com/docs/51016/t73.pdf -Potentiometer vertical Vishay T73YP -0 -3 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_ACP_CA6-H2,5_Horizontal -Potentiometer, horizontal, ACP CA6-H2,5, http://www.acptechnologies.com/wp-content/uploads/2017/06/01-ACP-CA6.pdf -Potentiometer horizontal ACP CA6-H2,5 -0 -3 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_ACP_CA9-H2,5_Horizontal -Potentiometer, horizontal, ACP CA9-H2,5, http://www.acptechnologies.com/wp-content/uploads/2017/05/02-ACP-CA9-CE9.pdf -Potentiometer horizontal ACP CA9-H2,5 -0 -3 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_ACP_CA9-H3,8_Horizontal -Potentiometer, horizontal, ACP CA9-H3,8, http://www.acptechnologies.com/wp-content/uploads/2017/05/02-ACP-CA9-CE9.pdf -Potentiometer horizontal ACP CA9-H3,8 -0 -3 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_ACP_CA9-H5_Horizontal -Potentiometer, horizontal, ACP CA9-H5, http://www.acptechnologies.com/wp-content/uploads/2017/05/02-ACP-CA9-CE9.pdf -Potentiometer horizontal ACP CA9-H5 -0 -3 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_ACP_CA9-V10_Vertical -Potentiometer, vertical, ACP CA9-V10, http://www.acptechnologies.com/wp-content/uploads/2017/05/02-ACP-CA9-CE9.pdf -Potentiometer vertical ACP CA9-V10 -0 -3 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_ACP_CA9-V10_Vertical_Hole -Potentiometer, vertical, shaft hole, ACP CA9-V10, http://www.acptechnologies.com/wp-content/uploads/2017/05/02-ACP-CA9-CE9.pdf -Potentiometer vertical hole ACP CA9-V10 -0 -3 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_ACP_CA14-H2,5_Horizontal -Potentiometer, horizontal, ACP CA14-H2,5, http://www.acptechnologies.com/wp-content/uploads/2017/10/03-ACP-CA14-CE14.pdf -Potentiometer horizontal ACP CA14-H2,5 -0 -3 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_ACP_CA14-H4_Horizontal -Potentiometer, horizontal, ACP CA14-H4, http://www.acptechnologies.com/wp-content/uploads/2017/10/03-ACP-CA14-CE14.pdf -Potentiometer horizontal ACP CA14-H4 -0 -3 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_ACP_CA14-H5_Horizontal -Potentiometer, horizontal, ACP CA14-H5, http://www.acptechnologies.com/wp-content/uploads/2017/10/03-ACP-CA14-CE14.pdf -Potentiometer horizontal ACP CA14-H5 -0 -3 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_ACP_CA14V-15_Vertical -Potentiometer, vertical, ACP CA14V-15, http://www.acptechnologies.com/wp-content/uploads/2017/10/03-ACP-CA14-CE14.pdf -Potentiometer vertical ACP CA14V-15 -0 -3 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_ACP_CA14V-15_Vertical_Hole -Potentiometer, vertical, shaft hole, ACP CA14V-15, http://www.acptechnologies.com/wp-content/uploads/2017/10/03-ACP-CA14-CE14.pdf -Potentiometer vertical hole ACP CA14V-15 -0 -3 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Alpha_RD901F-40-00D_Single_Vertical -Potentiometer, vertical, 9mm, single, http://www.taiwanalpha.com.tw/downloads?target=products&id=113 -potentiometer vertical 9mm single -0 -5 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Alpha_RD901F-40-00D_Single_Vertical_CircularHoles -Potentiometer, vertical, 9mm, single, http://www.taiwanalpha.com.tw/downloads?target=products&id=113 -potentiometer vertical 9mm single -0 -5 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Alpha_RD902F-40-00D_Dual_Vertical -Potentiometer, vertical, 9mm, dual, http://www.taiwanalpha.com.tw/downloads?target=products&id=113 -potentiometer vertical 9mm dual -0 -8 -6 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Alpha_RD902F-40-00D_Dual_Vertical_CircularHoles -Potentiometer, vertical, 9mm, dual, http://www.taiwanalpha.com.tw/downloads?target=products&id=113 -potentiometer vertical 9mm dual -0 -8 -6 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Alps_RK09K_Single_Horizontal -Potentiometer, horizontal, Alps RK09K Single, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK09K/RK09K_list.html -Potentiometer horizontal Alps RK09K Single -0 -5 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Alps_RK09K_Single_Vertical -Potentiometer, vertical, Alps RK09K Single, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK09K/RK09K_list.html -Potentiometer vertical Alps RK09K Single -0 -3 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Alps_RK09L_Double_Horizontal -Potentiometer, horizontal, Alps RK09L Double, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK09L/RK09L_list.html -Potentiometer horizontal Alps RK09L Double -0 -8 -6 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Alps_RK09L_Double_Vertical -Potentiometer, vertical, Alps RK09L Double, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK09L/RK09L_list.html -Potentiometer vertical Alps RK09L Double -0 -6 -6 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Alps_RK09L_Single_Horizontal -Potentiometer, horizontal, Alps RK09L Single, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK09L/RK09L_list.html -Potentiometer horizontal Alps RK09L Single -0 -5 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Alps_RK09L_Single_Vertical -Potentiometer, vertical, Alps RK09L Single, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK09L/RK09L_list.html -Potentiometer vertical Alps RK09L Single -0 -3 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Alps_RK09Y11_Single_Horizontal -Potentiometer, horizontal, Alps RK09Y11 Single, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK09Y11/RK09Y11_list.html -Potentiometer horizontal Alps RK09Y11 Single -0 -3 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Alps_RK097_Dual_Horizontal -Potentiometer, horizontal, Alps RK097 Dual, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK097/RK097_list.html -Potentiometer horizontal Alps RK097 Dual -0 -6 -6 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Alps_RK097_Single_Horizontal -Potentiometer, horizontal, Alps RK097 Single, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK097/RK097_list.html -Potentiometer horizontal Alps RK097 Single -0 -3 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Alps_RK163_Dual_Horizontal -Potentiometer, horizontal, Alps RK163 Dual, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK16/RK16_list.html -Potentiometer horizontal Alps RK163 Dual -0 -6 -6 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Alps_RK163_Single_Horizontal -Potentiometer, horizontal, Alps RK163 Single, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK16/RK16_list.html -Potentiometer horizontal Alps RK163 Single -0 -3 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Bourns_3005_Horizontal -Potentiometer, horizontal, Bourns 3005, http://www.bourns.com/docs/Product-Datasheets/3005.pdf -Potentiometer horizontal Bourns 3005 -0 -3 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Bourns_3006P_Horizontal -Potentiometer, horizontal, Bourns 3006P, https://www.bourns.com/docs/Product-Datasheets/3006.pdf -Potentiometer horizontal Bourns 3006P -0 -3 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Bourns_3006W_Horizontal -Potentiometer, horizontal, Bourns 3006W, https://www.bourns.com/docs/Product-Datasheets/3006.pdf -Potentiometer horizontal Bourns 3006W -0 -3 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Bourns_3006Y_Horizontal -Potentiometer, horizontal, Bourns 3006Y, https://www.bourns.com/docs/Product-Datasheets/3006.pdf -Potentiometer horizontal Bourns 3006Y -0 -3 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Bourns_3009P_Horizontal -Potentiometer, horizontal, Bourns 3009P, http://www.bourns.com/docs/Product-Datasheets/3009.pdf -Potentiometer horizontal Bourns 3009P -0 -3 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Bourns_3009Y_Horizontal -Potentiometer, horizontal, Bourns 3009Y, http://www.bourns.com/docs/Product-Datasheets/3009.pdf -Potentiometer horizontal Bourns 3009Y -0 -3 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Bourns_3266P_Horizontal -Potentiometer, horizontal, Bourns 3266P, https://www.bourns.com/docs/Product-Datasheets/3266.pdf -Potentiometer horizontal Bourns 3266P -0 -3 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Bourns_3266W_Vertical -Potentiometer, vertical, Bourns 3266W, https://www.bourns.com/docs/Product-Datasheets/3266.pdf -Potentiometer vertical Bourns 3266W -0 -3 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Bourns_3266X_Horizontal -Potentiometer, horizontal, Bourns 3266X, https://www.bourns.com/docs/Product-Datasheets/3266.pdf -Potentiometer horizontal Bourns 3266X -0 -3 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Bourns_3266Y_Vertical -Potentiometer, vertical, Bourns 3266Y, https://www.bourns.com/docs/Product-Datasheets/3266.pdf -Potentiometer vertical Bourns 3266Y -0 -3 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Bourns_3266Z_Horizontal -Potentiometer, horizontal, Bourns 3266Z, https://www.bourns.com/docs/Product-Datasheets/3266.pdf -Potentiometer horizontal Bourns 3266Z -0 -3 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Bourns_3296P_Horizontal -Potentiometer, horizontal, Bourns 3296P, https://www.bourns.com/pdfs/3296.pdf -Potentiometer horizontal Bourns 3296P -0 -3 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Bourns_3296W_Vertical -Potentiometer, vertical, Bourns 3296W, https://www.bourns.com/pdfs/3296.pdf -Potentiometer vertical Bourns 3296W -0 -3 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Bourns_3296X_Horizontal -Potentiometer, horizontal, Bourns 3296X, https://www.bourns.com/pdfs/3296.pdf -Potentiometer horizontal Bourns 3296X -0 -3 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Bourns_3296Y_Vertical -Potentiometer, vertical, Bourns 3296Y, https://www.bourns.com/pdfs/3296.pdf -Potentiometer vertical Bourns 3296Y -0 -3 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Bourns_3296Z_Horizontal -Potentiometer, horizontal, Bourns 3296Z, https://www.bourns.com/pdfs/3296.pdf -Potentiometer horizontal Bourns 3296Z -0 -3 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Bourns_3299P_Horizontal -Potentiometer, horizontal, Bourns 3299P, https://www.bourns.com/pdfs/3299.pdf -Potentiometer horizontal Bourns 3299P -0 -3 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Bourns_3299W_Vertical -Potentiometer, vertical, Bourns 3299W, https://www.bourns.com/pdfs/3299.pdf -Potentiometer vertical Bourns 3299W -0 -3 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Bourns_3299X_Horizontal -Potentiometer, horizontal, Bourns 3299X, https://www.bourns.com/pdfs/3299.pdf -Potentiometer horizontal Bourns 3299X -0 -3 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Bourns_3299Y_Vertical -Potentiometer, vertical, Bourns 3299Y, https://www.bourns.com/pdfs/3299.pdf -Potentiometer vertical Bourns 3299Y -0 -3 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Bourns_3299Z_Horizontal -Potentiometer, horizontal, Bourns 3299Z, https://www.bourns.com/pdfs/3299.pdf -Potentiometer horizontal Bourns 3299Z -0 -3 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Bourns_3339H_Vertical -Potentiometer, vertical, Bourns 3339H, http://www.bourns.com/docs/Product-Datasheets/3339.pdf -Potentiometer vertical Bourns 3339H -0 -3 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Bourns_3339P_Vertical -Potentiometer, vertical, Bourns 3339P, http://www.bourns.com/docs/Product-Datasheets/3339.pdf -Potentiometer vertical Bourns 3339P -0 -3 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Bourns_3339P_Vertical_HandSoldering -Potentiometer, vertical, Bourns 3339P, hand-soldering, http://www.bourns.com/docs/Product-Datasheets/3339.pdf -Potentiometer vertical Bourns 3339P hand-soldering -0 -3 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Bourns_3339S_Horizontal -Potentiometer, horizontal, Bourns 3339S, http://www.bourns.com/docs/Product-Datasheets/3339.pdf -Potentiometer horizontal Bourns 3339S -0 -3 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Bourns_3339W_Horizontal -Potentiometer, horizontal, Bourns 3339W, http://www.bourns.com/docs/Product-Datasheets/3339.pdf -Potentiometer horizontal Bourns 3339W -0 -3 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Bourns_3386C_Horizontal -Potentiometer, horizontal, Bourns 3386C, https://www.bourns.com/pdfs/3386.pdf -Potentiometer horizontal Bourns 3386C -0 -3 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Bourns_3386F_Vertical -Potentiometer, vertical, Bourns 3386F, https://www.bourns.com/pdfs/3386.pdf -Potentiometer vertical Bourns 3386F -0 -3 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Bourns_3386P_Vertical -Potentiometer, vertical, Bourns 3386P, https://www.bourns.com/pdfs/3386.pdf -Potentiometer vertical Bourns 3386P -0 -3 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Bourns_3386X_Horizontal -Potentiometer, horizontal, Bourns 3386X, https://www.bourns.com/pdfs/3386.pdf -Potentiometer horizontal Bourns 3386X -0 -3 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Bourns_PTV09A-1_Single_Vertical -Potentiometer, vertical, Bourns PTV09A-1 Single, http://www.bourns.com/docs/Product-Datasheets/ptv09.pdf -Potentiometer vertical Bourns PTV09A-1 Single -0 -3 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Bourns_PTV09A-2_Single_Horizontal -Potentiometer, horizontal, Bourns PTV09A-2 Single, http://www.bourns.com/docs/Product-Datasheets/ptv09.pdf -Potentiometer horizontal Bourns PTV09A-2 Single -0 -5 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_D22mm_H12.5mm -Wirewound Trimpot 22mm Diameter, 12.5mm Height, no datasheet available, measurements based on a physical example, Alternate KiCad Library -potentiometer pot trimpot 22mm diameter -0 -4 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_D22mm_H12.5mm_Hole -Wirewound Trimpot 22mm Diameter, 12.5mm Height, no datasheet available, measurements based on a physical example, Alternate KiCad Library -potentiometer pot trimpot 22mm diameter -0 -4 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Omeg_PC16BU_Horizontal -Potentiometer, horizontal, Omeg PC16BU, http://www.omeg.co.uk/pc6bubrc.htm -Potentiometer horizontal Omeg PC16BU -0 -3 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Omeg_PC16BU_Vertical -Potentiometer, vertical, Omeg PC16BU, http://www.omeg.co.uk/pc6bubrc.htm -Potentiometer vertical Omeg PC16BU -0 -3 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Piher_PC-16_Dual_Horizontal -Potentiometer, horizontal, Piher PC-16 Dual, http://www.piher-nacesa.com/pdf/20-PC16v03.pdf -Potentiometer horizontal Piher PC-16 Dual -0 -6 -6 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Piher_PC-16_Single_Horizontal -Potentiometer, horizontal, Piher PC-16 Single, http://www.piher-nacesa.com/pdf/20-PC16v03.pdf -Potentiometer horizontal Piher PC-16 Single -0 -3 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Piher_PC-16_Single_Vertical -Potentiometer, vertical, Piher PC-16 Single, http://www.piher-nacesa.com/pdf/20-PC16v03.pdf -Potentiometer vertical Piher PC-16 Single -0 -3 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Piher_PC-16_Triple_Horizontal -Potentiometer, horizontal, Piher PC-16 Triple, http://www.piher-nacesa.com/pdf/20-PC16v03.pdf -Potentiometer horizontal Piher PC-16 Triple -0 -9 -9 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Piher_PT-6-H_Horizontal -Potentiometer, horizontal, Piher PT-6-H, http://www.piher-nacesa.com/pdf/11-PT6v03.pdf -Potentiometer horizontal Piher PT-6-H -0 -3 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Piher_PT-6-V_Vertical -Potentiometer, vertical, Piher PT-6-V, http://www.piher-nacesa.com/pdf/11-PT6v03.pdf -Potentiometer vertical Piher PT-6-V -0 -3 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Piher_PT-6-V_Vertical_Hole -Potentiometer, vertical, shaft hole, Piher PT-6-V, http://www.piher-nacesa.com/pdf/11-PT6v03.pdf -Potentiometer vertical hole Piher PT-6-V -0 -3 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Piher_PT-10-H05_Horizontal -Potentiometer, horizontal, Piher PT-10-H05, http://www.piher-nacesa.com/pdf/12-PT10v03.pdf -Potentiometer horizontal Piher PT-10-H05 -0 -3 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Piher_PT-10-V05_Vertical -Potentiometer, vertical, Piher PT-10-V05, http://www.piher-nacesa.com/pdf/12-PT10v03.pdf -Potentiometer vertical Piher PT-10-V05 -0 -3 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Piher_PT-10-V10_Vertical -Potentiometer, vertical, Piher PT-10-V10, http://www.piher-nacesa.com/pdf/12-PT10v03.pdf -Potentiometer vertical Piher PT-10-V10 -0 -3 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Piher_PT-10-V10_Vertical_Hole -Potentiometer, vertical, shaft hole, Piher PT-10-V10, http://www.piher-nacesa.com/pdf/12-PT10v03.pdf -Potentiometer vertical hole Piher PT-10-V10 -0 -3 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Piher_PT-15-H01_Horizontal -Potentiometer, horizontal, Piher PT-15-H01, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf -Potentiometer horizontal Piher PT-15-H01 -0 -3 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Piher_PT-15-H05_Horizontal -Potentiometer, horizontal, Piher PT-15-H05, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf -Potentiometer horizontal Piher PT-15-H05 -0 -3 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Piher_PT-15-H06_Horizontal -Potentiometer, horizontal, Piher PT-15-H06, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf -Potentiometer horizontal Piher PT-15-H06 -0 -3 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Piher_PT-15-H25_Horizontal -Potentiometer, horizontal, Piher PT-15-H25, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf -Potentiometer horizontal Piher PT-15-H25 -0 -3 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Piher_PT-15-V02_Vertical -Potentiometer, vertical, Piher PT-15-V02, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf -Potentiometer vertical Piher PT-15-V02 -0 -3 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Piher_PT-15-V02_Vertical_Hole -Potentiometer, vertical, shaft hole, Piher PT-15-V02, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf -Potentiometer vertical hole Piher PT-15-V02 -0 -3 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Piher_PT-15-V15_Vertical -Potentiometer, vertical, Piher PT-15-V15, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf -Potentiometer vertical Piher PT-15-V15 -0 -3 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Piher_PT-15-V15_Vertical_Hole -Potentiometer, vertical, shaft hole, Piher PT-15-V15, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf -Potentiometer vertical hole Piher PT-15-V15 -0 -3 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Piher_T-16H_Double_Horizontal -Potentiometer, horizontal, Piher T-16H Double, http://www.piher-nacesa.com/pdf/22-T16v03.pdf -Potentiometer horizontal Piher T-16H Double -0 -6 -6 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Piher_T-16H_Single_Horizontal -Potentiometer, horizontal, Piher T-16H Single, http://www.piher-nacesa.com/pdf/22-T16v03.pdf -Potentiometer horizontal Piher T-16H Single -0 -3 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Piher_T-16L_Single_Vertical_Hole -Potentiometer, vertical, shaft hole, Piher T-16L Single, http://www.piher-nacesa.com/pdf/22-T16v03.pdf -Potentiometer vertical hole Piher T-16L Single -0 -3 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Runtron_RM-063_Horizontal -Potentiometer, horizontal, Trimmer, RM-063 http://www.runtron.com/down/PDF%20Datasheet/Carbon%20Film%20Potentiometer/RM065%20RM063.pdf -Potentiometer Trimmer RM-063 -0 -3 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Runtron_RM-065_Vertical -Potentiometer, vertical, Trimmer, RM-065 http://www.runtron.com/down/PDF%20Datasheet/Carbon%20Film%20Potentiometer/RM065%20RM063.pdf -Potentiometer Trimmer RM-065 -0 -3 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_TT_P0915N -http://www.ttelectronics.com/sites/default/files/download-files/Datasheet_PanelPot_P09xSeries.pdf -potentiometer vertical TT P0915N single -0 -5 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Telpod_CN15.1 -Potentiometer, Horizontal, Cermet Trimmer, see: https://www.tme.eu/Document/9e1f2e7eeb18eaafc0c79dd4ded321d1/CN-15_EN.pdf, Alternate KiCad Library -potentiometer pot trimpot trimmer cn15 horizontal cermet -0 -3 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Telpod_CN15.2 -Potentiometer, Horizontal, Cermet Trimmer, see: https://www.tme.eu/Document/9e1f2e7eeb18eaafc0c79dd4ded321d1/CN-15_EN.pdf, Alternate KiCad Library -potentiometer pot trimpot trimmer cn15 horizontal cermet -0 -3 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Telpod_TVP1212 -Potentiometer, Horizontal, Trimmer, see: https://www.tme.eu/Document/74c8f084b4f3a91e95fcb6d7b40bba42/TVP-12%20datasheet%20EN.pdf, Alternate KiCad Library -potentiometer pot trimpot trimmer tvp12 horizontal -0 -3 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Telpod_TVP1232 -Potentiometer, Vertical, Trimmer, see: https://www.tme.eu/Document/74c8f084b4f3a91e95fcb6d7b40bba42/TVP-12%20datasheet%20EN.pdf, Alternate KiCad Library -potentiometer pot trimpot trimmer tvp12 vertical -0 -3 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Vishay_43_Horizontal -Potentiometer, horizontal, Vishay 43, http://www.vishay.com/docs/57026/43.pdf -Potentiometer horizontal Vishay 43 -0 -3 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Vishay_148-149_Dual_Horizontal -Potentiometer, horizontal, Vishay 148-149 Dual, http://www.vishay.com/docs/57040/148149.pdf -Potentiometer horizontal Vishay 148-149 Dual -0 -6 -6 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Vishay_148-149_Single_Horizontal -Potentiometer, horizontal, Vishay 148-149 Single, http://www.vishay.com/docs/57040/148149.pdf -Potentiometer horizontal Vishay 148-149 Single -0 -3 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Vishay_148-149_Single_Vertical -Potentiometer, vertical, Vishay 148-149 Single, http://www.vishay.com/docs/57040/148149.pdf -Potentiometer vertical Vishay 148-149 Single -0 -3 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Vishay_148E-149E_Dual_Horizontal -Potentiometer, horizontal, Vishay 148E-149E Dual, http://www.vishay.com/docs/57040/148149.pdf -Potentiometer horizontal Vishay 148E-149E Dual -0 -10 -6 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Vishay_148E-149E_Single_Horizontal -Potentiometer, horizontal, Vishay 148E-149E Single, http://www.vishay.com/docs/57040/148149.pdf -Potentiometer horizontal Vishay 148E-149E Single -0 -7 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Vishay_248BH-249BH_Single_Horizontal -Potentiometer, horizontal, Vishay 248BH-249BH Single, http://www.vishay.com/docs/57054/248249.pdf -Potentiometer horizontal Vishay 248BH-249BH Single -0 -3 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Vishay_248GJ-249GJ_Single_Horizontal -Potentiometer, horizontal, Vishay 248GJ-249GJ Single, http://www.vishay.com/docs/57054/248249.pdf -Potentiometer horizontal Vishay 248GJ-249GJ Single -0 -3 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Vishay_248GJ-249GJ_Single_Vertical -Potentiometer, vertical, Vishay 248GJ-249GJ Single, http://www.vishay.com/docs/57054/248249.pdf -Potentiometer vertical Vishay 248GJ-249GJ Single -0 -3 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Vishay_T7-YA_Single_Vertical -Potentiometer, vertical, Vishay T7-YA Single, http://www.vishay.com/docs/51015/t7.pdf -Potentiometer vertical Vishay T7-YA Single -0 -3 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Vishay_T73XW_Horizontal -Potentiometer, horizontal, Vishay T73XW, http://www.vishay.com/docs/51016/t73.pdf -Potentiometer horizontal Vishay T73XW -0 -3 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Vishay_T73XX_Horizontal -Potentiometer, horizontal, Vishay T73XX, http://www.vishay.com/docs/51016/t73.pdf -Potentiometer horizontal Vishay T73XX -0 -3 -3 -PCM_Potentiometer_THT_AKL_Double -Potentiometer_Vishay_T73YP_Vertical -Potentiometer, vertical, Vishay T73YP, http://www.vishay.com/docs/51016/t73.pdf -Potentiometer vertical Vishay T73YP -0 -3 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_ACP_CA6-H2,5_Horizontal -Potentiometer, horizontal, ACP CA6-H2,5, http://www.acptechnologies.com/wp-content/uploads/2017/06/01-ACP-CA6.pdf -Potentiometer horizontal ACP CA6-H2,5 -0 -3 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_ACP_CA9-H2,5_Horizontal -Potentiometer, horizontal, ACP CA9-H2,5, http://www.acptechnologies.com/wp-content/uploads/2017/05/02-ACP-CA9-CE9.pdf -Potentiometer horizontal ACP CA9-H2,5 -0 -3 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_ACP_CA9-H3,8_Horizontal -Potentiometer, horizontal, ACP CA9-H3,8, http://www.acptechnologies.com/wp-content/uploads/2017/05/02-ACP-CA9-CE9.pdf -Potentiometer horizontal ACP CA9-H3,8 -0 -3 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_ACP_CA9-H5_Horizontal -Potentiometer, horizontal, ACP CA9-H5, http://www.acptechnologies.com/wp-content/uploads/2017/05/02-ACP-CA9-CE9.pdf -Potentiometer horizontal ACP CA9-H5 -0 -3 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_ACP_CA9-V10_Vertical -Potentiometer, vertical, ACP CA9-V10, http://www.acptechnologies.com/wp-content/uploads/2017/05/02-ACP-CA9-CE9.pdf -Potentiometer vertical ACP CA9-V10 -0 -3 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_ACP_CA9-V10_Vertical_Hole -Potentiometer, vertical, shaft hole, ACP CA9-V10, http://www.acptechnologies.com/wp-content/uploads/2017/05/02-ACP-CA9-CE9.pdf -Potentiometer vertical hole ACP CA9-V10 -0 -3 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_ACP_CA14-H2,5_Horizontal -Potentiometer, horizontal, ACP CA14-H2,5, http://www.acptechnologies.com/wp-content/uploads/2017/10/03-ACP-CA14-CE14.pdf -Potentiometer horizontal ACP CA14-H2,5 -0 -3 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_ACP_CA14-H4_Horizontal -Potentiometer, horizontal, ACP CA14-H4, http://www.acptechnologies.com/wp-content/uploads/2017/10/03-ACP-CA14-CE14.pdf -Potentiometer horizontal ACP CA14-H4 -0 -3 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_ACP_CA14-H5_Horizontal -Potentiometer, horizontal, ACP CA14-H5, http://www.acptechnologies.com/wp-content/uploads/2017/10/03-ACP-CA14-CE14.pdf -Potentiometer horizontal ACP CA14-H5 -0 -3 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_ACP_CA14V-15_Vertical -Potentiometer, vertical, ACP CA14V-15, http://www.acptechnologies.com/wp-content/uploads/2017/10/03-ACP-CA14-CE14.pdf -Potentiometer vertical ACP CA14V-15 -0 -3 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_ACP_CA14V-15_Vertical_Hole -Potentiometer, vertical, shaft hole, ACP CA14V-15, http://www.acptechnologies.com/wp-content/uploads/2017/10/03-ACP-CA14-CE14.pdf -Potentiometer vertical hole ACP CA14V-15 -0 -3 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Alpha_RD901F-40-00D_Single_Vertical -Potentiometer, vertical, 9mm, single, http://www.taiwanalpha.com.tw/downloads?target=products&id=113 -potentiometer vertical 9mm single -0 -5 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Alpha_RD901F-40-00D_Single_Vertical_CircularHoles -Potentiometer, vertical, 9mm, single, http://www.taiwanalpha.com.tw/downloads?target=products&id=113 -potentiometer vertical 9mm single -0 -5 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Alpha_RD902F-40-00D_Dual_Vertical -Potentiometer, vertical, 9mm, dual, http://www.taiwanalpha.com.tw/downloads?target=products&id=113 -potentiometer vertical 9mm dual -0 -8 -6 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Alpha_RD902F-40-00D_Dual_Vertical_CircularHoles -Potentiometer, vertical, 9mm, dual, http://www.taiwanalpha.com.tw/downloads?target=products&id=113 -potentiometer vertical 9mm dual -0 -8 -6 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Alps_RK09K_Single_Horizontal -Potentiometer, horizontal, Alps RK09K Single, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK09K/RK09K_list.html -Potentiometer horizontal Alps RK09K Single -0 -5 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Alps_RK09K_Single_Vertical -Potentiometer, vertical, Alps RK09K Single, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK09K/RK09K_list.html -Potentiometer vertical Alps RK09K Single -0 -3 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Alps_RK09L_Double_Horizontal -Potentiometer, horizontal, Alps RK09L Double, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK09L/RK09L_list.html -Potentiometer horizontal Alps RK09L Double -0 -8 -6 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Alps_RK09L_Double_Vertical -Potentiometer, vertical, Alps RK09L Double, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK09L/RK09L_list.html -Potentiometer vertical Alps RK09L Double -0 -6 -6 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Alps_RK09L_Single_Horizontal -Potentiometer, horizontal, Alps RK09L Single, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK09L/RK09L_list.html -Potentiometer horizontal Alps RK09L Single -0 -5 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Alps_RK09L_Single_Vertical -Potentiometer, vertical, Alps RK09L Single, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK09L/RK09L_list.html -Potentiometer vertical Alps RK09L Single -0 -3 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Alps_RK09Y11_Single_Horizontal -Potentiometer, horizontal, Alps RK09Y11 Single, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK09Y11/RK09Y11_list.html -Potentiometer horizontal Alps RK09Y11 Single -0 -3 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Alps_RK097_Dual_Horizontal -Potentiometer, horizontal, Alps RK097 Dual, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK097/RK097_list.html -Potentiometer horizontal Alps RK097 Dual -0 -6 -6 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Alps_RK097_Single_Horizontal -Potentiometer, horizontal, Alps RK097 Single, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK097/RK097_list.html -Potentiometer horizontal Alps RK097 Single -0 -3 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Alps_RK163_Dual_Horizontal -Potentiometer, horizontal, Alps RK163 Dual, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK16/RK16_list.html -Potentiometer horizontal Alps RK163 Dual -0 -6 -6 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Alps_RK163_Single_Horizontal -Potentiometer, horizontal, Alps RK163 Single, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK16/RK16_list.html -Potentiometer horizontal Alps RK163 Single -0 -3 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Bourns_3005_Horizontal -Potentiometer, horizontal, Bourns 3005, http://www.bourns.com/docs/Product-Datasheets/3005.pdf -Potentiometer horizontal Bourns 3005 -0 -3 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Bourns_3006P_Horizontal -Potentiometer, horizontal, Bourns 3006P, https://www.bourns.com/docs/Product-Datasheets/3006.pdf -Potentiometer horizontal Bourns 3006P -0 -3 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Bourns_3006W_Horizontal -Potentiometer, horizontal, Bourns 3006W, https://www.bourns.com/docs/Product-Datasheets/3006.pdf -Potentiometer horizontal Bourns 3006W -0 -3 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Bourns_3006Y_Horizontal -Potentiometer, horizontal, Bourns 3006Y, https://www.bourns.com/docs/Product-Datasheets/3006.pdf -Potentiometer horizontal Bourns 3006Y -0 -3 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Bourns_3009P_Horizontal -Potentiometer, horizontal, Bourns 3009P, http://www.bourns.com/docs/Product-Datasheets/3009.pdf -Potentiometer horizontal Bourns 3009P -0 -3 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Bourns_3009Y_Horizontal -Potentiometer, horizontal, Bourns 3009Y, http://www.bourns.com/docs/Product-Datasheets/3009.pdf -Potentiometer horizontal Bourns 3009Y -0 -3 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Bourns_3266P_Horizontal -Potentiometer, horizontal, Bourns 3266P, https://www.bourns.com/docs/Product-Datasheets/3266.pdf -Potentiometer horizontal Bourns 3266P -0 -3 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Bourns_3266W_Vertical -Potentiometer, vertical, Bourns 3266W, https://www.bourns.com/docs/Product-Datasheets/3266.pdf -Potentiometer vertical Bourns 3266W -0 -3 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Bourns_3266X_Horizontal -Potentiometer, horizontal, Bourns 3266X, https://www.bourns.com/docs/Product-Datasheets/3266.pdf -Potentiometer horizontal Bourns 3266X -0 -3 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Bourns_3266Y_Vertical -Potentiometer, vertical, Bourns 3266Y, https://www.bourns.com/docs/Product-Datasheets/3266.pdf -Potentiometer vertical Bourns 3266Y -0 -3 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Bourns_3266Z_Horizontal -Potentiometer, horizontal, Bourns 3266Z, https://www.bourns.com/docs/Product-Datasheets/3266.pdf -Potentiometer horizontal Bourns 3266Z -0 -3 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Bourns_3296P_Horizontal -Potentiometer, horizontal, Bourns 3296P, https://www.bourns.com/pdfs/3296.pdf -Potentiometer horizontal Bourns 3296P -0 -3 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Bourns_3296W_Vertical -Potentiometer, vertical, Bourns 3296W, https://www.bourns.com/pdfs/3296.pdf -Potentiometer vertical Bourns 3296W -0 -3 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Bourns_3296X_Horizontal -Potentiometer, horizontal, Bourns 3296X, https://www.bourns.com/pdfs/3296.pdf -Potentiometer horizontal Bourns 3296X -0 -3 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Bourns_3296Y_Vertical -Potentiometer, vertical, Bourns 3296Y, https://www.bourns.com/pdfs/3296.pdf -Potentiometer vertical Bourns 3296Y -0 -3 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Bourns_3296Z_Horizontal -Potentiometer, horizontal, Bourns 3296Z, https://www.bourns.com/pdfs/3296.pdf -Potentiometer horizontal Bourns 3296Z -0 -3 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Bourns_3299P_Horizontal -Potentiometer, horizontal, Bourns 3299P, https://www.bourns.com/pdfs/3299.pdf -Potentiometer horizontal Bourns 3299P -0 -3 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Bourns_3299W_Vertical -Potentiometer, vertical, Bourns 3299W, https://www.bourns.com/pdfs/3299.pdf -Potentiometer vertical Bourns 3299W -0 -3 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Bourns_3299X_Horizontal -Potentiometer, horizontal, Bourns 3299X, https://www.bourns.com/pdfs/3299.pdf -Potentiometer horizontal Bourns 3299X -0 -3 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Bourns_3299Y_Vertical -Potentiometer, vertical, Bourns 3299Y, https://www.bourns.com/pdfs/3299.pdf -Potentiometer vertical Bourns 3299Y -0 -3 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Bourns_3299Z_Horizontal -Potentiometer, horizontal, Bourns 3299Z, https://www.bourns.com/pdfs/3299.pdf -Potentiometer horizontal Bourns 3299Z -0 -3 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Bourns_3339H_Vertical -Potentiometer, vertical, Bourns 3339H, http://www.bourns.com/docs/Product-Datasheets/3339.pdf -Potentiometer vertical Bourns 3339H -0 -3 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Bourns_3339P_Vertical -Potentiometer, vertical, Bourns 3339P, http://www.bourns.com/docs/Product-Datasheets/3339.pdf -Potentiometer vertical Bourns 3339P -0 -3 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Bourns_3339P_Vertical_HandSoldering -Potentiometer, vertical, Bourns 3339P, hand-soldering, http://www.bourns.com/docs/Product-Datasheets/3339.pdf -Potentiometer vertical Bourns 3339P hand-soldering -0 -3 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Bourns_3339S_Horizontal -Potentiometer, horizontal, Bourns 3339S, http://www.bourns.com/docs/Product-Datasheets/3339.pdf -Potentiometer horizontal Bourns 3339S -0 -3 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Bourns_3339W_Horizontal -Potentiometer, horizontal, Bourns 3339W, http://www.bourns.com/docs/Product-Datasheets/3339.pdf -Potentiometer horizontal Bourns 3339W -0 -3 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Bourns_3386C_Horizontal -Potentiometer, horizontal, Bourns 3386C, https://www.bourns.com/pdfs/3386.pdf -Potentiometer horizontal Bourns 3386C -0 -3 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Bourns_3386F_Vertical -Potentiometer, vertical, Bourns 3386F, https://www.bourns.com/pdfs/3386.pdf -Potentiometer vertical Bourns 3386F -0 -3 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Bourns_3386P_Vertical -Potentiometer, vertical, Bourns 3386P, https://www.bourns.com/pdfs/3386.pdf -Potentiometer vertical Bourns 3386P -0 -3 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Bourns_3386X_Horizontal -Potentiometer, horizontal, Bourns 3386X, https://www.bourns.com/pdfs/3386.pdf -Potentiometer horizontal Bourns 3386X -0 -3 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Bourns_PTA1543_Single_Slide -Bourns single-gang slide potentiometer, 15.0mm travel, https://www.bourns.com/docs/Product-Datasheets/pta.pdf -Bourns single-gang slide potentiometer 15.0mm -0 -7 -4 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Bourns_PTA2043_Single_Slide -Bourns single-gang slide potentiometer, 20.0mm travel, https://www.bourns.com/docs/Product-Datasheets/pta.pdf -Bourns single-gang slide potentiometer 20.0mm -0 -7 -4 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Bourns_PTA3043_Single_Slide -Bourns single-gang slide potentiometer, 30.0mm travel, https://www.bourns.com/docs/Product-Datasheets/pta.pdf -Bourns single-gang slide potentiometer 30.0mm -0 -7 -4 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Bourns_PTA4543_Single_Slide -Bourns single-gang slide potentiometer, 45.0mm travel, https://www.bourns.com/docs/Product-Datasheets/pta.pdf -Bourns single-gang slide potentiometer 45.0mm -0 -7 -4 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Bourns_PTA6043_Single_Slide -Bourns single-gang slide potentiometer, 60.0mm travel, https://www.bourns.com/docs/Product-Datasheets/pta.pdf -Bourns single-gang slide potentiometer 60.0mm -0 -7 -4 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Bourns_PTV09A-1_Single_Vertical -Potentiometer, vertical, Bourns PTV09A-1 Single, http://www.bourns.com/docs/Product-Datasheets/ptv09.pdf -Potentiometer vertical Bourns PTV09A-1 Single -0 -3 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Bourns_PTV09A-2_Single_Horizontal -Potentiometer, horizontal, Bourns PTV09A-2 Single, http://www.bourns.com/docs/Product-Datasheets/ptv09.pdf -Potentiometer horizontal Bourns PTV09A-2 Single -0 -5 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_D22mm_H12.5mm -Wirewound Trimpot 22mm Diameter, 12.5mm Height, no datasheet available, measurements based on a physical example, Alternate KiCad Library -potentiometer pot trimpot 22mm diameter -0 -4 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_D22mm_H12.5mm_Hole -Wirewound Trimpot 22mm Diameter, 12.5mm Height, no datasheet available, measurements based on a physical example, Alternate KiCad Library -potentiometer pot trimpot 22mm diameter -0 -4 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Omeg_PC16BU_Horizontal -Potentiometer, horizontal, Omeg PC16BU, http://www.omeg.co.uk/pc6bubrc.htm -Potentiometer horizontal Omeg PC16BU -0 -3 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Omeg_PC16BU_Vertical -Potentiometer, vertical, Omeg PC16BU, http://www.omeg.co.uk/pc6bubrc.htm -Potentiometer vertical Omeg PC16BU -0 -3 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Piher_PC-16_Dual_Horizontal -Potentiometer, horizontal, Piher PC-16 Dual, http://www.piher-nacesa.com/pdf/20-PC16v03.pdf -Potentiometer horizontal Piher PC-16 Dual -0 -6 -6 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Piher_PC-16_Single_Horizontal -Potentiometer, horizontal, Piher PC-16 Single, http://www.piher-nacesa.com/pdf/20-PC16v03.pdf -Potentiometer horizontal Piher PC-16 Single -0 -3 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Piher_PC-16_Single_Vertical -Potentiometer, vertical, Piher PC-16 Single, http://www.piher-nacesa.com/pdf/20-PC16v03.pdf -Potentiometer vertical Piher PC-16 Single -0 -3 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Piher_PC-16_Triple_Horizontal -Potentiometer, horizontal, Piher PC-16 Triple, http://www.piher-nacesa.com/pdf/20-PC16v03.pdf -Potentiometer horizontal Piher PC-16 Triple -0 -9 -9 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Piher_PT-6-H_Horizontal -Potentiometer, horizontal, Piher PT-6-H, http://www.piher-nacesa.com/pdf/11-PT6v03.pdf -Potentiometer horizontal Piher PT-6-H -0 -3 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Piher_PT-6-V_Vertical -Potentiometer, vertical, Piher PT-6-V, http://www.piher-nacesa.com/pdf/11-PT6v03.pdf -Potentiometer vertical Piher PT-6-V -0 -3 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Piher_PT-6-V_Vertical_Hole -Potentiometer, vertical, shaft hole, Piher PT-6-V, http://www.piher-nacesa.com/pdf/11-PT6v03.pdf -Potentiometer vertical hole Piher PT-6-V -0 -3 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Piher_PT-10-H01_Horizontal -Potentiometer, horizontal, Piher PT-10-H01, http://www.piher-nacesa.com/pdf/12-PT10v03.pdf -Potentiometer horizontal Piher PT-10-H01 -0 -3 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Piher_PT-10-H05_Horizontal -Potentiometer, horizontal, Piher PT-10-H05, http://www.piher-nacesa.com/pdf/12-PT10v03.pdf -Potentiometer horizontal Piher PT-10-H05 -0 -3 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Piher_PT-10-V05_Vertical -Potentiometer, vertical, Piher PT-10-V05, http://www.piher-nacesa.com/pdf/12-PT10v03.pdf -Potentiometer vertical Piher PT-10-V05 -0 -3 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Piher_PT-10-V10_Vertical -Potentiometer, vertical, Piher PT-10-V10, http://www.piher-nacesa.com/pdf/12-PT10v03.pdf -Potentiometer vertical Piher PT-10-V10 -0 -3 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Piher_PT-10-V10_Vertical_Hole -Potentiometer, vertical, shaft hole, Piher PT-10-V10, http://www.piher-nacesa.com/pdf/12-PT10v03.pdf -Potentiometer vertical hole Piher PT-10-V10 -0 -3 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Piher_PT-15-H01_Horizontal -Potentiometer, horizontal, Piher PT-15-H01, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf -Potentiometer horizontal Piher PT-15-H01 -0 -3 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Piher_PT-15-H05_Horizontal -Potentiometer, horizontal, Piher PT-15-H05, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf -Potentiometer horizontal Piher PT-15-H05 -0 -3 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Piher_PT-15-H06_Horizontal -Potentiometer, horizontal, Piher PT-15-H06, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf -Potentiometer horizontal Piher PT-15-H06 -0 -3 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Piher_PT-15-H25_Horizontal -Potentiometer, horizontal, Piher PT-15-H25, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf -Potentiometer horizontal Piher PT-15-H25 -0 -3 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Piher_PT-15-V02_Vertical -Potentiometer, vertical, Piher PT-15-V02, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf -Potentiometer vertical Piher PT-15-V02 -0 -3 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Piher_PT-15-V02_Vertical_Hole -Potentiometer, vertical, shaft hole, Piher PT-15-V02, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf -Potentiometer vertical hole Piher PT-15-V02 -0 -3 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Piher_PT-15-V15_Vertical -Potentiometer, vertical, Piher PT-15-V15, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf -Potentiometer vertical Piher PT-15-V15 -0 -3 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Piher_PT-15-V15_Vertical_Hole -Potentiometer, vertical, shaft hole, Piher PT-15-V15, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf -Potentiometer vertical hole Piher PT-15-V15 -0 -3 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Piher_T-16H_Double_Horizontal -Potentiometer, horizontal, Piher T-16H Double, http://www.piher-nacesa.com/pdf/22-T16v03.pdf -Potentiometer horizontal Piher T-16H Double -0 -6 -6 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Piher_T-16H_Single_Horizontal -Potentiometer, horizontal, Piher T-16H Single, http://www.piher-nacesa.com/pdf/22-T16v03.pdf -Potentiometer horizontal Piher T-16H Single -0 -3 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Piher_T-16L_Single_Vertical_Hole -Potentiometer, vertical, shaft hole, Piher T-16L Single, http://www.piher-nacesa.com/pdf/22-T16v03.pdf -Potentiometer vertical hole Piher T-16L Single -0 -3 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Runtron_RM-063_Horizontal -Potentiometer, horizontal, Trimmer, RM-063 http://www.runtron.com/down/PDF%20Datasheet/Carbon%20Film%20Potentiometer/RM065%20RM063.pdf -Potentiometer Trimmer RM-063 -0 -3 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Runtron_RM-065_Vertical -Potentiometer, vertical, Trimmer, RM-065 http://www.runtron.com/down/PDF%20Datasheet/Carbon%20Film%20Potentiometer/RM065%20RM063.pdf -Potentiometer Trimmer RM-065 -0 -3 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_TT_P0915N -http://www.ttelectronics.com/sites/default/files/download-files/Datasheet_PanelPot_P09xSeries.pdf -potentiometer vertical TT P0915N single -0 -5 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Telpod_CN15.1 -Potentiometer, Horizontal, Cermet Trimmer, see: https://www.tme.eu/Document/9e1f2e7eeb18eaafc0c79dd4ded321d1/CN-15_EN.pdf, Alternate KiCad Library -potentiometer pot trimpot trimmer cn15 horizontal cermet -0 -3 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Telpod_CN15.2 -Potentiometer, Horizontal, Cermet Trimmer, see: https://www.tme.eu/Document/9e1f2e7eeb18eaafc0c79dd4ded321d1/CN-15_EN.pdf, Alternate KiCad Library -potentiometer pot trimpot trimmer cn15 horizontal cermet -0 -3 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Telpod_TVP1212 -Potentiometer, Horizontal, Trimmer, see: https://www.tme.eu/Document/74c8f084b4f3a91e95fcb6d7b40bba42/TVP-12%20datasheet%20EN.pdf, Alternate KiCad Library -potentiometer pot trimpot trimmer tvp12 horizontal -0 -3 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Telpod_TVP1232 -Potentiometer, Vertical, Trimmer, see: https://www.tme.eu/Document/74c8f084b4f3a91e95fcb6d7b40bba42/TVP-12%20datasheet%20EN.pdf, Alternate KiCad Library -potentiometer pot trimpot trimmer tvp12 vertical -0 -3 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Vishay_43_Horizontal -Potentiometer, horizontal, Vishay 43, http://www.vishay.com/docs/57026/43.pdf -Potentiometer horizontal Vishay 43 -0 -3 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Vishay_148-149_Dual_Horizontal -Potentiometer, horizontal, Vishay 148-149 Dual, http://www.vishay.com/docs/57040/148149.pdf -Potentiometer horizontal Vishay 148-149 Dual -0 -6 -6 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Vishay_148-149_Single_Horizontal -Potentiometer, horizontal, Vishay 148-149 Single, http://www.vishay.com/docs/57040/148149.pdf -Potentiometer horizontal Vishay 148-149 Single -0 -3 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Vishay_148-149_Single_Vertical -Potentiometer, vertical, Vishay 148-149 Single, http://www.vishay.com/docs/57040/148149.pdf -Potentiometer vertical Vishay 148-149 Single -0 -3 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Vishay_148E-149E_Dual_Horizontal -Potentiometer, horizontal, Vishay 148E-149E Dual, http://www.vishay.com/docs/57040/148149.pdf -Potentiometer horizontal Vishay 148E-149E Dual -0 -10 -6 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Vishay_148E-149E_Single_Horizontal -Potentiometer, horizontal, Vishay 148E-149E Single, http://www.vishay.com/docs/57040/148149.pdf -Potentiometer horizontal Vishay 148E-149E Single -0 -7 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Vishay_248BH-249BH_Single_Horizontal -Potentiometer, horizontal, Vishay 248BH-249BH Single, http://www.vishay.com/docs/57054/248249.pdf -Potentiometer horizontal Vishay 248BH-249BH Single -0 -3 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Vishay_248GJ-249GJ_Single_Horizontal -Potentiometer, horizontal, Vishay 248GJ-249GJ Single, http://www.vishay.com/docs/57054/248249.pdf -Potentiometer horizontal Vishay 248GJ-249GJ Single -0 -3 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Vishay_248GJ-249GJ_Single_Vertical -Potentiometer, vertical, Vishay 248GJ-249GJ Single, http://www.vishay.com/docs/57054/248249.pdf -Potentiometer vertical Vishay 248GJ-249GJ Single -0 -3 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Vishay_T7-YA_Single_Vertical -Potentiometer, vertical, Vishay T7-YA Single, http://www.vishay.com/docs/51015/t7.pdf -Potentiometer vertical Vishay T7-YA Single -0 -3 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Vishay_T73XW_Horizontal -Potentiometer, horizontal, Vishay T73XW, http://www.vishay.com/docs/51016/t73.pdf -Potentiometer horizontal Vishay T73XW -0 -3 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Vishay_T73XX_Horizontal -Potentiometer, horizontal, Vishay T73XX, http://www.vishay.com/docs/51016/t73.pdf -Potentiometer horizontal Vishay T73XX -0 -3 -3 -PCM_Potentiometer_THT_US_AKL -Potentiometer_Vishay_T73YP_Vertical -Potentiometer, vertical, Vishay T73YP, http://www.vishay.com/docs/51016/t73.pdf -Potentiometer vertical Vishay T73YP -0 -3 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_ACP_CA6-H2,5_Horizontal -Potentiometer, horizontal, ACP CA6-H2,5, http://www.acptechnologies.com/wp-content/uploads/2017/06/01-ACP-CA6.pdf -Potentiometer horizontal ACP CA6-H2,5 -0 -3 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_ACP_CA9-H2,5_Horizontal -Potentiometer, horizontal, ACP CA9-H2,5, http://www.acptechnologies.com/wp-content/uploads/2017/05/02-ACP-CA9-CE9.pdf -Potentiometer horizontal ACP CA9-H2,5 -0 -3 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_ACP_CA9-H3,8_Horizontal -Potentiometer, horizontal, ACP CA9-H3,8, http://www.acptechnologies.com/wp-content/uploads/2017/05/02-ACP-CA9-CE9.pdf -Potentiometer horizontal ACP CA9-H3,8 -0 -3 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_ACP_CA9-H5_Horizontal -Potentiometer, horizontal, ACP CA9-H5, http://www.acptechnologies.com/wp-content/uploads/2017/05/02-ACP-CA9-CE9.pdf -Potentiometer horizontal ACP CA9-H5 -0 -3 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_ACP_CA9-V10_Vertical -Potentiometer, vertical, ACP CA9-V10, http://www.acptechnologies.com/wp-content/uploads/2017/05/02-ACP-CA9-CE9.pdf -Potentiometer vertical ACP CA9-V10 -0 -3 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_ACP_CA9-V10_Vertical_Hole -Potentiometer, vertical, shaft hole, ACP CA9-V10, http://www.acptechnologies.com/wp-content/uploads/2017/05/02-ACP-CA9-CE9.pdf -Potentiometer vertical hole ACP CA9-V10 -0 -3 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_ACP_CA14-H2,5_Horizontal -Potentiometer, horizontal, ACP CA14-H2,5, http://www.acptechnologies.com/wp-content/uploads/2017/10/03-ACP-CA14-CE14.pdf -Potentiometer horizontal ACP CA14-H2,5 -0 -3 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_ACP_CA14-H4_Horizontal -Potentiometer, horizontal, ACP CA14-H4, http://www.acptechnologies.com/wp-content/uploads/2017/10/03-ACP-CA14-CE14.pdf -Potentiometer horizontal ACP CA14-H4 -0 -3 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_ACP_CA14-H5_Horizontal -Potentiometer, horizontal, ACP CA14-H5, http://www.acptechnologies.com/wp-content/uploads/2017/10/03-ACP-CA14-CE14.pdf -Potentiometer horizontal ACP CA14-H5 -0 -3 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_ACP_CA14V-15_Vertical -Potentiometer, vertical, ACP CA14V-15, http://www.acptechnologies.com/wp-content/uploads/2017/10/03-ACP-CA14-CE14.pdf -Potentiometer vertical ACP CA14V-15 -0 -3 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_ACP_CA14V-15_Vertical_Hole -Potentiometer, vertical, shaft hole, ACP CA14V-15, http://www.acptechnologies.com/wp-content/uploads/2017/10/03-ACP-CA14-CE14.pdf -Potentiometer vertical hole ACP CA14V-15 -0 -3 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Alpha_RD901F-40-00D_Single_Vertical -Potentiometer, vertical, 9mm, single, http://www.taiwanalpha.com.tw/downloads?target=products&id=113 -potentiometer vertical 9mm single -0 -5 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Alpha_RD901F-40-00D_Single_Vertical_CircularHoles -Potentiometer, vertical, 9mm, single, http://www.taiwanalpha.com.tw/downloads?target=products&id=113 -potentiometer vertical 9mm single -0 -5 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Alpha_RD902F-40-00D_Dual_Vertical -Potentiometer, vertical, 9mm, dual, http://www.taiwanalpha.com.tw/downloads?target=products&id=113 -potentiometer vertical 9mm dual -0 -8 -6 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Alpha_RD902F-40-00D_Dual_Vertical_CircularHoles -Potentiometer, vertical, 9mm, dual, http://www.taiwanalpha.com.tw/downloads?target=products&id=113 -potentiometer vertical 9mm dual -0 -8 -6 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Alps_RK09K_Single_Horizontal -Potentiometer, horizontal, Alps RK09K Single, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK09K/RK09K_list.html -Potentiometer horizontal Alps RK09K Single -0 -5 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Alps_RK09K_Single_Vertical -Potentiometer, vertical, Alps RK09K Single, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK09K/RK09K_list.html -Potentiometer vertical Alps RK09K Single -0 -3 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Alps_RK09L_Double_Horizontal -Potentiometer, horizontal, Alps RK09L Double, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK09L/RK09L_list.html -Potentiometer horizontal Alps RK09L Double -0 -8 -6 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Alps_RK09L_Double_Vertical -Potentiometer, vertical, Alps RK09L Double, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK09L/RK09L_list.html -Potentiometer vertical Alps RK09L Double -0 -6 -6 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Alps_RK09L_Single_Horizontal -Potentiometer, horizontal, Alps RK09L Single, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK09L/RK09L_list.html -Potentiometer horizontal Alps RK09L Single -0 -5 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Alps_RK09L_Single_Vertical -Potentiometer, vertical, Alps RK09L Single, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK09L/RK09L_list.html -Potentiometer vertical Alps RK09L Single -0 -3 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Alps_RK09Y11_Single_Horizontal -Potentiometer, horizontal, Alps RK09Y11 Single, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK09Y11/RK09Y11_list.html -Potentiometer horizontal Alps RK09Y11 Single -0 -3 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Alps_RK097_Dual_Horizontal -Potentiometer, horizontal, Alps RK097 Dual, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK097/RK097_list.html -Potentiometer horizontal Alps RK097 Dual -0 -6 -6 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Alps_RK097_Single_Horizontal -Potentiometer, horizontal, Alps RK097 Single, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK097/RK097_list.html -Potentiometer horizontal Alps RK097 Single -0 -3 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Alps_RK163_Dual_Horizontal -Potentiometer, horizontal, Alps RK163 Dual, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK16/RK16_list.html -Potentiometer horizontal Alps RK163 Dual -0 -6 -6 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Alps_RK163_Single_Horizontal -Potentiometer, horizontal, Alps RK163 Single, http://www.alps.com/prod/info/E/HTML/Potentiometer/RotaryPotentiometers/RK16/RK16_list.html -Potentiometer horizontal Alps RK163 Single -0 -3 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Bourns_3005_Horizontal -Potentiometer, horizontal, Bourns 3005, http://www.bourns.com/docs/Product-Datasheets/3005.pdf -Potentiometer horizontal Bourns 3005 -0 -3 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Bourns_3006P_Horizontal -Potentiometer, horizontal, Bourns 3006P, https://www.bourns.com/docs/Product-Datasheets/3006.pdf -Potentiometer horizontal Bourns 3006P -0 -3 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Bourns_3006W_Horizontal -Potentiometer, horizontal, Bourns 3006W, https://www.bourns.com/docs/Product-Datasheets/3006.pdf -Potentiometer horizontal Bourns 3006W -0 -3 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Bourns_3006Y_Horizontal -Potentiometer, horizontal, Bourns 3006Y, https://www.bourns.com/docs/Product-Datasheets/3006.pdf -Potentiometer horizontal Bourns 3006Y -0 -3 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Bourns_3009P_Horizontal -Potentiometer, horizontal, Bourns 3009P, http://www.bourns.com/docs/Product-Datasheets/3009.pdf -Potentiometer horizontal Bourns 3009P -0 -3 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Bourns_3009Y_Horizontal -Potentiometer, horizontal, Bourns 3009Y, http://www.bourns.com/docs/Product-Datasheets/3009.pdf -Potentiometer horizontal Bourns 3009Y -0 -3 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Bourns_3266P_Horizontal -Potentiometer, horizontal, Bourns 3266P, https://www.bourns.com/docs/Product-Datasheets/3266.pdf -Potentiometer horizontal Bourns 3266P -0 -3 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Bourns_3266W_Vertical -Potentiometer, vertical, Bourns 3266W, https://www.bourns.com/docs/Product-Datasheets/3266.pdf -Potentiometer vertical Bourns 3266W -0 -3 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Bourns_3266X_Horizontal -Potentiometer, horizontal, Bourns 3266X, https://www.bourns.com/docs/Product-Datasheets/3266.pdf -Potentiometer horizontal Bourns 3266X -0 -3 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Bourns_3266Y_Vertical -Potentiometer, vertical, Bourns 3266Y, https://www.bourns.com/docs/Product-Datasheets/3266.pdf -Potentiometer vertical Bourns 3266Y -0 -3 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Bourns_3266Z_Horizontal -Potentiometer, horizontal, Bourns 3266Z, https://www.bourns.com/docs/Product-Datasheets/3266.pdf -Potentiometer horizontal Bourns 3266Z -0 -3 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Bourns_3296P_Horizontal -Potentiometer, horizontal, Bourns 3296P, https://www.bourns.com/pdfs/3296.pdf -Potentiometer horizontal Bourns 3296P -0 -3 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Bourns_3296W_Vertical -Potentiometer, vertical, Bourns 3296W, https://www.bourns.com/pdfs/3296.pdf -Potentiometer vertical Bourns 3296W -0 -3 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Bourns_3296X_Horizontal -Potentiometer, horizontal, Bourns 3296X, https://www.bourns.com/pdfs/3296.pdf -Potentiometer horizontal Bourns 3296X -0 -3 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Bourns_3296Y_Vertical -Potentiometer, vertical, Bourns 3296Y, https://www.bourns.com/pdfs/3296.pdf -Potentiometer vertical Bourns 3296Y -0 -3 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Bourns_3296Z_Horizontal -Potentiometer, horizontal, Bourns 3296Z, https://www.bourns.com/pdfs/3296.pdf -Potentiometer horizontal Bourns 3296Z -0 -3 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Bourns_3299P_Horizontal -Potentiometer, horizontal, Bourns 3299P, https://www.bourns.com/pdfs/3299.pdf -Potentiometer horizontal Bourns 3299P -0 -3 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Bourns_3299W_Vertical -Potentiometer, vertical, Bourns 3299W, https://www.bourns.com/pdfs/3299.pdf -Potentiometer vertical Bourns 3299W -0 -3 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Bourns_3299X_Horizontal -Potentiometer, horizontal, Bourns 3299X, https://www.bourns.com/pdfs/3299.pdf -Potentiometer horizontal Bourns 3299X -0 -3 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Bourns_3299Y_Vertical -Potentiometer, vertical, Bourns 3299Y, https://www.bourns.com/pdfs/3299.pdf -Potentiometer vertical Bourns 3299Y -0 -3 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Bourns_3299Z_Horizontal -Potentiometer, horizontal, Bourns 3299Z, https://www.bourns.com/pdfs/3299.pdf -Potentiometer horizontal Bourns 3299Z -0 -3 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Bourns_3339H_Vertical -Potentiometer, vertical, Bourns 3339H, http://www.bourns.com/docs/Product-Datasheets/3339.pdf -Potentiometer vertical Bourns 3339H -0 -3 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Bourns_3339P_Vertical -Potentiometer, vertical, Bourns 3339P, http://www.bourns.com/docs/Product-Datasheets/3339.pdf -Potentiometer vertical Bourns 3339P -0 -3 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Bourns_3339P_Vertical_HandSoldering -Potentiometer, vertical, Bourns 3339P, hand-soldering, http://www.bourns.com/docs/Product-Datasheets/3339.pdf -Potentiometer vertical Bourns 3339P hand-soldering -0 -3 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Bourns_3339S_Horizontal -Potentiometer, horizontal, Bourns 3339S, http://www.bourns.com/docs/Product-Datasheets/3339.pdf -Potentiometer horizontal Bourns 3339S -0 -3 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Bourns_3339W_Horizontal -Potentiometer, horizontal, Bourns 3339W, http://www.bourns.com/docs/Product-Datasheets/3339.pdf -Potentiometer horizontal Bourns 3339W -0 -3 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Bourns_3386C_Horizontal -Potentiometer, horizontal, Bourns 3386C, https://www.bourns.com/pdfs/3386.pdf -Potentiometer horizontal Bourns 3386C -0 -3 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Bourns_3386F_Vertical -Potentiometer, vertical, Bourns 3386F, https://www.bourns.com/pdfs/3386.pdf -Potentiometer vertical Bourns 3386F -0 -3 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Bourns_3386P_Vertical -Potentiometer, vertical, Bourns 3386P, https://www.bourns.com/pdfs/3386.pdf -Potentiometer vertical Bourns 3386P -0 -3 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Bourns_3386X_Horizontal -Potentiometer, horizontal, Bourns 3386X, https://www.bourns.com/pdfs/3386.pdf -Potentiometer horizontal Bourns 3386X -0 -3 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Bourns_PTV09A-1_Single_Vertical -Potentiometer, vertical, Bourns PTV09A-1 Single, http://www.bourns.com/docs/Product-Datasheets/ptv09.pdf -Potentiometer vertical Bourns PTV09A-1 Single -0 -3 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Bourns_PTV09A-2_Single_Horizontal -Potentiometer, horizontal, Bourns PTV09A-2 Single, http://www.bourns.com/docs/Product-Datasheets/ptv09.pdf -Potentiometer horizontal Bourns PTV09A-2 Single -0 -5 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_D22mm_H12.5mm -Wirewound Trimpot 22mm Diameter, 12.5mm Height, no datasheet available, measurements based on a physical example, Alternate KiCad Library -potentiometer pot trimpot 22mm diameter -0 -4 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_D22mm_H12.5mm_Hole -Wirewound Trimpot 22mm Diameter, 12.5mm Height, no datasheet available, measurements based on a physical example, Alternate KiCad Library -potentiometer pot trimpot 22mm diameter -0 -4 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Omeg_PC16BU_Horizontal -Potentiometer, horizontal, Omeg PC16BU, http://www.omeg.co.uk/pc6bubrc.htm -Potentiometer horizontal Omeg PC16BU -0 -3 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Omeg_PC16BU_Vertical -Potentiometer, vertical, Omeg PC16BU, http://www.omeg.co.uk/pc6bubrc.htm -Potentiometer vertical Omeg PC16BU -0 -3 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Piher_PC-16_Dual_Horizontal -Potentiometer, horizontal, Piher PC-16 Dual, http://www.piher-nacesa.com/pdf/20-PC16v03.pdf -Potentiometer horizontal Piher PC-16 Dual -0 -6 -6 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Piher_PC-16_Single_Horizontal -Potentiometer, horizontal, Piher PC-16 Single, http://www.piher-nacesa.com/pdf/20-PC16v03.pdf -Potentiometer horizontal Piher PC-16 Single -0 -3 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Piher_PC-16_Single_Vertical -Potentiometer, vertical, Piher PC-16 Single, http://www.piher-nacesa.com/pdf/20-PC16v03.pdf -Potentiometer vertical Piher PC-16 Single -0 -3 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Piher_PC-16_Triple_Horizontal -Potentiometer, horizontal, Piher PC-16 Triple, http://www.piher-nacesa.com/pdf/20-PC16v03.pdf -Potentiometer horizontal Piher PC-16 Triple -0 -9 -9 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Piher_PT-6-H_Horizontal -Potentiometer, horizontal, Piher PT-6-H, http://www.piher-nacesa.com/pdf/11-PT6v03.pdf -Potentiometer horizontal Piher PT-6-H -0 -3 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Piher_PT-6-V_Vertical -Potentiometer, vertical, Piher PT-6-V, http://www.piher-nacesa.com/pdf/11-PT6v03.pdf -Potentiometer vertical Piher PT-6-V -0 -3 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Piher_PT-6-V_Vertical_Hole -Potentiometer, vertical, shaft hole, Piher PT-6-V, http://www.piher-nacesa.com/pdf/11-PT6v03.pdf -Potentiometer vertical hole Piher PT-6-V -0 -3 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Piher_PT-10-H01_Horizontal -Potentiometer, horizontal, Piher PT-10-H01, http://www.piher-nacesa.com/pdf/12-PT10v03.pdf -Potentiometer horizontal Piher PT-10-H01 -0 -3 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Piher_PT-10-H05_Horizontal -Potentiometer, horizontal, Piher PT-10-H05, http://www.piher-nacesa.com/pdf/12-PT10v03.pdf -Potentiometer horizontal Piher PT-10-H05 -0 -3 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Piher_PT-10-V05_Vertical -Potentiometer, vertical, Piher PT-10-V05, http://www.piher-nacesa.com/pdf/12-PT10v03.pdf -Potentiometer vertical Piher PT-10-V05 -0 -3 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Piher_PT-10-V10_Vertical -Potentiometer, vertical, Piher PT-10-V10, http://www.piher-nacesa.com/pdf/12-PT10v03.pdf -Potentiometer vertical Piher PT-10-V10 -0 -3 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Piher_PT-10-V10_Vertical_Hole -Potentiometer, vertical, shaft hole, Piher PT-10-V10, http://www.piher-nacesa.com/pdf/12-PT10v03.pdf -Potentiometer vertical hole Piher PT-10-V10 -0 -3 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Piher_PT-15-H01_Horizontal -Potentiometer, horizontal, Piher PT-15-H01, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf -Potentiometer horizontal Piher PT-15-H01 -0 -3 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Piher_PT-15-H05_Horizontal -Potentiometer, horizontal, Piher PT-15-H05, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf -Potentiometer horizontal Piher PT-15-H05 -0 -3 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Piher_PT-15-H06_Horizontal -Potentiometer, horizontal, Piher PT-15-H06, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf -Potentiometer horizontal Piher PT-15-H06 -0 -3 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Piher_PT-15-H25_Horizontal -Potentiometer, horizontal, Piher PT-15-H25, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf -Potentiometer horizontal Piher PT-15-H25 -0 -3 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Piher_PT-15-V02_Vertical -Potentiometer, vertical, Piher PT-15-V02, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf -Potentiometer vertical Piher PT-15-V02 -0 -3 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Piher_PT-15-V02_Vertical_Hole -Potentiometer, vertical, shaft hole, Piher PT-15-V02, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf -Potentiometer vertical hole Piher PT-15-V02 -0 -3 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Piher_PT-15-V15_Vertical -Potentiometer, vertical, Piher PT-15-V15, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf -Potentiometer vertical Piher PT-15-V15 -0 -3 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Piher_PT-15-V15_Vertical_Hole -Potentiometer, vertical, shaft hole, Piher PT-15-V15, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf -Potentiometer vertical hole Piher PT-15-V15 -0 -3 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Piher_T-16H_Double_Horizontal -Potentiometer, horizontal, Piher T-16H Double, http://www.piher-nacesa.com/pdf/22-T16v03.pdf -Potentiometer horizontal Piher T-16H Double -0 -6 -6 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Piher_T-16H_Single_Horizontal -Potentiometer, horizontal, Piher T-16H Single, http://www.piher-nacesa.com/pdf/22-T16v03.pdf -Potentiometer horizontal Piher T-16H Single -0 -3 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Piher_T-16L_Single_Vertical_Hole -Potentiometer, vertical, shaft hole, Piher T-16L Single, http://www.piher-nacesa.com/pdf/22-T16v03.pdf -Potentiometer vertical hole Piher T-16L Single -0 -3 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Runtron_RM-063_Horizontal -Potentiometer, horizontal, Trimmer, RM-063 http://www.runtron.com/down/PDF%20Datasheet/Carbon%20Film%20Potentiometer/RM065%20RM063.pdf -Potentiometer Trimmer RM-063 -0 -3 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Runtron_RM-065_Vertical -Potentiometer, vertical, Trimmer, RM-065 http://www.runtron.com/down/PDF%20Datasheet/Carbon%20Film%20Potentiometer/RM065%20RM063.pdf -Potentiometer Trimmer RM-065 -0 -3 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_TT_P0915N -http://www.ttelectronics.com/sites/default/files/download-files/Datasheet_PanelPot_P09xSeries.pdf -potentiometer vertical TT P0915N single -0 -5 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Telpod_CN15.1 -Potentiometer, Horizontal, Cermet Trimmer, see: https://www.tme.eu/Document/9e1f2e7eeb18eaafc0c79dd4ded321d1/CN-15_EN.pdf, Alternate KiCad Library -potentiometer pot trimpot trimmer cn15 horizontal cermet -0 -3 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Telpod_CN15.2 -Potentiometer, Horizontal, Cermet Trimmer, see: https://www.tme.eu/Document/9e1f2e7eeb18eaafc0c79dd4ded321d1/CN-15_EN.pdf, Alternate KiCad Library -potentiometer pot trimpot trimmer cn15 horizontal cermet -0 -3 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Telpod_TVP1212 -Potentiometer, Horizontal, Trimmer, see: https://www.tme.eu/Document/74c8f084b4f3a91e95fcb6d7b40bba42/TVP-12%20datasheet%20EN.pdf, Alternate KiCad Library -potentiometer pot trimpot trimmer tvp12 horizontal -0 -3 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Telpod_TVP1232 -Potentiometer, Vertical, Trimmer, see: https://www.tme.eu/Document/74c8f084b4f3a91e95fcb6d7b40bba42/TVP-12%20datasheet%20EN.pdf, Alternate KiCad Library -potentiometer pot trimpot trimmer tvp12 vertical -0 -3 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Vishay_43_Horizontal -Potentiometer, horizontal, Vishay 43, http://www.vishay.com/docs/57026/43.pdf -Potentiometer horizontal Vishay 43 -0 -3 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Vishay_148-149_Dual_Horizontal -Potentiometer, horizontal, Vishay 148-149 Dual, http://www.vishay.com/docs/57040/148149.pdf -Potentiometer horizontal Vishay 148-149 Dual -0 -6 -6 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Vishay_148-149_Single_Horizontal -Potentiometer, horizontal, Vishay 148-149 Single, http://www.vishay.com/docs/57040/148149.pdf -Potentiometer horizontal Vishay 148-149 Single -0 -3 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Vishay_148-149_Single_Vertical -Potentiometer, vertical, Vishay 148-149 Single, http://www.vishay.com/docs/57040/148149.pdf -Potentiometer vertical Vishay 148-149 Single -0 -3 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Vishay_148E-149E_Dual_Horizontal -Potentiometer, horizontal, Vishay 148E-149E Dual, http://www.vishay.com/docs/57040/148149.pdf -Potentiometer horizontal Vishay 148E-149E Dual -0 -10 -6 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Vishay_148E-149E_Single_Horizontal -Potentiometer, horizontal, Vishay 148E-149E Single, http://www.vishay.com/docs/57040/148149.pdf -Potentiometer horizontal Vishay 148E-149E Single -0 -7 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Vishay_248BH-249BH_Single_Horizontal -Potentiometer, horizontal, Vishay 248BH-249BH Single, http://www.vishay.com/docs/57054/248249.pdf -Potentiometer horizontal Vishay 248BH-249BH Single -0 -3 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Vishay_248GJ-249GJ_Single_Horizontal -Potentiometer, horizontal, Vishay 248GJ-249GJ Single, http://www.vishay.com/docs/57054/248249.pdf -Potentiometer horizontal Vishay 248GJ-249GJ Single -0 -3 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Vishay_248GJ-249GJ_Single_Vertical -Potentiometer, vertical, Vishay 248GJ-249GJ Single, http://www.vishay.com/docs/57054/248249.pdf -Potentiometer vertical Vishay 248GJ-249GJ Single -0 -3 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Vishay_T7-YA_Single_Vertical -Potentiometer, vertical, Vishay T7-YA Single, http://www.vishay.com/docs/51015/t7.pdf -Potentiometer vertical Vishay T7-YA Single -0 -3 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Vishay_T73XW_Horizontal -Potentiometer, horizontal, Vishay T73XW, http://www.vishay.com/docs/51016/t73.pdf -Potentiometer horizontal Vishay T73XW -0 -3 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Vishay_T73XX_Horizontal -Potentiometer, horizontal, Vishay T73XX, http://www.vishay.com/docs/51016/t73.pdf -Potentiometer horizontal Vishay T73XX -0 -3 -3 -PCM_Potentiometer_THT_US_AKL_Double -Potentiometer_Vishay_T73YP_Vertical -Potentiometer, vertical, Vishay T73YP, http://www.vishay.com/docs/51016/t73.pdf -Potentiometer vertical Vishay T73YP -0 -3 -3 -PCM_Resistor_SMD_AKL -R_0201_0603Metric -Resistor SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), Alternate KiCad Library -resistor -0 -4 -2 -PCM_Resistor_SMD_AKL -R_0201_0603Metric_Pad0.64x0.40mm -Resistor SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), Alternate KiCad Library -resistor handsolder -0 -4 -2 -PCM_Resistor_SMD_AKL -R_0201_0603Metric_Pad0.64x0.40mm_HandSolder -Resistor SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), Alternate KiCad Library -resistor handsolder -0 -4 -2 -PCM_Resistor_SMD_AKL -R_0402_1005Metric -Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library -resistor -0 -2 -2 -PCM_Resistor_SMD_AKL -R_0402_1005Metric_Pad0.72x0.64mm -Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library -resistor handsolder -0 -2 -2 -PCM_Resistor_SMD_AKL -R_0402_1005Metric_Pad0.72x0.64mm_HandSolder -Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library -resistor handsolder -0 -2 -2 -PCM_Resistor_SMD_AKL -R_0603_1608Metric -Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library -resistor -0 -2 -2 -PCM_Resistor_SMD_AKL -R_0603_1608Metric_Pad0.98x0.95mm -Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library -resistor handsolder -0 -2 -2 -PCM_Resistor_SMD_AKL -R_0603_1608Metric_Pad0.98x0.95mm_HandSolder -Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library -resistor handsolder -0 -2 -2 -PCM_Resistor_SMD_AKL -R_0603_1608Metric_Pad1.05x0.95mm -Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -resistor handsolder -0 -2 -2 -PCM_Resistor_SMD_AKL -R_0603_1608Metric_Pad1.05x0.95mm_HandSolder -Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -resistor handsolder -0 -2 -2 -PCM_Resistor_SMD_AKL -R_0612_1632Metric -Resistor SMD 0612 (1632 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20019/rcwe.pdf), Alternate KiCad Library -resistor -0 -2 -2 -PCM_Resistor_SMD_AKL -R_0612_1632Metric_Pad1.18x3.40mm -Resistor SMD 0612 (1632 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.vishay.com/docs/20019/rcwe.pdf), Alternate KiCad Library -resistor handsolder -0 -2 -2 -PCM_Resistor_SMD_AKL -R_0612_1632Metric_Pad1.18x3.40mm_HandSolder -Resistor SMD 0612 (1632 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.vishay.com/docs/20019/rcwe.pdf), Alternate KiCad Library -resistor handsolder -0 -2 -2 -PCM_Resistor_SMD_AKL -R_0805_2012Metric -Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library -resistor -0 -2 -2 -PCM_Resistor_SMD_AKL -R_0805_2012Metric_Pad1.15x1.40mm -Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), Alternate KiCad Library -resistor handsolder -0 -2 -2 -PCM_Resistor_SMD_AKL -R_0805_2012Metric_Pad1.15x1.40mm_HandSolder -Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), Alternate KiCad Library -resistor handsolder -0 -2 -2 -PCM_Resistor_SMD_AKL -R_0805_2012Metric_Pad1.20x1.40mm -Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library -resistor handsolder -0 -2 -2 -PCM_Resistor_SMD_AKL -R_0805_2012Metric_Pad1.20x1.40mm_HandSolder -Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library -resistor handsolder -0 -2 -2 -PCM_Resistor_SMD_AKL -R_0815_2038Metric -Resistor SMD 0815 (2038 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.susumu.co.jp/common/pdf/n_catalog_partition07_en.pdf), Alternate KiCad Library -resistor -0 -2 -2 -PCM_Resistor_SMD_AKL -R_0815_2038Metric_Pad1.20x4.05mm -Resistor SMD 0815 (2038 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.susumu.co.jp/common/pdf/n_catalog_partition07_en.pdf), Alternate KiCad Library -resistor handsolder -0 -2 -2 -PCM_Resistor_SMD_AKL -R_0815_2038Metric_Pad1.20x4.05mm_HandSolder -Resistor SMD 0815 (2038 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.susumu.co.jp/common/pdf/n_catalog_partition07_en.pdf), Alternate KiCad Library -resistor handsolder -0 -2 -2 -PCM_Resistor_SMD_AKL -R_0815_2038Metric_Pad1.53x4.00mm -Resistor SMD 0815 (2038 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.yageo.com/documents/recent/PYu-PRPFPH_521_RoHS_L_0.pdf), Alternate KiCad Library -resistor handsolder -0 -2 -2 -PCM_Resistor_SMD_AKL -R_0815_2038Metric_Pad1.53x4.00mm_HandSolder -Resistor SMD 0815 (2038 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.yageo.com/documents/recent/PYu-PRPFPH_521_RoHS_L_0.pdf), Alternate KiCad Library -resistor handsolder -0 -2 -2 -PCM_Resistor_SMD_AKL -R_01005_0402Metric -Resistor SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), Alternate KiCad Library -resistor -0 -4 -2 -PCM_Resistor_SMD_AKL -R_01005_0402Metric_Pad0.57x0.30mm -Resistor SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), Alternate KiCad Library -resistor handsolder -0 -4 -2 -PCM_Resistor_SMD_AKL -R_01005_0402Metric_Pad0.57x0.30mm_HandSolder -Resistor SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), Alternate KiCad Library -resistor handsolder -0 -4 -2 -PCM_Resistor_SMD_AKL -R_1020_2550Metric -Resistor SMD 1020 (2550 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20019/rcwe.pdf), Alternate KiCad Library -resistor -0 -2 -2 -PCM_Resistor_SMD_AKL -R_1020_2550Metric_Pad1.33x5.20mm -Resistor SMD 1020 (2550 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.vishay.com/docs/20019/rcwe.pdf), Alternate KiCad Library -resistor handsolder -0 -2 -2 -PCM_Resistor_SMD_AKL -R_1020_2550Metric_Pad1.33x5.20mm_HandSolder -Resistor SMD 1020 (2550 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.vishay.com/docs/20019/rcwe.pdf), Alternate KiCad Library -resistor handsolder -0 -2 -2 -PCM_Resistor_SMD_AKL -R_1206_3216Metric -Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library -resistor -0 -2 -2 -PCM_Resistor_SMD_AKL -R_1206_3216Metric_Pad1.30x1.75mm -Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library -resistor handsolder -0 -2 -2 -PCM_Resistor_SMD_AKL -R_1206_3216Metric_Pad1.30x1.75mm_HandSolder -Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library -resistor handsolder -0 -2 -2 -PCM_Resistor_SMD_AKL -R_1206_3216Metric_Pad1.42x1.75mm -Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -resistor handsolder -0 -2 -2 -PCM_Resistor_SMD_AKL -R_1206_3216Metric_Pad1.42x1.75mm_HandSolder -Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -resistor handsolder -0 -2 -2 -PCM_Resistor_SMD_AKL -R_1210_3225Metric -Resistor SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library -resistor -0 -2 -2 -PCM_Resistor_SMD_AKL -R_1210_3225Metric_Pad1.30x2.65mm -Resistor SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library -resistor handsolder -0 -2 -2 -PCM_Resistor_SMD_AKL -R_1210_3225Metric_Pad1.30x2.65mm_HandSolder -Resistor SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library -resistor handsolder -0 -2 -2 -PCM_Resistor_SMD_AKL -R_1210_3225Metric_Pad1.42x2.65mm -Resistor SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -resistor handsolder -0 -2 -2 -PCM_Resistor_SMD_AKL -R_1210_3225Metric_Pad1.42x2.65mm_HandSolder -Resistor SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -resistor handsolder -0 -2 -2 -PCM_Resistor_SMD_AKL -R_1218_3246Metric -Resistor SMD 1218 (3246 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20035/dcrcwe3.pdf), Alternate KiCad Library -resistor -0 -2 -2 -PCM_Resistor_SMD_AKL -R_1218_3246Metric_Pad1.22x4.75mm -Resistor SMD 1218 (3246 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.vishay.com/docs/20035/dcrcwe3.pdf), Alternate KiCad Library -resistor handsolder -0 -2 -2 -PCM_Resistor_SMD_AKL -R_1218_3246Metric_Pad1.22x4.75mm_HandSolder -Resistor SMD 1218 (3246 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.vishay.com/docs/20035/dcrcwe3.pdf), Alternate KiCad Library -resistor handsolder -0 -2 -2 -PCM_Resistor_SMD_AKL -R_1806_4516Metric -Resistor SMD 1806 (4516 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.modelithics.com/models/Vendor/MuRata/BLM41P.pdf), Alternate KiCad Library -resistor -0 -2 -2 -PCM_Resistor_SMD_AKL -R_1806_4516Metric_Pad1.57x1.80mm -Resistor SMD 1806 (4516 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.modelithics.com/models/Vendor/MuRata/BLM41P.pdf), Alternate KiCad Library -resistor handsolder -0 -2 -2 -PCM_Resistor_SMD_AKL -R_1806_4516Metric_Pad1.57x1.80mm_HandSolder -Resistor SMD 1806 (4516 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.modelithics.com/models/Vendor/MuRata/BLM41P.pdf), Alternate KiCad Library -resistor handsolder -0 -2 -2 -PCM_Resistor_SMD_AKL -R_1812_4532Metric -Resistor SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), Alternate KiCad Library -resistor -0 -2 -2 -PCM_Resistor_SMD_AKL -R_1812_4532Metric_Pad1.30x3.40mm -Resistor SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), Alternate KiCad Library -resistor handsolder -0 -2 -2 -PCM_Resistor_SMD_AKL -R_1812_4532Metric_Pad1.30x3.40mm_HandSolder -Resistor SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), Alternate KiCad Library -resistor handsolder -0 -2 -2 -PCM_Resistor_SMD_AKL -R_2010_5025Metric -Resistor SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library -resistor -0 -2 -2 -PCM_Resistor_SMD_AKL -R_2010_5025Metric_Pad1.40x2.65mm -Resistor SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library -resistor handsolder -0 -2 -2 -PCM_Resistor_SMD_AKL -R_2010_5025Metric_Pad1.40x2.65mm_HandSolder -Resistor SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library -resistor handsolder -0 -2 -2 -PCM_Resistor_SMD_AKL -R_2010_5025Metric_Pad1.52x2.65mm -Resistor SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -resistor handsolder -0 -2 -2 -PCM_Resistor_SMD_AKL -R_2010_5025Metric_Pad1.52x2.65mm_HandSolder -Resistor SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -resistor handsolder -0 -2 -2 -PCM_Resistor_SMD_AKL -R_2512_6332Metric -Resistor SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library -resistor -0 -2 -2 -PCM_Resistor_SMD_AKL -R_2512_6332Metric_Pad1.40x3.35mm -Resistor SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library -resistor handsolder -0 -2 -2 -PCM_Resistor_SMD_AKL -R_2512_6332Metric_Pad1.40x3.35mm_HandSolder -Resistor SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), Alternate KiCad Library -resistor handsolder -0 -2 -2 -PCM_Resistor_SMD_AKL -R_2512_6332Metric_Pad1.52x3.35mm -Resistor SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -resistor handsolder -0 -2 -2 -PCM_Resistor_SMD_AKL -R_2512_6332Metric_Pad1.52x3.35mm_HandSolder -Resistor SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), Alternate KiCad Library -resistor handsolder -0 -2 -2 -PCM_Resistor_SMD_AKL -R_2816_7142Metric -Resistor SMD 2816 (7142 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), Alternate KiCad Library -resistor -0 -2 -2 -PCM_Resistor_SMD_AKL -R_2816_7142Metric_Pad3.20x4.45mm -Resistor SMD 2816 (7142 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), Alternate KiCad Library -resistor handsolder -0 -2 -2 -PCM_Resistor_SMD_AKL -R_2816_7142Metric_Pad3.20x4.45mm_HandSolder -Resistor SMD 2816 (7142 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), Alternate KiCad Library -resistor handsolder -0 -2 -2 -PCM_Resistor_SMD_AKL -R_4020_10251Metric -Resistor SMD 4020 (10251 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://datasheet.octopart.com/HVC0603T5004FET-Ohmite-datasheet-26699797.pdf), Alternate KiCad Library -resistor -0 -2 -2 -PCM_Resistor_SMD_AKL -R_4020_10251Metric_Pad1.65x5.30mm -Resistor SMD 4020 (10251 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://datasheet.octopart.com/HVC0603T5004FET-Ohmite-datasheet-26699797.pdf), Alternate KiCad Library -resistor handsolder -0 -2 -2 -PCM_Resistor_SMD_AKL -R_4020_10251Metric_Pad1.65x5.30mm_HandSolder -Resistor SMD 4020 (10251 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://datasheet.octopart.com/HVC0603T5004FET-Ohmite-datasheet-26699797.pdf), Alternate KiCad Library -resistor handsolder -0 -2 -2 -PCM_Resistor_SMD_AKL -R_Array_Concave_2x0603 -Thick Film Chip Resistor Array, Wave soldering, Vishay CRA06P (see cra06p.pdf), Alternate KiCad Library -resistor array -0 -4 -4 -PCM_Resistor_SMD_AKL -R_Array_Concave_4x0402 -Thick Film Chip Resistor Array, Wave soldering, Vishay CRA04P (see cra04p.pdf), Alternate KiCad Library -resistor array -0 -8 -8 -PCM_Resistor_SMD_AKL -R_Array_Concave_4x0603 -Thick Film Chip Resistor Array, Wave soldering, Vishay CRA06P (see cra06p.pdf), Alternate KiCad Library -resistor array -0 -8 -8 -PCM_Resistor_SMD_AKL -R_Array_Convex_2x0402 -Chip Resistor Network, ROHM MNR02 (see mnr_g.pdf), Alternate KiCad Library -resistor array -0 -4 -4 -PCM_Resistor_SMD_AKL -R_Array_Convex_2x0603 -Chip Resistor Network, ROHM MNR12 (see mnr_g.pdf), Alternate KiCad Library -resistor array -0 -4 -4 -PCM_Resistor_SMD_AKL -R_Array_Convex_2x0606 -Precision Thin Film Chip Resistor Array, VISHAY (see http://www.vishay.com/docs/28770/acasat.pdf), Alternate KiCad Library -resistor array -0 -4 -4 -PCM_Resistor_SMD_AKL -R_Array_Convex_2x1206 -Chip Resistor Network, ROHM MNR32 (see mnr_g.pdf), Alternate KiCad Library -resistor array -0 -4 -4 -PCM_Resistor_SMD_AKL -R_Array_Convex_4x0402 -Chip Resistor Network, ROHM MNR04 (see mnr_g.pdf), Alternate KiCad Library -resistor array -0 -8 -8 -PCM_Resistor_SMD_AKL -R_Array_Convex_4x0603 -Chip Resistor Network, ROHM MNR14 (see mnr_g.pdf), Alternate KiCad Library -resistor array -0 -8 -8 -PCM_Resistor_SMD_AKL -R_Array_Convex_4x0612 -Precision Thin Film Chip Resistor Array, VISHAY (see http://www.vishay.com/docs/28770/acasat.pdf), Alternate KiCad Library -resistor array -0 -8 -8 -PCM_Resistor_SMD_AKL -R_Array_Convex_4x1206 -Chip Resistor Network, ROHM MNR34 (see mnr_g.pdf), Alternate KiCad Library -resistor array -0 -8 -8 -PCM_Resistor_SMD_AKL -R_Array_Convex_5x0603 -Chip Resistor Network, ROHM MNR15 (see mnr_g.pdf), Alternate KiCad Library -resistor array -0 -10 -10 -PCM_Resistor_SMD_AKL -R_Array_Convex_5x1206 -Chip Resistor Network, ROHM MNR35 (see mnr_g.pdf), Alternate KiCad Library -resistor array -0 -10 -10 -PCM_Resistor_SMD_AKL -R_Array_Convex_8x0602 -Chip Resistor Network, ROHM MNR18 (see mnr_g.pdf), Alternate KiCad Library -resistor array -0 -16 -16 -PCM_Resistor_SMD_AKL -R_Cat16-2 -SMT resistor net, Bourns CAT16 series, 2 way, Alternate KiCad Library -SMT resistor net Bourns CAT16 series 2 way -0 -4 -4 -PCM_Resistor_SMD_AKL -R_Cat16-4 -SMT resistor net, Bourns CAT16 series, 4 way, Alternate KiCad Library -SMT resistor net Bourns CAT16 series 4 way -0 -8 -8 -PCM_Resistor_SMD_AKL -R_Cat16-8 -SMT resistor net, Bourns CAT16 series, 8 way, Alternate KiCad Library -SMT resistor net Bourns CAT16 series 8 way -0 -16 -16 -PCM_Resistor_SMD_AKL -R_MELF_MMB-0207 -Resistor, MELF, MMB-0207, http://www.vishay.com/docs/28713/melfprof.pdf, Alternate KiCad Library -MELF Resistor -0 -2 -2 -PCM_Resistor_SMD_AKL -R_MicroMELF_MMU-0102 -Resistor, MicroMELF, MMU-0102, http://www.vishay.com/docs/28713/melfprof.pdf, Alternate KiCad Library -MicroMELF Resistor -0 -2 -2 -PCM_Resistor_SMD_AKL -R_MiniMELF_MMA-0204 -Resistor, MiniMELF, MMA-0204, http://www.vishay.com/docs/28713/melfprof.pdf, Alternate KiCad Library -MiniMELF Resistor -0 -2 -2 -PCM_Resistor_SMD_AKL -R_Shunt_Ohmite_LVK12 -4 contact shunt resistor, Alternate KiCad Library -shunt resistor 4 contacts -0 -4 -4 -PCM_Resistor_SMD_AKL -R_Shunt_Ohmite_LVK20 -4 contacts shunt resistor, https://www.ohmite.com/assets/docs/res_lvk.pdf, Alternate KiCad Library -4 contacts resistor smd -0 -4 -4 -PCM_Resistor_SMD_AKL -R_Shunt_Ohmite_LVK24 -4 contacts shunt resistor,https://www.ohmite.com/assets/docs/res_lvk.pdf, Alternate KiCad Library -4 contacts resistor smd -0 -4 -4 -PCM_Resistor_SMD_AKL -R_Shunt_Ohmite_LVK25 -4 contacts shunt resistor,https://www.ohmite.com/assets/docs/res_lvk.pdf, Alternate KiCad Library -4 contacts resistor smd -0 -4 -4 -PCM_Resistor_SMD_AKL -R_Shunt_Vishay_WSK2512_6332Metric_T1.19mm -Shunt Resistor SMD 2512 (6332 Metric), 2.6mm thick, Vishay WKS2512, Terminal length (T) 1.19mm, 5 to 200 milli Ohm (http://http://www.vishay.com/docs/30108/wsk.pdf), Alternate KiCad Library -resistor shunt WSK2512 -0 -4 -4 -PCM_Resistor_SMD_AKL -R_Shunt_Vishay_WSK2512_6332Metric_T2.21mm -Shunt Resistor SMD 2512 (6332 Metric), 2.6mm thick, Vishay WKS2512, Terminal length (T) 2.21mm, 1 to 4.9 milli Ohm (http://http://www.vishay.com/docs/30108/wsk.pdf), Alternate KiCad Library -resistor shunt WSK2512 -0 -4 -4 -PCM_Resistor_SMD_AKL -R_Shunt_Vishay_WSK2512_6332Metric_T2.66mm -Shunt Resistor SMD 2512 (6332 Metric), 2.6mm thick, Vishay WKS2512, Terminal length (T) 2.66mm, 0.5 to 0.99 milli Ohm (http://http://www.vishay.com/docs/30108/wsk.pdf), Alternate KiCad Library -resistor shunt WSK2512 -0 -4 -4 -PCM_Resistor_SMD_AKL -R_Shunt_Vishay_WSKW0612 -https://www.vishay.com/docs/30332/wskw0612.pdf, Alternate KiCad Library -4-Terminal SMD Shunt -0 -4 -4 -PCM_Resistor_SMD_AKL -R_Shunt_Vishay_WSR2_WSR3 -Power Metal Strip Resistors 0.005 to 0.2, https://www.vishay.com/docs/30101/wsr.pdf, Alternate KiCad Library -SMD Shunt Resistor -0 -2 -2 -PCM_Resistor_SMD_AKL -R_Shunt_Vishay_WSR2_WSR3_KelvinConnection -Power Metal Strip Resistors 0.005 to 0.2, https://www.vishay.com/docs/30101/wsr.pdf, Alternate KiCad Library -SMD Shunt Resistor -0 -4 -2 -PCM_Resistor_THT_AKL -R_Array_SIP4 -4-pin Resistor SIP pack -R -0 -4 -4 -PCM_Resistor_THT_AKL -R_Array_SIP4_BigPads -4-pin Resistor SIP pack -R -0 -4 -4 -PCM_Resistor_THT_AKL -R_Array_SIP5 -5-pin Resistor SIP pack -R -0 -5 -5 -PCM_Resistor_THT_AKL -R_Array_SIP5_BigPads -5-pin Resistor SIP pack -R -0 -5 -5 -PCM_Resistor_THT_AKL -R_Array_SIP6 -6-pin Resistor SIP pack -R -0 -6 -6 -PCM_Resistor_THT_AKL -R_Array_SIP6_BigPads -6-pin Resistor SIP pack -R -0 -6 -6 -PCM_Resistor_THT_AKL -R_Array_SIP7 -7-pin Resistor SIP pack -R -0 -7 -7 -PCM_Resistor_THT_AKL -R_Array_SIP7_BigPads -7-pin Resistor SIP pack -R -0 -7 -7 -PCM_Resistor_THT_AKL -R_Array_SIP8 -8-pin Resistor SIP pack -R -0 -8 -8 -PCM_Resistor_THT_AKL -R_Array_SIP8_BigPads -8-pin Resistor SIP pack -R -0 -8 -8 -PCM_Resistor_THT_AKL -R_Array_SIP9 -9-pin Resistor SIP pack -R -0 -9 -9 -PCM_Resistor_THT_AKL -R_Array_SIP9_BigPads -9-pin Resistor SIP pack -R -0 -9 -9 -PCM_Resistor_THT_AKL -R_Array_SIP10 -10-pin Resistor SIP pack -R -0 -10 -10 -PCM_Resistor_THT_AKL -R_Array_SIP10_BigPads -10-pin Resistor SIP pack -R -0 -10 -10 -PCM_Resistor_THT_AKL -R_Array_SIP11 -11-pin Resistor SIP pack -R -0 -11 -11 -PCM_Resistor_THT_AKL -R_Array_SIP11_BigPads -11-pin Resistor SIP pack -R -0 -11 -11 -PCM_Resistor_THT_AKL -R_Array_SIP12 -12-pin Resistor SIP pack -R -0 -12 -12 -PCM_Resistor_THT_AKL -R_Array_SIP12_BigPads -12-pin Resistor SIP pack -R -0 -12 -12 -PCM_Resistor_THT_AKL -R_Array_SIP13 -13-pin Resistor SIP pack -R -0 -13 -13 -PCM_Resistor_THT_AKL -R_Array_SIP13_BigPads -13-pin Resistor SIP pack -R -0 -13 -13 -PCM_Resistor_THT_AKL -R_Array_SIP14 -14-pin Resistor SIP pack -R -0 -14 -14 -PCM_Resistor_THT_AKL -R_Array_SIP14_BigPads -14-pin Resistor SIP pack -R -0 -14 -14 -PCM_Resistor_THT_AKL -R_Axial_DIN0204_L3.6mm_D1.6mm_P1.90mm_Vertical -Resistor, Axial_DIN0204 series, Axial, Vertical, pin pitch=1.9mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf -Resistor Axial_DIN0204 series Axial Vertical pin pitch 1.9mm 0.167W length 3.6mm diameter 1.6mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_DIN0204_L3.6mm_D1.6mm_P2.54mm_Vertical -Resistor, Axial_DIN0204 series, Axial, Vertical, pin pitch=2.54mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf -Resistor Axial_DIN0204 series Axial Vertical pin pitch 2.54mm 0.167W length 3.6mm diameter 1.6mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_DIN0204_L3.6mm_D1.6mm_P5.08mm_Horizontal -Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=5.08mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0204 series Axial Horizontal pin pitch 5.08mm 0.167W length 3.6mm diameter 1.6mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_DIN0204_L3.6mm_D1.6mm_P5.08mm_Vertical -Resistor, Axial_DIN0204 series, Axial, Vertical, pin pitch=5.08mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf -Resistor Axial_DIN0204 series Axial Vertical pin pitch 5.08mm 0.167W length 3.6mm diameter 1.6mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal -Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0204 series Axial Horizontal pin pitch 7.62mm 0.167W length 3.6mm diameter 1.6mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_DIN0204_L3.6mm_D1.6mm_P10.16mm_Horizontal -Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=10.16mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0204 series Axial Horizontal pin pitch 10.16mm 0.167W length 3.6mm diameter 1.6mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_DIN0204_L3.6mm_D1.6mm_P12.70mm_Horizontal -Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=12.7mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0204 series Axial Horizontal pin pitch 12.7mm 0.167W length 3.6mm diameter 1.6mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_DIN0204_L3.6mm_D1.6mm_P15.24mm_Horizontal -Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=15.24mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0204 series Axial Horizontal pin pitch 15.24mm 0.167W length 3.6mm diameter 1.6mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_DIN0204_L3.6mm_D1.6mm_P20.32mm_Horizontal -Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=20.32mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0204 series Axial Horizontal pin pitch 20.32mm 0.167W length 3.6mm diameter 1.6mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_DIN0204_L3.6mm_D1.6mm_P25.40mm_Horizontal -Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=25.40mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0204 series Axial Horizontal pin pitch 25.40mm 0.167W length 3.6mm diameter 1.6mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_DIN0204_L3.6mm_D1.6mm_P30.48mm_Horizontal -Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=30.48mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0204 series Axial Horizontal pin pitch 30.48mm 0.167W length 3.6mm diameter 1.6mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical -Resistor, Axial_DIN0207 series, Axial, Vertical, pin pitch=2.54mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf -Resistor Axial_DIN0207 series Axial Vertical pin pitch 2.54mm 0.25W = 1/4W length 6.3mm diameter 2.5mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_DIN0207_L6.3mm_D2.5mm_P5.08mm_Vertical -Resistor, Axial_DIN0207 series, Axial, Vertical, pin pitch=5.08mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf -Resistor Axial_DIN0207 series Axial Vertical pin pitch 5.08mm 0.25W = 1/4W length 6.3mm diameter 2.5mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal -Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal -Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_DIN0207_L6.3mm_D2.5mm_P12.70mm_Horizontal -Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=12.7mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0207 series Axial Horizontal pin pitch 12.7mm 0.25W = 1/4W length 6.3mm diameter 2.5mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_DIN0207_L6.3mm_D2.5mm_P15.24mm_Horizontal -Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=15.24mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0207 series Axial Horizontal pin pitch 15.24mm 0.25W = 1/4W length 6.3mm diameter 2.5mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_DIN0207_L6.3mm_D2.5mm_P20.32mm_Horizontal -Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=20.32mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0207 series Axial Horizontal pin pitch 20.32mm 0.25W = 1/4W length 6.3mm diameter 2.5mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_DIN0207_L6.3mm_D2.5mm_P25.40mm_Horizontal -Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=25.4mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0207 series Axial Horizontal pin pitch 25.4mm 0.25W = 1/4W length 6.3mm diameter 2.5mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_DIN0207_L6.3mm_D2.5mm_P30.48mm_Horizontal -Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=30.48mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0207 series Axial Horizontal pin pitch 30.48mm 0.25W = 1/4W length 6.3mm diameter 2.5mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_DIN0309_L9.0mm_D3.2mm_P2.54mm_Vertical -Resistor, Axial_DIN0309 series, Axial, Vertical, pin pitch=2.54mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf -Resistor Axial_DIN0309 series Axial Vertical pin pitch 2.54mm 0.5W = 1/2W length 9mm diameter 3.2mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_DIN0309_L9.0mm_D3.2mm_P5.08mm_Vertical -Resistor, Axial_DIN0309 series, Axial, Vertical, pin pitch=5.08mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf -Resistor Axial_DIN0309 series Axial Vertical pin pitch 5.08mm 0.5W = 1/2W length 9mm diameter 3.2mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_DIN0309_L9.0mm_D3.2mm_P12.70mm_Horizontal -Resistor, Axial_DIN0309 series, Axial, Horizontal, pin pitch=12.7mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0309 series Axial Horizontal pin pitch 12.7mm 0.5W = 1/2W length 9mm diameter 3.2mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_DIN0309_L9.0mm_D3.2mm_P15.24mm_Horizontal -Resistor, Axial_DIN0309 series, Axial, Horizontal, pin pitch=15.24mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0309 series Axial Horizontal pin pitch 15.24mm 0.5W = 1/2W length 9mm diameter 3.2mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_DIN0309_L9.0mm_D3.2mm_P20.32mm_Horizontal -Resistor, Axial_DIN0309 series, Axial, Horizontal, pin pitch=20.32mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0309 series Axial Horizontal pin pitch 20.32mm 0.5W = 1/2W length 9mm diameter 3.2mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_DIN0309_L9.0mm_D3.2mm_P25.40mm_Horizontal -Resistor, Axial_DIN0309 series, Axial, Horizontal, pin pitch=25.4mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0309 series Axial Horizontal pin pitch 25.4mm 0.5W = 1/2W length 9mm diameter 3.2mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_DIN0309_L9.0mm_D3.2mm_P30.48mm_Horizontal -Resistor, Axial_DIN0309 series, Axial, Horizontal, pin pitch=30.48mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0309 series Axial Horizontal pin pitch 30.48mm 0.5W = 1/2W length 9mm diameter 3.2mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_DIN0411_L9.9mm_D3.6mm_P5.08mm_Vertical -Resistor, Axial_DIN0411 series, Axial, Vertical, pin pitch=5.08mm, 1W, length*diameter=9.9*3.6mm^2 -Resistor Axial_DIN0411 series Axial Vertical pin pitch 5.08mm 1W length 9.9mm diameter 3.6mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_DIN0411_L9.9mm_D3.6mm_P7.62mm_Vertical -Resistor, Axial_DIN0411 series, Axial, Vertical, pin pitch=7.62mm, 1W, length*diameter=9.9*3.6mm^2 -Resistor Axial_DIN0411 series Axial Vertical pin pitch 7.62mm 1W length 9.9mm diameter 3.6mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_DIN0411_L9.9mm_D3.6mm_P12.70mm_Horizontal -Resistor, Axial_DIN0411 series, Axial, Horizontal, pin pitch=12.7mm, 1W, length*diameter=9.9*3.6mm^2, Alternate KiCad Library -Resistor Axial_DIN0411 series Axial Horizontal pin pitch 12.7mm 1W length 9.9mm diameter 3.6mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_DIN0411_L9.9mm_D3.6mm_P15.24mm_Horizontal -Resistor, Axial_DIN0411 series, Axial, Horizontal, pin pitch=15.24mm, 1W, length*diameter=9.9*3.6mm^2, Alternate KiCad Library -Resistor Axial_DIN0411 series Axial Horizontal pin pitch 15.24mm 1W length 9.9mm diameter 3.6mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_DIN0411_L9.9mm_D3.6mm_P20.32mm_Horizontal -Resistor, Axial_DIN0411 series, Axial, Horizontal, pin pitch=20.32mm, 1W, length*diameter=9.9*3.6mm^2, Alternate KiCad Library -Resistor Axial_DIN0411 series Axial Horizontal pin pitch 20.32mm 1W length 9.9mm diameter 3.6mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_DIN0411_L9.9mm_D3.6mm_P25.40mm_Horizontal -Resistor, Axial_DIN0411 series, Axial, Horizontal, pin pitch=25.4mm, 1W, length*diameter=9.9*3.6mm^2, Alternate KiCad Library -Resistor Axial_DIN0411 series Axial Horizontal pin pitch 25.4mm 1W length 9.9mm diameter 3.6mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_DIN0411_L9.9mm_D3.6mm_P30.48mm_Horizontal -Resistor, Axial_DIN0411 series, Axial, Horizontal, pin pitch=30.48mm, 1W, length*diameter=9.9*3.6mm^2, Alternate KiCad Library -Resistor Axial_DIN0411 series Axial Horizontal pin pitch 30.48mm 1W length 9.9mm diameter 3.6mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_DIN0414_L11.9mm_D4.5mm_P5.08mm_Vertical -Resistor, Axial_DIN0414 series, Axial, Vertical, pin pitch=5.08mm, 2W, length*diameter=11.9*4.5mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf -Resistor Axial_DIN0414 series Axial Vertical pin pitch 5.08mm 2W length 11.9mm diameter 4.5mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_DIN0414_L11.9mm_D4.5mm_P7.62mm_Vertical -Resistor, Axial_DIN0414 series, Axial, Vertical, pin pitch=7.62mm, 2W, length*diameter=11.9*4.5mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf -Resistor Axial_DIN0414 series Axial Vertical pin pitch 7.62mm 2W length 11.9mm diameter 4.5mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_DIN0414_L11.9mm_D4.5mm_P15.24mm_Horizontal -Resistor, Axial_DIN0414 series, Axial, Horizontal, pin pitch=15.24mm, 2W, length*diameter=11.9*4.5mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf, Alternate KiCad Library -Resistor Axial_DIN0414 series Axial Horizontal pin pitch 15.24mm 2W length 11.9mm diameter 4.5mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_DIN0414_L11.9mm_D4.5mm_P20.32mm_Horizontal -Resistor, Axial_DIN0414 series, Axial, Horizontal, pin pitch=20.32mm, 2W, length*diameter=11.9*4.5mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf, Alternate KiCad Library -Resistor Axial_DIN0414 series Axial Horizontal pin pitch 20.32mm 2W length 11.9mm diameter 4.5mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_DIN0414_L11.9mm_D4.5mm_P25.40mm_Horizontal -Resistor, Axial_DIN0414 series, Axial, Horizontal, pin pitch=25.4mm, 2W, length*diameter=11.9*4.5mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf, Alternate KiCad Library -Resistor Axial_DIN0414 series Axial Horizontal pin pitch 25.4mm 2W length 11.9mm diameter 4.5mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_DIN0414_L11.9mm_D4.5mm_P30.48mm_Horizontal -Resistor, Axial_DIN0414 series, Axial, Horizontal, pin pitch=30.48mm, 2W, length*diameter=11.9*4.5mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf, Alternate KiCad Library -Resistor Axial_DIN0414 series Axial Horizontal pin pitch 30.48mm 2W length 11.9mm diameter 4.5mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_DIN0516_L15.5mm_D5.0mm_P5.08mm_Vertical -Resistor, Axial_DIN0516 series, Axial, Vertical, pin pitch=5.08mm, 2W, length*diameter=15.5*5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf -Resistor Axial_DIN0516 series Axial Vertical pin pitch 5.08mm 2W length 15.5mm diameter 5mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_DIN0516_L15.5mm_D5.0mm_P7.62mm_Vertical -Resistor, Axial_DIN0516 series, Axial, Vertical, pin pitch=7.62mm, 2W, length*diameter=15.5*5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf -Resistor Axial_DIN0516 series Axial Vertical pin pitch 7.62mm 2W length 15.5mm diameter 5mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_DIN0516_L15.5mm_D5.0mm_P20.32mm_Horizontal -Resistor, Axial_DIN0516 series, Axial, Horizontal, pin pitch=20.32mm, 2W, length*diameter=15.5*5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0516 series Axial Horizontal pin pitch 20.32mm 2W length 15.5mm diameter 5mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_DIN0516_L15.5mm_D5.0mm_P25.40mm_Horizontal -Resistor, Axial_DIN0516 series, Axial, Horizontal, pin pitch=25.4mm, 2W, length*diameter=15.5*5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0516 series Axial Horizontal pin pitch 25.4mm 2W length 15.5mm diameter 5mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_DIN0516_L15.5mm_D5.0mm_P30.48mm_Horizontal -Resistor, Axial_DIN0516 series, Axial, Horizontal, pin pitch=30.48mm, 2W, length*diameter=15.5*5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0516 series Axial Horizontal pin pitch 30.48mm 2W length 15.5mm diameter 5mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_DIN0614_L14.3mm_D5.7mm_P5.08mm_Vertical -Resistor, Axial_DIN0614 series, Axial, Vertical, pin pitch=5.08mm, 1.5W, length*diameter=14.3*5.7mm^2 -Resistor Axial_DIN0614 series Axial Vertical pin pitch 5.08mm 1.5W length 14.3mm diameter 5.7mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_DIN0614_L14.3mm_D5.7mm_P7.62mm_Vertical -Resistor, Axial_DIN0614 series, Axial, Vertical, pin pitch=7.62mm, 1.5W, length*diameter=14.3*5.7mm^2 -Resistor Axial_DIN0614 series Axial Vertical pin pitch 7.62mm 1.5W length 14.3mm diameter 5.7mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_DIN0614_L14.3mm_D5.7mm_P15.24mm_Horizontal -Resistor, Axial_DIN0614 series, Axial, Horizontal, pin pitch=15.24mm, 1.5W, length*diameter=14.3*5.7mm^2, Alternate KiCad Library -Resistor Axial_DIN0614 series Axial Horizontal pin pitch 15.24mm 1.5W length 14.3mm diameter 5.7mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_DIN0614_L14.3mm_D5.7mm_P20.32mm_Horizontal -Resistor, Axial_DIN0614 series, Axial, Horizontal, pin pitch=20.32mm, 1.5W, length*diameter=14.3*5.7mm^2, Alternate KiCad Library -Resistor Axial_DIN0614 series Axial Horizontal pin pitch 20.32mm 1.5W length 14.3mm diameter 5.7mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_DIN0614_L14.3mm_D5.7mm_P25.40mm_Horizontal -Resistor, Axial_DIN0614 series, Axial, Horizontal, pin pitch=25.4mm, 1.5W, length*diameter=14.3*5.7mm^2, Alternate KiCad Library -Resistor Axial_DIN0614 series Axial Horizontal pin pitch 25.4mm 1.5W length 14.3mm diameter 5.7mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_DIN0614_L14.3mm_D5.7mm_P30.48mm_Horizontal -Resistor, Axial_DIN0614 series, Axial, Horizontal, pin pitch=30.48mm, 1.5W, length*diameter=14.3*5.7mm^2, Alternate KiCad Library -Resistor Axial_DIN0614 series Axial Horizontal pin pitch 30.48mm 1.5W length 14.3mm diameter 5.7mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_DIN0617_L17.0mm_D6.0mm_P5.08mm_Vertical -Resistor, Axial_DIN0617 series, Axial, Vertical, pin pitch=5.08mm, 2W, length*diameter=17*6mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf -Resistor Axial_DIN0617 series Axial Vertical pin pitch 5.08mm 2W length 17mm diameter 6mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_DIN0617_L17.0mm_D6.0mm_P7.62mm_Vertical -Resistor, Axial_DIN0617 series, Axial, Vertical, pin pitch=7.62mm, 2W, length*diameter=17*6mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf -Resistor Axial_DIN0617 series Axial Vertical pin pitch 7.62mm 2W length 17mm diameter 6mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_DIN0617_L17.0mm_D6.0mm_P20.32mm_Horizontal -Resistor, Axial_DIN0617 series, Axial, Horizontal, pin pitch=20.32mm, 2W, length*diameter=17*6mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf, Alternate KiCad Library -Resistor Axial_DIN0617 series Axial Horizontal pin pitch 20.32mm 2W length 17mm diameter 6mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_DIN0617_L17.0mm_D6.0mm_P25.40mm_Horizontal -Resistor, Axial_DIN0617 series, Axial, Horizontal, pin pitch=25.4mm, 2W, length*diameter=17*6mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf, Alternate KiCad Library -Resistor Axial_DIN0617 series Axial Horizontal pin pitch 25.4mm 2W length 17mm diameter 6mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_DIN0617_L17.0mm_D6.0mm_P30.48mm_Horizontal -Resistor, Axial_DIN0617 series, Axial, Horizontal, pin pitch=30.48mm, 2W, length*diameter=17*6mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf, Alternate KiCad Library -Resistor Axial_DIN0617 series Axial Horizontal pin pitch 30.48mm 2W length 17mm diameter 6mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_DIN0918_L18.0mm_D9.0mm_P7.62mm_Vertical -Resistor, Axial_DIN0918 series, Axial, Vertical, pin pitch=7.62mm, 4W, length*diameter=18*9mm^2 -Resistor Axial_DIN0918 series Axial Vertical pin pitch 7.62mm 4W length 18mm diameter 9mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_DIN0918_L18.0mm_D9.0mm_P22.86mm_Horizontal -Resistor, Axial_DIN0918 series, Axial, Horizontal, pin pitch=22.86mm, 4W, length*diameter=18*9mm^2, Alternate KiCad Library -Resistor Axial_DIN0918 series Axial Horizontal pin pitch 22.86mm 4W length 18mm diameter 9mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_DIN0918_L18.0mm_D9.0mm_P25.40mm_Horizontal -Resistor, Axial_DIN0918 series, Axial, Horizontal, pin pitch=25.4mm, 4W, length*diameter=18*9mm^2, Alternate KiCad Library -Resistor Axial_DIN0918 series Axial Horizontal pin pitch 25.4mm 4W length 18mm diameter 9mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_DIN0918_L18.0mm_D9.0mm_P30.48mm_Horizontal -Resistor, Axial_DIN0918 series, Axial, Horizontal, pin pitch=30.48mm, 4W, length*diameter=18*9mm^2, Alternate KiCad Library -Resistor Axial_DIN0918 series Axial Horizontal pin pitch 30.48mm 4W length 18mm diameter 9mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_DIN0922_L20.0mm_D9.0mm_P7.62mm_Vertical -Resistor, Axial_DIN0922 series, Axial, Vertical, pin pitch=7.62mm, 5W, length*diameter=20*9mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf -Resistor Axial_DIN0922 series Axial Vertical pin pitch 7.62mm 5W length 20mm diameter 9mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_DIN0922_L20.0mm_D9.0mm_P25.40mm_Horizontal -Resistor, Axial_DIN0922 series, Axial, Horizontal, pin pitch=25.4mm, 5W, length*diameter=20*9mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf, Alternate KiCad Library -Resistor Axial_DIN0922 series Axial Horizontal pin pitch 25.4mm 5W length 20mm diameter 9mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_DIN0922_L20.0mm_D9.0mm_P30.48mm_Horizontal -Resistor, Axial_DIN0922 series, Axial, Horizontal, pin pitch=30.48mm, 5W, length*diameter=20*9mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf, Alternate KiCad Library -Resistor Axial_DIN0922 series Axial Horizontal pin pitch 30.48mm 5W length 20mm diameter 9mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_Power_L20.0mm_W6.4mm_P5.08mm_Vertical -Resistor, Axial_Power series, Axial, Vertical, pin pitch=5.08mm, 4W, length*width*height=20*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Axial Vertical pin pitch 5.08mm 4W length 20mm width 6.4mm height 6.4mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_Power_L20.0mm_W6.4mm_P7.62mm_Vertical -Resistor, Axial_Power series, Axial, Vertical, pin pitch=7.62mm, 4W, length*width*height=20*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Axial Vertical pin pitch 7.62mm 4W length 20mm width 6.4mm height 6.4mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_Power_L20.0mm_W6.4mm_P22.40mm -Resistor, Axial_Power series, Box, pin pitch=22.4mm, 4W, length*width*height=20*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 22.4mm 4W length 20mm width 6.4mm height 6.4mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_Power_L20.0mm_W6.4mm_P25.40mm -Resistor, Axial_Power series, Box, pin pitch=25.4mm, 4W, length*width*height=20*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 25.4mm 4W length 20mm width 6.4mm height 6.4mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_Power_L20.0mm_W6.4mm_P30.48mm -Resistor, Axial_Power series, Box, pin pitch=30.48mm, 4W, length*width*height=20*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 30.48mm 4W length 20mm width 6.4mm height 6.4mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_Power_L25.0mm_W6.4mm_P27.94mm -Resistor, Axial_Power series, Box, pin pitch=27.94mm, 5W, length*width*height=25*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 27.94mm 5W length 25mm width 6.4mm height 6.4mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_Power_L25.0mm_W6.4mm_P30.48mm -Resistor, Axial_Power series, Box, pin pitch=30.48mm, 5W, length*width*height=25*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 30.48mm 5W length 25mm width 6.4mm height 6.4mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_Power_L25.0mm_W9.0mm_P7.62mm_Vertical -Resistor, Axial_Power series, Axial, Vertical, pin pitch=7.62mm, 7W, length*width*height=25*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Axial Vertical pin pitch 7.62mm 7W length 25mm width 9mm height 9mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_Power_L25.0mm_W9.0mm_P10.16mm_Vertical -Resistor, Axial_Power series, Axial, Vertical, pin pitch=10.16mm, 7W, length*width*height=25*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Axial Vertical pin pitch 10.16mm 7W length 25mm width 9mm height 9mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_Power_L25.0mm_W9.0mm_P27.94mm -Resistor, Axial_Power series, Box, pin pitch=27.94mm, 7W, length*width*height=25*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 27.94mm 7W length 25mm width 9mm height 9mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_Power_L25.0mm_W9.0mm_P30.48mm -Resistor, Axial_Power series, Box, pin pitch=30.48mm, 7W, length*width*height=25*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 30.48mm 7W length 25mm width 9mm height 9mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_Power_L38.0mm_W6.4mm_P40.64mm -Resistor, Axial_Power series, Box, pin pitch=40.64mm, 7W, length*width*height=38*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 40.64mm 7W length 38mm width 6.4mm height 6.4mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_Power_L38.0mm_W6.4mm_P45.72mm -Resistor, Axial_Power series, Box, pin pitch=45.72mm, 7W, length*width*height=38*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 45.72mm 7W length 38mm width 6.4mm height 6.4mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_Power_L38.0mm_W9.0mm_P40.64mm -Resistor, Axial_Power series, Box, pin pitch=40.64mm, 9W, length*width*height=38*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 40.64mm 9W length 38mm width 9mm height 9mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_Power_L38.0mm_W9.0mm_P45.72mm -Resistor, Axial_Power series, Box, pin pitch=45.72mm, 9W, length*width*height=38*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 45.72mm 9W length 38mm width 9mm height 9mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_Power_L48.0mm_W12.5mm_P7.62mm_Vertical -Resistor, Axial_Power series, Axial, Vertical, pin pitch=7.62mm, 15W, length*width*height=48*12.5*12.5mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Axial Vertical pin pitch 7.62mm 15W length 48mm width 12.5mm height 12.5mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_Power_L48.0mm_W12.5mm_P10.16mm_Vertical -Resistor, Axial_Power series, Axial, Vertical, pin pitch=10.16mm, 15W, length*width*height=48*12.5*12.5mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Axial Vertical pin pitch 10.16mm 15W length 48mm width 12.5mm height 12.5mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_Power_L48.0mm_W12.5mm_P55.88mm -Resistor, Axial_Power series, Box, pin pitch=55.88mm, 15W, length*width*height=48*12.5*12.5mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 55.88mm 15W length 48mm width 12.5mm height 12.5mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_Power_L48.0mm_W12.5mm_P60.96mm -Resistor, Axial_Power series, Box, pin pitch=60.96mm, 15W, length*width*height=48*12.5*12.5mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 60.96mm 15W length 48mm width 12.5mm height 12.5mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_Power_L50.0mm_W9.0mm_P55.88mm -Resistor, Axial_Power series, Box, pin pitch=55.88mm, 11W, length*width*height=50*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 55.88mm 11W length 50mm width 9mm height 9mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_Power_L50.0mm_W9.0mm_P60.96mm -Resistor, Axial_Power series, Box, pin pitch=60.96mm, 11W, length*width*height=50*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 60.96mm 11W length 50mm width 9mm height 9mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_Power_L60.0mm_W14.0mm_P10.16mm_Vertical -Resistor, Axial_Power series, Axial, Vertical, pin pitch=10.16mm, 25W, length*width*height=60*14*14mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Axial Vertical pin pitch 10.16mm 25W length 60mm width 14mm height 14mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_Power_L60.0mm_W14.0mm_P66.04mm -Resistor, Axial_Power series, Box, pin pitch=66.04mm, 25W, length*width*height=60*14*14mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 66.04mm 25W length 60mm width 14mm height 14mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_Power_L60.0mm_W14.0mm_P71.12mm -Resistor, Axial_Power series, Box, pin pitch=71.12mm, 25W, length*width*height=60*14*14mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 71.12mm 25W length 60mm width 14mm height 14mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_Power_L75.0mm_W9.0mm_P81.28mm -Resistor, Axial_Power series, Box, pin pitch=81.28mm, 17W, length*width*height=75*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 81.28mm 17W length 75mm width 9mm height 9mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_Power_L75.0mm_W9.0mm_P86.36mm -Resistor, Axial_Power series, Box, pin pitch=86.36mm, 17W, length*width*height=75*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 86.36mm 17W length 75mm width 9mm height 9mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Axial_Shunt_L22.2mm_W8.0mm_PS14.30mm_P25.40mm -Resistor, Axial_Shunt series, Box, pin pitch=25.4mm, 3W, length*width*height=22.2*8*8mm^3, shunt pin pitch = 14.30mm, http://www.vishay.com/docs/30217/cpsl.pdf -Resistor Axial_Shunt series Box pin pitch 25.4mm 3W length 22.2mm width 8mm height 8mm shunt pin pitch 14.30mm -0 -4 -4 -PCM_Resistor_THT_AKL -R_Axial_Shunt_L22.2mm_W9.5mm_PS14.30mm_P25.40mm -Resistor, Axial_Shunt series, Box, pin pitch=25.4mm, 5W, length*width*height=22.2*9.5*9.5mm^3, shunt pin pitch = 14.30mm, http://www.vishay.com/docs/30217/cpsl.pdf -Resistor Axial_Shunt series Box pin pitch 25.4mm 5W length 22.2mm width 9.5mm height 9.5mm shunt pin pitch 14.30mm -0 -4 -4 -PCM_Resistor_THT_AKL -R_Axial_Shunt_L35.3mm_W9.5mm_PS25.40mm_P38.10mm -Resistor, Axial_Shunt series, Box, pin pitch=38.1mm, 7W, length*width*height=35.3*9.5*9.5mm^3, shunt pin pitch = 25.40mm, http://www.vishay.com/docs/30217/cpsl.pdf -Resistor Axial_Shunt series Box pin pitch 38.1mm 7W length 35.3mm width 9.5mm height 9.5mm shunt pin pitch 25.40mm -0 -4 -4 -PCM_Resistor_THT_AKL -R_Axial_Shunt_L47.6mm_W9.5mm_PS34.93mm_P50.80mm -Resistor, Axial_Shunt series, Box, pin pitch=50.8mm, 10W, length*width*height=47.6*9.5*9.5mm^3, shunt pin pitch = 34.93mm, http://www.vishay.com/docs/30217/cpsl.pdf -Resistor Axial_Shunt series Box pin pitch 50.8mm 10W length 47.6mm width 9.5mm height 9.5mm shunt pin pitch 34.93mm -0 -4 -4 -PCM_Resistor_THT_AKL -R_Axial_Shunt_L47.6mm_W12.7mm_PS34.93mm_P50.80mm -Resistor, Axial_Shunt series, Box, pin pitch=50.8mm, 15W, length*width*height=47.6*12.7*12.7mm^3, shunt pin pitch = 34.93mm, http://www.vishay.com/docs/30217/cpsl.pdf -Resistor Axial_Shunt series Box pin pitch 50.8mm 15W length 47.6mm width 12.7mm height 12.7mm shunt pin pitch 34.93mm -0 -4 -4 -PCM_Resistor_THT_AKL -R_Bare_Metal_Element_L12.4mm_W4.8mm_P11.40mm -Resistor, Bare_Metal_Element series, Bare Metal Strip/Wire, Horizontal, pin pitch=11.4mm, 1W, length*width=12.4*4.8mm^2, https://www.bourns.com/pdfs/PWR4412-2S.pdf -Resistor Bare_Metal_Element series Bare Metal Strip Wire Horizontal pin pitch 11.4mm 1W length 12.4mm width 4.8mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Bare_Metal_Element_L16.3mm_W4.8mm_P15.30mm -Resistor, Bare_Metal_Element series, Bare Metal Strip/Wire, Horizontal, pin pitch=15.3mm, 3W, length*width=16.3*4.8mm^2, https://www.bourns.com/pdfs/PWR4412-2S.pdf -Resistor Bare_Metal_Element series Bare Metal Strip Wire Horizontal pin pitch 15.3mm 3W length 16.3mm width 4.8mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Bare_Metal_Element_L21.3mm_W4.8mm_P20.30mm -Resistor, Bare_Metal_Element series, Bare Metal Strip/Wire, Horizontal, pin pitch=20.3mm, 5W, length*width=21.3*4.8mm^2, https://www.bourns.com/pdfs/PWR4412-2S.pdf -Resistor Bare_Metal_Element series Bare Metal Strip Wire Horizontal pin pitch 20.3mm 5W length 21.3mm width 4.8mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Box_L8.4mm_W2.5mm_P5.08mm -Resistor, Box series, Radial, pin pitch=5.08mm, 0.5W = 1/2W, length*width=8.38*2.54mm^2, http://www.vishay.com/docs/60051/cns020.pdf -Resistor Box series Radial pin pitch 5.08mm 0.5W = 1/2W length 8.38mm width 2.54mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Box_L13.0mm_W4.0mm_P9.00mm -Resistor, Box series, Radial, pin pitch=9.00mm, 2W, length*width=13.0*4.0mm^2, http://www.produktinfo.conrad.com/datenblaetter/425000-449999/443860-da-01-de-METALLBAND_WIDERSTAND_0_1_OHM_5W_5Pr.pdf -Resistor Box series Radial pin pitch 9.00mm 2W length 13.0mm width 4.0mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Box_L14.0mm_W5.0mm_P9.00mm -Resistor, Box series, Radial, pin pitch=9.00mm, 5W, length*width=14.0*5.0mm^2, http://www.produktinfo.conrad.com/datenblaetter/425000-449999/443860-da-01-de-METALLBAND_WIDERSTAND_0_1_OHM_5W_5Pr.pdf -Resistor Box series Radial pin pitch 9.00mm 5W length 14.0mm width 5.0mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Box_L26.0mm_W5.0mm_P20.00mm -Resistor, Box series, Radial, pin pitch=20.00mm, 10W, length*width=26.0*5.0mm^2, http://www.produktinfo.conrad.com/datenblaetter/425000-449999/443860-da-01-de-METALLBAND_WIDERSTAND_0_1_OHM_5W_5Pr.pdf -Resistor Box series Radial pin pitch 20.00mm 10W length 26.0mm width 5.0mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Radial_Power_L7.0mm_W8.0mm_Px2.40mm_Py2.30mm -Resistor, Radial_Power series, Radial, pin pitch=2.40*2.30mm^2, 7W, length*width=7*8mm^2, http://www.vitrohm.com/content/files/vitrohm_series_kv_-_201601.pdf -Resistor Radial_Power series Radial pin pitch 2.40*2.30mm^2 7W length 7mm width 8mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Radial_Power_L9.0mm_W10.0mm_Px2.70mm_Py2.30mm -Resistor, Radial_Power series, Radial, pin pitch=2.70*2.30mm^2, 17W, length*width=9*10mm^2, http://www.vitrohm.com/content/files/vitrohm_series_kv_-_201601.pdf -Resistor Radial_Power series Radial pin pitch 2.70*2.30mm^2 17W length 9mm width 10mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Radial_Power_L11.0mm_W7.0mm_P5.00mm -Resistor, Radial_Power series, Radial, pin pitch=5.00mm, 2W, length*width=11.0*7.0mm^2, http://www.vishay.com/docs/30218/cpcx.pdf -Resistor Radial_Power series Radial pin pitch 5.00mm 2W length 11.0mm width 7.0mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Radial_Power_L12.0mm_W8.0mm_P5.00mm -Resistor, Radial_Power series, Radial, pin pitch=5.00mm, 3W, length*width=12.0*8.0mm^2, http://www.vishay.com/docs/30218/cpcx.pdf -Resistor Radial_Power series Radial pin pitch 5.00mm 3W length 12.0mm width 8.0mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Radial_Power_L13.0mm_W9.0mm_P5.00mm -Resistor, Radial_Power series, Radial, pin pitch=5.00mm, 7W, length*width=13.0*9.0mm^2, http://www.vishay.com/docs/30218/cpcx.pdf -Resistor Radial_Power series Radial pin pitch 5.00mm 7W length 13.0mm width 9.0mm -0 -2 -2 -PCM_Resistor_THT_AKL -R_Radial_Power_L16.1mm_W9.0mm_P7.37mm -Resistor, Radial_Power series, Radial, pin pitch=7.37mm, 10W, length*width=16.1*9mm^2, http://www.vishay.com/docs/30218/cpcx.pdf -Resistor Radial_Power series Radial pin pitch 7.37mm 10W length 16.1mm width 9mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Axial_DIN0204_L3.6mm_D1.6mm_P5.08mm_Horizontal -Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=5.08mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0204 series Axial Horizontal pin pitch 5.08mm 0.167W length 3.6mm diameter 1.6mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Axial_DIN0204_L3.6mm_D1.6mm_P5.08mm_Vertical -Resistor, Axial_DIN0204 series, Axial, Vertical, pin pitch=5.08mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf -Resistor Axial_DIN0204 series Axial Vertical pin pitch 5.08mm 0.167W length 3.6mm diameter 1.6mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal -Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0204 series Axial Horizontal pin pitch 7.62mm 0.167W length 3.6mm diameter 1.6mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Axial_DIN0204_L3.6mm_D1.6mm_P10.16mm_Horizontal -Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=10.16mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0204 series Axial Horizontal pin pitch 10.16mm 0.167W length 3.6mm diameter 1.6mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Axial_DIN0204_L3.6mm_D1.6mm_P12.70mm_Horizontal -Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=12.7mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0204 series Axial Horizontal pin pitch 12.7mm 0.167W length 3.6mm diameter 1.6mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Axial_DIN0204_L3.6mm_D1.6mm_P15.24mm_Horizontal -Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=15.24mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0204 series Axial Horizontal pin pitch 15.24mm 0.167W length 3.6mm diameter 1.6mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Axial_DIN0204_L3.6mm_D1.6mm_P20.32mm_Horizontal -Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=20.32mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0204 series Axial Horizontal pin pitch 20.32mm 0.167W length 3.6mm diameter 1.6mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Axial_DIN0204_L3.6mm_D1.6mm_P25.40mm_Horizontal -Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=25.40mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0204 series Axial Horizontal pin pitch 25.40mm 0.167W length 3.6mm diameter 1.6mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Axial_DIN0204_L3.6mm_D1.6mm_P30.48mm_Horizontal -Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=30.48mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0204 series Axial Horizontal pin pitch 30.48mm 0.167W length 3.6mm diameter 1.6mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Axial_DIN0207_L6.3mm_D2.5mm_P5.08mm_Vertical -Resistor, Axial_DIN0207 series, Axial, Vertical, pin pitch=5.08mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf -Resistor Axial_DIN0207 series Axial Vertical pin pitch 5.08mm 0.25W = 1/4W length 6.3mm diameter 2.5mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal -Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal -Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Axial_DIN0207_L6.3mm_D2.5mm_P12.70mm_Horizontal -Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=12.7mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0207 series Axial Horizontal pin pitch 12.7mm 0.25W = 1/4W length 6.3mm diameter 2.5mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Axial_DIN0207_L6.3mm_D2.5mm_P15.24mm_Horizontal -Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=15.24mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0207 series Axial Horizontal pin pitch 15.24mm 0.25W = 1/4W length 6.3mm diameter 2.5mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Axial_DIN0207_L6.3mm_D2.5mm_P20.32mm_Horizontal -Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=20.32mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0207 series Axial Horizontal pin pitch 20.32mm 0.25W = 1/4W length 6.3mm diameter 2.5mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Axial_DIN0207_L6.3mm_D2.5mm_P25.40mm_Horizontal -Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=25.4mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0207 series Axial Horizontal pin pitch 25.4mm 0.25W = 1/4W length 6.3mm diameter 2.5mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Axial_DIN0207_L6.3mm_D2.5mm_P30.48mm_Horizontal -Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=30.48mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0207 series Axial Horizontal pin pitch 30.48mm 0.25W = 1/4W length 6.3mm diameter 2.5mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Axial_DIN0309_L9.0mm_D3.2mm_P5.08mm_Vertical -Resistor, Axial_DIN0309 series, Axial, Vertical, pin pitch=5.08mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf -Resistor Axial_DIN0309 series Axial Vertical pin pitch 5.08mm 0.5W = 1/2W length 9mm diameter 3.2mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Axial_DIN0309_L9.0mm_D3.2mm_P12.70mm_Horizontal -Resistor, Axial_DIN0309 series, Axial, Horizontal, pin pitch=12.7mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0309 series Axial Horizontal pin pitch 12.7mm 0.5W = 1/2W length 9mm diameter 3.2mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Axial_DIN0309_L9.0mm_D3.2mm_P15.24mm_Horizontal -Resistor, Axial_DIN0309 series, Axial, Horizontal, pin pitch=15.24mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0309 series Axial Horizontal pin pitch 15.24mm 0.5W = 1/2W length 9mm diameter 3.2mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Axial_DIN0309_L9.0mm_D3.2mm_P20.32mm_Horizontal -Resistor, Axial_DIN0309 series, Axial, Horizontal, pin pitch=20.32mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0309 series Axial Horizontal pin pitch 20.32mm 0.5W = 1/2W length 9mm diameter 3.2mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Axial_DIN0309_L9.0mm_D3.2mm_P25.40mm_Horizontal -Resistor, Axial_DIN0309 series, Axial, Horizontal, pin pitch=25.4mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0309 series Axial Horizontal pin pitch 25.4mm 0.5W = 1/2W length 9mm diameter 3.2mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Axial_DIN0309_L9.0mm_D3.2mm_P30.48mm_Horizontal -Resistor, Axial_DIN0309 series, Axial, Horizontal, pin pitch=30.48mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0309 series Axial Horizontal pin pitch 30.48mm 0.5W = 1/2W length 9mm diameter 3.2mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Axial_DIN0411_L9.9mm_D3.6mm_P5.08mm_Vertical -Resistor, Axial_DIN0411 series, Axial, Vertical, pin pitch=5.08mm, 1W, length*diameter=9.9*3.6mm^2 -Resistor Axial_DIN0411 series Axial Vertical pin pitch 5.08mm 1W length 9.9mm diameter 3.6mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Axial_DIN0411_L9.9mm_D3.6mm_P7.62mm_Vertical -Resistor, Axial_DIN0411 series, Axial, Vertical, pin pitch=7.62mm, 1W, length*diameter=9.9*3.6mm^2 -Resistor Axial_DIN0411 series Axial Vertical pin pitch 7.62mm 1W length 9.9mm diameter 3.6mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Axial_DIN0411_L9.9mm_D3.6mm_P12.70mm_Horizontal -Resistor, Axial_DIN0411 series, Axial, Horizontal, pin pitch=12.7mm, 1W, length*diameter=9.9*3.6mm^2, Alternate KiCad Library -Resistor Axial_DIN0411 series Axial Horizontal pin pitch 12.7mm 1W length 9.9mm diameter 3.6mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Axial_DIN0411_L9.9mm_D3.6mm_P15.24mm_Horizontal -Resistor, Axial_DIN0411 series, Axial, Horizontal, pin pitch=15.24mm, 1W, length*diameter=9.9*3.6mm^2, Alternate KiCad Library -Resistor Axial_DIN0411 series Axial Horizontal pin pitch 15.24mm 1W length 9.9mm diameter 3.6mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Axial_DIN0411_L9.9mm_D3.6mm_P20.32mm_Horizontal -Resistor, Axial_DIN0411 series, Axial, Horizontal, pin pitch=20.32mm, 1W, length*diameter=9.9*3.6mm^2, Alternate KiCad Library -Resistor Axial_DIN0411 series Axial Horizontal pin pitch 20.32mm 1W length 9.9mm diameter 3.6mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Axial_DIN0411_L9.9mm_D3.6mm_P25.40mm_Horizontal -Resistor, Axial_DIN0411 series, Axial, Horizontal, pin pitch=25.4mm, 1W, length*diameter=9.9*3.6mm^2, Alternate KiCad Library -Resistor Axial_DIN0411 series Axial Horizontal pin pitch 25.4mm 1W length 9.9mm diameter 3.6mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Axial_DIN0411_L9.9mm_D3.6mm_P30.48mm_Horizontal -Resistor, Axial_DIN0411 series, Axial, Horizontal, pin pitch=30.48mm, 1W, length*diameter=9.9*3.6mm^2, Alternate KiCad Library -Resistor Axial_DIN0411 series Axial Horizontal pin pitch 30.48mm 1W length 9.9mm diameter 3.6mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Axial_DIN0414_L11.9mm_D4.5mm_P5.08mm_Vertical -Resistor, Axial_DIN0414 series, Axial, Vertical, pin pitch=5.08mm, 2W, length*diameter=11.9*4.5mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf -Resistor Axial_DIN0414 series Axial Vertical pin pitch 5.08mm 2W length 11.9mm diameter 4.5mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Axial_DIN0414_L11.9mm_D4.5mm_P7.62mm_Vertical -Resistor, Axial_DIN0414 series, Axial, Vertical, pin pitch=7.62mm, 2W, length*diameter=11.9*4.5mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf -Resistor Axial_DIN0414 series Axial Vertical pin pitch 7.62mm 2W length 11.9mm diameter 4.5mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Axial_DIN0414_L11.9mm_D4.5mm_P15.24mm_Horizontal -Resistor, Axial_DIN0414 series, Axial, Horizontal, pin pitch=15.24mm, 2W, length*diameter=11.9*4.5mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf, Alternate KiCad Library -Resistor Axial_DIN0414 series Axial Horizontal pin pitch 15.24mm 2W length 11.9mm diameter 4.5mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Axial_DIN0414_L11.9mm_D4.5mm_P20.32mm_Horizontal -Resistor, Axial_DIN0414 series, Axial, Horizontal, pin pitch=20.32mm, 2W, length*diameter=11.9*4.5mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf, Alternate KiCad Library -Resistor Axial_DIN0414 series Axial Horizontal pin pitch 20.32mm 2W length 11.9mm diameter 4.5mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Axial_DIN0414_L11.9mm_D4.5mm_P25.40mm_Horizontal -Resistor, Axial_DIN0414 series, Axial, Horizontal, pin pitch=25.4mm, 2W, length*diameter=11.9*4.5mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf, Alternate KiCad Library -Resistor Axial_DIN0414 series Axial Horizontal pin pitch 25.4mm 2W length 11.9mm diameter 4.5mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Axial_DIN0414_L11.9mm_D4.5mm_P30.48mm_Horizontal -Resistor, Axial_DIN0414 series, Axial, Horizontal, pin pitch=30.48mm, 2W, length*diameter=11.9*4.5mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf, Alternate KiCad Library -Resistor Axial_DIN0414 series Axial Horizontal pin pitch 30.48mm 2W length 11.9mm diameter 4.5mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Axial_DIN0516_L15.5mm_D5.0mm_P5.08mm_Vertical -Resistor, Axial_DIN0516 series, Axial, Vertical, pin pitch=5.08mm, 2W, length*diameter=15.5*5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf -Resistor Axial_DIN0516 series Axial Vertical pin pitch 5.08mm 2W length 15.5mm diameter 5mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Axial_DIN0516_L15.5mm_D5.0mm_P7.62mm_Vertical -Resistor, Axial_DIN0516 series, Axial, Vertical, pin pitch=7.62mm, 2W, length*diameter=15.5*5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf -Resistor Axial_DIN0516 series Axial Vertical pin pitch 7.62mm 2W length 15.5mm diameter 5mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Axial_DIN0516_L15.5mm_D5.0mm_P20.32mm_Horizontal -Resistor, Axial_DIN0516 series, Axial, Horizontal, pin pitch=20.32mm, 2W, length*diameter=15.5*5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0516 series Axial Horizontal pin pitch 20.32mm 2W length 15.5mm diameter 5mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Axial_DIN0516_L15.5mm_D5.0mm_P25.40mm_Horizontal -Resistor, Axial_DIN0516 series, Axial, Horizontal, pin pitch=25.4mm, 2W, length*diameter=15.5*5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0516 series Axial Horizontal pin pitch 25.4mm 2W length 15.5mm diameter 5mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Axial_DIN0516_L15.5mm_D5.0mm_P30.48mm_Horizontal -Resistor, Axial_DIN0516 series, Axial, Horizontal, pin pitch=30.48mm, 2W, length*diameter=15.5*5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0516 series Axial Horizontal pin pitch 30.48mm 2W length 15.5mm diameter 5mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Axial_DIN0614_L14.3mm_D5.7mm_P5.08mm_Vertical -Resistor, Axial_DIN0614 series, Axial, Vertical, pin pitch=5.08mm, 1.5W, length*diameter=14.3*5.7mm^2 -Resistor Axial_DIN0614 series Axial Vertical pin pitch 5.08mm 1.5W length 14.3mm diameter 5.7mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Axial_DIN0614_L14.3mm_D5.7mm_P7.62mm_Vertical -Resistor, Axial_DIN0614 series, Axial, Vertical, pin pitch=7.62mm, 1.5W, length*diameter=14.3*5.7mm^2 -Resistor Axial_DIN0614 series Axial Vertical pin pitch 7.62mm 1.5W length 14.3mm diameter 5.7mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Axial_DIN0614_L14.3mm_D5.7mm_P15.24mm_Horizontal -Resistor, Axial_DIN0614 series, Axial, Horizontal, pin pitch=15.24mm, 1.5W, length*diameter=14.3*5.7mm^2, Alternate KiCad Library -Resistor Axial_DIN0614 series Axial Horizontal pin pitch 15.24mm 1.5W length 14.3mm diameter 5.7mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Axial_DIN0614_L14.3mm_D5.7mm_P20.32mm_Horizontal -Resistor, Axial_DIN0614 series, Axial, Horizontal, pin pitch=20.32mm, 1.5W, length*diameter=14.3*5.7mm^2, Alternate KiCad Library -Resistor Axial_DIN0614 series Axial Horizontal pin pitch 20.32mm 1.5W length 14.3mm diameter 5.7mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Axial_DIN0614_L14.3mm_D5.7mm_P25.40mm_Horizontal -Resistor, Axial_DIN0614 series, Axial, Horizontal, pin pitch=25.4mm, 1.5W, length*diameter=14.3*5.7mm^2, Alternate KiCad Library -Resistor Axial_DIN0614 series Axial Horizontal pin pitch 25.4mm 1.5W length 14.3mm diameter 5.7mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Axial_DIN0614_L14.3mm_D5.7mm_P30.48mm_Horizontal -Resistor, Axial_DIN0614 series, Axial, Horizontal, pin pitch=30.48mm, 1.5W, length*diameter=14.3*5.7mm^2, Alternate KiCad Library -Resistor Axial_DIN0614 series Axial Horizontal pin pitch 30.48mm 1.5W length 14.3mm diameter 5.7mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Axial_DIN0617_L17.0mm_D6.0mm_P5.08mm_Vertical -Resistor, Axial_DIN0617 series, Axial, Vertical, pin pitch=5.08mm, 2W, length*diameter=17*6mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf -Resistor Axial_DIN0617 series Axial Vertical pin pitch 5.08mm 2W length 17mm diameter 6mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Axial_DIN0617_L17.0mm_D6.0mm_P7.62mm_Vertical -Resistor, Axial_DIN0617 series, Axial, Vertical, pin pitch=7.62mm, 2W, length*diameter=17*6mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf -Resistor Axial_DIN0617 series Axial Vertical pin pitch 7.62mm 2W length 17mm diameter 6mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Axial_DIN0617_L17.0mm_D6.0mm_P20.32mm_Horizontal -Resistor, Axial_DIN0617 series, Axial, Horizontal, pin pitch=20.32mm, 2W, length*diameter=17*6mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf, Alternate KiCad Library -Resistor Axial_DIN0617 series Axial Horizontal pin pitch 20.32mm 2W length 17mm diameter 6mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Axial_DIN0617_L17.0mm_D6.0mm_P25.40mm_Horizontal -Resistor, Axial_DIN0617 series, Axial, Horizontal, pin pitch=25.4mm, 2W, length*diameter=17*6mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf, Alternate KiCad Library -Resistor Axial_DIN0617 series Axial Horizontal pin pitch 25.4mm 2W length 17mm diameter 6mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Axial_DIN0617_L17.0mm_D6.0mm_P30.48mm_Horizontal -Resistor, Axial_DIN0617 series, Axial, Horizontal, pin pitch=30.48mm, 2W, length*diameter=17*6mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf, Alternate KiCad Library -Resistor Axial_DIN0617 series Axial Horizontal pin pitch 30.48mm 2W length 17mm diameter 6mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Axial_DIN0918_L18.0mm_D9.0mm_P7.62mm_Vertical -Resistor, Axial_DIN0918 series, Axial, Vertical, pin pitch=7.62mm, 4W, length*diameter=18*9mm^2 -Resistor Axial_DIN0918 series Axial Vertical pin pitch 7.62mm 4W length 18mm diameter 9mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Axial_DIN0918_L18.0mm_D9.0mm_P22.86mm_Horizontal -Resistor, Axial_DIN0918 series, Axial, Horizontal, pin pitch=22.86mm, 4W, length*diameter=18*9mm^2, Alternate KiCad Library -Resistor Axial_DIN0918 series Axial Horizontal pin pitch 22.86mm 4W length 18mm diameter 9mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Axial_DIN0918_L18.0mm_D9.0mm_P25.40mm_Horizontal -Resistor, Axial_DIN0918 series, Axial, Horizontal, pin pitch=25.4mm, 4W, length*diameter=18*9mm^2, Alternate KiCad Library -Resistor Axial_DIN0918 series Axial Horizontal pin pitch 25.4mm 4W length 18mm diameter 9mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Axial_DIN0918_L18.0mm_D9.0mm_P30.48mm_Horizontal -Resistor, Axial_DIN0918 series, Axial, Horizontal, pin pitch=30.48mm, 4W, length*diameter=18*9mm^2, Alternate KiCad Library -Resistor Axial_DIN0918 series Axial Horizontal pin pitch 30.48mm 4W length 18mm diameter 9mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Axial_DIN0922_L20.0mm_D9.0mm_P7.62mm_Vertical -Resistor, Axial_DIN0922 series, Axial, Vertical, pin pitch=7.62mm, 5W, length*diameter=20*9mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf -Resistor Axial_DIN0922 series Axial Vertical pin pitch 7.62mm 5W length 20mm diameter 9mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Axial_DIN0922_L20.0mm_D9.0mm_P25.40mm_Horizontal -Resistor, Axial_DIN0922 series, Axial, Horizontal, pin pitch=25.4mm, 5W, length*diameter=20*9mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf, Alternate KiCad Library -Resistor Axial_DIN0922 series Axial Horizontal pin pitch 25.4mm 5W length 20mm diameter 9mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Axial_DIN0922_L20.0mm_D9.0mm_P30.48mm_Horizontal -Resistor, Axial_DIN0922 series, Axial, Horizontal, pin pitch=30.48mm, 5W, length*diameter=20*9mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf, Alternate KiCad Library -Resistor Axial_DIN0922 series Axial Horizontal pin pitch 30.48mm 5W length 20mm diameter 9mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Axial_Power_L20.0mm_W6.4mm_P5.08mm_Vertical -Resistor, Axial_Power series, Axial, Vertical, pin pitch=5.08mm, 4W, length*width*height=20*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Axial Vertical pin pitch 5.08mm 4W length 20mm width 6.4mm height 6.4mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Axial_Power_L20.0mm_W6.4mm_P7.62mm_Vertical -Resistor, Axial_Power series, Axial, Vertical, pin pitch=7.62mm, 4W, length*width*height=20*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Axial Vertical pin pitch 7.62mm 4W length 20mm width 6.4mm height 6.4mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Axial_Power_L20.0mm_W6.4mm_P22.40mm -Resistor, Axial_Power series, Box, pin pitch=22.4mm, 4W, length*width*height=20*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 22.4mm 4W length 20mm width 6.4mm height 6.4mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Axial_Power_L20.0mm_W6.4mm_P25.40mm -Resistor, Axial_Power series, Box, pin pitch=25.4mm, 4W, length*width*height=20*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 25.4mm 4W length 20mm width 6.4mm height 6.4mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Axial_Power_L20.0mm_W6.4mm_P30.48mm -Resistor, Axial_Power series, Box, pin pitch=30.48mm, 4W, length*width*height=20*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 30.48mm 4W length 20mm width 6.4mm height 6.4mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Axial_Power_L25.0mm_W6.4mm_P27.94mm -Resistor, Axial_Power series, Box, pin pitch=27.94mm, 5W, length*width*height=25*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 27.94mm 5W length 25mm width 6.4mm height 6.4mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Axial_Power_L25.0mm_W6.4mm_P30.48mm -Resistor, Axial_Power series, Box, pin pitch=30.48mm, 5W, length*width*height=25*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 30.48mm 5W length 25mm width 6.4mm height 6.4mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Axial_Power_L25.0mm_W9.0mm_P7.62mm_Vertical -Resistor, Axial_Power series, Axial, Vertical, pin pitch=7.62mm, 7W, length*width*height=25*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Axial Vertical pin pitch 7.62mm 7W length 25mm width 9mm height 9mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Axial_Power_L25.0mm_W9.0mm_P10.16mm_Vertical -Resistor, Axial_Power series, Axial, Vertical, pin pitch=10.16mm, 7W, length*width*height=25*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Axial Vertical pin pitch 10.16mm 7W length 25mm width 9mm height 9mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Axial_Power_L25.0mm_W9.0mm_P27.94mm -Resistor, Axial_Power series, Box, pin pitch=27.94mm, 7W, length*width*height=25*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 27.94mm 7W length 25mm width 9mm height 9mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Axial_Power_L25.0mm_W9.0mm_P30.48mm -Resistor, Axial_Power series, Box, pin pitch=30.48mm, 7W, length*width*height=25*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 30.48mm 7W length 25mm width 9mm height 9mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Axial_Power_L38.0mm_W6.4mm_P40.64mm -Resistor, Axial_Power series, Box, pin pitch=40.64mm, 7W, length*width*height=38*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 40.64mm 7W length 38mm width 6.4mm height 6.4mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Axial_Power_L38.0mm_W6.4mm_P45.72mm -Resistor, Axial_Power series, Box, pin pitch=45.72mm, 7W, length*width*height=38*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 45.72mm 7W length 38mm width 6.4mm height 6.4mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Axial_Power_L38.0mm_W9.0mm_P40.64mm -Resistor, Axial_Power series, Box, pin pitch=40.64mm, 9W, length*width*height=38*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 40.64mm 9W length 38mm width 9mm height 9mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Axial_Power_L38.0mm_W9.0mm_P45.72mm -Resistor, Axial_Power series, Box, pin pitch=45.72mm, 9W, length*width*height=38*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 45.72mm 9W length 38mm width 9mm height 9mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Axial_Power_L48.0mm_W12.5mm_P7.62mm_Vertical -Resistor, Axial_Power series, Axial, Vertical, pin pitch=7.62mm, 15W, length*width*height=48*12.5*12.5mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Axial Vertical pin pitch 7.62mm 15W length 48mm width 12.5mm height 12.5mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Axial_Power_L48.0mm_W12.5mm_P10.16mm_Vertical -Resistor, Axial_Power series, Axial, Vertical, pin pitch=10.16mm, 15W, length*width*height=48*12.5*12.5mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Axial Vertical pin pitch 10.16mm 15W length 48mm width 12.5mm height 12.5mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Axial_Power_L48.0mm_W12.5mm_P55.88mm -Resistor, Axial_Power series, Box, pin pitch=55.88mm, 15W, length*width*height=48*12.5*12.5mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 55.88mm 15W length 48mm width 12.5mm height 12.5mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Axial_Power_L48.0mm_W12.5mm_P60.96mm -Resistor, Axial_Power series, Box, pin pitch=60.96mm, 15W, length*width*height=48*12.5*12.5mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 60.96mm 15W length 48mm width 12.5mm height 12.5mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Axial_Power_L50.0mm_W9.0mm_P55.88mm -Resistor, Axial_Power series, Box, pin pitch=55.88mm, 11W, length*width*height=50*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 55.88mm 11W length 50mm width 9mm height 9mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Axial_Power_L50.0mm_W9.0mm_P60.96mm -Resistor, Axial_Power series, Box, pin pitch=60.96mm, 11W, length*width*height=50*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 60.96mm 11W length 50mm width 9mm height 9mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Axial_Power_L60.0mm_W14.0mm_P10.16mm_Vertical -Resistor, Axial_Power series, Axial, Vertical, pin pitch=10.16mm, 25W, length*width*height=60*14*14mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Axial Vertical pin pitch 10.16mm 25W length 60mm width 14mm height 14mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Axial_Power_L60.0mm_W14.0mm_P66.04mm -Resistor, Axial_Power series, Box, pin pitch=66.04mm, 25W, length*width*height=60*14*14mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 66.04mm 25W length 60mm width 14mm height 14mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Axial_Power_L60.0mm_W14.0mm_P71.12mm -Resistor, Axial_Power series, Box, pin pitch=71.12mm, 25W, length*width*height=60*14*14mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 71.12mm 25W length 60mm width 14mm height 14mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Axial_Power_L75.0mm_W9.0mm_P81.28mm -Resistor, Axial_Power series, Box, pin pitch=81.28mm, 17W, length*width*height=75*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 81.28mm 17W length 75mm width 9mm height 9mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Axial_Power_L75.0mm_W9.0mm_P86.36mm -Resistor, Axial_Power series, Box, pin pitch=86.36mm, 17W, length*width*height=75*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 86.36mm 17W length 75mm width 9mm height 9mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Axial_Shunt_L22.2mm_W8.0mm_PS14.30mm_P25.40mm -Resistor, Axial_Shunt series, Box, pin pitch=25.4mm, 3W, length*width*height=22.2*8*8mm^3, shunt pin pitch = 14.30mm, http://www.vishay.com/docs/30217/cpsl.pdf -Resistor Axial_Shunt series Box pin pitch 25.4mm 3W length 22.2mm width 8mm height 8mm shunt pin pitch 14.30mm -0 -4 -4 -PCM_Resistor_THT_AKL_Double -R_Axial_Shunt_L22.2mm_W9.5mm_PS14.30mm_P25.40mm -Resistor, Axial_Shunt series, Box, pin pitch=25.4mm, 5W, length*width*height=22.2*9.5*9.5mm^3, shunt pin pitch = 14.30mm, http://www.vishay.com/docs/30217/cpsl.pdf -Resistor Axial_Shunt series Box pin pitch 25.4mm 5W length 22.2mm width 9.5mm height 9.5mm shunt pin pitch 14.30mm -0 -4 -4 -PCM_Resistor_THT_AKL_Double -R_Axial_Shunt_L35.3mm_W9.5mm_PS25.40mm_P38.10mm -Resistor, Axial_Shunt series, Box, pin pitch=38.1mm, 7W, length*width*height=35.3*9.5*9.5mm^3, shunt pin pitch = 25.40mm, http://www.vishay.com/docs/30217/cpsl.pdf -Resistor Axial_Shunt series Box pin pitch 38.1mm 7W length 35.3mm width 9.5mm height 9.5mm shunt pin pitch 25.40mm -0 -4 -4 -PCM_Resistor_THT_AKL_Double -R_Axial_Shunt_L47.6mm_W9.5mm_PS34.93mm_P50.80mm -Resistor, Axial_Shunt series, Box, pin pitch=50.8mm, 10W, length*width*height=47.6*9.5*9.5mm^3, shunt pin pitch = 34.93mm, http://www.vishay.com/docs/30217/cpsl.pdf -Resistor Axial_Shunt series Box pin pitch 50.8mm 10W length 47.6mm width 9.5mm height 9.5mm shunt pin pitch 34.93mm -0 -4 -4 -PCM_Resistor_THT_AKL_Double -R_Axial_Shunt_L47.6mm_W12.7mm_PS34.93mm_P50.80mm -Resistor, Axial_Shunt series, Box, pin pitch=50.8mm, 15W, length*width*height=47.6*12.7*12.7mm^3, shunt pin pitch = 34.93mm, http://www.vishay.com/docs/30217/cpsl.pdf -Resistor Axial_Shunt series Box pin pitch 50.8mm 15W length 47.6mm width 12.7mm height 12.7mm shunt pin pitch 34.93mm -0 -4 -4 -PCM_Resistor_THT_AKL_Double -R_Bare_Metal_Element_L12.4mm_W4.8mm_P11.40mm -Resistor, Bare_Metal_Element series, Bare Metal Strip/Wire, Horizontal, pin pitch=11.4mm, 1W, length*width=12.4*4.8mm^2, https://www.bourns.com/pdfs/PWR4412-2S.pdf -Resistor Bare_Metal_Element series Bare Metal Strip Wire Horizontal pin pitch 11.4mm 1W length 12.4mm width 4.8mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Bare_Metal_Element_L16.3mm_W4.8mm_P15.30mm -Resistor, Bare_Metal_Element series, Bare Metal Strip/Wire, Horizontal, pin pitch=15.3mm, 3W, length*width=16.3*4.8mm^2, https://www.bourns.com/pdfs/PWR4412-2S.pdf -Resistor Bare_Metal_Element series Bare Metal Strip Wire Horizontal pin pitch 15.3mm 3W length 16.3mm width 4.8mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Bare_Metal_Element_L21.3mm_W4.8mm_P20.30mm -Resistor, Bare_Metal_Element series, Bare Metal Strip/Wire, Horizontal, pin pitch=20.3mm, 5W, length*width=21.3*4.8mm^2, https://www.bourns.com/pdfs/PWR4412-2S.pdf -Resistor Bare_Metal_Element series Bare Metal Strip Wire Horizontal pin pitch 20.3mm 5W length 21.3mm width 4.8mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Box_L8.4mm_W2.5mm_P5.08mm -Resistor, Box series, Radial, pin pitch=5.08mm, 0.5W = 1/2W, length*width=8.38*2.54mm^2, http://www.vishay.com/docs/60051/cns020.pdf -Resistor Box series Radial pin pitch 5.08mm 0.5W = 1/2W length 8.38mm width 2.54mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Box_L13.0mm_W4.0mm_P9.00mm -Resistor, Box series, Radial, pin pitch=9.00mm, 2W, length*width=13.0*4.0mm^2, http://www.produktinfo.conrad.com/datenblaetter/425000-449999/443860-da-01-de-METALLBAND_WIDERSTAND_0_1_OHM_5W_5Pr.pdf -Resistor Box series Radial pin pitch 9.00mm 2W length 13.0mm width 4.0mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Box_L14.0mm_W5.0mm_P9.00mm -Resistor, Box series, Radial, pin pitch=9.00mm, 5W, length*width=14.0*5.0mm^2, http://www.produktinfo.conrad.com/datenblaetter/425000-449999/443860-da-01-de-METALLBAND_WIDERSTAND_0_1_OHM_5W_5Pr.pdf -Resistor Box series Radial pin pitch 9.00mm 5W length 14.0mm width 5.0mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Box_L26.0mm_W5.0mm_P20.00mm -Resistor, Box series, Radial, pin pitch=20.00mm, 10W, length*width=26.0*5.0mm^2, http://www.produktinfo.conrad.com/datenblaetter/425000-449999/443860-da-01-de-METALLBAND_WIDERSTAND_0_1_OHM_5W_5Pr.pdf -Resistor Box series Radial pin pitch 20.00mm 10W length 26.0mm width 5.0mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Radial_Power_L11.0mm_W7.0mm_P5.00mm -Resistor, Radial_Power series, Radial, pin pitch=5.00mm, 2W, length*width=11.0*7.0mm^2, http://www.vishay.com/docs/30218/cpcx.pdf -Resistor Radial_Power series Radial pin pitch 5.00mm 2W length 11.0mm width 7.0mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Radial_Power_L12.0mm_W8.0mm_P5.00mm -Resistor, Radial_Power series, Radial, pin pitch=5.00mm, 3W, length*width=12.0*8.0mm^2, http://www.vishay.com/docs/30218/cpcx.pdf -Resistor Radial_Power series Radial pin pitch 5.00mm 3W length 12.0mm width 8.0mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Radial_Power_L13.0mm_W9.0mm_P5.00mm -Resistor, Radial_Power series, Radial, pin pitch=5.00mm, 7W, length*width=13.0*9.0mm^2, http://www.vishay.com/docs/30218/cpcx.pdf -Resistor Radial_Power series Radial pin pitch 5.00mm 7W length 13.0mm width 9.0mm -0 -2 -2 -PCM_Resistor_THT_AKL_Double -R_Radial_Power_L16.1mm_W9.0mm_P7.37mm -Resistor, Radial_Power series, Radial, pin pitch=7.37mm, 10W, length*width=16.1*9mm^2, http://www.vishay.com/docs/30218/cpcx.pdf -Resistor Radial_Power series Radial pin pitch 7.37mm 10W length 16.1mm width 9mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Array_SIP4 -4-pin Resistor SIP pack -R -0 -4 -4 -PCM_Resistor_THT_US_AKL -R_Array_SIP4_BigPads -4-pin Resistor SIP pack -R -0 -4 -4 -PCM_Resistor_THT_US_AKL -R_Array_SIP5 -5-pin Resistor SIP pack -R -0 -5 -5 -PCM_Resistor_THT_US_AKL -R_Array_SIP5_BigPads -5-pin Resistor SIP pack -R -0 -5 -5 -PCM_Resistor_THT_US_AKL -R_Array_SIP6 -6-pin Resistor SIP pack -R -0 -6 -6 -PCM_Resistor_THT_US_AKL -R_Array_SIP6_BigPads -6-pin Resistor SIP pack -R -0 -6 -6 -PCM_Resistor_THT_US_AKL -R_Array_SIP7 -7-pin Resistor SIP pack -R -0 -7 -7 -PCM_Resistor_THT_US_AKL -R_Array_SIP7_BigPads -7-pin Resistor SIP pack -R -0 -7 -7 -PCM_Resistor_THT_US_AKL -R_Array_SIP8 -8-pin Resistor SIP pack -R -0 -8 -8 -PCM_Resistor_THT_US_AKL -R_Array_SIP8_BigPads -8-pin Resistor SIP pack -R -0 -8 -8 -PCM_Resistor_THT_US_AKL -R_Array_SIP9 -9-pin Resistor SIP pack -R -0 -9 -9 -PCM_Resistor_THT_US_AKL -R_Array_SIP9_BigPads -9-pin Resistor SIP pack -R -0 -9 -9 -PCM_Resistor_THT_US_AKL -R_Array_SIP10 -10-pin Resistor SIP pack -R -0 -10 -10 -PCM_Resistor_THT_US_AKL -R_Array_SIP10_BigPads -10-pin Resistor SIP pack -R -0 -10 -10 -PCM_Resistor_THT_US_AKL -R_Array_SIP11 -11-pin Resistor SIP pack -R -0 -11 -11 -PCM_Resistor_THT_US_AKL -R_Array_SIP11_BigPads -11-pin Resistor SIP pack -R -0 -11 -11 -PCM_Resistor_THT_US_AKL -R_Array_SIP12 -12-pin Resistor SIP pack -R -0 -12 -12 -PCM_Resistor_THT_US_AKL -R_Array_SIP12_BigPads -12-pin Resistor SIP pack -R -0 -12 -12 -PCM_Resistor_THT_US_AKL -R_Array_SIP13 -13-pin Resistor SIP pack -R -0 -13 -13 -PCM_Resistor_THT_US_AKL -R_Array_SIP13_BigPads -13-pin Resistor SIP pack -R -0 -13 -13 -PCM_Resistor_THT_US_AKL -R_Array_SIP14 -14-pin Resistor SIP pack -R -0 -14 -14 -PCM_Resistor_THT_US_AKL -R_Array_SIP14_BigPads -14-pin Resistor SIP pack -R -0 -14 -14 -PCM_Resistor_THT_US_AKL -R_Axial_DIN0204_L3.6mm_D1.6mm_P1.90mm_Vertical -Resistor, Axial_DIN0204 series, Axial, Vertical, pin pitch=1.9mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf -Resistor Axial_DIN0204 series Axial Vertical pin pitch 1.9mm 0.167W length 3.6mm diameter 1.6mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_DIN0204_L3.6mm_D1.6mm_P2.54mm_Vertical -Resistor, Axial_DIN0204 series, Axial, Vertical, pin pitch=2.54mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf -Resistor Axial_DIN0204 series Axial Vertical pin pitch 2.54mm 0.167W length 3.6mm diameter 1.6mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_DIN0204_L3.6mm_D1.6mm_P5.08mm_Horizontal -Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=5.08mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0204 series Axial Horizontal pin pitch 5.08mm 0.167W length 3.6mm diameter 1.6mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_DIN0204_L3.6mm_D1.6mm_P5.08mm_Vertical -Resistor, Axial_DIN0204 series, Axial, Vertical, pin pitch=5.08mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf -Resistor Axial_DIN0204 series Axial Vertical pin pitch 5.08mm 0.167W length 3.6mm diameter 1.6mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal -Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0204 series Axial Horizontal pin pitch 7.62mm 0.167W length 3.6mm diameter 1.6mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_DIN0204_L3.6mm_D1.6mm_P10.16mm_Horizontal -Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=10.16mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0204 series Axial Horizontal pin pitch 10.16mm 0.167W length 3.6mm diameter 1.6mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_DIN0204_L3.6mm_D1.6mm_P12.70mm_Horizontal -Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=12.7mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0204 series Axial Horizontal pin pitch 12.7mm 0.167W length 3.6mm diameter 1.6mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_DIN0204_L3.6mm_D1.6mm_P15.24mm_Horizontal -Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=15.24mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0204 series Axial Horizontal pin pitch 15.24mm 0.167W length 3.6mm diameter 1.6mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_DIN0204_L3.6mm_D1.6mm_P20.32mm_Horizontal -Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=20.32mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0204 series Axial Horizontal pin pitch 20.32mm 0.167W length 3.6mm diameter 1.6mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_DIN0204_L3.6mm_D1.6mm_P25.40mm_Horizontal -Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=25.40mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0204 series Axial Horizontal pin pitch 25.40mm 0.167W length 3.6mm diameter 1.6mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_DIN0204_L3.6mm_D1.6mm_P30.48mm_Horizontal -Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=30.48mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0204 series Axial Horizontal pin pitch 30.48mm 0.167W length 3.6mm diameter 1.6mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical -Resistor, Axial_DIN0207 series, Axial, Vertical, pin pitch=2.54mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf -Resistor Axial_DIN0207 series Axial Vertical pin pitch 2.54mm 0.25W = 1/4W length 6.3mm diameter 2.5mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_DIN0207_L6.3mm_D2.5mm_P5.08mm_Vertical -Resistor, Axial_DIN0207 series, Axial, Vertical, pin pitch=5.08mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf -Resistor Axial_DIN0207 series Axial Vertical pin pitch 5.08mm 0.25W = 1/4W length 6.3mm diameter 2.5mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal -Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal -Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_DIN0207_L6.3mm_D2.5mm_P12.70mm_Horizontal -Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=12.7mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0207 series Axial Horizontal pin pitch 12.7mm 0.25W = 1/4W length 6.3mm diameter 2.5mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_DIN0207_L6.3mm_D2.5mm_P15.24mm_Horizontal -Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=15.24mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0207 series Axial Horizontal pin pitch 15.24mm 0.25W = 1/4W length 6.3mm diameter 2.5mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_DIN0207_L6.3mm_D2.5mm_P20.32mm_Horizontal -Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=20.32mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0207 series Axial Horizontal pin pitch 20.32mm 0.25W = 1/4W length 6.3mm diameter 2.5mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_DIN0207_L6.3mm_D2.5mm_P25.40mm_Horizontal -Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=25.4mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0207 series Axial Horizontal pin pitch 25.4mm 0.25W = 1/4W length 6.3mm diameter 2.5mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_DIN0207_L6.3mm_D2.5mm_P30.48mm_Horizontal -Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=30.48mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0207 series Axial Horizontal pin pitch 30.48mm 0.25W = 1/4W length 6.3mm diameter 2.5mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_DIN0309_L9.0mm_D3.2mm_P2.54mm_Vertical -Resistor, Axial_DIN0309 series, Axial, Vertical, pin pitch=2.54mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf -Resistor Axial_DIN0309 series Axial Vertical pin pitch 2.54mm 0.5W = 1/2W length 9mm diameter 3.2mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_DIN0309_L9.0mm_D3.2mm_P5.08mm_Vertical -Resistor, Axial_DIN0309 series, Axial, Vertical, pin pitch=5.08mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf -Resistor Axial_DIN0309 series Axial Vertical pin pitch 5.08mm 0.5W = 1/2W length 9mm diameter 3.2mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_DIN0309_L9.0mm_D3.2mm_P12.70mm_Horizontal -Resistor, Axial_DIN0309 series, Axial, Horizontal, pin pitch=12.7mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0309 series Axial Horizontal pin pitch 12.7mm 0.5W = 1/2W length 9mm diameter 3.2mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_DIN0309_L9.0mm_D3.2mm_P15.24mm_Horizontal -Resistor, Axial_DIN0309 series, Axial, Horizontal, pin pitch=15.24mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0309 series Axial Horizontal pin pitch 15.24mm 0.5W = 1/2W length 9mm diameter 3.2mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_DIN0309_L9.0mm_D3.2mm_P20.32mm_Horizontal -Resistor, Axial_DIN0309 series, Axial, Horizontal, pin pitch=20.32mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0309 series Axial Horizontal pin pitch 20.32mm 0.5W = 1/2W length 9mm diameter 3.2mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_DIN0309_L9.0mm_D3.2mm_P25.40mm_Horizontal -Resistor, Axial_DIN0309 series, Axial, Horizontal, pin pitch=25.4mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0309 series Axial Horizontal pin pitch 25.4mm 0.5W = 1/2W length 9mm diameter 3.2mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_DIN0309_L9.0mm_D3.2mm_P30.48mm_Horizontal -Resistor, Axial_DIN0309 series, Axial, Horizontal, pin pitch=30.48mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0309 series Axial Horizontal pin pitch 30.48mm 0.5W = 1/2W length 9mm diameter 3.2mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_DIN0411_L9.9mm_D3.6mm_P5.08mm_Vertical -Resistor, Axial_DIN0411 series, Axial, Vertical, pin pitch=5.08mm, 1W, length*diameter=9.9*3.6mm^2 -Resistor Axial_DIN0411 series Axial Vertical pin pitch 5.08mm 1W length 9.9mm diameter 3.6mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_DIN0411_L9.9mm_D3.6mm_P7.62mm_Vertical -Resistor, Axial_DIN0411 series, Axial, Vertical, pin pitch=7.62mm, 1W, length*diameter=9.9*3.6mm^2 -Resistor Axial_DIN0411 series Axial Vertical pin pitch 7.62mm 1W length 9.9mm diameter 3.6mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_DIN0411_L9.9mm_D3.6mm_P12.70mm_Horizontal -Resistor, Axial_DIN0411 series, Axial, Horizontal, pin pitch=12.7mm, 1W, length*diameter=9.9*3.6mm^2, Alternate KiCad Library -Resistor Axial_DIN0411 series Axial Horizontal pin pitch 12.7mm 1W length 9.9mm diameter 3.6mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_DIN0411_L9.9mm_D3.6mm_P15.24mm_Horizontal -Resistor, Axial_DIN0411 series, Axial, Horizontal, pin pitch=15.24mm, 1W, length*diameter=9.9*3.6mm^2, Alternate KiCad Library -Resistor Axial_DIN0411 series Axial Horizontal pin pitch 15.24mm 1W length 9.9mm diameter 3.6mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_DIN0411_L9.9mm_D3.6mm_P20.32mm_Horizontal -Resistor, Axial_DIN0411 series, Axial, Horizontal, pin pitch=20.32mm, 1W, length*diameter=9.9*3.6mm^2, Alternate KiCad Library -Resistor Axial_DIN0411 series Axial Horizontal pin pitch 20.32mm 1W length 9.9mm diameter 3.6mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_DIN0411_L9.9mm_D3.6mm_P25.40mm_Horizontal -Resistor, Axial_DIN0411 series, Axial, Horizontal, pin pitch=25.4mm, 1W, length*diameter=9.9*3.6mm^2, Alternate KiCad Library -Resistor Axial_DIN0411 series Axial Horizontal pin pitch 25.4mm 1W length 9.9mm diameter 3.6mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_DIN0411_L9.9mm_D3.6mm_P30.48mm_Horizontal -Resistor, Axial_DIN0411 series, Axial, Horizontal, pin pitch=30.48mm, 1W, length*diameter=9.9*3.6mm^2, Alternate KiCad Library -Resistor Axial_DIN0411 series Axial Horizontal pin pitch 30.48mm 1W length 9.9mm diameter 3.6mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_DIN0414_L11.9mm_D4.5mm_P5.08mm_Vertical -Resistor, Axial_DIN0414 series, Axial, Vertical, pin pitch=5.08mm, 2W, length*diameter=11.9*4.5mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf -Resistor Axial_DIN0414 series Axial Vertical pin pitch 5.08mm 2W length 11.9mm diameter 4.5mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_DIN0414_L11.9mm_D4.5mm_P7.62mm_Vertical -Resistor, Axial_DIN0414 series, Axial, Vertical, pin pitch=7.62mm, 2W, length*diameter=11.9*4.5mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf -Resistor Axial_DIN0414 series Axial Vertical pin pitch 7.62mm 2W length 11.9mm diameter 4.5mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_DIN0414_L11.9mm_D4.5mm_P15.24mm_Horizontal -Resistor, Axial_DIN0414 series, Axial, Horizontal, pin pitch=15.24mm, 2W, length*diameter=11.9*4.5mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf, Alternate KiCad Library -Resistor Axial_DIN0414 series Axial Horizontal pin pitch 15.24mm 2W length 11.9mm diameter 4.5mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_DIN0414_L11.9mm_D4.5mm_P20.32mm_Horizontal -Resistor, Axial_DIN0414 series, Axial, Horizontal, pin pitch=20.32mm, 2W, length*diameter=11.9*4.5mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf, Alternate KiCad Library -Resistor Axial_DIN0414 series Axial Horizontal pin pitch 20.32mm 2W length 11.9mm diameter 4.5mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_DIN0414_L11.9mm_D4.5mm_P25.40mm_Horizontal -Resistor, Axial_DIN0414 series, Axial, Horizontal, pin pitch=25.4mm, 2W, length*diameter=11.9*4.5mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf, Alternate KiCad Library -Resistor Axial_DIN0414 series Axial Horizontal pin pitch 25.4mm 2W length 11.9mm diameter 4.5mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_DIN0414_L11.9mm_D4.5mm_P30.48mm_Horizontal -Resistor, Axial_DIN0414 series, Axial, Horizontal, pin pitch=30.48mm, 2W, length*diameter=11.9*4.5mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf, Alternate KiCad Library -Resistor Axial_DIN0414 series Axial Horizontal pin pitch 30.48mm 2W length 11.9mm diameter 4.5mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_DIN0516_L15.5mm_D5.0mm_P5.08mm_Vertical -Resistor, Axial_DIN0516 series, Axial, Vertical, pin pitch=5.08mm, 2W, length*diameter=15.5*5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf -Resistor Axial_DIN0516 series Axial Vertical pin pitch 5.08mm 2W length 15.5mm diameter 5mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_DIN0516_L15.5mm_D5.0mm_P7.62mm_Vertical -Resistor, Axial_DIN0516 series, Axial, Vertical, pin pitch=7.62mm, 2W, length*diameter=15.5*5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf -Resistor Axial_DIN0516 series Axial Vertical pin pitch 7.62mm 2W length 15.5mm diameter 5mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_DIN0516_L15.5mm_D5.0mm_P20.32mm_Horizontal -Resistor, Axial_DIN0516 series, Axial, Horizontal, pin pitch=20.32mm, 2W, length*diameter=15.5*5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0516 series Axial Horizontal pin pitch 20.32mm 2W length 15.5mm diameter 5mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_DIN0516_L15.5mm_D5.0mm_P25.40mm_Horizontal -Resistor, Axial_DIN0516 series, Axial, Horizontal, pin pitch=25.4mm, 2W, length*diameter=15.5*5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0516 series Axial Horizontal pin pitch 25.4mm 2W length 15.5mm diameter 5mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_DIN0516_L15.5mm_D5.0mm_P30.48mm_Horizontal -Resistor, Axial_DIN0516 series, Axial, Horizontal, pin pitch=30.48mm, 2W, length*diameter=15.5*5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0516 series Axial Horizontal pin pitch 30.48mm 2W length 15.5mm diameter 5mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_DIN0614_L14.3mm_D5.7mm_P5.08mm_Vertical -Resistor, Axial_DIN0614 series, Axial, Vertical, pin pitch=5.08mm, 1.5W, length*diameter=14.3*5.7mm^2 -Resistor Axial_DIN0614 series Axial Vertical pin pitch 5.08mm 1.5W length 14.3mm diameter 5.7mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_DIN0614_L14.3mm_D5.7mm_P7.62mm_Vertical -Resistor, Axial_DIN0614 series, Axial, Vertical, pin pitch=7.62mm, 1.5W, length*diameter=14.3*5.7mm^2 -Resistor Axial_DIN0614 series Axial Vertical pin pitch 7.62mm 1.5W length 14.3mm diameter 5.7mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_DIN0614_L14.3mm_D5.7mm_P15.24mm_Horizontal -Resistor, Axial_DIN0614 series, Axial, Horizontal, pin pitch=15.24mm, 1.5W, length*diameter=14.3*5.7mm^2, Alternate KiCad Library -Resistor Axial_DIN0614 series Axial Horizontal pin pitch 15.24mm 1.5W length 14.3mm diameter 5.7mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_DIN0614_L14.3mm_D5.7mm_P20.32mm_Horizontal -Resistor, Axial_DIN0614 series, Axial, Horizontal, pin pitch=20.32mm, 1.5W, length*diameter=14.3*5.7mm^2, Alternate KiCad Library -Resistor Axial_DIN0614 series Axial Horizontal pin pitch 20.32mm 1.5W length 14.3mm diameter 5.7mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_DIN0614_L14.3mm_D5.7mm_P25.40mm_Horizontal -Resistor, Axial_DIN0614 series, Axial, Horizontal, pin pitch=25.4mm, 1.5W, length*diameter=14.3*5.7mm^2, Alternate KiCad Library -Resistor Axial_DIN0614 series Axial Horizontal pin pitch 25.4mm 1.5W length 14.3mm diameter 5.7mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_DIN0614_L14.3mm_D5.7mm_P30.48mm_Horizontal -Resistor, Axial_DIN0614 series, Axial, Horizontal, pin pitch=30.48mm, 1.5W, length*diameter=14.3*5.7mm^2, Alternate KiCad Library -Resistor Axial_DIN0614 series Axial Horizontal pin pitch 30.48mm 1.5W length 14.3mm diameter 5.7mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_DIN0617_L17.0mm_D6.0mm_P5.08mm_Vertical -Resistor, Axial_DIN0617 series, Axial, Vertical, pin pitch=5.08mm, 2W, length*diameter=17*6mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf -Resistor Axial_DIN0617 series Axial Vertical pin pitch 5.08mm 2W length 17mm diameter 6mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_DIN0617_L17.0mm_D6.0mm_P7.62mm_Vertical -Resistor, Axial_DIN0617 series, Axial, Vertical, pin pitch=7.62mm, 2W, length*diameter=17*6mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf -Resistor Axial_DIN0617 series Axial Vertical pin pitch 7.62mm 2W length 17mm diameter 6mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_DIN0617_L17.0mm_D6.0mm_P20.32mm_Horizontal -Resistor, Axial_DIN0617 series, Axial, Horizontal, pin pitch=20.32mm, 2W, length*diameter=17*6mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf, Alternate KiCad Library -Resistor Axial_DIN0617 series Axial Horizontal pin pitch 20.32mm 2W length 17mm diameter 6mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_DIN0617_L17.0mm_D6.0mm_P25.40mm_Horizontal -Resistor, Axial_DIN0617 series, Axial, Horizontal, pin pitch=25.4mm, 2W, length*diameter=17*6mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf, Alternate KiCad Library -Resistor Axial_DIN0617 series Axial Horizontal pin pitch 25.4mm 2W length 17mm diameter 6mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_DIN0617_L17.0mm_D6.0mm_P30.48mm_Horizontal -Resistor, Axial_DIN0617 series, Axial, Horizontal, pin pitch=30.48mm, 2W, length*diameter=17*6mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf, Alternate KiCad Library -Resistor Axial_DIN0617 series Axial Horizontal pin pitch 30.48mm 2W length 17mm diameter 6mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_DIN0918_L18.0mm_D9.0mm_P7.62mm_Vertical -Resistor, Axial_DIN0918 series, Axial, Vertical, pin pitch=7.62mm, 4W, length*diameter=18*9mm^2 -Resistor Axial_DIN0918 series Axial Vertical pin pitch 7.62mm 4W length 18mm diameter 9mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_DIN0918_L18.0mm_D9.0mm_P22.86mm_Horizontal -Resistor, Axial_DIN0918 series, Axial, Horizontal, pin pitch=22.86mm, 4W, length*diameter=18*9mm^2, Alternate KiCad Library -Resistor Axial_DIN0918 series Axial Horizontal pin pitch 22.86mm 4W length 18mm diameter 9mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_DIN0918_L18.0mm_D9.0mm_P25.40mm_Horizontal -Resistor, Axial_DIN0918 series, Axial, Horizontal, pin pitch=25.4mm, 4W, length*diameter=18*9mm^2, Alternate KiCad Library -Resistor Axial_DIN0918 series Axial Horizontal pin pitch 25.4mm 4W length 18mm diameter 9mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_DIN0918_L18.0mm_D9.0mm_P30.48mm_Horizontal -Resistor, Axial_DIN0918 series, Axial, Horizontal, pin pitch=30.48mm, 4W, length*diameter=18*9mm^2, Alternate KiCad Library -Resistor Axial_DIN0918 series Axial Horizontal pin pitch 30.48mm 4W length 18mm diameter 9mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_DIN0922_L20.0mm_D9.0mm_P7.62mm_Vertical -Resistor, Axial_DIN0922 series, Axial, Vertical, pin pitch=7.62mm, 5W, length*diameter=20*9mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf -Resistor Axial_DIN0922 series Axial Vertical pin pitch 7.62mm 5W length 20mm diameter 9mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_DIN0922_L20.0mm_D9.0mm_P25.40mm_Horizontal -Resistor, Axial_DIN0922 series, Axial, Horizontal, pin pitch=25.4mm, 5W, length*diameter=20*9mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf, Alternate KiCad Library -Resistor Axial_DIN0922 series Axial Horizontal pin pitch 25.4mm 5W length 20mm diameter 9mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_DIN0922_L20.0mm_D9.0mm_P30.48mm_Horizontal -Resistor, Axial_DIN0922 series, Axial, Horizontal, pin pitch=30.48mm, 5W, length*diameter=20*9mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf, Alternate KiCad Library -Resistor Axial_DIN0922 series Axial Horizontal pin pitch 30.48mm 5W length 20mm diameter 9mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_Power_L20.0mm_W6.4mm_P5.08mm_Vertical -Resistor, Axial_Power series, Axial, Vertical, pin pitch=5.08mm, 4W, length*width*height=20*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Axial Vertical pin pitch 5.08mm 4W length 20mm width 6.4mm height 6.4mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_Power_L20.0mm_W6.4mm_P7.62mm_Vertical -Resistor, Axial_Power series, Axial, Vertical, pin pitch=7.62mm, 4W, length*width*height=20*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Axial Vertical pin pitch 7.62mm 4W length 20mm width 6.4mm height 6.4mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_Power_L20.0mm_W6.4mm_P22.40mm -Resistor, Axial_Power series, Box, pin pitch=22.4mm, 4W, length*width*height=20*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 22.4mm 4W length 20mm width 6.4mm height 6.4mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_Power_L20.0mm_W6.4mm_P25.40mm -Resistor, Axial_Power series, Box, pin pitch=25.4mm, 4W, length*width*height=20*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 25.4mm 4W length 20mm width 6.4mm height 6.4mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_Power_L20.0mm_W6.4mm_P30.48mm -Resistor, Axial_Power series, Box, pin pitch=30.48mm, 4W, length*width*height=20*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 30.48mm 4W length 20mm width 6.4mm height 6.4mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_Power_L25.0mm_W6.4mm_P27.94mm -Resistor, Axial_Power series, Box, pin pitch=27.94mm, 5W, length*width*height=25*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 27.94mm 5W length 25mm width 6.4mm height 6.4mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_Power_L25.0mm_W6.4mm_P30.48mm -Resistor, Axial_Power series, Box, pin pitch=30.48mm, 5W, length*width*height=25*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 30.48mm 5W length 25mm width 6.4mm height 6.4mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_Power_L25.0mm_W9.0mm_P7.62mm_Vertical -Resistor, Axial_Power series, Axial, Vertical, pin pitch=7.62mm, 7W, length*width*height=25*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Axial Vertical pin pitch 7.62mm 7W length 25mm width 9mm height 9mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_Power_L25.0mm_W9.0mm_P10.16mm_Vertical -Resistor, Axial_Power series, Axial, Vertical, pin pitch=10.16mm, 7W, length*width*height=25*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Axial Vertical pin pitch 10.16mm 7W length 25mm width 9mm height 9mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_Power_L25.0mm_W9.0mm_P27.94mm -Resistor, Axial_Power series, Box, pin pitch=27.94mm, 7W, length*width*height=25*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 27.94mm 7W length 25mm width 9mm height 9mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_Power_L25.0mm_W9.0mm_P30.48mm -Resistor, Axial_Power series, Box, pin pitch=30.48mm, 7W, length*width*height=25*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 30.48mm 7W length 25mm width 9mm height 9mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_Power_L38.0mm_W6.4mm_P40.64mm -Resistor, Axial_Power series, Box, pin pitch=40.64mm, 7W, length*width*height=38*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 40.64mm 7W length 38mm width 6.4mm height 6.4mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_Power_L38.0mm_W6.4mm_P45.72mm -Resistor, Axial_Power series, Box, pin pitch=45.72mm, 7W, length*width*height=38*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 45.72mm 7W length 38mm width 6.4mm height 6.4mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_Power_L38.0mm_W9.0mm_P40.64mm -Resistor, Axial_Power series, Box, pin pitch=40.64mm, 9W, length*width*height=38*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 40.64mm 9W length 38mm width 9mm height 9mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_Power_L38.0mm_W9.0mm_P45.72mm -Resistor, Axial_Power series, Box, pin pitch=45.72mm, 9W, length*width*height=38*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 45.72mm 9W length 38mm width 9mm height 9mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_Power_L48.0mm_W12.5mm_P7.62mm_Vertical -Resistor, Axial_Power series, Axial, Vertical, pin pitch=7.62mm, 15W, length*width*height=48*12.5*12.5mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Axial Vertical pin pitch 7.62mm 15W length 48mm width 12.5mm height 12.5mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_Power_L48.0mm_W12.5mm_P10.16mm_Vertical -Resistor, Axial_Power series, Axial, Vertical, pin pitch=10.16mm, 15W, length*width*height=48*12.5*12.5mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Axial Vertical pin pitch 10.16mm 15W length 48mm width 12.5mm height 12.5mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_Power_L48.0mm_W12.5mm_P55.88mm -Resistor, Axial_Power series, Box, pin pitch=55.88mm, 15W, length*width*height=48*12.5*12.5mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 55.88mm 15W length 48mm width 12.5mm height 12.5mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_Power_L48.0mm_W12.5mm_P60.96mm -Resistor, Axial_Power series, Box, pin pitch=60.96mm, 15W, length*width*height=48*12.5*12.5mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 60.96mm 15W length 48mm width 12.5mm height 12.5mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_Power_L50.0mm_W9.0mm_P55.88mm -Resistor, Axial_Power series, Box, pin pitch=55.88mm, 11W, length*width*height=50*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 55.88mm 11W length 50mm width 9mm height 9mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_Power_L50.0mm_W9.0mm_P60.96mm -Resistor, Axial_Power series, Box, pin pitch=60.96mm, 11W, length*width*height=50*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 60.96mm 11W length 50mm width 9mm height 9mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_Power_L60.0mm_W14.0mm_P10.16mm_Vertical -Resistor, Axial_Power series, Axial, Vertical, pin pitch=10.16mm, 25W, length*width*height=60*14*14mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Axial Vertical pin pitch 10.16mm 25W length 60mm width 14mm height 14mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_Power_L60.0mm_W14.0mm_P66.04mm -Resistor, Axial_Power series, Box, pin pitch=66.04mm, 25W, length*width*height=60*14*14mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 66.04mm 25W length 60mm width 14mm height 14mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_Power_L60.0mm_W14.0mm_P71.12mm -Resistor, Axial_Power series, Box, pin pitch=71.12mm, 25W, length*width*height=60*14*14mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 71.12mm 25W length 60mm width 14mm height 14mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_Power_L75.0mm_W9.0mm_P81.28mm -Resistor, Axial_Power series, Box, pin pitch=81.28mm, 17W, length*width*height=75*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 81.28mm 17W length 75mm width 9mm height 9mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_Power_L75.0mm_W9.0mm_P86.36mm -Resistor, Axial_Power series, Box, pin pitch=86.36mm, 17W, length*width*height=75*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 86.36mm 17W length 75mm width 9mm height 9mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Axial_Shunt_L22.2mm_W8.0mm_PS14.30mm_P25.40mm -Resistor, Axial_Shunt series, Box, pin pitch=25.4mm, 3W, length*width*height=22.2*8*8mm^3, shunt pin pitch = 14.30mm, http://www.vishay.com/docs/30217/cpsl.pdf -Resistor Axial_Shunt series Box pin pitch 25.4mm 3W length 22.2mm width 8mm height 8mm shunt pin pitch 14.30mm -0 -4 -4 -PCM_Resistor_THT_US_AKL -R_Axial_Shunt_L22.2mm_W9.5mm_PS14.30mm_P25.40mm -Resistor, Axial_Shunt series, Box, pin pitch=25.4mm, 5W, length*width*height=22.2*9.5*9.5mm^3, shunt pin pitch = 14.30mm, http://www.vishay.com/docs/30217/cpsl.pdf -Resistor Axial_Shunt series Box pin pitch 25.4mm 5W length 22.2mm width 9.5mm height 9.5mm shunt pin pitch 14.30mm -0 -4 -4 -PCM_Resistor_THT_US_AKL -R_Axial_Shunt_L35.3mm_W9.5mm_PS25.40mm_P38.10mm -Resistor, Axial_Shunt series, Box, pin pitch=38.1mm, 7W, length*width*height=35.3*9.5*9.5mm^3, shunt pin pitch = 25.40mm, http://www.vishay.com/docs/30217/cpsl.pdf -Resistor Axial_Shunt series Box pin pitch 38.1mm 7W length 35.3mm width 9.5mm height 9.5mm shunt pin pitch 25.40mm -0 -4 -4 -PCM_Resistor_THT_US_AKL -R_Axial_Shunt_L47.6mm_W9.5mm_PS34.93mm_P50.80mm -Resistor, Axial_Shunt series, Box, pin pitch=50.8mm, 10W, length*width*height=47.6*9.5*9.5mm^3, shunt pin pitch = 34.93mm, http://www.vishay.com/docs/30217/cpsl.pdf -Resistor Axial_Shunt series Box pin pitch 50.8mm 10W length 47.6mm width 9.5mm height 9.5mm shunt pin pitch 34.93mm -0 -4 -4 -PCM_Resistor_THT_US_AKL -R_Axial_Shunt_L47.6mm_W12.7mm_PS34.93mm_P50.80mm -Resistor, Axial_Shunt series, Box, pin pitch=50.8mm, 15W, length*width*height=47.6*12.7*12.7mm^3, shunt pin pitch = 34.93mm, http://www.vishay.com/docs/30217/cpsl.pdf -Resistor Axial_Shunt series Box pin pitch 50.8mm 15W length 47.6mm width 12.7mm height 12.7mm shunt pin pitch 34.93mm -0 -4 -4 -PCM_Resistor_THT_US_AKL -R_Bare_Metal_Element_L12.4mm_W4.8mm_P11.40mm -Resistor, Bare_Metal_Element series, Bare Metal Strip/Wire, Horizontal, pin pitch=11.4mm, 1W, length*width=12.4*4.8mm^2, https://www.bourns.com/pdfs/PWR4412-2S.pdf -Resistor Bare_Metal_Element series Bare Metal Strip Wire Horizontal pin pitch 11.4mm 1W length 12.4mm width 4.8mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Bare_Metal_Element_L16.3mm_W4.8mm_P15.30mm -Resistor, Bare_Metal_Element series, Bare Metal Strip/Wire, Horizontal, pin pitch=15.3mm, 3W, length*width=16.3*4.8mm^2, https://www.bourns.com/pdfs/PWR4412-2S.pdf -Resistor Bare_Metal_Element series Bare Metal Strip Wire Horizontal pin pitch 15.3mm 3W length 16.3mm width 4.8mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Bare_Metal_Element_L21.3mm_W4.8mm_P20.30mm -Resistor, Bare_Metal_Element series, Bare Metal Strip/Wire, Horizontal, pin pitch=20.3mm, 5W, length*width=21.3*4.8mm^2, https://www.bourns.com/pdfs/PWR4412-2S.pdf -Resistor Bare_Metal_Element series Bare Metal Strip Wire Horizontal pin pitch 20.3mm 5W length 21.3mm width 4.8mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Box_L8.4mm_W2.5mm_P5.08mm -Resistor, Box series, Radial, pin pitch=5.08mm, 0.5W = 1/2W, length*width=8.38*2.54mm^2, http://www.vishay.com/docs/60051/cns020.pdf -Resistor Box series Radial pin pitch 5.08mm 0.5W = 1/2W length 8.38mm width 2.54mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Box_L13.0mm_W4.0mm_P9.00mm -Resistor, Box series, Radial, pin pitch=9.00mm, 2W, length*width=13.0*4.0mm^2, http://www.produktinfo.conrad.com/datenblaetter/425000-449999/443860-da-01-de-METALLBAND_WIDERSTAND_0_1_OHM_5W_5Pr.pdf -Resistor Box series Radial pin pitch 9.00mm 2W length 13.0mm width 4.0mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Box_L14.0mm_W5.0mm_P9.00mm -Resistor, Box series, Radial, pin pitch=9.00mm, 5W, length*width=14.0*5.0mm^2, http://www.produktinfo.conrad.com/datenblaetter/425000-449999/443860-da-01-de-METALLBAND_WIDERSTAND_0_1_OHM_5W_5Pr.pdf -Resistor Box series Radial pin pitch 9.00mm 5W length 14.0mm width 5.0mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Box_L26.0mm_W5.0mm_P20.00mm -Resistor, Box series, Radial, pin pitch=20.00mm, 10W, length*width=26.0*5.0mm^2, http://www.produktinfo.conrad.com/datenblaetter/425000-449999/443860-da-01-de-METALLBAND_WIDERSTAND_0_1_OHM_5W_5Pr.pdf -Resistor Box series Radial pin pitch 20.00mm 10W length 26.0mm width 5.0mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Radial_Power_L7.0mm_W8.0mm_Px2.40mm_Py2.30mm -Resistor, Radial_Power series, Radial, pin pitch=2.40*2.30mm^2, 7W, length*width=7*8mm^2, http://www.vitrohm.com/content/files/vitrohm_series_kv_-_201601.pdf -Resistor Radial_Power series Radial pin pitch 2.40*2.30mm^2 7W length 7mm width 8mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Radial_Power_L9.0mm_W10.0mm_Px2.70mm_Py2.30mm -Resistor, Radial_Power series, Radial, pin pitch=2.70*2.30mm^2, 17W, length*width=9*10mm^2, http://www.vitrohm.com/content/files/vitrohm_series_kv_-_201601.pdf -Resistor Radial_Power series Radial pin pitch 2.70*2.30mm^2 17W length 9mm width 10mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Radial_Power_L11.0mm_W7.0mm_P5.00mm -Resistor, Radial_Power series, Radial, pin pitch=5.00mm, 2W, length*width=11.0*7.0mm^2, http://www.vishay.com/docs/30218/cpcx.pdf -Resistor Radial_Power series Radial pin pitch 5.00mm 2W length 11.0mm width 7.0mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Radial_Power_L12.0mm_W8.0mm_P5.00mm -Resistor, Radial_Power series, Radial, pin pitch=5.00mm, 3W, length*width=12.0*8.0mm^2, http://www.vishay.com/docs/30218/cpcx.pdf -Resistor Radial_Power series Radial pin pitch 5.00mm 3W length 12.0mm width 8.0mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Radial_Power_L13.0mm_W9.0mm_P5.00mm -Resistor, Radial_Power series, Radial, pin pitch=5.00mm, 7W, length*width=13.0*9.0mm^2, http://www.vishay.com/docs/30218/cpcx.pdf -Resistor Radial_Power series Radial pin pitch 5.00mm 7W length 13.0mm width 9.0mm -0 -2 -2 -PCM_Resistor_THT_US_AKL -R_Radial_Power_L16.1mm_W9.0mm_P7.37mm -Resistor, Radial_Power series, Radial, pin pitch=7.37mm, 10W, length*width=16.1*9mm^2, http://www.vishay.com/docs/30218/cpcx.pdf -Resistor Radial_Power series Radial pin pitch 7.37mm 10W length 16.1mm width 9mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Axial_DIN0204_L3.6mm_D1.6mm_P5.08mm_Horizontal -Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=5.08mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0204 series Axial Horizontal pin pitch 5.08mm 0.167W length 3.6mm diameter 1.6mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Axial_DIN0204_L3.6mm_D1.6mm_P5.08mm_Vertical -Resistor, Axial_DIN0204 series, Axial, Vertical, pin pitch=5.08mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf -Resistor Axial_DIN0204 series Axial Vertical pin pitch 5.08mm 0.167W length 3.6mm diameter 1.6mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal -Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0204 series Axial Horizontal pin pitch 7.62mm 0.167W length 3.6mm diameter 1.6mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Axial_DIN0204_L3.6mm_D1.6mm_P10.16mm_Horizontal -Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=10.16mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0204 series Axial Horizontal pin pitch 10.16mm 0.167W length 3.6mm diameter 1.6mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Axial_DIN0204_L3.6mm_D1.6mm_P12.70mm_Horizontal -Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=12.7mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0204 series Axial Horizontal pin pitch 12.7mm 0.167W length 3.6mm diameter 1.6mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Axial_DIN0204_L3.6mm_D1.6mm_P15.24mm_Horizontal -Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=15.24mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0204 series Axial Horizontal pin pitch 15.24mm 0.167W length 3.6mm diameter 1.6mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Axial_DIN0204_L3.6mm_D1.6mm_P20.32mm_Horizontal -Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=20.32mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0204 series Axial Horizontal pin pitch 20.32mm 0.167W length 3.6mm diameter 1.6mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Axial_DIN0204_L3.6mm_D1.6mm_P25.40mm_Horizontal -Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=25.40mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0204 series Axial Horizontal pin pitch 25.40mm 0.167W length 3.6mm diameter 1.6mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Axial_DIN0204_L3.6mm_D1.6mm_P30.48mm_Horizontal -Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=30.48mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0204 series Axial Horizontal pin pitch 30.48mm 0.167W length 3.6mm diameter 1.6mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Axial_DIN0207_L6.3mm_D2.5mm_P5.08mm_Vertical -Resistor, Axial_DIN0207 series, Axial, Vertical, pin pitch=5.08mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf -Resistor Axial_DIN0207 series Axial Vertical pin pitch 5.08mm 0.25W = 1/4W length 6.3mm diameter 2.5mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal -Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal -Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Axial_DIN0207_L6.3mm_D2.5mm_P12.70mm_Horizontal -Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=12.7mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0207 series Axial Horizontal pin pitch 12.7mm 0.25W = 1/4W length 6.3mm diameter 2.5mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Axial_DIN0207_L6.3mm_D2.5mm_P15.24mm_Horizontal -Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=15.24mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0207 series Axial Horizontal pin pitch 15.24mm 0.25W = 1/4W length 6.3mm diameter 2.5mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Axial_DIN0207_L6.3mm_D2.5mm_P20.32mm_Horizontal -Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=20.32mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0207 series Axial Horizontal pin pitch 20.32mm 0.25W = 1/4W length 6.3mm diameter 2.5mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Axial_DIN0207_L6.3mm_D2.5mm_P25.40mm_Horizontal -Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=25.4mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0207 series Axial Horizontal pin pitch 25.4mm 0.25W = 1/4W length 6.3mm diameter 2.5mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Axial_DIN0207_L6.3mm_D2.5mm_P30.48mm_Horizontal -Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=30.48mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0207 series Axial Horizontal pin pitch 30.48mm 0.25W = 1/4W length 6.3mm diameter 2.5mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Axial_DIN0309_L9.0mm_D3.2mm_P5.08mm_Vertical -Resistor, Axial_DIN0309 series, Axial, Vertical, pin pitch=5.08mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf -Resistor Axial_DIN0309 series Axial Vertical pin pitch 5.08mm 0.5W = 1/2W length 9mm diameter 3.2mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Axial_DIN0309_L9.0mm_D3.2mm_P12.70mm_Horizontal -Resistor, Axial_DIN0309 series, Axial, Horizontal, pin pitch=12.7mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0309 series Axial Horizontal pin pitch 12.7mm 0.5W = 1/2W length 9mm diameter 3.2mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Axial_DIN0309_L9.0mm_D3.2mm_P15.24mm_Horizontal -Resistor, Axial_DIN0309 series, Axial, Horizontal, pin pitch=15.24mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0309 series Axial Horizontal pin pitch 15.24mm 0.5W = 1/2W length 9mm diameter 3.2mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Axial_DIN0309_L9.0mm_D3.2mm_P20.32mm_Horizontal -Resistor, Axial_DIN0309 series, Axial, Horizontal, pin pitch=20.32mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0309 series Axial Horizontal pin pitch 20.32mm 0.5W = 1/2W length 9mm diameter 3.2mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Axial_DIN0309_L9.0mm_D3.2mm_P25.40mm_Horizontal -Resistor, Axial_DIN0309 series, Axial, Horizontal, pin pitch=25.4mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0309 series Axial Horizontal pin pitch 25.4mm 0.5W = 1/2W length 9mm diameter 3.2mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Axial_DIN0309_L9.0mm_D3.2mm_P30.48mm_Horizontal -Resistor, Axial_DIN0309 series, Axial, Horizontal, pin pitch=30.48mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0309 series Axial Horizontal pin pitch 30.48mm 0.5W = 1/2W length 9mm diameter 3.2mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Axial_DIN0411_L9.9mm_D3.6mm_P7.62mm_Vertical -Resistor, Axial_DIN0411 series, Axial, Vertical, pin pitch=7.62mm, 1W, length*diameter=9.9*3.6mm^2 -Resistor Axial_DIN0411 series Axial Vertical pin pitch 7.62mm 1W length 9.9mm diameter 3.6mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Axial_DIN0411_L9.9mm_D3.6mm_P12.70mm_Horizontal -Resistor, Axial_DIN0411 series, Axial, Horizontal, pin pitch=12.7mm, 1W, length*diameter=9.9*3.6mm^2, Alternate KiCad Library -Resistor Axial_DIN0411 series Axial Horizontal pin pitch 12.7mm 1W length 9.9mm diameter 3.6mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Axial_DIN0411_L9.9mm_D3.6mm_P15.24mm_Horizontal -Resistor, Axial_DIN0411 series, Axial, Horizontal, pin pitch=15.24mm, 1W, length*diameter=9.9*3.6mm^2, Alternate KiCad Library -Resistor Axial_DIN0411 series Axial Horizontal pin pitch 15.24mm 1W length 9.9mm diameter 3.6mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Axial_DIN0411_L9.9mm_D3.6mm_P20.32mm_Horizontal -Resistor, Axial_DIN0411 series, Axial, Horizontal, pin pitch=20.32mm, 1W, length*diameter=9.9*3.6mm^2, Alternate KiCad Library -Resistor Axial_DIN0411 series Axial Horizontal pin pitch 20.32mm 1W length 9.9mm diameter 3.6mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Axial_DIN0411_L9.9mm_D3.6mm_P25.40mm_Horizontal -Resistor, Axial_DIN0411 series, Axial, Horizontal, pin pitch=25.4mm, 1W, length*diameter=9.9*3.6mm^2, Alternate KiCad Library -Resistor Axial_DIN0411 series Axial Horizontal pin pitch 25.4mm 1W length 9.9mm diameter 3.6mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Axial_DIN0411_L9.9mm_D3.6mm_P30.48mm_Horizontal -Resistor, Axial_DIN0411 series, Axial, Horizontal, pin pitch=30.48mm, 1W, length*diameter=9.9*3.6mm^2, Alternate KiCad Library -Resistor Axial_DIN0411 series Axial Horizontal pin pitch 30.48mm 1W length 9.9mm diameter 3.6mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Axial_DIN0414_L11.9mm_D4.5mm_P7.62mm_Vertical -Resistor, Axial_DIN0414 series, Axial, Vertical, pin pitch=7.62mm, 2W, length*diameter=11.9*4.5mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf -Resistor Axial_DIN0414 series Axial Vertical pin pitch 7.62mm 2W length 11.9mm diameter 4.5mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Axial_DIN0414_L11.9mm_D4.5mm_P15.24mm_Horizontal -Resistor, Axial_DIN0414 series, Axial, Horizontal, pin pitch=15.24mm, 2W, length*diameter=11.9*4.5mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf, Alternate KiCad Library -Resistor Axial_DIN0414 series Axial Horizontal pin pitch 15.24mm 2W length 11.9mm diameter 4.5mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Axial_DIN0414_L11.9mm_D4.5mm_P20.32mm_Horizontal -Resistor, Axial_DIN0414 series, Axial, Horizontal, pin pitch=20.32mm, 2W, length*diameter=11.9*4.5mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf, Alternate KiCad Library -Resistor Axial_DIN0414 series Axial Horizontal pin pitch 20.32mm 2W length 11.9mm diameter 4.5mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Axial_DIN0414_L11.9mm_D4.5mm_P25.40mm_Horizontal -Resistor, Axial_DIN0414 series, Axial, Horizontal, pin pitch=25.4mm, 2W, length*diameter=11.9*4.5mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf, Alternate KiCad Library -Resistor Axial_DIN0414 series Axial Horizontal pin pitch 25.4mm 2W length 11.9mm diameter 4.5mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Axial_DIN0414_L11.9mm_D4.5mm_P30.48mm_Horizontal -Resistor, Axial_DIN0414 series, Axial, Horizontal, pin pitch=30.48mm, 2W, length*diameter=11.9*4.5mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf, Alternate KiCad Library -Resistor Axial_DIN0414 series Axial Horizontal pin pitch 30.48mm 2W length 11.9mm diameter 4.5mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Axial_DIN0516_L15.5mm_D5.0mm_P7.62mm_Vertical -Resistor, Axial_DIN0516 series, Axial, Vertical, pin pitch=7.62mm, 2W, length*diameter=15.5*5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf -Resistor Axial_DIN0516 series Axial Vertical pin pitch 7.62mm 2W length 15.5mm diameter 5mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Axial_DIN0516_L15.5mm_D5.0mm_P20.32mm_Horizontal -Resistor, Axial_DIN0516 series, Axial, Horizontal, pin pitch=20.32mm, 2W, length*diameter=15.5*5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0516 series Axial Horizontal pin pitch 20.32mm 2W length 15.5mm diameter 5mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Axial_DIN0516_L15.5mm_D5.0mm_P25.40mm_Horizontal -Resistor, Axial_DIN0516 series, Axial, Horizontal, pin pitch=25.4mm, 2W, length*diameter=15.5*5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0516 series Axial Horizontal pin pitch 25.4mm 2W length 15.5mm diameter 5mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Axial_DIN0516_L15.5mm_D5.0mm_P30.48mm_Horizontal -Resistor, Axial_DIN0516 series, Axial, Horizontal, pin pitch=30.48mm, 2W, length*diameter=15.5*5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf, Alternate KiCad Library -Resistor Axial_DIN0516 series Axial Horizontal pin pitch 30.48mm 2W length 15.5mm diameter 5mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Axial_DIN0614_L14.3mm_D5.7mm_P7.62mm_Vertical -Resistor, Axial_DIN0614 series, Axial, Vertical, pin pitch=7.62mm, 1.5W, length*diameter=14.3*5.7mm^2 -Resistor Axial_DIN0614 series Axial Vertical pin pitch 7.62mm 1.5W length 14.3mm diameter 5.7mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Axial_DIN0614_L14.3mm_D5.7mm_P15.24mm_Horizontal -Resistor, Axial_DIN0614 series, Axial, Horizontal, pin pitch=15.24mm, 1.5W, length*diameter=14.3*5.7mm^2, Alternate KiCad Library -Resistor Axial_DIN0614 series Axial Horizontal pin pitch 15.24mm 1.5W length 14.3mm diameter 5.7mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Axial_DIN0614_L14.3mm_D5.7mm_P20.32mm_Horizontal -Resistor, Axial_DIN0614 series, Axial, Horizontal, pin pitch=20.32mm, 1.5W, length*diameter=14.3*5.7mm^2, Alternate KiCad Library -Resistor Axial_DIN0614 series Axial Horizontal pin pitch 20.32mm 1.5W length 14.3mm diameter 5.7mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Axial_DIN0614_L14.3mm_D5.7mm_P25.40mm_Horizontal -Resistor, Axial_DIN0614 series, Axial, Horizontal, pin pitch=25.4mm, 1.5W, length*diameter=14.3*5.7mm^2, Alternate KiCad Library -Resistor Axial_DIN0614 series Axial Horizontal pin pitch 25.4mm 1.5W length 14.3mm diameter 5.7mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Axial_DIN0614_L14.3mm_D5.7mm_P30.48mm_Horizontal -Resistor, Axial_DIN0614 series, Axial, Horizontal, pin pitch=30.48mm, 1.5W, length*diameter=14.3*5.7mm^2, Alternate KiCad Library -Resistor Axial_DIN0614 series Axial Horizontal pin pitch 30.48mm 1.5W length 14.3mm diameter 5.7mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Axial_DIN0617_L17.0mm_D6.0mm_P7.62mm_Vertical -Resistor, Axial_DIN0617 series, Axial, Vertical, pin pitch=7.62mm, 2W, length*diameter=17*6mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf -Resistor Axial_DIN0617 series Axial Vertical pin pitch 7.62mm 2W length 17mm diameter 6mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Axial_DIN0617_L17.0mm_D6.0mm_P20.32mm_Horizontal -Resistor, Axial_DIN0617 series, Axial, Horizontal, pin pitch=20.32mm, 2W, length*diameter=17*6mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf, Alternate KiCad Library -Resistor Axial_DIN0617 series Axial Horizontal pin pitch 20.32mm 2W length 17mm diameter 6mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Axial_DIN0617_L17.0mm_D6.0mm_P25.40mm_Horizontal -Resistor, Axial_DIN0617 series, Axial, Horizontal, pin pitch=25.4mm, 2W, length*diameter=17*6mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf, Alternate KiCad Library -Resistor Axial_DIN0617 series Axial Horizontal pin pitch 25.4mm 2W length 17mm diameter 6mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Axial_DIN0617_L17.0mm_D6.0mm_P30.48mm_Horizontal -Resistor, Axial_DIN0617 series, Axial, Horizontal, pin pitch=30.48mm, 2W, length*diameter=17*6mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf, Alternate KiCad Library -Resistor Axial_DIN0617 series Axial Horizontal pin pitch 30.48mm 2W length 17mm diameter 6mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Axial_DIN0918_L18.0mm_D9.0mm_P7.62mm_Vertical -Resistor, Axial_DIN0918 series, Axial, Vertical, pin pitch=7.62mm, 4W, length*diameter=18*9mm^2 -Resistor Axial_DIN0918 series Axial Vertical pin pitch 7.62mm 4W length 18mm diameter 9mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Axial_DIN0918_L18.0mm_D9.0mm_P22.86mm_Horizontal -Resistor, Axial_DIN0918 series, Axial, Horizontal, pin pitch=22.86mm, 4W, length*diameter=18*9mm^2, Alternate KiCad Library -Resistor Axial_DIN0918 series Axial Horizontal pin pitch 22.86mm 4W length 18mm diameter 9mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Axial_DIN0918_L18.0mm_D9.0mm_P25.40mm_Horizontal -Resistor, Axial_DIN0918 series, Axial, Horizontal, pin pitch=25.4mm, 4W, length*diameter=18*9mm^2, Alternate KiCad Library -Resistor Axial_DIN0918 series Axial Horizontal pin pitch 25.4mm 4W length 18mm diameter 9mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Axial_DIN0918_L18.0mm_D9.0mm_P30.48mm_Horizontal -Resistor, Axial_DIN0918 series, Axial, Horizontal, pin pitch=30.48mm, 4W, length*diameter=18*9mm^2, Alternate KiCad Library -Resistor Axial_DIN0918 series Axial Horizontal pin pitch 30.48mm 4W length 18mm diameter 9mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Axial_DIN0922_L20.0mm_D9.0mm_P7.62mm_Vertical -Resistor, Axial_DIN0922 series, Axial, Vertical, pin pitch=7.62mm, 5W, length*diameter=20*9mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf -Resistor Axial_DIN0922 series Axial Vertical pin pitch 7.62mm 5W length 20mm diameter 9mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Axial_DIN0922_L20.0mm_D9.0mm_P25.40mm_Horizontal -Resistor, Axial_DIN0922 series, Axial, Horizontal, pin pitch=25.4mm, 5W, length*diameter=20*9mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf, Alternate KiCad Library -Resistor Axial_DIN0922 series Axial Horizontal pin pitch 25.4mm 5W length 20mm diameter 9mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Axial_DIN0922_L20.0mm_D9.0mm_P30.48mm_Horizontal -Resistor, Axial_DIN0922 series, Axial, Horizontal, pin pitch=30.48mm, 5W, length*diameter=20*9mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf, Alternate KiCad Library -Resistor Axial_DIN0922 series Axial Horizontal pin pitch 30.48mm 5W length 20mm diameter 9mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Axial_Power_L20.0mm_W6.4mm_P7.62mm_Vertical -Resistor, Axial_Power series, Axial, Vertical, pin pitch=7.62mm, 4W, length*width*height=20*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Axial Vertical pin pitch 7.62mm 4W length 20mm width 6.4mm height 6.4mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Axial_Power_L20.0mm_W6.4mm_P22.40mm -Resistor, Axial_Power series, Box, pin pitch=22.4mm, 4W, length*width*height=20*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 22.4mm 4W length 20mm width 6.4mm height 6.4mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Axial_Power_L20.0mm_W6.4mm_P25.40mm -Resistor, Axial_Power series, Box, pin pitch=25.4mm, 4W, length*width*height=20*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 25.4mm 4W length 20mm width 6.4mm height 6.4mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Axial_Power_L20.0mm_W6.4mm_P30.48mm -Resistor, Axial_Power series, Box, pin pitch=30.48mm, 4W, length*width*height=20*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 30.48mm 4W length 20mm width 6.4mm height 6.4mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Axial_Power_L25.0mm_W6.4mm_P27.94mm -Resistor, Axial_Power series, Box, pin pitch=27.94mm, 5W, length*width*height=25*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 27.94mm 5W length 25mm width 6.4mm height 6.4mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Axial_Power_L25.0mm_W6.4mm_P30.48mm -Resistor, Axial_Power series, Box, pin pitch=30.48mm, 5W, length*width*height=25*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 30.48mm 5W length 25mm width 6.4mm height 6.4mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Axial_Power_L25.0mm_W9.0mm_P7.62mm_Vertical -Resistor, Axial_Power series, Axial, Vertical, pin pitch=7.62mm, 7W, length*width*height=25*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Axial Vertical pin pitch 7.62mm 7W length 25mm width 9mm height 9mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Axial_Power_L25.0mm_W9.0mm_P10.16mm_Vertical -Resistor, Axial_Power series, Axial, Vertical, pin pitch=10.16mm, 7W, length*width*height=25*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Axial Vertical pin pitch 10.16mm 7W length 25mm width 9mm height 9mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Axial_Power_L25.0mm_W9.0mm_P27.94mm -Resistor, Axial_Power series, Box, pin pitch=27.94mm, 7W, length*width*height=25*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 27.94mm 7W length 25mm width 9mm height 9mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Axial_Power_L25.0mm_W9.0mm_P30.48mm -Resistor, Axial_Power series, Box, pin pitch=30.48mm, 7W, length*width*height=25*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 30.48mm 7W length 25mm width 9mm height 9mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Axial_Power_L38.0mm_W6.4mm_P40.64mm -Resistor, Axial_Power series, Box, pin pitch=40.64mm, 7W, length*width*height=38*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 40.64mm 7W length 38mm width 6.4mm height 6.4mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Axial_Power_L38.0mm_W6.4mm_P45.72mm -Resistor, Axial_Power series, Box, pin pitch=45.72mm, 7W, length*width*height=38*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 45.72mm 7W length 38mm width 6.4mm height 6.4mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Axial_Power_L38.0mm_W9.0mm_P40.64mm -Resistor, Axial_Power series, Box, pin pitch=40.64mm, 9W, length*width*height=38*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 40.64mm 9W length 38mm width 9mm height 9mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Axial_Power_L38.0mm_W9.0mm_P45.72mm -Resistor, Axial_Power series, Box, pin pitch=45.72mm, 9W, length*width*height=38*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 45.72mm 9W length 38mm width 9mm height 9mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Axial_Power_L48.0mm_W12.5mm_P7.62mm_Vertical -Resistor, Axial_Power series, Axial, Vertical, pin pitch=7.62mm, 15W, length*width*height=48*12.5*12.5mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Axial Vertical pin pitch 7.62mm 15W length 48mm width 12.5mm height 12.5mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Axial_Power_L48.0mm_W12.5mm_P10.16mm_Vertical -Resistor, Axial_Power series, Axial, Vertical, pin pitch=10.16mm, 15W, length*width*height=48*12.5*12.5mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Axial Vertical pin pitch 10.16mm 15W length 48mm width 12.5mm height 12.5mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Axial_Power_L48.0mm_W12.5mm_P55.88mm -Resistor, Axial_Power series, Box, pin pitch=55.88mm, 15W, length*width*height=48*12.5*12.5mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 55.88mm 15W length 48mm width 12.5mm height 12.5mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Axial_Power_L48.0mm_W12.5mm_P60.96mm -Resistor, Axial_Power series, Box, pin pitch=60.96mm, 15W, length*width*height=48*12.5*12.5mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 60.96mm 15W length 48mm width 12.5mm height 12.5mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Axial_Power_L50.0mm_W9.0mm_P55.88mm -Resistor, Axial_Power series, Box, pin pitch=55.88mm, 11W, length*width*height=50*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 55.88mm 11W length 50mm width 9mm height 9mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Axial_Power_L50.0mm_W9.0mm_P60.96mm -Resistor, Axial_Power series, Box, pin pitch=60.96mm, 11W, length*width*height=50*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 60.96mm 11W length 50mm width 9mm height 9mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Axial_Power_L60.0mm_W14.0mm_P10.16mm_Vertical -Resistor, Axial_Power series, Axial, Vertical, pin pitch=10.16mm, 25W, length*width*height=60*14*14mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Axial Vertical pin pitch 10.16mm 25W length 60mm width 14mm height 14mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Axial_Power_L60.0mm_W14.0mm_P66.04mm -Resistor, Axial_Power series, Box, pin pitch=66.04mm, 25W, length*width*height=60*14*14mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 66.04mm 25W length 60mm width 14mm height 14mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Axial_Power_L60.0mm_W14.0mm_P71.12mm -Resistor, Axial_Power series, Box, pin pitch=71.12mm, 25W, length*width*height=60*14*14mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 71.12mm 25W length 60mm width 14mm height 14mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Axial_Power_L75.0mm_W9.0mm_P81.28mm -Resistor, Axial_Power series, Box, pin pitch=81.28mm, 17W, length*width*height=75*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 81.28mm 17W length 75mm width 9mm height 9mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Axial_Power_L75.0mm_W9.0mm_P86.36mm -Resistor, Axial_Power series, Box, pin pitch=86.36mm, 17W, length*width*height=75*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 86.36mm 17W length 75mm width 9mm height 9mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Axial_Shunt_L22.2mm_W8.0mm_PS14.30mm_P25.40mm -Resistor, Axial_Shunt series, Box, pin pitch=25.4mm, 3W, length*width*height=22.2*8*8mm^3, shunt pin pitch = 14.30mm, http://www.vishay.com/docs/30217/cpsl.pdf -Resistor Axial_Shunt series Box pin pitch 25.4mm 3W length 22.2mm width 8mm height 8mm shunt pin pitch 14.30mm -0 -4 -4 -PCM_Resistor_THT_US_AKL_Double -R_Axial_Shunt_L22.2mm_W9.5mm_PS14.30mm_P25.40mm -Resistor, Axial_Shunt series, Box, pin pitch=25.4mm, 5W, length*width*height=22.2*9.5*9.5mm^3, shunt pin pitch = 14.30mm, http://www.vishay.com/docs/30217/cpsl.pdf -Resistor Axial_Shunt series Box pin pitch 25.4mm 5W length 22.2mm width 9.5mm height 9.5mm shunt pin pitch 14.30mm -0 -4 -4 -PCM_Resistor_THT_US_AKL_Double -R_Axial_Shunt_L35.3mm_W9.5mm_PS25.40mm_P38.10mm -Resistor, Axial_Shunt series, Box, pin pitch=38.1mm, 7W, length*width*height=35.3*9.5*9.5mm^3, shunt pin pitch = 25.40mm, http://www.vishay.com/docs/30217/cpsl.pdf -Resistor Axial_Shunt series Box pin pitch 38.1mm 7W length 35.3mm width 9.5mm height 9.5mm shunt pin pitch 25.40mm -0 -4 -4 -PCM_Resistor_THT_US_AKL_Double -R_Axial_Shunt_L47.6mm_W9.5mm_PS34.93mm_P50.80mm -Resistor, Axial_Shunt series, Box, pin pitch=50.8mm, 10W, length*width*height=47.6*9.5*9.5mm^3, shunt pin pitch = 34.93mm, http://www.vishay.com/docs/30217/cpsl.pdf -Resistor Axial_Shunt series Box pin pitch 50.8mm 10W length 47.6mm width 9.5mm height 9.5mm shunt pin pitch 34.93mm -0 -4 -4 -PCM_Resistor_THT_US_AKL_Double -R_Axial_Shunt_L47.6mm_W12.7mm_PS34.93mm_P50.80mm -Resistor, Axial_Shunt series, Box, pin pitch=50.8mm, 15W, length*width*height=47.6*12.7*12.7mm^3, shunt pin pitch = 34.93mm, http://www.vishay.com/docs/30217/cpsl.pdf -Resistor Axial_Shunt series Box pin pitch 50.8mm 15W length 47.6mm width 12.7mm height 12.7mm shunt pin pitch 34.93mm -0 -4 -4 -PCM_Resistor_THT_US_AKL_Double -R_Bare_Metal_Element_L12.4mm_W4.8mm_P11.40mm -Resistor, Bare_Metal_Element series, Bare Metal Strip/Wire, Horizontal, pin pitch=11.4mm, 1W, length*width=12.4*4.8mm^2, https://www.bourns.com/pdfs/PWR4412-2S.pdf -Resistor Bare_Metal_Element series Bare Metal Strip Wire Horizontal pin pitch 11.4mm 1W length 12.4mm width 4.8mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Bare_Metal_Element_L16.3mm_W4.8mm_P15.30mm -Resistor, Bare_Metal_Element series, Bare Metal Strip/Wire, Horizontal, pin pitch=15.3mm, 3W, length*width=16.3*4.8mm^2, https://www.bourns.com/pdfs/PWR4412-2S.pdf -Resistor Bare_Metal_Element series Bare Metal Strip Wire Horizontal pin pitch 15.3mm 3W length 16.3mm width 4.8mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Bare_Metal_Element_L21.3mm_W4.8mm_P20.30mm -Resistor, Bare_Metal_Element series, Bare Metal Strip/Wire, Horizontal, pin pitch=20.3mm, 5W, length*width=21.3*4.8mm^2, https://www.bourns.com/pdfs/PWR4412-2S.pdf -Resistor Bare_Metal_Element series Bare Metal Strip Wire Horizontal pin pitch 20.3mm 5W length 21.3mm width 4.8mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Box_L8.4mm_W2.5mm_P5.08mm -Resistor, Box series, Radial, pin pitch=5.08mm, 0.5W = 1/2W, length*width=8.38*2.54mm^2, http://www.vishay.com/docs/60051/cns020.pdf -Resistor Box series Radial pin pitch 5.08mm 0.5W = 1/2W length 8.38mm width 2.54mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Box_L13.0mm_W4.0mm_P9.00mm -Resistor, Box series, Radial, pin pitch=9.00mm, 2W, length*width=13.0*4.0mm^2, http://www.produktinfo.conrad.com/datenblaetter/425000-449999/443860-da-01-de-METALLBAND_WIDERSTAND_0_1_OHM_5W_5Pr.pdf -Resistor Box series Radial pin pitch 9.00mm 2W length 13.0mm width 4.0mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Box_L14.0mm_W5.0mm_P9.00mm -Resistor, Box series, Radial, pin pitch=9.00mm, 5W, length*width=14.0*5.0mm^2, http://www.produktinfo.conrad.com/datenblaetter/425000-449999/443860-da-01-de-METALLBAND_WIDERSTAND_0_1_OHM_5W_5Pr.pdf -Resistor Box series Radial pin pitch 9.00mm 5W length 14.0mm width 5.0mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Box_L26.0mm_W5.0mm_P20.00mm -Resistor, Box series, Radial, pin pitch=20.00mm, 10W, length*width=26.0*5.0mm^2, http://www.produktinfo.conrad.com/datenblaetter/425000-449999/443860-da-01-de-METALLBAND_WIDERSTAND_0_1_OHM_5W_5Pr.pdf -Resistor Box series Radial pin pitch 20.00mm 10W length 26.0mm width 5.0mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Radial_Power_L12.0mm_W8.0mm_P5.00mm -Resistor, Radial_Power series, Radial, pin pitch=5.00mm, 3W, length*width=12.0*8.0mm^2, http://www.vishay.com/docs/30218/cpcx.pdf -Resistor Radial_Power series Radial pin pitch 5.00mm 3W length 12.0mm width 8.0mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Radial_Power_L13.0mm_W9.0mm_P5.00mm -Resistor, Radial_Power series, Radial, pin pitch=5.00mm, 7W, length*width=13.0*9.0mm^2, http://www.vishay.com/docs/30218/cpcx.pdf -Resistor Radial_Power series Radial pin pitch 5.00mm 7W length 13.0mm width 9.0mm -0 -2 -2 -PCM_Resistor_THT_US_AKL_Double -R_Radial_Power_L16.1mm_W9.0mm_P7.37mm -Resistor, Radial_Power series, Radial, pin pitch=7.37mm, 10W, length*width=16.1*9mm^2, http://www.vishay.com/docs/30218/cpcx.pdf -Resistor Radial_Power series Radial pin pitch 7.37mm 10W length 16.1mm width 9mm -0 -2 -2 -PCM_arduino-library -Arduino_101_Shield -https://docs.arduino.cc/retired/boards/arduino-101-619 - -0 -38 -38 -PCM_arduino-library -Arduino_Due_Shield -https://docs.arduino.cc/hardware/due - -0 -92 -91 -PCM_arduino-library -Arduino_Giga_R1_WiFi_Shield -https://docs.arduino.cc/hardware/giga-r1-wifi - -0 -92 -91 -PCM_arduino-library -Arduino_Leonardo_Shield -https://docs.arduino.cc/hardware/leonardo - -0 -38 -37 -PCM_arduino-library -Arduino_M0_Pro_Shield -https://docs.arduino.cc/retired/boards/arduino-m0-pro - -0 -38 -37 -PCM_arduino-library -Arduino_MKR_1000_WiFi_Socket -https://docs.arduino.cc/hardware/mkr-1000-wifi - -0 -28 -28 -PCM_arduino-library -Arduino_MKR_FOX_1200_Socket -https://docs.arduino.cc/hardware/mkr-fox-1200 - -0 -28 -28 -PCM_arduino-library -Arduino_MKR_Vidor_4000_Socket -https://docs.arduino.cc/hardware/mkr-vidor-4000 - -0 -28 -28 -PCM_arduino-library -Arduino_MKR_WiFi_1010_Socket -https://docs.arduino.cc/hardware/mkr-wifi-1010 - -0 -28 -28 -PCM_arduino-library -Arduino_MKR_Zero_Socket -https://docs.arduino.cc/hardware/mkr-zero - -0 -28 -28 -PCM_arduino-library -Arduino_Mega2560_Shield -https://docs.arduino.cc/hardware/mega-2560 - -0 -92 -91 -PCM_arduino-library -Arduino_Micro_Socket -https://docs.arduino.cc/hardware/micro - -0 -34 -32 -PCM_arduino-library -Arduino_Mini_Socket -https://docs.arduino.cc/retired/boards/arduino-mini-05 - -0 -35 -35 -PCM_arduino-library -Arduino_Mini_Socket_NoSPH -https://docs.arduino.cc/retired/boards/arduino-mini-05 - -0 -30 -30 -PCM_arduino-library -Arduino_Nano_33_IoT_Socket -https://docs.arduino.cc/hardware/nano-33-iot - -0 -30 -30 -PCM_arduino-library -Arduino_Nano_33_IoT_Tile -https://docs.arduino.cc/hardware/nano-33-iot - -0 -30 -30 -PCM_arduino-library -Arduino_Nano_Every_Socket -https://docs.arduino.cc/hardware/nano-every - -0 -30 -30 -PCM_arduino-library -Arduino_Nano_Every_Tile -https://docs.arduino.cc/hardware/nano-every - -0 -30 -30 -PCM_arduino-library -Arduino_Nano_Socket -https://docs.arduino.cc/hardware/nano - -0 -30 -30 -PCM_arduino-library -Arduino_Nicla_Vision_Socket -https://docs.arduino.cc/hardware/nicla-vision - -0 -19 -18 -PCM_arduino-library -Arduino_Nicla_Vision_Tile -https://docs.arduino.cc/hardware/nicla-vision - -0 -19 -18 -PCM_arduino-library -Arduino_Nicla_Voice_Socket -https://docs.arduino.cc/hardware/nicla-voice - -0 -19 -17 -PCM_arduino-library -Arduino_Nicla_Voice_Tile -https://docs.arduino.cc/hardware/nicla-voice - -0 -19 -17 -PCM_arduino-library -Arduino_Pro_Mini_Socket -https://docs.arduino.cc/retired/boards/arduino-pro-mini - -0 -34 -34 -PCM_arduino-library -Arduino_Pro_Mini_Socket_NoSPH -https://docs.arduino.cc/retired/boards/arduino-pro-mini - -0 -28 -28 -PCM_arduino-library -Arduino_Uno_R2_Shield -https://startingelectronics.org/articles/arduino/uno-r3-r2-differences/ - -0 -34 -34 -PCM_arduino-library -Arduino_Uno_R3_Shield -https://docs.arduino.cc/hardware/uno-rev3 - -0 -38 -37 -PCM_arduino-library -Arduino_Zero_Shield -https://docs.arduino.cc/hardware/zero - -0 -38 -38 -PCM_arduino-library -Pro_Mini_Clone_Socket -https://www.addicore.com/Pro-Mini-p/ad249.htm - -0 -35 -35 -PCM_arduino-library -Pro_Mini_Clone_Socket_NoSPH -https://www.addicore.com/Pro-Mini-p/ad249.htm - -0 -29 -29 -Package_BGA -Analog_BGA-28_4.0x6.25mm_Layout4x7_P0.8mm_Ball0.45mm_Pad0.4 -Analog BGA-28 4.0mm x 6.25mm package, pitch 0.4mm pad, based on https://www.analog.com/media/en/technical-documentation/data-sheets/8063fa.pdf -BGA 28 0.8 -0 -28 -28 -Package_BGA -Analog_BGA-49_6.25x6.25mm_Layout7x7_P0.8mm_Ball0.5mm_Pad0.4mm -Analog BGA-49, 6.25x6.25mm, 49 Ball, 7x7 Layout, 0.8mm Pitch, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-bga/05081600_0_bga49.pdf https://www.analog.com/media/en/technical-documentation/product-information/assembly-considerations-for-umodule-bga-lga-package.pdf -BGA 49 0.8 -0 -49 -49 -Package_BGA -Analog_BGA-209_9.5x16mm_Layout11x19_P0.8mm_Ball0.5mm_Pad0.4mm -Analog BGA-209 (Reference LTC DWG#05-08-1561 Rev B), 9.5x16.0mm, 209 Ball, 11x19 Layout, 0.8mm Pitch, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-bga/05081561_bga209.pdf -BGA 209 0.8 -0 -209 -209 -Package_BGA -BGA-9_1.6x1.6mm_Layout3x3_P0.5mm -BGA-9, http://www.ti.com/lit/ds/symlink/bq27421-g1.pdf -BGA-9 -0 -9 -9 -Package_BGA -BGA-16_1.92x1.92mm_Layout4x4_P0.5mm -BGA-16, http://www.st.com/content/ccc/resource/technical/document/datasheet/group2/bc/cd/62/9e/8f/30/47/69/CD00151267/files/CD00151267.pdf/jcr:content/translations/en.CD00151267.pdf -BGA-16 -0 -16 -16 -Package_BGA -BGA-25_6.35x6.35mm_Layout5x5_P1.27mm -BGA-25, http://cds.linear.com/docs/en/datasheet/4624fc.pdf -BGA-25 uModule -0 -25 -25 -Package_BGA -BGA-36_3.396x3.466mm_Layout6x6_P0.4mm_Ball0.25mm_Pad0.2mm_NSMD -Altera V36, https://www.altera.com/content/dam/altera-www/global/en_US/pdfs/literature/packaging/04r00486-00.pdf -Altera BGA-36 V36 VBGA -0 -36 -36 -Package_BGA -BGA-48_8.0x9.0mm_Layout6x8_P0.8mm -BGA-48 - pitch 0.8 mm -BGA-48 -0 -48 -48 -Package_BGA -BGA-64_9.0x9.0mm_Layout10x10_P0.8mm -BGA-64, 10x10 raster, 9x9mm package, pitch 0.8mm -BGA-64 -0 -64 -64 -Package_BGA -BGA-68_5.0x5.0mm_Layout9x9_P0.5mm_Ball0.3mm_Pad0.25mm_NSMD -Altera MBGA-68, https://www.altera.com/content/dam/altera-www/global/en_US/pdfs/literature/packaging/04r00344-01.pdf -Altera BGA-68 M68 MBGA -0 -68 -68 -Package_BGA -BGA-81_4.496x4.377mm_Layout9x9_P0.4mm_Ball0.25mm_Pad0.2mm_NSMD -Altera V81, https://www.altera.com/content/dam/altera-www/global/en_US/pdfs/literature/packaging/04r00478-01.pdf -Altera VBGA V81 BGA-81 -0 -81 -81 -Package_BGA -BGA-90_8.0x13.0mm_Layout2x3x15_P0.8mm -BGA-90, http://www.issi.com/WW/pdf/42-45S32800J.pdf -BGA-90 -0 -90 -90 -Package_BGA -BGA-96_9.0x13.0mm_Layout2x3x16_P0.8mm -BGA-96, http://www.mouser.com/ds/2/198/43-46TR16640B-81280BL-706483.pdf -BGA-96 -0 -96 -96 -Package_BGA -BGA-100_6.0x6.0mm_Layout11x11_P0.5mm_Ball0.3mm_Pad0.25mm_NSMD -Altera MBGA-100, https://www.altera.com/content/dam/altera-www/global/en_US/pdfs/literature/packaging/04r00345-01.pdf -Altera BGA-100 M100 MBGA -0 -100 -100 -Package_BGA -BGA-100_11.0x11.0mm_Layout10x10_P1.0mm_Ball0.5mm_Pad0.4mm_NSMD -BGA-100, https://www.altera.com/content/dam/altera-www/global/en_US/pdfs/literature/packaging/04r00223-02.pdf -BGA-100 -0 -100 -100 -Package_BGA -BGA-121_9.0x9.0mm_Layout11x11_P0.8mm_Ball0.4mm_Pad0.35mm_NSMD -121-ball, 0.8mm BGA (based on http://www.latticesemi.com/view_document?document_id=213) -BGA 0.8mm 9mm 121 -0 -121 -121 -Package_BGA -BGA-121_12.0x12.0mm_Layout11x11_P1.0mm -BGA-121, http://cds.linear.com/docs/en/packaging/05081891_A_bga121.pdf -BGA-121 -0 -121 -121 -Package_BGA -BGA-132_12x18mm_Layout11x17_P1.0mm -BGA-132 11x17 12x18mm 1.0pitch -BGA-132 -0 -132 -132 -Package_BGA -BGA-144_7.0x7.0mm_Layout13x13_P0.5mm_Ball0.3mm_Pad0.25mm_NSMD -Altera MBGA-144, https://www.altera.com/content/dam/altera-www/global/en_US/pdfs/literature/packaging/04r00346-00.pdf -Altera BGA-144 M144 MBGA -0 -144 -144 -Package_BGA -BGA-144_13.0x13.0mm_Layout12x12_P1.0mm -BGA-144, http://www.topline.tv/drawings/pdf/BGA%201,0mm%20pitch/LBGA144T1.0-DC128.pdf -BGA-144 -0 -144 -144 -Package_BGA -BGA-152_14x18mm_Layout13x17_P0.5mm -BGA-152_14x18mm_Layout13x17_P0.5mm -VBGA-152 -0 -152 -152 -Package_BGA -BGA-153_8.0x8.0mm_Layout15x15_P0.5mm_Ball0.3mm_Pad0.25mm_NSMD -Altera MBGA-153, https://www.altera.com/content/dam/altera-www/global/en_US/pdfs/literature/packaging/04r00471-00.pdf -Altera BGA-153 M153 MBGA -0 -153 -153 -Package_BGA -BGA-169_11.0x11.0mm_Layout13x13_P0.8mm_Ball0.5mm_Pad0.4mm_NSMD -Altera U169, https://www.altera.com/content/dam/altera-www/global/en_US/pdfs/literature/packaging/04r00470-01.pdf -Altera UBGA U169 BGA-169 -0 -169 -169 -Package_BGA -BGA-200_10.0x14.5mm_Layout12x22_P0.80x0.65mm -BGA-200, 14.5x10.0mm, 200 Ball, 12x22 Layout, 0.8x0.65mm Pitch, http://www.issi.com/WW/pdf/43-46LQ32256A-AL.pdf -BGA 200 0.8x0.65 -0 -200 -200 -Package_BGA -BGA-256_11.0x11.0mm_Layout20x20_P0.5mm_Ball0.3mm_Pad0.25mm_NSMD -Altera MBGA-256, https://www.altera.com/content/dam/altera-www/global/en_US/pdfs/literature/packaging/04r00348-01.pdf -Altera BGA-256 M256 MBGA -0 -256 -256 -Package_BGA -BGA-256_14.0x14.0mm_Layout16x16_P0.8mm_Ball0.45mm_Pad0.32mm_NSMD -BGA-256, dimensions: https://www.xilinx.com/support/documentation/package_specs/ft256.pdf, design rules: https://www.xilinx.com/support/documentation/user_guides/ug1099-bga-device-design-rules.pdf -BGA-256 -0 -256 -256 -Package_BGA -BGA-256_17.0x17.0mm_Layout16x16_P1.0mm_Ball0.5mm_Pad0.4mm_NSMD -BGA-256, dimensions: https://www.xilinx.com/support/documentation/package_specs/ft256.pdf, design rules: https://www.xilinx.com/support/documentation/user_guides/ug1099-bga-device-design-rules.pdf -BGA-256 -0 -256 -256 -Package_BGA -BGA-324_15.0x15.0mm_Layout18x18_P0.8mm_Ball0.5mm_Pad0.4mm_NSMD -Altera U324, https://www.altera.com/content/dam/altera-www/global/en_US/pdfs/literature/packaging/04r00474-02.pdf -Altera UBGA U324 BGA-324 -0 -324 -324 -Package_BGA -BGA-324_15.0x15.0mm_Layout18x18_P0.8mm_Ball0.45mm_Pad0.4mm_NSMD -BGA-324, 15x15mm, 324 Ball, 18x18 Layout, 0.8mm Pitch, https://colognechip.com/docs/ds1001-gatemate1-datasheet-2022-05.pdf#page=92 -BGA 324 0.8 GateMate FPGA -0 -324 -324 -Package_BGA -BGA-324_19.0x19.0mm_Layout18x18_P1.0mm_Ball0.5mm_Pad0.4mm_NSMD -BGA-324, https://www.altera.com/content/dam/altera-www/global/en_US/pdfs/literature/packaging/04r00233-03.pdf -BGA-324 -0 -324 -324 -Package_BGA -BGA-352_35.0x35.0mm_Layout26x26_P1.27mm -BGA-352, https://www.fujitsu.com/downloads/MICRO/fma/pdfmcu/b352p05.pdf -BGA-352 -0 -352 -352 -Package_BGA -BGA-400_21.0x21.0mm_Layout20x20_P1.0mm -BGA-400, https://www.xilinx.com/support/documentation/package_specs/fg400.pdf -BGA-400 -0 -400 -400 -Package_BGA -BGA-484_23.0x23.0mm_Layout22x22_P1.0mm -BGA-484, https://www.xilinx.com/support/documentation/package_specs/fg484.pdf -BGA-484 -0 -484 -484 -Package_BGA -BGA-624_21.0x21.0mm_Layout25x25_P0.8mm -BGA-624, 25x25 grid, 21x21mm package, pitch 0.8mm; https://www.nxp.com/docs/en/package-information/SOT1529-1.pdf -BGA 624 0.8 -0 -624 -624 -Package_BGA -BGA-625_21.0x21.0mm_Layout25x25_P0.8mm -BGA-625 -BGA-625 -0 -625 -625 -Package_BGA -BGA-672_27.0x27.0mm_Layout26x26_P1.0mm_Ball0.6mm_Pad0.5mm_NSMD -Altera BGA-672, https://www.altera.com/content/dam/altera-www/global/en_US/pdfs/literature/packaging/04r00472-00.pdf -Altera BGA-672 F672 FBGA -0 -672 -672 -Package_BGA -BGA-676_27.0x27.0mm_Layout26x26_P1.0mm_Ball0.6mm_Pad0.5mm_NSMD -XILINX BGA-676, https://www.xilinx.com/support/documentation/package_specs/fg676.pdf -XILINX BGA-676 FG676/FGG676 -0 -676 -676 -Package_BGA -BGA-1023_33.0x33.0mm_Layout32x32_P1.0mm -BGA-1023 -BGA-1023 -0 -1023 -1023 -Package_BGA -BGA-1156_35.0x35.0mm_Layout34x34_P1.0mm -BGA-1156 -BGA-1156 -0 -1156 -1156 -Package_BGA -BGA-1295_37.5x37.5mm_Layout36x36_P1.0mm -BGA-1295 -BGA-1295 -0 -1295 -1295 -Package_BGA -FB-BGA-484_23.0x23.0mm_Layout22x22_P1.0mm -Xilinx FB-484, https://www.xilinx.com/support/documentation/user_guides/ug1099-bga-device-design-rules.pdf -FB-BGA-484 -0 -484 -484 -Package_BGA -FBGA-78_7.5x11mm_Layout2x3x13_P0.8mm -FBGA-78, https://www.skhynix.com/product/filedata/fileDownload.do?seq=7687 -FBGA-78 -0 -78 -78 -Package_BGA -Fujitsu_WLP-15_2.28x3.092mm_Layout3x5_P0.4mm -WLP-15, 3x5 raster, 2.28x3.092mm package, pitch 0.4mm; http://www.fujitsu.com/global/documents/products/devices/semiconductor/fram/lineup/MB85RS1MT-DS501-00022-7v0-E.pdf -BGA 8 0.4 -0 -8 -8 -Package_BGA -Infineon_LFBGA-292_17x17mm_Layout20x20_P0.8mm_Ball0.5mm_Pad0.35 -Infineon LFBGA-292, 0.35mm pad, 17.0x17.0mm, 292 Ball, 20x20 Layout, 0.8mm Pitch, https://www.infineon.com/cms/en/product/packages/PG-LFBGA/PG-LFBGA-292-11/ -BGA 292 0.8 -0 -292 -292 -Package_BGA -LFBGA-100_10x10mm_Layout10x10_P0.8mm -LFBGA-100, 10x10 raster, 10x10mm package, pitch 0.8mm; see section 6.3 of http://www.st.com/resource/en/datasheet/stm32f103tb.pdf -BGA 100 0.8 -0 -100 -100 -Package_BGA -LFBGA-144_10x10mm_Layout12x12_P0.8mm -LFBGA-144, 12x12 raster, 10x10mm package, pitch 0.8mm; see section 6.1 of http://www.st.com/resource/en/datasheet/stm32f103ze.pdf -BGA 144 0.8 -0 -144 -144 -Package_BGA -LFBGA-169_16x12mm_Layout28x14_P0.5mm_Ball0.3_Pad0.3mm_NSMD -https://4donline.ihs.com/images/VipMasterIC/IC/SGST/SGSTS20279/SGSTS20279-1.pdf?hkey=EF798316E3902B6ED9A73243A3159BB0 -eMMC Flash LFBGA169 -0 -169 -169 -Package_BGA -Lattice_caBGA-381_17.0x17.0mm_Layout20x20_P0.8mm_Ball0.4mm_Pad0.4mm_NSMD -Lattice caBGA-381 footprint for ECP5 FPGAs, based on http://www.latticesemi.com/view_document?document_id=213 -BGA 381 0.8 -0 -381 -381 -Package_BGA -Lattice_caBGA-381_17.0x17.0mm_Layout20x20_P0.8mm_Ball0.4mm_Pad0.6mm_SMD -Lattice caBGA-381 footprint for ECP5 FPGAs, based on http://www.latticesemi.com/view_document?document_id=213 -BGA 381 0.8 -0 -381 -381 -Package_BGA -Lattice_caBGA-756_27.0x27.0mm_Layout32x32_P0.8mm -Lattice caBGA-756, ECP5 FPGAs, 27.0x27.0mm, 756 Ball, 32x32 Layout, 0.8mm Pitch, http://www.latticesemi.com/view_document?document_id=213 -BGA 756 0.8 -0 -756 -756 -Package_BGA -Linear_BGA-133_15.0x15.0mm_Layout12x12_P1.27mm -Analog Devices (Linear Tech), 133-pin BGA uModule, 15.0x15.0x4.92mm, https://www.analog.com/media/en/technical-documentation/data-sheets/4637fc.pdf -133 pin bga -0 -134 -134 -Package_BGA -MAPBGA_9x9mm_Layout17x17_P0.5mm -MAPBGA 9x9x1.11 PKG, 9.0x9.0mm, 272 Ball, 17x17 Layout, 0.5mm Pitch, https://www.nxp.com/docs/en/package-information/98ASA00869D.pdf#page=1 -BGA 272 0.5 -0 -272 -272 -Package_BGA -MAPBGA_14x14mm_Layout17x17_P0.8mm -MAPBGA 14x14x1.18 PKG, 14.0x14.0mm, 289 Ball, 17x17 Layout, 0.8mm Pitch, https://www.nxp.com/docs/en/package-information/98ASA00855D.pdf#page=1 -BGA 289 0.8 -0 -289 -289 -Package_BGA -Maxim_WLP-9_1.595x1.415_Layout3x3_P0.4mm_Ball0.27mm_Pad0.25mm_NSMD -Maxim_WLP-9 W91C1+1 https://pdfserv.maximintegrated.com/package_dwgs/21-0459.PDF -Maxim_WLP-9 -0 -9 -9 -Package_BGA -Maxim_WLP-12 -Maxim_WLP-12 W121B2+1 http://pdfserv.maximintegrated.com/package_dwgs/21-0009.PDF -Maxim_WLP-12 -0 -12 -12 -Package_BGA -Maxim_WLP-12_1.608x2.008mm_Layout4x3_P0.4mm_Ball0.27mm_Pad0.25mm_NSMD -Maxim WLP-12, W121H2+1, 2.008x1.608mm, 12 Ball, 4x3 Layout, 0.4mm Pitch, https://pdfserv.maximintegrated.com/package_dwgs/21-100302.PDF, https://pdfserv.maximintegrated.com/package_dwgs/21-100302.PDF -BGA 12 0.4 -0 -12 -12 -Package_BGA -Microchip_TFBGA-196_11x11mm_Layout14x14_P0.75mm_SMD -TFBGA-196, 11.0x11.0mm, 196 Ball, 14x14 Layout, 0.75mm Pitch, http://ww1.microchip.com/downloads/en/DeviceDoc/SAMA5D2-Series-Data-Sheet-DS60001476C.pdf#page=2956 -BGA 196 0.75 -0 -196 -196 -Package_BGA -Micron_FBGA-78_7.5x10.6mm_Layout9x13_P0.8mm -FBGA-78, 10.6x7.5mm, 78 Ball, 9x13 Layout, 0.8mm Pitch, https://www.micron.com/-/media/client/global/documents/products/data-sheet/dram/ddr3/4gb_ddr3l.pdf#page=24 -BGA 78 0.8 -0 -78 -78 -Package_BGA -Micron_FBGA-78_8x10.5mm_Layout9x13_P0.8mm -FBGA-78, 10.5x8.0mm, 78 Ball, 9x13 Layout, 0.8mm Pitch, https://www.micron.com/-/media/client/global/documents/products/data-sheet/dram/ddr3/4gb_ddr3l.pdf#page=25 -BGA 78 0.8 -0 -78 -78 -Package_BGA -Micron_FBGA-78_9x10.5mm_Layout9x13_P0.8mm -FBGA-78, 10.5x9.0mm, 78 Ball, 9x13 Layout, 0.8mm Pitch, https://www.micron.com/-/media/client/global/documents/products/data-sheet/dram/ddr3/4gb_ddr3l.pdf#page=23 -BGA 78 0.8 -0 -78 -78 -Package_BGA -Micron_FBGA-96_7.5x13.5mm_Layout9x16_P0.8mm -FBGA-96, 13.5x7.5mm, 96 Ball, 9x16 Layout, 0.8mm Pitch, https://www.micron.com/-/media/client/global/documents/products/data-sheet/dram/ddr3/4gb_ddr3l.pdf#page=27 -BGA 96 0.8 -0 -96 -96 -Package_BGA -Micron_FBGA-96_8x14mm_Layout9x16_P0.8mm -FBGA-96, 14.0x8.0mm, 96 Ball, 9x16 Layout, 0.8mm Pitch, https://www.micron.com/-/media/client/global/documents/products/data-sheet/dram/ddr3/4gb_ddr3l.pdf#page=28 -BGA 96 0.8 -0 -96 -96 -Package_BGA -Micron_FBGA-96_9x14mm_Layout9x16_P0.8mm -FBGA-96, 14.0x9.0mm, 96 Ball, 9x16 Layout, 0.8mm Pitch, https://www.micron.com/-/media/client/global/documents/products/data-sheet/dram/ddr3/4gb_ddr3l.pdf#page=26 -BGA 96 0.8 -0 -96 -96 -Package_BGA -NXP_VFBGA-42_2.6x3mm_Layout6x7_P0.4mm_Ball0.25mm_Pad0.24mm -NXP VFBGA-42, 3.0x2.6mm, 42 Ball, 6x7 Layout, 0.4mm Pitch, https://www.nxp.com/docs/en/package-information/SOT1963-1.pdf -BGA 42 0.4 -0 -42 -42 -Package_BGA -ST_LFBGA-354_16x16mm_Layout19x19_P0.8mm -ST LFBGA-354, 16.0x16.0mm, 354 Ball, 19x19 Layout, 0.8mm Pitch, https://www.st.com/resource/en/datasheet/stm32mp151a.pdf -BGA 354 0.8 -0 -354 -354 -Package_BGA -ST_LFBGA-448_18x18mm_Layout22x22_P0.8mm -ST LFBGA-448, 18.0x18.0mm, 448 Ball, 22x22 Layout, 0.8mm Pitch, https://www.st.com/resource/en/datasheet/stm32mp151a.pdf -BGA 448 0.8 -0 -448 -448 -Package_BGA -ST_TFBGA-225_13x13mm_Layout15x15_P0.8mm -ST TFBGA-225, 13.0x13.0mm, 225 Ball, 15x15 Layout, 0.8mm Pitch, https://www.st.com/resource/en/datasheet/stm32h7b3ri.pdf -BGA 225 0.8 -0 -225 -225 -Package_BGA -ST_TFBGA-257_10x10mm_Layout19x19_P0.5mmP0.65mm -ST TFBGA-257, 10.0x10.0mm, 257 Ball, 19x19 Layout, 0.5mm Pitch, https://www.st.com/resource/en/datasheet/stm32mp151a.pdf -BGA 257 0.5 -0 -257 -257 -Package_BGA -ST_TFBGA-361_12x12mm_Layout23x23_P0.5mmP0.65mm -ST TFBGA-361, 12.0x12.0mm, 361 Ball, 23x23 Layout, 0.5mm Pitch, https://www.st.com/resource/en/datasheet/stm32mp151a.pdf -BGA 361 0.5 -0 -361 -361 -Package_BGA -ST_UFBGA-73_5x5mm_Layout9x9_P0.5mm -ST UFBGA-73, 5.0x5.0mm, 73 Ball, 9x9 Layout, 0.5mm Pitch, https://www.st.com/resource/en/datasheet/stm32wl54jc.pdf -BGA 73 0.5 -0 -73 -73 -Package_BGA -ST_UFBGA-121_6x6mm_Layout11x11_P0.5mm -ST UFBGA-121, 6.0x6.0mm, 121 Ball, 11x11 Layout, 0.5mm Pitch, https://www.st.com/resource/en/datasheet/stm32g473pb.pdf -BGA 121 0.5 -0 -121 -121 -Package_BGA -ST_UFBGA-129_7x7mm_Layout13x13_P0.5mm -ST UFBGA-129, 7.0x7.0mm, 129 Ball, 13x13 Layout, 0.5mm Pitch, https://www.st.com/resource/en/datasheet/stm32wb55vc.pdf -BGA 129 0.5 -0 -129 -129 -Package_BGA -ST_uTFBGA-36_3.6x3.6mm_Layout6x6_P0.5mm -ST uTFBGA-36, 0.25mm pad, 3.6x3.6mm, 36 Ball, 6x6 Layout, 0.5mm Pitch, https://www.st.com/resource/en/datasheet/stulpi01a.pdf -BGA 36 0.5 -0 -36 -36 -Package_BGA -TFBGA-64_5x5mm_Layout8x8_P0.5mm -TFBGA-64, 8x8 raster, 5x5mm package, pitch 0.5mm; see section 6.3 of http://www.st.com/resource/en/datasheet/stm32f100v8.pdf -BGA 64 0.5 -0 -64 -64 -Package_BGA -TFBGA-100_8x8mm_Layout10x10_P0.8mm -TFBGA-100, 10x10 raster, 8x8mm package, pitch 0.8mm; see section 6.2 of http://www.st.com/resource/en/datasheet/stm32f746zg.pdf -BGA 100 0.8 -0 -100 -100 -Package_BGA -TFBGA-100_9.0x9.0mm_Layout10x10_P0.8mm -TFBGA-100, 10x10, 9x9mm package, pitch 0.8mm -TFBGA-100 -0 -100 -100 -Package_BGA -TFBGA-121_10x10mm_Layout11x11_P0.8mm -TFBGA-121, 11x11 raster, 10x10mm package, pitch 0.8mm; http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#p495 -BGA 121 0.8 -0 -121 -121 -Package_BGA -TFBGA-216_13x13mm_Layout15x15_P0.8mm -TFBGA-216, 15x15 raster, 13x13mm package, pitch 0.8mm; see section 6.8 of http://www.st.com/resource/en/datasheet/stm32f746zg.pdf -BGA 216 0.8 -0 -216 -216 -Package_BGA -TFBGA-265_14x14mm_Layout17x17_P0.8mm -TFBGA-265, 17x17 raster, 14x14mm package, pitch 0.8mm; see section 7.8 of http://www.st.com/resource/en/datasheet/DM00387108.pdf -BGA 265 0.8 -0 -265 -265 -Package_BGA -Texas_BGA-289_15.0x15.0mm_Layout17x17_P0.8mm_Ball0.5mm_Pad0.4mm -Texas Instruments BGA-289, 0.4mm pad, 15x15mm, 289 Ball, 17x17 Layout, 0.8mm Pitch, https://www.ti.com/lit/ml/mpbg777/mpbg777.pdf -BGA 289 0.8 ZAV S-PBGA-N289 -0 -289 -289 -Package_BGA -Texas_DSBGA-5_0.822x1.116mm_Layout2x1x2_P0.4mm -Texas Instruments, DSBGA, 0.822x1.116mm, 5 bump 2x1x2 array, NSMD pad definition (http://www.ti.com/lit/ds/symlink/opa330.pdf, http://www.ti.com/lit/an/snva009ag/snva009ag.pdf) -Texas Instruments DSBGA BGA YFF S-XBGA-N5 -0 -10 -5 -Package_BGA -Texas_DSBGA-5_0.8875x1.3875mm_Layout2x3_P0.5mm -Texas Instruments, DSBGA, area grid, NSMD, YZP0005 pad definition, 0.8875x1.3875mm, 5 Ball, 2x3 Layout, 0.5mm Pitch, https://www.ti.com/lit/ds/symlink/sn74lvc1g17.pdf#page=42, https://www.ti.com/lit/ml/mxbg018l/mxbg018l.pdf -BGA 5 0.5 YZP -0 -5 -5 -Package_BGA -Texas_DSBGA-6_0.9x1.4mm_Layout2x3_P0.5mm -Texas Instruments, DSBGA, 0.9x1.4mm, 6 bump 2x3 (perimeter) array, NSMD pad definition (http://www.ti.com/lit/ds/symlink/ts5a3159a.pdf) -Texas Instruments DSBGA BGA YZP R-XBGA-N6 -0 -12 -6 -Package_BGA -Texas_DSBGA-6_0.95x1.488mm_Layout2x3_P0.4mm -Texas Instruments, DSBGA, area grid, YBG pad definition, 0.95x1.488mm, 6 Ball, 2x3 Layout, 0.4mm Pitch, https://www.ti.com/lit/ml/mxbg419/mxbg419.pdf, https://www.ti.com/lit/ds/symlink/tmp117.pdf -BGA 6 0.4 -0 -6 -6 -Package_BGA -Texas_DSBGA-6_0.704x1.054mm_Layout2x3_P0.35mm -Texas Instruments, DSBGA-6, 0.704x1.054mm, NSMD, YKA pad definition, 0.704x1.054mm, 6 Ball, 2x3 Layout, 0.35mm Pitch, https://www.ti.com/lit/ml/mxbg383/mxbg383.pdf, https://www.ti.com/lit/ds/symlink/tps62800.pdf -BGA 6 0.35 -0 -6 -6 -Package_BGA -Texas_DSBGA-8_0.9x1.9mm_Layout2x4_P0.5mm -Texas Instruments, DSBGA, 0.9x1.9mm, 8 bump 2x4 (perimeter) array, NSMD pad definition (http://www.ti.com/lit/ds/symlink/txb0102.pdf, http://www.ti.com/lit/an/snva009ag/snva009ag.pdf) -Texas Instruments DSBGA BGA YZP R-XBGA-N8 -0 -16 -8 -Package_BGA -Texas_DSBGA-8_0.705x1.468mm_Layout2x4_P0.4mm -Texas Instruments, DSBGA, area grid, YBJ0008 pad definition, 1.468x0.705mm, 8 Ball, 2x4 Layout, 0.4mm Pitch, https://www.ti.com/lit/gpn/ina234 -BGA 8 0.4 -0 -8 -8 -Package_BGA -Texas_DSBGA-8_1.43x1.41mm_Layout3x3_P0.5mm -Texas Instruments, DSBGA, 1.43x1.41mm, 8 bump 3x3 (perimeter) array, NSMD pad definition (http://www.ti.com/lit/ds/symlink/lmc555.pdf, http://www.ti.com/lit/an/snva009ag/snva009ag.pdf) -Texas Instruments DSBGA BGA YZP R-XBGA-N8 -0 -16 -8 -Package_BGA -Texas_DSBGA-8_1.5195x1.5195mm_Layout3x3_P0.5mm -Texas Instruments, DSBGA, 1.5195x1.5195x0.600mm, 8 ball 3x3 area grid, YZR pad definition (http://www.ti.com/lit/ml/mxbg270/mxbg270.pdf) -BGA 8 0.5 -0 -8 -8 -Package_BGA -Texas_DSBGA-9_1.4715x1.4715mm_Layout3x3_P0.5mm -Texas Instruments, DSBGA, 1.4715x1.4715mm, 9 bump 3x3 array, NSMD pad definition (http://www.ti.com/lit/ds/symlink/lm4990.pdf, http://www.ti.com/lit/an/snva009ag/snva009ag.pdf) -Texas Instruments DSBGA BGA YZR0009 -0 -18 -9 -Package_BGA -Texas_DSBGA-10_1.36x1.86mm_Layout3x4_P0.5mm -Texas Instruments, DSBGA, area grid, YZP, YZP0010, 1.86x1.36mm, 10 Ball, 3x4 Layout, 0.5mm Pitch, http://www.ti.com/lit/ds/symlink/ts3a24159.pdf -BGA 10 0.5 -0 -20 -10 -Package_BGA -Texas_DSBGA-12_1.36x1.86mm_Layout3x4_P0.5mm -Texas Instruments, DSBGA, area grid, YZT, 1.86x1.36mm, 12 Ball, 3x4 Layout, 0.5mm Pitch, http://www.ti.com/lit/ds/symlink/txb0104.pdf, http://www.ti.com/lit/an/snva009ag/snva009ag.pdf -BGA 12 0.5 R-XBGA-N12 -0 -24 -12 -Package_BGA -Texas_DSBGA-16_2.39x2.39mm_Layout4x4_P0.5mm -Texas Instruments, DSBGA, area grid, YZF, YZF0016, 2.39x2.39mm, 16 Ball, 4x4 Layout, 0.5mm Pitch, https://www.ti.com/lit/ds/symlink/dac80508.pdf -BGA 16 0.5 -0 -32 -16 -Package_BGA -Texas_DSBGA-28_1.9x3.0mm_Layout4x7_P0.4mm -Texas Instruments, DSBGA, 3.0x1.9x0.625mm, 28 ball 7x4 area grid, NSMD pad definition (http://www.ti.com/lit/ds/symlink/bq51050b.pdf, http://www.ti.com/lit/an/snva009ag/snva009ag.pdf) -BGA 28 0.4 -0 -28 -28 -Package_BGA -Texas_DSBGA-49_3.33x3.488mm_Layout7x7_P0.4mm -Texas Instruments, DSBGA, 3.33x3.488x0.625mm, 49 ball 7x7 area grid, NSMD pad definition (http://www.ti.com/lit/ds/symlink/msp430f2234.pdf, http://www.ti.com/lit/an/snva009ag/snva009ag.pdf) -texas dsbga 49 -0 -49 -49 -Package_BGA -Texas_DSBGA-64_3.415x3.535mm_Layout8x8_P0.4mm -Texas Instruments, DSBGA, 3.415x3.535x0.625mm, 64 ball 8x8 area grid, NSMD pad definition (http://www.ti.com/lit/ds/slas718g/slas718g.pdf, http://www.ti.com/lit/an/snva009ag/snva009ag.pdf) -texas dsbga 64 -0 -64 -64 -Package_BGA -Texas_MicroStar_Junior_BGA-12_2.0x2.5mm_Layout4x3_P0.5mm -Texas Instruments, BGA Microstar Junior, 2x2.5mm, 12 bump 4x3 grid, NSMD pad definition (http://www.ti.com/lit/ds/symlink/txb0104.pdf, http://www.ti.com/lit/wp/ssyz015b/ssyz015b.pdf) -Texas_Junior_BGA-12 -0 -12 -12 -Package_BGA -Texas_MicroStar_Junior_BGA-80_5.0x5.0mm_Layout9x9_P0.5mm -Texas Instruments, BGA Microstar Junior, 5x5mm, 80 ball 9x9 grid, NSMD pad definition (http://www.ti.com/lit/ds/symlink/tlv320aic23b.pdf, http://www.ti.com/lit/wp/ssyz015b/ssyz015b.pdf) -Texas_Junior_BGA-80 -0 -80 -80 -Package_BGA -Texas_MicroStar_Junior_BGA-113_7.0x7.0mm_Layout12x12_P0.5mm -Texas Instruments, BGA Microstar Junior, 7x7mm, 113 ball 12x12 grid, NSMD pad definition (http://www.ti.com/lit/ml/mpbg674/mpbg674.pdf, http://www.ti.com/lit/wp/ssyz015b/ssyz015b.pdf) -Texas_Junior_BGA-113 -0 -113 -113 -Package_BGA -UCBGA-36_2.5x2.5mm_Layout6x6_P0.4mm -UCBGA-36, 6x6 raster, 2.5x2.5mm package, pitch 0.4mm; https://www.latticesemi.com/view_document?document_id=213 -BGA 36 0.4 -0 -36 -36 -Package_BGA -UCBGA-49_3x3mm_Layout7x7_P0.4mm -UCBGA-49, 7x7 raster, 3x3mm package, pitch 0.4mm; https://www.latticesemi.com/view_document?document_id=213 -BGA 49 0.4 -0 -49 -49 -Package_BGA -UCBGA-81_4x4mm_Layout9x9_P0.4mm -UCBGA-81, 9x9 raster, 4x4mm package, pitch 0.4mm; https://www.latticesemi.com/view_document?document_id=213 -BGA 81 0.4 -0 -81 -81 -Package_BGA -UFBGA-15_3.0x3.0mm_Layout4x4_P0.65mm -UFBGA-15, 4x4, 3x3mm package, pitch 0.65mm -UFBGA-15 -0 -15 -15 -Package_BGA -UFBGA-32_4.0x4.0mm_Layout6x6_P0.5mm -UFBGA-32, 6x6, 4x4mm package, pitch 0.5mm -UFBGA-32 -0 -32 -32 -Package_BGA -UFBGA-64_5x5mm_Layout8x8_P0.5mm -UFBGA-64, 8x8 raster, 5x5mm package, pitch 0.5mm; see section 7.1 of http://www.st.com/resource/en/datasheet/stm32f051t8.pdf -BGA 64 0.5 -0 -64 -64 -Package_BGA -UFBGA-100_7x7mm_Layout12x12_P0.5mm -UFBGA-100, 12x12 raster, 7x7mm package, pitch 0.5mm; see section 7.1 of http://www.st.com/resource/en/datasheet/stm32f103tb.pdf -BGA 100 0.5 -0 -100 -100 -Package_BGA -UFBGA-132_7x7mm_Layout12x12_P0.5mm -UFBGA-132, 12x12 raster, 7x7mm package, pitch 0.5mm; see section 7.4 of http://www.st.com/resource/en/datasheet/stm32l152zc.pdf -BGA 132 0.5 -0 -132 -132 -Package_BGA -UFBGA-132_7x7mm_P0.5mm -UFBGA 132 Pins, 0.5mm Pitch, 0.3mm Ball, http://www.st.com/resource/en/datasheet/stm32l486qg.pdf -ufbga bga small-pitch -0 -132 -132 -Package_BGA -UFBGA-144_7x7mm_Layout12x12_P0.5mm -UFBGA-144, 12x12 raster, 7x7mm package, pitch 0.5mm; see section 7.4 of http://www.st.com/resource/en/datasheet/stm32f446ze.pdf -BGA 144 0.5 -0 -144 -144 -Package_BGA -UFBGA-144_10x10mm_Layout12x12_P0.8mm -UFBGA-144, 12x12 raster, 10x10mm package, pitch 0.8mm; see section 7.5 of http://www.st.com/resource/en/datasheet/stm32f446ze.pdf -BGA 144 0.8 -0 -144 -144 -Package_BGA -UFBGA-169_7x7mm_Layout13x13_P0.5mm -UFBGA-169, 13x13 raster, 7x7mm package, pitch 0.5mm; see section 7.6 of http://www.st.com/resource/en/datasheet/stm32f429ng.pdf -BGA 169 0.5 -0 -169 -169 -Package_BGA -UFBGA-201_10x10mm_Layout15x15_P0.65mm -UFBGA-201, 15x15 raster, 10x10mm package, pitch 0.65mm; see section 7.6 of http://www.st.com/resource/en/datasheet/stm32f207vg.pdf -BGA 201 0.65 -0 -201 -201 -Package_BGA -VFBGA-49_5.0x5.0mm_Layout7x7_P0.65mm -VFBGA-49, 7x7, 5x5mm package, pitch 0.65mm -VFBGA-49 -0 -49 -49 -Package_BGA -VFBGA-86_6x6mm_Layout10x10_P0.55mm_Ball0.25mm_Pad0.2mm -VFBGA-86, 6.0x6.0mm, 86 Ball, 10x10 Layout, 0.55mm Pitch, https://www.dialog-semiconductor.com/sites/default/files/da1469x_datasheet_3v1.pdf#page=740 -BGA 86 0.55 -0 -86 -86 -Package_BGA -VFBGA-100_7.0x7.0mm_Layout10x10_P0.65mm -VFBGA-100, 10x10, 7x7mm package, pitch 0.65mm -VFBGA-100 -0 -100 -100 -Package_BGA -WLP-4_0.73x0.73mm_Layout2x2_P0.35mm_Ball0.22mm_Pad0.2mm_NSMD -WLP-4, 2x2 raster, 0.73x0.73mm package, pitch 0.35mm; https://datasheets.maximintegrated.com/en/ds/MAX40200.pdf -BGA 4 0.35 -0 -4 -4 -Package_BGA -WLP-4_0.83x0.83mm_P0.4mm -WLP-4_0.83x0.83mm_P0.4mm https://pdfserv.maximintegrated.com/package_dwgs/21-100107.PDF, https://www.maximintegrated.com/en/app-notes/index.mvp/id/1891 -WLP-4 -0 -4 -4 -Package_BGA -WLP-4_0.86x0.86mm_P0.4mm -WLP-4_0.86x0.86mm_P0.4mm https://pdfserv.maximintegrated.com/package_dwgs/21-0612.PDF, https://www.maximintegrated.com/en/app-notes/index.mvp/id/1891 -WLP-4 -0 -4 -4 -Package_BGA -WLP-9_1.448x1.468mm_Layout3x3_P0.4mm_Ball0.27mm_Pad0.25mm -WLP-9, 1.448x1.468mm, 9 Ball, 3x3 Layout, 0.4mm Pitch, https://pdfserv.maximintegrated.com/package_dwgs/21-100168.PDF -BGA 9 0.4 -0 -9 -9 -Package_BGA -XBGA-121_10x10mm_Layout11x11_P0.8mm -XBGA-121, 11x11 raster, 10x10mm package, pitch 0.6mm; http://ww1.microchip.com/downloads/en/DeviceDoc/39969b.pdf -BGA 121 0.8 -0 -121 -121 -Package_BGA -XFBGA-36_3.5x3.5mm_Layout6x6_P0.5mm -XFBGA-36, https://www.nxp.com/docs/en/package-information/SOT1555-1.pdf -XFBGA-36 -0 -36 -36 -Package_BGA -XFBGA-64_5.0x5.0mm_Layout8x8_P0.5mm -XFBGA-64, https://www.nxp.com/docs/en/package-information/SOT1555-1.pdf -XFBGA-64 -0 -64 -64 -Package_BGA -XFBGA-121_8x8mm_Layout11x11_P0.65mm -XFBGA-121, https://www.nxp.com/docs/en/package-information/SOT1533-1.pdf -XFBGA-121 -0 -121 -121 -Package_BGA -Xilinx_CLG225 -Zynq-7000 BGA, 15x15 grid, 13x13mm package, 0.8mm pitch; https://www.xilinx.com/support/documentation/user_guides/ug865-Zynq-7000-Pkg-Pinout.pdf#page=77, NSMD pad definition Appendix A -BGA 225 0.8 CLG225 -0 -225 -225 -Package_BGA -Xilinx_CLG400 -Zynq-7000 BGA, 20x20 grid, 17x17mm package, 0.8mm pitch; https://www.xilinx.com/support/documentation/user_guides/ug865-Zynq-7000-Pkg-Pinout.pdf#page=78, NSMD pad definition Appendix A -BGA 400 0.8 CLG400 CL400 -0 -400 -400 -Package_BGA -Xilinx_CLG484_CLG485 -Zynq-7000 BGA, 22x22 grid, 19x19mm package, 0.8mm pitch; https://www.xilinx.com/support/documentation/user_guides/ug865-Zynq-7000-Pkg-Pinout.pdf#page=79, NSMD pad definition Appendix A -BGA 484 0.8 CLG484 CL484 CLG485 CL485 -0 -484 -484 -Package_BGA -Xilinx_CPG236 -Artix-7 BGA, 19x19 grid, 10x10mm package, 0.5mm pitch; https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=266, NSMD pad definition Appendix A -BGA 238 0.5 CP236 CPG236 -0 -238 -238 -Package_BGA -Xilinx_CPG238 -Artix-7 BGA, 19x19 grid, 10x10mm package, 0.5mm pitch; https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=267, NSMD pad definition Appendix A -BGA 238 0.5 CPG238 -0 -238 -238 -Package_BGA -Xilinx_CPGA196 -Spartan-7 BGA, 14x14 grid, 8x8mm package, 0.5mm pitch; https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=260, NSMD pad definition Appendix A -BGA 196 0.5 CPGA196 -0 -196 -196 -Package_BGA -Xilinx_CSG324 -Artix-7 BGA, 18x18 grid, 15x15mm package, 0.8mm pitch; https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=268, NSMD pad definition Appendix A -BGA 324 0.8 CS324 CSG324 -0 -324 -324 -Package_BGA -Xilinx_CSG325 -Artix-7 BGA, 18x18 grid, 15x15mm package, 0.8mm pitch; https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=268, NSMD pad definition Appendix A -BGA 324 0.8 CS325 CSG235 -0 -324 -324 -Package_BGA -Xilinx_CSGA225 -Spartan-7 BGA, 15x15 grid, 13x13mm package, 0.8mm pitch; https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=262, NSMD pad definition Appendix A -BGA 225 0.8 CSGA225 -0 -225 -225 -Package_BGA -Xilinx_CSGA324 -Spartan-7 BGA, 18x18 grid, 15x15mm package, 0.8mm pitch; https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=263, NSMD pad definition Appendix A -BGA 324 0.8 CSGA324 -0 -324 -324 -Package_BGA -Xilinx_FBG484 -Artix-7, Kintex-7 and Zynq-7000 BGA, 22x22 grid, 23x23mm package, 1mm pitch; https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=271, ttps://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=281, https://www.xilinx.com/support/documentation/user_guides/ug865-Zynq-7000-Pkg-Pinout.pdf#page=82, NSMD pad definition Appendix A -BGA 484 1 FB484 FBG484 FBV484 -0 -484 -484 -Package_BGA -Xilinx_FBG676 -Artix-7, Kintex-7 and Zynq-7000 BGA, 26x26 grid, 27x27mm package, 1mm pitch; https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=273, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=284, https://www.xilinx.com/support/documentation/user_guides/ug865-Zynq-7000-Pkg-Pinout.pdf#page=84, NSMD pad definition Appendix A -BGA 676 1 FB676 FBG676 FBV676 -0 -676 -676 -Package_BGA -Xilinx_FBG900 -Kintex-7 BGA, 30x30 grid, 31x31mm package, 1mm pitch; https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=289, NSMD pad definition Appendix A -BGA 900 1 FB900 FBG900 FBV900 -0 -900 -900 -Package_BGA -Xilinx_FFG676 -Kintex-7 and Zynq-7000 BGA, 26x26 grid, 27x27mm package, 1mm pitch; https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=292, https://www.xilinx.com/support/documentation/user_guides/ug865-Zynq-7000-Pkg-Pinout.pdf#page=88, NSMD pad definition Appendix A -BGA 676 1 FF676 FFG676 FFV676 -0 -676 -676 -Package_BGA -Xilinx_FFG900_FFG901 -Kintex-7 and Zynq-7000 BGA, 30x30 grid, 31x31mm package, 1mm pitch; https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=294, https://www.xilinx.com/support/documentation/user_guides/ug865-Zynq-7000-Pkg-Pinout.pdf#page=90, NSMD pad definition Appendix A -BGA 900 1 FF900 FFG900 FFV900 FF901 FFG901 FFV901 -0 -900 -900 -Package_BGA -Xilinx_FFG1156 -Artix-7, Kintex-7 and Zynq-7000 BGA, 34x34 grid, 35x35mm package, 1mm pitch; https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=277, https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=296, https://www.xilinx.com/support/documentation/user_guides/ug865-Zynq-7000-Pkg-Pinout.pdf#page=91, NSMD pad definition Appendix A -BGA 1156 1 FF1156 FFG1156 FFV1156 -0 -1156 -1156 -Package_BGA -Xilinx_FFG1157_FFG1158 -Virtex-7 BGA, 34x34 grid, 35x35mm package, 1mm pitch; https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=299, NSMD pad definition Appendix A -BGA 1156 1 FF1157 FFG1157 FFV1157 FF1158 FFG1158 FFV1158 -0 -1156 -1156 -Package_BGA -Xilinx_FFG1761 -Virtex-7 BGA, 42x42 grid, 42.5x42.5mm package, 1mm pitch; https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=300, NSMD pad definition Appendix A -BGA 1760 1 FF1761 FFG1761 -0 -1760 -1760 -Package_BGA -Xilinx_FFG1926_FFG1927_FFG1928_FFG1930 -Virtex-7 BGA, 44x44 grid, 45x45mm package, 1mm pitch; https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=303, NSMD pad definition Appendix A -BGA 1924 1 FF1926 FFG1926 FF1927 FFG1927 FFV1927 FF1928 FFG1928 FF1930 FFG1930 -0 -1924 -1924 -Package_BGA -Xilinx_FFV1761 -Virtex-7 BGA, 42x42 grid, 42.5x42.5mm package, 1mm pitch; https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=301, NSMD pad definition Appendix A -BGA 1760 1 FFV1761 -0 -1760 -1760 -Package_BGA -Xilinx_FGG484 -Artix-7 BGA, 22x22 grid, 23x23mm package, 1mm pitch; https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=275, NSMD pad definition Appendix A -BGA 484 1 FG484 FGG484 -0 -484 -484 -Package_BGA -Xilinx_FGG676 -Artix-7 BGA, 26x26 grid, 27x27mm package, 1mm pitch; https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=276, NSMD pad definition Appendix A -BGA 676 1 FG676 FGG676 -0 -676 -676 -Package_BGA -Xilinx_FGGA484 -Spartan-7 BGA, 22x22 grid, 23x23mm package, 1mm pitch; https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=264, NSMD pad definition Appendix A -BGA 484 1 FGGA484 -0 -484 -484 -Package_BGA -Xilinx_FGGA676 -Spartan-7 BGA, 26x26 grid, 27x27mm package, 1mm pitch; https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=265, NSMD pad definition Appendix A -BGA 676 1 FGGA676 -0 -676 -676 -Package_BGA -Xilinx_FHG1761 -Virtex-7 BGA, 42x42 grid, 45x45mm package, 1mm pitch; https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=302, NSMD pad definition Appendix A -BGA 1760 1 FH1761 FHG1761 -0 -1760 -1760 -Package_BGA -Xilinx_FLG1925_FLG1926_FLG1928_FLG1930 -Virtex-7 BGA, 44x44 grid, 45x45mm package, 1mm pitch; https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=304, NSMD pad definition Appendix A -BGA 1924 1 FL1925 FLG1925 FL1926 FLG1926 FL1928 FLG1928 FL1930 FLG1930 -0 -1924 -1924 -Package_BGA -Xilinx_FTG256 -Artix-7 BGA, 16x16 grid, 17x17mm package, 1mm pitch; https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=269, NSMD pad definition Appendix A -BGA 256 1 FT256 FTG256 -0 -256 -256 -Package_BGA -Xilinx_FTGB196 -Spartan-7 BGA, 14x14 grid, 15x15mm package, 1mm pitch; https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=261, NSMD pad definition Appendix A -BGA 196 1 FTGB196 -0 -196 -196 -Package_BGA -Xilinx_RB484 -Artix-7 and Zynq-7000 BGA, 22x22 grid, 23x23mm package, 1mm pitch; https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=278, https://www.xilinx.com/support/documentation/user_guides/ug865-Zynq-7000-Pkg-Pinout.pdf#page=92, NSMD pad definition Appendix A -BGA 484 1 RB484 -0 -484 -484 -Package_BGA -Xilinx_RB676 -Artix-7 BGA, 26x26 grid, 27x27mm package, 1mm pitch; https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=280, NSMD pad definition Appendix A -BGA 676 1 RB676 -0 -676 -676 -Package_BGA -Xilinx_RF676 -Kintex-7 BGA, 26x26 grid, 27x27mm package, 1mm pitch; https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=297, NSMD pad definition Appendix A -BGA 676 1 RF676 -0 -676 -676 -Package_BGA -Xilinx_RF900 -Kintex-7 and Zynq-7000 BGA, 30x30 grid, 31x31mm package, 1mm pitch; https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=298, https://www.xilinx.com/support/documentation/user_guides/ug865-Zynq-7000-Pkg-Pinout.pdf#page=94, NSMD pad definition Appendix A -BGA 900 1 RF900 -0 -900 -900 -Package_BGA -Xilinx_RF1156 -Zynq-7000 BGA, 34x34 grid, 35x35mm package, 1mm pitch; https://www.xilinx.com/support/documentation/user_guides/ug865-Zynq-7000-Pkg-Pinout.pdf#page=95, NSMD pad definition Appendix A -BGA 1156 1 RF1156 -0 -1156 -1156 -Package_BGA -Xilinx_RF1157_RF1158 -Virtex-7 BGA, 34x34 grid, 35x35mm package, 1mm pitch; https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=305, NSMD pad definition Appendix A -BGA 1156 1 RF1157 RF1158 -0 -1156 -1156 -Package_BGA -Xilinx_RF1761 -Virtex-7 BGA, 42x42 grid, 42.5x42.5mm package, 1mm pitch; https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=306, NSMD pad definition Appendix A -BGA 1760 1 RF1761 -0 -1760 -1760 -Package_BGA -Xilinx_RF1930 -Virtex-7 BGA, 44x44 grid, 45x45mm package, 1mm pitch; https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=307, NSMD pad definition Appendix A -BGA 1924 1 RF1930 -0 -1924 -1924 -Package_BGA -Xilinx_RFG676 -Zynq-7000 BGA, 26x26 grid, 27x27mm package, 1mm pitch; https://www.xilinx.com/support/documentation/user_guides/ug865-Zynq-7000-Pkg-Pinout.pdf#page=93, NSMD pad definition Appendix A -BGA 676 1 RF676 RFG676 -0 -676 -676 -Package_BGA -Xilinx_RS484 -Artix-7 BGA, 22x22 grid, 19x19mm package, 0.8mm pitch; https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=279, NSMD pad definition Appendix A -BGA 484 0.8 RS484 -0 -484 -484 -Package_BGA -Xilinx_SBG484 -Artix-7 BGA, 22x22 grid, 19x19mm package, 0.8mm pitch; https://www.xilinx.com/support/documentation/user_guides/ug475_7Series_Pkg_Pinout.pdf#page=270, NSMD pad definition Appendix A -BGA 484 0.8 SB484 SBG484 SBV484 -0 -484 -484 -Package_BGA -Xilinx_SBG485 -Zynq-7000 BGA, 22x22 grid, 19x19mm package, 0.8mm pitch; https://www.xilinx.com/support/documentation/user_guides/ug865-Zynq-7000-Pkg-Pinout.pdf#page=80, NSMD pad definition Appendix A -BGA 484 0.8 SBG485 SBV485 -0 -484 -484 -Package_CSP -Analog_LFCSP-8-1EP_3x3mm_P0.5mm_EP1.53x1.85mm -LFCSP, exposed pad, Analog Devices (http://www.analog.com/media/en/technical-documentation/data-sheets/ADL5542.pdf) -LFCSP 8 0.5 -0 -12 -5 -Package_CSP -Analog_LFCSP-16-1EP_4x4mm_P0.65mm_EP2.1x2.1mm -Analog LFCSP, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_16_23.pdf, CP-16-23), generated with kicad-footprint-generator ipc_noLead_generator.py -Analog LFCSP NoLead -0 -21 -17 -Package_CSP -Analog_LFCSP-16-1EP_4x4mm_P0.65mm_EP2.1x2.1mm_ThermalVias -Analog LFCSP, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_16_23.pdf, CP-16-23), generated with kicad-footprint-generator ipc_noLead_generator.py -Analog LFCSP NoLead -0 -31 -17 -Package_CSP -Analog_LFCSP-16-1EP_4x4mm_P0.65mm_EP2.35x2.35mm -Analog LFCSP, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_16_20.pdf, CP-16-20), generated with kicad-footprint-generator ipc_noLead_generator.py -Analog LFCSP NoLead -0 -21 -17 -Package_CSP -Analog_LFCSP-16-1EP_4x4mm_P0.65mm_EP2.35x2.35mm_ThermalVias -Analog LFCSP, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_16_20.pdf, CP-16-20), generated with kicad-footprint-generator ipc_noLead_generator.py -Analog LFCSP NoLead -0 -31 -17 -Package_CSP -Analog_LFCSP-UQ-10_1.3x1.6mm_P0.4mm -Analog LFCSP-UQ, 10 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_10_10.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -Analog LFCSP-UQ NoLead -0 -10 -10 -Package_CSP -LFCSP-6-1EP_2x2mm_P0.65mm_EP1x1.6mm -LFCSP, 6 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_6_3.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -LFCSP NoLead -0 -11 -7 -Package_CSP -LFCSP-8-1EP_3x2mm_P0.5mm_EP1.6x1.65mm -LFCSP 8pin Pitch 0.5mm, http://www.analog.com/media/en/package-pcb-resources/package/57080735642908cp_8_4.pdf -LFCSP 8pin thermal pad 3x2mm Pitch 0.5mm -0 -9 -9 -Package_CSP -LFCSP-8-1EP_3x3mm_P0.5mm_EP1.6x2.34mm -LFCSP, 8 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/CP_8_11.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -LFCSP NoLead -0 -13 -9 -Package_CSP -LFCSP-8-1EP_3x3mm_P0.5mm_EP1.6x2.34mm_ThermalVias -LFCSP, 8 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/CP_8_11.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -LFCSP NoLead -0 -20 -9 -Package_CSP -LFCSP-8-1EP_3x3mm_P0.5mm_EP1.45x1.74mm -LFCSP, 8 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-8/CP_8_13.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -LFCSP NoLead -0 -13 -9 -Package_CSP -LFCSP-8_2x2mm_P0.5mm -LFCSP 8pin Pitch 0.5mm, http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_8_6.pdf -LFCSP 8pin 2x2mm Pitch 0.5mm -0 -8 -8 -Package_CSP -LFCSP-16-1EP_3x3mm_P0.5mm_EP1.3x1.3mm -LFCSP, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-16/CP_16_21.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -LFCSP NoLead -0 -21 -17 -Package_CSP -LFCSP-16-1EP_3x3mm_P0.5mm_EP1.3x1.3mm_ThermalVias -LFCSP, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-16/CP_16_21.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -LFCSP NoLead -0 -26 -17 -Package_CSP -LFCSP-16-1EP_3x3mm_P0.5mm_EP1.6x1.6mm -LFCSP, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-16/CP_16_22.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -LFCSP NoLead -0 -21 -17 -Package_CSP -LFCSP-16-1EP_3x3mm_P0.5mm_EP1.6x1.6mm_ThermalVias -LFCSP, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-16/CP_16_22.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -LFCSP NoLead -0 -26 -17 -Package_CSP -LFCSP-16-1EP_3x3mm_P0.5mm_EP1.7x1.7mm -LFCSP, 16 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/HMC7992.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -LFCSP NoLead -0 -21 -17 -Package_CSP -LFCSP-16-1EP_3x3mm_P0.5mm_EP1.7x1.7mm_ThermalVias -LFCSP, 16 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/HMC7992.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -LFCSP NoLead -0 -26 -17 -Package_CSP -LFCSP-16-1EP_3x3mm_P0.5mm_EP1.854x1.854mm -16-Lead Lead Frame Chip Scale Package, 3x3mm, 0.5mm pitch, 1.854mm thermal pad (CP-16-22, http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_16_22.pdf) -LFCSP 16 0.5 -0 -21 -17 -Package_CSP -LFCSP-16-1EP_4x4mm_P0.65mm_EP2.1x2.1mm -LFCSP, 16 pin, 4x4mm, 2.1mm sq pad (http://www.analog.com/media/en/technical-documentation/data-sheets/ADG633.pdf) -LFCSP 16 0.65 -0 -21 -17 -Package_CSP -LFCSP-16-1EP_4x4mm_P0.65mm_EP2.4x2.4mm -LFCSP, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-16/cp-16-40.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -LFCSP NoLead -0 -21 -17 -Package_CSP -LFCSP-16-1EP_4x4mm_P0.65mm_EP2.4x2.4mm_ThermalVias -LFCSP, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-16/cp-16-40.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -LFCSP NoLead -0 -31 -17 -Package_CSP -LFCSP-16-1EP_4x4mm_P0.65mm_EP2.6x2.6mm -LFCSP, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_16_17.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -LFCSP NoLead -0 -21 -17 -Package_CSP -LFCSP-16-1EP_4x4mm_P0.65mm_EP2.6x2.6mm_ThermalVias -LFCSP, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_16_17.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -LFCSP NoLead -0 -31 -17 -Package_CSP -LFCSP-20-1EP_4x4mm_P0.5mm_EP2.1x2.1mm -20-Lead Frame Chip Scale Package - 4x4x0.9 mm Body [LFCSP], (see http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_20_6.pdf) -LFCSP 0.5 -0 -25 -21 -Package_CSP -LFCSP-20-1EP_4x4mm_P0.5mm_EP2.5x2.5mm -LFCSP, 20 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/AD7682_7689.pdf), generated with kicad-footprint-generator ipc_dfn_qfn_generator.py -LFCSP DFN_QFN -0 -25 -21 -Package_CSP -LFCSP-20-1EP_4x4mm_P0.5mm_EP2.5x2.5mm_ThermalVias -LFCSP, 20 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/AD7682_7689.pdf), generated with kicad-footprint-generator ipc_dfn_qfn_generator.py -LFCSP DFN_QFN -0 -35 -21 -Package_CSP -LFCSP-20-1EP_4x4mm_P0.5mm_EP2.6x2.6mm -LFCSP, 20 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-20/CP_20_8.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -LFCSP NoLead -0 -25 -21 -Package_CSP -LFCSP-20-1EP_4x4mm_P0.5mm_EP2.6x2.6mm_ThermalVias -LFCSP, 20 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-20/CP_20_8.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -LFCSP NoLead -0 -35 -21 -Package_CSP -LFCSP-24-1EP_4x4mm_P0.5mm_EP2.3x2.3mm -LFCSP, 24 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_24_14.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -LFCSP NoLead -0 -29 -25 -Package_CSP -LFCSP-24-1EP_4x4mm_P0.5mm_EP2.3x2.3mm_ThermalVias -LFCSP, 24 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_24_14.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -LFCSP NoLead -0 -39 -25 -Package_CSP -LFCSP-24-1EP_4x4mm_P0.5mm_EP2.5x2.5mm -LFCSP, 24 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_24_7.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -LFCSP NoLead -0 -29 -25 -Package_CSP -LFCSP-24-1EP_4x4mm_P0.5mm_EP2.5x2.5mm_ThermalVias -LFCSP, 24 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_24_7.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -LFCSP NoLead -0 -39 -25 -Package_CSP -LFCSP-28-1EP_5x5mm_P0.5mm_EP3.14x3.14mm -LFCSP, 28 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-28/CP_28_10.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -LFCSP NoLead -0 -33 -29 -Package_CSP -LFCSP-28-1EP_5x5mm_P0.5mm_EP3.14x3.14mm_ThermalVias -LFCSP, 28 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-28/CP_28_10.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -LFCSP NoLead -0 -43 -29 -Package_CSP -LFCSP-32-1EP_5x5mm_P0.5mm_EP3.1x3.1mm -LFCSP, 32 Pin (https://www.analog.com/media/en/package-pcb-resources/package/414143737956480539664569cp_32_2.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -LFCSP NoLead -0 -42 -33 -Package_CSP -LFCSP-32-1EP_5x5mm_P0.5mm_EP3.1x3.1mm_ThermalVias -LFCSP, 32 Pin (https://www.analog.com/media/en/package-pcb-resources/package/414143737956480539664569cp_32_2.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -LFCSP NoLead -0 -59 -33 -Package_CSP -LFCSP-32-1EP_5x5mm_P0.5mm_EP3.5x3.5mm -LFCSP, 32 Pin (https://www.analog.com/media/en/package-pcb-resources/package/3416438741201015623cp_32_4.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -LFCSP NoLead -0 -37 -33 -Package_CSP -LFCSP-32-1EP_5x5mm_P0.5mm_EP3.5x3.5mm_ThermalVias -LFCSP, 32 Pin (https://www.analog.com/media/en/package-pcb-resources/package/3416438741201015623cp_32_4.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -LFCSP NoLead -0 -47 -33 -Package_CSP -LFCSP-32-1EP_5x5mm_P0.5mm_EP3.6x3.6mm -LFCSP, 32 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/ADV7280.PDF#page=28), generated with kicad-footprint-generator ipc_noLead_generator.py -LFCSP NoLead -0 -37 -33 -Package_CSP -LFCSP-32-1EP_5x5mm_P0.5mm_EP3.6x3.6mm_ThermalVias -LFCSP, 32 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/ADV7280.PDF#page=28), generated with kicad-footprint-generator ipc_noLead_generator.py -LFCSP NoLead -0 -47 -33 -Package_CSP -LFCSP-32-1EP_5x5mm_P0.5mm_EP3.25x3.25mm -32-Lead Frame Chip Scale Package LFCSP (5mm x 5mm); (see http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-32/CP_32_27.pdf -LFCSP 0.5 -0 -37 -33 -Package_CSP -LFCSP-40-1EP_6x6mm_P0.5mm_EP3.9x3.9mm -LFCSP, 40 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_40_14.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -LFCSP NoLead -0 -45 -41 -Package_CSP -LFCSP-40-1EP_6x6mm_P0.5mm_EP3.9x3.9mm_ThermalVias -LFCSP, 40 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_40_14.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -LFCSP NoLead -0 -55 -41 -Package_CSP -LFCSP-40-1EP_6x6mm_P0.5mm_EP4.6x4.6mm -LFCSP, 40 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-40/CP_40_15.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -LFCSP NoLead -0 -45 -41 -Package_CSP -LFCSP-40-1EP_6x6mm_P0.5mm_EP4.6x4.6mm_ThermalVias -LFCSP, 40 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-40/CP_40_15.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -LFCSP NoLead -0 -55 -41 -Package_CSP -LFCSP-40-1EP_6x6mm_P0.5mm_EP4.65x4.65mm -LFCSP, 40 Pin (https://www.jedec.org/system/files/docs/MO-220K01.pdf (variation VJJD-5)), generated with kicad-footprint-generator ipc_noLead_generator.py -LFCSP NoLead -0 -45 -41 -Package_CSP -LFCSP-40-1EP_6x6mm_P0.5mm_EP4.65x4.65mm_ThermalVias -LFCSP, 40 Pin (https://www.jedec.org/system/files/docs/MO-220K01.pdf (variation VJJD-5)), generated with kicad-footprint-generator ipc_noLead_generator.py -LFCSP NoLead -0 -55 -41 -Package_CSP -LFCSP-48-1EP_7x7mm_P0.5mm_EP4.1x4.1mm -LFCSP, 48 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_48_5.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -LFCSP NoLead -0 -58 -49 -Package_CSP -LFCSP-48-1EP_7x7mm_P0.5mm_EP4.1x4.1mm_ThermalVias -LFCSP, 48 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_48_5.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -LFCSP NoLead -0 -75 -49 -Package_CSP -LFCSP-64-1EP_9x9mm_P0.5mm_EP5.21x5.21mm -LFCSP, 64 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_64_7.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -LFCSP NoLead -0 -69 -65 -Package_CSP -LFCSP-64-1EP_9x9mm_P0.5mm_EP5.21x5.21mm_ThermalVias -LFCSP, 64 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp_64_7.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -LFCSP NoLead -0 -86 -65 -Package_CSP -LFCSP-72-1EP_10x10mm_P0.5mm_EP5.3x5.3mm -LFCSP, 72 Pin (http://www.analog.com/media/en/technical-documentation/data-sheets/ADAU1452_1451_1450.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -LFCSP NoLead -0 -82 -73 -Package_CSP -LFCSP-72-1EP_10x10mm_P0.5mm_EP5.3x5.3mm_ThermalVias -LFCSP, 72 Pin (http://www.analog.com/media/en/technical-documentation/data-sheets/ADAU1452_1451_1450.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -LFCSP NoLead -0 -99 -73 -Package_CSP -LFCSP-72-1EP_10x10mm_P0.5mm_EP6.15x6.15mm -72-Lead Frame Chip Scale Package - 10x10x0.9 mm Body [LFCSP]; (see https://www.intersil.com/content/dam/Intersil/documents/l72_/l72.10x10c.pdf) -LFCSP 0.5 -0 -77 -73 -Package_CSP -LFCSP-VQ-24-1EP_4x4mm_P0.5mm_EP2.642x2.642mm -LFCSP VQ, 24 pin, exposed pad, 4x4mm body, pitch 0.5mm (http://www.analog.com/media/en/package-pcb-resources/package/56702234806764cp_24_3.pdf, http://www.analog.com/media/en/technical-documentation/data-sheets/ADL5801.pdf) -LFCSP 0.5 -0 -29 -25 -Package_CSP -LFCSP-VQ-48-1EP_7x7mm_P0.5mm -LFCSP VQ, 48 pin, exposed pad, 7x7mm body (http://www.analog.com/media/en/technical-documentation/data-sheets/AD7951.pdf, http://www.analog.com/en/design-center/packaging-quality-symbols-footprints/symbols-and-footprints/AD7951.html) -LFCSP 48 -0 -49 -49 -Package_CSP -LFCSP-WD-8-1EP_3x3mm_P0.65mm_EP1.6x2.44mm -LFCSP-WD, 8 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/CP_8_19.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -LFCSP-WD NoLead -0 -15 -9 -Package_CSP -LFCSP-WD-8-1EP_3x3mm_P0.65mm_EP1.6x2.44mm_ThermalVias -LFCSP-WD, 8 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/CP_8_19.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -LFCSP-WD NoLead -0 -22 -9 -Package_CSP -LFCSP-WD-10-1EP_3x3mm_P0.5mm_EP1.64x2.38mm -LFCSP-WD, 10 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-10/CP_10_9.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -LFCSP-WD NoLead -0 -17 -11 -Package_CSP -LFCSP-WD-10-1EP_3x3mm_P0.5mm_EP1.64x2.38mm_ThermalVias -LFCSP-WD, 10 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/lfcspcp/cp-10/CP_10_9.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -LFCSP-WD NoLead -0 -24 -11 -Package_CSP -Maxim_WLCSP-35_3.0x2.17mm_Layout7x5_P0.4mm_Ball0.27mm_Pad0.25mm -WLCSP-35, 2.168x2.998mm, 35 Ball, 7x5 Layout, 0.4mm Pitch, https://pdfserv.maximintegrated.com/package_dwgs/21-100489.PDF -CSP 35 0.4 -0 -35 -35 -Package_CSP -Nexperia_WLCSP-15_6-3-6_2.37x1.17mm_Layout6x3_P0.4mm -Nexperia wafer level chip-size package; 15 bumps (6-3-6), 2.37x1.17mm, 15 Ball, 6x3 Layout, 0.4mm Pitch, https://assets.nexperia.com/documents/data-sheet/PCMFXUSB3S_SER.pdf -CSP 15 0.4 -0 -15 -15 -Package_CSP -ST_WLCSP-18_1.86x2.14mm_P0.4mm_Stagger -ST WLCSP-18, ST Die ID 466, 1.86x2.14mm, 18 Ball, X-staggered 7x5 Layout, 0.4mm Pitch, https://www.st.com/resource/en/datasheet/stm32g031y8.pdf -CSP 18 0.4 -0 -18 -18 -Package_CSP -ST_WLCSP-20_1.94x2.40mm_Layout4x5_P0.4mm -ST WLCSP-20, ST die ID 456, 1.94x2.4mm, 20 Ball, 4x5 Layout, 0.4mm Pitch, https://www.st.com/resource/en/datasheet/stm32g051f8.pdf#page=102 -CSP 20 0.4 -0 -20 -20 -Package_CSP -ST_WLCSP-25_2.30x2.48mm_Layout5x5_P0.4mm -ST WLCSP-25, ST die ID 460, 2.3x2.48mm, 25 Ball, 5x5 Layout, 0.4mm Pitch, https://www.st.com/resource/en/datasheet/stm32g071eb.pdf -CSP 25 0.4 -0 -25 -25 -Package_CSP -ST_WLCSP-25_Die425 -WLCSP-25, 5x5 raster, 2.097x2.493mm package, pitch 0.4mm; see section 7.6 of http://www.st.com/resource/en/datasheet/stm32l031f6.pdf -BGA 25 0.4 -0 -25 -25 -Package_CSP -ST_WLCSP-25_Die444 -WLCSP-25, 5x5 raster, 2.423x2.325mm package, pitch 0.4mm; see section 7.5 of http://www.st.com/resource/en/datasheet/stm32f031k6.pdf -BGA 25 0.4 -0 -25 -25 -Package_CSP -ST_WLCSP-25_Die457 -WLCSP-25, 5x5 raster, 2.133x2.070mm package, pitch 0.4mm; see section 7.3 of http://www.st.com/resource/en/datasheet/stm32l011k3.pdf -BGA 25 0.4 -0 -25 -25 -Package_CSP -ST_WLCSP-36_2.58x3.07mm_Layout6x6_P0.4mm -ST WLCSP-36, ST die ID 464, 2.58x3.07mm, 36 Ball, 6x6 Layout, 0.4mm Pitch, https://www.st.com/resource/en/datasheet/stm32l412t8.pdf -CSP 36 0.4 -0 -36 -36 -Package_CSP -ST_WLCSP-36_Die417 -WLCSP-36, 6x6 raster, 2.61x2.88mm package, pitch 0.4mm; see section 7.4 of http://www.st.com/resource/en/datasheet/stm32l052t8.pdf -BGA 36 0.4 -0 -36 -36 -Package_CSP -ST_WLCSP-36_Die440 -WLCSP-36, 6x6 raster, 2.605x2.703mm package, pitch 0.4mm; see section 7.5 of http://www.st.com/resource/en/datasheet/stm32f051t8.pdf -BGA 36 0.4 -0 -36 -36 -Package_CSP -ST_WLCSP-36_Die445 -WLCSP-36, 6x6 raster, 2.605x2.703mm package, pitch 0.4mm; see section 7.3 of http://www.st.com/resource/en/datasheet/stm32f042k6.pdf -BGA 36 0.4 -0 -36 -36 -Package_CSP -ST_WLCSP-36_Die458 -WLCSP-36, 6x6 raster, 2.553x2.579mm package, pitch 0.4mm; see section 7.1 of http://www.st.com/resource/en/datasheet/stm32f410t8.pdf -BGA 36 0.4 -0 -36 -36 -Package_CSP -ST_WLCSP-49_3.15x3.13mm_Layout7x7_P0.4mm -ST WLCSP-49, ST die ID 468, 3.15x3.13mm, 49 Ball, 7x7 Layout, 0.4mm Pitch, https://www.st.com/resource/en/datasheet/stm32g431c6.pdf -CSP 49 0.4 -0 -49 -49 -Package_CSP -ST_WLCSP-49_3.30x3.38mm_Layout7x7_P0.4mm_Offcenter -ST WLCSP-49, off-center ball grid, ST die ID 494, 3.3x3.38mm, 49 Ball, 7x7 Layout, 0.4mm Pitch, https://www.st.com/resource/en/datasheet/stm32wb15cc.pdf#page=119 -CSP 49 0.4 -0 -49 -49 -Package_CSP -ST_WLCSP-49_Die423 -WLCSP-49, 7x7 raster, 2.965x2.965mm package, pitch 0.4mm; see section 7.1 of http://www.st.com/resource/en/datasheet/stm32f401vc.pdf -BGA 49 0.4 -0 -49 -49 -Package_CSP -ST_WLCSP-49_Die431 -WLCSP-49, 7x7 raster, 2.999x3.185mm package, pitch 0.4mm; see section 7.1 of http://www.st.com/resource/en/datasheet/stm32f411vc.pdf -BGA 49 0.4 -0 -49 -49 -Package_CSP -ST_WLCSP-49_Die433 -WLCSP-49, 7x7 raster, 3.029x3.029mm package, pitch 0.4mm; see section 7.1.1 of http://www.st.com/resource/en/datasheet/stm32f401ce.pdf -BGA 49 0.4 -0 -49 -49 -Package_CSP -ST_WLCSP-49_Die435 -WLCSP-49, 7x7 raster, 3.141x3.127mm package, pitch 0.4mm; see section 7.6 of http://www.st.com/resource/en/datasheet/DM00257211.pdf -BGA 49 0.4 -0 -49 -49 -Package_CSP -ST_WLCSP-49_Die438 -WLCSP-49, 7x7 raster, 3.89x3.74mm package, pitch 0.5mm; see section 7.5 of http://www.st.com/resource/en/datasheet/stm32f303r8.pdf -BGA 49 0.5 -0 -49 -49 -Package_CSP -ST_WLCSP-49_Die439 -WLCSP-49, 7x7 raster, 3.417x3.151mm package, pitch 0.4mm; see section 7.1 of http://www.st.com/resource/en/datasheet/stm32f301r8.pdf -BGA 49 0.4 -0 -49 -49 -Package_CSP -ST_WLCSP-49_Die447 -WLCSP-49, 7x7 raster, 3.294x3.258mm package, pitch 0.4mm; see section 7.6 of http://www.st.com/resource/en/datasheet/stm32l072kz.pdf -BGA 49 0.4 -0 -49 -49 -Package_CSP -ST_WLCSP-49_Die448 -WLCSP-49, 7x7 raster, 3.277x3.109mm package, pitch 0.4mm; see section 7.4 of http://www.st.com/resource/en/datasheet/stm32f071v8.pdf -BGA 49 0.4 -0 -49 -49 -Package_CSP -ST_WLCSP-52_3.09x3.15mm_P0.4mm_Stagger -ST WLCSP-52, ST die ID 467, 3.09x3.15mm, 52 Ball, X-staggered 13x8 Layout, 0.4mm Pitch, https://www.st.com/resource/en/datasheet/stm32g0b1ne.pdf#page=136 -CSP 52 0.4 -0 -52 -52 -Package_CSP -ST_WLCSP-63_Die427 -WLCSP-63, 7x9 raster, 3.228x4.164mm package, pitch 0.4mm; see section 7.6 of http://www.st.com/resource/en/datasheet/stm32l151cc.pdf -BGA 63 0.4 -0 -63 -63 -Package_CSP -ST_WLCSP-64_3.56x3.52mm_Layout8x8_P0.4mm -ST WLCSP-64, ST die ID 479, 3.56x3.52mm, 64 Ball, 8x8 Layout, 0.4mm Pitch, https://www.st.com/resource/en/datasheet/stm32g491re.pdf -CSP 64 0.4 -0 -64 -64 -Package_CSP -ST_WLCSP-64_Die414 -WLCSP-64, 8x8 raster, 4.466x4.395mm package, pitch 0.5mm; see section 6.3 of http://www.st.com/resource/en/datasheet/stm32f103ze.pdf -BGA 64 0.5 -0 -64 -64 -Package_CSP -ST_WLCSP-64_Die427 -WLCSP-64, 8x8 raster, 4.539x4.911mm package, pitch 0.4mm; see section 7.5 of http://www.st.com/resource/en/datasheet/stm32l152zc.pdf -BGA 64 0.4 -0 -64 -64 -Package_CSP -ST_WLCSP-64_Die435 -WLCSP-64, 8x8 raster, 3.141x3.127mm package, pitch 0.35mm; see section 7.5 of http://www.st.com/resource/en/datasheet/DM00257211.pdf -BGA 64 0.35 -0 -64 -64 -Package_CSP -ST_WLCSP-64_Die436 -WLCSP-64, 8x8 raster, 4.539x4.911mm package, pitch 0.4mm; see section 7.5 of http://www.st.com/resource/en/datasheet/stm32l152zd.pdf -BGA 64 0.4 -0 -64 -64 -Package_CSP -ST_WLCSP-64_Die441 -WLCSP-64, 8x8 raster, 3.623x3.651mm package, pitch 0.4mm; see section 7.1 of http://www.st.com/resource/en/datasheet/DM00213872.pdf -BGA 64 0.4 -0 -64 -64 -Package_CSP -ST_WLCSP-64_Die442 -WLCSP-64, 8x8 raster, 3.347x3.585mm package, pitch 0.4mm; see section 7.4 of http://www.st.com/resource/en/datasheet/stm32f091vb.pdf -BGA 64 0.4 -0 -64 -64 -Package_CSP -ST_WLCSP-64_Die462 -WLCSP-64, 8x8 raster, 3.357x3.657mm package, pitch 0.4mm; see section 7.5 of http://www.st.com/resource/en/datasheet/DM00340475.pdf -BGA 64 0.4 -0 -64 -64 -Package_CSP -ST_WLCSP-66_Die411 -WLCSP-66, 9x9 raster, 3.639x3.971mm package, pitch 0.4mm; see section 7.2 of http://www.st.com/resource/en/datasheet/stm32f207vg.pdf -BGA 66 0.4 -0 -66 -66 -Package_CSP -ST_WLCSP-66_Die432 -WLCSP-66, 8x9 raster, 3.767x4.229mm package, pitch 0.4mm; see section 7.2 of http://www.st.com/resource/en/datasheet/stm32f378vc.pdf -BGA 66 0.4 -0 -66 -66 -Package_CSP -ST_WLCSP-72_Die415 -WLCSP-72, 9x9 raster, 4.4084x3.7594mm package, pitch 0.4mm; see section 7.5 of http://www.st.com/resource/en/datasheet/stm32l476me.pdf -BGA 72 0.4 -0 -72 -72 -Package_CSP -ST_WLCSP-81_4.02x4.27mm_Layout9x9_P0.4mm -ST WLCSP-81, ST die ID 469, 4.02x4.27mm, 81 Ball, 9x9 Layout, 0.4mm Pitch, https://www.st.com/resource/en/datasheet/stm32g483me.pdf -CSP 81 0.4 -0 -81 -81 -Package_CSP -ST_WLCSP-81_4.36x4.07mm_Layout9x9_P0.4mm -ST WLCSP-81, ST die ID 472, 4.36x4.07mm, 81 Ball, 9x9 Layout, 0.4mm Pitch, https://www.st.com/resource/en/datasheet/stm32l562ce.pdf -CSP 81 0.4 -0 -81 -81 -Package_CSP -ST_WLCSP-81_Die415 -WLCSP-81, 9x9 raster, 4.4084x3.7594mm package, pitch 0.4mm; see section 7.4 of http://www.st.com/resource/en/datasheet/stm32l476me.pdf -BGA 81 0.4 -0 -81 -81 -Package_CSP -ST_WLCSP-81_Die421 -WLCSP-81, 9x9 raster, 3.693x3.815mm package, pitch 0.4mm; see section 7.6 of http://www.st.com/resource/en/datasheet/stm32f446ze.pdf -BGA 81 0.4 -0 -81 -81 -Package_CSP -ST_WLCSP-81_Die463 -WLCSP-81, 9x9 raster, 4.039x3.951mm package, pitch 0.4mm; see section 7.1 of http://www.st.com/resource/en/datasheet/DM00282249.pdf -BGA 81 0.4 -0 -81 -81 -Package_CSP -ST_WLCSP-90_4.20x3.95mm_P0.4mm_Stagger -ST WLCSP-90, ST die ID 482, 4.2x3.95mm, 90 Ball, X-staggered 18x10 Layout, 0.4mm Pitch, https://www.st.com/resource/en/datasheet/stm32u575og.pdf#page=306 -CSP 90 0.4 -0 -90 -90 -Package_CSP -ST_WLCSP-90_Die413 -WLCSP-90, 10x9 raster, 4.223x3.969mm package, pitch 0.4mm; see section 6.1 of http://www.st.com/resource/en/datasheet/stm32f405og.pdf -BGA 90 0.4 -0 -90 -90 -Package_CSP -ST_WLCSP-100_4.40x4.38mm_Layout10x10_P0.4mm_Offcenter -ST WLCSP-100, off-center ball grid, ST die ID 495, 4.4x4.38mm, 100 Ball, 10x10 Layout, 0.4mm Pitch, https://www.st.com/resource/en/datasheet/stm32wb55vc.pdf -CSP 100 0.4 -0 -100 -100 -Package_CSP -ST_WLCSP-100_4.437x4.456mm_Layout10x10_P0.4mm -ST WLCSP-100, ST die ID 471, 4.437x4.456mm, 100 Ball, 10x10 Layout, 0.4mm Pitch, https://www.st.com/resource/en/datasheet/stm32l4p5ve.pdf -CSP 100 0.4 -0 -100 -100 -Package_CSP -ST_WLCSP-100_Die422 -WLCSP-100, 10x10 raster, 4.201x4.663mm package, pitch 0.4mm; see section 7.4 of http://www.st.com/resource/en/datasheet/stm32f302vc.pdf -BGA 100 0.4 -0 -100 -100 -Package_CSP -ST_WLCSP-100_Die446 -WLCSP-100, 10x10 raster, 4.775x5.041mm package, pitch 0.4mm; see section 7.5 of http://www.st.com/resource/en/datasheet/stm32f303zd.pdf -BGA 100 0.4 -0 -100 -100 -Package_CSP -ST_WLCSP-100_Die452 -WLCSP-100, 10x10 raster, 4.201x4.663mm package, pitch 0.4mm; see section 7.7 of http://www.st.com/resource/en/datasheet/DM00330506.pdf -BGA 100 0.4 -0 -100 -100 -Package_CSP -ST_WLCSP-100_Die461 -WLCSP-100, 10x10 raster, 4.618x4.142mm package, pitch 0.4mm; see section 7.5 of http://www.st.com/resource/en/datasheet/DM00284211.pdf -BGA 100 0.4 -0 -100 -100 -Package_CSP -ST_WLCSP-104_Die437 -WLCSP-104, 9x12 raster, 4.095x5.094mm package, pitch 0.4mm; see section 7.5 of http://www.st.com/resource/en/datasheet/stm32l152ze.pdf -BGA 104 0.4 -0 -104 -104 -Package_CSP -ST_WLCSP-115_3.73x4.15mm_P0.35mm_Stagger -ST WLCSP-115, ST die ID 483, 3.73x4.15mm, 115 Ball, Y-staggered 11x21 Layout, 0.35mm Pitch, https://www.st.com/resource/en/datasheet/stm32h725vg.pdf -CSP 115 0.35 -0 -115 -115 -Package_CSP -ST_WLCSP-115_4.63x4.15mm_P0.4mm_Stagger -ST WLCSP-115, ST die ID 461, 4.63x4.15mm, 115 Ball, X-staggered 21x11 Layout, 0.4mm Pitch, https://www.st.com/resource/en/datasheet/stm32l496wg.pdf -CSP 115 0.4 -0 -115 -115 -Package_CSP -ST_WLCSP-132_4.57x4.37mm_Layout12x11_P0.35mm -ST WLCSP-132, ST die ID 480, 4.57x4.37mm, 132 Ball, 12x11 Layout, 0.35mm Pitch, https://www.st.com/resource/en/datasheet/stm32h7a3ai.pdf -CSP 132 0.35 -0 -132 -132 -Package_CSP -ST_WLCSP-143_Die419 -WLCSP-143, 11x13 raster, 4.521x5.547mm package, pitch 0.4mm; see section 7.2 of http://www.st.com/resource/en/datasheet/stm32f429ng.pdf -BGA 143 0.4 -0 -143 -143 -Package_CSP -ST_WLCSP-143_Die449 -WLCSP-143, 11x13 raster, 4.539x5.849mm package, pitch 0.4mm; see section 6.3 of http://www.st.com/resource/en/datasheet/stm32f746zg.pdf -BGA 143 0.4 -0 -143 -143 -Package_CSP -ST_WLCSP-144_Die470 -WLCSP-144, 12x12 raster, 5.24x5.24mm package, pitch 0.4mm; see section 7.4 of http://www.st.com/resource/en/datasheet/DM00366448.pdf -BGA 144 0.4 -0 -144 -144 -Package_CSP -ST_WLCSP-156_4.96x4.64mm_Layout13x12_P0.35mm -ST WLCSP-156, ST die ID 450, 4.96x4.64mm, 156 Ball, 13x12 Layout, 0.35mm Pitch, https://www.st.com/resource/en/datasheet/stm32h747xi.pdf -CSP 156 0.35 -0 -156 -156 -Package_CSP -ST_WLCSP-168_Die434 -WLCSP-168, 12x14 raster, 4.891x5.692mm package, pitch 0.4mm; see section 6.3 of http://www.st.com/resource/en/datasheet/stm32f469ni.pdf -BGA 168 0.4 -0 -168 -168 -Package_CSP -ST_WLCSP-180_Die451 -WLCSP-180, 13x14 raster, 5.537x6.095mm package, pitch 0.4mm; see section 6.6 of http://www.st.com/resource/en/datasheet/DM00273119.pdf -BGA 180 0.4 -0 -180 -180 -Package_CSP -WLCSP-4-X1-WLB0909-4_0.89x0.89mm_P0.5mm -X1-WLB0909, 0.89x0.89mm, 4 Ball, 2x2 Layout, 0.5mm Pitch, https://www.diodes.com/assets/Datasheets/AP22913.pdf -CSP 4 0.5 -0 -4 -4 -Package_CSP -WLCSP-4_0.64x0.64mm_P0.35mm -WLCSP-4, 0.64x0.64mm, 4 Ball, 2x2 Layout, 0.35mm Pitch, https://www.onsemi.com/pdf/datasheet/ncp163-d.pdf#page=23 -CSP 4 0.35 -0 -4 -4 -Package_CSP -WLCSP-6_1.4x1.0mm_P0.4mm -6pin Pitch 0.4mm -6pin Pitch 0.4mm WLCSP -0 -6 -6 -Package_CSP -WLCSP-8_1.58x1.63x0.35mm_Layout3x5_P0.35x0.4mm_Ball0.25mm_Pad0.25mm_NSMD -WLCSP/XFBGA 8-pin package, staggered pins, http://www.adestotech.com/wp-content/uploads/DS-AT25DF041B_040.pdf -WLCSP WLCSP-8 XFBGA XFBGA-8 CSP BGA Chip-Scale Glass-Top -0 -8 -8 -Package_CSP -WLCSP-8_1.551x2.284mm_P0.5mm -WLCSP-8, 2.284x1.551mm, 8 Ball, 2x4 Layout, 0.5mm Pitch, https://www.adestotech.com/wp-content/uploads/AT25SL321_112.pdf#page=75 -CSP 8 0.5 -0 -8 -8 -Package_CSP -WLCSP-12_1.56x1.56mm_P0.4mm -WLCSP 12 1.56x1.56 https://ae-bst.resource.bosch.com/media/_tech/media/datasheets/BST-BMM150-DS001-01.pdf -BMM150 WLCSP -0 -12 -12 -Package_CSP -WLCSP-12_1.403x1.555mm_P0.4mm_Stagger -WLCSP-12, 6x4 raster staggered array, 1.403x1.555mm package, pitch 0.4mm; http://ww1.microchip.com/downloads/en/devicedoc/atmel-8235-8-bit-avr-microcontroller-attiny20_datasheet.pdf#page=208 -CSP 12 0.2x0.346333 -0 -12 -12 -Package_CSP -WLCSP-16_1.409x1.409mm_P0.35mm -WLCSP-16, 1.409x1.409mm, 16 Ball, 4x4 Layout, 0.35mm Pitch, http://www.latticesemi.com/view_document?document_id=213 -CSP 16 0.35 -0 -16 -16 -Package_CSP -WLCSP-16_2.225x2.17mm_P0.5mm -WLCSP-16 2.225x2.17mm, 2.17x2.225mm, 16 Ball, 4x4 Layout, 0.5mm Pitch, https://ww1.microchip.com/downloads/en/DeviceDoc/16B_WLCSP_CS_C04-06036c.pdf -CSP 16 0.5 -0 -16 -16 -Package_CSP -WLCSP-16_4x4_B2.17x2.32mm_P0.5mm -WLCSP-16, http://www.nxp.com/documents/data_sheet/LPC1102_1104.pdf, http://www.nxp.com/assets/documents/data/en/application-notes/AN3846.pdf -WLCSP-16 NXP -0 -16 -16 -Package_CSP -WLCSP-20_1.934x2.434mm_Layout4x5_P0.4mm -WLCSP-20, 4x5 raster, 1.934x2.434mm package, pitch 0.4mm; see section 36.2.3 of http://ww1.microchip.com/downloads/en/DeviceDoc/Atmel-42363-SAM-D11_Datasheet.pdf -BGA 20 0.4 -0 -20 -20 -Package_CSP -WLCSP-20_1.994x1.94mm_Layout4x5_P0.4mm -WLCSP-20, https://www.nxp.com/docs/en/package-information/98ASA00539D.pdf -WLCSP-20 -0 -20 -20 -Package_CSP -WLCSP-20_1.994x1.609mm_Layout5x4_P0.4mm -WLCSP-20, https://www.nxp.com/docs/en/package-information/98ASA00676D.pdf -WLCSP-20 -0 -20 -20 -Package_CSP -WLCSP-36_2.82x2.67mm_Layout6x6_P0.4mm -WLCSP-36, https://www.nxp.com/docs/en/package-information/98ASA00949D.pdf -WLCSP-36 -0 -36 -36 -Package_CSP -WLCSP-36_2.374x2.459mm_Layout6x6_P0.35mm -WLCSP-36, https://www.nxp.com/docs/en/package-information/98ASA00604D.pdf -WLCSP-36 -0 -36 -36 -Package_CSP -WLCSP-56_3.170x3.444mm_Layout7x8_P0.4mm -WLCSP-56, 7x8 raster, 3.170x3.444mm package, pitch 0.4mm; see section 48.2.4 of http://ww1.microchip.com/downloads/en/DeviceDoc/DS60001479B.pdf -BGA 56 0.4 -0 -56 -56 -Package_CSP -WLCSP-81_4.41x3.76mm_P0.4mm -WLCSP-81, 9x9, 0.4mm Pitch, http://www.st.com/content/ccc/resource/technical/document/technical_note/92/30/3c/a1/4c/bb/43/6f/DM00103228.pdf/files/DM00103228.pdf/jcr:content/translations/en.DM00103228.pdf -WLCSP ST -0 -81 -81 -Package_CSP -pSemi_CSP-16_1.64x2.04mm_P0.4mm -pSemi CSP-16 1.64x2.04x0.285mm (http://www.psemi.com/pdf/datasheets/pe29101ds.pdf, http://www.psemi.com/pdf/app_notes/an77.pdf) -psemi csp 16 -0 -16 -16 -Package_CSP -pSemi_CSP-16_1.64x2.04mm_P0.4mm_Pad0.18mm -pSemi CSP-16 1.64x2.04x0.285mm (http://www.psemi.com/pdf/datasheets/pe29101ds.pdf, http://www.psemi.com/pdf/app_notes/an77.pdf) -psemi csp 16 -0 -16 -16 -Package_DFN_QFN -AMS_QFN-4-1EP_2x2mm_P0.95mm_EP0.7x1.6mm -UFD Package, 4-Lead Plastic QFN (2mm x 2mm), http://ams.com/eng/content/download/950231/2267959/483138 -QFN 0.95 -0 -6 -5 -Package_DFN_QFN -AO_DFN-8-1EP_5.55x5.2mm_P1.27mm_EP4.12x4.6mm -DD Package; 8-Lead Plastic DFN (5.55mm x 5.2mm), Pin 5-8 connected to EP (http://www.aosmd.com/res/packaging_information/DFN5x6_8L_EP1_P.pdf) -dfn -0 -25 -5 -Package_DFN_QFN -Cypress_QFN-56-1EP_8x8mm_P0.5mm_EP6.22x6.22mm_ThermalVias -56-Lead Plastic Quad Flat, No Lead Package (ML) - 8x8x0.9 mm Body [QFN] (see datasheet at http://www.cypress.com/file/138911/download and app note at http://www.cypress.com/file/140006/download) -QFN 0.5 -0 -87 -57 -Package_DFN_QFN -DFN-6-1EP_1.2x1.2mm_P0.4mm_EP0.3x0.94mm_PullBack -DFN, 6 Pin (http://www.onsemi.com/pub/Collateral/NCP133-D.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py -DFN NoLead -0 -9 -7 -Package_DFN_QFN -DFN-6-1EP_2x1.6mm_P0.5mm_EP1.15x1.3mm -DFN, 6 Pin (https://www.onsemi.com/pdf/datasheet/ncp349-d.pdf#page=12), generated with kicad-footprint-generator ipc_noLead_generator.py -DFN NoLead -0 -9 -7 -Package_DFN_QFN -DFN-6-1EP_2x1.8mm_P0.5mm_EP1.2x1.6mm -DFN, 6 Pin (https://www.diodes.com/assets/Package-Files/U-DFN2018-6.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -DFN NoLead -0 -11 -7 -Package_DFN_QFN -DFN-6-1EP_2x2mm_P0.5mm_EP0.6x1.37mm -DFN, 6 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-dfn/05081703_C_DC6.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -DFN NoLead -0 -9 -7 -Package_DFN_QFN -DFN-6-1EP_2x2mm_P0.5mm_EP0.61x1.42mm -DC6 Package; 6-Lead Plastic DFN (2mm x 2mm) (see Linear Technology DFN_6_05-08-1703.pdf) -DFN 0.5 -0 -9 -7 -Package_DFN_QFN -DFN-6-1EP_2x2mm_P0.65mm_EP1x1.6mm -6-Lead Plastic Dual Flat, No Lead Package (MA) - 2x2x0.9 mm Body [DFN] (see Microchip Packaging Specification 00000049BS.pdf) -DFN 0.65 -0 -9 -7 -Package_DFN_QFN -DFN-6-1EP_3x2mm_P0.5mm_EP1.65x1.35mm -DFN, 6 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-dfn/(DCB6)%20DFN%2005-08-1715%20Rev%20A.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -DFN NoLead -0 -11 -7 -Package_DFN_QFN -DFN-6-1EP_3x3mm_P0.95mm_EP1.7x2.6mm -DFN6 3*3 MM, 0.95 PITCH; CASE 506AH-01 (see ON Semiconductor 506AH.PDF) -DFN 0.95 -0 -13 -7 -Package_DFN_QFN -DFN-6-1EP_3x3mm_P1mm_EP1.5x2.4mm -DFN, 6 Pin (https://www.silabs.com/documents/public/data-sheets/Si7020-A20.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -DFN NoLead -0 -11 -7 -Package_DFN_QFN -DFN-6_1.3x1.2mm_P0.4mm -6-Lead Plastic DFN (1.3mm x 1.2mm) -DFN 0.4 -0 -6 -6 -Package_DFN_QFN -DFN-8-1EP_2x2mm_P0.5mm_EP0.6x1.2mm -DFN, 8 Pin (https://www.qorvo.com/products/d/da001879), generated with kicad-footprint-generator ipc_noLead_generator.py -DFN NoLead -0 -11 -9 -Package_DFN_QFN -DFN-8-1EP_2x2mm_P0.5mm_EP0.7x1.3mm -DFN, 8 Pin (https://www.onsemi.com/pub/Collateral/NUF4401MN-D.PDF#page=6), generated with kicad-footprint-generator ipc_noLead_generator.py -DFN NoLead -0 -13 -9 -Package_DFN_QFN -DFN-8-1EP_2x2mm_P0.5mm_EP0.8x1.6mm -DFN, 8 Pin (https://www.qorvo.com/products/d/da007268), generated with kicad-footprint-generator ipc_noLead_generator.py -DFN NoLead -0 -10 -9 -Package_DFN_QFN -DFN-8-1EP_2x2mm_P0.5mm_EP0.9x1.3mm -DFN, 8 Pin (https://www.onsemi.com/pub/Collateral/NB3N551-D.PDF#page=7), generated with kicad-footprint-generator ipc_noLead_generator.py -DFN NoLead -0 -13 -9 -Package_DFN_QFN -DFN-8-1EP_2x2mm_P0.5mm_EP0.9x1.5mm -DFN, 8 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/Atmel-8127-AVR-8-bit-Microcontroller-ATtiny4-ATtiny5-ATtiny9-ATtiny10_Datasheet.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -DFN NoLead -0 -13 -9 -Package_DFN_QFN -DFN-8-1EP_2x2mm_P0.5mm_EP0.9x1.6mm -DFN, 8 Pin (https://www.st.com/resource/en/datasheet/lm2903.pdf#page=16), generated with kicad-footprint-generator ipc_noLead_generator.py -DFN NoLead -0 -10 -9 -Package_DFN_QFN -DFN-8-1EP_2x2mm_P0.5mm_EP1.05x1.75mm -DFN8 2x2, 0.5P; CASE 506CN (see ON Semiconductor 506CN.PDF) -DFN 0.5 -0 -11 -9 -Package_DFN_QFN -DFN-8-1EP_2x2mm_P0.45mm_EP0.64x1.38mm -DC8 Package 8-Lead Plastic DFN (2mm x 2mm) (see Linear Technology DFN_8_05-08-1719.pdf) -DFN 0.45 -0 -11 -9 -Package_DFN_QFN -DFN-8-1EP_2x3mm_P0.5mm_EP0.56x2.15mm -DFN, 8 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/2451fg.pdf#page=17), generated with kicad-footprint-generator ipc_noLead_generator.py -DFN NoLead -0 -11 -9 -Package_DFN_QFN -DFN-8-1EP_2x3mm_P0.5mm_EP0.61x2.2mm -DDB Package; 8-Lead Plastic DFN (3mm x 2mm) (see Linear Technology DFN_8_05-08-1702.pdf) -DFN 0.5 -0 -12 -9 -Package_DFN_QFN -DFN-8-1EP_3x2mm_P0.5mm_EP1.3x1.5mm -8-Lead Plastic Dual Flat, No Lead Package (8MA2) - 2x3x0.6 mm Body [UDFN] (see Atmel-8815-SEEPROM-AT24CS01-02-Datasheet.pdf) -DFN 0.5 -0 -13 -9 -Package_DFN_QFN -DFN-8-1EP_3x2mm_P0.5mm_EP1.7x1.4mm -DFN, 8 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/8L_DFN_2x3x0_9_MC_C04-123C.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -DFN NoLead -0 -13 -9 -Package_DFN_QFN -DFN-8-1EP_3x2mm_P0.5mm_EP1.36x1.46mm -8-Lead Plastic Dual Flat, No Lead Package (8MA2) - 2x3x0.6 mm Body (http://ww1.microchip.com/downloads/en/DeviceDoc/20005010F.pdf) -DFN 0.5 -0 -13 -9 -Package_DFN_QFN -DFN-8-1EP_3x2mm_P0.5mm_EP1.75x1.45mm -8-Lead Plastic Dual Flat, No Lead Package (MC) - 2x3x0.9 mm Body [DFN] (see Microchip Packaging Specification 00000049BS.pdf) -DFN 0.5 -0 -13 -9 -Package_DFN_QFN -DFN-8-1EP_3x2mm_P0.45mm_EP1.66x1.36mm -DCB Package 8-Lead Plastic DFN (2mm x 3mm) (see Linear Technology DFN_8_05-08-1718.pdf) -DFN 0.45 -0 -13 -9 -Package_DFN_QFN -DFN-8-1EP_3x3mm_P0.5mm_EP1.65x2.38mm -DFN, 8 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/4320fb.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -DFN NoLead -0 -10 -9 -Package_DFN_QFN -DFN-8-1EP_3x3mm_P0.5mm_EP1.65x2.38mm_ThermalVias -DFN, 8 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/4320fb.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -DFN NoLead -0 -20 -9 -Package_DFN_QFN -DFN-8-1EP_3x3mm_P0.5mm_EP1.66x2.38mm -DD Package; 8-Lead Plastic DFN (3mm x 3mm) (see Linear Technology DFN_8_05-08-1698.pdf) -DFN 0.5 -0 -13 -9 -Package_DFN_QFN -DFN-8-1EP_3x3mm_P0.65mm_EP1.7x2.05mm -DFN, 8 Pin (http://www.ixysic.com/home/pdfs.nsf/www/IX4426-27-28.pdf/$file/IX4426-27-28.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -DFN NoLead -0 -13 -9 -Package_DFN_QFN -DFN-8-1EP_3x3mm_P0.65mm_EP1.55x2.4mm -8-Lead Plastic Dual Flat, No Lead Package (MF) - 3x3x0.9 mm Body [DFN] (see Microchip Packaging Specification 00000049BS.pdf) -DFN 0.65 -0 -13 -9 -Package_DFN_QFN -DFN-8-1EP_4x4mm_P0.8mm_EP2.3x3.24mm -DFN, 8 Pin (https://www.st.com/resource/en/datasheet/ld1086.pdf#page=35), generated with kicad-footprint-generator ipc_noLead_generator.py -DFN NoLead -0 -13 -9 -Package_DFN_QFN -DFN-8-1EP_4x4mm_P0.8mm_EP2.5x3.6mm -8-Lead Plastic Dual Flat, No Lead Package (MD) - 4x4x0.9 mm Body [DFN] (see Microchip Packaging Specification 00000049BS.pdf) -DFN 0.8 -0 -15 -9 -Package_DFN_QFN -DFN-8-1EP_4x4mm_P0.8mm_EP2.39x2.21mm -8-Lead Plastic Dual Flat, No Lead Package (MD) - 4x4x0.9 mm Body [DFN] (http://www.onsemi.com/pub/Collateral/NCP4308-D.PDF) -DFN 0.8 -0 -13 -9 -Package_DFN_QFN -DFN-8-1EP_6x5mm_P1.27mm_EP2x2mm -DD Package; 8-Lead Plastic DFN (6mm x 5mm) (see http://www.everspin.com/file/236/download) -dfn -0 -13 -9 -Package_DFN_QFN -DFN-8-1EP_6x5mm_P1.27mm_EP4x4mm -DD Package; 8-Lead Plastic DFN (6mm x 5mm) (see http://www.everspin.com/file/236/download) -dfn -0 -25 -9 -Package_DFN_QFN -DFN-8_2x2mm_P0.5mm -DFN8 2x2, 0.5P; No exposed pad - Ref http://pdfserv.maximintegrated.com/land_patterns/90-0349.PDF -DFN 0.5 -0 -8 -8 -Package_DFN_QFN -DFN-10-1EP_2.6x2.6mm_P0.5mm_EP1.3x2.2mm -DFN, 10 Pin (https://www.nxp.com/docs/en/data-sheet/PCF85063A.pdf#page=48), generated with kicad-footprint-generator ipc_noLead_generator.py -DFN NoLead -0 -15 -11 -Package_DFN_QFN -DFN-10-1EP_2.6x2.6mm_P0.5mm_EP1.3x2.2mm_ThermalVias -DFN, 10 Pin (https://www.nxp.com/docs/en/data-sheet/PCF85063A.pdf#page=48), generated with kicad-footprint-generator ipc_noLead_generator.py -DFN NoLead -0 -22 -11 -Package_DFN_QFN -DFN-10-1EP_2x3mm_P0.5mm_EP0.64x2.4mm -DDB Package; 10-Lead Plastic DFN (3mm x 2mm) (see Linear Technology DFN_10_05-08-1722.pdf) -DFN 0.5 -0 -13 -11 -Package_DFN_QFN -DFN-10-1EP_3x3mm_P0.5mm_EP1.7x2.5mm -DFN, 10 Pin (https://www.monolithicpower.com/pub/media/document/MPQ2483_r1.05.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -DFN NoLead -0 -15 -11 -Package_DFN_QFN -DFN-10-1EP_3x3mm_P0.5mm_EP1.55x2.48mm -10-Lead Plastic Dual Flat, No Lead Package (MF) - 3x3x0.9 mm Body [DFN] (see Microchip Packaging Specification 00000049BS.pdf) -DFN 0.5 -0 -15 -11 -Package_DFN_QFN -DFN-10-1EP_3x3mm_P0.5mm_EP1.65x2.38mm -DFN, 10 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/3471fb.pdf#page=15), generated with kicad-footprint-generator ipc_noLead_generator.py -DFN NoLead -0 -15 -11 -Package_DFN_QFN -DFN-10-1EP_3x3mm_P0.5mm_EP1.65x2.38mm_ThermalVias -DFN, 10 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/3471fb.pdf#page=15), generated with kicad-footprint-generator ipc_noLead_generator.py -DFN NoLead -0 -22 -11 -Package_DFN_QFN -DFN-10-1EP_3x3mm_P0.5mm_EP1.75x2.7mm -10-Lead Plastic Dual Flat No-Lead Package, 3x3mm Body (see Atmel Appnote 8826) -DFN 0.5 -0 -15 -11 -Package_DFN_QFN -DFN-10_2x2mm_P0.4mm -10-Lead Plastic DFN (2mm x 2mm) 0.40mm pitch -DFN 10 0.4mm -0 -10 -10 -Package_DFN_QFN -DFN-12-1EP_2x3mm_P0.45mm_EP0.64x2.4mm -DDB Package; 12-Lead Plastic DFN (3mm x 2mm) (see Linear Technology DFN_12_05-08-1723.pdf) -DFN 0.45 -0 -15 -13 -Package_DFN_QFN -DFN-12-1EP_3x3mm_P0.5mm_EP1.6x2.5mm -DFN, 12 Pin (https://ww1.microchip.com/downloads/aemDocuments/documents/APID/ProductDocuments/DataSheets/MIC2207-2MHz-3A-PWM-Buck-Regulator-DS20006470A.pdf#page=22), generated with kicad-footprint-generator ipc_noLead_generator.py -DFN NoLead -0 -17 -13 -Package_DFN_QFN -DFN-12-1EP_3x3mm_P0.5mm_EP1.6x2.5mm_ThermalVias -DFN, 12 Pin (https://ww1.microchip.com/downloads/aemDocuments/documents/APID/ProductDocuments/DataSheets/MIC2207-2MHz-3A-PWM-Buck-Regulator-DS20006470A.pdf#page=22), generated with kicad-footprint-generator ipc_noLead_generator.py -DFN NoLead -0 -24 -13 -Package_DFN_QFN -DFN-12-1EP_3x3mm_P0.5mm_EP2.05x2.86mm -10-Lead Plastic Dual Flat, No Lead Package (MF) - 3x3x0.9 mm Body [DFN] (see Microchip Packaging Specification 00000049BS.pdf) -DFN 0.5 -0 -17 -13 -Package_DFN_QFN -DFN-12-1EP_3x3mm_P0.45mm_EP1.66x2.38mm -DD Package; 12-Lead Plastic DFN (3mm x 3mm) (see Linear Technology DFN_12_05-08-1725.pdf) -DFN 0.45 -0 -17 -13 -Package_DFN_QFN -DFN-12-1EP_3x4mm_P0.5mm_EP1.7x3.3mm -DE/UE Package; 12-Lead Plastic DFN (4mm x 3mm) (see Linear Technology DFN_12_05-08-1695.pdf) -DFN 0.5 -0 -21 -13 -Package_DFN_QFN -DFN-12-1EP_4x4mm_P0.5mm_EP2.66x3.38mm -DF Package; 12-Lead Plastic DFN (4mm x 4mm) (see Linear Technology 05081733_A_DF12.pdf) -DFN 0.5 -0 -21 -13 -Package_DFN_QFN -DFN-12-1EP_4x4mm_P0.65mm_EP2.64x3.54mm -DFN12, 4x4, 0.65P; CASE 506CE (see ON Semiconductor 506CE.PDF) -DFN 0.65 -0 -21 -13 -Package_DFN_QFN -DFN-14-1EP_3x3mm_P0.4mm_EP1.78x2.35mm -DD Package; 14-Lead Plastic DFN (3mm x 3mm) (http://pdfserv.maximintegrated.com/land_patterns/90-0063.PDF) -DFN 0.40 -0 -19 -15 -Package_DFN_QFN -DFN-14-1EP_3x4.5mm_P0.65mm_EP1.65x4.25mm -14-lead very thin plastic quad flat, 3.0x4.5mm size, 0.65mm pitch (http://ww1.microchip.com/downloads/en/DeviceDoc/14L_VDFN_4_5x3_0mm_JHA_C041198A.pdf) -VDFN DFN 0.65mm -0 -23 -15 -Package_DFN_QFN -DFN-14-1EP_3x4.5mm_P0.65mm_EP1.65x4.25mm_ThermalVias -14-lead very thin plastic quad flat, 3.0x4.5mm size, 0.65mm pitch (http://ww1.microchip.com/downloads/en/DeviceDoc/14L_VDFN_4_5x3_0mm_JHA_C041198A.pdf) -VDFN DFN 0.65mm -0 -33 -15 -Package_DFN_QFN -DFN-14-1EP_3x4mm_P0.5mm_EP1.7x3.3mm -DE Package; 14-Lead Plastic DFN (4mm x 3mm) (see Linear Technology DFN_14_05-08-1708.pdf) -DFN 0.5 -0 -23 -15 -Package_DFN_QFN -DFN-14-1EP_4x4mm_P0.5mm_EP2.86x3.6mm -DFN14, 4x4, 0.5P; CASE 506CM (see ON Semiconductor 506CM.PDF) -DFN 0.5 -0 -23 -15 -Package_DFN_QFN -DFN-14_1.35x3.5mm_P0.5mm -DFN, 14 Pin (https://m.littelfuse.com/~/media/electronics/datasheets/tvs_diode_arrays/littelfuse_tvs_diode_array_sp3012_datasheet.pdf.pdf#page=7), generated with kicad-footprint-generator ipc_noLead_generator.py -DFN NoLead -0 -14 -14 -Package_DFN_QFN -DFN-16-1EP_3x4mm_P0.45mm_EP1.7x3.3mm -DE Package; 16-Lead Plastic DFN (4mm x 3mm) (see Linear Technology DFN_16_05-08-1732.pdf) -DFN 0.45 -0 -25 -17 -Package_DFN_QFN -DFN-16-1EP_3x5mm_P0.5mm_EP1.66x4.4mm -DHC Package; 16-Lead Plastic DFN (5mm x 3mm) (see Linear Technology DFN_16_05-08-1706.pdf) -DFN 0.5 -0 -27 -17 -Package_DFN_QFN -DFN-16-1EP_4x5mm_P0.5mm_EP2.44x4.34mm -DHD Package; 16-Lead Plastic DFN (5mm x 4mm) (see Linear Technology 05081707_A_DHD16.pdf) -DFN 0.5 -0 -25 -17 -Package_DFN_QFN -DFN-16-1EP_5x5mm_P0.5mm_EP3.46x4mm -DH Package; 16-Lead Plastic DFN (5mm x 5mm) (see Linear Technology DFN_16_05-08-1709.pdf) -DFN 0.5 -0 -26 -17 -Package_DFN_QFN -DFN-18-1EP_3x5mm_P0.5mm_EP1.66x4.4mm -DHC Package; 18-Lead Plastic DFN (5mm x 3mm) (see Linear Technology 05081955_0_DHC18.pdf) -DFN 0.5 -0 -29 -19 -Package_DFN_QFN -DFN-18-1EP_4x5mm_P0.5mm_EP2.44x4.34mm -DHD Package; 18-Lead Plastic DFN (5mm x 4mm) (see Linear Technology DFN_18_05-08-1778.pdf) -DFN 0.5 -0 -27 -19 -Package_DFN_QFN -DFN-20-1EP_5x6mm_P0.5mm_EP3.24x4.24mm -DFN20, 6x5, 0.5P; CASE 505AB (see ON Semiconductor 505AB.PDF) -DFN 0.5 -0 -33 -21 -Package_DFN_QFN -DFN-22-1EP_5x6mm_P0.5mm_EP3.14x4.3mm -DFN22 6*5*0.9 MM, 0.5 P; CASE 506AF\xe2\x88\x9201 (see ON Semiconductor 506AF.PDF) -DFN 0.5 -0 -35 -23 -Package_DFN_QFN -DFN-24-1EP_4x7mm_P0.5mm_EP2.64x6.44mm -DKD Package; 24-Lead Plastic DFN (7mm x 4mm) (see Linear Technology DFN_24_05-08-1864.pdf) -DFN 0.5 -0 -35 -25 -Package_DFN_QFN -DFN-32-1EP_4x7mm_P0.4mm_EP2.64x6.44mm -DKD Package; 32-Lead Plastic DFN (7mm x 4mm) (see Linear Technology DFN_32_05-08-1734.pdf) -DFN 0.4 -0 -43 -33 -Package_DFN_QFN -DFN-44-1EP_5x8.9mm_P0.4mm_EP3.7x8.4mm -DFN44 8.9x5, 0.4P; CASE 506BU-01 (see ON Semiconductor 506BU.PDF) -DFN 0.4 -0 -63 -45 -Package_DFN_QFN -DFN-S-8-1EP_6x5mm_P1.27mm -8-Lead Plastic Dual Flat, No Lead Package (MF) - 6x5 mm Body [DFN-S] (see Microchip Packaging Specification 00000049BS.pdf) -DFN 1.27 -0 -16 -9 -Package_DFN_QFN -DHVQFN-14-1EP_2.5x3mm_P0.5mm_EP1x1.5mm -DHVQFN, 14 Pin (JEDEC MO-241/VAA, https://assets.nexperia.com/documents/package-information/SOT762-1.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -DHVQFN NoLead -0 -16 -15 -Package_DFN_QFN -DHVQFN-16-1EP_2.5x3.5mm_P0.5mm_EP1x2mm -DHVQFN, 16 Pin (JEDEC MO-241/VAB, https://assets.nexperia.com/documents/package-information/SOT763-1.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -DHVQFN NoLead -0 -19 -17 -Package_DFN_QFN -DHVQFN-20-1EP_2.5x4.5mm_P0.5mm_EP1x3mm -DHVQFN, 20 Pin (JEDEC MO-241/VAC, https://assets.nexperia.com/documents/package-information/SOT764-1.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -DHVQFN NoLead -0 -23 -21 -Package_DFN_QFN -Diodes_DFN1006-3 -DFN package size 1006 3 pins -DFN package size 1006 3 pins -0 -3 -3 -Package_DFN_QFN -Diodes_UDFN-10_1.0x2.5mm_P0.5mm -U-DFN2510-10 package used by Diodes Incorporated (https://www.diodes.com/assets/Package-Files/U-DFN2510-10-Type-CJ.pdf) -UDFN-10 U-DFN2510-10 Diodes -0 -10 -10 -Package_DFN_QFN -Diodes_UDFN2020-6_Type-F -U-DFN2020-6 (Type F) (https://www.diodes.com/assets/Package-Files/U-DFN2020-6-Type-F.pdf) -U-DFN2020-6 (Type F) -0 -8 -8 -Package_DFN_QFN -HVQFN-16-1EP_3x3mm_P0.5mm_EP1.5x1.5mm -HVQFN, 16 Pin (https://www.nxp.com/docs/en/package-information/SOT758-1.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -HVQFN NoLead -0 -21 -17 -Package_DFN_QFN -HVQFN-24-1EP_4x4mm_P0.5mm_EP2.1x2.1mm -HVQFN, 24 Pin (https://www.nxp.com/docs/en/package-information/SOT616-1.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -HVQFN NoLead -0 -34 -25 -Package_DFN_QFN -HVQFN-24-1EP_4x4mm_P0.5mm_EP2.5x2.5mm -HVQFN, 24 Pin (https://www.nxp.com/docs/en/package-information/SOT616-3.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -HVQFN NoLead -0 -29 -25 -Package_DFN_QFN -HVQFN-24-1EP_4x4mm_P0.5mm_EP2.5x2.5mm_ThermalVias -HVQFN, 24 Pin (https://www.nxp.com/docs/en/package-information/SOT616-3.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -HVQFN NoLead -0 -39 -25 -Package_DFN_QFN -HVQFN-24-1EP_4x4mm_P0.5mm_EP2.6x2.6mm -HVQFN, 24 Pin (https://www.nxp.com/docs/en/package-information/SOT616-3.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -HVQFN NoLead -0 -34 -25 -Package_DFN_QFN -HVQFN-24-1EP_4x4mm_P0.5mm_EP2.6x2.6mm_ThermalVias -HVQFN, 24 Pin (https://www.nxp.com/docs/en/package-information/SOT616-3.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -HVQFN NoLead -0 -39 -25 -Package_DFN_QFN -HVQFN-32-1EP_5x5mm_P0.5mm_EP3.1x3.1mm -HVQFN, 32 Pin (https://www.nxp.com/docs/en/package-information/SOT617-1.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -HVQFN NoLead -0 -42 -33 -Package_DFN_QFN -HVQFN-32-1EP_5x5mm_P0.5mm_EP3.1x3.1mm_ThermalVias -HVQFN, 32 Pin (https://www.nxp.com/docs/en/package-information/SOT617-1.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -HVQFN NoLead -0 -59 -33 -Package_DFN_QFN -HVQFN-40-1EP_6x6mm_P0.5mm_EP4.1x4.1mm -HVQFN, 40 Pin (https://www.nxp.com/docs/en/package-information/SOT618-1.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -HVQFN NoLead -0 -50 -41 -Package_DFN_QFN -HVQFN-40-1EP_6x6mm_P0.5mm_EP4.1x4.1mm_ThermalVias -HVQFN, 40 Pin (https://www.nxp.com/docs/en/package-information/SOT618-1.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -HVQFN NoLead -0 -67 -41 -Package_DFN_QFN -Infineon_MLPQ-16-14-1EP_4x4mm_P0.5mm -MLPQ 32 leads, 7x7mm, 0.127mm stencil (https://www.infineon.com/dgdl/Infineon-AN1170-AN-v05_00-EN.pdf?fileId=5546d462533600a40153559ac3e51134) -mlpq 32 7x7mm -0 -19 -15 -Package_DFN_QFN -Infineon_MLPQ-40-32-1EP_7x7mm_P0.5mm -MLPQ 32 leads, 7x7mm, 0.127mm stencil (https://www.infineon.com/dgdl/Infineon-AN1170-AN-v05_00-EN.pdf?fileId=5546d462533600a40153559ac3e51134) -mlpq 32 7x7mm -0 -76 -33 -Package_DFN_QFN -Infineon_MLPQ-48-1EP_7x7mm_P0.5mm_EP5.55x5.55mm -MLPQ 48 leads, 7x7mm (https://www.infineon.com/dgdl/irs2093mpbf.pdf?fileId=5546d462533600a401535675fb892793) -mlpq 32 7x7mm -0 -113 -49 -Package_DFN_QFN -Infineon_MLPQ-48-1EP_7x7mm_P0.5mm_Pad5.15x5.15mm -MLPQ 48 leads, 7x7mm (https://www.infineon.com/dgdl/irs2052mpbf.pdf?fileId=5546d462533600a401535675d3b32788) -mlpq 32 7x7mm -0 -117 -49 -Package_DFN_QFN -Infineon_MLPQ-48-1EP_7x7mm_P0.5mm_Pad5.55x5.55mm -MLPQ 48 leads, 7x7mm (https://www.infineon.com/dgdl/irs2093mpbf.pdf?fileId=5546d462533600a401535675fb892793) -mlpq 32 7x7mm -0 -117 -49 -Package_DFN_QFN -Infineon_PQFN-22-15-4EP_6x5mm_P0.65mm -PQFN 22 leads, 5x6mm, 0.127mm stencil (https://www.infineon.com/dgdl/ir4301.pdf?fileId=5546d462533600a4015355d5fc691819, https://www.infineon.com/dgdl/Infineon-AN1170-AN-v05_00-EN.pdf?fileId=5546d462533600a40153559ac3e51134) -pqfn 22 5x6mm -0 -56 -15 -Package_DFN_QFN -Infineon_PQFN-44-31-5EP_7x7mm_P0.5mm -PQFN 44 leads, 7x7mm, 0.127mm stencil (https://www.infineon.com/dgdl/ir4302.pdf?fileId=5546d462533600a4015355d602a9181d, https://www.infineon.com/dgdl/Infineon-AN1170-AN-v05_00-EN.pdf?fileId=5546d462533600a40153559ac3e51134) -pqfn 44 7x7mm -0 -125 -27 -Package_DFN_QFN -LQFN-10-1EP_2x2mm_P0.5mm_EP0.7x0.7mm -LQFN, 10 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-lqfn/05081644_0_LQFN10.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -LQFN NoLead -0 -12 -11 -Package_DFN_QFN -LQFN-12-1EP_2x2mm_P0.5mm_EP0.7x0.7mm -LQFN, 12 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-lqfn/05081530_B_LQFN12.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -LQFN NoLead -0 -14 -13 -Package_DFN_QFN -LQFN-16-1EP_3x3mm_P0.5mm_EP1.7x1.7mm -LQFN, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-lqfn/05081595_0_lqfn16.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -LQFN NoLead -0 -18 -17 -Package_DFN_QFN -Linear_DE14MA -14-Lead Plastic DFN, 4mm x 3mm (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-dfn/05081731_C_DE14MA.pdf) -DFN 0.5 -0 -14 -14 -Package_DFN_QFN -Linear_UGK52_QFN-46-52 -Linear UKG52(46) package, QFN-52-1EP variant (see http://cds.linear.com/docs/en/datasheet/3886fe.pdf) -QFN 0.5 -0 -62 -47 -Package_DFN_QFN -MLF-6-1EP_1.6x1.6mm_P0.5mm_EP0.5x1.26mm -MLF, 6 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/mic5353.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -MLF NoLead -0 -9 -7 -Package_DFN_QFN -MLF-8-1EP_3x3mm_P0.65mm_EP1.55x2.3mm -8-Pin ePad 3mm x 3mm MLF - 3x3x0.85 mm Body (see Microchip datasheet http://ww1.microchip.com/downloads/en/DeviceDoc/mic5355_6.pdf) -DFN MLF 0.65 -0 -12 -9 -Package_DFN_QFN -MLF-8-1EP_3x3mm_P0.65mm_EP1.55x2.3mm_ThermalVias -8-Pin ePad 3mm x 3mm MLF - 3x3x0.85 mm Body (see Microchip datasheet http://ww1.microchip.com/downloads/en/DeviceDoc/mic5355_6.pdf) -DFN MLF 0.65 -0 -15 -9 -Package_DFN_QFN -MLF-20-1EP_4x4mm_P0.5mm_EP2.6x2.6mm -MLF, 20 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/doc8246.pdf#page=263), generated with kicad-footprint-generator ipc_noLead_generator.py -MLF NoLead -0 -25 -21 -Package_DFN_QFN -MLF-20-1EP_4x4mm_P0.5mm_EP2.6x2.6mm_ThermalVias -MLF, 20 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/doc8246.pdf#page=263), generated with kicad-footprint-generator ipc_noLead_generator.py -MLF NoLead -0 -30 -21 -Package_DFN_QFN -MLPQ-16-1EP_4x4mm_P0.65mm_EP2.8x2.8mm -Micro Leadframe Package, 16 pin with exposed pad -MLPQ- 0.65 -0 -21 -17 -Package_DFN_QFN -Maxim_TDFN-6-1EP_3x3mm_P0.95mm_EP1.5x2.3mm -Maxim TDFN, 6 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/MAX4460-MAX4462.pdf#page=19, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/tdfn-ep/21-0137.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -Maxim TDFN NoLead -0 -11 -7 -Package_DFN_QFN -Micrel_MLF-8-1EP_2x2mm_P0.5mm_EP0.6x1.2mm -Micrel MLF, 8 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/mic23050.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -Micrel MLF NoLead -0 -11 -9 -Package_DFN_QFN -Micrel_MLF-8-1EP_2x2mm_P0.5mm_EP0.6x1.2mm_ThermalVias -Micrel MLF, 8 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/mic23050.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -Micrel MLF NoLead -0 -16 -9 -Package_DFN_QFN -Micrel_MLF-8-1EP_2x2mm_P0.5mm_EP0.8x1.3mm_ThermalVias -http://ww1.microchip.com/downloads/en/DeviceDoc/mic2290.pdf -mlf 8 2x2 mm -0 -14 -9 -Package_DFN_QFN -Microchip_8E-16 -16-Lead Quad Flat, No Lead Package (8E) - 4x4x0.9 mm Body [UQFN]; (see Microchip Packaging Specification 00000049BS.pdf) -QFN Microchip 8E 16 -0 -20 -17 -Package_DFN_QFN -Microchip_DRQFN-44-1EP_5x5mm_P0.7mm_EP2.65x2.65mm -QFN, 44 Pin, dual row (http://ww1.microchip.com/downloads/en/DeviceDoc/44L_VQFN_5x5mm_Dual_Row_%5BS3B%5D_C04-21399a.pdf) -QFN dual row -0 -49 -45 -Package_DFN_QFN -Microchip_DRQFN-44-1EP_5x5mm_P0.7mm_EP2.65x2.65mm_ThermalVias -QFN, 44 Pin, dual row (http://ww1.microchip.com/downloads/en/DeviceDoc/44L_VQFN_5x5mm_Dual_Row_%5BS3B%5D_C04-21399a.pdf) -QFN dual row -0 -59 -45 -Package_DFN_QFN -Microchip_DRQFN-64-1EP_7x7mm_P0.65mm_EP4.1x4.1mm -QFN, 64 Pin, dual row (http://ww1.microchip.com/downloads/en/DeviceDoc/64L_VQFN_7x7_Dual_Row_%5BSVB%5D_C04-21420a.pdf) -QFN dual row -0 -74 -65 -Package_DFN_QFN -Microchip_DRQFN-64-1EP_7x7mm_P0.65mm_EP4.1x4.1mm_ThermalVias -QFN, 64 Pin, dual row (http://ww1.microchip.com/downloads/en/DeviceDoc/64L_VQFN_7x7_Dual_Row_%5BSVB%5D_C04-21420a.pdf) -QFN dual row -0 -91 -65 -Package_DFN_QFN -Microsemi_QFN-40-32-2EP_6x8mm_P0.5mm -40-Lead (32-Lead Populated) Plastic Quad Flat, No Lead Package - 6x8x0.9mm Body (https://www.microsemi.com/document-portal/doc_download/131677-pd70224-data-sheet) -QFN 0.5 -0 -92 -34 -Package_DFN_QFN -Mini-Circuits_DL805 -https://ww2.minicircuits.com/case_style/DL805.pdf -RF Switch -0 -11 -9 -Package_DFN_QFN -Mini-Circuits_FG873-4_3x3mm -Mini Circuits Case style FG (https://ww2.minicircuits.com/case_style/FG873.pdf) -FG873 -0 -4 -4 -Package_DFN_QFN -NXP_LQFN-48-1EP_7x7mm_P0.5mm_EP3.5x3.5mm_16xMask0.45x0.45 -LQFN, 48 Pin (https://www.nxp.com/docs/en/package-information/98ASA00694D.pdf) -NXP LQFN NoLead -0 -65 -49 -Package_DFN_QFN -NXP_LQFN-48-1EP_7x7mm_P0.5mm_EP3.5x3.5mm_16xMask0.45x0.45_ThermalVias -LQFN, 48 Pin (https://www.nxp.com/docs/en/package-information/98ASA00694D.pdf) -NXP LQFN NoLead -0 -75 -49 -Package_DFN_QFN -Nordic_AQFN-73-1EP_7x7mm_P0.5mm -http://infocenter.nordicsemi.com/index.jsp?topic=%2Fcom.nordic.infocenter.nrf52%2Fdita%2Fnrf52%2Fchips%2Fnrf52840.html -AQFN 7mm -0 -78 -74 -Package_DFN_QFN -OnSemi_DFN-8_2x2mm_P0.5mm -DFN8 2x2, 0.5P (https://www.onsemi.com/pub/Collateral/511AT.PDF) -DFN 0.5 -0 -8 -8 -Package_DFN_QFN -OnSemi_SIP-38-6EP-9x7mm_P0.65mm_EP1.2x1.2mm -On Semiconductor, SIP-38, 9x7mm, (https://www.onsemi.com/pub/Collateral/AX-SIP-SFEU-D.PDF#page=19) -On Semiconductor SIP -0 -44 -44 -Package_DFN_QFN -OnSemi_UDFN-8_1.2x1.8mm_P0.4mm -8-Lead Plastic Dual Flat, No Lead Package, 1.2x1.8x1.55 mm Body [UDFN] (See http://www.onsemi.com/pub/Collateral/NLSV2T244-D.PDF) -dfn udfn dual flat -0 -8 -8 -Package_DFN_QFN -OnSemi_VCT-28_3.5x3.5mm_P0.4mm -OnSemi VCT, 28 Pin (http://www.onsemi.com/pub/Collateral/601AE.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py -OnSemi VCT NoLead -0 -28 -28 -Package_DFN_QFN -OnSemi_XDFN-10_1.35x2.2mm_P0.4mm -10-Lead Plastic XDFN (1.35mm x 2.2mm) (see https://www.onsemi.com/pdf/datasheet/emi8132-d.pdf) -OnSemi XDFN-10 0.4 -0 -10 -10 -Package_DFN_QFN -OnSemi_XDFN4-1EP_1.0x1.0mm_EP0.52x0.52mm -XDFN4 footprint (as found on the https://www.onsemi.com/pub/Collateral/NCP115-D.PDF) -OnSemi XDFN4 -0 -5 -5 -Package_DFN_QFN -PQFN-8-EP_6x5mm_P1.27mm_Generic -Universal Footprint for Thermally-enhanced SO-8 packages; compatible with Vishay PowerPAK SO−8, International Rectifier PQFN, Texas Instrument SON 5 × 6 mm (Q5A), Alpha and Omega DFN 5 × 6, ST Microelectronics PowerFLAT™ 5 × 6, Toshiba SOP Advance, Infineon Super SO8, NXP LFPAK (SOT669), Renesas WPAK(3F) / LFPAK, Fairchild Power 56, APEC PMPAK 5 × 6, MagnaChip PowerDFN56, ROHM HSOP8, UBIQ PRPAK56, NIKO−SEM PDFN 5 × 6, NEC 8-pin HVSON. Datasheets: https://www.onsemi.com/pub/Collateral/AND9137-D.PDF, https://assets.nexperia.com/documents/leaflet/75016838.pdf -Thermally-enhanced SO-8 PowerPAK PQFN Q5A PowerFLAT LFPAK SOT669 WPAK(3F) LFPAK Power56 PMPAK PowerDFN56 HSOP8 PRPAK56 PDFN HVSON -0 -21 -5 -Package_DFN_QFN -Panasonic_HQFN-16-1EP_4x4mm_P0.65mm_EP2.9x2.9mm -Panasonic HQFN-16, 4x4x0.85mm (https://industrial.panasonic.com/content/data/SC/ds/ds7/c0/PKG_HQFN016-A-0404XZL_EN.pdf) -panasonic hqfn -0 -37 -17 -Package_DFN_QFN -Panasonic_HSON-8_8x8mm_P2.00mm -Panasonic HSON-8, 8x8x1.25mm (https://industrial.panasonic.com/content/data/SC/ds/ds7/c0/PKG_HSON008-A-0808XXI_EN.pdf) -panasonic hson -0 -27 -9 -Package_DFN_QFN -QFN-12-1EP_3x3mm_P0.5mm_EP1.6x1.6mm -QFN, 12 Pin (https://www.nxp.com/docs/en/data-sheet/MMZ09332B.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -17 -13 -Package_DFN_QFN -QFN-12-1EP_3x3mm_P0.5mm_EP1.6x1.6mm_ThermalVias -QFN, 12 Pin (https://www.nxp.com/docs/en/data-sheet/MMZ09332B.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -32 -13 -Package_DFN_QFN -QFN-12-1EP_3x3mm_P0.5mm_EP1.65x1.65mm -QFN, 12 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_12_%2005-08-1855.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -17 -13 -Package_DFN_QFN -QFN-12-1EP_3x3mm_P0.5mm_EP1.65x1.65mm_ThermalVias -QFN, 12 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_12_%2005-08-1855.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -22 -13 -Package_DFN_QFN -QFN-12-1EP_3x3mm_P0.51mm_EP1.45x1.45mm -QFN, 12 Pin (https://ww2.minicircuits.com/case_style/DQ1225.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -17 -13 -Package_DFN_QFN -QFN-16-1EP_3x3mm_P0.5mm_EP1.7x1.7mm -QFN, 16 Pin (https://www.st.com/resource/en/datasheet/tsv521.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -21 -17 -Package_DFN_QFN -QFN-16-1EP_3x3mm_P0.5mm_EP1.7x1.7mm_ThermalVias -QFN, 16 Pin (http://www.cypress.com/file/46236/download), generated with kicad-footprint-generator ipc_dfn_qfn_generator.py -QFN DFN_QFN -0 -31 -17 -Package_DFN_QFN -QFN-16-1EP_3x3mm_P0.5mm_EP1.9x1.9mm -QFN, 16 Pin (https://www.nxp.com/docs/en/package-information/98ASA00525D.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -21 -17 -Package_DFN_QFN -QFN-16-1EP_3x3mm_P0.5mm_EP1.9x1.9mm_ThermalVias -QFN, 16 Pin (https://www.nxp.com/docs/en/package-information/98ASA00525D.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -26 -17 -Package_DFN_QFN -QFN-16-1EP_3x3mm_P0.5mm_EP1.45x1.45mm -QFN, 16 Pin (http://cds.linear.com/docs/en/datasheet/37551fd.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -21 -17 -Package_DFN_QFN -QFN-16-1EP_3x3mm_P0.5mm_EP1.45x1.45mm_ThermalVias -QFN, 16 Pin (http://cds.linear.com/docs/en/datasheet/37551fd.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -26 -17 -Package_DFN_QFN -QFN-16-1EP_3x3mm_P0.5mm_EP1.75x1.75mm -QFN, 16 Pin (https://www.onsemi.com/pub/Collateral/NCN4555-D.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -21 -17 -Package_DFN_QFN -QFN-16-1EP_3x3mm_P0.5mm_EP1.75x1.75mm_ThermalVias -QFN, 16 Pin (https://www.onsemi.com/pub/Collateral/NCN4555-D.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -26 -17 -Package_DFN_QFN -QFN-16-1EP_4x4mm_P0.5mm_EP2.45x2.45mm -QFN, 16 Pin (https://www.renesas.com/eu/en/www/doc/datasheet/isl8117.pdf#page=22), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -21 -17 -Package_DFN_QFN -QFN-16-1EP_4x4mm_P0.5mm_EP2.45x2.45mm_ThermalVias -QFN, 16 Pin (https://www.renesas.com/eu/en/www/doc/datasheet/isl8117.pdf#page=22), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -31 -17 -Package_DFN_QFN -QFN-16-1EP_4x4mm_P0.65mm_EP2.1x2.1mm -QFN, 16 Pin (http://www.thatcorp.com/datashts/THAT_1580_Datasheet.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -21 -17 -Package_DFN_QFN -QFN-16-1EP_4x4mm_P0.65mm_EP2.1x2.1mm_ThermalVias -QFN, 16 Pin (http://www.thatcorp.com/datashts/THAT_1580_Datasheet.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -31 -17 -Package_DFN_QFN -QFN-16-1EP_4x4mm_P0.65mm_EP2.5x2.5mm -QFN, 16 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=266), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -21 -17 -Package_DFN_QFN -QFN-16-1EP_4x4mm_P0.65mm_EP2.5x2.5mm_ThermalVias -QFN, 16 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=266), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -31 -17 -Package_DFN_QFN -QFN-16-1EP_4x4mm_P0.65mm_EP2.7x2.7mm -QFN, 16 Pin (https://www.allegromicro.com/~/media/Files/Datasheets/A4403-Datasheet.ashx), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -21 -17 -Package_DFN_QFN -QFN-16-1EP_4x4mm_P0.65mm_EP2.7x2.7mm_PullBack -QFN, 16 Pin (https://ams.com/documents/20143/36005/AS5055A_DS000304_2-00.pdf#page=24), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -21 -17 -Package_DFN_QFN -QFN-16-1EP_4x4mm_P0.65mm_EP2.7x2.7mm_PullBack_ThermalVias -QFN, 16 Pin (https://ams.com/documents/20143/36005/AS5055A_DS000304_2-00.pdf#page=24), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -31 -17 -Package_DFN_QFN -QFN-16-1EP_4x4mm_P0.65mm_EP2.7x2.7mm_ThermalVias -QFN, 16 Pin (https://www.allegromicro.com/~/media/Files/Datasheets/A4403-Datasheet.ashx), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -31 -17 -Package_DFN_QFN -QFN-16-1EP_4x4mm_P0.65mm_EP2.15x2.15mm -QFN, 16 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/4001f.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -21 -17 -Package_DFN_QFN -QFN-16-1EP_4x4mm_P0.65mm_EP2.15x2.15mm_ThermalVias -QFN, 16 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/4001f.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -31 -17 -Package_DFN_QFN -QFN-16-1EP_5x5mm_P0.8mm_EP2.7x2.7mm -QFN, 16 Pin (http://www.intersil.com/content/dam/Intersil/documents/l16_/l16.5x5.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -21 -17 -Package_DFN_QFN -QFN-16-1EP_5x5mm_P0.8mm_EP2.7x2.7mm_ThermalVias -QFN, 16 Pin (http://www.intersil.com/content/dam/Intersil/documents/l16_/l16.5x5.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -31 -17 -Package_DFN_QFN -QFN-20-1EP_3.5x3.5mm_P0.5mm_EP2x2mm -QFN, 20 Pin (http://www.ti.com/lit/ml/mpqf239/mpqf239.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -25 -21 -Package_DFN_QFN -QFN-20-1EP_3.5x3.5mm_P0.5mm_EP2x2mm_ThermalVias -QFN, 20 Pin (http://www.ti.com/lit/ml/mpqf239/mpqf239.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -30 -21 -Package_DFN_QFN -QFN-20-1EP_3x3mm_P0.4mm_EP1.65x1.65mm -QFN, 20 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/3553fc.pdf#page=34), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -25 -21 -Package_DFN_QFN -QFN-20-1EP_3x3mm_P0.4mm_EP1.65x1.65mm_ThermalVias -QFN, 20 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/3553fc.pdf#page=34), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -30 -21 -Package_DFN_QFN -QFN-20-1EP_3x3mm_P0.45mm_EP1.6x1.6mm -QFN, 20 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/atmel-8235-8-bit-avr-microcontroller-attiny20_datasheet.pdf#page=212), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -25 -21 -Package_DFN_QFN -QFN-20-1EP_3x3mm_P0.45mm_EP1.6x1.6mm_ThermalVias -QFN, 20 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/atmel-8235-8-bit-avr-microcontroller-attiny20_datasheet.pdf#page=212), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -30 -21 -Package_DFN_QFN -QFN-20-1EP_3x4mm_P0.5mm_EP1.65x2.65mm -QFN, 20 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_20_05-08-1742.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -25 -21 -Package_DFN_QFN -QFN-20-1EP_3x4mm_P0.5mm_EP1.65x2.65mm_ThermalVias -QFN, 20 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_20_05-08-1742.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -32 -21 -Package_DFN_QFN -QFN-20-1EP_4x4mm_P0.5mm_EP2.5x2.5mm -QFN, 20 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=274), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -25 -21 -Package_DFN_QFN -QFN-20-1EP_4x4mm_P0.5mm_EP2.5x2.5mm_ThermalVias -QFN, 20 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=274), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -30 -21 -Package_DFN_QFN -QFN-20-1EP_4x4mm_P0.5mm_EP2.6x2.6mm -QFN, 20 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/doc2535.pdf#page=164), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -25 -21 -Package_DFN_QFN -QFN-20-1EP_4x4mm_P0.5mm_EP2.6x2.6mm_ThermalVias -QFN, 20 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/doc2535.pdf#page=164), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -30 -21 -Package_DFN_QFN -QFN-20-1EP_4x4mm_P0.5mm_EP2.7x2.7mm -QFN, 20 Pin (https://www.silabs.com/documents/public/data-sheets/Si5351-B.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -25 -21 -Package_DFN_QFN -QFN-20-1EP_4x4mm_P0.5mm_EP2.7x2.7mm_ThermalVias -QFN, 20 Pin (https://www.silabs.com/documents/public/data-sheets/Si5351-B.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -30 -21 -Package_DFN_QFN -QFN-20-1EP_4x5mm_P0.5mm_EP2.65x3.65mm -QFN, 20 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_20_05-08-1711.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -27 -21 -Package_DFN_QFN -QFN-20-1EP_4x5mm_P0.5mm_EP2.65x3.65mm_ThermalVias -QFN, 20 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_20_05-08-1711.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -40 -21 -Package_DFN_QFN -QFN-20-1EP_5x5mm_P0.65mm_EP3.35x3.35mm -QFN, 20 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=276), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -25 -21 -Package_DFN_QFN -QFN-20-1EP_5x5mm_P0.65mm_EP3.35x3.35mm_ThermalVias -QFN, 20 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=276), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -35 -21 -Package_DFN_QFN -QFN-24-1EP_3x3mm_P0.4mm_EP1.75x1.6mm -QFN, 24 Pin (https://www.invensense.com/wp-content/uploads/2015/02/PS-MPU-9250A-01-v1.1.pdf#page=39), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -29 -25 -Package_DFN_QFN -QFN-24-1EP_3x3mm_P0.4mm_EP1.75x1.6mm_ThermalVias -QFN, 24 Pin (https://www.invensense.com/wp-content/uploads/2015/02/PS-MPU-9250A-01-v1.1.pdf#page=39), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -34 -25 -Package_DFN_QFN -QFN-24-1EP_3x4mm_P0.4mm_EP1.65x2.65mm -QFN, 24 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_20_05-08-1742.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -31 -25 -Package_DFN_QFN -QFN-24-1EP_3x4mm_P0.4mm_EP1.65x2.65mm_ThermalVias -QFN, 24 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_20_05-08-1742.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -38 -25 -Package_DFN_QFN -QFN-24-1EP_4x4mm_P0.5mm_EP2.6x2.6mm -QFN, 24 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=278), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -29 -25 -Package_DFN_QFN -QFN-24-1EP_4x4mm_P0.5mm_EP2.6x2.6mm_ThermalVias -QFN, 24 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=278), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -39 -25 -Package_DFN_QFN -QFN-24-1EP_4x4mm_P0.5mm_EP2.7x2.6mm -QFN, 24 Pin (https://store.invensense.com/datasheets/invensense/MPU-6050_DataSheet_V3%204.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -29 -25 -Package_DFN_QFN -QFN-24-1EP_4x4mm_P0.5mm_EP2.7x2.6mm_ThermalVias -QFN, 24 Pin (https://store.invensense.com/datasheets/invensense/MPU-6050_DataSheet_V3%204.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -39 -25 -Package_DFN_QFN -QFN-24-1EP_4x4mm_P0.5mm_EP2.7x2.7mm -QFN, 24 Pin (http://www.alfarzpp.lv/eng/sc/AS3330.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -29 -25 -Package_DFN_QFN -QFN-24-1EP_4x4mm_P0.5mm_EP2.7x2.7mm_ThermalVias -QFN, 24 Pin (http://www.alfarzpp.lv/eng/sc/AS3330.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -39 -25 -Package_DFN_QFN -QFN-24-1EP_4x4mm_P0.5mm_EP2.8x2.8mm -QFN, 24 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/hmc431.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -29 -25 -Package_DFN_QFN -QFN-24-1EP_4x4mm_P0.5mm_EP2.8x2.8mm_ThermalVias -QFN, 24 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/hmc431.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -39 -25 -Package_DFN_QFN -QFN-24-1EP_4x4mm_P0.5mm_EP2.15x2.15mm -QFN, 24 Pin (https://www.st.com/resource/en/datasheet/led1642gw.pdf#page=34), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -29 -25 -Package_DFN_QFN -QFN-24-1EP_4x4mm_P0.5mm_EP2.15x2.15mm_ThermalVias -QFN, 24 Pin (https://www.st.com/resource/en/datasheet/led1642gw.pdf#page=34), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -39 -25 -Package_DFN_QFN -QFN-24-1EP_4x4mm_P0.5mm_EP2.65x2.65mm -QFN, 24 Pin (http://www.cypress.com/file/46236/download), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -29 -25 -Package_DFN_QFN -QFN-24-1EP_4x4mm_P0.5mm_EP2.65x2.65mm_ThermalVias -QFN, 24 Pin (http://www.cypress.com/file/46236/download), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -39 -25 -Package_DFN_QFN -QFN-24-1EP_4x5mm_P0.5mm_EP2.65x3.65mm -QFN, 24 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_24_05-08-1696.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -31 -25 -Package_DFN_QFN -QFN-24-1EP_4x5mm_P0.5mm_EP2.65x3.65mm_ThermalVias -QFN, 24 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_24_05-08-1696.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -44 -25 -Package_DFN_QFN -QFN-24-1EP_5x5mm_P0.65mm_EP3.2x3.2mm -QFN, 24 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/(UH24)%20QFN%2005-08-1747%20Rev%20A.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -29 -25 -Package_DFN_QFN -QFN-24-1EP_5x5mm_P0.65mm_EP3.2x3.2mm_ThermalVias -QFN, 24 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/(UH24)%20QFN%2005-08-1747%20Rev%20A.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -51 -25 -Package_DFN_QFN -QFN-24-1EP_5x5mm_P0.65mm_EP3.4x3.4mm -QFN, 24 Pin (http://www.thatcorp.com/datashts/THAT_5173_Datasheet.pdf#page=17), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -29 -25 -Package_DFN_QFN -QFN-24-1EP_5x5mm_P0.65mm_EP3.4x3.4mm_ThermalVias -QFN, 24 Pin (http://www.thatcorp.com/datashts/THAT_5173_Datasheet.pdf#page=17), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -39 -25 -Package_DFN_QFN -QFN-24-1EP_5x5mm_P0.65mm_EP3.6x3.6mm -QFN, 24 Pin (https://www.nxp.com/docs/en/package-information/98ASA00734D.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -34 -25 -Package_DFN_QFN -QFN-24-1EP_5x5mm_P0.65mm_EP3.6x3.6mm_ThermalVias -QFN, 24 Pin (https://www.nxp.com/docs/en/package-information/98ASA00734D.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -67 -25 -Package_DFN_QFN -QFN-28-1EP_3x6mm_P0.5mm_EP1.7x4.75mm -QFN, 28 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/05081926_0_UDE28.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -37 -29 -Package_DFN_QFN -QFN-28-1EP_3x6mm_P0.5mm_EP1.7x4.75mm_ThermalVias -QFN, 28 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/05081926_0_UDE28.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -53 -29 -Package_DFN_QFN -QFN-28-1EP_4x4mm_P0.4mm_EP2.3x2.3mm -QFN, 28 Pin (http://www.issi.com/WW/pdf/31FL3731.pdf#page=21), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -33 -29 -Package_DFN_QFN -QFN-28-1EP_4x4mm_P0.4mm_EP2.3x2.3mm_ThermalVias -QFN, 28 Pin (http://www.issi.com/WW/pdf/31FL3731.pdf#page=21), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -43 -29 -Package_DFN_QFN -QFN-28-1EP_4x4mm_P0.4mm_EP2.4x2.4mm -QFN, 28 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=280), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -33 -29 -Package_DFN_QFN -QFN-28-1EP_4x4mm_P0.4mm_EP2.4x2.4mm_ThermalVias -QFN, 28 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=280), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -43 -29 -Package_DFN_QFN -QFN-28-1EP_4x4mm_P0.4mm_EP2.6x2.6mm -QFN, 28 Pin (package code T2844-1; https://pdfserv.maximintegrated.com/package_dwgs/21-0139.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -33 -29 -Package_DFN_QFN -QFN-28-1EP_4x4mm_P0.4mm_EP2.6x2.6mm_ThermalVias -QFN, 28 Pin (package code T2844-1; https://pdfserv.maximintegrated.com/package_dwgs/21-0139.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -43 -29 -Package_DFN_QFN -QFN-28-1EP_4x4mm_P0.45mm_EP2.4x2.4mm -QFN, 28 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/8008S.pdf#page=16), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -33 -29 -Package_DFN_QFN -QFN-28-1EP_4x4mm_P0.45mm_EP2.4x2.4mm_ThermalVias -QFN, 28 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/8008S.pdf#page=16), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -43 -29 -Package_DFN_QFN -QFN-28-1EP_4x5mm_P0.5mm_EP2.65x3.65mm -QFN, 28 Pin (http://www.analog.com/media/en/technical-documentation/data-sheets/3555fe.pdf#page=32), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -35 -29 -Package_DFN_QFN -QFN-28-1EP_4x5mm_P0.5mm_EP2.65x3.65mm_ThermalVias -QFN, 28 Pin (http://www.analog.com/media/en/technical-documentation/data-sheets/3555fe.pdf#page=32), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -48 -29 -Package_DFN_QFN -QFN-28-1EP_5x5mm_P0.5mm_EP3.35x3.35mm -QFN, 28 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=283), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -38 -29 -Package_DFN_QFN -QFN-28-1EP_5x5mm_P0.5mm_EP3.35x3.35mm_ThermalVias -QFN, 28 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=283), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -55 -29 -Package_DFN_QFN -QFN-28-1EP_5x5mm_P0.5mm_EP3.75x3.75mm -QFN, 28 Pin (https://www.cmlmicro.com/wp-content/uploads/2017/10/CMX901_ds.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -38 -29 -Package_DFN_QFN -QFN-28-1EP_5x5mm_P0.5mm_EP3.75x3.75mm_ThermalVias -QFN, 28 Pin (https://www.cmlmicro.com/wp-content/uploads/2017/10/CMX901_ds.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -91 -29 -Package_DFN_QFN -QFN-28-1EP_5x6mm_P0.5mm_EP3.65x4.65mm -QFN, 28 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/05081932_0_UHE28.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -41 -29 -Package_DFN_QFN -QFN-28-1EP_5x6mm_P0.5mm_EP3.65x4.65mm_ThermalVias -QFN, 28 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/05081932_0_UHE28.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -62 -29 -Package_DFN_QFN -QFN-28-1EP_6x6mm_P0.65mm_EP4.8x4.8mm -QFN, 28 Pin (https://www.semtech.com/uploads/documents/sx1272.pdf#page=125), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -38 -29 -Package_DFN_QFN -QFN-28-1EP_6x6mm_P0.65mm_EP4.8x4.8mm_ThermalVias -QFN, 28 Pin (https://www.semtech.com/uploads/documents/sx1272.pdf#page=125), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -71 -29 -Package_DFN_QFN -QFN-28-1EP_6x6mm_P0.65mm_EP4.25x4.25mm -QFN, 28 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=289), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -38 -29 -Package_DFN_QFN -QFN-28-1EP_6x6mm_P0.65mm_EP4.25x4.25mm_ThermalVias -QFN, 28 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=289), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -71 -29 -Package_DFN_QFN -QFN-28_4x4mm_P0.5mm -QFN, 28 Pin (http://www.st.com/resource/en/datasheet/stm32f031k6.pdf#page=90), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -28 -28 -Package_DFN_QFN -QFN-32-1EP_4x4mm_P0.4mm_EP2.9x2.9mm -QFN, 32 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/atmel-8153-8-and-16-bit-avr-microcontroller-xmega-e-atxmega8e5-atxmega16e5-atxmega32e5_datasheet.pdf#page=70), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -37 -33 -Package_DFN_QFN -QFN-32-1EP_4x4mm_P0.4mm_EP2.9x2.9mm_ThermalVias -QFN, 32 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/atmel-8153-8-and-16-bit-avr-microcontroller-xmega-e-atxmega8e5-atxmega16e5-atxmega32e5_datasheet.pdf#page=70), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -47 -33 -Package_DFN_QFN -QFN-32-1EP_4x4mm_P0.4mm_EP2.65x2.65mm -QFN, 32 Pin (https://www.renesas.com/eu/en/package-image/pdf/outdrawing/l32.4x4a.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -37 -33 -Package_DFN_QFN -QFN-32-1EP_4x4mm_P0.4mm_EP2.65x2.65mm_ThermalVias -QFN, 32 Pin (https://www.renesas.com/eu/en/package-image/pdf/outdrawing/l32.4x4a.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -59 -33 -Package_DFN_QFN -QFN-32-1EP_5x5mm_P0.5mm_EP3.1x3.1mm -QFN, 32 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/8008S.pdf#page=20), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -42 -33 -Package_DFN_QFN -QFN-32-1EP_5x5mm_P0.5mm_EP3.1x3.1mm_ThermalVias -QFN, 32 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/8008S.pdf#page=20), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -59 -33 -Package_DFN_QFN -QFN-32-1EP_5x5mm_P0.5mm_EP3.3x3.3mm -QFN, 32 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/00002164B.pdf#page=68), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -42 -33 -Package_DFN_QFN -QFN-32-1EP_5x5mm_P0.5mm_EP3.3x3.3mm_ThermalVias -QFN, 32 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/00002164B.pdf#page=68), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -59 -33 -Package_DFN_QFN -QFN-32-1EP_5x5mm_P0.5mm_EP3.6x3.6mm -QFN, 32 Pin (http://infocenter.nordicsemi.com/pdf/nRF52810_PS_v1.1.pdf#page=468), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -42 -33 -Package_DFN_QFN -QFN-32-1EP_5x5mm_P0.5mm_EP3.6x3.6mm_ThermalVias -QFN, 32 Pin (http://infocenter.nordicsemi.com/pdf/nRF52810_PS_v1.1.pdf#page=468), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -59 -33 -Package_DFN_QFN -QFN-32-1EP_5x5mm_P0.5mm_EP3.7x3.7mm -QFN, 32 Pin (https://www.espressif.com/sites/default/files/documentation/0a-esp8285_datasheet_en.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -37 -33 -Package_DFN_QFN -QFN-32-1EP_5x5mm_P0.5mm_EP3.7x3.7mm_ThermalVias -QFN, 32 Pin (https://www.espressif.com/sites/default/files/documentation/0a-esp8285_datasheet_en.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -59 -33 -Package_DFN_QFN -QFN-32-1EP_5x5mm_P0.5mm_EP3.45x3.45mm -QFN, 32 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_32_05-08-1693.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -42 -33 -Package_DFN_QFN -QFN-32-1EP_5x5mm_P0.5mm_EP3.45x3.45mm_ThermalVias -QFN, 32 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_32_05-08-1693.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -59 -33 -Package_DFN_QFN -QFN-32-1EP_5x5mm_P0.5mm_EP3.65x3.65mm -QFN, 32 Pin (https://www.exar.com/ds/mxl7704.pdf#page=35), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -42 -33 -Package_DFN_QFN -QFN-32-1EP_5x5mm_P0.5mm_EP3.65x3.65mm_ThermalVias -QFN, 32 Pin (https://www.exar.com/ds/mxl7704.pdf#page=35), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -59 -33 -Package_DFN_QFN -QFN-32-1EP_7x7mm_P0.65mm_EP4.7x4.7mm -QFN, 32 Pin (https://www.nxp.com/docs/en/data-sheet/LPC111X.pdf#page=108), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -49 -33 -Package_DFN_QFN -QFN-32-1EP_7x7mm_P0.65mm_EP4.7x4.7mm_ThermalVias -QFN, 32 Pin (https://www.nxp.com/docs/en/data-sheet/LPC111X.pdf#page=108), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -75 -33 -Package_DFN_QFN -QFN-32-1EP_7x7mm_P0.65mm_EP4.65x4.65mm -QFN, 32 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/Atmel-8209-8-bit%20AVR%20ATmega16M1-32M1-64M1_Datasheet.pdf#page=426), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -49 -33 -Package_DFN_QFN -QFN-32-1EP_7x7mm_P0.65mm_EP4.65x4.65mm_ThermalVias -QFN, 32 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/Atmel-8209-8-bit%20AVR%20ATmega16M1-32M1-64M1_Datasheet.pdf#page=426), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -75 -33 -Package_DFN_QFN -QFN-32-1EP_7x7mm_P0.65mm_EP5.4x5.4mm -QFN, 32 Pin (http://www.thatcorp.com/datashts/THAT_5171_Datasheet.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -49 -33 -Package_DFN_QFN -QFN-32-1EP_7x7mm_P0.65mm_EP5.4x5.4mm_ThermalVias -QFN, 32 Pin (http://www.thatcorp.com/datashts/THAT_5171_Datasheet.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -75 -33 -Package_DFN_QFN -QFN-36-1EP_5x6mm_P0.5mm_EP3.6x4.1mm -QFN, 36 Pin (https://www.trinamic.com/fileadmin/assets/Products/ICs_Documents/TMC2100_datasheet_Rev1.08.pdf#page=43), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -46 -37 -Package_DFN_QFN -QFN-36-1EP_5x6mm_P0.5mm_EP3.6x4.1mm_ThermalVias -QFN, 36 Pin (https://www.trinamic.com/fileadmin/assets/Products/ICs_Documents/TMC2100_datasheet_Rev1.08.pdf#page=43), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -56 -37 -Package_DFN_QFN -QFN-36-1EP_5x6mm_P0.5mm_EP3.6x4.6mm -QFN, 36 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/(UHE36)%20QFN%2005-08-1876%20Rev%20%C3%98.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -49 -37 -Package_DFN_QFN -QFN-36-1EP_5x6mm_P0.5mm_EP3.6x4.6mm_ThermalVias -QFN, 36 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/(UHE36)%20QFN%2005-08-1876%20Rev%20%C3%98.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -56 -37 -Package_DFN_QFN -QFN-36-1EP_6x6mm_P0.5mm_EP3.7x3.7mm -QFN, 36 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/36L_QFN_6x6_with_3_7x3_7_EP_Punch_Dimpled_4E_C04-0241A.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -46 -37 -Package_DFN_QFN -QFN-36-1EP_6x6mm_P0.5mm_EP3.7x3.7mm_ThermalVias -QFN, 36 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/36L_QFN_6x6_with_3_7x3_7_EP_Punch_Dimpled_4E_C04-0241A.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -63 -37 -Package_DFN_QFN -QFN-36-1EP_6x6mm_P0.5mm_EP4.1x4.1mm -QFN, 36 Pin (www.st.com/resource/en/datasheet/stm32f101t6.pdf#page=72), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -46 -37 -Package_DFN_QFN -QFN-36-1EP_6x6mm_P0.5mm_EP4.1x4.1mm_ThermalVias -QFN, 36 Pin (www.st.com/resource/en/datasheet/stm32f101t6.pdf#page=72), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -63 -37 -Package_DFN_QFN -QFN-38-1EP_4x6mm_P0.4mm_EP2.65x4.65mm -QFN, 38 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_38_05-08-1750.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -47 -39 -Package_DFN_QFN -QFN-38-1EP_4x6mm_P0.4mm_EP2.65x4.65mm_ThermalVias -QFN, 38 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_38_05-08-1750.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -56 -39 -Package_DFN_QFN -QFN-38-1EP_5x7mm_P0.5mm_EP3.15x5.15mm -QFN, 38 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_38_05-08-1701.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -54 -39 -Package_DFN_QFN -QFN-38-1EP_5x7mm_P0.5mm_EP3.15x5.15mm_ThermalVias -QFN, 38 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_38_05-08-1701.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -63 -39 -Package_DFN_QFN -QFN-40-1EP_5x5mm_P0.4mm_EP3.6x3.6mm -QFN, 40 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=297), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -50 -41 -Package_DFN_QFN -QFN-40-1EP_5x5mm_P0.4mm_EP3.6x3.6mm_ThermalVias -QFN, 40 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=297), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -67 -41 -Package_DFN_QFN -QFN-40-1EP_5x5mm_P0.4mm_EP3.8x3.8mm -QFN, 40 Pin (http://www.issi.com/WW/pdf/31FL3736.pdf#page=28), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -50 -41 -Package_DFN_QFN -QFN-40-1EP_5x5mm_P0.4mm_EP3.8x3.8mm_ThermalVias -QFN, 40 Pin (http://www.issi.com/WW/pdf/31FL3736.pdf#page=28), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -67 -41 -Package_DFN_QFN -QFN-40-1EP_6x6mm_P0.5mm_EP4.6x4.6mm -QFN, 40 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=295), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -57 -41 -Package_DFN_QFN -QFN-40-1EP_6x6mm_P0.5mm_EP4.6x4.6mm_ThermalVias -QFN, 40 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=295), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -83 -41 -Package_DFN_QFN -QFN-42-1EP_5x6mm_P0.4mm_EP3.7x4.7mm -QFN, 42 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/05081875_0_UHE42.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -55 -43 -Package_DFN_QFN -QFN-42-1EP_5x6mm_P0.4mm_EP3.7x4.7mm_ThermalVias -QFN, 42 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/05081875_0_UHE42.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -76 -43 -Package_DFN_QFN -QFN-44-1EP_7x7mm_P0.5mm_EP5.2x5.2mm -QFN, 44 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/2512S.pdf#page=17), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -61 -45 -Package_DFN_QFN -QFN-44-1EP_7x7mm_P0.5mm_EP5.2x5.2mm_ThermalVias -QFN, 44 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/2512S.pdf#page=17), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -87 -45 -Package_DFN_QFN -QFN-44-1EP_7x7mm_P0.5mm_EP5.15x5.15mm -QFN, 44 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_44_05-08-1763.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -61 -45 -Package_DFN_QFN -QFN-44-1EP_7x7mm_P0.5mm_EP5.15x5.15mm_ThermalVias -QFN, 44 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_44_05-08-1763.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -87 -45 -Package_DFN_QFN -QFN-44-1EP_8x8mm_P0.65mm_EP6.45x6.45mm -QFN, 44 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/39935c.pdf#page=152), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -70 -45 -Package_DFN_QFN -QFN-44-1EP_8x8mm_P0.65mm_EP6.45x6.45mm_ThermalVias -QFN, 44 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/39935c.pdf#page=152), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -107 -45 -Package_DFN_QFN -QFN-44-1EP_9x9mm_P0.65mm_EP7.5x7.5mm -44-Lead Plastic Quad Flat, No Lead Package - 9x9 mm Body [QFN]; see section 10.3 of https://www.parallax.com/sites/default/files/downloads/P8X32A-Propeller-Datasheet-v1.4.0_0.pdf -QFN 0.65 -0 -49 -45 -Package_DFN_QFN -QFN-44-1EP_9x9mm_P0.65mm_EP7.5x7.5mm_ThermalVias -44-Lead Plastic Quad Flat, No Lead Package - 9x9 mm Body [QFN] with thermal vias; see section 10.3 of https://www.parallax.com/sites/default/files/downloads/P8X32A-Propeller-Datasheet-v1.4.0_0.pdf -QFN 0.65 -0 -55 -45 -Package_DFN_QFN -QFN-48-1EP_5x5mm_P0.35mm_EP3.7x3.7mm -QFN, 48 Pin (https://www.espressif.com/sites/default/files/documentation/esp32_datasheet_en.pdf#page=38), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -58 -49 -Package_DFN_QFN -QFN-48-1EP_5x5mm_P0.35mm_EP3.7x3.7mm_ThermalVias -QFN, 48 Pin (https://www.espressif.com/sites/default/files/documentation/esp32_datasheet_en.pdf#page=38), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -75 -49 -Package_DFN_QFN -QFN-48-1EP_6x6mm_P0.4mm_EP4.2x4.2mm -QFN, 48 Pin (https://static.dev.sifive.com/SiFive-FE310-G000-datasheet-v1p5.pdf#page=20), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -58 -49 -Package_DFN_QFN -QFN-48-1EP_6x6mm_P0.4mm_EP4.2x4.2mm_ThermalVias -QFN, 48 Pin (https://static.dev.sifive.com/SiFive-FE310-G000-datasheet-v1p5.pdf#page=20), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -91 -49 -Package_DFN_QFN -QFN-48-1EP_6x6mm_P0.4mm_EP4.3x4.3mm -QFN, 48 Pin (https://www.espressif.com/sites/default/files/documentation/esp32_datasheet_en.pdf#page=38), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -58 -49 -Package_DFN_QFN -QFN-48-1EP_6x6mm_P0.4mm_EP4.3x4.3mm_ThermalVias -QFN, 48 Pin (https://www.espressif.com/sites/default/files/documentation/esp32_datasheet_en.pdf#page=38), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -75 -49 -Package_DFN_QFN -QFN-48-1EP_6x6mm_P0.4mm_EP4.6x4.6mm -QFN, 48 Pin (http://infocenter.nordicsemi.com/pdf/nRF51822_PS_v3.3.pdf#page=67), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -58 -49 -Package_DFN_QFN -QFN-48-1EP_6x6mm_P0.4mm_EP4.6x4.6mm_ThermalVias -QFN, 48 Pin (http://infocenter.nordicsemi.com/pdf/nRF51822_PS_v3.3.pdf#page=67), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -91 -49 -Package_DFN_QFN -QFN-48-1EP_6x6mm_P0.4mm_EP4.66x4.66mm -QFN, 48 Pin (https://www.onsemi.com/pub/Collateral/485BA.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -58 -49 -Package_DFN_QFN -QFN-48-1EP_6x6mm_P0.4mm_EP4.66x4.66mm_ThermalVias -QFN, 48 Pin (https://www.onsemi.com/pub/Collateral/485BA.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -91 -49 -Package_DFN_QFN -QFN-48-1EP_7x7mm_P0.5mm_EP5.3x5.3mm -QFN, 48 Pin (https://www.trinamic.com/fileadmin/assets/Products/ICs_Documents/TMC2041_datasheet.pdf#page=62), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -65 -49 -Package_DFN_QFN -QFN-48-1EP_7x7mm_P0.5mm_EP5.3x5.3mm_ThermalVias -QFN, 48 Pin (https://www.trinamic.com/fileadmin/assets/Products/ICs_Documents/TMC2041_datasheet.pdf#page=62), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -91 -49 -Package_DFN_QFN -QFN-48-1EP_7x7mm_P0.5mm_EP5.6x5.6mm -QFN, 48 Pin (http://www.st.com/resource/en/datasheet/stm32f042k6.pdf#page=94), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -65 -49 -Package_DFN_QFN -QFN-48-1EP_7x7mm_P0.5mm_EP5.6x5.6mm_ThermalVias -QFN, 48 Pin (http://www.st.com/resource/en/datasheet/stm32f042k6.pdf#page=94), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -91 -49 -Package_DFN_QFN -QFN-48-1EP_7x7mm_P0.5mm_EP5.15x5.15mm -QFN, 48 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_48_05-08-1704.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -65 -49 -Package_DFN_QFN -QFN-48-1EP_7x7mm_P0.5mm_EP5.15x5.15mm_ThermalVias -QFN, 48 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_48_05-08-1704.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -91 -49 -Package_DFN_QFN -QFN-48-1EP_7x7mm_P0.5mm_EP5.45x5.45mm -QFN, 48 Pin (http://www.thatcorp.com/datashts/THAT_626x_Datasheet.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -65 -49 -Package_DFN_QFN -QFN-48-1EP_7x7mm_P0.5mm_EP5.45x5.45mm_ThermalVias -QFN, 48 Pin (http://www.thatcorp.com/datashts/THAT_626x_Datasheet.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -91 -49 -Package_DFN_QFN -QFN-48-1EP_8x8mm_P0.5mm_EP6.2x6.2mm -QFN, 48 Pin (https://www.ftdichip.com/Support/Documents/DataSheets/ICs/DS_FT232H.pdf#page=49), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -74 -49 -Package_DFN_QFN -QFN-48-1EP_8x8mm_P0.5mm_EP6.2x6.2mm_ThermalVias -QFN, 48 Pin (https://www.ftdichip.com/Support/Documents/DataSheets/ICs/DS_FT232H.pdf#page=49), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -111 -49 -Package_DFN_QFN -QFN-52-1EP_7x8mm_P0.5mm_EP5.41x6.45mm -QFN, 52 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_52_05-08-1729.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -73 -53 -Package_DFN_QFN -QFN-52-1EP_7x8mm_P0.5mm_EP5.41x6.45mm_ThermalVias -QFN, 52 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-qfn/QFN_52_05-08-1729.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -104 -53 -Package_DFN_QFN -QFN-56-1EP_7x7mm_P0.4mm_EP3.2x3.2mm -QFN, 56 Pin (https://datasheets.raspberrypi.com/rp2040/rp2040-datasheet.pdf#page=634), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -61 -57 -Package_DFN_QFN -QFN-56-1EP_7x7mm_P0.4mm_EP3.2x3.2mm_ThermalVias -QFN, 56 Pin (https://datasheets.raspberrypi.com/rp2040/rp2040-datasheet.pdf#page=634), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -66 -57 -Package_DFN_QFN -QFN-56-1EP_7x7mm_P0.4mm_EP4x4mm -QFN, 56 Pin (https://www.espressif.com/sites/default/files/documentation/esp32-s2_datasheet_en.pdf#page=41), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -66 -57 -Package_DFN_QFN -QFN-56-1EP_7x7mm_P0.4mm_EP4x4mm_ThermalVias -QFN, 56 Pin (https://www.espressif.com/sites/default/files/documentation/esp32-s2_datasheet_en.pdf#page=41), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -71 -57 -Package_DFN_QFN -QFN-56-1EP_7x7mm_P0.4mm_EP5.6x5.6mm -QFN, 56 Pin (http://www.cypress.com/file/416486/download#page=40), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -73 -57 -Package_DFN_QFN -QFN-56-1EP_7x7mm_P0.4mm_EP5.6x5.6mm_ThermalVias -QFN, 56 Pin (http://www.cypress.com/file/416486/download#page=40), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -99 -57 -Package_DFN_QFN -QFN-56-1EP_8x8mm_P0.5mm_EP4.3x4.3mm -QFN, 56 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/00002142A.pdf#page=40), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -73 -57 -Package_DFN_QFN -QFN-56-1EP_8x8mm_P0.5mm_EP4.3x4.3mm_ThermalVias -QFN, 56 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/00002142A.pdf#page=40), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -99 -57 -Package_DFN_QFN -QFN-56-1EP_8x8mm_P0.5mm_EP4.5x5.2mm -QFN, 56 Pin (http://www.ti.com/lit/an/scea032/scea032.pdf#page=4), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -73 -57 -Package_DFN_QFN -QFN-56-1EP_8x8mm_P0.5mm_EP4.5x5.2mm_ThermalVias -QFN, 56 Pin (http://www.ti.com/lit/an/scea032/scea032.pdf#page=4), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -99 -57 -Package_DFN_QFN -QFN-56-1EP_8x8mm_P0.5mm_EP4.5x5.2mm_ThermalVias_TopTented -QFN, 56 Pin top tented version (manually modified). For information see: http://www.cypress.com/file/138911/download -QFN DFN_QFN -0 -115 -57 -Package_DFN_QFN -QFN-56-1EP_8x8mm_P0.5mm_EP5.6x5.6mm -QFN, 56 Pin (http://www.ti.com/lit/ds/symlink/tlc5957.pdf#page=23), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -73 -57 -Package_DFN_QFN -QFN-56-1EP_8x8mm_P0.5mm_EP5.6x5.6mm_ThermalVias -QFN, 56 Pin (http://www.ti.com/lit/ds/symlink/tlc5957.pdf#page=23), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -99 -57 -Package_DFN_QFN -QFN-56-1EP_8x8mm_P0.5mm_EP5.9x5.9mm -QFN, 56 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/00001734B.pdf#page=50), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -73 -57 -Package_DFN_QFN -QFN-56-1EP_8x8mm_P0.5mm_EP5.9x5.9mm_ThermalVias -QFN, 56 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/00001734B.pdf#page=50), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -99 -57 -Package_DFN_QFN -QFN-64-1EP_8x8mm_P0.4mm_EP6.5x6.5mm -QFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/64L_VQFN_8x8_with%206_5x6_5%20EP_JXX_C04-0437A.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -90 -65 -Package_DFN_QFN -QFN-64-1EP_8x8mm_P0.4mm_EP6.5x6.5mm_ThermalVias -QFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/64L_VQFN_8x8_with%206_5x6_5%20EP_JXX_C04-0437A.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -127 -65 -Package_DFN_QFN -QFN-64-1EP_9x9mm_P0.5mm_EP3.4x3.4mm -QFN, 64 Pin (www.intel.com/content/www/us/en/ethernet-controllers/i210-ethernet-controller-datasheet.html), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -74 -65 -Package_DFN_QFN -QFN-64-1EP_9x9mm_P0.5mm_EP3.4x3.4mm_ThermalVias -QFN, 64 Pin (www.intel.com/content/www/us/en/ethernet-controllers/i210-ethernet-controller-datasheet.html), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -79 -65 -Package_DFN_QFN -QFN-64-1EP_9x9mm_P0.5mm_EP3.8x3.8mm -QFN, 64 Pin (https://datasheet.lcsc.com/szlcsc/Realtek-Semicon-RTL8211EG-VB-CG_C69264.pdf#page=77), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -74 -65 -Package_DFN_QFN -QFN-64-1EP_9x9mm_P0.5mm_EP3.8x3.8mm_ThermalVias -QFN, 64 Pin (https://datasheet.lcsc.com/szlcsc/Realtek-Semicon-RTL8211EG-VB-CG_C69264.pdf#page=77), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -79 -65 -Package_DFN_QFN -QFN-64-1EP_9x9mm_P0.5mm_EP4.7x4.7mm -QFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/60001477A.pdf (page 1083)), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -74 -65 -Package_DFN_QFN -QFN-64-1EP_9x9mm_P0.5mm_EP4.7x4.7mm_ThermalVias -QFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/60001477A.pdf (page 1083)), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -91 -65 -Package_DFN_QFN -QFN-64-1EP_9x9mm_P0.5mm_EP4.35x4.35mm -QFN, 64 Pin (https://www.ftdichip.com/Support/Documents/DataSheets/ICs/DS_FT2232H.pdf#page=57), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -74 -65 -Package_DFN_QFN -QFN-64-1EP_9x9mm_P0.5mm_EP4.35x4.35mm_ThermalVias -QFN, 64 Pin (https://www.ftdichip.com/Support/Documents/DataSheets/ICs/DS_FT2232H.pdf#page=57), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -91 -65 -Package_DFN_QFN -QFN-64-1EP_9x9mm_P0.5mm_EP5.2x5.2mm -QFN, 64 Pin (https://www.silabs.com/documents/public/data-sheets/Si5345-44-42-D-DataSheet.pdf#page=51), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -81 -65 -Package_DFN_QFN -QFN-64-1EP_9x9mm_P0.5mm_EP5.2x5.2mm_ThermalVias -QFN, 64 Pin (https://www.silabs.com/documents/public/data-sheets/Si5345-44-42-D-DataSheet.pdf#page=51), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -107 -65 -Package_DFN_QFN -QFN-64-1EP_9x9mm_P0.5mm_EP5.4x5.4mm -QFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/70593d.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -81 -65 -Package_DFN_QFN -QFN-64-1EP_9x9mm_P0.5mm_EP5.4x5.4mm_ThermalVias -QFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/70593d.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -107 -65 -Package_DFN_QFN -QFN-64-1EP_9x9mm_P0.5mm_EP5.45x5.45mm -QFN, 64 Pin (https://www.infineon.com/dgdl/Infineon-MA12040-DS-v01_00-EN.pdf?fileId=5546d46264a8de7e0164b7467a3d617c#page=81), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -81 -65 -Package_DFN_QFN -QFN-64-1EP_9x9mm_P0.5mm_EP5.45x5.45mm_ThermalVias -QFN, 64 Pin (https://www.infineon.com/dgdl/Infineon-MA12040-DS-v01_00-EN.pdf?fileId=5546d46264a8de7e0164b7467a3d617c#page=81), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -107 -65 -Package_DFN_QFN -QFN-64-1EP_9x9mm_P0.5mm_EP6x6mm -QFN, 64 Pin (http://www.ti.com/lit/ds/symlink/tusb8041.pdf#page=42), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -81 -65 -Package_DFN_QFN -QFN-64-1EP_9x9mm_P0.5mm_EP6x6mm_ThermalVias -QFN, 64 Pin (http://www.ti.com/lit/ds/symlink/tusb8041.pdf#page=42), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -107 -65 -Package_DFN_QFN -QFN-64-1EP_9x9mm_P0.5mm_EP7.3x7.3mm -QFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/00002304A.pdf (page 43)), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -90 -65 -Package_DFN_QFN -QFN-64-1EP_9x9mm_P0.5mm_EP7.3x7.3mm_ThermalVias -QFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/00002304A.pdf (page 43)), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -127 -65 -Package_DFN_QFN -QFN-64-1EP_9x9mm_P0.5mm_EP7.5x7.5mm -QFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/doc7593.pdf (page 432)), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -101 -65 -Package_DFN_QFN -QFN-64-1EP_9x9mm_P0.5mm_EP7.5x7.5mm_ThermalVias -QFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/doc7593.pdf (page 432)), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -151 -65 -Package_DFN_QFN -QFN-64-1EP_9x9mm_P0.5mm_EP7.15x7.15mm -QFN, 64 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/229321fa.pdf#page=27), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -90 -65 -Package_DFN_QFN -QFN-64-1EP_9x9mm_P0.5mm_EP7.15x7.15mm_ThermalVias -QFN, 64 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/229321fa.pdf#page=27), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -127 -65 -Package_DFN_QFN -QFN-64-1EP_9x9mm_P0.5mm_EP7.25x7.25mm -64-Lead Plastic Quad Flat No-Lead Package, 9x9mm Body (see Atmel Appnote 8826) -QFN 0.5 -0 -90 -65 -Package_DFN_QFN -QFN-64-1EP_9x9mm_P0.5mm_EP7.35x7.35mm -64-Lead Plastic Quad Flat, No Lead Package (MR) - 9x9x0.9 mm Body [QFN]; (see Microchip Packaging Specification 00000049BS.pdf) -QFN 0.5 -0 -90 -65 -Package_DFN_QFN -QFN-64-1EP_9x9mm_P0.5mm_EP7.65x7.65mm -QFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/Atmel-2549-8-bit-AVR-Microcontroller-ATmega640-1280-1281-2560-2561_datasheet.pdf (page 415)), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -101 -65 -Package_DFN_QFN -QFN-64-1EP_9x9mm_P0.5mm_EP7.65x7.65mm_ThermalVias -QFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/Atmel-2549-8-bit-AVR-Microcontroller-ATmega640-1280-1281-2560-2561_datasheet.pdf (page 415)), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -151 -65 -Package_DFN_QFN -QFN-68-1EP_8x8mm_P0.4mm_EP5.2x5.2mm -QFN, 68 Pin (https://cdn.microsemi.com/documents/1bf6886f-5919-4508-a50b-b1dbf3fdf0f4/download/#page=98), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -85 -69 -Package_DFN_QFN -QFN-68-1EP_8x8mm_P0.4mm_EP5.2x5.2mm_ThermalVias -QFN, 68 Pin (https://cdn.microsemi.com/documents/1bf6886f-5919-4508-a50b-b1dbf3fdf0f4/download/#page=98), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -111 -69 -Package_DFN_QFN -QFN-68-1EP_8x8mm_P0.4mm_EP6.4x6.4mm -QFN, 68 Pin (https://www.st.com/resource/en/datasheet/stm32h725ze.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -85 -69 -Package_DFN_QFN -QFN-68-1EP_8x8mm_P0.4mm_EP6.4x6.4mm_ThermalVias -QFN, 68 Pin (https://www.st.com/resource/en/datasheet/stm32h725ze.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -111 -69 -Package_DFN_QFN -QFN-72-1EP_10x10mm_P0.5mm_EP6x6mm -QFN, 72 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/00001682C.pdf#page=70), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -82 -73 -Package_DFN_QFN -QFN-72-1EP_10x10mm_P0.5mm_EP6x6mm_ThermalVias -QFN, 72 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/00001682C.pdf#page=70), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -135 -73 -Package_DFN_QFN -QFN-76-1EP_9x9mm_P0.4mm_EP3.8x3.8mm -QFN, 76 Pin (https://www.marvell.com/documents/bqcwxsoiqfjkcjdjhkvc/#page=19), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -86 -77 -Package_DFN_QFN -QFN-76-1EP_9x9mm_P0.4mm_EP3.8x3.8mm_ThermalVias -QFN, 76 Pin (https://www.marvell.com/documents/bqcwxsoiqfjkcjdjhkvc/#page=19), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -103 -77 -Package_DFN_QFN -QFN-76-1EP_9x9mm_P0.4mm_EP5.81x6.31mm -QFN, 76 Pin (https://ftdichip.com/wp-content/uploads/2020/07/DS_FT600Q-FT601Q-IC-Datasheet.pdf#page=27), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -78 -77 -Package_DFN_QFN -QFN-76-1EP_9x9mm_P0.4mm_EP5.81x6.31mm_ThermalVias -QFN, 76 Pin (https://ftdichip.com/wp-content/uploads/2020/07/DS_FT600Q-FT601Q-IC-Datasheet.pdf#page=27), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -103 -77 -Package_DFN_QFN -Qorvo_DFN-8-1EP_2x2mm_P0.5mm -DFN 8 2x2mm, 0.5mm http://www.qorvo.com/products/d/da000896 -DFN 0.5 Qorvo 2x2mm -0 -9 -9 -Package_DFN_QFN -ROHM_DFN0604-3 -DFN package size 0604 3 pins -DFN package size 0604 3 pins -0 -3 -3 -Package_DFN_QFN -ST_UFQFPN-20_3x3mm_P0.5mm -UFQFPN 20-lead, 3 x 3 mm, 0.5 mm pitch, ultra thin fine pitch quad flat package (http://www.st.com/resource/en/datasheet/stm8s003f3.pdf) -UFQFPN 0.5 -0 -20 -20 -Package_DFN_QFN -ST_UQFN-6L_1.5x1.7mm_Pitch0.5mm -ST UQFN 6 pin 0.5mm Pitch http://www.st.com/resource/en/datasheet/ecmf02-2amx6.pdf -UQFN DFN 0.5 ST -0 -6 -6 -Package_DFN_QFN -SiliconLabs_QFN-20-1EP_3x3mm_P0.5mm_EP1.8x1.8mm -20-Lead Plastic Quad Flat, No Lead Package - 3x3 mm Body [QFN] with corner pads; see figure 8.2 of https://www.silabs.com/documents/public/data-sheets/efm8bb1-datasheet.pdf -QFN 0.5 -0 -25 -21 -Package_DFN_QFN -SiliconLabs_QFN-20-1EP_3x3mm_P0.5mm_EP1.8x1.8mm_ThermalVias -20-Lead Plastic Quad Flat, No Lead Package - 3x3 mm Body [QFN] with corner pads and thermal vias; see figure 8.2 of https://www.silabs.com/documents/public/data-sheets/efm8bb1-datasheet.pdf -QFN 0.5 -0 -31 -21 -Package_DFN_QFN -TDFN-6-1EP_2.5x2.5mm_P0.65mm_EP1.3x2mm -TDFN, 6 Pin (http://www.nve.com/Downloads/ab3.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -TDFN NoLead -0 -11 -7 -Package_DFN_QFN -TDFN-6-1EP_2.5x2.5mm_P0.65mm_EP1.3x2mm_ThermalVias -TDFN, 6 Pin (http://www.nve.com/Downloads/ab3.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -TDFN NoLead -0 -18 -7 -Package_DFN_QFN -TDFN-8-1EP_2x2mm_P0.5mm_EP0.8x1.2mm -TDFN, 8 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0168.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py -TDFN NoLead -0 -13 -9 -Package_DFN_QFN -TDFN-8-1EP_3x2mm_P0.5mm_EP1.3x1.4mm -TDFN, 8 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/MCP6V66-Family-Data-Sheet-DS20006266A.pdf#page=35), generated with kicad-footprint-generator ipc_noLead_generator.py -TDFN NoLead -0 -13 -9 -Package_DFN_QFN -TDFN-8-1EP_3x2mm_P0.5mm_EP1.4x1.4mm -TDFN, 8 Pin (http://ww1.microchip.com/downloads/en/devicedoc/20005514a.pdf#page=35), generated with kicad-footprint-generator ipc_noLead_generator.py -TDFN NoLead -0 -13 -9 -Package_DFN_QFN -TDFN-8-1EP_3x2mm_P0.5mm_EP1.80x1.65mm -8-lead plastic dual flat, 2x3x0.75mm size, 0.5mm pitch (http://ww1.microchip.com/downloads/en/DeviceDoc/8L_TDFN_2x3_MN_C04-0129E-MN.pdf) -TDFN DFN 0.5mm -0 -12 -9 -Package_DFN_QFN -TDFN-8-1EP_3x2mm_P0.5mm_EP1.80x1.65mm_ThermalVias -8-lead plastic dual flat, 2x3x0.75mm size, 0.5mm pitch (http://ww1.microchip.com/downloads/en/DeviceDoc/8L_TDFN_2x3_MN_C04-0129E-MN.pdf) -TDFN DFN 0.5mm -0 -17 -9 -Package_DFN_QFN -TDFN-8_1.4x1.6mm_P0.4mm -TDFN, 8 Pin (https://www.silabs.com/documents/public/data-sheets/si7210-datasheet.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -TDFN NoLead -0 -8 -8 -Package_DFN_QFN -TDFN-10-1EP_2x3mm_P0.5mm_EP0.9x2mm -TDFN, 10 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0429.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py -TDFN NoLead -0 -13 -11 -Package_DFN_QFN -TDFN-10-1EP_2x3mm_P0.5mm_EP0.9x2mm_ThermalVias -TDFN, 10 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0429.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py -TDFN NoLead -0 -16 -11 -Package_DFN_QFN -TDFN-12-1EP_3x3mm_P0.4mm_EP1.7x2.45mm -TDFN, 12 Pin (https://www.renesas.com/us/en/document/psc/package-drawing-tdfn-12pin-l123x3c), generated with kicad-footprint-generator ipc_noLead_generator.py -TDFN NoLead -0 -25 -13 -Package_DFN_QFN -TDFN-12-1EP_3x3mm_P0.4mm_EP1.7x2.45mm_ThermalVias -TDFN, 12 Pin (https://www.renesas.com/us/en/document/psc/package-drawing-tdfn-12pin-l123x3c), generated with kicad-footprint-generator ipc_noLead_generator.py -TDFN NoLead -0 -32 -13 -Package_DFN_QFN -TDFN-12_2x3mm_P0.5mm -TDFN, 12 Pads, No exposed, http://www.st.com/resource/en/datasheet/stm6600.pdf -DFN -0 -12 -12 -Package_DFN_QFN -TDFN-14-1EP_3x3mm_P0.4mm_EP1.78x2.35mm -TDFN, 14 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0137.PDF (T1433-2C)), generated with kicad-footprint-generator ipc_noLead_generator.py -TDFN NoLead -0 -19 -15 -Package_DFN_QFN -TDFN-14-1EP_3x3mm_P0.4mm_EP1.78x2.35mm_ThermalVias -TDFN, 14 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0137.PDF (T1433-2C)), generated with kicad-footprint-generator ipc_noLead_generator.py -TDFN NoLead -0 -26 -15 -Package_DFN_QFN -TQFN-16-1EP_3x3mm_P0.5mm_EP1.6x1.6mm -TQFN, 16 Pin (https://www.diodes.com/assets/Datasheets/PI6C5946002.pdf#page=12), generated with kicad-footprint-generator ipc_noLead_generator.py -TQFN NoLead -0 -21 -17 -Package_DFN_QFN -TQFN-16-1EP_3x3mm_P0.5mm_EP1.23x1.23mm -TQFN, 16 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0136.PDF (T1633-5), https://pdfserv.maximintegrated.com/land_patterns/90-0032.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py -TQFN NoLead -0 -21 -17 -Package_DFN_QFN -TQFN-16-1EP_3x3mm_P0.5mm_EP1.23x1.23mm_ThermalVias -TQFN, 16 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0136.PDF (T1633-5), https://pdfserv.maximintegrated.com/land_patterns/90-0032.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py -TQFN NoLead -0 -26 -17 -Package_DFN_QFN -TQFN-16-1EP_5x5mm_P0.8mm_EP2.29x2.29mm -TQFN, 16 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T1655-4)), generated with kicad-footprint-generator ipc_noLead_generator.py -TQFN NoLead -0 -21 -17 -Package_DFN_QFN -TQFN-16-1EP_5x5mm_P0.8mm_EP2.29x2.29mm_ThermalVias -TQFN, 16 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T1655-4)), generated with kicad-footprint-generator ipc_noLead_generator.py -TQFN NoLead -0 -26 -17 -Package_DFN_QFN -TQFN-16-1EP_5x5mm_P0.8mm_EP3.1x3.1mm -TQFN, 16 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T1655-2)), generated with kicad-footprint-generator ipc_noLead_generator.py -TQFN NoLead -0 -21 -17 -Package_DFN_QFN -TQFN-16-1EP_5x5mm_P0.8mm_EP3.1x3.1mm_ThermalVias -TQFN, 16 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T1655-2)), generated with kicad-footprint-generator ipc_noLead_generator.py -TQFN NoLead -0 -31 -17 -Package_DFN_QFN -TQFN-20-1EP_4x4mm_P0.5mm_EP2.7x2.7mm -TQFN, 20 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0139.PDF (T2044-5C)), generated with kicad-footprint-generator ipc_noLead_generator.py -TQFN NoLead -0 -25 -21 -Package_DFN_QFN -TQFN-20-1EP_4x4mm_P0.5mm_EP2.7x2.7mm_ThermalVias -TQFN, 20 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0139.PDF (T2044-5C)), generated with kicad-footprint-generator ipc_noLead_generator.py -TQFN NoLead -0 -35 -21 -Package_DFN_QFN -TQFN-20-1EP_4x4mm_P0.5mm_EP2.9x2.9mm -TQFN, 20 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-100172.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py -TQFN NoLead -0 -25 -21 -Package_DFN_QFN -TQFN-20-1EP_4x4mm_P0.5mm_EP2.9x2.9mm_ThermalVias -TQFN, 20 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-100172.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py -TQFN NoLead -0 -35 -21 -Package_DFN_QFN -TQFN-20-1EP_5x5mm_P0.65mm_EP3.1x3.1mm -TQFN, 20 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T2055-3)), generated with kicad-footprint-generator ipc_noLead_generator.py -TQFN NoLead -0 -25 -21 -Package_DFN_QFN -TQFN-20-1EP_5x5mm_P0.65mm_EP3.1x3.1mm_ThermalVias -TQFN, 20 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T2055-3)), generated with kicad-footprint-generator ipc_noLead_generator.py -TQFN NoLead -0 -35 -21 -Package_DFN_QFN -TQFN-20-1EP_5x5mm_P0.65mm_EP3.25x3.25mm -TQFN, 20 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T2055-5)), generated with kicad-footprint-generator ipc_noLead_generator.py -TQFN NoLead -0 -25 -21 -Package_DFN_QFN -TQFN-20-1EP_5x5mm_P0.65mm_EP3.25x3.25mm_ThermalVias -TQFN, 20 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T2055-5)), generated with kicad-footprint-generator ipc_noLead_generator.py -TQFN NoLead -0 -35 -21 -Package_DFN_QFN -TQFN-24-1EP_4x4mm_P0.5mm_EP2.1x2.1mm -TQFN, 24 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0139.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py -TQFN NoLead -0 -29 -25 -Package_DFN_QFN -TQFN-24-1EP_4x4mm_P0.5mm_EP2.1x2.1mm_ThermalVias -TQFN, 24 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0139.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py -TQFN NoLead -0 -39 -25 -Package_DFN_QFN -TQFN-24-1EP_4x4mm_P0.5mm_EP2.6x2.6mm -TQFN, 24 Pin (http://pdfserv.maxim-ic.com/package_dwgs/21-0139.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py -TQFN NoLead -0 -29 -25 -Package_DFN_QFN -TQFN-24-1EP_4x4mm_P0.5mm_EP2.6x2.6mm_ThermalVias -TQFN, 24 Pin (http://pdfserv.maxim-ic.com/package_dwgs/21-0139.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py -TQFN NoLead -0 -39 -25 -Package_DFN_QFN -TQFN-24-1EP_4x4mm_P0.5mm_EP2.8x2.8mm_PullBack -TQFN, 24 Pin (https://ams.com/documents/20143/36005/AS1115_DS000206_1-00.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -TQFN NoLead -0 -29 -25 -Package_DFN_QFN -TQFN-24-1EP_4x4mm_P0.5mm_EP2.8x2.8mm_PullBack_ThermalVias -TQFN, 24 Pin (https://ams.com/documents/20143/36005/AS1115_DS000206_1-00.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -TQFN NoLead -0 -39 -25 -Package_DFN_QFN -TQFN-28-1EP_5x5mm_P0.5mm_EP2.7x2.7mm -TQFN, 28 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T2855-4)), generated with kicad-footprint-generator ipc_noLead_generator.py -TQFN NoLead -0 -33 -29 -Package_DFN_QFN -TQFN-28-1EP_5x5mm_P0.5mm_EP2.7x2.7mm_ThermalVias -TQFN, 28 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T2855-4)), generated with kicad-footprint-generator ipc_noLead_generator.py -TQFN NoLead -0 -38 -29 -Package_DFN_QFN -TQFN-28-1EP_5x5mm_P0.5mm_EP3.25x3.25mm -TQFN, 28 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T2855-3)), generated with kicad-footprint-generator ipc_noLead_generator.py -TQFN NoLead -0 -33 -29 -Package_DFN_QFN -TQFN-28-1EP_5x5mm_P0.5mm_EP3.25x3.25mm_ThermalVias -TQFN, 28 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T2855-3)), generated with kicad-footprint-generator ipc_noLead_generator.py -TQFN NoLead -0 -43 -29 -Package_DFN_QFN -TQFN-32-1EP_5x5mm_P0.5mm_EP2.1x2.1mm -TQFN, 32 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T3255-6)), generated with kicad-footprint-generator ipc_noLead_generator.py -TQFN NoLead -0 -37 -33 -Package_DFN_QFN -TQFN-32-1EP_5x5mm_P0.5mm_EP2.1x2.1mm_ThermalVias -TQFN, 32 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T3255-6)), generated with kicad-footprint-generator ipc_noLead_generator.py -TQFN NoLead -0 -42 -33 -Package_DFN_QFN -TQFN-32-1EP_5x5mm_P0.5mm_EP3.1x3.1mm -TQFN, 32 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T3255-3)), generated with kicad-footprint-generator ipc_noLead_generator.py -TQFN NoLead -0 -37 -33 -Package_DFN_QFN -TQFN-32-1EP_5x5mm_P0.5mm_EP3.1x3.1mm_ThermalVias -TQFN, 32 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T3255-3)), generated with kicad-footprint-generator ipc_noLead_generator.py -TQFN NoLead -0 -47 -33 -Package_DFN_QFN -TQFN-32-1EP_5x5mm_P0.5mm_EP3.4x3.4mm -TQFN, 32 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T3255-9)), generated with kicad-footprint-generator ipc_noLead_generator.py -TQFN NoLead -0 -37 -33 -Package_DFN_QFN -TQFN-32-1EP_5x5mm_P0.5mm_EP3.4x3.4mm_ThermalVias -TQFN, 32 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T3255-9)), generated with kicad-footprint-generator ipc_noLead_generator.py -TQFN NoLead -0 -47 -33 -Package_DFN_QFN -TQFN-40-1EP_5x5mm_P0.4mm_EP3.5x3.5mm -TQFN, 40 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T4055-1)), generated with kicad-footprint-generator ipc_noLead_generator.py -TQFN NoLead -0 -45 -41 -Package_DFN_QFN -TQFN-40-1EP_5x5mm_P0.4mm_EP3.5x3.5mm_ThermalVias -TQFN, 40 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0140.PDF (T4055-1)), generated with kicad-footprint-generator ipc_noLead_generator.py -TQFN NoLead -0 -55 -41 -Package_DFN_QFN -TQFN-48-1EP_7x7mm_P0.5mm_EP5.1x5.1mm -TQFN, 48 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0144.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py -TQFN NoLead -0 -58 -49 -Package_DFN_QFN -TQFN-48-1EP_7x7mm_P0.5mm_EP5.1x5.1mm_ThermalVias -TQFN, 48 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0144.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py -TQFN NoLead -0 -75 -49 -Package_DFN_QFN -Texas_B3QFN-14-1EP_5x5.5mm_P0.65mm -Texas instruments QFN Package, datasheet: https://www.ti.com/lit/ds/symlink/tpsm53602.pdf -Texas instruments QFN -0 -15 -15 -Package_DFN_QFN -Texas_B3QFN-14-1EP_5x5.5mm_P0.65mm_ThermalVia -Texas instruments QFN Package, datasheet: https://www.ti.com/lit/ds/symlink/tpsm53602.pdf -Texas instruments QFN -0 -34 -15 -Package_DFN_QFN -Texas_DRB0008A -DFN-8, 3x3x1mm, http://www.ti.com/lit/ds/symlink/ucc24610.pdf -DRB0008A -0 -23 -9 -Package_DFN_QFN -Texas_MOF0009A -Texas Instruments, QFM MOF0009A, 6x8x2mm (http://www.ti.com/lit/ml/mpsi063a/mpsi063a.pdf) -ti qfm mof0009a -0 -24 -9 -Package_DFN_QFN -Texas_QFN-41_10x16mm -QFN, 41 Pin (http://www.ti.com/lit/ml/mpqf506/mpqf506.pdf) -QFN DFN_QFN -0 -65 -41 -Package_DFN_QFN -Texas_R-PUQFN-N10 -http://www.ti.com/general/docs/lit/getliterature.tsp?baseLiteratureNumber=MPQF186&fileType=pdf -Texas_R-PUQFN-N10 -0 -10 -10 -Package_DFN_QFN -Texas_R-PUQFN-N12 -Texas_R-PUQFN-N12 http://www.ti.com/lit/ds/symlink/txb0104.pdf -Texas_R-PUQFN-N12 -0 -13 -12 -Package_DFN_QFN -Texas_R-PWQFN-N28_EP2.1x3.1mm -QFN, 28 Pin (http://www.ti.com/lit/ds/symlink/tps51363.pdf#page=29), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -33 -29 -Package_DFN_QFN -Texas_R-PWQFN-N28_EP2.1x3.1mm_ThermalVias -QFN, 28 Pin (http://www.ti.com/lit/ds/symlink/tps51363.pdf#page=29), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -43 -29 -Package_DFN_QFN -Texas_RGE0024C_EP2.1x2.1mm -Texas QFN, 24 Pin (http://www.ti.com/lit/ds/symlink/pca9548a.pdf#page=37), generated with kicad-footprint-generator ipc_noLead_generator.py -Texas QFN NoLead -0 -29 -25 -Package_DFN_QFN -Texas_RGE0024C_EP2.1x2.1mm_ThermalVias -Texas QFN, 24 Pin (http://www.ti.com/lit/ds/symlink/pca9548a.pdf#page=37), generated with kicad-footprint-generator ipc_noLead_generator.py -Texas QFN NoLead -0 -39 -25 -Package_DFN_QFN -Texas_RGE0024H_EP2.7x2.7mm -Texas QFN, 24 Pin (http://www.ti.com/lit/ds/symlink/tlc5971.pdf#page=39), generated with kicad-footprint-generator ipc_noLead_generator.py -Texas QFN NoLead -0 -29 -25 -Package_DFN_QFN -Texas_RGE0024H_EP2.7x2.7mm_ThermalVias -Texas QFN, 24 Pin (http://www.ti.com/lit/ds/symlink/tlc5971.pdf#page=39), generated with kicad-footprint-generator ipc_noLead_generator.py -Texas QFN NoLead -0 -39 -25 -Package_DFN_QFN -Texas_RGV_S-PVQFN-N16_EP2.1x2.1mm -QFN, 16 Pin (http://www.ti.com/lit/ds/symlink/ina3221.pdf#page=44), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -21 -17 -Package_DFN_QFN -Texas_RGV_S-PVQFN-N16_EP2.1x2.1mm_ThermalVias -QFN, 16 Pin (http://www.ti.com/lit/ds/symlink/ina3221.pdf#page=44), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -31 -17 -Package_DFN_QFN -Texas_RGY_R-PVQFN-N16_EP2.05x2.55mm -QFN, 16 Pin (https://www.ti.com/lit/ds/symlink/ts5v330.pdf#page=28) -QFN NoLead -0 -21 -17 -Package_DFN_QFN -Texas_RGY_R-PVQFN-N16_EP2.05x2.55mm_ThermalVias -QFN, 16 Pin (https://www.ti.com/lit/ds/symlink/ts5v330.pdf#page=28) -QFN NoLead -0 -27 -18 -Package_DFN_QFN -Texas_RGY_R-PVQFN-N24_EP2.05x3.1mm -QFN, 24 Pin (http://www.ti.com/lit/ds/symlink/bq24133.pdf#page=40) -QFN NoLead -0 -29 -25 -Package_DFN_QFN -Texas_RGY_R-PVQFN-N24_EP2.05x3.1mm_ThermalVias -QFN, 24 Pin (http://www.ti.com/lit/ds/symlink/bq24133.pdf#page=40) -QFN NoLead -0 -36 -25 -Package_DFN_QFN -Texas_RNN0018A -Texas Instruments, VQFN-HR RNN0018A (http://www.ti.com/lit/ds/symlink/tps568215.pdf) -ti vqfn-hr rnn0018a -0 -26 -18 -Package_DFN_QFN -Texas_RUM0016A_EP2.6x2.6mm -QFN, 16 Pin (http://www.ti.com/lit/ds/symlink/lmh0074.pdf#page=13), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -21 -17 -Package_DFN_QFN -Texas_RUM0016A_EP2.6x2.6mm_ThermalVias -QFN, 16 Pin (http://www.ti.com/lit/ds/symlink/lmh0074.pdf#page=13), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -31 -17 -Package_DFN_QFN -Texas_RWH0032A -Texas Instruments, RWH0032A, 8x8x0.9mm (http://www.ti.com/lit/ds/snosd10c/snosd10c.pdf) -ti rwh0032a -0 -71 -33 -Package_DFN_QFN -Texas_RWH0032A_ThermalVias -Texas Instruments, RWH0032A, 8x8x0.9mm (http://www.ti.com/lit/ds/snosd10c/snosd10c.pdf) -ti rwh0032a -0 -94 -33 -Package_DFN_QFN -Texas_S-PDSO-N10_EP1.2x2mm -DFN, 10 Pin (http://www.ti.com/lit/ds/symlink/tps7a91.pdf#page=30), generated with kicad-footprint-generator ipc_noLead_generator.py -DFN NoLead -0 -15 -11 -Package_DFN_QFN -Texas_S-PDSO-N10_EP1.2x2mm_ThermalVias -DFN, 10 Pin (http://www.ti.com/lit/ds/symlink/tps7a91.pdf#page=30), generated with kicad-footprint-generator ipc_noLead_generator.py -DFN NoLead -0 -22 -11 -Package_DFN_QFN -Texas_S-PVQFN-N14 -Texas_S-PVQFN-N14 http://www.ti.com/lit/ds/symlink/txb0104.pdf -Texas_S-PVQFN-N14_4.3x4.3_Pitch0.5mm_ThermalPad -0 -19 -15 -Package_DFN_QFN -Texas_S-PVQFN-N14_ThermalVias -Texas_S-PVQFN-N14_ThermalVias http://www.ti.com/lit/ds/symlink/txb0104.pdf -Texas_S-PVQFN-N14_ThermalVias -0 -24 -15 -Package_DFN_QFN -Texas_S-PVQFN-N16_EP2.7x2.7mm -QFN, 16 Pin (http://www.ti.com/lit/ds/symlink/msp430g2001.pdf#page=43), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -26 -17 -Package_DFN_QFN -Texas_S-PVQFN-N16_EP2.7x2.7mm_ThermalVias -QFN, 16 Pin (http://www.ti.com/lit/ds/symlink/msp430g2001.pdf#page=43), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -31 -17 -Package_DFN_QFN -Texas_S-PVQFN-N20_EP2.4x2.4mm -QFN, 20 Pin (http://www.ti.com/lit/ds/symlink/cc1101.pdf#page=101), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -25 -21 -Package_DFN_QFN -Texas_S-PVQFN-N20_EP2.4x2.4mm_ThermalVias -QFN, 20 Pin (http://www.ti.com/lit/ds/symlink/cc1101.pdf#page=101), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -35 -21 -Package_DFN_QFN -Texas_S-PVQFN-N20_EP2.7x2.7mm -QFN, 20 Pin (http://www.ti.com/lit/ds/symlink/drv8662.pdf#page=23), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -25 -21 -Package_DFN_QFN -Texas_S-PVQFN-N20_EP2.7x2.7mm_ThermalVias -QFN, 20 Pin (http://www.ti.com/lit/ds/symlink/drv8662.pdf#page=23), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -35 -21 -Package_DFN_QFN -Texas_S-PVQFN-N20_EP3.15x3.15mm -QFN, 20 Pin (www.ti.com/lit/ds/symlink/tps7a7200.pdf#page=36), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -25 -21 -Package_DFN_QFN -Texas_S-PVQFN-N20_EP3.15x3.15mm_ThermalVias -QFN, 20 Pin (www.ti.com/lit/ds/symlink/tps7a7200.pdf#page=36), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -47 -21 -Package_DFN_QFN -Texas_S-PVQFN-N24_EP2.1x2.1mm -QFN, 24 Pin (http://www.ti.com/lit/ds/symlink/msp430fr5720.pdf#page=108), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -29 -25 -Package_DFN_QFN -Texas_S-PVQFN-N24_EP2.1x2.1mm_ThermalVias -QFN, 24 Pin (http://www.ti.com/lit/ds/symlink/msp430fr5720.pdf#page=108), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -39 -25 -Package_DFN_QFN -Texas_S-PVQFN-N32_EP3.45x3.45mm -QFN, 32 Pin (http://www.ti.com/lit/ds/symlink/msp430f1122.pdf#page=54), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -42 -33 -Package_DFN_QFN -Texas_S-PVQFN-N32_EP3.45x3.45mm_ThermalVias -QFN, 32 Pin (http://www.ti.com/lit/ds/symlink/msp430f1122.pdf#page=54), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -59 -33 -Package_DFN_QFN -Texas_S-PVQFN-N36_EP4.4x4.4mm -QFN, 36 Pin (http://www.ti.com/lit/ds/slvsba5d/slvsba5d.pdf#page=35), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -46 -37 -Package_DFN_QFN -Texas_S-PVQFN-N36_EP4.4x4.4mm_ThermalVias -QFN, 36 Pin (http://www.ti.com/lit/ds/slvsba5d/slvsba5d.pdf#page=35), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -79 -37 -Package_DFN_QFN -Texas_S-PVQFN-N40_EP2.9x2.9mm -QFN, 40 Pin (http://www.ti.com/lit/ds/symlink/msp430fr5731.pdf#page=111 JEDEC MO-220 variation VJJD-2), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -45 -41 -Package_DFN_QFN -Texas_S-PVQFN-N40_EP2.9x2.9mm_ThermalVias -QFN, 40 Pin (http://www.ti.com/lit/ds/symlink/msp430fr5731.pdf#page=111 JEDEC MO-220 variation VJJD-2), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -55 -41 -Package_DFN_QFN -Texas_S-PVQFN-N40_EP3.52x2.62mm -QFN, 40 Pin (http://www.ti.com/lit/ds/symlink/drv8308.pdf#page=56 JEDEC MO-220 variation VJJD-2), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -47 -41 -Package_DFN_QFN -Texas_S-PVQFN-N40_EP3.52x2.62mm_ThermalVias -QFN, 40 Pin (http://www.ti.com/lit/ds/symlink/drv8308.pdf#page=56 JEDEC MO-220 variation VJJD-2), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -60 -41 -Package_DFN_QFN -Texas_S-PVQFN-N40_EP4.6x4.6mm -QFN, 40 Pin (http://www.ti.com/lit/ds/symlink/dac7750.pdf#page=54), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -50 -41 -Package_DFN_QFN -Texas_S-PVQFN-N40_EP4.6x4.6mm_ThermalVias -QFN, 40 Pin (http://www.ti.com/lit/ds/symlink/dac7750.pdf#page=54), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -83 -41 -Package_DFN_QFN -Texas_S-PVQFN-N40_EP4.15x4.15mm -QFN, 40 Pin (http://www.ti.com/lit/ds/symlink/msp430g2755.pdf#page=70 JEDEC MO-220 variation VJJD-2), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -50 -41 -Package_DFN_QFN -Texas_S-PVQFN-N40_EP4.15x4.15mm_ThermalVias -QFN, 40 Pin (http://www.ti.com/lit/ds/symlink/msp430g2755.pdf#page=70 JEDEC MO-220 variation VJJD-2), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -83 -41 -Package_DFN_QFN -Texas_S-PVQFN-N48_EP5.15x5.15mm -QFN, 48 Pin (http://www.ti.com/lit/ds/symlink/msp430f5232.pdf#page=111), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -65 -49 -Package_DFN_QFN -Texas_S-PVQFN-N48_EP5.15x5.15mm_ThermalVias -QFN, 48 Pin (http://www.ti.com/lit/ds/symlink/msp430f5232.pdf#page=111), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -111 -49 -Package_DFN_QFN -Texas_S-PVQFN-N64_EP4.25x4.25mm -QFN, 64 Pin (http://www.ti.com/lit/ds/symlink/msp430f5217.pdf#page=120), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -69 -65 -Package_DFN_QFN -Texas_S-PVQFN-N64_EP4.25x4.25mm_ThermalVias -QFN, 64 Pin (http://www.ti.com/lit/ds/symlink/msp430f5217.pdf#page=120), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -127 -65 -Package_DFN_QFN -Texas_S-PWQFN-N16_EP2.1x2.1mm -QFN, 16 Pin (http://www.ti.com/lit/ds/symlink/drv8801.pdf#page=31 MO-220 variation VGGC), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -21 -17 -Package_DFN_QFN -Texas_S-PWQFN-N16_EP2.1x2.1mm_ThermalVias -QFN, 16 Pin (http://www.ti.com/lit/ds/symlink/drv8801.pdf#page=31 MO-220 variation VGGC), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -31 -17 -Package_DFN_QFN -Texas_S-PWQFN-N20 -20-Pin Plastic Quad Flatpack No-Lead Package, Body 3.0x3.0x0.8mm, Texas Instruments (http://www.ti.com/lit/ds/symlink/tps22993.pdf) -QFN 0.4 -0 -24 -20 -Package_DFN_QFN -Texas_S-PWQFN-N24_EP2.7x2.7mm -QFN, 24 Pin (http://www.ti.com/lit/ds/symlink/bq25601.pdf#page=54), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -29 -25 -Package_DFN_QFN -Texas_S-PWQFN-N24_EP2.7x2.7mm_ThermalVias -QFN, 24 Pin (http://www.ti.com/lit/ds/symlink/bq25601.pdf#page=54), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -39 -25 -Package_DFN_QFN -Texas_S-PWQFN-N32_EP2.8x2.8mm -QFN, 32 Pin (https://www.ti.com/lit/ds/symlink/bq25703a.pdf#page=90), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -37 -33 -Package_DFN_QFN -Texas_S-PWQFN-N32_EP2.8x2.8mm_ThermalVias -QFN, 32 Pin (https://www.ti.com/lit/ds/symlink/bq25703a.pdf#page=90), generated with kicad-footprint-generator ipc_noLead_generator.py -QFN NoLead -0 -47 -33 -Package_DFN_QFN -Texas_S-PWQFN-N100_EP5.5x5.5mm -http://www.ti.com/general/docs/lit/getliterature.tsp?baseLiteratureNumber=szza059&fileType=pdf,http://www.ti.com/lit/ds/sllse76m/sllse76m.pdf -MultiRow QFN -0 -114 -105 -Package_DFN_QFN -Texas_S-PWQFN-N100_EP5.5x5.5mm_ThermalVias -http://www.ti.com/general/docs/lit/getliterature.tsp?baseLiteratureNumber=szza059&fileType=pdf,http://www.ti.com/lit/ds/sllse76m/sllse76m.pdf -MultiRow QFN -0 -131 -105 -Package_DFN_QFN -Texas_S-PX2QFN-14 -Texas QFN, 14 Pin (http://www.ti.com/lit/ds/symlink/tlv9004.pdf#page=64), generated with kicad-footprint-generator ipc_noLead_generator.py -Texas QFN NoLead -0 -14 -14 -Package_DFN_QFN -Texas_UQFN-10_1.5x2mm_P0.5mm -Texas RSE0010A UQFN, 10 Pin (https://www.ti.com/lit/ml/mpqf186d/mpqf186d.pdf) -Texas RSE0010 UQFN NoLead -0 -10 -10 -Package_DFN_QFN -Texas_VQFN-HR-20_3x2.5mm_P0.5mm_RQQ0011A -Texas VQFN-HR, 11 Pin, https://www.ti.com/lit/ml/mpqf579/mpqf579.pdf -RQQ0011A -0 -15 -11 -Package_DFN_QFN -Texas_VQFN-RHL-20 -http://www.ti.com/lit/ds/symlink/bq51050b.pdf -RHL0020A -0 -33 -21 -Package_DFN_QFN -Texas_VQFN-RHL-20_ThermalVias -http://www.ti.com/lit/ds/symlink/bq51050b.pdf -RHL0020A -0 -41 -21 -Package_DFN_QFN -Texas_VSON-HR-8_1.5x2mm_P0.5mm -Texas VSON-HR, 8 Pin (http://www.ti.com/lit/ds/symlink/tps62823.pdf#page=29), generated with kicad-footprint-generator ipc_noLead_generator.py -Texas VSON-HR NoLead -0 -8 -8 -Package_DFN_QFN -Texas_WQFN-10_2x2mm_P0.5mm -Texas WQFN, 10 Pin (https://www.ti.com/lit/ds/symlink/tmp461.pdf#page=35 (RUN0010A)), generated with kicad-footprint-generator ipc_noLead_generator.py -Texas WQFN NoLead -0 -10 -10 -Package_DFN_QFN -Texas_WQFN-MR-100_3x3-DapStencil -http://www.ti.com/general/docs/lit/getliterature.tsp?baseLiteratureNumber=szza059&fileType=pdf,http://www.ti.com/general/docs/lit/getliterature.tsp?baseLiteratureNumber=mpqf258&fileType=pdf,http://www.ti.com/general/docs/lit/getliterature.tsp?baseLiteratureNumber=LPPD235&fileType=pdf -MultiRow QFN -0 -113 -105 -Package_DFN_QFN -Texas_WQFN-MR-100_ThermalVias_3x3-DapStencil -http://www.ti.com/general/docs/lit/getliterature.tsp?baseLiteratureNumber=szza059&fileType=pdf,http://www.ti.com/general/docs/lit/getliterature.tsp?baseLiteratureNumber=mpqf258&fileType=pdf,http://www.ti.com/general/docs/lit/getliterature.tsp?baseLiteratureNumber=LPPD235&fileType=pdf -MultiRow QFN -0 -126 -105 -Package_DFN_QFN -Texas_X2QFN-12_1.6x1.6mm_P0.4mm -Texas X2QFN, 12 Pin (http://www.ti.com/lit/ml/mpqf391c/mpqf391c.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -Texas X2QFN NoLead -0 -12 -12 -Package_DFN_QFN -UDFN-4-1EP_1x1mm_P0.65mm_EP0.48x0.48mm -UDFN-4_1x1mm_P0.65mm, http://ww1.microchip.com/downloads/en/DeviceDoc/MIC550x-300mA-Single-Output-LDO-in-Small-Packages-DS20006006A.pdf -UDFN-4_1x1mm_P0.65mm -0 -5 -5 -Package_DFN_QFN -UDFN-9_1.0x3.8mm_P0.5mm -9-pin UDFN package, 1.0x3.8mm, (Ref: https://katalog.we-online.de/pbs/datasheet/824014881.pdf) -UDFN SMD -0 -9 -9 -Package_DFN_QFN -UDFN-10_1.35x2.6mm_P0.5mm -http://www.st.com/content/ccc/resource/technical/document/datasheet/f2/11/8a/ed/40/31/40/56/DM00088292.pdf/files/DM00088292.pdf/jcr:content/translations/en.DM00088292.pdf -UDFN 0.5 uQFN -0 -10 -10 -Package_DFN_QFN -UFQFPN-32-1EP_5x5mm_P0.5mm_EP3.5x3.5mm -UFQFPN, 32 Pin (https://www.st.com/resource/en/datasheet/stm32g071k8.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -UFQFPN NoLead -0 -37 -33 -Package_DFN_QFN -UFQFPN-32-1EP_5x5mm_P0.5mm_EP3.5x3.5mm_ThermalVias -UFQFPN, 32 Pin (https://www.st.com/resource/en/datasheet/stm32g071k8.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -UFQFPN NoLead -0 -47 -33 -Package_DFN_QFN -UQFN-10_1.3x1.8mm_P0.4mm -UQFN, 10 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/00001725D.pdf (Page 9)), generated with kicad-footprint-generator ipc_noLead_generator.py -UQFN NoLead -0 -10 -10 -Package_DFN_QFN -UQFN-10_1.4x1.8mm_P0.4mm -UQFN 10pin, https://www.onsemi.com/pub/Collateral/488AT.PDF -UQFN-10_1.4x1.8mm_P0.4mm -0 -10 -10 -Package_DFN_QFN -UQFN-10_1.6x2.1mm_P0.5mm -UQFN, 10 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/00001725D.pdf (Page 12)), generated with kicad-footprint-generator ipc_noLead_generator.py -UQFN NoLead -0 -10 -10 -Package_DFN_QFN -UQFN-16-1EP_3x3mm_P0.5mm_EP1.75x1.75mm -16-Lead Ultra Thin Quad Flat, No Lead Package (UC) - 3x3x0.5 mm Body [UQFN]; (see Microchip Packaging Specification 00000049BS.pdf) -QFN 0.5 -0 -21 -17 -Package_DFN_QFN -UQFN-16-1EP_4x4mm_P0.65mm_EP2.6x2.6mm -UQFN, 16 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/16L_UQFN_4x4x0_5mm_JQ_C04257A.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -UQFN NoLead -0 -21 -17 -Package_DFN_QFN -UQFN-16-1EP_4x4mm_P0.65mm_EP2.6x2.6mm_ThermalVias -UQFN, 16 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/16L_UQFN_4x4x0_5mm_JQ_C04257A.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -UQFN NoLead -0 -31 -17 -Package_DFN_QFN -UQFN-16-1EP_4x4mm_P0.65mm_EP2.7x2.7mm -16-Lead Ultra Thin Plastic Quad Flat, No Lead Package (JQ) - 4x4x0.5 mm Body [UQFN]; (see Microchip Packaging Specification 00000049BS.pdf) -QFN 0.65 -0 -21 -17 -Package_DFN_QFN -UQFN-20-1EP_3x3mm_P0.4mm_EP1.85x1.85mm -UQFN, 20 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=332), generated with kicad-footprint-generator ipc_noLead_generator.py -UQFN NoLead -0 -25 -21 -Package_DFN_QFN -UQFN-20-1EP_3x3mm_P0.4mm_EP1.85x1.85mm_ThermalVias -UQFN, 20 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=332), generated with kicad-footprint-generator ipc_noLead_generator.py -UQFN NoLead -0 -30 -21 -Package_DFN_QFN -UQFN-20-1EP_4x4mm_P0.5mm_EP2.8x2.8mm -UQFN, 20 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/40001839B.pdf#page=464), generated with kicad-footprint-generator ipc_noLead_generator.py -UQFN NoLead -0 -25 -21 -Package_DFN_QFN -UQFN-20-1EP_4x4mm_P0.5mm_EP2.8x2.8mm_ThermalVias -UQFN, 20 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/40001839B.pdf#page=464), generated with kicad-footprint-generator ipc_noLead_generator.py -UQFN NoLead -0 -35 -21 -Package_DFN_QFN -UQFN-20_3x3mm_P0.4mm -UQFN, 20 Pin (https://resurgentsemi.com/wp-content/uploads/2018/09/MPR121_rev5-Resurgent.pdf?d453f8&d453f8), generated with kicad-footprint-generator ipc_noLead_generator.py -UQFN NoLead -0 -20 -20 -Package_DFN_QFN -UQFN-28-1EP_4x4mm_P0.4mm_EP2.35x2.35mm -UQFN, 28 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=338), generated with kicad-footprint-generator ipc_noLead_generator.py -UQFN NoLead -0 -33 -29 -Package_DFN_QFN -UQFN-28-1EP_4x4mm_P0.4mm_EP2.35x2.35mm_ThermalVias -UQFN, 28 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=338), generated with kicad-footprint-generator ipc_noLead_generator.py -UQFN NoLead -0 -43 -29 -Package_DFN_QFN -UQFN-40-1EP_5x5mm_P0.4mm_EP3.8x3.8mm -UQFN, 40 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=345), generated with kicad-footprint-generator ipc_noLead_generator.py -UQFN NoLead -0 -50 -41 -Package_DFN_QFN -UQFN-40-1EP_5x5mm_P0.4mm_EP3.8x3.8mm_ThermalVias -UQFN, 40 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=345), generated with kicad-footprint-generator ipc_noLead_generator.py -UQFN NoLead -0 -67 -41 -Package_DFN_QFN -UQFN-48-1EP_6x6mm_P0.4mm_EP4.45x4.45mm -UQFN, 48 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=347), generated with kicad-footprint-generator ipc_noLead_generator.py -UQFN NoLead -0 -58 -49 -Package_DFN_QFN -UQFN-48-1EP_6x6mm_P0.4mm_EP4.45x4.45mm_ThermalVias -UQFN, 48 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=347), generated with kicad-footprint-generator ipc_noLead_generator.py -UQFN NoLead -0 -75 -49 -Package_DFN_QFN -UQFN-48-1EP_6x6mm_P0.4mm_EP4.62x4.62mm -UQFN, 48 Pin (https://github.com/KiCad/kicad-symbols/pull/1189#issuecomment-449506354), generated with kicad-footprint-generator ipc_noLead_generator.py -UQFN NoLead -0 -53 -49 -Package_DFN_QFN -UQFN-48-1EP_6x6mm_P0.4mm_EP4.62x4.62mm_ThermalVias -UQFN, 48 Pin (https://github.com/KiCad/kicad-symbols/pull/1189#issuecomment-449506354), generated with kicad-footprint-generator ipc_noLead_generator.py -UQFN NoLead -0 -75 -49 -Package_DFN_QFN -VDFN-8-1EP_2x2mm_P0.5mm_EP0.9x1.7mm -8-Lead Very Thin Dual Flatpack No-Lead (LZ) - 2x3x0.9 mm Body [VDFN] (see Microchip Packaging Specification 00000049BS.pdf) -DFN 0.5 -0 -11 -9 -Package_DFN_QFN -VQFN-16-1EP_3x3mm_P0.5mm_EP1.1x1.1mm -VQFN, 16 Pin (https://ww1.microchip.com/downloads/en/DeviceDoc/16L_VQFN-WFS_3x3mm_4MX_C04-00508a.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -VQFN NoLead -0 -18 -17 -Package_DFN_QFN -VQFN-16-1EP_3x3mm_P0.5mm_EP1.1x1.1mm_ThermalVias -VQFN, 16 Pin (https://ww1.microchip.com/downloads/en/DeviceDoc/16L_VQFN-WFS_3x3mm_4MX_C04-00508a.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -VQFN NoLead -0 -23 -17 -Package_DFN_QFN -VQFN-16-1EP_3x3mm_P0.5mm_EP1.6x1.6mm -VQFN, 16 Pin (http://www.ti.com/lit/ds/symlink/cdclvp1102.pdf#page=28), generated with kicad-footprint-generator ipc_noLead_generator.py -VQFN NoLead -0 -21 -17 -Package_DFN_QFN -VQFN-16-1EP_3x3mm_P0.5mm_EP1.6x1.6mm_ThermalVias -VQFN, 16 Pin (http://www.ti.com/lit/ds/symlink/cdclvp1102.pdf#page=28), generated with kicad-footprint-generator ipc_noLead_generator.py -VQFN NoLead -0 -26 -17 -Package_DFN_QFN -VQFN-16-1EP_3x3mm_P0.5mm_EP1.8x1.8mm -VQFN, 16 Pin (https://www.st.com/resource/en/datasheet/stspin220.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -VQFN NoLead -0 -21 -17 -Package_DFN_QFN -VQFN-16-1EP_3x3mm_P0.5mm_EP1.8x1.8mm_ThermalVias -VQFN, 16 Pin (https://www.st.com/resource/en/datasheet/stspin220.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -VQFN NoLead -0 -26 -17 -Package_DFN_QFN -VQFN-16-1EP_3x3mm_P0.5mm_EP1.45x1.45mm -VQFN, 16 Pin (http://www.ti.com/lit/ds/sbos354a/sbos354a.pdf, JEDEC MO-220 variant VEED-6), generated with kicad-footprint-generator ipc_noLead_generator.py -VQFN NoLead -0 -21 -17 -Package_DFN_QFN -VQFN-16-1EP_3x3mm_P0.5mm_EP1.45x1.45mm_ThermalVias -VQFN, 16 Pin (http://www.ti.com/lit/ds/sbos354a/sbos354a.pdf, JEDEC MO-220 variant VEED-6), generated with kicad-footprint-generator ipc_noLead_generator.py -VQFN NoLead -0 -26 -17 -Package_DFN_QFN -VQFN-16-1EP_3x3mm_P0.5mm_EP1.68x1.68mm -VQFN, 16 Pin (http://www.ti.com/lit/ds/symlink/tlv62095.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -VQFN NoLead -0 -21 -17 -Package_DFN_QFN -VQFN-16-1EP_3x3mm_P0.5mm_EP1.68x1.68mm_ThermalVias -VQFN, 16 Pin (http://www.ti.com/lit/ds/symlink/tlv62095.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -VQFN NoLead -0 -26 -17 -Package_DFN_QFN -VQFN-20-1EP_3x3mm_P0.4mm_EP1.7x1.7mm -VQFN, 20 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/20%20Lead%20VQFN%203x3x0_9mm_1_7EP%20U2B%20C04-21496a.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -VQFN NoLead -0 -25 -21 -Package_DFN_QFN -VQFN-20-1EP_3x3mm_P0.4mm_EP1.7x1.7mm_ThermalVias -VQFN, 20 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/20%20Lead%20VQFN%203x3x0_9mm_1_7EP%20U2B%20C04-21496a.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -VQFN NoLead -0 -30 -21 -Package_DFN_QFN -VQFN-20-1EP_3x3mm_P0.45mm_EP1.55x1.55mm -VQFN, 20 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/doc8246.pdf#page=264), generated with kicad-footprint-generator ipc_noLead_generator.py -VQFN NoLead -0 -25 -21 -Package_DFN_QFN -VQFN-20-1EP_3x3mm_P0.45mm_EP1.55x1.55mm_ThermalVias -VQFN, 20 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/doc8246.pdf#page=264), generated with kicad-footprint-generator ipc_noLead_generator.py -VQFN NoLead -0 -30 -21 -Package_DFN_QFN -VQFN-24-1EP_4x4mm_P0.5mm_EP2.5x2.5mm -VQFN, 24 Pin (https://ww1.microchip.com/downloads/aemDocuments/documents/product-documents/package-drawings/24L-VQFN%E2%80%934x4x0.9mm-MJ-C04-00143b.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -VQFN NoLead -0 -29 -25 -Package_DFN_QFN -VQFN-24-1EP_4x4mm_P0.5mm_EP2.5x2.5mm_ThermalVias -VQFN, 24 Pin (https://ww1.microchip.com/downloads/aemDocuments/documents/product-documents/package-drawings/24L-VQFN%E2%80%934x4x0.9mm-MJ-C04-00143b.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -VQFN NoLead -0 -39 -25 -Package_DFN_QFN -VQFN-24-1EP_4x4mm_P0.5mm_EP2.45x2.45mm -VQFN, 24 Pin (http://www.ti.com/lit/ds/symlink/msp430f1101a.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -VQFN NoLead -0 -34 -25 -Package_DFN_QFN -VQFN-24-1EP_4x4mm_P0.5mm_EP2.45x2.45mm_ThermalVias -VQFN, 24 Pin (http://www.ti.com/lit/ds/symlink/msp430f1101a.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -VQFN NoLead -0 -39 -25 -Package_DFN_QFN -VQFN-28-1EP_4x4mm_P0.45mm_EP2.4x2.4mm -VQFN, 28 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/Atmel-9505-AT42-QTouch-BSW-AT42QT1060_Datasheet.pdf#page=28), generated with kicad-footprint-generator ipc_noLead_generator.py -VQFN NoLead -0 -33 -29 -Package_DFN_QFN -VQFN-28-1EP_4x4mm_P0.45mm_EP2.4x2.4mm_ThermalVias -VQFN, 28 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/Atmel-9505-AT42-QTouch-BSW-AT42QT1060_Datasheet.pdf#page=28), generated with kicad-footprint-generator ipc_noLead_generator.py -VQFN NoLead -0 -43 -29 -Package_DFN_QFN -VQFN-28-1EP_4x5mm_P0.5mm_EP2.55x3.55mm -VQFN, 28 Pin (http://www.ti.com/lit/ds/symlink/lm5175.pdf#page=40), generated with kicad-footprint-generator ipc_noLead_generator.py -VQFN NoLead -0 -35 -29 -Package_DFN_QFN -VQFN-28-1EP_4x5mm_P0.5mm_EP2.55x3.55mm_ThermalVias -VQFN, 28 Pin (http://www.ti.com/lit/ds/symlink/lm5175.pdf#page=40), generated with kicad-footprint-generator ipc_noLead_generator.py -VQFN NoLead -0 -48 -29 -Package_DFN_QFN -VQFN-32-1EP_5x5mm_P0.5mm_EP3.1x3.1mm -VQFN, 32 Pin (http://ww1.microchip.com/downloads/en/devicedoc/atmel-9520-at42-qtouch-bsw-at42qt1110_datasheet.pdf#page=42), generated with kicad-footprint-generator ipc_noLead_generator.py -VQFN NoLead -0 -37 -33 -Package_DFN_QFN -VQFN-32-1EP_5x5mm_P0.5mm_EP3.1x3.1mm_ThermalVias -VQFN, 32 Pin (http://ww1.microchip.com/downloads/en/devicedoc/atmel-9520-at42-qtouch-bsw-at42qt1110_datasheet.pdf#page=42), generated with kicad-footprint-generator ipc_noLead_generator.py -VQFN NoLead -0 -47 -33 -Package_DFN_QFN -VQFN-32-1EP_5x5mm_P0.5mm_EP3.5x3.5mm -VQFN, 32 Pin (https://www.ftdichip.com/Support/Documents/DataSheets/ICs/DS_FT4222H.pdf#page=40), generated with kicad-footprint-generator ipc_noLead_generator.py -VQFN NoLead -0 -37 -33 -Package_DFN_QFN -VQFN-32-1EP_5x5mm_P0.5mm_EP3.5x3.5mm_ThermalVias -VQFN, 32 Pin (https://www.ftdichip.com/Support/Documents/DataSheets/ICs/DS_FT4222H.pdf#page=40), generated with kicad-footprint-generator ipc_noLead_generator.py -VQFN NoLead -0 -47 -33 -Package_DFN_QFN -VQFN-32-1EP_5x5mm_P0.5mm_EP3.15x3.15mm -VQFN, 32 Pin (https://www.ti.com/lit/ds/slvs589d/slvs589d.pdf#page=33), generated with kicad-footprint-generator ipc_noLead_generator.py -VQFN NoLead -0 -37 -33 -Package_DFN_QFN -VQFN-32-1EP_5x5mm_P0.5mm_EP3.15x3.15mm_ThermalVias -VQFN, 32 Pin (https://www.ti.com/lit/ds/slvs589d/slvs589d.pdf#page=33), generated with kicad-footprint-generator ipc_noLead_generator.py -VQFN NoLead -0 -47 -33 -Package_DFN_QFN -VQFN-46-1EP_5x6mm_P0.4mm_EP2.8x3.8mm -VQFN, 46 Pin (http://www.ti.com/lit/ds/symlink/lp5036.pdf#page=59), generated with kicad-footprint-generator ipc_noLead_generator.py -VQFN NoLead -0 -53 -47 -Package_DFN_QFN -VQFN-46-1EP_5x6mm_P0.4mm_EP2.8x3.8mm_ThermalVias -VQFN, 46 Pin (http://www.ti.com/lit/ds/symlink/lp5036.pdf#page=59), generated with kicad-footprint-generator ipc_noLead_generator.py -VQFN NoLead -0 -66 -47 -Package_DFN_QFN -VQFN-48-1EP_6x6mm_P0.4mm_EP4.1x4.1mm -VQFN, 48 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/48L_VQFN_6x6mm_6LX_C04-00494a.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -VQFN NoLead -0 -58 -49 -Package_DFN_QFN -VQFN-48-1EP_6x6mm_P0.4mm_EP4.1x4.1mm_ThermalVias -VQFN, 48 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/48L_VQFN_6x6mm_6LX_C04-00494a.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -VQFN NoLead -0 -75 -49 -Package_DFN_QFN -VQFN-48-1EP_7x7mm_P0.5mm_EP4.1x4.1mm -VQFN, 48 Pin (http://www.ti.com/lit/ds/symlink/cc430f5137.pdf#page=128), generated with kicad-footprint-generator ipc_noLead_generator.py -VQFN NoLead -0 -58 -49 -Package_DFN_QFN -VQFN-48-1EP_7x7mm_P0.5mm_EP4.1x4.1mm_ThermalVias -VQFN, 48 Pin (http://www.ti.com/lit/ds/symlink/cc430f5137.pdf#page=128), generated with kicad-footprint-generator ipc_noLead_generator.py -VQFN NoLead -0 -75 -49 -Package_DFN_QFN -VQFN-48-1EP_7x7mm_P0.5mm_EP5.15x5.15mm -VQFN, 48 Pin (http://www.ti.com/lit/ds/symlink/cc1312r.pdf#page=48), generated with kicad-footprint-generator ipc_noLead_generator.py -VQFN NoLead -0 -53 -49 -Package_DFN_QFN -VQFN-48-1EP_7x7mm_P0.5mm_EP5.15x5.15mm_ThermalVias -VQFN, 48 Pin (http://www.ti.com/lit/ds/symlink/cc1312r.pdf#page=48), generated with kicad-footprint-generator ipc_noLead_generator.py -VQFN NoLead -0 -79 -49 -Package_DFN_QFN -VQFN-64-1EP_9x9mm_P0.5mm_EP5.4x5.4mm -VQFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/PIC16LF19195-6-7-Data-Sheet-40001873D.pdf#page=718), generated with kicad-footprint-generator ipc_noLead_generator.py -VQFN NoLead -0 -74 -65 -Package_DFN_QFN -VQFN-64-1EP_9x9mm_P0.5mm_EP5.4x5.4mm_ThermalVias -VQFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/PIC16LF19195-6-7-Data-Sheet-40001873D.pdf#page=718), generated with kicad-footprint-generator ipc_noLead_generator.py -VQFN NoLead -0 -100 -65 -Package_DFN_QFN -VQFN-64-1EP_9x9mm_P0.5mm_EP7.15x7.15mm -VQFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/64L_QFN_9x9_MR_C04-00149e.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -VQFN NoLead -0 -74 -65 -Package_DFN_QFN -VQFN-64-1EP_9x9mm_P0.5mm_EP7.15x7.15mm_ThermalVias -VQFN, 64 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/64L_QFN_9x9_MR_C04-00149e.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -VQFN NoLead -0 -91 -65 -Package_DFN_QFN -W-PDFN-8-1EP_6x5mm_P1.27mm_EP3x3mm -W-PDFN, 8 Pin (https://media-www.micron.com/-/media/client/global/documents/products/data-sheet/nor-flash/serial-nor/mt25q/die-rev-a/mt25q_qljs_u_256_aba_0.pdf#page=22), generated with kicad-footprint-generator ipc_noLead_generator.py -W-PDFN NoLead -0 -13 -9 -Package_DFN_QFN -WDFN-6-2EP_4.0x2.6mm_P0.65mm -WDFN, 6 pin, 4.0x2.6, 0.65P; Two exposed pads, (https://www.onsemi.com/pub/Collateral/511BZ.PDF) -DFN 0.65P dual flag -0 -8 -8 -Package_DFN_QFN -WDFN-8-1EP_2x2.2mm_P0.5mm_EP0.80x0.54 -https://www.onsemi.com/pub/Collateral/511BN.PDF -WDFN-8 1EP 2.2X2.0 0.5P -0 -9 -9 -Package_DFN_QFN -WDFN-8-1EP_2x2mm_P0.5mm_EP0.8x1.2mm -WDFN, 8 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/20005474E.pdf#page=25), generated with kicad-footprint-generator ipc_noLead_generator.py -WDFN NoLead -0 -13 -9 -Package_DFN_QFN -WDFN-8-1EP_3x2mm_P0.5mm_EP1.3x1.4mm -WDFN, 8 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/8L_TDFN_2x3_MNY_C04-0129E-MNY.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -WDFN NoLead -0 -13 -9 -Package_DFN_QFN -WDFN-8-1EP_4x3mm_P0.65mm_EP2.4x1.8mm -WDFN, 8 Pin (https://www.onsemi.com/pub/Collateral/509AF.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py -WDFN NoLead -0 -13 -9 -Package_DFN_QFN -WDFN-8-1EP_4x3mm_P0.65mm_EP2.4x1.8mm_ThermalVias -WDFN, 8 Pin (https://www.onsemi.com/pub/Collateral/509AF.PDF), generated with kicad-footprint-generator ipc_noLead_generator.py -WDFN NoLead -0 -20 -9 -Package_DFN_QFN -WDFN-8-1EP_6x5mm_P1.27mm_EP3.4x4mm -WDFN, 8 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/8L_WDFN_5x6mm_MF_C04210B.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -WDFN NoLead -0 -13 -9 -Package_DFN_QFN -WDFN-8_2x2mm_P0.5mm -DFN8 2x2, 0.5P; No exposed pad (http://www.onsemi.com/pub/Collateral/NCP4308-D.PDF) -DFN 0.5 -0 -8 -8 -Package_DFN_QFN -WDFN-10-1EP_3x3mm_P0.5mm_EP1.8x2.5mm -WDFN, 10 Pin (https://www.onsemi.com/pdf/datasheet/nis5420-d.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -WDFN NoLead -0 -15 -11 -Package_DFN_QFN -WDFN-10-1EP_3x3mm_P0.5mm_EP1.8x2.5mm_ThermalVias -WDFN, 10 Pin (https://www.onsemi.com/pdf/datasheet/nis5420-d.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -WDFN NoLead -0 -22 -11 -Package_DFN_QFN -WDFN-12-1EP_3x3mm_P0.45mm_EP1.7x2.5mm -WDFN, 12 Pin (https://www.diodes.com/assets/Datasheets/PAM2306.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -WDFN NoLead -0 -17 -13 -Package_DFN_QFN -WQFN-14-1EP_2.5x2.5mm_P0.5mm_EP1.45x1.45mm -WQFN, 14 Pin (https://www.onsemi.com/pub/Collateral/FUSB302B-D.PDF#page=32), generated with kicad-footprint-generator ipc_noLead_generator.py -WQFN NoLead -0 -19 -15 -Package_DFN_QFN -WQFN-14-1EP_2.5x2.5mm_P0.5mm_EP1.45x1.45mm_ThermalVias -WQFN, 14 Pin (https://www.onsemi.com/pub/Collateral/FUSB302B-D.PDF#page=32), generated with kicad-footprint-generator ipc_noLead_generator.py -WQFN NoLead -0 -24 -15 -Package_DFN_QFN -WQFN-16-1EP_3x3mm_P0.5mm_EP1.6x1.6mm -WQFN, 16 Pin (https://www.ti.com/lit/ds/symlink/tpa6132a2.pdf#page=24), generated with kicad-footprint-generator ipc_noLead_generator.py -WQFN NoLead -0 -21 -17 -Package_DFN_QFN -WQFN-16-1EP_3x3mm_P0.5mm_EP1.6x1.6mm_ThermalVias -WQFN, 16 Pin (https://www.ti.com/lit/ds/symlink/tpa6132a2.pdf#page=24), generated with kicad-footprint-generator ipc_noLead_generator.py -WQFN NoLead -0 -26 -17 -Package_DFN_QFN -WQFN-16-1EP_3x3mm_P0.5mm_EP1.68x1.68mm -WQFN, 16 Pin (https://www.ti.com/lit/ds/symlink/tlv9064.pdf#page=44), generated with kicad-footprint-generator ipc_noLead_generator.py -WQFN NoLead -0 -21 -17 -Package_DFN_QFN -WQFN-16-1EP_3x3mm_P0.5mm_EP1.68x1.68mm_ThermalVias -WQFN, 16 Pin (https://www.ti.com/lit/ds/symlink/tlv9064.pdf#page=44), generated with kicad-footprint-generator ipc_noLead_generator.py -WQFN NoLead -0 -26 -17 -Package_DFN_QFN -WQFN-16-1EP_3x3mm_P0.5mm_EP1.75x1.75mm -WQFN, 16 Pin (https://www.onsemi.com/pub/Collateral/FUSB307B-D.PDF#page=56), generated with kicad-footprint-generator ipc_noLead_generator.py -WQFN NoLead -0 -21 -17 -Package_DFN_QFN -WQFN-16-1EP_3x3mm_P0.5mm_EP1.75x1.75mm_ThermalVias -WQFN, 16 Pin (https://www.onsemi.com/pub/Collateral/FUSB307B-D.PDF#page=56), generated with kicad-footprint-generator ipc_noLead_generator.py -WQFN NoLead -0 -26 -17 -Package_DFN_QFN -WQFN-16-1EP_4x4mm_P0.5mm_EP2.6x2.6mm -WQFN, 16 Pin (http://www.ti.com/lit/ds/symlink/ldc1312.pdf#page=59), generated with kicad-footprint-generator ipc_noLead_generator.py -WQFN NoLead -0 -21 -17 -Package_DFN_QFN -WQFN-16-1EP_4x4mm_P0.5mm_EP2.6x2.6mm_ThermalVias -WQFN, 16 Pin (http://www.ti.com/lit/ds/symlink/ldc1312.pdf#page=59), generated with kicad-footprint-generator ipc_noLead_generator.py -WQFN NoLead -0 -31 -17 -Package_DFN_QFN -WQFN-20-1EP_2.5x4.5mm_P0.5mm_EP1x2.9mm -http://www.onsemi.com/pub/Collateral/510CD.PDF -WQFN-20 4.5mm 2.5mm 0.5mm -0 -24 -21 -Package_DFN_QFN -WQFN-20-1EP_3x3mm_P0.4mm_EP1.7x1.7mm -WQFN, 20 Pin (https://www.ti.com/lit/ds/symlink/ts3ds10224.pdf#page=29), generated with kicad-footprint-generator ipc_noLead_generator.py -WQFN NoLead -0 -25 -21 -Package_DFN_QFN -WQFN-20-1EP_3x3mm_P0.4mm_EP1.7x1.7mm_ThermalVias -WQFN, 20 Pin (https://www.ti.com/lit/ds/symlink/ts3ds10224.pdf#page=29), generated with kicad-footprint-generator ipc_noLead_generator.py -WQFN NoLead -0 -30 -21 -Package_DFN_QFN -WQFN-24-1EP_4x4mm_P0.5mm_EP2.6x2.6mm -WQFN, 24 Pin (http://www.ti.com/lit/ds/symlink/lm26480.pdf#page=39), generated with kicad-footprint-generator ipc_noLead_generator.py -WQFN NoLead -0 -29 -25 -Package_DFN_QFN -WQFN-24-1EP_4x4mm_P0.5mm_EP2.6x2.6mm_ThermalVias -WQFN, 24 Pin (http://www.ti.com/lit/ds/symlink/lm26480.pdf#page=39), generated with kicad-footprint-generator ipc_noLead_generator.py -WQFN NoLead -0 -39 -25 -Package_DFN_QFN -WQFN-24-1EP_4x4mm_P0.5mm_EP2.45x2.45mm -WQFN, 24 Pin (http://www.ti.com/lit/ds/symlink/ts3a27518e.pdf#page=33), generated with kicad-footprint-generator ipc_noLead_generator.py -WQFN NoLead -0 -29 -25 -Package_DFN_QFN -WQFN-24-1EP_4x4mm_P0.5mm_EP2.45x2.45mm_ThermalVias -WQFN, 24 Pin (http://www.ti.com/lit/ds/symlink/ts3a27518e.pdf#page=33), generated with kicad-footprint-generator ipc_noLead_generator.py -WQFN NoLead -0 -39 -25 -Package_DFN_QFN -WQFN-32-1EP_5x5mm_P0.5mm_EP3.1x3.1mm -QFN, 32-Leads, Body 5x5x0.8mm, Pitch 0.5mm, Thermal Pad 3.1x3.1mm; (see Texas Instruments LM25119 http://www.ti.com/lit/ds/symlink/lm25119.pdf) -WQFN 0.5 -0 -37 -33 -Package_DFN_QFN -WQFN-42-1EP_3.5x9mm_P0.5mm_EP2.05x7.55mm -WQFN, 42 Pin (http://www.ti.com/lit/ds/symlink/ts3l501e.pdf#page=23), generated with kicad-footprint-generator ipc_noLead_generator.py -WQFN NoLead -0 -57 -43 -Package_DFN_QFN -WQFN-42-1EP_3.5x9mm_P0.5mm_EP2.05x7.55mm_ThermalVias -WQFN, 42 Pin (http://www.ti.com/lit/ds/symlink/ts3l501e.pdf#page=23), generated with kicad-footprint-generator ipc_noLead_generator.py -WQFN NoLead -0 -82 -43 -Package_DIP -DIP-4_W7.62mm -4-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils) -THT DIP DIL PDIP 2.54mm 7.62mm 300mil -0 -4 -4 -Package_DIP -DIP-4_W7.62mm_LongPads -4-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads -THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads -0 -4 -4 -Package_DIP -DIP-4_W7.62mm_SMDSocket_SmallPads -4-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), SMDSocket, SmallPads -THT DIP DIL PDIP 2.54mm 7.62mm 300mil SMDSocket SmallPads -0 -4 -4 -Package_DIP -DIP-4_W7.62mm_Socket -4-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket -THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket -0 -4 -4 -Package_DIP -DIP-4_W7.62mm_Socket_LongPads -4-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads -THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads -0 -4 -4 -Package_DIP -DIP-4_W8.89mm_SMDSocket_LongPads -4-lead though-hole mounted DIP package, row spacing 8.89 mm (350 mils), SMDSocket, LongPads -THT DIP DIL PDIP 2.54mm 8.89mm 350mil SMDSocket LongPads -0 -4 -4 -Package_DIP -DIP-4_W10.16mm -4-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils) -THT DIP DIL PDIP 2.54mm 10.16mm 400mil -0 -4 -4 -Package_DIP -DIP-4_W10.16mm_LongPads -4-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), LongPads -THT DIP DIL PDIP 2.54mm 10.16mm 400mil LongPads -0 -4 -4 -Package_DIP -DIP-5-6_W7.62mm -5-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils) -THT DIP DIL PDIP 2.54mm 7.62mm 300mil -0 -5 -5 -Package_DIP -DIP-5-6_W7.62mm_LongPads -5-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads -THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads -0 -5 -5 -Package_DIP -DIP-5-6_W7.62mm_SMDSocket_SmallPads -5-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), SMDSocket, SmallPads -THT DIP DIL PDIP 2.54mm 7.62mm 300mil SMDSocket SmallPads -0 -5 -5 -Package_DIP -DIP-5-6_W7.62mm_Socket -5-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket -THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket -0 -5 -5 -Package_DIP -DIP-5-6_W7.62mm_Socket_LongPads -5-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads -THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads -0 -5 -5 -Package_DIP -DIP-5-6_W8.89mm_SMDSocket_LongPads -5-lead though-hole mounted DIP package, row spacing 8.89 mm (350 mils), SMDSocket, LongPads -THT DIP DIL PDIP 2.54mm 8.89mm 350mil SMDSocket LongPads -0 -5 -5 -Package_DIP -DIP-5-6_W10.16mm -5-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils) -THT DIP DIL PDIP 2.54mm 10.16mm 400mil -0 -5 -5 -Package_DIP -DIP-5-6_W10.16mm_LongPads -5-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), LongPads -THT DIP DIL PDIP 2.54mm 10.16mm 400mil LongPads -0 -5 -5 -Package_DIP -DIP-6_W7.62mm -6-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils) -THT DIP DIL PDIP 2.54mm 7.62mm 300mil -0 -6 -6 -Package_DIP -DIP-6_W7.62mm_LongPads -6-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads -THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads -0 -6 -6 -Package_DIP -DIP-6_W7.62mm_SMDSocket_SmallPads -6-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), SMDSocket, SmallPads -THT DIP DIL PDIP 2.54mm 7.62mm 300mil SMDSocket SmallPads -0 -6 -6 -Package_DIP -DIP-6_W7.62mm_Socket -6-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket -THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket -0 -6 -6 -Package_DIP -DIP-6_W7.62mm_Socket_LongPads -6-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads -THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads -0 -6 -6 -Package_DIP -DIP-6_W8.89mm_SMDSocket_LongPads -6-lead though-hole mounted DIP package, row spacing 8.89 mm (350 mils), SMDSocket, LongPads -THT DIP DIL PDIP 2.54mm 8.89mm 350mil SMDSocket LongPads -0 -6 -6 -Package_DIP -DIP-6_W10.16mm -6-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils) -THT DIP DIL PDIP 2.54mm 10.16mm 400mil -0 -6 -6 -Package_DIP -DIP-6_W10.16mm_LongPads -6-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), LongPads -THT DIP DIL PDIP 2.54mm 10.16mm 400mil LongPads -0 -6 -6 -Package_DIP -DIP-8-16_W7.62mm -16-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils) -THT DIP DIL PDIP 2.54mm 7.62mm 300mil -0 -8 -8 -Package_DIP -DIP-8-16_W7.62mm_Socket -16-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket -THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket -0 -8 -8 -Package_DIP -DIP-8-16_W7.62mm_Socket_LongPads -16-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads -THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads -0 -8 -8 -Package_DIP -DIP-8-N6_W7.62mm -8-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), missing pin 6 -THT DIP DIL PDIP 2.54mm 7.62mm 300mil -0 -7 -7 -Package_DIP -DIP-8-N7_W7.62mm -8-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), missing pin 7 -THT DIP DIL PDIP 2.54mm 7.62mm 300mil -0 -7 -7 -Package_DIP -DIP-8_W7.62mm -8-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils) -THT DIP DIL PDIP 2.54mm 7.62mm 300mil -0 -8 -8 -Package_DIP -DIP-8_W7.62mm_LongPads -8-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads -THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads -0 -8 -8 -Package_DIP -DIP-8_W7.62mm_SMDSocket_SmallPads -8-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), SMDSocket, SmallPads -THT DIP DIL PDIP 2.54mm 7.62mm 300mil SMDSocket SmallPads -0 -8 -8 -Package_DIP -DIP-8_W7.62mm_Socket -8-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket -THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket -0 -8 -8 -Package_DIP -DIP-8_W7.62mm_Socket_LongPads -8-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads -THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads -0 -8 -8 -Package_DIP -DIP-8_W8.89mm_SMDSocket_LongPads -8-lead though-hole mounted DIP package, row spacing 8.89 mm (350 mils), SMDSocket, LongPads -THT DIP DIL PDIP 2.54mm 8.89mm 350mil SMDSocket LongPads -0 -8 -8 -Package_DIP -DIP-8_W10.16mm -8-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils) -THT DIP DIL PDIP 2.54mm 10.16mm 400mil -0 -8 -8 -Package_DIP -DIP-8_W10.16mm_LongPads -8-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), LongPads -THT DIP DIL PDIP 2.54mm 10.16mm 400mil LongPads -0 -8 -8 -Package_DIP -DIP-10_W7.62mm -10-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils) -THT DIP DIL PDIP 2.54mm 7.62mm 300mil -0 -10 -10 -Package_DIP -DIP-10_W7.62mm_LongPads -10-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads -THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads -0 -10 -10 -Package_DIP -DIP-10_W7.62mm_SMDSocket_SmallPads -10-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), SMDSocket, SmallPads -THT DIP DIL PDIP 2.54mm 7.62mm 300mil SMDSocket SmallPads -0 -10 -10 -Package_DIP -DIP-10_W7.62mm_Socket -10-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket -THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket -0 -10 -10 -Package_DIP -DIP-10_W7.62mm_Socket_LongPads -10-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads -THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads -0 -10 -10 -Package_DIP -DIP-10_W8.89mm_SMDSocket_LongPads -10-lead though-hole mounted DIP package, row spacing 8.89 mm (350 mils), SMDSocket, LongPads -THT DIP DIL PDIP 2.54mm 8.89mm 350mil SMDSocket LongPads -0 -10 -10 -Package_DIP -DIP-10_W10.16mm -10-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils) -THT DIP DIL PDIP 2.54mm 10.16mm 400mil -0 -10 -10 -Package_DIP -DIP-10_W10.16mm_LongPads -10-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), LongPads -THT DIP DIL PDIP 2.54mm 10.16mm 400mil LongPads -0 -10 -10 -Package_DIP -DIP-12_W7.62mm -12-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils) -THT DIP DIL PDIP 2.54mm 7.62mm 300mil -0 -12 -12 -Package_DIP -DIP-12_W7.62mm_LongPads -12-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads -THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads -0 -12 -12 -Package_DIP -DIP-12_W7.62mm_SMDSocket_SmallPads -12-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), SMDSocket, SmallPads -THT DIP DIL PDIP 2.54mm 7.62mm 300mil SMDSocket SmallPads -0 -12 -12 -Package_DIP -DIP-12_W7.62mm_Socket -12-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket -THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket -0 -12 -12 -Package_DIP -DIP-12_W7.62mm_Socket_LongPads -12-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads -THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads -0 -12 -12 -Package_DIP -DIP-12_W8.89mm_SMDSocket_LongPads -12-lead though-hole mounted DIP package, row spacing 8.89 mm (350 mils), SMDSocket, LongPads -THT DIP DIL PDIP 2.54mm 8.89mm 350mil SMDSocket LongPads -0 -12 -12 -Package_DIP -DIP-12_W10.16mm -12-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils) -THT DIP DIL PDIP 2.54mm 10.16mm 400mil -0 -12 -12 -Package_DIP -DIP-12_W10.16mm_LongPads -12-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), LongPads -THT DIP DIL PDIP 2.54mm 10.16mm 400mil LongPads -0 -12 -12 -Package_DIP -DIP-14_W7.62mm -14-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils) -THT DIP DIL PDIP 2.54mm 7.62mm 300mil -0 -14 -14 -Package_DIP -DIP-14_W7.62mm_LongPads -14-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads -THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads -0 -14 -14 -Package_DIP -DIP-14_W7.62mm_SMDSocket_SmallPads -14-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), SMDSocket, SmallPads -THT DIP DIL PDIP 2.54mm 7.62mm 300mil SMDSocket SmallPads -0 -14 -14 -Package_DIP -DIP-14_W7.62mm_Socket -14-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket -THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket -0 -14 -14 -Package_DIP -DIP-14_W7.62mm_Socket_LongPads -14-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads -THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads -0 -14 -14 -Package_DIP -DIP-14_W8.89mm_SMDSocket_LongPads -14-lead though-hole mounted DIP package, row spacing 8.89 mm (350 mils), SMDSocket, LongPads -THT DIP DIL PDIP 2.54mm 8.89mm 350mil SMDSocket LongPads -0 -14 -14 -Package_DIP -DIP-14_W10.16mm -14-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils) -THT DIP DIL PDIP 2.54mm 10.16mm 400mil -0 -14 -14 -Package_DIP -DIP-14_W10.16mm_LongPads -14-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), LongPads -THT DIP DIL PDIP 2.54mm 10.16mm 400mil LongPads -0 -14 -14 -Package_DIP -DIP-16_W7.62mm -16-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils) -THT DIP DIL PDIP 2.54mm 7.62mm 300mil -0 -16 -16 -Package_DIP -DIP-16_W7.62mm_LongPads -16-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads -THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads -0 -16 -16 -Package_DIP -DIP-16_W7.62mm_SMDSocket_SmallPads -16-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), SMDSocket, SmallPads -THT DIP DIL PDIP 2.54mm 7.62mm 300mil SMDSocket SmallPads -0 -16 -16 -Package_DIP -DIP-16_W7.62mm_Socket -16-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket -THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket -0 -16 -16 -Package_DIP -DIP-16_W7.62mm_Socket_LongPads -16-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads -THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads -0 -16 -16 -Package_DIP -DIP-16_W8.89mm_SMDSocket_LongPads -16-lead though-hole mounted DIP package, row spacing 8.89 mm (350 mils), SMDSocket, LongPads -THT DIP DIL PDIP 2.54mm 8.89mm 350mil SMDSocket LongPads -0 -16 -16 -Package_DIP -DIP-16_W10.16mm -16-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils) -THT DIP DIL PDIP 2.54mm 10.16mm 400mil -0 -16 -16 -Package_DIP -DIP-16_W10.16mm_LongPads -16-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), LongPads -THT DIP DIL PDIP 2.54mm 10.16mm 400mil LongPads -0 -16 -16 -Package_DIP -DIP-18_W7.62mm -18-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils) -THT DIP DIL PDIP 2.54mm 7.62mm 300mil -0 -18 -18 -Package_DIP -DIP-18_W7.62mm_LongPads -18-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads -THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads -0 -18 -18 -Package_DIP -DIP-18_W7.62mm_SMDSocket_SmallPads -18-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), SMDSocket, SmallPads -THT DIP DIL PDIP 2.54mm 7.62mm 300mil SMDSocket SmallPads -0 -18 -18 -Package_DIP -DIP-18_W7.62mm_Socket -18-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket -THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket -0 -18 -18 -Package_DIP -DIP-18_W7.62mm_Socket_LongPads -18-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads -THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads -0 -18 -18 -Package_DIP -DIP-18_W8.89mm_SMDSocket_LongPads -18-lead though-hole mounted DIP package, row spacing 8.89 mm (350 mils), SMDSocket, LongPads -THT DIP DIL PDIP 2.54mm 8.89mm 350mil SMDSocket LongPads -0 -18 -18 -Package_DIP -DIP-20_W7.62mm -20-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils) -THT DIP DIL PDIP 2.54mm 7.62mm 300mil -0 -20 -20 -Package_DIP -DIP-20_W7.62mm_LongPads -20-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads -THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads -0 -20 -20 -Package_DIP -DIP-20_W7.62mm_SMDSocket_SmallPads -20-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), SMDSocket, SmallPads -THT DIP DIL PDIP 2.54mm 7.62mm 300mil SMDSocket SmallPads -0 -20 -20 -Package_DIP -DIP-20_W7.62mm_Socket -20-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket -THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket -0 -20 -20 -Package_DIP -DIP-20_W7.62mm_Socket_LongPads -20-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads -THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads -0 -20 -20 -Package_DIP -DIP-20_W8.89mm_SMDSocket_LongPads -20-lead though-hole mounted DIP package, row spacing 8.89 mm (350 mils), SMDSocket, LongPads -THT DIP DIL PDIP 2.54mm 8.89mm 350mil SMDSocket LongPads -0 -20 -20 -Package_DIP -DIP-22_W7.62mm -22-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils) -THT DIP DIL PDIP 2.54mm 7.62mm 300mil -0 -22 -22 -Package_DIP -DIP-22_W7.62mm_LongPads -22-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads -THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads -0 -22 -22 -Package_DIP -DIP-22_W7.62mm_SMDSocket_SmallPads -22-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), SMDSocket, SmallPads -THT DIP DIL PDIP 2.54mm 7.62mm 300mil SMDSocket SmallPads -0 -22 -22 -Package_DIP -DIP-22_W7.62mm_Socket -22-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket -THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket -0 -22 -22 -Package_DIP -DIP-22_W7.62mm_Socket_LongPads -22-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads -THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads -0 -22 -22 -Package_DIP -DIP-22_W8.89mm_SMDSocket_LongPads -22-lead though-hole mounted DIP package, row spacing 8.89 mm (350 mils), SMDSocket, LongPads -THT DIP DIL PDIP 2.54mm 8.89mm 350mil SMDSocket LongPads -0 -22 -22 -Package_DIP -DIP-22_W10.16mm -22-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils) -THT DIP DIL PDIP 2.54mm 10.16mm 400mil -0 -22 -22 -Package_DIP -DIP-22_W10.16mm_LongPads -22-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), LongPads -THT DIP DIL PDIP 2.54mm 10.16mm 400mil LongPads -0 -22 -22 -Package_DIP -DIP-22_W10.16mm_SMDSocket_SmallPads -22-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), SMDSocket, SmallPads -THT DIP DIL PDIP 2.54mm 10.16mm 400mil SMDSocket SmallPads -0 -22 -22 -Package_DIP -DIP-22_W10.16mm_Socket -22-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), Socket -THT DIP DIL PDIP 2.54mm 10.16mm 400mil Socket -0 -22 -22 -Package_DIP -DIP-22_W10.16mm_Socket_LongPads -22-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), Socket, LongPads -THT DIP DIL PDIP 2.54mm 10.16mm 400mil Socket LongPads -0 -22 -22 -Package_DIP -DIP-22_W11.43mm_SMDSocket_LongPads -22-lead though-hole mounted DIP package, row spacing 11.43 mm (450 mils), SMDSocket, LongPads -THT DIP DIL PDIP 2.54mm 11.43mm 450mil SMDSocket LongPads -0 -22 -22 -Package_DIP -DIP-24_W7.62mm -24-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils) -THT DIP DIL PDIP 2.54mm 7.62mm 300mil -0 -24 -24 -Package_DIP -DIP-24_W7.62mm_LongPads -24-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads -THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads -0 -24 -24 -Package_DIP -DIP-24_W7.62mm_SMDSocket_SmallPads -24-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), SMDSocket, SmallPads -THT DIP DIL PDIP 2.54mm 7.62mm 300mil SMDSocket SmallPads -0 -24 -24 -Package_DIP -DIP-24_W7.62mm_Socket -24-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket -THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket -0 -24 -24 -Package_DIP -DIP-24_W7.62mm_Socket_LongPads -24-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads -THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads -0 -24 -24 -Package_DIP -DIP-24_W8.89mm_SMDSocket_LongPads -24-lead though-hole mounted DIP package, row spacing 8.89 mm (350 mils), SMDSocket, LongPads -THT DIP DIL PDIP 2.54mm 8.89mm 350mil SMDSocket LongPads -0 -24 -24 -Package_DIP -DIP-24_W10.16mm -24-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils) -THT DIP DIL PDIP 2.54mm 10.16mm 400mil -0 -24 -24 -Package_DIP -DIP-24_W10.16mm_LongPads -24-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), LongPads -THT DIP DIL PDIP 2.54mm 10.16mm 400mil LongPads -0 -24 -24 -Package_DIP -DIP-24_W10.16mm_SMDSocket_SmallPads -24-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), SMDSocket, SmallPads -THT DIP DIL PDIP 2.54mm 10.16mm 400mil SMDSocket SmallPads -0 -24 -24 -Package_DIP -DIP-24_W10.16mm_Socket -24-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), Socket -THT DIP DIL PDIP 2.54mm 10.16mm 400mil Socket -0 -24 -24 -Package_DIP -DIP-24_W10.16mm_Socket_LongPads -24-lead though-hole mounted DIP package, row spacing 10.16 mm (400 mils), Socket, LongPads -THT DIP DIL PDIP 2.54mm 10.16mm 400mil Socket LongPads -0 -24 -24 -Package_DIP -DIP-24_W11.43mm_SMDSocket_LongPads -24-lead though-hole mounted DIP package, row spacing 11.43 mm (450 mils), SMDSocket, LongPads -THT DIP DIL PDIP 2.54mm 11.43mm 450mil SMDSocket LongPads -0 -24 -24 -Package_DIP -DIP-24_W15.24mm -24-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils) -THT DIP DIL PDIP 2.54mm 15.24mm 600mil -0 -24 -24 -Package_DIP -DIP-24_W15.24mm_LongPads -24-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), LongPads -THT DIP DIL PDIP 2.54mm 15.24mm 600mil LongPads -0 -24 -24 -Package_DIP -DIP-24_W15.24mm_SMDSocket_SmallPads -24-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), SMDSocket, SmallPads -THT DIP DIL PDIP 2.54mm 15.24mm 600mil SMDSocket SmallPads -0 -24 -24 -Package_DIP -DIP-24_W15.24mm_Socket -24-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket -THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket -0 -24 -24 -Package_DIP -DIP-24_W15.24mm_Socket_LongPads -24-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket, LongPads -THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket LongPads -0 -24 -24 -Package_DIP -DIP-24_W16.51mm_SMDSocket_LongPads -24-lead though-hole mounted DIP package, row spacing 16.51 mm (650 mils), SMDSocket, LongPads -THT DIP DIL PDIP 2.54mm 16.51mm 650mil SMDSocket LongPads -0 -24 -24 -Package_DIP -DIP-28_W7.62mm -28-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils) -THT DIP DIL PDIP 2.54mm 7.62mm 300mil -0 -28 -28 -Package_DIP -DIP-28_W7.62mm_LongPads -28-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads -THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads -0 -28 -28 -Package_DIP -DIP-28_W7.62mm_SMDSocket_SmallPads -28-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), SMDSocket, SmallPads -THT DIP DIL PDIP 2.54mm 7.62mm 300mil SMDSocket SmallPads -0 -28 -28 -Package_DIP -DIP-28_W7.62mm_Socket -28-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket -THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket -0 -28 -28 -Package_DIP -DIP-28_W7.62mm_Socket_LongPads -28-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), Socket, LongPads -THT DIP DIL PDIP 2.54mm 7.62mm 300mil Socket LongPads -0 -28 -28 -Package_DIP -DIP-28_W8.89mm_SMDSocket_LongPads -28-lead though-hole mounted DIP package, row spacing 8.89 mm (350 mils), SMDSocket, LongPads -THT DIP DIL PDIP 2.54mm 8.89mm 350mil SMDSocket LongPads -0 -28 -28 -Package_DIP -DIP-28_W15.24mm -28-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils) -THT DIP DIL PDIP 2.54mm 15.24mm 600mil -0 -28 -28 -Package_DIP -DIP-28_W15.24mm_LongPads -28-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), LongPads -THT DIP DIL PDIP 2.54mm 15.24mm 600mil LongPads -0 -28 -28 -Package_DIP -DIP-28_W15.24mm_SMDSocket_SmallPads -28-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), SMDSocket, SmallPads -THT DIP DIL PDIP 2.54mm 15.24mm 600mil SMDSocket SmallPads -0 -28 -28 -Package_DIP -DIP-28_W15.24mm_Socket -28-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket -THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket -0 -28 -28 -Package_DIP -DIP-28_W15.24mm_Socket_LongPads -28-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket, LongPads -THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket LongPads -0 -28 -28 -Package_DIP -DIP-28_W16.51mm_SMDSocket_LongPads -28-lead though-hole mounted DIP package, row spacing 16.51 mm (650 mils), SMDSocket, LongPads -THT DIP DIL PDIP 2.54mm 16.51mm 650mil SMDSocket LongPads -0 -28 -28 -Package_DIP -DIP-32_W7.62mm -32-lead dip package, row spacing 7.62 mm (300 mils) -DIL DIP PDIP 2.54mm 7.62mm 300mil -0 -32 -32 -Package_DIP -DIP-32_W15.24mm -32-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils) -THT DIP DIL PDIP 2.54mm 15.24mm 600mil -0 -32 -32 -Package_DIP -DIP-32_W15.24mm_LongPads -32-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), LongPads -THT DIP DIL PDIP 2.54mm 15.24mm 600mil LongPads -0 -32 -32 -Package_DIP -DIP-32_W15.24mm_SMDSocket_SmallPads -32-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), SMDSocket, SmallPads -THT DIP DIL PDIP 2.54mm 15.24mm 600mil SMDSocket SmallPads -0 -32 -32 -Package_DIP -DIP-32_W15.24mm_Socket -32-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket -THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket -0 -32 -32 -Package_DIP -DIP-32_W15.24mm_Socket_LongPads -32-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket, LongPads -THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket LongPads -0 -32 -32 -Package_DIP -DIP-32_W16.51mm_SMDSocket_LongPads -32-lead though-hole mounted DIP package, row spacing 16.51 mm (650 mils), SMDSocket, LongPads -THT DIP DIL PDIP 2.54mm 16.51mm 650mil SMDSocket LongPads -0 -32 -32 -Package_DIP -DIP-40_W15.24mm -40-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils) -THT DIP DIL PDIP 2.54mm 15.24mm 600mil -0 -40 -40 -Package_DIP -DIP-40_W15.24mm_LongPads -40-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), LongPads -THT DIP DIL PDIP 2.54mm 15.24mm 600mil LongPads -0 -40 -40 -Package_DIP -DIP-40_W15.24mm_SMDSocket_SmallPads -40-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), SMDSocket, SmallPads -THT DIP DIL PDIP 2.54mm 15.24mm 600mil SMDSocket SmallPads -0 -40 -40 -Package_DIP -DIP-40_W15.24mm_Socket -40-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket -THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket -0 -40 -40 -Package_DIP -DIP-40_W15.24mm_Socket_LongPads -40-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket, LongPads -THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket LongPads -0 -40 -40 -Package_DIP -DIP-40_W16.51mm_SMDSocket_LongPads -40-lead though-hole mounted DIP package, row spacing 16.51 mm (650 mils), SMDSocket, LongPads -THT DIP DIL PDIP 2.54mm 16.51mm 650mil SMDSocket LongPads -0 -40 -40 -Package_DIP -DIP-40_W25.4mm -40-lead though-hole mounted DIP package, row spacing 25.4 mm (1000 mils) -THT DIP DIL PDIP 2.54mm 25.4mm 1000mil -0 -40 -40 -Package_DIP -DIP-40_W25.4mm_LongPads -40-lead though-hole mounted DIP package, row spacing 25.4 mm (1000 mils), LongPads -THT DIP DIL PDIP 2.54mm 25.4mm 1000mil LongPads -0 -40 -40 -Package_DIP -DIP-40_W25.4mm_SMDSocket_SmallPads -40-lead though-hole mounted DIP package, row spacing 25.4 mm (1000 mils), SMDSocket, SmallPads -THT DIP DIL PDIP 2.54mm 25.4mm 1000mil SMDSocket SmallPads -0 -40 -40 -Package_DIP -DIP-40_W25.4mm_Socket -40-lead though-hole mounted DIP package, row spacing 25.4 mm (1000 mils), Socket -THT DIP DIL PDIP 2.54mm 25.4mm 1000mil Socket -0 -40 -40 -Package_DIP -DIP-40_W25.4mm_Socket_LongPads -40-lead though-hole mounted DIP package, row spacing 25.4 mm (1000 mils), Socket, LongPads -THT DIP DIL PDIP 2.54mm 25.4mm 1000mil Socket LongPads -0 -40 -40 -Package_DIP -DIP-40_W26.67mm_SMDSocket_LongPads -40-lead though-hole mounted DIP package, row spacing 26.67 mm (1050 mils), SMDSocket, LongPads -THT DIP DIL PDIP 2.54mm 26.669999999999998mm 1050mil SMDSocket LongPads -0 -40 -40 -Package_DIP -DIP-42_W15.24mm -42-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils) -THT DIP DIL PDIP 2.54mm 15.24mm 600mil -0 -42 -42 -Package_DIP -DIP-42_W15.24mm_LongPads -42-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), LongPads -THT DIP DIL PDIP 2.54mm 15.24mm 600mil LongPads -0 -42 -42 -Package_DIP -DIP-42_W15.24mm_SMDSocket_SmallPads -42-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), SMDSocket, SmallPads -THT DIP DIL PDIP 2.54mm 15.24mm 600mil SMDSocket SmallPads -0 -42 -42 -Package_DIP -DIP-42_W15.24mm_Socket -42-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket -THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket -0 -42 -42 -Package_DIP -DIP-42_W15.24mm_Socket_LongPads -42-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket, LongPads -THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket LongPads -0 -42 -42 -Package_DIP -DIP-42_W16.51mm_SMDSocket_LongPads -42-lead though-hole mounted DIP package, row spacing 16.51 mm (650 mils), SMDSocket, LongPads -THT DIP DIL PDIP 2.54mm 16.51mm 650mil SMDSocket LongPads -0 -42 -42 -Package_DIP -DIP-48_W15.24mm -48-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils) -THT DIP DIL PDIP 2.54mm 15.24mm 600mil -0 -48 -48 -Package_DIP -DIP-48_W15.24mm_LongPads -48-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), LongPads -THT DIP DIL PDIP 2.54mm 15.24mm 600mil LongPads -0 -48 -48 -Package_DIP -DIP-48_W15.24mm_SMDSocket_SmallPads -48-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), SMDSocket, SmallPads -THT DIP DIL PDIP 2.54mm 15.24mm 600mil SMDSocket SmallPads -0 -48 -48 -Package_DIP -DIP-48_W15.24mm_Socket -48-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket -THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket -0 -48 -48 -Package_DIP -DIP-48_W15.24mm_Socket_LongPads -48-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket, LongPads -THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket LongPads -0 -48 -48 -Package_DIP -DIP-48_W16.51mm_SMDSocket_LongPads -48-lead though-hole mounted DIP package, row spacing 16.51 mm (650 mils), SMDSocket, LongPads -THT DIP DIL PDIP 2.54mm 16.51mm 650mil SMDSocket LongPads -0 -48 -48 -Package_DIP -DIP-64_W15.24mm -64-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils) -THT DIP DIL PDIP 2.54mm 15.24mm 600mil -0 -64 -64 -Package_DIP -DIP-64_W15.24mm_LongPads -64-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), LongPads -THT DIP DIL PDIP 2.54mm 15.24mm 600mil LongPads -0 -64 -64 -Package_DIP -DIP-64_W15.24mm_SMDSocket_SmallPads -64-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), SMDSocket, SmallPads -THT DIP DIL PDIP 2.54mm 15.24mm 600mil SMDSocket SmallPads -0 -64 -64 -Package_DIP -DIP-64_W15.24mm_Socket -64-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket -THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket -0 -64 -64 -Package_DIP -DIP-64_W15.24mm_Socket_LongPads -64-lead though-hole mounted DIP package, row spacing 15.24 mm (600 mils), Socket, LongPads -THT DIP DIL PDIP 2.54mm 15.24mm 600mil Socket LongPads -0 -64 -64 -Package_DIP -DIP-64_W16.51mm_SMDSocket_LongPads -64-lead though-hole mounted DIP package, row spacing 16.51 mm (650 mils), SMDSocket, LongPads -THT DIP DIL PDIP 2.54mm 16.51mm 650mil SMDSocket LongPads -0 -64 -64 -Package_DIP -DIP-64_W22.86mm -64-lead though-hole mounted DIP package, row spacing 22.86 mm (900 mils) -THT DIP DIL PDIP 2.54mm 22.86mm 900mil -0 -64 -64 -Package_DIP -DIP-64_W22.86mm_LongPads -64-lead though-hole mounted DIP package, row spacing 22.86 mm (900 mils), LongPads -THT DIP DIL PDIP 2.54mm 22.86mm 900mil LongPads -0 -64 -64 -Package_DIP -DIP-64_W22.86mm_SMDSocket_SmallPads -64-lead though-hole mounted DIP package, row spacing 22.86 mm (900 mils), SMDSocket, SmallPads -THT DIP DIL PDIP 2.54mm 22.86mm 900mil SMDSocket SmallPads -0 -64 -64 -Package_DIP -DIP-64_W22.86mm_Socket -64-lead though-hole mounted DIP package, row spacing 22.86 mm (900 mils), Socket -THT DIP DIL PDIP 2.54mm 22.86mm 900mil Socket -0 -64 -64 -Package_DIP -DIP-64_W22.86mm_Socket_LongPads -64-lead though-hole mounted DIP package, row spacing 22.86 mm (900 mils), Socket, LongPads -THT DIP DIL PDIP 2.54mm 22.86mm 900mil Socket LongPads -0 -64 -64 -Package_DIP -DIP-64_W24.13mm_SMDSocket_LongPads -64-lead though-hole mounted DIP package, row spacing 24.13 mm (950 mils), SMDSocket, LongPads -THT DIP DIL PDIP 2.54mm 24.13mm 950mil SMDSocket LongPads -0 -64 -64 -Package_DIP -DIP-64_W25.4mm -64-lead though-hole mounted DIP package, row spacing 25.4 mm (1000 mils) -THT DIP DIL PDIP 2.54mm 25.4mm 1000mil -0 -64 -64 -Package_DIP -DIP-64_W25.4mm_LongPads -64-lead though-hole mounted DIP package, row spacing 25.4 mm (1000 mils), LongPads -THT DIP DIL PDIP 2.54mm 25.4mm 1000mil LongPads -0 -64 -64 -Package_DIP -DIP-64_W25.4mm_SMDSocket_SmallPads -64-lead though-hole mounted DIP package, row spacing 25.4 mm (1000 mils), SMDSocket, SmallPads -THT DIP DIL PDIP 2.54mm 25.4mm 1000mil SMDSocket SmallPads -0 -64 -64 -Package_DIP -DIP-64_W25.4mm_Socket -64-lead though-hole mounted DIP package, row spacing 25.4 mm (1000 mils), Socket -THT DIP DIL PDIP 2.54mm 25.4mm 1000mil Socket -0 -64 -64 -Package_DIP -DIP-64_W25.4mm_Socket_LongPads -64-lead though-hole mounted DIP package, row spacing 25.4 mm (1000 mils), Socket, LongPads -THT DIP DIL PDIP 2.54mm 25.4mm 1000mil Socket LongPads -0 -64 -64 -Package_DIP -DIP-64_W26.67mm_SMDSocket_LongPads -64-lead though-hole mounted DIP package, row spacing 26.67 mm (1050 mils), SMDSocket, LongPads -THT DIP DIL PDIP 2.54mm 26.669999999999998mm 1050mil SMDSocket LongPads -0 -64 -64 -Package_DIP -Fairchild_LSOP-8 -8-Lead, 300\" Wide, Surface Mount Package (https://www.fairchildsemi.com/package-drawings/ML/MLSOP08A.pdf) -LSOP 2.54mm 300mil -0 -8 -8 -Package_DIP -PowerIntegrations_PDIP-8B -Power Integrations variant of 8-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads, see https://www.power.com/sites/default/files/product-docs/lnk520.pdf -THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads -0 -7 -7 -Package_DIP -PowerIntegrations_PDIP-8C -Power Integrations variant of 8-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads, see https://ac-dc.power.com/sites/default/files/product-docs/tinyswitch-iii_family_datasheet.pdf -THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads -0 -7 -7 -Package_DIP -PowerIntegrations_SDIP-10C -PowerIntegrations variant of 10-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils), LongPads, see https://www.power.com/sites/default/files/product-docs/tophx_family_datasheet.pdf -THT DIP DIL PDIP 2.54mm 7.62mm 300mil LongPads -0 -9 -9 -Package_DIP -PowerIntegrations_SMD-8 -PowerIntegrations variant of 8-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils), see https://www.power.com/sites/default/files/product-docs/lnk520.pdf -SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil -0 -8 -8 -Package_DIP -PowerIntegrations_SMD-8B -PowerIntegrations variant of 8-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils), see https://www.power.com/sites/default/files/product-docs/lnk520.pdf -SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil -0 -7 -7 -Package_DIP -PowerIntegrations_SMD-8C -PowerIntegrations variant of 8-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils), see https://ac-dc.power.com/sites/default/files/product-docs/tinyswitch-iii_family_datasheet.pdf -SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil -0 -7 -7 -Package_DIP -PowerIntegrations_eDIP-12B -Power Integrations eDIP-12B, see https://www.power.com/sites/default/files/product-docs/linkswitch-pl_family_datasheet.pdf -THT DIP DIL PDIP 2.54mm 7.62mm 300mil -0 -11 -11 -Package_DIP -SMDIP-4_W7.62mm -4-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil -0 -4 -4 -Package_DIP -SMDIP-4_W9.53mm -4-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil -0 -4 -4 -Package_DIP -SMDIP-4_W9.53mm_Clearance8mm -4-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils), Clearance8mm -SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil Clearance8mm -0 -4 -4 -Package_DIP -SMDIP-4_W11.48mm -4-lead surface-mounted (SMD) DIP package, row spacing 11.48 mm (451 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 11.48mm 451mil -0 -4 -4 -Package_DIP -SMDIP-6_W7.62mm -6-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil -0 -6 -6 -Package_DIP -SMDIP-6_W9.53mm -6-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil -0 -6 -6 -Package_DIP -SMDIP-6_W9.53mm_Clearance8mm -6-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils), Clearance8mm -SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil Clearance8mm -0 -6 -6 -Package_DIP -SMDIP-6_W11.48mm -6-lead surface-mounted (SMD) DIP package, row spacing 11.48 mm (451 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 11.48mm 451mil -0 -6 -6 -Package_DIP -SMDIP-8_W7.62mm -8-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil -0 -8 -8 -Package_DIP -SMDIP-8_W9.53mm -8-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil -0 -8 -8 -Package_DIP -SMDIP-8_W9.53mm_Clearance8mm -8-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils), Clearance8mm -SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil Clearance8mm -0 -8 -8 -Package_DIP -SMDIP-8_W11.48mm -8-lead surface-mounted (SMD) DIP package, row spacing 11.48 mm (451 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 11.48mm 451mil -0 -8 -8 -Package_DIP -SMDIP-10_W7.62mm -10-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil -0 -10 -10 -Package_DIP -SMDIP-10_W9.53mm -10-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil -0 -10 -10 -Package_DIP -SMDIP-10_W9.53mm_Clearance8mm -10-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils), Clearance8mm -SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil Clearance8mm -0 -10 -10 -Package_DIP -SMDIP-10_W11.48mm -10-lead surface-mounted (SMD) DIP package, row spacing 11.48 mm (451 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 11.48mm 451mil -0 -10 -10 -Package_DIP -SMDIP-12_W7.62mm -12-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil -0 -12 -12 -Package_DIP -SMDIP-12_W9.53mm -12-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil -0 -12 -12 -Package_DIP -SMDIP-12_W9.53mm_Clearance8mm -12-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils), Clearance8mm -SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil Clearance8mm -0 -12 -12 -Package_DIP -SMDIP-12_W11.48mm -12-lead surface-mounted (SMD) DIP package, row spacing 11.48 mm (451 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 11.48mm 451mil -0 -12 -12 -Package_DIP -SMDIP-14_W7.62mm -14-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil -0 -14 -14 -Package_DIP -SMDIP-14_W9.53mm -14-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil -0 -14 -14 -Package_DIP -SMDIP-14_W9.53mm_Clearance8mm -14-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils), Clearance8mm -SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil Clearance8mm -0 -14 -14 -Package_DIP -SMDIP-14_W11.48mm -14-lead surface-mounted (SMD) DIP package, row spacing 11.48 mm (451 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 11.48mm 451mil -0 -14 -14 -Package_DIP -SMDIP-16_W7.62mm -16-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil -0 -16 -16 -Package_DIP -SMDIP-16_W9.53mm -16-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil -0 -16 -16 -Package_DIP -SMDIP-16_W9.53mm_Clearance8mm -16-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils), Clearance8mm -SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil Clearance8mm -0 -16 -16 -Package_DIP -SMDIP-16_W11.48mm -16-lead surface-mounted (SMD) DIP package, row spacing 11.48 mm (451 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 11.48mm 451mil -0 -16 -16 -Package_DIP -SMDIP-18_W7.62mm -18-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil -0 -18 -18 -Package_DIP -SMDIP-18_W9.53mm -18-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil -0 -18 -18 -Package_DIP -SMDIP-18_W9.53mm_Clearance8mm -18-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils), Clearance8mm -SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil Clearance8mm -0 -18 -18 -Package_DIP -SMDIP-18_W11.48mm -18-lead surface-mounted (SMD) DIP package, row spacing 11.48 mm (451 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 11.48mm 451mil -0 -18 -18 -Package_DIP -SMDIP-20_W7.62mm -20-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil -0 -20 -20 -Package_DIP -SMDIP-20_W9.53mm -20-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil -0 -20 -20 -Package_DIP -SMDIP-20_W9.53mm_Clearance8mm -20-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils), Clearance8mm -SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil Clearance8mm -0 -20 -20 -Package_DIP -SMDIP-20_W11.48mm -20-lead surface-mounted (SMD) DIP package, row spacing 11.48 mm (451 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 11.48mm 451mil -0 -20 -20 -Package_DIP -SMDIP-22_W7.62mm -22-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil -0 -22 -22 -Package_DIP -SMDIP-22_W9.53mm -22-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil -0 -22 -22 -Package_DIP -SMDIP-22_W9.53mm_Clearance8mm -22-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils), Clearance8mm -SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil Clearance8mm -0 -22 -22 -Package_DIP -SMDIP-22_W11.48mm -22-lead surface-mounted (SMD) DIP package, row spacing 11.48 mm (451 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 11.48mm 451mil -0 -22 -22 -Package_DIP -SMDIP-24_W7.62mm -24-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil -0 -24 -24 -Package_DIP -SMDIP-24_W9.53mm -24-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil -0 -24 -24 -Package_DIP -SMDIP-24_W11.48mm -24-lead surface-mounted (SMD) DIP package, row spacing 11.48 mm (451 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 11.48mm 451mil -0 -24 -24 -Package_DIP -SMDIP-24_W15.24mm -24-lead surface-mounted (SMD) DIP package, row spacing 15.24 mm (600 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 15.24mm 600mil -0 -24 -24 -Package_DIP -SMDIP-28_W15.24mm -28-lead surface-mounted (SMD) DIP package, row spacing 15.24 mm (600 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 15.24mm 600mil -0 -28 -28 -Package_DIP -SMDIP-32_W7.62mm -32-lead surface-mounted (SMD) DIP package, row spacing 7.62 mm (300 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 7.62mm 300mil -0 -32 -32 -Package_DIP -SMDIP-32_W9.53mm -32-lead surface-mounted (SMD) DIP package, row spacing 9.53 mm (375 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 9.53mm 375mil -0 -32 -32 -Package_DIP -SMDIP-32_W11.48mm -32-lead surface-mounted (SMD) DIP package, row spacing 11.48 mm (451 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 11.48mm 451mil -0 -32 -32 -Package_DIP -SMDIP-32_W15.24mm -32-lead surface-mounted (SMD) DIP package, row spacing 15.24 mm (600 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 15.24mm 600mil -0 -32 -32 -Package_DIP -SMDIP-40_W15.24mm -40-lead surface-mounted (SMD) DIP package, row spacing 15.24 mm (600 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 15.24mm 600mil -0 -40 -40 -Package_DIP -SMDIP-40_W25.24mm -40-lead surface-mounted (SMD) DIP package, row spacing 25.24 mm (993 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 25.24mm 993mil -0 -40 -40 -Package_DIP -SMDIP-42_W15.24mm -42-lead surface-mounted (SMD) DIP package, row spacing 15.24 mm (600 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 15.24mm 600mil -0 -42 -42 -Package_DIP -SMDIP-48_W15.24mm -48-lead surface-mounted (SMD) DIP package, row spacing 15.24 mm (600 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 15.24mm 600mil -0 -48 -48 -Package_DIP -SMDIP-64_W15.24mm -64-lead surface-mounted (SMD) DIP package, row spacing 15.24 mm (600 mils) -SMD DIP DIL PDIP SMDIP 2.54mm 15.24mm 600mil -0 -64 -64 -Package_DIP -Toshiba_11-7A9 -Toshiba 11-7A9 package, like 6-lead dip package with missing pin 5, row spacing 7.62 mm (300 mils), https://toshiba.semicon-storage.com/info/docget.jsp?did=1421&prodName=TLP3021(S) -Toshiba 11-7A9 DIL DIP PDIP 2.54mm 7.62mm 300mil -0 -5 -5 -Package_DIP -Vishay_HVM-DIP-3_W7.62mm -3-lead though-hole mounted high-volatge DIP package (based on standard DIP-4), row spacing 7.62 mm (300 mils), see https://www.vishay.com/docs/91361/hexdip.pdf -THT DIP DIL PDIP 2.54mm 7.62mm 300mil Vishay HVMDIP HEXDIP -0 -4 -3 -Package_DirectFET -DirectFET_L4 -DirectFET L4 https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=41 -DirectFET L4 MOSFET Infineon -0 -11 -3 -Package_DirectFET -DirectFET_L6 -DirectFET L6 https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=42 -DirectFET L6 MOSFET Infineon -0 -13 -3 -Package_DirectFET -DirectFET_L8 -DirectFET L8 https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=43 -DirectFET L8 MOSFET Infineon -0 -15 -3 -Package_DirectFET -DirectFET_LA -DirectFET LA https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=44 -DirectFET LA MOSFET Infineon -0 -15 -3 -Package_DirectFET -DirectFET_M2 -DirectFET M2 https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=33 -DirectFET M2 MOSFET Infineon -0 -7 -3 -Package_DirectFET -DirectFET_M4 -DirectFET M4 https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=34 -DirectFET M4 MOSFET Infineon -0 -9 -3 -Package_DirectFET -DirectFET_MA -DirectFET MA https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=35 -DirectFET MA MOSFET Infineon -0 -8 -3 -Package_DirectFET -DirectFET_MB -DirectFET MB https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=36 -DirectFET MB MOSFET Infineon -0 -8 -3 -Package_DirectFET -DirectFET_MC -DirectFET MC https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=37 -DirectFET MC MOSFET Infineon -0 -10 -3 -Package_DirectFET -DirectFET_MD -DirectFET MD https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=38 -DirectFET MD MOSFET Infineon -0 -8 -3 -Package_DirectFET -DirectFET_ME -DirectFET ME https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=39 -DirectFET ME MOSFET Infineon -0 -10 -3 -Package_DirectFET -DirectFET_MF -DirectFET MF https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=40 -DirectFET MF MOSFET Infineon -0 -8 -3 -Package_DirectFET -DirectFET_MN -DirectFET MN https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=30 -DirectFET MN MOSFET Infineon -0 -7 -3 -Package_DirectFET -DirectFET_MP -DirectFET MP https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=28 -DirectFET MP MOSFET Infineon -0 -7 -3 -Package_DirectFET -DirectFET_MQ -DirectFET MQ https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=29 -DirectFET MQ MOSFET Infineon -0 -7 -3 -Package_DirectFET -DirectFET_MT -DirectFET MT https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=26 -DirectFET MT MOSFET Infineon -0 -7 -3 -Package_DirectFET -DirectFET_MU -DirectFET MU https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=32 -DirectFET MU MOSFET Infineon -0 -7 -3 -Package_DirectFET -DirectFET_MX -DirectFET MX https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=27 -DirectFET MX MOSFET Infineon -0 -7 -3 -Package_DirectFET -DirectFET_MZ -DirectFET MZ https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=31 -DirectFET MZ MOSFET Infineon -0 -7 -3 -Package_DirectFET -DirectFET_S1 -DirectFET S1 https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=20 -DirectFET S1 MOSFET Infineon -0 -6 -3 -Package_DirectFET -DirectFET_S2 -DirectFET S2 https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=21 -DirectFET S2 MOSFET Infineon -0 -7 -3 -Package_DirectFET -DirectFET_S3C -DirectFET S3C https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=25 -DirectFET S3C MOSFET Infineon -0 -8 -3 -Package_DirectFET -DirectFET_SA -DirectFET SA https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=22 -DirectFET SA MOSFET Infineon -0 -8 -3 -Package_DirectFET -DirectFET_SB -DirectFET SB https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=23 -DirectFET SB MOSFET Infineon -0 -6 -3 -Package_DirectFET -DirectFET_SC -DirectFET SC https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=24 -DirectFET SC MOSFET Infineon -0 -7 -3 -Package_DirectFET -DirectFET_SH -DirectFET SH https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=19 -DirectFET SH MOSFET Infineon -0 -6 -3 -Package_DirectFET -DirectFET_SJ -DirectFET SJ https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=18 -DirectFET SJ MOSFET Infineon -0 -7 -3 -Package_DirectFET -DirectFET_SQ -DirectFET SQ https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=17 -DirectFET SQ MOSFET Infineon -0 -6 -3 -Package_DirectFET -DirectFET_ST -DirectFET ST https://www.infineon.com/dgdl/Infineon-AN-1035-ApplicationNotes-v29_01-EN.pdf?fileId=5546d462533600a40153559159020f76#page=16 -DirectFET ST MOSFET Infineon -0 -7 -3 -Package_LCC -PLCC-20 -PLCC, 20 pins, surface mount -plcc smt -0 -20 -20 -Package_LCC -PLCC-20_SMD-Socket -PLCC, 20 pins, surface mount -plcc smt -0 -20 -20 -Package_LCC -PLCC-20_THT-Socket -PLCC, 20 pins, through hole -plcc leaded -0 -20 -20 -Package_LCC -PLCC-28 -PLCC, 28 pins, surface mount -plcc smt -0 -28 -28 -Package_LCC -PLCC-28_SMD-Socket -PLCC, 28 pins, surface mount -plcc smt -0 -28 -28 -Package_LCC -PLCC-28_THT-Socket -PLCC, 28 pins, through hole -plcc leaded -0 -28 -28 -Package_LCC -PLCC-32_11.4x14.0mm_P1.27mm -PLCC, 32 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/doc0015.pdf), generated with kicad-footprint-generator ipc_plcc_jLead_generator.py -PLCC LCC -0 -32 -32 -Package_LCC -PLCC-32_THT-Socket -PLCC, 32 pins, through hole, http://www.assmann-wsw.com/fileadmin/datasheets/ASS_0981_CO.pdf -plcc leaded -0 -32 -32 -Package_LCC -PLCC-44 -PLCC, 44 pins, surface mount -plcc smt -0 -44 -44 -Package_LCC -PLCC-44_16.6x16.6mm_P1.27mm -PLCC, 44 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), generated with kicad-footprint-generator ipc_plcc_jLead_generator.py -PLCC LCC -0 -44 -44 -Package_LCC -PLCC-44_SMD-Socket -PLCC, 44 pins, surface mount -plcc smt -0 -44 -44 -Package_LCC -PLCC-44_THT-Socket -PLCC, 44 pins, through hole -plcc leaded -0 -44 -44 -Package_LCC -PLCC-52 -PLCC, 52 pins, surface mount -plcc smt -0 -52 -52 -Package_LCC -PLCC-52_SMD-Socket -PLCC, 52 pins, surface mount -plcc smt -0 -52 -52 -Package_LCC -PLCC-52_THT-Socket -PLCC, 52 pins, through hole -plcc leaded -0 -52 -52 -Package_LCC -PLCC-68 -PLCC, 68 pins, surface mount -plcc smt -0 -68 -68 -Package_LCC -PLCC-68_24.2x24.2mm_P1.27mm -PLCC, 68 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), generated with kicad-footprint-generator ipc_plcc_jLead_generator.py -PLCC LCC -0 -68 -68 -Package_LCC -PLCC-68_SMD-Socket -PLCC, 68 pins, surface mount -plcc smt -0 -68 -68 -Package_LCC -PLCC-68_THT-Socket -PLCC, 68 pins, through hole -plcc leaded -0 -68 -68 -Package_LCC -PLCC-84 -PLCC, 84 pins, surface mount -plcc smt -0 -84 -84 -Package_LCC -PLCC-84_29.3x29.3mm_P1.27mm -PLCC, 84 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), generated with kicad-footprint-generator ipc_plcc_jLead_generator.py -PLCC LCC -0 -84 -84 -Package_LCC -PLCC-84_SMD-Socket -PLCC, 84 pins, surface mount -plcc smt -0 -84 -84 -Package_LCC -PLCC-84_THT-Socket -PLCC, 84 pins, through hole -plcc leaded -0 -84 -84 -Package_LGA -AMS_LGA-10-1EP_2.7x4mm_P0.6mm -LGA-10, http://ams.com/eng/content/download/951091/2269479/471718 -lga land grid array -0 -13 -11 -Package_LGA -AMS_LGA-20_4.7x4.5mm_P0.65mm -http://ams.com/eng/content/download/1008631/2361759/498838 -AMS LGA -0 -20 -20 -Package_LGA -AMS_OLGA-8_2x3.1mm_P0.8mm -AMS OLGA, 8 Pin (https://ams.com/documents/20143/36005/AS7341_DS000504_3-00.pdf/#page=63) -AMS OLGA NoLead -0 -8 -8 -Package_LGA -Bosch_LGA-8_2.5x2.5mm_P0.65mm_ClockwisePinNumbering -LGA-8 -lga land grid array -0 -8 -8 -Package_LGA -Bosch_LGA-8_2x2.5mm_P0.65mm_ClockwisePinNumbering -LGA-8, https://ae-bst.resource.bosch.com/media/_tech/media/datasheets/BST-BMP280-DS001-18.pdf -lga land grid array -0 -8 -8 -Package_LGA -Bosch_LGA-8_3x3mm_P0.8mm_ClockwisePinNumbering -Bosch LGA, 8 Pin (https://ae-bst.resource.bosch.com/media/_tech/media/datasheets/BST-BME680-DS001-00.pdf#page=44), generated with kicad-footprint-generator ipc_noLead_generator.py -Bosch LGA NoLead -0 -8 -8 -Package_LGA -Bosch_LGA-14_3x2.5mm_P0.5mm -LGA-14 Bosch https://ae-bst.resource.bosch.com/media/_tech/media/datasheets/BST-BMI160-DS000-07.pdf -lga land grid array -0 -14 -14 -Package_LGA -Kionix_LGA-12_2x2mm_P0.5mm_LayoutBorder2x4y -Kionix LGA, 12 Pin (http://kionixfs.kionix.com/en/document/TN008-PCB-Design-Guidelines-for-2x2-LGA-Sensors.pdf#page=4), generated with kicad-footprint-generator ipc_noLead_generator.py -Kionix LGA NoLead -0 -12 -12 -Package_LGA -LGA-8_3x5mm_P1.25mm -LGA-8 -lga land grid array -0 -8 -8 -Package_LGA -LGA-12_2x2mm_P0.5mm -LGA12 -lga land grid array -0 -12 -12 -Package_LGA -LGA-14_2x2mm_P0.35mm_LayoutBorder3x4y -LGA, 14 Pin (http://www.st.com/resource/en/datasheet/lis2dh.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -LGA NoLead -0 -14 -14 -Package_LGA -LGA-14_3x2.5mm_P0.5mm_LayoutBorder3x4y -LGA, 14 Pin (https://www.st.com/resource/en/datasheet/lsm6ds3tr-c.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -LGA NoLead -0 -14 -14 -Package_LGA -LGA-14_3x5mm_P0.8mm_LayoutBorder1x6y -LGA, 14 Pin (http://www.st.com/resource/en/datasheet/lsm303dlhc.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -LGA NoLead -0 -14 -14 -Package_LGA -LGA-16_3x3mm_P0.5mm -http://www.memsic.com/userfiles/files/DataSheets/Magnetic-Sensors-Datasheets/MMC5883MA-RevC.pdf -lga land grid array -0 -16 -16 -Package_LGA -LGA-16_3x3mm_P0.5mm_LayoutBorder3x5y -LGA, 16 Pin (http://www.st.com/resource/en/datasheet/lis331hh.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -LGA NoLead -0 -16 -16 -Package_LGA -LGA-16_4x4mm_P0.65mm_LayoutBorder4x4y -LGA, 16 Pin (http://www.st.com/resource/en/datasheet/l3gd20.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -LGA NoLead -0 -16 -16 -Package_LGA -LGA-24L_3x3.5mm_P0.43mm -LGA 24L 3x3.5mm Pitch 0.43mm -LGA 24L 3x3.5mm Pitch 0.43mm -0 -24 -24 -Package_LGA -LGA-28_5.2x3.8mm_P0.5mm -LGA 28 5.2x3.8mm Pitch 0.5mm -LGA 28 5.2x3.8mm Pitch 0.5mm -0 -28 -28 -Package_LGA -Linear_LGA-133_15.0x15.0mm_Layout12x12_P1.27mm -Analog Devices (Linear Tech), 133-pin LGA uModule, 15.0x15.0x4.32mm, https://www.analog.com/media/en/technical-documentation/data-sheets/4637fc.pdf -133 pin lga -0 -133 -133 -Package_LGA -MPS_LGA-18-10EP_12x12mm_P3.3mm -MPS LGA-18 12x12x3.82mm (https://www.monolithicpower.com/en/documentview/productdocument/index/version/2/document_type/Datasheet/lang/en/sku/MPM3550EGLE/document_id/5102/) -MPS LGA -0 -18 -18 -Package_LGA -NXP_LGA-8_3x5mm_P1.25mm_H1.1mm -NXP LGA, 8 Pin (https://www.nxp.com/docs/en/data-sheet/MPL3115A2.pdf#page=42), generated with kicad-footprint-generator ipc_noLead_generator.py -NXP LGA NoLead -0 -8 -8 -Package_LGA -NXP_LGA-8_3x5mm_P1.25mm_H1.2mm -NXP LGA, 8 Pin (https://www.nxp.com/docs/en/data-sheet/MPL115A1.pdf#page=15), generated with kicad-footprint-generator ipc_noLead_generator.py -NXP LGA NoLead -0 -8 -8 -Package_LGA -Rohm_MLGA010V020A_LGA-10_2x2mm_P0.45mm_LayoutBorder_3x2y -Rohm LGA, 10 Pin (https://fscdn.rohm.com/en/techdata_basic/ic/package/Jisso_MLGA010V020A-1-2_Rev005s_E2(MSL3).pdf) -Rohm LGA NoLead -0 -10 -10 -Package_LGA -ST_HLGA-10_2.5x2.5mm_P0.6mm_LayoutBorder3x2y -ST HLGA, 10 Pin (https://www.st.com/resource/en/datasheet/lps25hb.pdf#page=46), generated with kicad-footprint-generator ipc_noLead_generator.py -ST HLGA NoLead -0 -10 -10 -Package_LGA -ST_HLGA-10_2x2mm_P0.5mm_LayoutBorder3x2y -ST HLGA, 10 Pin (https://www.st.com/resource/en/datasheet/lps22hh.pdf#page=55), generated with kicad-footprint-generator ipc_noLead_generator.py -ST HLGA NoLead -0 -10 -10 -Package_LGA -Texas_SIL0008D_MicroSiP-8-1EP_2.8x3mm_P0.65mm_EP1.1x1.9mm -Texas SIL0008D MicroSiP, 8 Pin (http://www.ti.com/lit/ds/symlink/tps82130.pdf#page=19), generated with kicad-footprint-generator ipc_noLead_generator.py -Texas MicroSiP NoLead -0 -12 -9 -Package_LGA -Texas_SIL0008D_MicroSiP-8-1EP_2.8x3mm_P0.65mm_EP1.1x1.9mm_ThermalVias -Texas SIL0008D MicroSiP, 8 Pin (http://www.ti.com/lit/ds/symlink/tps82130.pdf#page=19), generated with kicad-footprint-generator ipc_noLead_generator.py -Texas MicroSiP NoLead -0 -16 -9 -Package_LGA -Texas_SIL0010A_MicroSiP-10-1EP_3.8x3mm_P0.6mm_EP0.7x2.9mm -Texas SIL0010A MicroSiP, 10 Pin (http://www.ti.com/lit/ml/mpds579b/mpds579b.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -Texas MicroSiP NoLead -0 -14 -11 -Package_LGA -Texas_SIL0010A_MicroSiP-10-1EP_3.8x3mm_P0.6mm_EP0.7x2.9mm_ThermalVias -Texas SIL0010A MicroSiP, 10 Pin (http://www.ti.com/lit/ml/mpds579b/mpds579b.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -Texas MicroSiP NoLead -0 -18 -11 -Package_LGA -VLGA-4_2x2.5mm_P1.65mm -VLGA, 4 Pin (https://ww1.microchip.com/downloads/en/DeviceDoc/DSC60XX-Ultra-Small-Ultra-Low-Power-MEMS-Oscillator-DS20005625C.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -VLGA NoLead -0 -4 -4 -Package_QFP -EQFP-144-1EP_20x20mm_P0.5mm_EP4x4mm -EQFP, 144 Pin (https://www.intel.com/content/dam/www/programmable/us/en/pdfs/literature/packaging/04r00482-02.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -EQFP QFP -0 -154 -145 -Package_QFP -EQFP-144-1EP_20x20mm_P0.5mm_EP4x4mm_ThermalVias -EQFP, 144 Pin (https://www.intel.com/content/dam/www/programmable/us/en/pdfs/literature/packaging/04r00482-02.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -EQFP QFP -0 -171 -145 -Package_QFP -EQFP-144-1EP_20x20mm_P0.5mm_EP5x5mm -EQFP, 144 Pin (https://www.intel.com/content/dam/www/programmable/us/en/pdfs/literature/packaging/04r00476-02.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -EQFP QFP -0 -161 -145 -Package_QFP -EQFP-144-1EP_20x20mm_P0.5mm_EP5x5mm_ThermalVias -EQFP, 144 Pin (https://www.intel.com/content/dam/www/programmable/us/en/pdfs/literature/packaging/04r00476-02.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -EQFP QFP -0 -187 -145 -Package_QFP -EQFP-144-1EP_20x20mm_P0.5mm_EP6.61x5.615mm -EQFP, 144 Pin (https://www.intel.com/content/dam/www/programmable/us/en/pdfs/literature/packaging/04r00485-02.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -EQFP QFP -0 -165 -145 -Package_QFP -EQFP-144-1EP_20x20mm_P0.5mm_EP6.61x5.615mm_ThermalVias -EQFP, 144 Pin (https://www.intel.com/content/dam/www/programmable/us/en/pdfs/literature/packaging/04r00485-02.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -EQFP QFP -0 -196 -145 -Package_QFP -EQFP-144-1EP_20x20mm_P0.5mm_EP7.2x6.35mm -EQFP, 144 Pin (https://www.intel.com/content/dam/www/programmable/us/en/pdfs/literature/packaging/04r00487-01.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -EQFP QFP -0 -175 -145 -Package_QFP -EQFP-144-1EP_20x20mm_P0.5mm_EP7.2x6.35mm_ThermalVias -EQFP, 144 Pin (https://www.intel.com/content/dam/www/programmable/us/en/pdfs/literature/packaging/04r00487-01.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -EQFP QFP -0 -218 -145 -Package_QFP -EQFP-144-1EP_20x20mm_P0.5mm_EP8.93x8.7mm -EQFP, 144 Pin (https://www.intel.com/content/dam/www/programmable/us/en/pdfs/literature/packaging/04r00479-02.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -EQFP QFP -0 -194 -145 -Package_QFP -EQFP-144-1EP_20x20mm_P0.5mm_EP8.93x8.7mm_ThermalVias -EQFP, 144 Pin (https://www.intel.com/content/dam/www/programmable/us/en/pdfs/literature/packaging/04r00479-02.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -EQFP QFP -0 -259 -145 -Package_QFP -HTQFP-64-1EP_10x10mm_P0.5mm_EP8x8mm -64-Lead Plastic Thin Quad Flatpack (PT) - 10x10x1 mm Body, 2.00 mm Footprint [HTQFP] thermal pad -HTQFP-64 Pitch 0.5 -0 -69 -65 -Package_QFP -HTQFP-64-1EP_10x10mm_P0.5mm_EP8x8mm_Mask4.4x4.4mm_ThermalVias -64-Lead Plastic Thin Quad Flatpack (PT) - 10x10x1 mm Body, 2.00 mm Footprint [HTQFP] thermal pad -HTQFP-64 Pitch 0.5 -0 -135 -65 -Package_QFP -LQFP-32_5x5mm_P0.5mm -LQFP, 32 Pin (https://www.nxp.com/docs/en/package-information/SOT401-1.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -LQFP QFP -0 -32 -32 -Package_QFP -LQFP-32_7x7mm_P0.8mm -LQFP, 32 Pin (https://www.nxp.com/docs/en/package-information/SOT358-1.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -LQFP QFP -0 -32 -32 -Package_QFP -LQFP-36_7x7mm_P0.65mm -LQFP, 36 Pin (https://www.onsemi.com/pub/Collateral/561AV.PDF), generated with kicad-footprint-generator ipc_gullwing_generator.py -LQFP QFP -0 -36 -36 -Package_QFP -LQFP-44_10x10mm_P0.8mm -LQFP, 44 Pin (https://www.nxp.com/files-static/shared/doc/package_info/98ASS23225W.pdf?&fsrch=1), generated with kicad-footprint-generator ipc_gullwing_generator.py -LQFP QFP -0 -44 -44 -Package_QFP -LQFP-48-1EP_7x7mm_P0.5mm_EP3.6x3.6mm -LQFP, 48 Pin (http://www.analog.com/media/en/technical-documentation/data-sheets/LTC7810.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -LQFP QFP -0 -58 -49 -Package_QFP -LQFP-48-1EP_7x7mm_P0.5mm_EP3.6x3.6mm_ThermalVias -LQFP, 48 Pin (http://www.analog.com/media/en/technical-documentation/data-sheets/LTC7810.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -LQFP QFP -0 -75 -49 -Package_QFP -LQFP-48_7x7mm_P0.5mm -LQFP, 48 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/ltc2358-16.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -LQFP QFP -0 -48 -48 -Package_QFP -LQFP-52-1EP_10x10mm_P0.65mm_EP4.8x4.8mm -LQFP, 52 Pin (https://www.onsemi.com/pub/Collateral/848H-01.PDF), generated with kicad-footprint-generator ipc_gullwing_generator.py -LQFP QFP -0 -62 -53 -Package_QFP -LQFP-52-1EP_10x10mm_P0.65mm_EP4.8x4.8mm_ThermalVias -LQFP, 52 Pin (https://www.onsemi.com/pub/Collateral/848H-01.PDF), generated with kicad-footprint-generator ipc_gullwing_generator.py -LQFP QFP -0 -95 -53 -Package_QFP -LQFP-52_10x10mm_P0.65mm -LQFP, 52 Pin (https://www.nxp.com/docs/en/package-information/98ARL10526D.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -LQFP QFP -0 -52 -52 -Package_QFP -LQFP-52_14x14mm_P1mm -LQFP, 52 Pin (http://www.holtek.com/documents/10179/116711/HT1632Cv170.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -LQFP QFP -0 -52 -52 -Package_QFP -LQFP-64-1EP_10x10mm_P0.5mm_EP5x5mm -LQFP, 64 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/adv7611.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -LQFP QFP -0 -90 -65 -Package_QFP -LQFP-64-1EP_10x10mm_P0.5mm_EP5x5mm_ThermalVias -LQFP, 64 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/adv7611.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -LQFP QFP -0 -107 -65 -Package_QFP -LQFP-64-1EP_10x10mm_P0.5mm_EP6.5x6.5mm -LQFP, 64 Pin (https://www.nxp.com/files-static/shared/doc/package_info/98ARH98426A.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -LQFP QFP -0 -90 -65 -Package_QFP -LQFP-64-1EP_10x10mm_P0.5mm_EP6.5x6.5mm_ThermalVias -LQFP, 64 Pin (https://www.nxp.com/files-static/shared/doc/package_info/98ARH98426A.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -LQFP QFP -0 -127 -65 -Package_QFP -LQFP-64_7x7mm_P0.4mm -LQFP, 64 Pin (https://www.nxp.com/docs/en/package-information/SOT414-1.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -LQFP QFP -0 -64 -64 -Package_QFP -LQFP-64_10x10mm_P0.5mm -LQFP, 64 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/ad7606_7606-6_7606-4.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -LQFP QFP -0 -64 -64 -Package_QFP -LQFP-64_14x14mm_P0.8mm -LQFP, 64 Pin (https://www.nxp.com/docs/en/package-information/SOT791-1.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -LQFP QFP -0 -64 -64 -Package_QFP -LQFP-80_10x10mm_P0.4mm -LQFP, 80 Pin (https://www.renesas.com/eu/en/package-image/pdf/outdrawing/q80.10x10.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -LQFP QFP -0 -80 -80 -Package_QFP -LQFP-80_12x12mm_P0.5mm -LQFP, 80 Pin (https://www.nxp.com/docs/en/package-information/SOT315-1.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -LQFP QFP -0 -80 -80 -Package_QFP -LQFP-80_14x14mm_P0.65mm -LQFP, 80 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/AD9852.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -LQFP QFP -0 -80 -80 -Package_QFP -LQFP-100_14x14mm_P0.5mm -LQFP, 100 Pin (https://www.nxp.com/docs/en/package-information/SOT407-1.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -LQFP QFP -0 -100 -100 -Package_QFP -LQFP-128_14x14mm_P0.4mm -LQFP, 128 Pin (https://www.renesas.com/eu/en/package-image/pdf/outdrawing/q128.14x14.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -LQFP QFP -0 -128 -128 -Package_QFP -LQFP-128_14x20mm_P0.5mm -LQFP, 128 Pin (https://www.nxp.com/docs/en/package-information/SOT425-1.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -LQFP QFP -0 -128 -128 -Package_QFP -LQFP-144_20x20mm_P0.5mm -LQFP, 144 Pin (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf#page=425), generated with kicad-footprint-generator ipc_gullwing_generator.py -LQFP QFP -0 -144 -144 -Package_QFP -LQFP-160_24x24mm_P0.5mm -LQFP, 160 Pin (https://www.nxp.com/docs/en/package-information/SOT435-1.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -LQFP QFP -0 -160 -160 -Package_QFP -LQFP-176_20x20mm_P0.4mm -LQFP, 176 Pin (https://www.onsemi.com/pub/Collateral/566DB.PDF), generated with kicad-footprint-generator ipc_gullwing_generator.py -LQFP QFP -0 -176 -176 -Package_QFP -LQFP-176_24x24mm_P0.5mm -LQFP, 176 Pin (https://www.st.com/resource/en/datasheet/stm32f207vg.pdf#page=163), generated with kicad-footprint-generator ipc_gullwing_generator.py -LQFP QFP -0 -176 -176 -Package_QFP -LQFP-208_28x28mm_P0.5mm -LQFP, 208 Pin (https://www.nxp.com/docs/en/package-information/SOT459-1.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -LQFP QFP -0 -208 -208 -Package_QFP -LQFP-216_24x24mm_P0.4mm -LQFP, 216 Pin (https://www.onsemi.com/pub/Collateral/561BE.PDF), generated with kicad-footprint-generator ipc_gullwing_generator.py -LQFP QFP -0 -216 -216 -Package_QFP -MQFP-44_10x10mm_P0.8mm -MQFP, 44 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/ad7722.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -MQFP QFP -0 -44 -44 -Package_QFP -PQFP-32_5x5mm_P0.5mm -PQFP, 32 Pin (https://www.ti.com/lit/ds/symlink/ads127l01.pdf#page=87), generated with kicad-footprint-generator ipc_gullwing_generator.py -PQFP QFP -0 -32 -32 -Package_QFP -PQFP-44_10x10mm_P0.8mm -44-Lead Plastic Quad Flatpack - 10x10x2.5mm Body (http://www.onsemi.com/pub/Collateral/122BK.PDF) -PQFP 0.8 -0 -44 -44 -Package_QFP -PQFP-80_14x20mm_P0.8mm -PQFP80 14x20 / QIP80E CASE 122BS (see ON Semiconductor 122BS.PDF) -QFP 0.8 -0 -80 -80 -Package_QFP -PQFP-100_14x20mm_P0.65mm -PQFP, 100 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), generated with kicad-footprint-generator ipc_gullwing_generator.py -PQFP QFP -0 -100 -100 -Package_QFP -PQFP-112_20x20mm_P0.65mm -PQFP, 112 pins, 20mm sq body, 0.65mm pitch (http://cache.freescale.com/files/shared/doc/package_info/98ASS23330W.pdf, http://www.nxp.com/docs/en/application-note/AN4388.pdf) -PQFP 112 -0 -112 -112 -Package_QFP -PQFP-132_24x24mm_P0.635mm -PQFP, 132 pins, 24mm sq body, 0.635mm pitch (https://www.intel.com/content/dam/www/public/us/en/documents/packaging-databooks/packaging-chapter-02-databook.pdf, http://www.nxp.com/docs/en/application-note/AN4388.pdf) -PQFP 132 -0 -132 -132 -Package_QFP -PQFP-132_24x24mm_P0.635mm_i386 -PQFP, 132 pins, 24mm sq body, 0.635mm pitch, Intel 386EX (https://www.intel.com/content/dam/www/public/us/en/documents/packaging-databooks/packaging-chapter-02-databook.pdf, http://www.nxp.com/docs/en/application-note/AN4388.pdf) -PQFP 132 Intel 386EX -0 -132 -132 -Package_QFP -PQFP-144_28x28mm_P0.65mm -PQFP, 144 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), generated with kicad-footprint-generator ipc_gullwing_generator.py -PQFP QFP -0 -144 -144 -Package_QFP -PQFP-160_28x28mm_P0.65mm -PQFP, 160 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), generated with kicad-footprint-generator ipc_gullwing_generator.py -PQFP QFP -0 -160 -160 -Package_QFP -PQFP-208_28x28mm_P0.5mm -PQFP, 208 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), generated with kicad-footprint-generator ipc_gullwing_generator.py -PQFP QFP -0 -208 -208 -Package_QFP -PQFP-240_32.1x32.1mm_P0.5mm -PQFP, 240 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), generated with kicad-footprint-generator ipc_gullwing_generator.py -PQFP QFP -0 -240 -240 -Package_QFP -PQFP-256_28x28mm_P0.4mm -PQFP256 28x28 / QFP256J CASE 122BX (see ON Semiconductor 122BX.PDF) -QFP 0.4 -0 -256 -256 -Package_QFP -TQFP-32_7x7mm_P0.8mm -32-Lead Plastic Thin Quad Flatpack (PT) - 7x7x1.0 mm Body, 2.00 mm [TQFP] (see Microchip Packaging Specification 00000049BS.pdf) -QFP 0.8 -0 -32 -32 -Package_QFP -TQFP-44-1EP_10x10mm_P0.8mm_EP4.5x4.5mm -44-Lead Plastic Thin Quad Flatpack (MW) - 10x10x1.0 mm Body [TQFP] With 4.5x4.5 mm Exposed Pad (see Microchip Packaging Specification 00000049BS.pdf) -QFP 0.8 -0 -54 -45 -Package_QFP -TQFP-44_10x10mm_P0.8mm -44-Lead Plastic Thin Quad Flatpack (PT) - 10x10x1.0 mm Body [TQFP] (see Microchip Packaging Specification 00000049BS.pdf) -QFP 0.8 -0 -44 -44 -Package_QFP -TQFP-48-1EP_7x7mm_P0.5mm_EP3.5x3.5mm -48-Lead Thin Quad Flatpack (PT) - 7x7x1.0 mm Body [TQFP] With Exposed Pad (see Microchip Packaging Specification 00000049BS.pdf) -QFP 0.5 -0 -53 -49 -Package_QFP -TQFP-48-1EP_7x7mm_P0.5mm_EP4.11x4.11mm -TQFP, 48 Pin (https://www.lumissil.com/assets/pdf/core/IS31FL3236_DS.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -TQFP QFP -0 -65 -49 -Package_QFP -TQFP-48-1EP_7x7mm_P0.5mm_EP5x5mm -TQFP, 48 Pin (https://www.trinamic.com/fileadmin/assets/Products/ICs_Documents/TMC2100_datasheet_Rev1.08.pdf (page 45)), generated with kicad-footprint-generator ipc_gullwing_generator.py -TQFP QFP -0 -65 -49 -Package_QFP -TQFP-48-1EP_7x7mm_P0.5mm_EP5x5mm_ThermalVias -TQFP, 48 Pin (https://www.trinamic.com/fileadmin/assets/Products/ICs_Documents/TMC2100_datasheet_Rev1.08.pdf (page 45)), generated with kicad-footprint-generator ipc_gullwing_generator.py -TQFP QFP -0 -91 -49 -Package_QFP -TQFP-48_7x7mm_P0.5mm -TQFP, 48 Pin (https://www.jedec.org/system/files/docs/MS-026D.pdf var ABC), generated with kicad-footprint-generator ipc_gullwing_generator.py -TQFP QFP -0 -48 -48 -Package_QFP -TQFP-52-1EP_10x10mm_P0.65mm_EP6.5x6.5mm -TQFP, 52 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/tqfp_edsv/sv_52_1.pdf), generated with kicad-footprint-generator ipc_qfp_generator.py -TQFP QFP -0 -78 -53 -Package_QFP -TQFP-52-1EP_10x10mm_P0.65mm_EP6.5x6.5mm_ThermalVias -TQFP, 52 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/tqfp_edsv/sv_52_1.pdf), generated with kicad-footprint-generator ipc_qfp_generator.py -TQFP QFP -0 -79 -53 -Package_QFP -TQFP-64-1EP_10x10mm_P0.5mm_EP8x8mm -64-Lead Plastic Thin Quad Flatpack (PT) - 10x10x1 mm Body, 2.00 mm Footprint [TQFP] thermal pad -QFP 0.5 -0 -90 -65 -Package_QFP -TQFP-64_7x7mm_P0.4mm -TQFP64 7x7, 0.4P CASE 932BH (see ON Semiconductor 932BH.PDF) -QFP 0.4 -0 -64 -64 -Package_QFP -TQFP-64_10x10mm_P0.5mm -TQFP, 64 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), generated with kicad-footprint-generator ipc_gullwing_generator.py -TQFP QFP -0 -64 -64 -Package_QFP -TQFP-64_14x14mm_P0.8mm -64-Lead Plastic Thin Quad Flatpack (PF) - 14x14x1 mm Body, 2.00 mm [TQFP] (see Microchip Packaging Specification 00000049BS.pdf) -QFP 0.8 -0 -64 -64 -Package_QFP -TQFP-80-1EP_14x14mm_P0.65mm_EP9.5x9.5mm -80-Lead Plastic Thin Quad Flatpack (PF) - 14x14mm body, 9.5mm sq thermal pad (http://www.analog.com/media/en/technical-documentation/data-sheets/AD9852.pdf) -QFP 0.65 -0 -85 -81 -Package_QFP -TQFP-80_12x12mm_P0.5mm -80-Lead Plastic Thin Quad Flatpack (PT) - 12x12x1 mm Body, 2.00 mm [TQFP] (see Microchip Packaging Specification 00000049BS.pdf) -QFP 0.5 -0 -80 -80 -Package_QFP -TQFP-80_14x14mm_P0.65mm -80-Lead Plastic Thin Quad Flatpack (PF) - 14x14x1 mm Body, 2.00 mm [TQFP] (see Microchip Packaging Specification 00000049BS.pdf) -QFP 0.65 -0 -80 -80 -Package_QFP -TQFP-100-1EP_14x14mm_P0.5mm_EP5x5mm -TQFP, 100 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/tqfp_edsv/sv_100_4.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -TQFP QFP -0 -117 -101 -Package_QFP -TQFP-100-1EP_14x14mm_P0.5mm_EP5x5mm_ThermalVias -TQFP, 100 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/tqfp_edsv/sv_100_4.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -TQFP QFP -0 -143 -101 -Package_QFP -TQFP-100_12x12mm_P0.4mm -100-Lead Plastic Thin Quad Flatpack (PT) - 12x12x1 mm Body, 2.00 mm [TQFP] (see Microchip Packaging Specification 00000049BS.pdf) -QFP 0.4 -0 -100 -100 -Package_QFP -TQFP-100_14x14mm_P0.5mm -TQFP, 100 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), generated with kicad-footprint-generator ipc_gullwing_generator.py -TQFP QFP -0 -100 -100 -Package_QFP -TQFP-120_14x14mm_P0.4mm -TQFP120 14x14 / TQFP120 CASE 932AZ (see ON Semiconductor 932AZ.PDF) -QFP 0.4 -0 -120 -120 -Package_QFP -TQFP-128_14x14mm_P0.4mm -TQFP128 14x14 / TQFP128 CASE 932BB (see ON Semiconductor 932BB.PDF) -QFP 0.4 -0 -128 -128 -Package_QFP -TQFP-144_16x16mm_P0.4mm -144-Lead Plastic Thin Quad Flatpack (PH) - 16x16x1 mm Body, 2.00 mm Footprint [TQFP] (see Microchip Packaging Specification 00000049BS.pdf) -QFP 0.4 -0 -144 -144 -Package_QFP -TQFP-144_20x20mm_P0.5mm -TQFP, 144 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), generated with kicad-footprint-generator ipc_gullwing_generator.py -TQFP QFP -0 -144 -144 -Package_QFP -TQFP-176_24x24mm_P0.5mm -TQFP, 176 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), generated with kicad-footprint-generator ipc_gullwing_generator.py -TQFP QFP -0 -176 -176 -Package_QFP -VQFP-80_14x14mm_P0.65mm -VQFP, 80 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), generated with kicad-footprint-generator ipc_gullwing_generator.py -VQFP QFP -0 -80 -80 -Package_QFP -VQFP-100_14x14mm_P0.5mm -VQFP, 100 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), generated with kicad-footprint-generator ipc_gullwing_generator.py -VQFP QFP -0 -100 -100 -Package_QFP -VQFP-128_14x14mm_P0.4mm -VQFP, 128 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), generated with kicad-footprint-generator ipc_gullwing_generator.py -VQFP QFP -0 -128 -128 -Package_QFP -VQFP-176_20x20mm_P0.4mm -VQFP, 176 Pin (http://www.microsemi.com/index.php?option=com_docman&task=doc_download&gid=131095), generated with kicad-footprint-generator ipc_gullwing_generator.py -VQFP QFP -0 -176 -176 -Package_SIP -PowerIntegrations_eSIP-7C -eSIP-7C Vertical Flat Package with Heatsink Tab, https://ac-dc.power.com/sites/default/files/product-docs/topswitch-jx_family_datasheet.pdf -Power Integrations E Package -0 -6 -6 -Package_SIP -PowerIntegrations_eSIP-7F -eSIP-7F Flat Package with Heatsink Tab https://ac-dc.power.com/sites/default/files/product-docs/linkswitch-ph_family_datasheet.pdf -Power Integrations L Package -0 -6 -6 -Package_SIP -SIP-8_19x3mm_P2.54mm -SIP 8-pin (http://www.njr.com/semicon/PDF/package/SIP8_E.pdf) -SIP8 -0 -8 -8 -Package_SIP -SIP-9_21.54x3mm_P2.54mm -SIP 9-pin () -SIP8 -0 -9 -9 -Package_SIP -SIP-9_22.3x3mm_P2.54mm -SIP 9-pin () -SIP8 -0 -9 -9 -Package_SIP -SIP3_11.6x8.5mm -RECOM,R78EXX,https://www.recom-power.com/pdf/Innoline/R-78Exx-0.5.pdf -SIP3 Regulator Module -0 -3 -3 -Package_SIP -SIP4_Sharp-SSR_P7.62mm_Angled -SIP4 Footprint for SSR made by Sharp -Solid State relais SSR Sharp -0 -4 -4 -Package_SIP -SIP4_Sharp-SSR_P7.62mm_Angled_NoHole -SIP4 Footprint for SSR made by Sharp -Solid State relais SSR Sharp -0 -4 -4 -Package_SIP -SIP4_Sharp-SSR_P7.62mm_Straight -SIP4 Footprint for SSR made by Sharp -Solid State relais SSR Sharp -0 -4 -4 -Package_SIP -SIP9_Housing -SIP9 -SIP9 -0 -9 -9 -Package_SIP -SIP9_Housing_BigPads -SIP9, large pads -SIP9 -0 -9 -9 -Package_SIP -SLA704XM -SIP SLA704XM (http://www.sumzi.com/upload/files/2007/07/2007073114282034189.PDF) -SIP -0 -18 -18 -Package_SIP -STK672-040-E -SIP-22 (http://www.onsemi.com/pub_link/Collateral/EN5227-D.PDF) -SIP-22 -0 -22 -22 -Package_SIP -STK672-080-E -SIP-15 (http://www.onsemi.com/pub_link/Collateral/EN6507-D.PDF) -SIP-15 -0 -15 -15 -Package_SIP -Sanyo_STK4xx-15_59.2x8.0mm_P2.54mm -Sanyo SIP-15, 59.2mm x 8.0mm bosy size, STK-433E STK-435E STK-436E (http://datasheet.octopart.com/STK430-Sanyo-datasheet-107060.pdf) -Sanyo SIP-15 -0 -15 -15 -Package_SIP -Sanyo_STK4xx-15_78.0x8.0mm_P2.54mm -Sanyo SIP-15, 78.0mm x 8.0mm bosy size, STK-437E STK-439E STK-441E STK-443E (http://datasheet.octopart.com/STK430-Sanyo-datasheet-107060.pdf) -Sanyo SIP-15 -0 -15 -15 -Package_SO -Diodes_PSOP-8 -8-Lead Plastic PSOP, Exposed Die Pad (see https://www.diodes.com/assets/Datasheets/AP2204.pdf) -SSOP 0.50 exposed pad -0 -12 -9 -Package_SO -Diodes_SO-8EP -8-Lead Plastic SO, Exposed Die Pad (see https://www.diodes.com/assets/Package-Files/SO-8EP.pdf) -SO exposed pad -0 -9 -9 -Package_SO -ETSSOP-20-1EP_4.4x6.5mm_P0.65mm_EP3x4.2mm -20-Lead Plastic Thin Shrink Small Outline (ST)-4.4 mm Body with Exposed Pad [eTSSOP] (see Microchip Packaging Specification 00000049BS.pdf) -SSOP 0.65 -0 -27 -21 -Package_SO -HSOP-8-1EP_3.9x4.9mm_P1.27mm_EP2.3x2.3mm -HSOP, 8 Pin (https://www.st.com/resource/en/datasheet/l7980.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -HSOP SO -0 -13 -9 -Package_SO -HSOP-8-1EP_3.9x4.9mm_P1.27mm_EP2.3x2.3mm_ThermalVias -HSOP, 8 Pin (https://www.st.com/resource/en/datasheet/l7980.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -HSOP SO -0 -18 -9 -Package_SO -HSOP-8-1EP_3.9x4.9mm_P1.27mm_EP2.41x3.1mm -HSOP, 8 Pin (https://www.st.com/resource/en/datasheet/l5973d.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -HSOP SO -0 -13 -9 -Package_SO -HSOP-8-1EP_3.9x4.9mm_P1.27mm_EP2.41x3.1mm_ThermalVias -HSOP, 8 Pin (https://www.st.com/resource/en/datasheet/l5973d.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -HSOP SO -0 -20 -9 -Package_SO -HSOP-20-1EP_11.0x15.9mm_P1.27mm_SlugDown -HSOP 11.0x15.9mm Pitch 1.27mm Slug Down (PowerSO-20) [JEDEC MO-166] (http://www.st.com/resource/en/datasheet/tda7266d.pdf, www.st.com/resource/en/application_note/cd00003801.pdf) -HSOP 11.0 x 15.9mm Pitch 1.27mm -0 -23 -21 -Package_SO -HSOP-20-1EP_11.0x15.9mm_P1.27mm_SlugDown_ThermalVias -HSOP 11.0x15.9mm Pitch 1.27mm Slug Down Thermal Vias (PowerSO-20) [JEDEC MO-166] (http://www.st.com/resource/en/datasheet/tda7266d.pdf, www.st.com/resource/en/application_note/cd00003801.pdf) -HSOP 11.0 x 15.9mm Pitch 1.27mm -0 -45 -21 -Package_SO -HSOP-20-1EP_11.0x15.9mm_P1.27mm_SlugUp -HSOP 11.0x15.9mm Pitch 1.27mm Slug Up (PowerSO-20) [JEDEC MO-166] (http://www.st.com/resource/en/datasheet/tda7266d.pdf, www.st.com/resource/en/application_note/cd00003801.pdf) -HSOP 11.0 x 15.9mm Pitch 1.27mm -0 -20 -20 -Package_SO -HSOP-32-1EP_7.5x11mm_P0.65mm_EP4.7x4.7mm -HSOP, 32 Pin (https://www.nxp.com/docs/en/package-information/SOT1746-3.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -HSOP SO -0 -37 -33 -Package_SO -HSOP-36-1EP_11.0x15.9mm_P0.65mm_SlugDown -HSOP 11.0x15.9mm Pitch 0.65mm Slug Down (PowerSO-36) [JEDEC MO-166] (http://www.st.com/resource/en/datasheet/vn808cm-32-e.pdf, http://www.st.com/resource/en/application_note/cd00003801.pdf) -HSOP 11.0 x 15.9mm Pitch 0.65mm -0 -39 -37 -Package_SO -HSOP-36-1EP_11.0x15.9mm_P0.65mm_SlugDown_ThermalVias -HSOP 11.0x15.9mm Pitch 0.65mm Slug Down Thermal Vias (PowerSO-36) [JEDEC MO-166] (http://www.st.com/resource/en/datasheet/vn808cm-32-e.pdf, http://www.st.com/resource/en/application_note/cd00003801.pdf) -HSOP 11.0 x 15.9mm Pitch 0.65mm -0 -61 -37 -Package_SO -HSOP-36-1EP_11.0x15.9mm_P0.65mm_SlugUp -HSOP 11.0x15.9mm Pitch 0.65mm Slug Up (PowerSO-36) [JEDEC MO-166] (http://www.st.com/resource/en/datasheet/vn808cm-32-e.pdf, http://www.st.com/resource/en/application_note/cd00003801.pdf) -HSOP 11.0 x 15.9mm Pitch 0.65mm -0 -36 -36 -Package_SO -HSOP-54-1EP_7.5x17.9mm_P0.65mm_EP4.6x4.6mm -HSOP, 54 Pin (https://www.nxp.com/docs/en/package-information/98ASA10506D.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -HSOP SO -0 -59 -55 -Package_SO -HTSOP-8-1EP_3.9x4.9mm_P1.27mm_EP2.4x3.2mm -HTSOP, 8 Pin (https://media.digikey.com/pdf/Data%20Sheets/Rohm%20PDFs/BD9G341EFJ.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -HTSOP SO -0 -13 -9 -Package_SO -HTSOP-8-1EP_3.9x4.9mm_P1.27mm_EP2.4x3.2mm_ThermalVias -HTSOP, 8 Pin (https://media.digikey.com/pdf/Data%20Sheets/Rohm%20PDFs/BD9G341EFJ.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -HTSOP SO -0 -20 -9 -Package_SO -HTSSOP-14-1EP_4.4x5mm_P0.65mm_EP3.4x5mm_Mask3x3.1mm -HTSSOP, 14 Pin (http://www.ti.com/lit/ds/symlink/lm5161.pdf#page=34), generated with kicad-footprint-generator ipc_gullwing_generator.py -HTSSOP SO -0 -20 -15 -Package_SO -HTSSOP-14-1EP_4.4x5mm_P0.65mm_EP3.4x5mm_Mask3x3.1mm_ThermalVias -HTSSOP, 14 Pin (http://www.ti.com/lit/ds/symlink/lm5161.pdf#page=34), generated with kicad-footprint-generator ipc_gullwing_generator.py -HTSSOP SO -0 -36 -15 -Package_SO -HTSSOP-16-1EP_4.4x5mm_P0.65mm_EP3.4x5mm -16-Lead Plastic HTSSOP (4.4x5x1.2mm); Thermal pad; (http://www.ti.com/lit/ds/symlink/drv8833.pdf) -SSOP 0.65 -0 -29 -17 -Package_SO -HTSSOP-16-1EP_4.4x5mm_P0.65mm_EP3.4x5mm_Mask2.46x2.31mm -HTSSOP, 16 Pin (http://www.analog.com/media/en/technical-documentation/data-sheets/LTC7810.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -HTSSOP SO -0 -20 -17 -Package_SO -HTSSOP-16-1EP_4.4x5mm_P0.65mm_EP3.4x5mm_Mask2.46x2.31mm_ThermalVias -HTSSOP, 16 Pin (http://www.analog.com/media/en/technical-documentation/data-sheets/LTC7810.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -HTSSOP SO -0 -27 -17 -Package_SO -HTSSOP-16-1EP_4.4x5mm_P0.65mm_EP3.4x5mm_Mask3x3mm_ThermalVias -16-Lead Plastic HTSSOP (4.4x5x1.2mm); Thermal pad with vias; (http://www.ti.com/lit/ds/symlink/drv8800.pdf) -SSOP 0.65 -0 -46 -17 -Package_SO -HTSSOP-16-1EP_4.4x5mm_P0.65mm_EP3x3mm -HTSSOP, 16 Pin (https://www.st.com/resource/en/datasheet/stp08cp05.pdf#page=20), generated with kicad-footprint-generator ipc_gullwing_generator.py -HTSSOP SO -0 -21 -17 -Package_SO -HTSSOP-20-1EP_4.4x6.5mm_P0.65mm_EP2.74x3.86mm -HTSSOP, 20 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/4011fb.pdf#page=24), generated with kicad-footprint-generator ipc_gullwing_generator.py -HTSSOP SO -0 -23 -21 -Package_SO -HTSSOP-20-1EP_4.4x6.5mm_P0.65mm_EP2.85x4mm -HTSSOP, 20 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0108.PDF U20E-1), generated with kicad-footprint-generator ipc_gullwing_generator.py -HTSSOP SO -0 -23 -21 -Package_SO -HTSSOP-20-1EP_4.4x6.5mm_P0.65mm_EP3.4x6.5mm -20-Lead Plastic Thin Shrink Small Outline (ST)-4.4 mm Body [HTSSOP], with thermal pad with vias -HTSSOP 0.65 -0 -29 -21 -Package_SO -HTSSOP-20-1EP_4.4x6.5mm_P0.65mm_EP3.4x6.5mm_Mask2.4x3.7mm -HTSSOP, 20 Pin (http://www.ti.com/lit/ds/symlink/bq24006.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -HTSSOP SO -0 -24 -21 -Package_SO -HTSSOP-20-1EP_4.4x6.5mm_P0.65mm_EP3.4x6.5mm_Mask2.75x3.43mm -HTSSOP, 20 Pin (http://www.ti.com/lit/ds/symlink/tlc5971.pdf#page=37&zoom=160,-90,3), generated with kicad-footprint-generator ipc_gullwing_generator.py -HTSSOP SO -0 -26 -21 -Package_SO -HTSSOP-20-1EP_4.4x6.5mm_P0.65mm_EP3.4x6.5mm_Mask2.75x3.43mm_ThermalVias -HTSSOP, 20 Pin (http://www.ti.com/lit/ds/symlink/tlc5971.pdf#page=37&zoom=160,-90,3), generated with kicad-footprint-generator ipc_gullwing_generator.py -HTSSOP SO -0 -42 -21 -Package_SO -HTSSOP-20-1EP_4.4x6.5mm_P0.65mm_EP3.4x6.5mm_Mask2.75x3.43mm_ThermalVias_HandSolder -HTSSOP, 20 Pin (http://www.ti.com/lit/ds/symlink/tlc5971.pdf#page=37&zoom=160,-90,3), generated with kicad-footprint-generator ipc_gullwing_generator.py -HTSSOP SO -0 -42 -21 -Package_SO -HTSSOP-20-1EP_4.4x6.5mm_P0.65mm_EP3.4x6.5mm_Mask2.96x2.96mm -HTSSOP, 20 Pin (https://www.ti.com/lit/ds/symlink/tps2663.pdf#page=49), generated with kicad-footprint-generator ipc_gullwing_generator.py -HTSSOP SO -0 -23 -21 -Package_SO -HTSSOP-20-1EP_4.4x6.5mm_P0.65mm_EP3.4x6.5mm_Mask2.96x2.96mm_ThermalVias -HTSSOP, 20 Pin (https://www.ti.com/lit/ds/symlink/tps2663.pdf#page=49), generated with kicad-footprint-generator ipc_gullwing_generator.py -HTSSOP SO -0 -42 -21 -Package_SO -HTSSOP-20-1EP_4.4x6.5mm_P0.65mm_EP3.4x6.5mm_ThermalVias -20-Lead Plastic Thin Shrink Small Outline (ST)-4.4 mm Body [HTSSOP], with thermal pad with vias -HTSSOP 0.65 -0 -45 -21 -Package_SO -HTSSOP-24-1EP_4.4x7.8mm_P0.65mm_EP3.2x5mm -HTSSOP, 24 Pin (https://www.st.com/resource/en/datasheet/stp16cp05.pdf#page=25), generated with kicad-footprint-generator ipc_gullwing_generator.py -HTSSOP SO -0 -31 -25 -Package_SO -HTSSOP-24-1EP_4.4x7.8mm_P0.65mm_EP3.4x7.8mm_Mask2.4x2.98mm -HTSSOP, 24 Pin (https://www.ti.com/lit/ds/symlink/tlc5949.pdf#page=49), generated with kicad-footprint-generator ipc_gullwing_generator.py -HTSSOP SO -0 -27 -25 -Package_SO -HTSSOP-24-1EP_4.4x7.8mm_P0.65mm_EP3.4x7.8mm_Mask2.4x2.98mm_ThermalVias -HTSSOP, 24 Pin (https://www.ti.com/lit/ds/symlink/tlc5949.pdf#page=49), generated with kicad-footprint-generator ipc_gullwing_generator.py -HTSSOP SO -0 -49 -25 -Package_SO -HTSSOP-24-1EP_4.4x7.8mm_P0.65mm_EP3.4x7.8mm_Mask2.4x4.68mm -HTSSOP, 24 Pin (http://www.ti.com/lit/ds/symlink/tps703.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -HTSSOP SO -0 -28 -25 -Package_SO -HTSSOP-24-1EP_4.4x7.8mm_P0.65mm_EP3.4x7.8mm_Mask2.4x4.68mm_ThermalVias -HTSSOP, 24 Pin (http://www.ti.com/lit/ds/symlink/tps703.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -HTSSOP SO -0 -47 -25 -Package_SO -HTSSOP-28-1EP_4.4x9.7mm_P0.65mm_EP2.85x5.4mm -HTSSOP, 28 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0108.PDF), generated with kicad-footprint-generator ipc_gullwing_generator.py -HTSSOP SO -0 -30 -29 -Package_SO -HTSSOP-28-1EP_4.4x9.7mm_P0.65mm_EP2.85x5.4mm_ThermalVias -HTSSOP, 28 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-0108.PDF), generated with kicad-footprint-generator ipc_gullwing_generator.py -HTSSOP SO -0 -41 -29 -Package_SO -HTSSOP-28-1EP_4.4x9.7mm_P0.65mm_EP3.4x9.5mm -HTSSOP28: plastic thin shrink small outline package; 28 leads; body width 4.4 mm; thermal pad -TSSOP HTSSOP 0.65 thermal pad -0 -39 -29 -Package_SO -HTSSOP-28-1EP_4.4x9.7mm_P0.65mm_EP3.4x9.5mm_Mask2.4x6.17mm -HTSSOP28: plastic thin shrink small outline package; 28 leads; body width 4.4 mm; thermal pad -TSSOP HTSSOP 0.65 thermal pad -0 -40 -29 -Package_SO -HTSSOP-28-1EP_4.4x9.7mm_P0.65mm_EP3.4x9.5mm_Mask2.4x6.17mm_ThermalVias -HTSSOP28: plastic thin shrink small outline package; 28 leads; body width 4.4 mm; thermal pad -TSSOP HTSSOP 0.65 thermal pad -0 -55 -29 -Package_SO -HTSSOP-28-1EP_4.4x9.7mm_P0.65mm_EP3.4x9.5mm_ThermalVias -HTSSOP28: plastic thin shrink small outline package; 28 leads; body width 4.4 mm; thermal pad -TSSOP HTSSOP 0.65 thermal pad -0 -58 -29 -Package_SO -HTSSOP-32-1EP_6.1x11mm_P0.65mm_EP5.2x11mm_Mask4.11x4.36mm -HTSSOP32: plastic thin shrink small outline package; 32 leads; body width 6.1 mm; lead pitch 0.65 mm (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot487-1_po.pdf) -SSOP 0.65 PowerPAD -0 -43 -33 -Package_SO -HTSSOP-32-1EP_6.1x11mm_P0.65mm_EP5.2x11mm_Mask4.11x4.36mm_ThermalVias -HTSSOP32: plastic thin shrink small outline package; 32 leads; body width 6.1 mm; lead pitch 0.65 mm (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot487-1_po.pdf) -SSOP 0.65 PowerPAD -0 -83 -33 -Package_SO -HTSSOP-38-1EP_6.1x12.5mm_P0.65mm_EP5.2x12.5mm_Mask3.39x6.35mm -HTSSOP, 38 Pin (http://www.ti.com/lit/ds/symlink/tlc5951.pdf#page=47&zoom=140,-67,15), generated with kicad-footprint-generator ipc_gullwing_generator.py -HTSSOP SO -0 -46 -39 -Package_SO -HTSSOP-38-1EP_6.1x12.5mm_P0.65mm_EP5.2x12.5mm_Mask3.39x6.35mm_ThermalVias -HTSSOP, 38 Pin (http://www.ti.com/lit/ds/symlink/tlc5951.pdf#page=47&zoom=140,-67,15), generated with kicad-footprint-generator ipc_gullwing_generator.py -HTSSOP SO -0 -87 -39 -Package_SO -HTSSOP-44_6.1x14mm_P0.635mm_TopEP4.14x7.01mm -HTSSOP, 44 Pin (http://www.ti.com/lit/ds/symlink/tpa3251.pdf#page=38), generated with kicad-footprint-generator ipc_gullwing_generator.py -HTSSOP SO -0 -44 -44 -Package_SO -HTSSOP-56-1EP_6.1x14mm_P0.5mm_EP3.61x6.35mm -HTSSOP56: plastic thin shrink small outline package http://www.ti.com/lit/ds/symlink/drv8301.pdf -HTSSOP 0.5 -0 -72 -57 -Package_SO -HVSSOP-8-1EP_3x3mm_P0.65mm_EP1.57x1.89mm -HVSSOP, 8 Pin (https://www.ti.com/lit/ds/symlink/tpa6110a2.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -HVSSOP SO -0 -13 -9 -Package_SO -HVSSOP-8-1EP_3x3mm_P0.65mm_EP1.57x1.89mm_ThermalVias -HVSSOP, 8 Pin (https://www.ti.com/lit/ds/symlink/tpa6110a2.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -HVSSOP SO -0 -18 -9 -Package_SO -HVSSOP-10-1EP_3x3mm_P0.5mm_EP1.57x1.88mm -HVSSOP, 10 Pin (https://www.ti.com/lit/ds/symlink/bq24090.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -HVSSOP SO -0 -15 -11 -Package_SO -HVSSOP-10-1EP_3x3mm_P0.5mm_EP1.57x1.88mm_ThermalVias -HVSSOP, 10 Pin (https://www.ti.com/lit/ds/symlink/bq24090.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -HVSSOP SO -0 -20 -11 -Package_SO -Infineon_PG-DSO-8-27_3.9x4.9mm_EP2.65x3mm -Infineon PG-DSO, 8 Pin (https://www.infineon.com/cms/en/product/packages/PG-DSO/PG-DSO-8-27), generated with kicad-footprint-generator ipc_gullwing_generator.py -Infineon PG-DSO SO -0 -13 -9 -Package_SO -Infineon_PG-DSO-8-27_3.9x4.9mm_EP2.65x3mm_ThermalVias -Infineon PG-DSO, 8 Pin (https://www.infineon.com/cms/en/product/packages/PG-DSO/PG-DSO-8-27), generated with kicad-footprint-generator ipc_gullwing_generator.py -Infineon PG-DSO SO -0 -23 -9 -Package_SO -Infineon_PG-DSO-8-43 -Infineon_PG-DSO-8-43 -DSO DSO-8 SOIC SOIC-8 -0 -12 -9 -Package_SO -Infineon_PG-DSO-12-9 -Infineon PG-DSO 12 pin, exposed pad: 4.5x8.1mm, (https://www.infineon.com/cms/en/product/packages/PG-DSO/PG-DSO-12-9/) -PG-DSO -0 -23 -13 -Package_SO -Infineon_PG-DSO-12-9_ThermalVias -Infineon PG-DSO 12 pin, exposed pad: 4.5x8.1mm, with thermal vias (https://www.infineon.com/cms/en/product/packages/PG-DSO/PG-DSO-12-9/) -PG-DSO -0 -42 -13 -Package_SO -Infineon_PG-DSO-12-11 -Infineon PG-DSO 12 pin, exposed pad: 4.5x8.1mm, (https://www.infineon.com/cms/en/product/packages/PG-DSO/PG-DSO-12-11/) -PG-DSO -0 -23 -13 -Package_SO -Infineon_PG-DSO-12-11_ThermalVias -Infineon PG-DSO 12 pin, exposed pad: 4.5x8.1mm, with thermal vias (https://www.infineon.com/cms/en/product/packages/PG-DSO/PG-DSO-12-11/) -PG-DSO -0 -42 -13 -Package_SO -Infineon_PG-DSO-20-30 -Infineon SO package 20pin, exposed pad 4.5x7mm (https://www.infineon.com/cms/en/product/packages/PG-DSO/PG-DSO-20-71/) -DSO-20 -0 -31 -21 -Package_SO -Infineon_PG-DSO-20-30_ThermalVias -Infineon SO package 20pin, exposed pad 4.5x7mm (https://www.infineon.com/cms/en/product/packages/PG-DSO/PG-DSO-20-71/) -DSO-20 -0 -45 -21 -Package_SO -Infineon_PG-DSO-20-32 -Infineon SO package 20pin without exposed pad (https://www.infineon.com/cms/en/product/packages/PG-DSO/PG-DSO-20-32/) -DSO-20 -0 -20 -20 -Package_SO -Infineon_PG-DSO-20-85 -Infineon SO package 20pin with exposed pad (https://www.infineon.com/cms/en/product/packages/PG-DSO/PG-DSO-20-85/) -DSO-20 -0 -31 -21 -Package_SO -Infineon_PG-DSO-20-85_ThermalVias -Infineon SO package 20pin with exposed pad (https://www.infineon.com/cms/en/product/packages/PG-DSO/PG-DSO-20-85/) -DSO-20 -0 -113 -21 -Package_SO -Infineon_PG-DSO-20-87 -Infineon SO package 20pin without exposed pad (https://www.infineon.com/cms/en/product/packages/PG-DSO/PG-DSO-20-87/) -DSO-20 -0 -20 -20 -Package_SO -Infineon_PG-TSDSO-14-22 -Infineon_PG-TSDSO-14-22 -Infineon TSDSO 14-22 -0 -17 -15 -Package_SO -Linear_MSOP-12-16-1EP_3x4mm_P0.5mm -12-Lead Plastic Micro Small Outline Package (MS) [MSOP], variant of MSOP-16 (see http://cds.linear.com/docs/en/datasheet/3630fd.pdf) -SSOP 0.5 -0 -15 -13 -Package_SO -Linear_MSOP-12-16_3x4mm_P0.5mm -12-Lead Plastic Micro Small Outline Package (MS) [MSOP], variant of MSOP-16 (see https://www.analog.com/media/en/technical-documentation/data-sheets/3748fb.pdf) -SSOP 0.5 -0 -12 -12 -Package_SO -MFSOP6-4_4.4x3.6mm_P1.27mm -https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.4pin%20MFSOP6.html -MFSOP 4 pin SMD -0 -4 -4 -Package_SO -MFSOP6-5_4.4x3.6mm_P1.27mm -https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.5pin%20MFSOP6.html -MFSOP 4 pin SMD -0 -5 -5 -Package_SO -MSOP-8-1EP_3x3mm_P0.65mm_EP1.68x1.88mm -MSOP, 8 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/4440fb.pdf#page=13), generated with kicad-footprint-generator ipc_gullwing_generator.py -MSOP SO -0 -13 -9 -Package_SO -MSOP-8-1EP_3x3mm_P0.65mm_EP1.68x1.88mm_ThermalVias -MSOP, 8 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/4440fb.pdf#page=13), generated with kicad-footprint-generator ipc_gullwing_generator.py -MSOP SO -0 -18 -9 -Package_SO -MSOP-8-1EP_3x3mm_P0.65mm_EP1.73x1.85mm -MSOP, 8 Pin (http://www.ti.com/lit/ds/symlink/lm25085.pdf#page=32), generated with kicad-footprint-generator ipc_gullwing_generator.py -MSOP SO -0 -13 -9 -Package_SO -MSOP-8-1EP_3x3mm_P0.65mm_EP1.73x1.85mm_ThermalVias -MSOP, 8 Pin (http://www.ti.com/lit/ds/symlink/lm25085.pdf#page=32), generated with kicad-footprint-generator ipc_gullwing_generator.py -MSOP SO -0 -18 -9 -Package_SO -MSOP-8-1EP_3x3mm_P0.65mm_EP1.95x2.15mm -MSOP, 8 Pin (http://www.st.com/resource/en/datasheet/pm8834.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -MSOP SO -0 -13 -9 -Package_SO -MSOP-8-1EP_3x3mm_P0.65mm_EP1.95x2.15mm_ThermalVias -MSOP, 8 Pin (http://www.st.com/resource/en/datasheet/pm8834.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -MSOP SO -0 -18 -9 -Package_SO -MSOP-8-1EP_3x3mm_P0.65mm_EP2.5x3mm_Mask1.73x2.36mm -MSOP, 8 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/mic5355_6.pdf#page=15), generated with kicad-footprint-generator ipc_gullwing_generator.py -MSOP SO -0 -14 -9 -Package_SO -MSOP-8-1EP_3x3mm_P0.65mm_EP2.5x3mm_Mask1.73x2.36mm_ThermalVias -MSOP, 8 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/mic5355_6.pdf#page=15), generated with kicad-footprint-generator ipc_gullwing_generator.py -MSOP SO -0 -19 -9 -Package_SO -MSOP-8_3x3mm_P0.65mm -MSOP, 8 Pin (https://www.jedec.org/system/files/docs/mo-187F.pdf variant AA), generated with kicad-footprint-generator ipc_gullwing_generator.py -MSOP SO -0 -8 -8 -Package_SO -MSOP-10-1EP_3x3mm_P0.5mm_EP1.68x1.88mm -MSOP, 10 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/3805fg.pdf#page=18), generated with kicad-footprint-generator ipc_gullwing_generator.py -MSOP SO -0 -15 -11 -Package_SO -MSOP-10-1EP_3x3mm_P0.5mm_EP1.68x1.88mm_ThermalVias -MSOP, 10 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/3805fg.pdf#page=18), generated with kicad-footprint-generator ipc_gullwing_generator.py -MSOP SO -0 -20 -11 -Package_SO -MSOP-10-1EP_3x3mm_P0.5mm_EP1.73x1.98mm -MSOP, 10 Pin (www.allegromicro.com/~/media/Files/Datasheets/A4952-3-Datasheet.ashx?la=en#page=10), generated with kicad-footprint-generator ipc_gullwing_generator.py -MSOP SO -0 -15 -11 -Package_SO -MSOP-10-1EP_3x3mm_P0.5mm_EP1.73x1.98mm_ThermalVias -MSOP, 10 Pin (www.allegromicro.com/~/media/Files/Datasheets/A4952-3-Datasheet.ashx?la=en#page=10), generated with kicad-footprint-generator ipc_gullwing_generator.py -MSOP SO -0 -20 -11 -Package_SO -MSOP-10-1EP_3x3mm_P0.5mm_EP2.2x3.1mm_Mask1.83x1.89mm -MSOP, 10 Pin (https://www.ti.com/lit/ds/symlink/xtr111.pdf#page=27), generated with kicad-footprint-generator ipc_gullwing_generator.py -MSOP SO -0 -16 -11 -Package_SO -MSOP-10-1EP_3x3mm_P0.5mm_EP2.2x3.1mm_Mask1.83x1.89mm_ThermalVias -MSOP, 10 Pin (https://www.ti.com/lit/ds/symlink/xtr111.pdf#page=27), generated with kicad-footprint-generator ipc_gullwing_generator.py -MSOP SO -0 -23 -11 -Package_SO -MSOP-10_3x3mm_P0.5mm -10-Lead Plastic Micro Small Outline Package (MS) [MSOP] (see Microchip Packaging Specification 00000049BS.pdf) -SSOP 0.5 -0 -10 -10 -Package_SO -MSOP-12-1EP_3x4mm_P0.65mm_EP1.65x2.85mm -MSOP, 12 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/3652fe.pdf#page=24), generated with kicad-footprint-generator ipc_gullwing_generator.py -MSOP SO -0 -17 -13 -Package_SO -MSOP-12-1EP_3x4mm_P0.65mm_EP1.65x2.85mm_ThermalVias -MSOP, 12 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/3652fe.pdf#page=24), generated with kicad-footprint-generator ipc_gullwing_generator.py -MSOP SO -0 -24 -13 -Package_SO -MSOP-12-16-1EP_3x4mm_P0.5mm_EP1.65x2.85mm -10-Lead Plastic Micro Small Outline Package (MS) [MSOP] (see Microchip Packaging Specification 00000049BS.pdf) -SSOP 0.5 -0 -19 -13 -Package_SO -MSOP-12-16-1EP_3x4mm_P0.5mm_EP1.65x2.85mm_ThermalVias -10-Lead Plastic Micro Small Outline Package (MS) [MSOP] (see Microchip Packaging Specification 00000049BS.pdf) -SSOP 0.5 -0 -25 -13 -Package_SO -MSOP-12-16_3x4mm_P0.5mm -10-Lead Plastic Micro Small Outline Package (MS) [MSOP] (see Microchip Packaging Specification 00000049BS.pdf) -SSOP 0.5 -0 -12 -12 -Package_SO -MSOP-12_3x4mm_P0.65mm -MSOP, 12 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/6957fb.pdf#page=36), generated with kicad-footprint-generator ipc_gullwing_generator.py -MSOP SO -0 -12 -12 -Package_SO -MSOP-16-1EP_3x4.039mm_P0.5mm_EP1.651x2.845mm -MSOP, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-msop/05081667_F_MSE16.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -MSOP SO -0 -21 -17 -Package_SO -MSOP-16-1EP_3x4.039mm_P0.5mm_EP1.651x2.845mm_ThermalVias -MSOP, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-msop/05081667_F_MSE16.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -MSOP SO -0 -28 -17 -Package_SO -MSOP-16-1EP_3x4mm_P0.5mm_EP1.65x2.85mm -MSOP, 16 Pin (http://cds.linear.com/docs/en/datasheet/37551fd.pdf#page=23), generated with kicad-footprint-generator ipc_gullwing_generator.py -MSOP SO -0 -21 -17 -Package_SO -MSOP-16-1EP_3x4mm_P0.5mm_EP1.65x2.85mm_ThermalVias -MSOP, 16 Pin (http://cds.linear.com/docs/en/datasheet/37551fd.pdf#page=23), generated with kicad-footprint-generator ipc_gullwing_generator.py -MSOP SO -0 -28 -17 -Package_SO -MSOP-16_3x4.039mm_P0.5mm -MSOP, 16 Pin (http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-msop/05081669_A_MS16.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -MSOP SO -0 -16 -16 -Package_SO -MSOP-16_3x4mm_P0.5mm -MSOP, 16 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/436412f.pdf#page=22), generated with kicad-footprint-generator ipc_gullwing_generator.py -MSOP SO -0 -16 -16 -Package_SO -ONSemi_SO-8FL_488AA -ON Semi DFN5 5x6mm 1.27P SO-8FL CASE 488A https://www.onsemi.com/pub/Collateral/488AA.PDF -ON Semi DFN5 5x6mm 1.27P SO-8FL CASE 488A -0 -5 -5 -Package_SO -OnSemi_Micro8 -ON Semiconductor Micro8 (Case846A-02): https://www.onsemi.com/pub/Collateral/846A-02.PDF -micro8 -0 -8 -8 -Package_SO -PSOP-44_16.9x27.17mm_P1.27mm -PSOP44: plastic thin shrink small outline package; 44 leads; body width 16.90 mm -PSOP 1.27 -0 -44 -44 -Package_SO -PowerIntegrations_SO-8 -Power-Integrations variant of 8-Lead Plastic Small Outline (SN) - Narrow, 3.90 mm Body [SOIC], see https://ac-dc.power.com/sites/default/files/product-docs/senzero_family_datasheet.pdf -SOIC 1.27 -0 -8 -8 -Package_SO -PowerIntegrations_SO-8B -Power-Integrations variant of 8-Lead Plastic Small Outline (SN) - Narrow, 3.90 mm Body [SOIC], see https://www.mouser.com/ds/2/328/linkswitch-pl_family_datasheet-12517.pdf -SOIC 1.27 -0 -7 -7 -Package_SO -PowerIntegrations_SO-8C -Power-Integrations variant of 8-Lead Plastic Small Outline (SN) - Narrow, 3.90 mm Body [SOIC], see https://www.mouser.com/ds/2/328/linkswitch-pl_family_datasheet-12517.pdf -SOIC 1.27 -0 -7 -7 -Package_SO -PowerIntegrations_eSOP-12B -eSOP-12B SMT Flat Package with Heatsink Tab, see https://ac-dc.power.com/sites/default/files/product-docs/topswitch-jx_family_datasheet.pdf -Power Integrations K Package -0 -12 -12 -Package_SO -PowerPAK_SO-8L_Single -PowerPAK SO-8L Single (https://www.vishay.com/docs/64721/an913.pdf) -PowerPAK SO-8L_Single -0 -13 -5 -Package_SO -PowerPAK_SO-8_Dual -PowerPAK SO-8 Dual (https://www.vishay.com/docs/71655/powerpak.pdf, https://www.vishay.com/docs/72600/72600.pdf) -PowerPAK SO-8 Dual -0 -10 -6 -Package_SO -PowerPAK_SO-8_Single -PowerPAK SO-8 Single (https://www.vishay.com/docs/71655/powerpak.pdf, https://www.vishay.com/docs/72599/72599.pdf) -PowerPAK SO-8 Single -0 -9 -5 -Package_SO -QSOP-16_3.9x4.9mm_P0.635mm -16-Lead Plastic Shrink Small Outline Narrow Body (QR)-.150" Body [QSOP] (see Microchip Packaging Specification 00000049BS.pdf) -SSOP 0.635 -0 -16 -16 -Package_SO -QSOP-20_3.9x8.7mm_P0.635mm -20-Lead Plastic Shrink Small Outline Narrow Body (http://www.analog.com/media/en/technical-documentation/data-sheets/ADuM7640_7641_7642_7643.pdf) -QSOP 0.635 -0 -20 -20 -Package_SO -QSOP-24_3.9x8.7mm_P0.635mm -24-Lead Plastic Shrink Small Outline Narrow Body (QR)-.150" Body [QSOP] (see Microchip Packaging Specification 00000049CH.pdf) -QSOP 0.635 -0 -24 -24 -Package_SO -SC-74-6_1.5x2.9mm_P0.95mm -SC-74, 6 Pin (https://www.nxp.com/docs/en/package-information/SOT457.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -SC-74 SO -0 -6 -6 -Package_SO -SO-4_4.4x2.3mm_P1.27mm -4-Lead Plastic Small Outline (SO), see http://datasheet.octopart.com/OPIA403BTRE-Optek-datasheet-5328560.pdf -SO SOIC 1.27 -0 -4 -4 -Package_SO -SO-4_4.4x3.6mm_P2.54mm -4-Lead Plastic Small Outline (SO), see https://www.elpro.org/de/index.php?controller=attachment&id_attachment=339 -SO SOIC 2.54 -0 -4 -4 -Package_SO -SO-4_4.4x3.9mm_P2.54mm -SO, 4 Pin (https://toshiba.semicon-storage.com/info/docget.jsp?did=10047&prodName=TLP3123), generated with kicad-footprint-generator ipc_gullwing_generator.py -SO SO -0 -4 -4 -Package_SO -SO-4_4.4x4.3mm_P2.54mm -4-Lead Plastic Small Outline (SO), see https://docs.broadcom.com/docs/AV02-0173EN -SO SOIC 2.54 -0 -4 -4 -Package_SO -SO-4_7.6x3.6mm_P2.54mm -4-Lead Plastic Small Outline (SO) (http://www.everlight.com/file/ProductFile/201407061745083848.pdf) -SO SOIC 2.54 -0 -4 -4 -Package_SO -SO-5_4.4x3.6mm_P1.27mm -5-Lead Plastic Small Outline (SO), see https://docs.broadcom.com/cs/Satellite?blobcol=urldata&blobheader=application%2Fpdf&blobheadername1=Content-Disposition&blobheadername2=Content-Type&blobheadername3=MDT-Type&blobheadervalue1=attachment%3Bfilename%3DIPD-Selection-Guide_AV00-0254EN_030617.pdf&blobheadervalue2=application%2Fx-download&blobheadervalue3=abinary%253B%2Bcharset%253DUTF-8&blobkey=id&blobnocache=true&blobtable=MungoBlobs&blobwhere=1430884105675&ssbinary=true -SO SOIC 1.27 -0 -5 -5 -Package_SO -SO-6L_10x3.84mm_P1.27mm -6-pin plasic small outline 7,5mm long https://toshiba.semicon-storage.com/info/docget.jsp?did=53548&prodName=TLP2770 -SO-6L -0 -6 -6 -Package_SO -SO-6_4.4x3.6mm_P1.27mm -6-Lead Plastic Small Outline (SO), see https://docs.broadcom.com/cs/Satellite?blobcol=urldata&blobheader=application%2Fpdf&blobheadername1=Content-Disposition&blobheadername2=Content-Type&blobheadername3=MDT-Type&blobheadervalue1=attachment%3Bfilename%3DIPD-Selection-Guide_AV00-0254EN_030617.pdf&blobheadervalue2=application%2Fx-download&blobheadervalue3=abinary%253B%2Bcharset%253DUTF-8&blobkey=id&blobnocache=true&blobtable=MungoBlobs&blobwhere=1430884105675&ssbinary=true -SO SOIC 1.27 -0 -6 -6 -Package_SO -SO-8_3.9x4.9mm_P1.27mm -SO, 8 Pin (https://www.nxp.com/docs/en/data-sheet/PCF8523.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -SO SO -0 -8 -8 -Package_SO -SO-8_5.3x6.2mm_P1.27mm -SO, 8 Pin (https://www.ti.com/lit/ml/msop001a/msop001a.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -SO SO -0 -8 -8 -Package_SO -SO-14_3.9x8.65mm_P1.27mm -SO, 14 Pin (https://www.st.com/resource/en/datasheet/l6491.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -SO SO -0 -14 -14 -Package_SO -SO-14_5.3x10.2mm_P1.27mm -SO, 14 Pin (https://www.ti.com/lit/ml/msop002a/msop002a.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -SO SO -0 -14 -14 -Package_SO -SO-16_3.9x9.9mm_P1.27mm -SO, 16 Pin (https://www.nxp.com/docs/en/package-information/SOT109-1.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -SO SO -0 -16 -16 -Package_SO -SO-16_5.3x10.2mm_P1.27mm -SO, 16 Pin (https://www.ti.com/lit/ml/msop002a/msop002a.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -SO SO -0 -16 -16 -Package_SO -SO-20-1EP_7.52x12.825mm_P1.27mm_EP6.045x12.09mm_Mask3.56x4.47mm -SO, 20 Pin (http://www.ti.com/lit/ds/symlink/opa569.pdf, http://www.ti.com/lit/an/slma004b/slma004b.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -SO SO -0 -23 -21 -Package_SO -SO-20-1EP_7.52x12.825mm_P1.27mm_EP6.045x12.09mm_Mask3.56x4.47mm_ThermalVias -SO, 20 Pin (http://www.ti.com/lit/ds/symlink/opa569.pdf, http://www.ti.com/lit/an/slma004b/slma004b.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -SO SO -0 -51 -21 -Package_SO -SO-20_5.3x12.6mm_P1.27mm -SO, 20 Pin (https://www.ti.com/lit/ml/msop002a/msop002a.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -SO SO -0 -20 -20 -Package_SO -SO-20_12.8x7.5mm_P1.27mm -SO-20, 12.8x7.5mm, https://www.nxp.com/docs/en/data-sheet/SA605.pdf -S0-20 -0 -20 -20 -Package_SO -SO-24_5.3x15mm_P1.27mm -SO, 24 Pin (https://www.ti.com/lit/ml/msop002a/msop002a.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -SO SO -0 -24 -24 -Package_SO -SOIC-4_4.55x2.6mm_P1.27mm -SOIC, 4 Pin (https://toshiba.semicon-storage.com/info/docget.jsp?did=12884&prodName=TLP291), generated with kicad-footprint-generator ipc_gullwing_generator.py -SOIC SO -0 -4 -4 -Package_SO -SOIC-4_4.55x3.7mm_P2.54mm -SOIC, 6 Pin (https://toshiba.semicon-storage.com/info/docget.jsp?did=11791&prodName=TLP185), generated with kicad-footprint-generator ipc_gullwing_generator.py -SOIC SO -0 -4 -4 -Package_SO -SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.29x3mm -SOIC, 8 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/ada4898-1_4898-2.pdf#page=29), generated with kicad-footprint-generator ipc_gullwing_generator.py -SOIC SO -0 -13 -9 -Package_SO -SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.29x3mm_ThermalVias -SOIC, 8 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/ada4898-1_4898-2.pdf#page=29), generated with kicad-footprint-generator ipc_gullwing_generator.py -SOIC SO -0 -20 -9 -Package_SO -SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.41x3.3mm -SOIC, 8 Pin (http://www.allegromicro.com/~/media/Files/Datasheets/A4950-Datasheet.ashx#page=8), generated with kicad-footprint-generator ipc_gullwing_generator.py -SOIC SO -0 -13 -9 -Package_SO -SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.41x3.3mm_ThermalVias -SOIC, 8 Pin (http://www.allegromicro.com/~/media/Files/Datasheets/A4950-Datasheet.ashx#page=8), generated with kicad-footprint-generator ipc_gullwing_generator.py -SOIC SO -0 -20 -9 -Package_SO -SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.41x3.81mm -SOIC, 8 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/ada4898-1_4898-2.pdf#page=29), generated with kicad-footprint-generator ipc_gullwing_generator.py -SOIC SO -0 -13 -9 -Package_SO -SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.41x3.81mm_ThermalVias -SOIC, 8 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/ada4898-1_4898-2.pdf#page=29), generated with kicad-footprint-generator ipc_gullwing_generator.py -SOIC SO -0 -20 -9 -Package_SO -SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.62x3.51mm -SOIC, 8 Pin (https://www.monolithicpower.com/en/documentview/productdocument/index/version/2/document_type/Datasheet/lang/en/sku/MP2303A/document_id/494#page=14), generated with kicad-footprint-generator ipc_gullwing_generator.py -SOIC SO -0 -13 -9 -Package_SO -SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.62x3.51mm_ThermalVias -SOIC, 8 Pin (https://www.monolithicpower.com/en/documentview/productdocument/index/version/2/document_type/Datasheet/lang/en/sku/MP2303A/document_id/494#page=14), generated with kicad-footprint-generator ipc_gullwing_generator.py -SOIC SO -0 -20 -9 -Package_SO -SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.95x4.9mm_Mask2.71x3.4mm -SOIC, 8 Pin (http://www.ti.com/lit/ds/symlink/lm5017.pdf#page=31), generated with kicad-footprint-generator ipc_gullwing_generator.py -SOIC SO -0 -14 -9 -Package_SO -SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.95x4.9mm_Mask2.71x3.4mm_ThermalVias -SOIC, 8 Pin (http://www.ti.com/lit/ds/symlink/lm5017.pdf#page=31), generated with kicad-footprint-generator ipc_gullwing_generator.py -SOIC SO -0 -23 -9 -Package_SO -SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.514x3.2mm -SOIC, 8 Pin (https://www.renesas.com/eu/en/www/doc/datasheet/hip2100.pdf#page=13), generated with kicad-footprint-generator ipc_gullwing_generator.py -SOIC SO -0 -13 -9 -Package_SO -SOIC-8-1EP_3.9x4.9mm_P1.27mm_EP2.514x3.2mm_ThermalVias -SOIC, 8 Pin (https://www.renesas.com/eu/en/www/doc/datasheet/hip2100.pdf#page=13), generated with kicad-footprint-generator ipc_gullwing_generator.py -SOIC SO -0 -20 -9 -Package_SO -SOIC-8-N7_3.9x4.9mm_P1.27mm -8-Lead Plastic Small Outline (SN) - Narrow, 3.90 mm Body [SOIC], pin 7 removed (Microchip Packaging Specification 00000049BS.pdf, http://www.onsemi.com/pub/Collateral/NCP1207B.PDF) -SOIC 1.27 -0 -7 -7 -Package_SO -SOIC-8W_5.3x5.3mm_P1.27mm -8-Lead Plastic Small Outline (SM) - 5.28 mm Body [SOIC] (http://ww1.microchip.com/downloads/en/PackagingSpec/00000049BQ.pdf) -SOIC 1.27 -0 -8 -8 -Package_SO -SOIC-8_3.9x4.9mm_P1.27mm -SOIC, 8 Pin (JEDEC MS-012AA, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/soic_narrow-r/r_8.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -SOIC SO -0 -8 -8 -Package_SO -SOIC-8_5.23x5.23mm_P1.27mm -SOIC, 8 Pin (http://www.winbond.com/resource-files/w25q32jv%20revg%2003272018%20plus.pdf#page=68), generated with kicad-footprint-generator ipc_gullwing_generator.py -SOIC SO -0 -8 -8 -Package_SO -SOIC-8_5.275x5.275mm_P1.27mm -SOIC, 8 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/20005045C.pdf#page=23), generated with kicad-footprint-generator ipc_gullwing_generator.py -SOIC SO -0 -8 -8 -Package_SO -SOIC-8_7.5x5.85mm_P1.27mm -SOIC, 8 Pin (http://www.ti.com/lit/ml/mpds382b/mpds382b.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -SOIC SO -0 -8 -8 -Package_SO -SOIC-14-16_3.9x9.9mm_P1.27mm -SOIC, 16 Pin package with pin 2 and 13 removed for voltage clearance (UCC256301, https://www.ti.com/lit/ds/symlink/ucc256301.pdf) -SOIC SO -0 -14 -14 -Package_SO -SOIC-14W_7.5x9mm_P1.27mm -SOIC, 14 Pin (JEDEC MS-013AF, https://www.analog.com/media/en/package-pcb-resources/package/54614177245586rw_14.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -SOIC SO -0 -14 -14 -Package_SO -SOIC-14_3.9x8.7mm_P1.27mm -SOIC, 14 Pin (JEDEC MS-012AB, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/soic_narrow-r/r_14.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -SOIC SO -0 -14 -14 -Package_SO -SOIC-16W-12_7.5x10.3mm_P1.27mm -SOIC-16 With 12 Pin Placed - Wide, 7.50 mm Body [SOIC] (https://docs.broadcom.com/docs/AV02-0169EN) -SOIC 1.27 16 12 Wide -0 -12 -12 -Package_SO -SOIC-16W_5.3x10.2mm_P1.27mm -16-Lead Plastic Small Outline (SO) - Wide, 5.3 mm Body (http://www.ti.com/lit/ml/msop002a/msop002a.pdf) -SOIC 1.27 -0 -16 -16 -Package_SO -SOIC-16W_7.5x10.3mm_P1.27mm -SOIC, 16 Pin (JEDEC MS-013AA, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/soic_wide-rw/rw_16.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -SOIC SO -0 -16 -16 -Package_SO -SOIC-16W_7.5x12.8mm_P1.27mm -SOIC, 16 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ri_soic_ic/ri_16_1.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -SOIC SO -0 -16 -16 -Package_SO -SOIC-16_3.9x9.9mm_P1.27mm -SOIC, 16 Pin (JEDEC MS-012AC, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/soic_narrow-r/r_16.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -SOIC SO -0 -16 -16 -Package_SO -SOIC-16_4.55x10.3mm_P1.27mm -SOIC, 16 Pin (https://toshiba.semicon-storage.com/info/docget.jsp?did=12858&prodName=TLP291-4), generated with kicad-footprint-generator ipc_gullwing_generator.py -SOIC SO -0 -16 -16 -Package_SO -SOIC-18W_7.5x11.6mm_P1.27mm -SOIC, 18 Pin (JEDEC MS-013AB, https://www.analog.com/media/en/package-pcb-resources/package/33254132129439rw_18.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -SOIC SO -0 -18 -18 -Package_SO -SOIC-20W_7.5x12.8mm_P1.27mm -SOIC, 20 Pin (JEDEC MS-013AC, https://www.analog.com/media/en/package-pcb-resources/package/233848rw_20.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -SOIC SO -0 -20 -20 -Package_SO -SOIC-20W_7.5x15.4mm_P1.27mm -SOIC, 20 Pin (JEDEC MS-013AD, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/soic_wide-rw/RI_20_1.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -SOIC SO -0 -20 -20 -Package_SO -SOIC-24W_7.5x15.4mm_P1.27mm -SOIC, 24 Pin (JEDEC MS-013AD, https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/soic_wide-rw/RW_24.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -SOIC SO -0 -24 -24 -Package_SO -SOIC-28W_7.5x17.9mm_P1.27mm -SOIC, 28 Pin (JEDEC MS-013AE, https://www.analog.com/media/en/package-pcb-resources/package/35833120341221rw_28.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -SOIC SO -0 -28 -28 -Package_SO -SOIC-28W_7.5x18.7mm_P1.27mm -SOIC, 28 Pin (https://www.akm.com/akm/en/file/datasheet/AK5394AVS.pdf#page=23), generated with kicad-footprint-generator ipc_gullwing_generator.py -SOIC SO -0 -28 -28 -Package_SO -SOJ-36_10.16x23.49mm_P1.27mm -SOJ, 36 Pin (http://www.issi.com/WW/pdf/61-64C5128AL.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -SOJ SO -0 -36 -36 -Package_SO -SOP-4_3.8x4.1mm_P2.54mm -SOP, 4 Pin (http://www.ixysic.com/home/pdfs.nsf/www/CPC1017N.pdf/$file/CPC1017N.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -SOP SO -0 -4 -4 -Package_SO -SOP-4_4.4x2.6mm_P1.27mm -SOP, 4 Pin (http://www.vishay.com/docs/83510/tcmt1100.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -SOP SO -0 -4 -4 -Package_SO -SOP-8-1EP_4.57x4.57mm_P1.27mm_EP4.57x4.45mm -SOP, 8 Pin (https://ww2.minicircuits.com/case_style/XX112.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -SOP SO -0 -13 -9 -Package_SO -SOP-8-1EP_4.57x4.57mm_P1.27mm_EP4.57x4.45mm_ThermalVias -SOP, 8 Pin (https://ww2.minicircuits.com/case_style/XX112.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -SOP SO -0 -20 -9 -Package_SO -SOP-8_3.9x4.9mm_P1.27mm -SOP, 8 Pin (http://www.macronix.com/Lists/Datasheet/Attachments/7534/MX25R3235F,%20Wide%20Range,%2032Mb,%20v1.6.pdf#page=79), generated with kicad-footprint-generator ipc_gullwing_generator.py -SOP SO -0 -8 -8 -Package_SO -SOP-8_3.76x4.96mm_P1.27mm -SOP, 8 Pin (https://ww2.minicircuits.com/case_style/XX211.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -SOP SO -0 -8 -8 -Package_SO -SOP-8_5.28x5.23mm_P1.27mm -SOP, 8 Pin (http://www.macronix.com/Lists/Datasheet/Attachments/7534/MX25R3235F,%20Wide%20Range,%2032Mb,%20v1.6.pdf#page=80), generated with kicad-footprint-generator ipc_gullwing_generator.py -SOP SO -0 -8 -8 -Package_SO -SOP-8_6.62x9.15mm_P2.54mm -SOP, 8 Pin (http://www.ti.com/lit/ds/symlink/iso1050.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -SOP SO -0 -8 -8 -Package_SO -SOP-16_3.9x9.9mm_P1.27mm -SOP, 16 Pin (https://www.diodes.com/assets/Datasheets/PAM8403.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -SOP SO -0 -16 -16 -Package_SO -SOP-16_4.4x10.4mm_P1.27mm -16-Lead Plastic Small Outline http://www.vishay.com/docs/49633/sg2098.pdf -SOP 1.27 -0 -16 -16 -Package_SO -SOP-16_4.55x10.3mm_P1.27mm -SOP, 16 Pin (https://toshiba.semicon-storage.com/info/docget.jsp?did=12855&prodName=TLP290-4), generated with kicad-footprint-generator ipc_gullwing_generator.py -SOP SO -0 -16 -16 -Package_SO -SOP-18_7x12.5mm_P1.27mm -SOP, 18 Pin (https://toshiba.semicon-storage.com/info/docget.jsp?did=30523), generated with kicad-footprint-generator ipc_gullwing_generator.py -SOP SO -0 -18 -18 -Package_SO -SOP-20_7.5x12.8mm_P1.27mm -SOP, 20 Pin (https://www.holtek.com/documents/10179/116723/sop20-300.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -SOP SO -0 -20 -20 -Package_SO -SOP-24_7.5x15.4mm_P1.27mm -SOP, 24 Pin (http://www.issi.com/WW/pdf/31FL3218.pdf#page=14), generated with kicad-footprint-generator ipc_gullwing_generator.py -SOP SO -0 -24 -24 -Package_SO -SSO-4_6.7x5.1mm_P2.54mm_Clearance8mm -4-Lead Plastic Stretched Small Outline (SSO/Stretched SO), see https://www.vishay.com/docs/84299/vor1142b4.pdf -SSO Stretched SO SOIC 2.54 -0 -4 -4 -Package_SO -SSO-6_6.8x4.6mm_P1.27mm_Clearance7mm -8-Lead Plastic Stretched Small Outline (SSO/Stretched SO), see https://docs.broadcom.com/cs/Satellite?blobcol=urldata&blobheader=application%2Fpdf&blobheadername1=Content-Disposition&blobheadername2=Content-Type&blobheadername3=MDT-Type&blobheadervalue1=attachment%3Bfilename%3DIPD-Selection-Guide_AV00-0254EN_030617.pdf&blobheadervalue2=application%2Fx-download&blobheadervalue3=abinary%253B%2Bcharset%253DUTF-8&blobkey=id&blobnocache=true&blobtable=MungoBlobs&blobwhere=1430884105675&ssbinary=true -SSO Stretched SO SOIC 1.27 -0 -6 -6 -Package_SO -SSO-6_6.8x4.6mm_P1.27mm_Clearance8mm -8-Lead Plastic Stretched Small Outline (SSO/Stretched SO), see https://docs.broadcom.com/cs/Satellite?blobcol=urldata&blobheader=application%2Fpdf&blobheadername1=Content-Disposition&blobheadername2=Content-Type&blobheadername3=MDT-Type&blobheadervalue1=attachment%3Bfilename%3DIPD-Selection-Guide_AV00-0254EN_030617.pdf&blobheadervalue2=application%2Fx-download&blobheadervalue3=abinary%253B%2Bcharset%253DUTF-8&blobkey=id&blobnocache=true&blobtable=MungoBlobs&blobwhere=1430884105675&ssbinary=true -SSO Stretched SO SOIC 1.27 -0 -6 -6 -Package_SO -SSO-7-8_6.4x9.78mm_P2.54mm -SSO, 7 Pin (https://b2b-api.panasonic.eu/file_stream/pids/fileversion/2787), generated with kicad-footprint-generator ipc_gullwing_generator.py -SSO SO -0 -7 -7 -Package_SO -SSO-8_6.7x9.8mm_P2.54mm_Clearance8mm -8-Lead Plastic Stretched Small Outline (SSO/Stretched SO), see https://www.vishay.com/docs/83831/lh1533ab.pdf -SSO Stretched SO SOIC Pitch 2.54 -0 -8 -8 -Package_SO -SSO-8_6.8x5.9mm_P1.27mm_Clearance7mm -8-Lead Plastic Stretched Small Outline (SSO/Stretched SO), see https://docs.broadcom.com/cs/Satellite?blobcol=urldata&blobheader=application%2Fpdf&blobheadername1=Content-Disposition&blobheadername2=Content-Type&blobheadername3=MDT-Type&blobheadervalue1=attachment%3Bfilename%3DIPD-Selection-Guide_AV00-0254EN_030617.pdf&blobheadervalue2=application%2Fx-download&blobheadervalue3=abinary%253B%2Bcharset%253DUTF-8&blobkey=id&blobnocache=true&blobtable=MungoBlobs&blobwhere=1430884105675&ssbinary=true -SSO Stretched SO SOIC Pitch 1.27 -0 -8 -8 -Package_SO -SSO-8_6.8x5.9mm_P1.27mm_Clearance8mm -8-Lead Plastic Stretched Small Outline (SSO/Stretched SO), see https://docs.broadcom.com/cs/Satellite?blobcol=urldata&blobheader=application%2Fpdf&blobheadername1=Content-Disposition&blobheadername2=Content-Type&blobheadername3=MDT-Type&blobheadervalue1=attachment%3Bfilename%3DIPD-Selection-Guide_AV00-0254EN_030617.pdf&blobheadervalue2=application%2Fx-download&blobheadervalue3=abinary%253B%2Bcharset%253DUTF-8&blobkey=id&blobnocache=true&blobtable=MungoBlobs&blobwhere=1430884105675&ssbinary=true -SSO Stretched SO SOIC Pitch 1.27 -0 -8 -8 -Package_SO -SSO-8_9.6x6.3mm_P1.27mm_Clearance10.5mm -8-Lead Plastic Stretched Small Outline (SSO/Stretched SO), see https://docs.broadcom.com/cs/Satellite?blobcol=urldata&blobheader=application%2Fpdf&blobheadername1=Content-Disposition&blobheadername2=Content-Type&blobheadername3=MDT-Type&blobheadervalue1=attachment%3Bfilename%3DIPD-Selection-Guide_AV00-0254EN_030617.pdf&blobheadervalue2=application%2Fx-download&blobheadervalue3=abinary%253B%2Bcharset%253DUTF-8&blobkey=id&blobnocache=true&blobtable=MungoBlobs&blobwhere=1430884105675&ssbinary=true -SSO Stretched SO SOIC Pitch 1.27 -0 -8 -8 -Package_SO -SSO-8_13.6x6.3mm_P1.27mm_Clearance14.2mm -8-Lead Plastic Stretched Small Outline (SSO/Stretched SO), see https://docs.broadcom.com/cs/Satellite?blobcol=urldata&blobheader=application%2Fpdf&blobheadername1=Content-Disposition&blobheadername2=Content-Type&blobheadername3=MDT-Type&blobheadervalue1=attachment%3Bfilename%3DIPD-Selection-Guide_AV00-0254EN_030617.pdf&blobheadervalue2=application%2Fx-download&blobheadervalue3=abinary%253B%2Bcharset%253DUTF-8&blobkey=id&blobnocache=true&blobtable=MungoBlobs&blobwhere=1430884105675&ssbinary=true -SSO Stretched SO SOIC Pitch 1.27 -0 -8 -8 -Package_SO -SSOP-8_2.95x2.8mm_P0.65mm -SSOP-8 2.9 x2.8mm Pitch 0.65mm -SSOP-8 2.95x2.8mm Pitch 0.65mm -0 -8 -8 -Package_SO -SSOP-8_3.9x5.05mm_P1.27mm -SSOP, 8 Pin (http://www.fujitsu.com/downloads/MICRO/fsa/pdf/products/memory/fram/MB85RS16-DS501-00014-6v0-E.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -SSOP SO -0 -8 -8 -Package_SO -SSOP-8_3.95x5.21x3.27mm_P1.27mm -SSOP-8 3.95x5.21x3.27mm Pitch 1.27mm -SSOP-8 3.95x5.21x3.27mm 1.27mm -0 -8 -8 -Package_SO -SSOP-8_5.25x5.24mm_P1.27mm -SSOP, 8 Pin (http://www.fujitsu.com/ca/en/Images/MB85RS2MT-DS501-00023-1v0-E.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -SSOP SO -0 -8 -8 -Package_SO -SSOP-10_3.9x4.9mm_P1.00mm -10-Lead SSOP, 3.9 x 4.9mm body, 1.00mm pitch (http://www.st.com/resource/en/datasheet/viper01.pdf) -SSOP 3.9 4.9 1.00 -0 -10 -10 -Package_SO -SSOP-14_5.3x6.2mm_P0.65mm -SSOP14: plastic shrink small outline package; 14 leads; body width 5.3 mm; (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot337-1_po.pdf) -SSOP 0.65 -0 -14 -14 -Package_SO -SSOP-16_3.9x4.9mm_P0.635mm -SSOP16: plastic shrink small outline package; 16 leads; body width 3.9 mm; lead pitch 0.635; (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot519-1_po.pdf) -SSOP 0.635 -0 -16 -16 -Package_SO -SSOP-16_4.4x5.2mm_P0.65mm -SSOP16: plastic shrink small outline package; 16 leads; body width 4.4 mm; (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot369-1_po.pdf) -SSOP 0.65 -0 -16 -16 -Package_SO -SSOP-16_5.3x6.2mm_P0.65mm -SSOP, 16 Pin (https://assets.nexperia.com/documents/data-sheet/74HC_HCT165.pdf#page=14), generated with kicad-footprint-generator ipc_gullwing_generator.py -SSOP SO -0 -16 -16 -Package_SO -SSOP-18_4.4x6.5mm_P0.65mm -SSOP18: plastic shrink small outline package; 18 leads; body width 4.4 mm (http://toshiba.semicon-storage.com/info/docget.jsp?did=30523&prodName=TBD62783APG) -SSOP 0.65 -0 -18 -18 -Package_SO -SSOP-20_3.9x8.7mm_P0.635mm -SSOP20: plastic shrink small outline package; 24 leads; body width 3.9 mm; lead pitch 0.635; (see http://www.ftdichip.com/Support/Documents/DataSheets/ICs/DS_FT231X.pdf) -SSOP 0.635 -0 -20 -20 -Package_SO -SSOP-20_4.4x6.5mm_P0.65mm -SSOP20: plastic shrink small outline package; 20 leads; body width 4.4 mm; (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot266-1_po.pdf) -SSOP 0.65 -0 -20 -20 -Package_SO -SSOP-20_5.3x7.2mm_P0.65mm -SSOP, 20 Pin (http://ww1.microchip.com/downloads/en/DeviceDoc/40001800C.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -SSOP SO -0 -20 -20 -Package_SO -SSOP-24_3.9x8.7mm_P0.635mm -SSOP24: plastic shrink small outline package; 24 leads; body width 3.9 mm; lead pitch 0.635; (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot556-1_po.pdf) -SSOP 0.635 -0 -24 -24 -Package_SO -SSOP-24_5.3x8.2mm_P0.65mm -24-Lead Plastic Shrink Small Outline (SS)-5.30 mm Body [SSOP] (see Microchip Packaging Specification 00000049BS.pdf) -SSOP 0.65 -0 -24 -24 -Package_SO -SSOP-28_3.9x9.9mm_P0.635mm -SSOP28: plastic shrink small outline package; 28 leads; body width 3.9 mm; lead pitch 0.635; (see http://cds.linear.com/docs/en/datasheet/38901fb.pdf) -SSOP 0.635 -0 -28 -28 -Package_SO -SSOP-28_5.3x10.2mm_P0.65mm -28-Lead Plastic Shrink Small Outline (SS)-5.30 mm Body [SSOP] (see Microchip Packaging Specification 00000049BS.pdf) -SSOP 0.65 -0 -28 -28 -Package_SO -SSOP-32_11.305x20.495mm_P1.27mm -SSOP, 32 Pin (http://www.issi.com/WW/pdf/61-64C5128AL.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -SSOP SO -0 -32 -32 -Package_SO -SSOP-44_5.3x12.8mm_P0.5mm -44-Lead Plastic Shrink Small Outline (SS)-5.30 mm Body [SSOP] (http://cds.linear.com/docs/en/datasheet/680313fa.pdf) -SSOP 0.5 -0 -44 -44 -Package_SO -SSOP-48_5.3x12.8mm_P0.5mm -SSOP, 48 Pin (https://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-ssop/05081887_A_G48.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -SSOP SO -0 -48 -48 -Package_SO -SSOP-48_7.5x15.9mm_P0.635mm -SSOP48: plastic shrink small outline package; 48 leads; body width 7.5 mm; (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot370-1_po.pdf) -SSOP 0.635 -0 -48 -48 -Package_SO -SSOP-56_7.5x18.5mm_P0.635mm -SSOP56: plastic shrink small outline package; 56 leads; body width 7.5 mm; (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot371-1_po.pdf) -SSOP 0.635 -0 -56 -56 -Package_SO -STC_SOP-16_3.9x9.9mm_P1.27mm -STC SOP, 16 Pin (https://www.stcmicro.com/datasheet/STC15F2K60S2-en.pdf#page=156), generated with kicad-footprint-generator ipc_gullwing_generator.py -STC SOP SO -0 -16 -16 -Package_SO -ST_MultiPowerSO-30 -MultiPowerSO-30 3EP 16.0x17.2mm Pitch 1mm (http://www.st.com/resource/en/datasheet/vnh2sp30-e.pdf) -MultiPowerSO-30 3EP 16.0x17.2mm Pitch 1mm -0 -33 -33 -Package_SO -ST_PowerSSO-24_SlugDown -ST PowerSSO-24 1EP 7.5x10.3mm Pitch 0.8mm [JEDEC MO-271] (http://www.st.com/resource/en/datasheet/tda7266p.pdf, http://freedatasheets.com/downloads/Technical%20Note%20Powersso24%20TN0054.pdf) -ST PowerSSO-24 1EP 7.5x10.3mm Pitch 0.8mm -0 -25 -25 -Package_SO -ST_PowerSSO-24_SlugDown_ThermalVias -ST PowerSSO-24 1EP 7.5x10.3mm Pitch 0.8mm [JEDEC MO-271] (http://www.st.com/resource/en/datasheet/tda7266p.pdf, http://freedatasheets.com/downloads/Technical%20Note%20Powersso24%20TN0054.pdf) -ST PowerSSO-24 1EP 7.5x10.3mm Pitch 0.8mm -0 -38 -25 -Package_SO -ST_PowerSSO-24_SlugUp -ST PowerSSO-24 1EP 7.5x10.3mm Pitch 0.8mm [JEDEC MO-271] (http://www.st.com/resource/en/datasheet/tda7266p.pdf, http://freedatasheets.com/downloads/Technical%20Note%20Powersso24%20TN0054.pdf) -ST PowerSSO-24 1EP 7.5x10.3mm Pitch 0.8mm -0 -24 -24 -Package_SO -ST_PowerSSO-36_SlugDown -ST PowerSSO-36 1EP 7.5x10.3mm Pitch 0.8mm [JEDEC MO-271] (http://www.st.com/resource/en/datasheet/tda7492p.pdf, http://freedatasheets.com/downloads/Technical%20Note%20Powersso24%20TN0054.pdf) -ST PowerSSO-36 1EP 7.5x10.3mm Pitch 0.8mm -0 -37 -37 -Package_SO -ST_PowerSSO-36_SlugDown_ThermalVias -ST PowerSSO-36 1EP 7.5x10.3mm Pitch 0.8mm [JEDEC MO-271] (http://www.st.com/resource/en/datasheet/tda7492p.pdf, http://freedatasheets.com/downloads/Technical%20Note%20Powersso24%20TN0054.pdf) -ST PowerSSO-36 1EP 7.5x10.3mm Pitch 0.8mm -0 -50 -37 -Package_SO -ST_PowerSSO-36_SlugUp -ST PowerSSO-36 1EP 7.5x10.3mm Pitch 0.8mm [JEDEC MO-271] (http://www.st.com/resource/en/datasheet/tda7492p.pdf, http://freedatasheets.com/downloads/Technical%20Note%20Powersso24%20TN0054.pdf) -ST PowerSSO-36 1EP 7.5x10.3mm Pitch 0.8mm -0 -36 -36 -Package_SO -TI_SO-PowerPAD-8 -8-Lead Plastic PSOP, Exposed Die Pad (TI DDA0008B, see http://www.ti.com/lit/ds/symlink/lm3404.pdf) -SSOP 0.50 exposed pad -0 -12 -9 -Package_SO -TI_SO-PowerPAD-8_ThermalVias -8-pin HTSOP package with 1.27mm pin pitch, compatible with SOIC-8, 3.9x4.9mm² body, exposed pad, thermal vias with large copper area, as proposed in http://www.ti.com/lit/ds/symlink/tps5430.pdf -HTSOP 1.27 -0 -19 -9 -Package_SO -TSOP-5_1.65x3.05mm_P0.95mm -TSOP-5 package (comparable to TSOT-23), https://www.vishay.com/docs/71200/71200.pdf -Jedec MO-193C TSOP-5L -0 -5 -5 -Package_SO -TSOP-6_1.65x3.05mm_P0.95mm -TSOP-6 package (comparable to TSOT-23), https://www.vishay.com/docs/71200/71200.pdf -Jedec MO-193C TSOP-6L -0 -6 -6 -Package_SO -TSOP-I-24_12.4x6mm_P0.5mm -TSOP-I, 24 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation AA), generated with kicad-footprint-generator ipc_gullwing_generator.py -TSOP-I SO -0 -24 -24 -Package_SO -TSOP-I-24_14.4x6mm_P0.5mm -TSOP-I, 24 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation AB), generated with kicad-footprint-generator ipc_gullwing_generator.py -TSOP-I SO -0 -24 -24 -Package_SO -TSOP-I-24_16.4x6mm_P0.5mm -TSOP-I, 24 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation AC), generated with kicad-footprint-generator ipc_gullwing_generator.py -TSOP-I SO -0 -24 -24 -Package_SO -TSOP-I-24_18.4x6mm_P0.5mm -TSOP-I, 24 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation AD), generated with kicad-footprint-generator ipc_gullwing_generator.py -TSOP-I SO -0 -24 -24 -Package_SO -TSOP-I-28_11.8x8mm_P0.55mm -TSOP I, 28 pins, 18.8x8mm body, 0.55mm pitch, IPC-calculated pads (http://ww1.microchip.com/downloads/en/devicedoc/doc0807.pdf) -TSOP I 28 pins -0 -28 -28 -Package_SO -TSOP-I-32_11.8x8mm_P0.5mm -TSOP-I, 32 Pin (http://www.issi.com/WW/pdf/61-64C5128AL.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -TSOP-I SO -0 -32 -32 -Package_SO -TSOP-I-32_12.4x8mm_P0.5mm -TSOP-I, 32 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation BA), generated with kicad-footprint-generator ipc_gullwing_generator.py -TSOP-I SO -0 -32 -32 -Package_SO -TSOP-I-32_14.4x8mm_P0.5mm -TSOP-I, 32 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation BB), generated with kicad-footprint-generator ipc_gullwing_generator.py -TSOP-I SO -0 -32 -32 -Package_SO -TSOP-I-32_16.4x8mm_P0.5mm -TSOP-I, 32 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation BC), generated with kicad-footprint-generator ipc_gullwing_generator.py -TSOP-I SO -0 -32 -32 -Package_SO -TSOP-I-32_18.4x8mm_P0.5mm -TSOP-I, 32 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation BD), generated with kicad-footprint-generator ipc_gullwing_generator.py -TSOP-I SO -0 -32 -32 -Package_SO -TSOP-I-32_18.4x8mm_P0.5mm_Reverse -TSOP I, 32 pins, 18.4x8mm body (http://www.futurlec.com/Datasheet/Memory/628128.pdf), reverse mount -TSOP I 32 reverse -0 -32 -32 -Package_SO -TSOP-I-40_12.4x10mm_P0.5mm -TSOP-I, 40 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation CA), generated with kicad-footprint-generator ipc_gullwing_generator.py -TSOP-I SO -0 -40 -40 -Package_SO -TSOP-I-40_14.4x10mm_P0.5mm -TSOP-I, 40 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation CB), generated with kicad-footprint-generator ipc_gullwing_generator.py -TSOP-I SO -0 -40 -40 -Package_SO -TSOP-I-40_16.4x10mm_P0.5mm -TSOP-I, 40 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation CC), generated with kicad-footprint-generator ipc_gullwing_generator.py -TSOP-I SO -0 -40 -40 -Package_SO -TSOP-I-40_18.4x10mm_P0.5mm -TSOP-I, 40 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation CD), generated with kicad-footprint-generator ipc_gullwing_generator.py -TSOP-I SO -0 -40 -40 -Package_SO -TSOP-I-48_12.4x12mm_P0.5mm -TSOP-I, 48 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation DA), generated with kicad-footprint-generator ipc_gullwing_generator.py -TSOP-I SO -0 -48 -48 -Package_SO -TSOP-I-48_14.4x12mm_P0.5mm -TSOP-I, 48 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation DB), generated with kicad-footprint-generator ipc_gullwing_generator.py -TSOP-I SO -0 -48 -48 -Package_SO -TSOP-I-48_16.4x12mm_P0.5mm -TSOP-I, 48 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation DC), generated with kicad-footprint-generator ipc_gullwing_generator.py -TSOP-I SO -0 -48 -48 -Package_SO -TSOP-I-48_18.4x12mm_P0.5mm -TSOP-I, 48 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation DD), generated with kicad-footprint-generator ipc_gullwing_generator.py -TSOP-I SO -0 -48 -48 -Package_SO -TSOP-I-56_14.4x14mm_P0.5mm -TSOP-I, 56 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation EA), generated with kicad-footprint-generator ipc_gullwing_generator.py -TSOP-I SO -0 -56 -56 -Package_SO -TSOP-I-56_16.4x14mm_P0.5mm -TSOP-I, 56 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation EB), generated with kicad-footprint-generator ipc_gullwing_generator.py -TSOP-I SO -0 -56 -56 -Package_SO -TSOP-I-56_18.4x14mm_P0.5mm -TSOP-I, 56 Pin (https://www.jedec.org/standards-documents/docs/mo-142-d variation EC), generated with kicad-footprint-generator ipc_gullwing_generator.py -TSOP-I SO -0 -56 -56 -Package_SO -TSOP-II-32_21.0x10.2mm_P1.27mm -32-lead plastic TSOP; Type II -TSOP-II 32 -0 -32 -32 -Package_SO -TSOP-II-44_10.16x18.41mm_P0.8mm -TSOP-II, 44 Pin (http://www.issi.com/WW/pdf/61-64C5128AL.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -TSOP-II SO -0 -44 -44 -Package_SO -TSOP-II-54_22.2x10.16mm_P0.8mm -54-lead TSOP typ II package -TSOPII TSOP2 -0 -54 -54 -Package_SO -TSSOP-4_4.4x5mm_P4mm -TSSOP, 4 Pin (https://www.onsemi.com/pub/Collateral/MDB8S-D.PDF#page=4), generated with kicad-footprint-generator ipc_gullwing_generator.py -TSSOP SO -0 -4 -4 -Package_SO -TSSOP-8_3x3mm_P0.65mm -TSSOP8: plastic thin shrink small outline package; 8 leads; body width 3 mm; (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot505-1_po.pdf) -SSOP 0.65 -0 -8 -8 -Package_SO -TSSOP-8_4.4x3mm_P0.65mm -TSSOP, 8 Pin (JEDEC MO-153 Var AA https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py -TSSOP SO -0 -8 -8 -Package_SO -TSSOP-10_3x3mm_P0.5mm -TSSOP10: plastic thin shrink small outline package; 10 leads; body width 3 mm; (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot552-1_po.pdf) -SSOP 0.5 -0 -10 -10 -Package_SO -TSSOP-14-1EP_4.4x5mm_P0.65mm -14-Lead Plastic Thin Shrink Small Outline (ST)-4.4 mm Body [TSSOP] with exposed pad (http://cds.linear.com/docs/en/datasheet/34301fa.pdf) -SSOP 0.65 exposed pad -0 -18 -15 -Package_SO -TSSOP-14_4.4x3.6mm_P0.4mm -TSSOP, 14 Pin (JEDEC MO-194 Var AA https://www.jedec.org/document_search?search_api_views_fulltext=MO-194), generated with kicad-footprint-generator ipc_gullwing_generator.py -TSSOP SO -0 -14 -14 -Package_SO -TSSOP-14_4.4x5mm_P0.65mm -TSSOP, 14 Pin (JEDEC MO-153 Var AB-1 https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py -TSSOP SO -0 -14 -14 -Package_SO -TSSOP-16-1EP_4.4x5mm_P0.65mm -FE Package; 16-Lead Plastic TSSOP (4.4mm); Exposed Pad Variation BB; (see Linear Technology 1956f.pdf) -SSOP 0.65 -0 -24 -17 -Package_SO -TSSOP-16-1EP_4.4x5mm_P0.65mm_EP3x3mm -TSSOP, 16 Pin (Allegro A4954 https://www.allegromicro.com/-/media/Files/Datasheets/A4954-Datasheet.ashx), generated with kicad-footprint-generator ipc_gullwing_generator.py -TSSOP SO -0 -21 -17 -Package_SO -TSSOP-16-1EP_4.4x5mm_P0.65mm_EP3x3mm_ThermalVias -TSSOP, 16 Pin (Allegro A4954 https://www.allegromicro.com/-/media/Files/Datasheets/A4954-Datasheet.ashx), generated with kicad-footprint-generator ipc_gullwing_generator.py -TSSOP SO -0 -26 -17 -Package_SO -TSSOP-16_4.4x3.6mm_P0.4mm -TSSOP, 16 Pin (JEDEC MO-194 Var AB https://www.jedec.org/document_search?search_api_views_fulltext=MO-194), generated with kicad-footprint-generator ipc_gullwing_generator.py -TSSOP SO -0 -16 -16 -Package_SO -TSSOP-16_4.4x5mm_P0.65mm -TSSOP, 16 Pin (JEDEC MO-153 Var AB https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py -TSSOP SO -0 -16 -16 -Package_SO -TSSOP-20-1EP_4.4x6.5mm_P0.65mm_EP2.15x3.35mm -TSSOP, 20 Pin (https://pdfserv.maximintegrated.com/package_dwgs/21-100132.PDF), generated with kicad-footprint-generator ipc_gullwing_generator.py -TSSOP SO -0 -25 -21 -Package_SO -TSSOP-20_4.4x5mm_P0.4mm -TSSOP, 20 Pin (JEDEC MO-194 Var AC https://www.jedec.org/document_search?search_api_views_fulltext=MO-194), generated with kicad-footprint-generator ipc_gullwing_generator.py -TSSOP SO -0 -20 -20 -Package_SO -TSSOP-20_4.4x5mm_P0.5mm -TSSOP, 20 Pin (JEDEC MO-153 Var BA https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py -TSSOP SO -0 -20 -20 -Package_SO -TSSOP-20_4.4x6.5mm_P0.65mm -TSSOP, 20 Pin (JEDEC MO-153 Var AC https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py -TSSOP SO -0 -20 -20 -Package_SO -TSSOP-24-1EP_4.4x7.8mm_P0.65mm_EP3.2x5mm -TSSOP, 24 Pin (https://www.st.com/resource/en/datasheet/led1642gw.pdf#page=37), generated with kicad-footprint-generator ipc_gullwing_generator.py -TSSOP SO -0 -31 -25 -Package_SO -TSSOP-24_4.4x5mm_P0.4mm -TSSOP, 24 Pin (JEDEC MO-153 Var CA https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py -TSSOP SO -0 -24 -24 -Package_SO -TSSOP-24_4.4x6.5mm_P0.5mm -TSSOP, 24 Pin (JEDEC MO-153 Var BB https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py -TSSOP SO -0 -24 -24 -Package_SO -TSSOP-24_4.4x7.8mm_P0.65mm -TSSOP, 24 Pin (JEDEC MO-153 Var AD https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py -TSSOP SO -0 -24 -24 -Package_SO -TSSOP-24_6.1x7.8mm_P0.65mm -TSSOP, 24 Pin (JEDEC MO-153 Var DA https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py -TSSOP SO -0 -24 -24 -Package_SO -TSSOP-28-1EP_4.4x9.7mm_P0.65mm -TSSOP28: plastic thin shrink small outline package; 28 leads; body width 4.4 mm; Exposed Pad Variation; (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot361-1_po.pdf) -SSOP 0.65 -0 -36 -29 -Package_SO -TSSOP-28-1EP_4.4x9.7mm_P0.65mm_EP2.85x6.7mm -TSSOP, 28 Pin (JEDEC MO-153 Var AET Pkg.Code U28E-4 https://pdfserv.maximintegrated.com/package_dwgs/21-0108.PDF), generated with kicad-footprint-generator ipc_gullwing_generator.py -TSSOP SO -0 -35 -29 -Package_SO -TSSOP-28_4.4x7.8mm_P0.5mm -TSSOP, 28 Pin (JEDEC MO-153 Var BC https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py -TSSOP SO -0 -28 -28 -Package_SO -TSSOP-28_4.4x9.7mm_P0.65mm -TSSOP, 28 Pin (JEDEC MO-153 Var AE https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py -TSSOP SO -0 -28 -28 -Package_SO -TSSOP-28_6.1x7.8mm_P0.5mm -TSSOP, 28 Pin (JEDEC MO-153 Var EA https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py -TSSOP SO -0 -28 -28 -Package_SO -TSSOP-28_6.1x9.7mm_P0.65mm -TSSOP, 28 Pin (JEDEC MO-153 Var DB https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py -TSSOP SO -0 -28 -28 -Package_SO -TSSOP-28_8x9.7mm_P0.65mm -TSSOP, 28 Pin (JEDEC MO-153 Var GA https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py -TSSOP SO -0 -28 -28 -Package_SO -TSSOP-30_4.4x7.8mm_P0.5mm -TSSOP, 30 Pin (JEDEC MO-153 Var BC-1 https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py -TSSOP SO -0 -30 -30 -Package_SO -TSSOP-30_6.1x9.7mm_P0.65mm -TSSOP, 30 Pin (JEDEC MO-153 Var DB-1 https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py -TSSOP SO -0 -30 -30 -Package_SO -TSSOP-32_4.4x6.5mm_P0.4mm -TSSOP, 32 Pin (JEDEC MO-153 Var CB https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py -TSSOP SO -0 -32 -32 -Package_SO -TSSOP-32_6.1x11mm_P0.65mm -TSSOP, 32 Pin (JEDEC MO-153 Var DC https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py -TSSOP SO -0 -32 -32 -Package_SO -TSSOP-32_8x11mm_P0.65mm -TSSOP, 32 Pin (JEDEC MO-153 Var GB https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py -TSSOP SO -0 -32 -32 -Package_SO -TSSOP-36_4.4x7.8mm_P0.4mm -TSSOP, 36 Pin (JEDEC MO-153 Var CC https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py -TSSOP SO -0 -36 -36 -Package_SO -TSSOP-36_4.4x9.7mm_P0.5mm -TSSOP, 36 Pin (JEDEC MO-153 Var BD https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py -TSSOP SO -0 -36 -36 -Package_SO -TSSOP-36_6.1x7.8mm_P0.4mm -TSSOP, 36 Pin (JEDEC MO-153 Var FA https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py -TSSOP SO -0 -36 -36 -Package_SO -TSSOP-36_6.1x9.7mm_P0.5mm -TSSOP, 36 Pin (JEDEC MO-153 Var EB https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py -TSSOP SO -0 -36 -36 -Package_SO -TSSOP-36_6.1x12.5mm_P0.65mm -TSSOP, 36 Pin (JEDEC MO-153 Var DD https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py -TSSOP SO -0 -36 -36 -Package_SO -TSSOP-36_8x9.7mm_P0.5mm -TSSOP, 36 Pin (JEDEC MO-153 Var HA https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py -TSSOP SO -0 -36 -36 -Package_SO -TSSOP-36_8x12.5mm_P0.65mm -TSSOP, 36 Pin (JEDEC MO-153 Var GC https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py -TSSOP SO -0 -36 -36 -Package_SO -TSSOP-38_4.4x9.7mm_P0.5mm -TSSOP, 38 Pin (JEDEC MO-153 Var BD https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py -TSSOP SO -0 -38 -38 -Package_SO -TSSOP-38_6.1x12.5mm_P0.65mm -TSSOP, 38 Pin (JEDEC MO-153 Var DD-1 https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py -TSSOP SO -0 -38 -38 -Package_SO -TSSOP-40_6.1x11mm_P0.5mm -TSSOP, 40 Pin (JEDEC MO-153 Var EC https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py -TSSOP SO -0 -40 -40 -Package_SO -TSSOP-40_6.1x14mm_P0.65mm -TSSOP, 40 Pin (JEDEC MO-153 Var DE https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py -TSSOP SO -0 -40 -40 -Package_SO -TSSOP-40_8x11mm_P0.5mm -TSSOP, 40 Pin (JEDEC MO-153 Var HB https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py -TSSOP SO -0 -40 -40 -Package_SO -TSSOP-40_8x14mm_P0.65mm -TSSOP, 40 Pin (JEDEC MO-153 Var GD https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py -TSSOP SO -0 -40 -40 -Package_SO -TSSOP-44_4.4x11.2mm_P0.5mm -TSSOP44: plastic thin shrink small outline package; 44 leads; body width 4.4 mm (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot510-1_po.pdf) -SSOP 0.5 -0 -44 -44 -Package_SO -TSSOP-44_4.4x11mm_P0.5mm -TSSOP, 44 Pin (JEDEC MO-153 Var BE https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py -TSSOP SO -0 -44 -44 -Package_SO -TSSOP-44_6.1x11mm_P0.5mm -TSSOP, 44 Pin (JEDEC MO-153 Var EC-1 https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py -TSSOP SO -0 -44 -44 -Package_SO -TSSOP-48_4.4x9.7mm_P0.4mm -TSSOP, 48 Pin (JEDEC MO-153 Var CD https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py -TSSOP SO -0 -48 -48 -Package_SO -TSSOP-48_6.1x9.7mm_P0.4mm -TSSOP, 48 Pin (JEDEC MO-153 Var FB https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py -TSSOP SO -0 -48 -48 -Package_SO -TSSOP-48_6.1x12.5mm_P0.5mm -TSSOP, 48 Pin (JEDEC MO-153 Var ED https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py -TSSOP SO -0 -48 -48 -Package_SO -TSSOP-48_8x9.7mm_P0.4mm -TSSOP, 48 Pin (JEDEC MO-153 Var JA https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py -TSSOP SO -0 -48 -48 -Package_SO -TSSOP-48_8x12.5mm_P0.5mm -TSSOP, 48 Pin (JEDEC MO-153 Var HC https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py -TSSOP SO -0 -48 -48 -Package_SO -TSSOP-50_4.4x12.5mm_P0.5mm -TSSOP, 50 Pin (JEDEC MO-153 Var BF https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py -TSSOP SO -0 -50 -50 -Package_SO -TSSOP-52_6.1x11mm_P0.4mm -TSSOP, 52 Pin (JEDEC MO-153 Var FC https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py -TSSOP SO -0 -52 -52 -Package_SO -TSSOP-52_8x11mm_P0.4mm -TSSOP, 52 Pin (JEDEC MO-153 Var JB https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py -TSSOP SO -0 -52 -52 -Package_SO -TSSOP-56_4.4x11.3mm_P0.4mm -TSSOP, 56 Pin (JEDEC MO-194 Var AF https://www.jedec.org/document_search?search_api_views_fulltext=MO-194), generated with kicad-footprint-generator ipc_gullwing_generator.py -TSSOP SO -0 -56 -56 -Package_SO -TSSOP-56_6.1x12.5mm_P0.4mm -TSSOP, 56 Pin (JEDEC MO-153 Var FD https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py -TSSOP SO -0 -56 -56 -Package_SO -TSSOP-56_6.1x14mm_P0.5mm -TSSOP, 56 Pin (JEDEC MO-153 Var EE https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py -TSSOP SO -0 -56 -56 -Package_SO -TSSOP-56_8x12.5mm_P0.4mm -TSSOP, 56 Pin (JEDEC MO-153 Var JC https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py -TSSOP SO -0 -56 -56 -Package_SO -TSSOP-56_8x14mm_P0.5mm -TSSOP, 56 Pin (JEDEC MO-153 Var HD https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py -TSSOP SO -0 -56 -56 -Package_SO -TSSOP-60_8x12.5mm_P0.4mm -TSSOP, 60 Pin (JEDEC MO-153 Var JC-1 https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py -TSSOP SO -0 -60 -60 -Package_SO -TSSOP-64_6.1x14mm_P0.4mm -TSSOP, 64 Pin (JEDEC MO-153 Var FE https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py -TSSOP SO -0 -64 -64 -Package_SO -TSSOP-64_6.1x17mm_P0.5mm -TSSOP, 64 Pin (JEDEC MO-153 Var EF https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py -TSSOP SO -0 -64 -64 -Package_SO -TSSOP-64_8x14mm_P0.4mm -TSSOP, 64 Pin (JEDEC MO-153 Var JD https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py -TSSOP SO -0 -64 -64 -Package_SO -TSSOP-68_8x14mm_P0.4mm -TSSOP, 68 Pin (JEDEC MO-153 Var JD-1 https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py -TSSOP SO -0 -68 -68 -Package_SO -TSSOP-80_6.1x17mm_P0.4mm -TSSOP, 80 Pin (JEDEC MO-153 Var FF https://www.jedec.org/document_search?search_api_views_fulltext=MO-153), generated with kicad-footprint-generator ipc_gullwing_generator.py -TSSOP SO -0 -80 -80 -Package_SO -TSSOP-100_6.1x20.8mm_P0.4mm -TSSOP, 100 Pin (JEDEC MO-194 Var BB https://www.jedec.org/document_search?search_api_views_fulltext=MO-194), generated with kicad-footprint-generator ipc_gullwing_generator.py -TSSOP SO -0 -100 -100 -Package_SO -Texas_HSOP-8-1EP_3.9x4.9mm_P1.27mm -Texas Instruments HSOP 9, 1.27mm pitch, 3.9x4.9mm body, exposed pad, DDA0008J (http://www.ti.com/lit/ds/symlink/tps5430.pdf) -HSOP 1.27 -0 -11 -9 -Package_SO -Texas_HSOP-8-1EP_3.9x4.9mm_P1.27mm_ThermalVias -Texas Instruments HSOP 9, 1.27mm pitch, 3.9x4.9mm body, exposed pad, thermal vias, DDA0008J (http://www.ti.com/lit/ds/symlink/tps5430.pdf) -HSOP 1.27 -0 -20 -9 -Package_SO -Texas_HTSOP-8-1EP_3.9x4.9mm_P1.27mm_EP2.95x4.9mm_Mask2.4x3.1mm_ThermalVias -8-pin HTSOP package with 1.27mm pin pitch, compatible with SOIC-8, 3.9x4.9mm body, exposed pad, thermal vias, http://www.ti.com/lit/ds/symlink/drv8870.pdf -HTSOP 1.27 -0 -18 -9 -Package_SO -Texas_PWP0020A -20-Pin Thermally Enhanced Thin Shrink Small-Outline Package, Body 4.4x6.5x1.1mm, Pad 3.0x4.2mm, Texas Instruments (see http://www.ti.com/lit/ds/symlink/lm5118.pdf) -PWP HTSSOP 0.65mm -0 -25 -21 -Package_SO -Texas_R-PDSO-G8_EP2.95x4.9mm_Mask2.4x3.1mm -HSOIC, 8 Pin (http://www.ti.com/lit/ds/symlink/lmr14030.pdf#page=28, http://www.ti.com/lit/ml/msoi002j/msoi002j.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -HSOIC SO -0 -16 -9 -Package_SO -Texas_R-PDSO-G8_EP2.95x4.9mm_Mask2.4x3.1mm_ThermalVias -HSOIC, 8 Pin (http://www.ti.com/lit/ds/symlink/lmr14030.pdf#page=28, http://www.ti.com/lit/ml/msoi002j/msoi002j.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -HSOIC SO -0 -23 -9 -Package_SO -Texas_R-PDSO-N5 -Plastic Small outline http://www.ti.com/lit/ml/mpds158c/mpds158c.pdf -SOT23 R-PDSO-N5 -0 -5 -5 -Package_SO -VSO-40_7.6x15.4mm_P0.762mm -VSO40: plastic very small outline package; 40 leads (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot158-1_po.pdf) -SSOP 0.762 -0 -40 -40 -Package_SO -VSO-56_11.1x21.5mm_P0.75mm -VSO56: plastic very small outline package; 56 leads (see NXP SSOP-TSSOP-VSO-REFLOW.pdf and sot190-1_po.pdf) -SSOP 0.75 -0 -56 -56 -Package_SO -VSSOP-8_2.3x2mm_P0.5mm -VSSOP-8 2.3x2mm Pitch 0.5mm -VSSOP-8 2.3x2mm Pitch 0.5mm -0 -8 -8 -Package_SO -VSSOP-8_2.4x2.1mm_P0.5mm -http://www.ti.com/lit/ml/mpds050d/mpds050d.pdf -VSSOP DCU R-PDSO-G8 Pitch0.5mm -0 -8 -8 -Package_SO -VSSOP-8_3.0x3.0mm_P0.65mm -VSSOP-8 3.0 x 3.0, http://www.ti.com/lit/ds/symlink/lm75b.pdf -VSSOP-8 3.0 x 3.0 -0 -8 -8 -Package_SO -VSSOP-10_3x3mm_P0.5mm -VSSOP, 10 Pin (http://www.ti.com/lit/ds/symlink/ads1115.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -VSSOP SO -0 -10 -10 -Package_SO -Vishay_PowerPAK_1212-8_Dual -PowerPAK 1212-8 Dual (https://www.vishay.com/docs/71656/ppak12128.pdf, https://www.vishay.com/docs/72598/72598.pdf) -Vishay_PowerPAK_1212-8_Dual -0 -6 -6 -Package_SO -Vishay_PowerPAK_1212-8_Single -PowerPAK 1212-8 Single (https://www.vishay.com/docs/71656/ppak12128.pdf, https://www.vishay.com/docs/72597/72597.pdf) -Vishay PowerPAK 1212-8 Single -0 -5 -5 -Package_SO -Zetex_SM8 -Zetex, SMD, 8 pin package (http://datasheet.octopart.com/ZDT6758TA-Zetex-datasheet-68057.pdf) -Zetex SM8 -0 -8 -8 -Package_SON -Diodes_PowerDI3333-8 -Diodes Incorporated PowerDI3333-8, Plastic Dual Flat No Lead Package, 3.3x3.3x0.8mm Body, https://www.diodes.com/assets/Package-Files/PowerDI3333-8.pdf -PowerDI 0.65 -0 -13 -5 -Package_SON -Diodes_PowerDI3333-8_UXC_3.3x3.3mm_P0.65mm -Diodes Incorporated PowerDI3333-8 UXC, 3.05x3.05x0.8mm Body, https://www.diodes.com/assets/Package-Files/PowerDI3333-8%20(Type%20UXC).pdf -PowerDI 0.65 -0 -6 -6 -Package_SON -Fairchild_DualPower33-6_3x3mm -Fairchild Power33 MOSFET package, 3x3mm (see https://www.fairchildsemi.com/datasheets/FD/FDMC8032L.pdf) -mosfet -0 -18 -6 -Package_SON -Fairchild_MicroPak-6_1.0x1.45mm_P0.5mm -Fairchild-specific MicroPak-6 1.0x1.45mm Pitch 0.5mm https://www.nxp.com/docs/en/application-note/AN10343.pdff -Fairchild-specific MicroPak-6 1.0x1.45mm Pitch 0.5mm -0 -6 -6 -Package_SON -Fairchild_MicroPak2-6_1.0x1.0mm_P0.35mm -Fairchild-specific MicroPak2-6 1.0x1.0mm Pitch 0.35mm https://www.nxp.com/docs/en/application-note/AN10343.pdff -Fairchild-specific MicroPak2-6 1.0x1.0mm Pitch 0.35mm -0 -6 -6 -Package_SON -HUSON-3-1EP_2x2mm_P1.3mm_EP1.1x1.6mm -HUSON, 3 Pin, SOT1061 (Ref: https://assets.nexperia.com/documents/data-sheet/PMEG2020CPA.pdf) -huson nolead SOT1061 -0 -4 -3 -Package_SON -HVSON-8-1EP_3x3mm_P0.65mm_EP1.6x2.4mm -HVSON, 8 Pin (https://www.nxp.com/docs/en/data-sheet/TJA1051.pdf#page=16), generated with kicad-footprint-generator ipc_noLead_generator.py -HVSON NoLead -0 -13 -9 -Package_SON -HVSON-8-1EP_4x4mm_P0.8mm_EP2.2x3.1mm -HVSON, 8 Pin (https://www.nxp.com/docs/en/data-sheet/PCF8523.pdf (page 57)), generated with kicad-footprint-generator ipc_noLead_generator.py -HVSON NoLead -0 -13 -9 -Package_SON -Infineon_PG-LSON-8-1 -https://www.infineon.com/cms/en/product/packages/PG-LSON/PG-LSON-8-1/ -PG-LSON-8-1 -0 -17 -9 -Package_SON -Infineon_PG-TDSON-8_6.15x5.15mm -Infineon, PG-TDSON-8, 6.15x5.15x1mm, https://www.infineon.com/dgdl/Infineon-BSC520N15NS3_-DS-v02_02-en.pdf?fileId=db3a30432239cccd0122eee57d9b21a4 -Infineon OptiMOS -0 -21 -5 -Package_SON -Infineon_PG-TISON-8-2 -Infineon, PG-TISON-8-2, 5x6x1.15mm, 1.27mm Pitch, Exposed Paddle, https://www.infineon.com/cms/en/product/packages/PG-TISON/PG-TISON-8-2/ -tison -0 -23 -7 -Package_SON -Infineon_PG-TISON-8-3 -Infineon, PG-TISON-8-2, 5x6x1.15mm, 1.27mm Pitch, Exposed Paddle, https://www.infineon.com/cms/en/product/packages/PG-TISON/PG-TISON-8-2/ -tison -0 -23 -7 -Package_SON -Infineon_PG-TISON-8-4 -Infineon, PG-TISON-8-4, 5x6x1.15mm, 1.27mm Pitch, Exposed Paddle, https://www.infineon.com/cms/en/product/packages/PG-TISON/PG-TISON-8-4/ -tison -0 -26 -8 -Package_SON -Infineon_PG-TISON-8-5 -Infineon, PG-TISON-8-5, 8x8x1.1mm, 1mm Pitch, https://www.infineon.com/cms/en/product/packages/PG-TISON/PG-TISON-8-5/ -tison -0 -34 -8 -Package_SON -NXP_XSON-16 -http://www.nxp.com/documents/outline_drawing/SOT1341-1.pdf -NXP XSON SOT-1341 -0 -16 -16 -Package_SON -ROHM_VML0806 -VML0806, Rohm (http://rohmfs.rohm.com/en/techdata_basic/transistor/soldering_condition/VML0806_Soldering_Condition.pdf, http://rohmfs.rohm.com/en/products/databook/package/spec/discrete/vml0806_tr-e.pdf) -ROHM VML0806 -0 -3 -3 -Package_SON -RTC_SMD_MicroCrystal_C3_2.5x3.7mm -MicroCrystal C3 2.5x3.7mm, https://www.microcrystal.com/fileadmin/Media/Products/RTC/Datasheet/RV-1805-C3.pdf -RTC C3 -0 -10 -10 -Package_SON -SON-8-1EP_3x2mm_P0.5mm_EP1.4x1.6mm -SON, 8 Pin (http://www.fujitsu.com/downloads/MICRO/fsa/pdf/products/memory/fram/MB85RS16-DS501-00014-6v0-E.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -SON NoLead -0 -13 -9 -Package_SON -Texas_DPY0002A_0.6x1mm_P0.65mm -X1SON 2 pin 0.6x1mm 0.375mm height package, https://www.ti.com/lit/ml/mpss034c/mpss034c.pdf, https://www.ti.com/lit/ds/symlink/tpd6e05u06.pdf -X1SON -0 -2 -2 -Package_SON -Texas_DQK -Texas WSON-6 DQK, http://www.ti.com/lit/ds/symlink/csd16301q2.pdf -Texas WSON6 2x2mm -0 -10 -8 -Package_SON -Texas_DRC0010J -Texas DRC0010J, VSON10 3x3mm Body, 0.5mm Pitch, http://www.ti.com/lit/ds/symlink/tps63000.pdf -Texas VSON10 3x3mm -0 -17 -11 -Package_SON -Texas_DRC0010J_ThermalVias -Texas DRC0010J, VSON10 3x3mm Body, 0.5mm Pitch, http://www.ti.com/lit/ds/symlink/tps63000.pdf -Texas VSON10 3x3mm -0 -21 -11 -Package_SON -Texas_DSC0010J -3x3mm Body, 0.5mm Pitch, DSC0010J, WSON, http://www.ti.com/lit/ds/symlink/tps61201.pdf -0.5 DSC0010J WSON -0 -33 -11 -Package_SON -Texas_DSC0010J_ThermalVias -3x3mm Body, 0.5mm Pitch, DSC0010J, WSON, http://www.ti.com/lit/ds/symlink/tps61201.pdf -0.5 DSC0010J WSON -0 -39 -11 -Package_SON -Texas_PWSON-N6 -Plastic Small Outline No-Lead http://www.ti.com/lit/ml/mpds176e/mpds176e.pdf -Plastic Small Outline No-Lead -0 -7 -7 -Package_SON -Texas_R-PUSON-N14 -USON, 14 Pin (https://www.ti.com/lit/ds/symlink/tpd6e05u06.pdf#page=28), generated with kicad-footprint-generator ipc_noLead_generator.py -USON NoLead -0 -14 -14 -Package_SON -Texas_R-PWSON-N12_EP0.4x2mm -http://www.ti.com/lit/ds/symlink/tpd6f003.pdf -WSON SMD -0 -16 -13 -Package_SON -Texas_S-PDSO-N12 -http://www.ti.com/lit/ds/symlink/bq27441-g1.pdf -SON thermal pads -0 -44 -13 -Package_SON -Texas_S-PVSON-N8 -8-Lead Plastic VSON, 3x3mm Body, 0.65mm Pitch, S-PVSON-N8, http://www.ti.com/lit/ds/symlink/opa2333.pdf -DFN 0.65 S-PVSON-N8 -0 -21 -9 -Package_SON -Texas_S-PVSON-N8_ThermalVias -8-Lead Plastic VSON, 3x3mm Body, 0.65mm Pitch, S-PVSON-N8, http://www.ti.com/lit/ds/symlink/opa2333.pdf -DFN 0.65 S-PVSON-N8 -0 -27 -9 -Package_SON -Texas_S-PVSON-N10 -3x3mm Body, 0.5mm Pitch, S-PVSON-N10, DRC, http://www.ti.com/lit/ds/symlink/tps61201.pdf -0.5 S-PVSON-N10 DRC -0 -33 -11 -Package_SON -Texas_S-PVSON-N10_ThermalVias -3x3mm Body, 0.5mm Pitch, S-PVSON-N10, DRC, http://www.ti.com/lit/ds/symlink/tps61201.pdf -0.5 S-PVSON-N10 DRC -0 -39 -11 -Package_SON -Texas_S-PWSON-N8_EP1.2x2mm -WSON, 8 Pin, TI DRG, (http://www.ti.com/lit/ds/symlink/lp2951.pdf#page=27), generated with kicad-footprint-generator ipc_noLead_generator.py -WSON NoLead -0 -11 -9 -Package_SON -Texas_S-PWSON-N10 -3x3mm Body, 0.5mm Pitch, S-PWSON-N10, DSC, http://www.ti.com/lit/ds/symlink/tps63060.pdf -0.5 S-PWSON-N10 DSC -0 -41 -11 -Package_SON -Texas_S-PWSON-N10_ThermalVias -3x3mm Body, 0.5mm Pitch, S-PWSON-N10, DSC, http://www.ti.com/lit/ds/symlink/tps63060.pdf -0.5 S-PWSON-N10 DSC -0 -47 -11 -Package_SON -Texas_USON-6_1x1.45mm_P0.5mm_SMD -USON, 6 Pin (https://www.ti.com/lit/ds/symlink/sn74auc1g04.pdf#page=24), Solder Mask Defined -USON NoLead DRY0006A -0 -6 -6 -Package_SON -Texas_X2SON-4_1x1mm_P0.65mm -X2SON 5 pin 1x1mm package (Reference Datasheet: http://www.ti.com/lit/ds/sbvs193d/sbvs193d.pdf Reference part: TPS383x) [StepUp generated footprint] -X2SON -0 -13 -5 -Package_SON -Texas_X2SON-5_0.8x0.8mm_P0.48mm -X2SON 5 pin 0.8x0.8mm package (Reference Datasheet: https://www.ti.com/lit/ds/symlink/sn74lvc1g17.pdf#page=39 Reference part: SN74LVC1G17) [StepUp generated footprint] -X2SON DPW0005A -0 -9 -5 -Package_SON -Texas_X2SON-5_0.8x0.8mm_P0.48mm_RoutingVia -X2SON 5 pin 0.8x0.8mm package (Reference Datasheet: https://www.ti.com/lit/ds/symlink/sn74lvc1g17.pdf#page=39 Reference part: SN74LVC1G17) [StepUp generated footprint] -X2SON DPW0005A -0 -10 -5 -Package_SON -USON-10_2.5x1.0mm_P0.5mm -USON-10 2.5x1.0mm_ Pitch 0.5mm http://www.ti.com/lit/ds/symlink/tpd4e02b04.pdf -USON-10 2.5x1.0mm Pitch 0.5mm -0 -10 -10 -Package_SON -USON-20_2x4mm_P0.4mm -USON-20 2x4mm Pitch 0.4mm http://www.ti.com/lit/ds/symlink/txb0108.pdf -USON-20 2x4mm Pitch 0.4mm -0 -20 -20 -Package_SON -VSON-8_1.5x2mm_P0.5mm -VSON, 8 Pin (http://www.ti.com/lit/ds/symlink/tps62840.pdf#page=37), generated with kicad-footprint-generator ipc_noLead_generator.py -VSON NoLead -0 -8 -8 -Package_SON -VSON-8_3.3x3.3mm_P0.65mm_NexFET -8-Lead Plastic Dual Flat, No Lead Package (MF) - 3.3x3.3x1 mm Body [VSON] http://www.ti.com/lit/ds/symlink/csd87334q3d.pdf -VSON 0.65 -0 -13 -5 -Package_SON -VSON-10-1EP_3x3mm_P0.5mm_EP1.2x2mm -VSON, 10 Pin (http://rohmfs.rohm.com/en/products/databook/datasheet/ic/power/switching_regulator/bd8314nuv-e.pdf (Page 20)), generated with kicad-footprint-generator ipc_noLead_generator.py -VSON NoLead -0 -15 -11 -Package_SON -VSON-10-1EP_3x3mm_P0.5mm_EP1.2x2mm_ThermalVias -VSON, 10 Pin (http://rohmfs.rohm.com/en/products/databook/datasheet/ic/power/switching_regulator/bd8314nuv-e.pdf (Page 20)), generated with kicad-footprint-generator ipc_noLead_generator.py -VSON NoLead -0 -18 -11 -Package_SON -VSON-10-1EP_3x3mm_P0.5mm_EP1.65x2.4mm -VSON 10 Thermal on 11 3x3mm Pitch 0.5mm http://chip.tomsk.ru/chip/chipdoc.nsf/Package/D8A64DD165C2AAD9472579400024FC41!OpenDocument -VSON 10 Thermal on 11 3x3mm Pitch 0.5mm -0 -21 -11 -Package_SON -VSON-10-1EP_3x3mm_P0.5mm_EP1.65x2.4mm_ThermalVias -VSON 10 Thermal on 11 3x3mm Pitch 0.5mm http://chip.tomsk.ru/chip/chipdoc.nsf/Package/D8A64DD165C2AAD9472579400024FC41!OpenDocument -VSON 10 Thermal on 11 3x3mm Pitch 0.5mm -0 -27 -11 -Package_SON -VSONP-8-1EP_5x6_P1.27mm -SON, 8-Leads, Body 5x6x1mm, Pitch 1.27mm; (see Texas Instruments CSD18531Q5A http://www.ti.com/lit/ds/symlink/csd18531q5a.pdf) -VSONP 1.27 -0 -13 -3 -Package_SON -WSON-6-1EP_2x2mm_P0.65mm_EP1x1.6mm -WSON, 6 Pin (http://www.ti.com/lit/ds/symlink/tps61040.pdf#page=35), generated with kicad-footprint-generator ipc_noLead_generator.py -WSON NoLead -0 -9 -7 -Package_SON -WSON-6-1EP_2x2mm_P0.65mm_EP1x1.6mm_ThermalVias -WSON, 6 Pin (http://www.ti.com/lit/ds/symlink/tps61040.pdf#page=35), generated with kicad-footprint-generator ipc_noLead_generator.py -WSON NoLead -0 -12 -7 -Package_SON -WSON-6-1EP_3x3mm_P0.95mm -WSON6 3*3 MM, 0.95 PITCH; http://www.ti.com/lit/ds/symlink/lmr62421.pdf -WSON6 0.95 -0 -10 -7 -Package_SON -WSON-6_1.5x1.5mm_P0.5mm -WSON6, http://www.ti.com/lit/ds/symlink/tlv702.pdf -WSON6_1.5x1.5mm_P0.5mm -0 -6 -6 -Package_SON -WSON-8-1EP_2x2mm_P0.5mm_EP0.9x1.6mm -8-Lead Plastic WSON, 2x2mm Body, 0.5mm Pitch, WSON-8, http://www.ti.com/lit/ds/symlink/lm27761.pdf -WSON 8 1EP -0 -11 -9 -Package_SON -WSON-8-1EP_2x2mm_P0.5mm_EP0.9x1.6mm_ThermalVias -8-Lead Plastic WSON, 2x2mm Body, 0.5mm Pitch, WSON-8, http://www.ti.com/lit/ds/symlink/lm27761.pdf -WSON 8 1EP ThermalVias -0 -14 -9 -Package_SON -WSON-8-1EP_3x2.5mm_P0.5mm_EP1.2x1.5mm_PullBack -WSON, 8 Pin (http://www.ti.com/lit/ml/mpds400/mpds400.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -WSON NoLead -0 -13 -9 -Package_SON -WSON-8-1EP_3x2.5mm_P0.5mm_EP1.2x1.5mm_PullBack_ThermalVias -WSON, 8 Pin (http://www.ti.com/lit/ml/mpds400/mpds400.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -WSON NoLead -0 -18 -9 -Package_SON -WSON-8-1EP_3x3mm_P0.5mm_EP1.2x2mm -WSON, 8 Pin (http://www.ti.com/lit/ds/symlink/lp2951.pdf#page=27), generated with kicad-footprint-generator ipc_noLead_generator.py -WSON NoLead -0 -11 -9 -Package_SON -WSON-8-1EP_3x3mm_P0.5mm_EP1.2x2mm_ThermalVias -WSON, 8 Pin (http://www.ti.com/lit/ds/symlink/lp2951.pdf#page=27), generated with kicad-footprint-generator ipc_noLead_generator.py -WSON NoLead -0 -18 -9 -Package_SON -WSON-8-1EP_3x3mm_P0.5mm_EP1.6x2.0mm -8-Lead Plastic WSON, 2x2mm Body, 0.5mm Pitch, WSON-8, http://www.ti.com/lit/ds/symlink/lm27761.pdf -WSON 8 1EP -0 -13 -9 -Package_SON -WSON-8-1EP_3x3mm_P0.5mm_EP1.45x2.4mm -WSON, 8 Pin (https://www.ti.com/lit/ds/symlink/ina333.pdf#page=30), generated with kicad-footprint-generator ipc_noLead_generator.py -WSON NoLead -0 -11 -9 -Package_SON -WSON-8-1EP_3x3mm_P0.5mm_EP1.45x2.4mm_ThermalVias -WSON, 8 Pin (https://www.ti.com/lit/ds/symlink/ina333.pdf#page=30), generated with kicad-footprint-generator ipc_noLead_generator.py -WSON NoLead -0 -18 -9 -Package_SON -WSON-8-1EP_4x4mm_P0.8mm_EP1.98x3mm -WSON, 8 Pin (https://www.ti.com/lit/ds/symlink/lm5017.pdf#page=34), generated with kicad-footprint-generator ipc_noLead_generator.py -WSON NoLead -0 -13 -9 -Package_SON -WSON-8-1EP_4x4mm_P0.8mm_EP1.98x3mm_ThermalVias -WSON, 8 Pin (https://www.ti.com/lit/ds/symlink/lm5017.pdf#page=34), generated with kicad-footprint-generator ipc_noLead_generator.py -WSON NoLead -0 -17 -9 -Package_SON -WSON-8-1EP_4x4mm_P0.8mm_EP2.2x3mm -WSON, 8 Pin (https://www.ti.com/lit/ds/symlink/lp2987.pdf#page=26), generated with kicad-footprint-generator ipc_noLead_generator.py -WSON NoLead -0 -13 -9 -Package_SON -WSON-8-1EP_4x4mm_P0.8mm_EP2.2x3mm_ThermalVias -WSON, 8 Pin (https://www.ti.com/lit/ds/symlink/lp2987.pdf#page=26), generated with kicad-footprint-generator ipc_noLead_generator.py -WSON NoLead -0 -17 -9 -Package_SON -WSON-8-1EP_4x4mm_P0.8mm_EP2.6x3mm -WSON, 8 Pin (https://www.ti.com/lit/ds/symlink/lp2951-n.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -WSON NoLead -0 -13 -9 -Package_SON -WSON-8-1EP_4x4mm_P0.8mm_EP2.6x3mm_ThermalVias -WSON, 8 Pin (https://www.ti.com/lit/ds/symlink/lp2951-n.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -WSON NoLead -0 -17 -9 -Package_SON -WSON-8-1EP_6x5mm_P1.27mm_EP3.4x4.3mm -WSON, 8 Pin (http://www.winbond.com/resource-files/w25q32jv%20revg%2003272018%20plus.pdf (page 68)), generated with kicad-footprint-generator ipc_noLead_generator.py -WSON NoLead -0 -13 -9 -Package_SON -WSON-8-1EP_6x5mm_P1.27mm_EP3.4x4mm -WSON, 8 Pin (http://ww1.microchip.com/downloads/en/AppNotes/S72030.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -WSON NoLead -0 -13 -9 -Package_SON -WSON-8-1EP_8x6mm_P1.27mm_EP3.4x4.3mm -WSON, 8 Pin (https://datasheet.lcsc.com/lcsc/2204011730_GigaDevice-Semicon-Beijing-GD5F1GQ4UFYIGR_C2986324.pdf (page 44)), generated with kicad-footprint-generator ipc_noLead_generator.py -WSON NoLead -0 -13 -9 -Package_SON -WSON-10-1EP_2.5x2.5mm_P0.5mm_EP1.2x2mm -WSON, 10 Pin (http://www.ti.com/lit/gpn/tps63030#page=24), generated with kicad-footprint-generator ipc_noLead_generator.py -WSON NoLead -0 -15 -11 -Package_SON -WSON-10-1EP_2.5x2.5mm_P0.5mm_EP1.2x2mm_ThermalVias -WSON, 10 Pin (http://www.ti.com/lit/gpn/tps63030#page=24), generated with kicad-footprint-generator ipc_noLead_generator.py -WSON NoLead -0 -22 -11 -Package_SON -WSON-10-1EP_2x3mm_P0.5mm_EP0.84x2.4mm -WSON-10 package 2x3mm body, pitch 0.5mm, see http://www.ti.com/lit/ds/symlink/tps62177.pdf -WSON 0.5 -0 -14 -11 -Package_SON -WSON-10-1EP_2x3mm_P0.5mm_EP0.84x2.4mm_ThermalVias -WSON-10 package 2x3mm body, pitch 0.5mm, thermal vias and counter-pad, see http://www.ti.com/lit/ds/symlink/tps62177.pdf -WSON 0.5 thermal vias -0 -17 -11 -Package_SON -WSON-10-1EP_4x3mm_P0.5mm_EP2.2x2mm -10-Lead Plastic WSON, 4x3mm Body, 0.5mm Pitch (http://www.ti.com/lit/ds/symlink/lm4990.pdf) -WSON 0.5 -0 -15 -11 -Package_SON -WSON-12-1EP_3x2mm_P0.5mm_EP1x2.65 -WSON-12 http://www.ti.com/lit/ds/symlink/lm27762.pdf -WSON-12 -0 -15 -13 -Package_SON -WSON-12-1EP_3x2mm_P0.5mm_EP1x2.65_ThermalVias -WSON-12 http://www.ti.com/lit/ds/symlink/lm27762.pdf -WSON-12 -0 -19 -13 -Package_SON -WSON-12-1EP_4x4mm_P0.5mm_EP2.6x3mm -WSON, 12 Pin (http://www.ti.com/lit/ds/symlink/ldc1312.pdf#page=62), generated with kicad-footprint-generator ipc_noLead_generator.py -WSON NoLead -0 -17 -13 -Package_SON -WSON-12-1EP_4x4mm_P0.5mm_EP2.6x3mm_ThermalVias -WSON, 12 Pin (http://www.ti.com/lit/ds/symlink/ldc1312.pdf#page=62), generated with kicad-footprint-generator ipc_noLead_generator.py -WSON NoLead -0 -27 -13 -Package_SON -WSON-14-1EP_4.0x4.0mm_P0.5mm_EP2.6x2.6mm -14-Lead Plastic Dual Flat, No Lead Package - 4.0x4.0x0.8 mm Body [WSON], http://www.ti.com/lit/ml/mpds421/mpds421.pdf -NHL014B -0 -19 -15 -Package_SON -WSON-16_3.3x1.35_P0.4mm -WSON-16 3.3 x 1.35mm Pitch 0.4mm http://www.chip.tomsk.ru/chip/chipdoc.nsf/Package/C67E729A4D6C883A4725793E004C8739!OpenDocument -WSON-16 3.3 x 1.35mm Pitch 0.4mm -0 -20 -17 -Package_SON -X2SON-8_1.4x1mm_P0.35mm -X2SON-8 1.4x1mm Pitch0.35mm http://www.ti.com/lit/ds/symlink/pca9306.pdf -X2SON-8 1.4x1mm Pitch0.35mm -0 -8 -8 -Package_SO_J-Lead -TSOC-6_3.76x3.94mm_P1.27mm -Maxim Integrated TSOC-6 D6+1,https://datasheets.maximintegrated.com/en/ds/DS2401.pdf, https://pdfserv.maximintegrated.com/land_patterns/90-0321.PDF -TSOC-6 -0 -6 -6 -Package_TO_SOT_SMD -ATPAK-2 -ATPAK SMD package, http://www.onsemi.com/pub/Collateral/ENA2192-D.PDF -ATPAK -0 -7 -3 -Package_TO_SOT_SMD -Analog_KS-4 -Analog Devices KS-4, http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/sc70ks/ks_4.pdf -Analog Devices KS-4 (like EIAJ SC-82) -0 -4 -4 -Package_TO_SOT_SMD -Diodes_SOT-553 -Diodes SOT-553, https://www.diodes.com/assets/Package-Files/SOT553.pdf -SOT-553 -0 -5 -5 -Package_TO_SOT_SMD -HVSOF5 -HVSOF5, http://rohmfs.rohm.com/en/techdata_basic/ic/package/hvsof5_1-e.pdf, http://rohmfs.rohm.com/en/products/databook/datasheet/ic/sensor/hall/bu52001gul-e.pdf -HVSOF5 -0 -5 -5 -Package_TO_SOT_SMD -HVSOF6 -HVSOF6, http://rohmfs.rohm.com/en/techdata_basic/ic/package/hvsof6_1-e.pdf, http://rohmfs.rohm.com/en/products/databook/datasheet/ic/audio_video/video_amplifier/bh76106hfv-e.pdf -HVSOF6 -0 -7 -7 -Package_TO_SOT_SMD -Infineon_PG-HDSOP-10-1 -Infineon PG-HDSOP-10-1 (DDPAK), 20.96x6.5x2.3mm, slug up (https://www.infineon.com/cms/en/product/packages/PG-HDSOP/PG-HDSOP-10-1/) -hdsop 10 ddpak -0 -10 -10 -Package_TO_SOT_SMD -Infineon_PG-HSOF-8-1 -HSOF-8-1 [TOLL] power MOSFET (http://www.infineon.com/cms/en/product/packages/PG-HSOF/PG-HSOF-8-1/) -mosfet hsof toll -0 -53 -3 -Package_TO_SOT_SMD -Infineon_PG-HSOF-8-1_ThermalVias -HSOF-8-1 [TOLL] power MOSFET (http://www.infineon.com/cms/en/product/packages/PG-HSOF/PG-HSOF-8-1/) -mosfet hsof toll thermal vias -0 -96 -3 -Package_TO_SOT_SMD -Infineon_PG-HSOF-8-2 -HSOF-8-2 [TOLL] power MOSFET (http://www.infineon.com/cms/en/product/packages/PG-HSOF/PG-HSOF-8-2/) -mosfet hsof toll -0 -12 -4 -Package_TO_SOT_SMD -Infineon_PG-HSOF-8-2_ThermalVias -HSOF-8-2 [TOLL] power MOSFET (http://www.infineon.com/cms/en/product/packages/PG-HSOF/PG-HSOF-8-2/) -mosfet hsof toll thermal vias -0 -97 -4 -Package_TO_SOT_SMD -Infineon_PG-HSOF-8-2_ThermalVias2 -HSOF-8-2 [TOLL] power MOSFET (http://www.infineon.com/cms/en/product/packages/PG-HSOF/PG-HSOF-8-2/, https://www.infineon.com/dgdl/Infineon-ApplicationNote_600V_CoolMOS_C7_Gold_TOLL-AN-v01_00-EN.pdf?fileId=5546d4625b10283a015b144a1af70df6) -mosfet hsof toll thermal vias -0 -159 -4 -Package_TO_SOT_SMD -Infineon_PG-HSOF-8-3 -HSOF-8-3 power MOSFET (http://www.infineon.com/cms/en/product/packages/PG-HSOF/PG-HSOF-8-3/) -mosfet hsof -0 -25 -4 -Package_TO_SOT_SMD -Infineon_PG-HSOF-8-3_ThermalVias -HSOF-8-3 power MOSFET (http://www.infineon.com/cms/en/product/packages/PG-HSOF/PG-HSOF-8-3/) -mosfet hsof -0 -64 -4 -Package_TO_SOT_SMD -Infineon_PG-TO-220-7Lead_TabPin8 -Infineon PG-TO-220-7, Tab as Pin 8, see e.g. https://www.infineon.com/dgdl/Infineon-BTS50055-1TMC-DS-v01_00-EN.pdf?fileId=5546d4625a888733015aa9b0007235e9 -Infineon PG-TO-220-7 -0 -12 -8 -Package_TO_SOT_SMD -Infineon_PG-TSFP-3-1 -Infineon_PG-TSFP-3-1, https://www.infineon.com/dgdl/TSFP-3-1,-2-Package_Overview.pdf?fileId=db3a30431936bc4b0119539929863d46 -TSFP-3 -0 -3 -3 -Package_TO_SOT_SMD -LFPAK33 -LFPAK33 SOT-1210 https://assets.nexperia.com/documents/outline-drawing/SOT1210.pdf -LFPAK33 SOT-1210 -0 -17 -5 -Package_TO_SOT_SMD -LFPAK56 -LFPAK56 https://assets.nexperia.com/documents/outline-drawing/SOT669.pdf -LFPAK56 SOT-669 Power-SO8 -0 -18 -5 -Package_TO_SOT_SMD -Nexperia_CFP15_SOT-1289 -Nexperia CFP15 (SOT-1289), https://assets.nexperia.com/documents/outline-drawing/SOT1289.pdf -SOT-1289 CFP15 -0 -8 -3 -Package_TO_SOT_SMD -OnSemi_ECH8 -On Semiconductor ECH8, https://www.onsemi.com/pub/Collateral/318BF.PDF -ECH8 SOT28-FL SOT-28-FL -0 -8 -8 -Package_TO_SOT_SMD -PQFN_8x8 -Low Profile 8x8mm PQFN, Dual Cool 88, https://www.onsemi.com/pub/Collateral/FDMT80080DC-D.pdf -pqfn vdfn mosfet -0 -9 -3 -Package_TO_SOT_SMD -PowerMacro_M234_NoHole -TO-50-4 Power Macro Package Style M234 -TO-50-4 Power Macro Package Style M234 -0 -4 -4 -Package_TO_SOT_SMD -PowerMacro_M234_WithHole -TO-50-4 Power Macro Package Style M234 -TO-50-4 Power Macro Package Style M234 -0 -4 -4 -Package_TO_SOT_SMD -Rohm_HRP7 -Rohm HRP7 SMD package, http://rohmfs.rohm.com/en/techdata_basic/ic/package/hrp7_1-e.pdf, http://rohmfs.rohm.com/en/products/databook/datasheet/ic/motor/dc/bd621x-e.pdf -Rohm HRP7 SMD -0 -69 -7 -Package_TO_SOT_SMD -SC-59 -SC-59, https://lib.chipdip.ru/images/import_diod/original/SOT-23_SC-59.jpg -SC-59 -0 -3 -3 -Package_TO_SOT_SMD -SC-59_Handsoldering -SC-59, hand-soldering varaint, https://lib.chipdip.ru/images/import_diod/original/SOT-23_SC-59.jpg -SC-59 hand-soldering -0 -3 -3 -Package_TO_SOT_SMD -SC-70-8 -SC70-8 -SC70-8 -0 -8 -8 -Package_TO_SOT_SMD -SC-70-8_Handsoldering -SC70-8, Handsoldering -SC70-8 Handsoldering -0 -8 -8 -Package_TO_SOT_SMD -SC-82AA -SC-82AA -SC-82AA -0 -4 -4 -Package_TO_SOT_SMD -SC-82AA_Handsoldering -SC-82AA -SC-82AA -0 -4 -4 -Package_TO_SOT_SMD -SC-82AB -SC-82AB -SC-82AB -0 -4 -4 -Package_TO_SOT_SMD -SC-82AB_Handsoldering -SC-82AB -SC-82AB -0 -4 -4 -Package_TO_SOT_SMD -SOT-23 -SOT, 3 Pin (https://www.jedec.org/system/files/docs/to-236h.pdf variant AB), generated with kicad-footprint-generator ipc_gullwing_generator.py -SOT TO_SOT_SMD -0 -3 -3 -Package_TO_SOT_SMD -SOT-23-3 -SOT, 3 Pin (https://www.jedec.org/sites/default/files/docs/Mo-178D.PDF inferred 3-pin variant), generated with kicad-footprint-generator ipc_gullwing_generator.py -SOT TO_SOT_SMD -0 -3 -3 -Package_TO_SOT_SMD -SOT-23-5 -SOT, 5 Pin (https://www.jedec.org/sites/default/files/docs/Mo-178c.PDF variant AA), generated with kicad-footprint-generator ipc_gullwing_generator.py -SOT TO_SOT_SMD -0 -5 -5 -Package_TO_SOT_SMD -SOT-23-5_HandSoldering -5-pin SOT23 package -SOT-23-5 hand-soldering -0 -5 -5 -Package_TO_SOT_SMD -SOT-23-6 -SOT, 6 Pin (https://www.jedec.org/sites/default/files/docs/Mo-178c.PDF variant AB), generated with kicad-footprint-generator ipc_gullwing_generator.py -SOT TO_SOT_SMD -0 -6 -6 -Package_TO_SOT_SMD -SOT-23-6_Handsoldering -6-pin SOT-23 package, Handsoldering -SOT-23-6 Handsoldering -0 -6 -6 -Package_TO_SOT_SMD -SOT-23-8 -SOT, 8 Pin (https://www.jedec.org/sites/default/files/docs/Mo-178c.PDF variant BA), generated with kicad-footprint-generator ipc_gullwing_generator.py -SOT TO_SOT_SMD -0 -8 -8 -Package_TO_SOT_SMD -SOT-23-8_Handsoldering -8-pin SOT-23 package, Handsoldering, http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/sot-23rj/rj_8.pdf -SOT-23-8 Handsoldering -0 -8 -8 -Package_TO_SOT_SMD -SOT-23W -SOT-23W http://www.allegromicro.com/~/media/Files/Datasheets/A112x-Datasheet.ashx?la=en&hash=7BC461E058CC246E0BAB62433B2F1ECA104CA9D3 -SOT-23W -0 -3 -3 -Package_TO_SOT_SMD -SOT-23W_Handsoldering -SOT-23W http://www.allegromicro.com/~/media/Files/Datasheets/A112x-Datasheet.ashx?la=en&hash=7BC461E058CC246E0BAB62433B2F1ECA104CA9D3 -SOT-23W for handsoldering -0 -3 -3 -Package_TO_SOT_SMD -SOT-23_Handsoldering -SOT-23, Handsoldering -SOT-23 -0 -3 -3 -Package_TO_SOT_SMD -SOT-89-3 -SOT-89-3, http://ww1.microchip.com/downloads/en/DeviceDoc/3L_SOT-89_MB_C04-029C.pdf -SOT-89-3 -0 -3 -3 -Package_TO_SOT_SMD -SOT-89-3_Handsoldering -SOT-89-3 Handsoldering -SOT-89-3 Handsoldering -0 -3 -3 -Package_TO_SOT_SMD -SOT-89-5 -SOT-89-5, http://www.e-devices.ricoh.co.jp/en/products/product_power/pkg/sot-89-5.pdf -SOT-89-5 -0 -5 -5 -Package_TO_SOT_SMD -SOT-89-5_Handsoldering -SOT-89-5, http://www.e-devices.ricoh.co.jp/en/products/product_power/pkg/sot-89-5.pdf -SOT-89-5 -0 -5 -5 -Package_TO_SOT_SMD -SOT-143 -SOT-143 https://www.nxp.com/docs/en/package-information/SOT143B.pdf -SOT-143 -0 -4 -4 -Package_TO_SOT_SMD -SOT-143R -SOT-143R, reverse pinning, https://www.nxp.com/docs/en/package-information/SOT143R.pdf -SOT-143R Reverse -0 -4 -4 -Package_TO_SOT_SMD -SOT-143R_Handsoldering -SOT-143R, reverse pinning, Handsoldering, https://www.nxp.com/docs/en/package-information/SOT143R.pdf -SOT-143 Reverse Handsoldering -0 -4 -4 -Package_TO_SOT_SMD -SOT-143_Handsoldering -SOT-143 Handsoldering https://www.nxp.com/docs/en/package-information/SOT143B.pdf -SOT-143 Handsoldering -0 -4 -4 -Package_TO_SOT_SMD -SOT-223 -module CMS SOT223 4 pins -CMS SOT -0 -4 -4 -Package_TO_SOT_SMD -SOT-223-3_TabPin2 -module CMS SOT223 4 pins -CMS SOT -0 -4 -3 -Package_TO_SOT_SMD -SOT-223-5 -module CMS SOT223 5 pins, http://ww1.microchip.com/downloads/en/DeviceDoc/51751a.pdf -CMS SOT -0 -5 -5 -Package_TO_SOT_SMD -SOT-223-6 -module CMS SOT223 6 pins, http://www.ti.com/lit/ds/symlink/tps737.pdf -CMS SOT -0 -6 -6 -Package_TO_SOT_SMD -SOT-223-6_TabPin3 -module CMS SOT223 6 pins, http://www.ti.com/lit/ds/symlink/tps737.pdf -CMS SOT -0 -6 -5 -Package_TO_SOT_SMD -SOT-223-8 -module CMS SOT223 8 pins, https://www.diodes.com/assets/Datasheets/ZXSBMR16PT8.pdf -CMS SOT -0 -8 -8 -Package_TO_SOT_SMD -SOT-323_SC-70 -SOT-323, SC-70 -SOT-323 SC-70 -0 -3 -3 -Package_TO_SOT_SMD -SOT-323_SC-70_Handsoldering -SOT-323, SC-70 Handsoldering -SOT-323 SC-70 Handsoldering -0 -3 -3 -Package_TO_SOT_SMD -SOT-343_SC-70-4 -SOT-343, SC-70-4 -SOT-343 SC-70-4 -0 -4 -4 -Package_TO_SOT_SMD -SOT-343_SC-70-4_Handsoldering -SOT-343, SC-70-4, Handsoldering -SOT-343 SC-70-4 Handsoldering -0 -4 -4 -Package_TO_SOT_SMD -SOT-353_SC-70-5 -SOT-353, SC-70-5 -SOT-353 SC-70-5 -0 -5 -5 -Package_TO_SOT_SMD -SOT-353_SC-70-5_Handsoldering -SOT-353, SC-70-5, Handsoldering -SOT-353 SC-70-5 Handsoldering -0 -5 -5 -Package_TO_SOT_SMD -SOT-363_SC-70-6 -SOT-363, SC-70-6 -SOT-363 SC-70-6 -0 -6 -6 -Package_TO_SOT_SMD -SOT-363_SC-70-6_Handsoldering -SOT-363, SC-70-6, Handsoldering -SOT-363 SC-70-6 Handsoldering -0 -6 -6 -Package_TO_SOT_SMD -SOT-383F -8-pin SOT-383F, http://www.mouser.com/ds/2/80/CPDVR085V0C-HF-RevB-10783.pdf -SOT-383F -0 -9 -9 -Package_TO_SOT_SMD -SOT-383FL -8-pin SOT-383FL package, http://www.onsemi.com/pub_link/Collateral/ENA2267-D.PDF -SOT-383FL -0 -8 -8 -Package_TO_SOT_SMD -SOT-416 -SOT-416, https://www.nxp.com/docs/en/package-information/SOT416.pdf -SOT-416 -0 -3 -3 -Package_TO_SOT_SMD -SOT-523 -SOT523, https://www.diodes.com/assets/Package-Files/SOT523.pdf -SOT-523 -0 -3 -3 -Package_TO_SOT_SMD -SOT-543 -SOT-543 4 lead surface package -SOT-543 SC-107A EMD4 -0 -4 -4 -Package_TO_SOT_SMD -SOT-553 -SOT553 -SOT-553 -0 -5 -5 -Package_TO_SOT_SMD -SOT-563 -SOT563 -SOT-563 -0 -6 -6 -Package_TO_SOT_SMD -SOT-583-8 -https://www.ti.com/lit/ds/symlink/tps62933.pdf -SOT-583-8 -0 -8 -8 -Package_TO_SOT_SMD -SOT-665 -SOT665 -SOT-665 -0 -5 -5 -Package_TO_SOT_SMD -SOT-666 -SOT666 -SOT-666 -0 -6 -6 -Package_TO_SOT_SMD -SOT-723 -http://toshiba.semicon-storage.com/info/docget.jsp?did=5879&prodName=RN1104MFV -sot 723 -0 -3 -3 -Package_TO_SOT_SMD -SOT-883 -SOT-883, https://assets.nexperia.com/documents/outline-drawing/SOT883.pdf -SOT-883 -0 -3 -3 -Package_TO_SOT_SMD -SOT-886 -SOT-886 -SOT-886 -0 -6 -6 -Package_TO_SOT_SMD -SOT-963 -SOT 963 6 pins package 1x0.8mm pitch 0.35mm -SOT 963 6 pins package 1x0.8mm pitch 0.35mm -0 -6 -6 -Package_TO_SOT_SMD -SOT-1123 -SOT-1123 small outline transistor (see http://www.onsemi.com/pub/Collateral/NST3906F3-D.PDF) -SOT-1123 transistor -0 -3 -3 -Package_TO_SOT_SMD -SOT-1333-1 -SOT-1333-1 -SOT-1333-1 -0 -9 -9 -Package_TO_SOT_SMD -SOT-1334-1 -SOT-1334-1 -SOT-1334-1 -0 -14 -14 -Package_TO_SOT_SMD -SuperSOT-3 -3-pin SuperSOT package https://www.fairchildsemi.com/package-drawings/MA/MA03B.pdf -SuperSOT-3 SSOT-3 -0 -3 -3 -Package_TO_SOT_SMD -SuperSOT-6 -6-pin SuperSOT package http://www.mouser.com/ds/2/149/FMB5551-889214.pdf -SuperSOT-6 SSOT-6 -0 -6 -6 -Package_TO_SOT_SMD -SuperSOT-8 -8-pin SuperSOT package, http://www.icbank.com/icbank_data/semi_package/ssot8_dim.pdf -SuperSOT-8 SSOT-8 -0 -8 -8 -Package_TO_SOT_SMD -TDSON-8-1 -Power MOSFET package, TDSON-8-1, 5.15x5.9mm (https://www.infineon.com/cms/en/product/packages/PG-TDSON/PG-TDSON-8-1/) -tdson -0 -14 -5 -Package_TO_SOT_SMD -TO-50-3_LongPad-NoHole_Housing -TO-50-3 Macro T Package Style M236 -TO-50-3 Macro T Package Style M236 -0 -3 -3 -Package_TO_SOT_SMD -TO-50-3_LongPad-WithHole_Housing -TO-50-3 Macro T Package Style M236 -TO-50-3 Macro T Package Style M236 -0 -3 -3 -Package_TO_SOT_SMD -TO-50-3_ShortPad-NoHole_Housing -TO-50-3 Macro T Package Style M236 -TO-50-3 Macro T Package Style M236 -0 -3 -3 -Package_TO_SOT_SMD -TO-50-3_ShortPad-WithHole_Housing -TO-50-3 Macro T Package Style M236 -TO-50-3 Macro T Package Style M236 -0 -3 -3 -Package_TO_SOT_SMD -TO-50-4_LongPad-NoHole_Housing -TO-50-4 Macro X Package Style M238 -TO-50-4 Macro X Package Style M238 -0 -4 -4 -Package_TO_SOT_SMD -TO-50-4_LongPad-WithHole_Housing -TO-50-4 Macro X Package Style M238 -TO-50-4 Macro X Package Style M238 -0 -4 -4 -Package_TO_SOT_SMD -TO-50-4_ShortPad-NoHole_Housing -TO-50-4 Macro X Package Style M238 -TO-50-4 Macro X Package Style M238 -0 -4 -4 -Package_TO_SOT_SMD -TO-50-4_ShortPad-WithHole_Housing -TO-50-4 Macro X Package Style M238 -TO-50-4 Macro X Package Style M238 -0 -4 -4 -Package_TO_SOT_SMD -TO-252-2 -TO-252/DPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO252/PG-TO252-3-1/ -DPAK TO-252 DPAK-3 TO-252-3 SOT-428 -0 -7 -3 -Package_TO_SOT_SMD -TO-252-2_TabPin1 -TO-252-2, tab to pin 1 https://www.wolfspeed.com/media/downloads/87/CSD01060.pdf -TO-252-2 diode -0 -7 -2 -Package_TO_SOT_SMD -TO-252-3_TabPin2 -TO-252/DPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO252/PG-TO252-3-1/ -DPAK TO-252 DPAK-3 TO-252-3 SOT-428 -0 -8 -3 -Package_TO_SOT_SMD -TO-252-3_TabPin4 -TO-252/DPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO252/PG-TO252-3-1/ -DPAK TO-252 DPAK-3 TO-252-3 SOT-428 -0 -8 -4 -Package_TO_SOT_SMD -TO-252-4 -TO-252/DPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO252/PG-TO252-5-11/ -DPAK TO-252 DPAK-5 TO-252-5 -0 -9 -5 -Package_TO_SOT_SMD -TO-252-5_TabPin3 -TO-252/DPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO252/PG-TO252-5-11/ -DPAK TO-252 DPAK-5 TO-252-5 -0 -10 -5 -Package_TO_SOT_SMD -TO-252-5_TabPin6 -TO-252/DPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO252/PG-TO252-5-11/ -DPAK TO-252 DPAK-5 TO-252-5 -0 -10 -6 -Package_TO_SOT_SMD -TO-263-2 -TO-263/D2PAK/DDPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO263/PG-TO263-3-1/ -D2PAK DDPAK TO-263 D2PAK-3 TO-263-3 SOT-404 -0 -7 -3 -Package_TO_SOT_SMD -TO-263-2_TabPin1 -TO-263 / D2PAK / DDPAK SMD package, tab to pin 1, https://www.wolfspeed.com/media/downloads/137/C3D06060G.pdf -D2PAK DDPAK TO-263 D2PAK-3 TO-263-3 SOT-404 diode -0 -7 -2 -Package_TO_SOT_SMD -TO-263-3_TabPin2 -TO-263/D2PAK/DDPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO263/PG-TO263-3-1/ -D2PAK DDPAK TO-263 D2PAK-3 TO-263-3 SOT-404 -0 -8 -3 -Package_TO_SOT_SMD -TO-263-3_TabPin4 -TO-263/D2PAK/DDPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO263/PG-TO263-3-1/ -D2PAK DDPAK TO-263 D2PAK-3 TO-263-3 SOT-404 -0 -8 -4 -Package_TO_SOT_SMD -TO-263-4 -TO-263/D2PAK/DDPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO263/PG-TO263-5-1/ -D2PAK DDPAK TO-263 D2PAK-5 TO-263-5 SOT-426 -0 -9 -5 -Package_TO_SOT_SMD -TO-263-5_TabPin3 -TO-263/D2PAK/DDPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO263/PG-TO263-5-1/ -D2PAK DDPAK TO-263 D2PAK-5 TO-263-5 SOT-426 -0 -10 -5 -Package_TO_SOT_SMD -TO-263-5_TabPin6 -TO-263/D2PAK/DDPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO263/PG-TO263-5-1/ -D2PAK DDPAK TO-263 D2PAK-5 TO-263-5 SOT-426 -0 -10 -6 -Package_TO_SOT_SMD -TO-263-6 -TO-263/D2PAK/DDPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO263/PG-TO263-7-1/ -D2PAK DDPAK TO-263 D2PAK-7 TO-263-7 SOT-427 -0 -11 -7 -Package_TO_SOT_SMD -TO-263-7_TabPin4 -TO-263/D2PAK/DDPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO263/PG-TO263-7-1/ -D2PAK DDPAK TO-263 D2PAK-7 TO-263-7 SOT-427 -0 -12 -7 -Package_TO_SOT_SMD -TO-263-7_TabPin8 -TO-263/D2PAK/DDPAK SMD package, http://www.infineon.com/cms/en/product/packages/PG-TO263/PG-TO263-7-1/ -D2PAK DDPAK TO-263 D2PAK-7 TO-263-7 SOT-427 -0 -12 -8 -Package_TO_SOT_SMD -TO-263-9_TabPin5 -TO-263 / D2PAK / DDPAK SMD package, http://www.ti.com/lit/ds/symlink/lm4755.pdf -D2PAK DDPAK TO-263 D2PAK-9 TO-263-9 -0 -14 -9 -Package_TO_SOT_SMD -TO-263-9_TabPin10 -TO-263 / D2PAK / DDPAK SMD package, http://www.ti.com/lit/ds/symlink/lm4755.pdf -D2PAK DDPAK TO-263 D2PAK-9 TO-263-9 -0 -14 -10 -Package_TO_SOT_SMD -TO-268-2 -TO-268/D3PAK SMD package, http://www.icbank.com/icbank_data/semi_package/to268aa_dim.pdf -D3PAK TO-268 D3PAK-3 TO-268-3 -0 -7 -3 -Package_TO_SOT_SMD -TO-269AA -SMD package TO-269AA (e.g. diode bridge), see http://www.vishay.com/docs/88854/padlayouts.pdf -TO-269AA MBS diode bridge -0 -4 -4 -Package_TO_SOT_SMD -TO-277A -Thermal enhanced ultra thin SMD package; 3 leads; body: 4.3x6.1x0.43mm, https://www.vishay.com/docs/95570/to-277asmpc.pdf -TO-277A SMPC -0 -12 -3 -Package_TO_SOT_SMD -TO-277B -TO-227B https://media.digikey.com/pdf/Data%20Sheets/Littelfuse%20PDFs/DST2050S.pdf -TO-277B -0 -9 -3 -Package_TO_SOT_SMD -TSOT-23 -3-pin TSOT23 package, http://www.analog.com.tw/pdf/All_In_One.pdf -TSOT-23 -0 -3 -3 -Package_TO_SOT_SMD -TSOT-23-5 -TSOT, 5 Pin (https://www.jedec.org/sites/default/files/docs/MO-193D.pdf variant AB), generated with kicad-footprint-generator ipc_gullwing_generator.py -TSOT TO_SOT_SMD -0 -5 -5 -Package_TO_SOT_SMD -TSOT-23-5_HandSoldering -5-pin TSOT23 package, http://cds.linear.com/docs/en/packaging/SOT_5_05-08-1635.pdf -TSOT-23-5 Hand-soldering -0 -5 -5 -Package_TO_SOT_SMD -TSOT-23-6 -TSOT, 6 Pin (https://www.jedec.org/sites/default/files/docs/MO-193D.pdf variant AA), generated with kicad-footprint-generator ipc_gullwing_generator.py -TSOT TO_SOT_SMD -0 -6 -6 -Package_TO_SOT_SMD -TSOT-23-6_HandSoldering -6-pin TSOT23 package, http://cds.linear.com/docs/en/packaging/SOT_6_05-08-1636.pdf -TSOT-23-6 MK06A TSOT-6 Hand-soldering -0 -6 -6 -Package_TO_SOT_SMD -TSOT-23-8 -TSOT, 8 Pin (https://www.jedec.org/sites/default/files/docs/MO-193D.pdf variant BA), generated with kicad-footprint-generator ipc_gullwing_generator.py -TSOT TO_SOT_SMD -0 -8 -8 -Package_TO_SOT_SMD -TSOT-23-8_HandSoldering -8-pin TSOT23 package, http://cds.linear.com/docs/en/packaging/SOT_8_05-08-1637.pdf -TSOT-23-8 Hand-soldering -0 -8 -8 -Package_TO_SOT_SMD -TSOT-23_HandSoldering -5-pin TSOT23 package, http://cds.linear.com/docs/en/packaging/SOT_5_05-08-1635.pdf -TSOT-23 Hand-soldering -0 -3 -3 -Package_TO_SOT_SMD -Texas_DRT-3 -Texas Instrument DRT-3 1x0.8mm Pitch 0.7mm http://www.ti.com/lit/ds/symlink/tpd2eusb30.pdf -DRT-3 1x0.8mm Pitch 0.7mm -0 -3 -3 -Package_TO_SOT_SMD -Texas_NDQ -Texas Instruments, NDQ, 5 pin (https://www.ti.com/lit/ml/mmsf022/mmsf022.pdf) -ti pfm dap -0 -6 -6 -Package_TO_SOT_SMD -Texas_NDW-7_TabPin4 -NDW0007A SMD package, http://www.ti.com/lit/ml/mmsf024/mmsf024.pdf -NDW NDW -0 -12 -7 -Package_TO_SOT_SMD -Texas_NDW-7_TabPin8 -NDW0007A SMD package, http://www.ti.com/lit/ml/mmsf024/mmsf024.pdf -NDW NDW -0 -12 -8 -Package_TO_SOT_SMD -Texas_NDY0011A -TO-PMOD-11 11-pin switching regulator package, http://www.ti.com/lit/ml/mmsf025/mmsf025.pdf -Texas TO-PMOD NDY00011A -0 -12 -12 -Package_TO_SOT_SMD -Texas_R-PDSO-G5_DCK-5 -DCK R-PDSO-G5, JEDEC MO-203C Var AA, https://www.ti.com/lit/ds/symlink/tmp20.pdf#page=23 -DCK R-PDSO-G5 MO-203C -0 -5 -5 -Package_TO_SOT_SMD -Texas_R-PDSO-G6 -R-PDSO-G6, http://www.ti.com/lit/ds/slis144b/slis144b.pdf -R-PDSO-G6 SC-70-6 -0 -6 -6 -Package_TO_SOT_SMD -Texas_R-PDSO-N5_DRL-5 -R-PDSO-N5, DRL, JEDEC MO-293B Var UAAD-1, https://www.ti.com/lit/ml/mpds158d/mpds158d.pdf -SOT R-PDSO-N5 DRL -0 -5 -5 -Package_TO_SOT_SMD -Texas_R-PDSO-N6_DRL-6 -R-PDSO-N6, DRL, similar to JEDEC MO-293B Var UAAD (but not the same) , https://www.ti.com/lit/pdf/mpds159f -SOT R-PDSO-N6 DRL -0 -6 -6 -Package_TO_SOT_SMD -VSOF5 -VSOF5 -VSOF5 -0 -5 -5 -Package_TO_SOT_SMD -Vishay_PowerPAK_SC70-6L_Dual -Vishay PowerPAK SC70 dual transistor package http://www.vishay.com/docs/70487/70487.pdf -powerpak sc70 sc-70 dual -0 -8 -6 -Package_TO_SOT_SMD -Vishay_PowerPAK_SC70-6L_Single -Vishay PowerPAK SC70 single transistor package http://www.vishay.com/docs/70486/70486.pdf -powerpak sc70 sc-70 -0 -6 -3 -Package_TO_SOT_THT -Analog_TO-46-4_ThermalShield -TO-46-4 with Valox case, based on https://www.analog.com/media/en/technical-documentation/data-sheets/199399fc.pdf -TO-46-4 LM399 -0 -4 -4 -Package_TO_SOT_THT -Fairchild_TO-220F-6L -Fairchild TO-220F-6L, http://www.mouser.com/ds/2/149/FSL136MRT-113334.pdf -Fairchild TO-220F-6L -0 -6 -6 -Package_TO_SOT_THT -Heraeus_TO-92-2 -TO-92 2-pin variant by Heraeus, drill 0.75mm (http://www.produktinfo.conrad.com/datenblaetter/175000-199999/181293-da-01-de-TO92_Temperatursensor_PT1000_32209225.pdf) -to-92 -0 -2 -2 -Package_TO_SOT_THT -NEC_Molded_7x4x9mm -Molded Japan Transistor Package 7x4x9mm^3, http://rtellason.com/transdata/2sb734.pdf -Japan transistor -0 -3 -3 -Package_TO_SOT_THT -PowerIntegrations_TO-220-7C -Non Isolated Modified TO-220 7pin Package, see http://www.farnell.com/datasheets/5793.pdf -Power Integration Y Package -0 -6 -6 -Package_TO_SOT_THT -SIPAK-1EP_Horizontal_TabDown -SIPAK, Horizontal, RM 2.286mm -SIPAK Horizontal RM 2.286mm -0 -4 -4 -Package_TO_SOT_THT -SIPAK_Vertical -SIPAK, Vertical, RM 2.286mm -SIPAK Vertical RM 2.286mm -0 -3 -3 -Package_TO_SOT_THT -SOD-70_P2.54mm -Plastic near cylindrical package Sod-70 see: https://www.nxp.com/docs/en/data-sheet/KTY81_SER.pdf [StepUp generated footprint] -Sod-70 -0 -2 -2 -Package_TO_SOT_THT -SOD-70_P5.08mm -Plastic near cylindrical package Sod-70 see: https://www.nxp.com/docs/en/data-sheet/KTY81_SER.pdf [StepUp generated footprint] -Sod-70 -0 -2 -2 -Package_TO_SOT_THT -SOT-227 -SOT-227 / SOT-227B / ISOTOP, M4 mounting screws (https://www.vishay.com/docs/95423/sot227g2.pdf, https://www.vishay.com/docs/95793/vs-fc420sa10.pdf) -sot 227 isotop -0 -8 -4 -Package_TO_SOT_THT -TO-3 -Transistor TO-3 -TR TO-3 TO3 TO-204 -0 -4 -3 -Package_TO_SOT_THT -TO-3P-3_Horizontal_TabDown -TO-3P-3, Horizontal, RM 5.45mm, , see https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.TO-3P(N).html -TO-3P-3 Horizontal RM 5.45mm -0 -3 -3 -Package_TO_SOT_THT -TO-3P-3_Horizontal_TabUp -TO-3P-3, Horizontal, RM 5.45mm, , see https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.TO-3P(N).html -TO-3P-3 Horizontal RM 5.45mm -0 -3 -3 -Package_TO_SOT_THT -TO-3P-3_Vertical -TO-3P-3, Vertical, RM 5.45mm, , see https://toshiba.semicon-storage.com/ap-en/design-support/package/detail.TO-3P(N).html -TO-3P-3 Vertical RM 5.45mm -0 -3 -3 -Package_TO_SOT_THT -TO-3PB-3_Horizontal_TabDown -TO-3PB-3, Horizontal, RM 5.45mm, , see http://www.onsemi.com/pub/Collateral/340AC.PDF -TO-3PB-3 Horizontal RM 5.45mm -0 -3 -3 -Package_TO_SOT_THT -TO-3PB-3_Horizontal_TabUp -TO-3PB-3, Horizontal, RM 5.45mm, , see http://www.onsemi.com/pub/Collateral/340AC.PDF -TO-3PB-3 Horizontal RM 5.45mm -0 -3 -3 -Package_TO_SOT_THT -TO-3PB-3_Vertical -TO-3PB-3, Vertical, RM 5.45mm, , see http://www.onsemi.com/pub/Collateral/340AC.PDF -TO-3PB-3 Vertical RM 5.45mm -0 -3 -3 -Package_TO_SOT_THT -TO-5-2 -TO-5-2 -TO-5-2 -0 -2 -2 -Package_TO_SOT_THT -TO-5-2_Window -TO-5-2_Window, Window -TO-5-2_Window Window -0 -2 -2 -Package_TO_SOT_THT -TO-5-3 -TO-5-3 -TO-5-3 -0 -3 -3 -Package_TO_SOT_THT -TO-5-3_Window -TO-5-3_Window, Window -TO-5-3_Window Window -0 -3 -3 -Package_TO_SOT_THT -TO-5-4 -TO-5-4 -TO-5-4 -0 -4 -4 -Package_TO_SOT_THT -TO-5-4_Window -TO-5-4_Window, Window -TO-5-4_Window Window -0 -4 -4 -Package_TO_SOT_THT -TO-5-6 -TO-5-6 -TO-5-6 -0 -6 -6 -Package_TO_SOT_THT -TO-5-6_Window -TO-5-6_Window, Window -TO-5-6_Window Window -0 -6 -6 -Package_TO_SOT_THT -TO-5-8 -TO-5-8 -TO-5-8 -0 -8 -8 -Package_TO_SOT_THT -TO-5-8_PD5.08 -TO-5-8_PD5.08 -TO-5-8_PD5.08 -0 -8 -8 -Package_TO_SOT_THT -TO-5-8_PD5.08_Window -TO-5-8_PD5.08_Window, Window -TO-5-8_PD5.08_Window Window -0 -8 -8 -Package_TO_SOT_THT -TO-5-8_Window -TO-5-8_Window, Window -TO-5-8_Window Window -0 -8 -8 -Package_TO_SOT_THT -TO-5-10 -TO-5-10 -TO-5-10 -0 -10 -10 -Package_TO_SOT_THT -TO-5-10_Window -TO-5-10_Window, Window -TO-5-10_Window Window -0 -10 -10 -Package_TO_SOT_THT -TO-8-2 -TO-8-2 -TO-8-2 -0 -2 -2 -Package_TO_SOT_THT -TO-8-2_Window -TO-8-2_Window, Window -TO-8-2_Window Window -0 -2 -2 -Package_TO_SOT_THT -TO-8-3 -TO-8-3 -TO-8-3 -0 -3 -3 -Package_TO_SOT_THT -TO-8-3_Window -TO-8-3_Window, Window -TO-8-3_Window Window -0 -3 -3 -Package_TO_SOT_THT -TO-11-2 -TO-11-2 -TO-11-2 -0 -2 -2 -Package_TO_SOT_THT -TO-11-2_Window -TO-11-2_Window, Window -TO-11-2_Window Window -0 -2 -2 -Package_TO_SOT_THT -TO-11-3 -TO-11-3 -TO-11-3 -0 -3 -3 -Package_TO_SOT_THT -TO-11-3_Window -TO-11-3_Window, Window -TO-11-3_Window Window -0 -3 -3 -Package_TO_SOT_THT -TO-12-4 -TO-12-4 -TO-12-4 -0 -4 -4 -Package_TO_SOT_THT -TO-12-4_Window -TO-12-4_Window, Window -TO-12-4_Window Window -0 -4 -4 -Package_TO_SOT_THT -TO-17-4 -TO-17-4 -TO-17-4 -0 -4 -4 -Package_TO_SOT_THT -TO-17-4_Window -TO-17-4_Window, Window -TO-17-4_Window Window -0 -4 -4 -Package_TO_SOT_THT -TO-18-2 -TO-18-2 -TO-18-2 -0 -2 -2 -Package_TO_SOT_THT -TO-18-2_Lens -TO-18-2_Lens, Lens -TO-18-2_Lens Lens -0 -2 -2 -Package_TO_SOT_THT -TO-18-2_Window -TO-18-2_Window, Window -TO-18-2_Window Window -0 -2 -2 -Package_TO_SOT_THT -TO-18-3 -TO-18-3 -TO-18-3 -0 -3 -3 -Package_TO_SOT_THT -TO-18-3_Lens -TO-18-3_Lens, Lens -TO-18-3_Lens Lens -0 -3 -3 -Package_TO_SOT_THT -TO-18-3_Window -TO-18-3_Window, Window -TO-18-3_Window Window -0 -3 -3 -Package_TO_SOT_THT -TO-18-4 -TO-18-4 -TO-18-4 -0 -4 -4 -Package_TO_SOT_THT -TO-18-4_Lens -TO-18-4_Lens, Lens -TO-18-4_Lens Lens -0 -4 -4 -Package_TO_SOT_THT -TO-18-4_Window -TO-18-4_Window, Window -TO-18-4_Window Window -0 -4 -4 -Package_TO_SOT_THT -TO-33-4 -TO-33-4 -TO-33-4 -0 -4 -4 -Package_TO_SOT_THT -TO-33-4_Window -TO-33-4_Window, Window -TO-33-4_Window Window -0 -4 -4 -Package_TO_SOT_THT -TO-38-2 -TO-38-2 -TO-38-2 -0 -2 -2 -Package_TO_SOT_THT -TO-38-2_Window -TO-38-2_Window, Window -TO-38-2_Window Window -0 -2 -2 -Package_TO_SOT_THT -TO-38-3 -TO-38-3 -TO-38-3 -0 -3 -3 -Package_TO_SOT_THT -TO-38-3_Window -TO-38-3_Window, Window -TO-38-3_Window Window -0 -3 -3 -Package_TO_SOT_THT -TO-39-2 -TO-39-2 -TO-39-2 -0 -2 -2 -Package_TO_SOT_THT -TO-39-2_Window -TO-39-2_Window, Window -TO-39-2_Window Window -0 -2 -2 -Package_TO_SOT_THT -TO-39-3 -TO-39-3 -TO-39-3 -0 -3 -3 -Package_TO_SOT_THT -TO-39-3_Window -TO-39-3_Window, Window -TO-39-3_Window Window -0 -3 -3 -Package_TO_SOT_THT -TO-39-4 -TO-39-4 -TO-39-4 -0 -4 -4 -Package_TO_SOT_THT -TO-39-4_Window -TO-39-4_Window, Window -TO-39-4_Window Window -0 -4 -4 -Package_TO_SOT_THT -TO-39-6 -TO-39-6 -TO-39-6 -0 -6 -6 -Package_TO_SOT_THT -TO-39-6_Window -TO-39-6_Window, Window -TO-39-6_Window Window -0 -6 -6 -Package_TO_SOT_THT -TO-39-8 -TO-39-8 -TO-39-8 -0 -8 -8 -Package_TO_SOT_THT -TO-39-8_Window -TO-39-8_Window, Window -TO-39-8_Window Window -0 -8 -8 -Package_TO_SOT_THT -TO-39-10 -TO-39-10 -TO-39-10 -0 -10 -10 -Package_TO_SOT_THT -TO-39-10_Window -TO-39-10_Window, Window -TO-39-10_Window Window -0 -10 -10 -Package_TO_SOT_THT -TO-46-2 -TO-46-2 -TO-46-2 -0 -2 -2 -Package_TO_SOT_THT -TO-46-2_Pin2Center -TO-46-2, Pin2 at center of package, Thorlabs photodiodes -TO-46-2 Thorlabs -0 -2 -2 -Package_TO_SOT_THT -TO-46-2_Pin2Center_Window -TO-46-2, Pin2 at center of package, Thorlabs photodiodes -TO-46-2 Thorlabs -0 -2 -2 -Package_TO_SOT_THT -TO-46-2_Window -TO-46-2_Window, Window -TO-46-2_Window Window -0 -2 -2 -Package_TO_SOT_THT -TO-46-3 -TO-46-3 -TO-46-3 -0 -3 -3 -Package_TO_SOT_THT -TO-46-3_Pin2Center -TO-46-3, Pin2 at center of package, Thorlabs photodiodes, https://www.thorlabs.de/drawings/374b6862eb3b5a04-9360B5F6-5056-2306-D912111C06C3F830/FDGA05-SpecSheet.pdf -TO-46-3 Thorlabs -0 -3 -3 -Package_TO_SOT_THT -TO-46-3_Pin2Center_Window -TO-46-3, Pin2 at center of package, Thorlabs photodiodes, https://www.thorlabs.de/drawings/374b6862eb3b5a04-9360B5F6-5056-2306-D912111C06C3F830/FDGA05-SpecSheet.pdf -TO-46-3 Thorlabs -0 -3 -3 -Package_TO_SOT_THT -TO-46-3_Window -TO-46-3_Window, Window -TO-46-3_Window Window -0 -3 -3 -Package_TO_SOT_THT -TO-46-4 -TO-46-4 -TO-46-4 -0 -4 -4 -Package_TO_SOT_THT -TO-46-4_Window -TO-46-4_Window, Window -TO-46-4_Window Window -0 -4 -4 -Package_TO_SOT_THT -TO-52-2 -TO-52-2 -TO-52-2 -0 -2 -2 -Package_TO_SOT_THT -TO-52-2_Window -TO-52-2_Window, Window -TO-52-2_Window Window -0 -2 -2 -Package_TO_SOT_THT -TO-52-3 -TO-52-3 -TO-52-3 -0 -3 -3 -Package_TO_SOT_THT -TO-52-3_Window -TO-52-3_Window, Window -TO-52-3_Window Window -0 -3 -3 -Package_TO_SOT_THT -TO-72-4 -TO-72-4 -TO-72-4 -0 -4 -4 -Package_TO_SOT_THT -TO-72-4_Window -TO-72-4_Window, Window -TO-72-4_Window Window -0 -4 -4 -Package_TO_SOT_THT -TO-75-6 -TO-75-6 -TO-75-6 -0 -6 -6 -Package_TO_SOT_THT -TO-75-6_Window -TO-75-6_Window, Window -TO-75-6_Window Window -0 -6 -6 -Package_TO_SOT_THT -TO-78-6 -TO-78-6 -TO-78-6 -0 -6 -6 -Package_TO_SOT_THT -TO-78-6_Window -TO-78-6_Window, Window -TO-78-6_Window Window -0 -6 -6 -Package_TO_SOT_THT -TO-78-8 -TO-78-8 -TO-78-8 -0 -8 -8 -Package_TO_SOT_THT -TO-78-8_Window -TO-78-8_Window, Window -TO-78-8_Window Window -0 -8 -8 -Package_TO_SOT_THT -TO-78-10 -TO-78-10 -TO-78-10 -0 -10 -10 -Package_TO_SOT_THT -TO-78-10_Window -TO-78-10_Window, Window -TO-78-10_Window Window -0 -10 -10 -Package_TO_SOT_THT -TO-92 -TO-92 leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf) -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -Package_TO_SOT_THT -TO-92-2 -TO-92 2-pin leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf) -to-92 sc-43 sc-43a sot54 PA33 diode SOD70 -0 -2 -2 -Package_TO_SOT_THT -TO-92-2_Horizontal1 -2-pin TO-92 horizontal, leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf) -to-92 sc-43 sc-43a sot54 PA33 temperature sensor diode -0 -2 -2 -Package_TO_SOT_THT -TO-92-2_Horizontal2 -2-pin TO-92 horizontal, leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf) -to-92 sc-43 sc-43a sot54 PA33 temperature sensor diode -0 -2 -2 -Package_TO_SOT_THT -TO-92-2_W4.0mm_Horizontal_FlatSideDown -TO-92 horizontal, leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf) -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -2 -2 -Package_TO_SOT_THT -TO-92-2_W4.0mm_Horizontal_FlatSideUp -TO-92 horizontal, leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf) -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -2 -2 -Package_TO_SOT_THT -TO-92-2_Wide -TO-92 2-pin leads in-line, wide, drill 0.75mm -to-92 sc-43 sc-43a sot54 PA33 diode SOD70 -0 -2 -2 -Package_TO_SOT_THT -TO-92Flat -TO-92Flat package, often used for hall sensors, drill 0.75mm (see e.g. http://www.ti.com/lit/ds/symlink/drv5023.pdf) -to-92Flat hall sensor -0 -3 -3 -Package_TO_SOT_THT -TO-92L -TO-92L leads in-line (large body variant of TO-92), also known as TO-226, wide, drill 0.75mm (see https://www.diodes.com/assets/Package-Files/TO92L.pdf and http://www.ti.com/lit/an/snoa059/snoa059.pdf) -TO-92L Molded Narrow transistor -0 -3 -3 -Package_TO_SOT_THT -TO-92L_HandSolder -TO-92L leads in-line (large body variant of TO-92), also known as TO-226, wide, drill 0.75mm, hand-soldering variant with enlarged pads (see https://www.diodes.com/assets/Package-Files/TO92L.pdf and http://www.ti.com/lit/an/snoa059/snoa059.pdf) -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -Package_TO_SOT_THT -TO-92L_Inline -TO-92L leads in-line (large body variant of TO-92), also known as TO-226, wide, drill 0.75mm (see https://www.diodes.com/assets/Package-Files/TO92L.pdf and http://www.ti.com/lit/an/snoa059/snoa059.pdf) -TO-92L Inline Wide transistor -0 -3 -3 -Package_TO_SOT_THT -TO-92L_Inline_Wide -TO-92L leads in-line (large body variant of TO-92), also known as TO-226, wide, drill 0.75mm (see https://www.diodes.com/assets/Package-Files/TO92L.pdf and http://www.ti.com/lit/an/snoa059/snoa059.pdf) -TO-92L Inline Wide transistor -0 -3 -3 -Package_TO_SOT_THT -TO-92L_Wide -TO-92L leads in-line (large body variant of TO-92), also known as TO-226, wide, drill 0.75mm (see https://www.diodes.com/assets/Package-Files/TO92L.pdf and http://www.ti.com/lit/an/snoa059/snoa059.pdf) -TO-92L Molded Wide transistor -0 -3 -3 -Package_TO_SOT_THT -TO-92Mini-2 -TO-92Mini package, drill 0.6mm (https://media.digikey.com/pdf/Data%20Sheets/Infineon%20PDFs/KT,KTY.pdf) -to-92Mini transistor -0 -2 -2 -Package_TO_SOT_THT -TO-92S -TO-92S package, drill 0.75mm (https://www.diodes.com/assets/Package-Files/TO92S%20(Type%20B).pdf) -to-92S transistor -0 -3 -3 -Package_TO_SOT_THT -TO-92S-2 -TO-92S package, 2-pin, drill 0.75mm (https://www.diodes.com/assets/Package-Files/TO92S%20(Type%20B).pdf) -to-92S transistor -0 -2 -2 -Package_TO_SOT_THT -TO-92S_Wide -TO-92S_Wide package, drill 0.75mm (https://www.diodes.com/assets/Package-Files/TO92S%20(Type%20B).pdf) -TO-92S_Wide transistor -0 -3 -3 -Package_TO_SOT_THT -TO-92_HandSolder -TO-92 leads molded, narrow, drill 0.75mm, handsoldering variant with enlarged pads (see NXP sot054_po.pdf) -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -Package_TO_SOT_THT -TO-92_Horizontal1 -TO-92 horizontal, leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf) -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -Package_TO_SOT_THT -TO-92_Horizontal2 -TO-92 horizontal, leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf) -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -Package_TO_SOT_THT -TO-92_Inline -TO-92 leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf) -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -Package_TO_SOT_THT -TO-92_Inline_Horizontal1 -TO-92 horizontal, leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf) -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -Package_TO_SOT_THT -TO-92_Inline_Horizontal2 -TO-92 horizontal, leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf) -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -Package_TO_SOT_THT -TO-92_Inline_W4.0mm_Horizontal_FlatSideDown -TO-92 horizontal, leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf) -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -Package_TO_SOT_THT -TO-92_Inline_W4.0mm_Horizontal_FlatSideUp -TO-92 horizontal, leads in-line, narrow, oval pads, drill 0.75mm (see NXP sot054_po.pdf) -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -Package_TO_SOT_THT -TO-92_Inline_Wide -TO-92 leads in-line, wide, drill 0.75mm (see NXP sot054_po.pdf) -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -Package_TO_SOT_THT -TO-92_W4.0mm_StaggerEven_Horizontal_FlatSideDown -TO-92 horizontal, leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf) -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -Package_TO_SOT_THT -TO-92_W4.0mm_StaggerEven_Horizontal_FlatSideUp -TO-92 horizontal, leads molded, narrow, drill 0.75mm (see NXP sot054_po.pdf) -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -Package_TO_SOT_THT -TO-92_Wide -TO-92 leads molded, wide, drill 0.75mm (see NXP sot054_po.pdf) -to-92 sc-43 sc-43a sot54 PA33 transistor -0 -3 -3 -Package_TO_SOT_THT -TO-99-6 -TO-99-6 -TO-99-6 -0 -6 -6 -Package_TO_SOT_THT -TO-99-6_Window -TO-99-6_Window, Window -TO-99-6_Window Window -0 -6 -6 -Package_TO_SOT_THT -TO-99-8 -TO-99-8 -TO-99-8 -0 -8 -8 -Package_TO_SOT_THT -TO-99-8_Window -TO-99-8_Window, Window -TO-99-8_Window Window -0 -8 -8 -Package_TO_SOT_THT -TO-100-10 -TO-100-10 -TO-100-10 -0 -10 -10 -Package_TO_SOT_THT -TO-100-10_Window -TO-100-10_Window, Window -TO-100-10_Window Window -0 -10 -10 -Package_TO_SOT_THT -TO-126-2_Horizontal_TabDown -TO-126-2, Horizontal, RM 5.08mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf -TO-126-2 Horizontal RM 5.08mm -0 -2 -2 -Package_TO_SOT_THT -TO-126-2_Horizontal_TabUp -TO-126-2, Horizontal, RM 5.08mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf -TO-126-2 Horizontal RM 5.08mm -0 -2 -2 -Package_TO_SOT_THT -TO-126-2_Vertical -TO-126-2, Vertical, RM 5.08mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf -TO-126-2 Vertical RM 5.08mm -0 -2 -2 -Package_TO_SOT_THT -TO-126-3_Horizontal_TabDown -TO-126-3, Horizontal, RM 2.54mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf -TO-126-3 Horizontal RM 2.54mm -0 -3 -3 -Package_TO_SOT_THT -TO-126-3_Horizontal_TabUp -TO-126-3, Horizontal, RM 2.54mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf -TO-126-3 Horizontal RM 2.54mm -0 -3 -3 -Package_TO_SOT_THT -TO-126-3_Vertical -TO-126-3, Vertical, RM 2.54mm, see https://www.diodes.com/assets/Package-Files/TO126.pdf -TO-126-3 Vertical RM 2.54mm -0 -3 -3 -Package_TO_SOT_THT -TO-218-2_Horizontal_TabDown -TO-218-2, Horizontal, RM 10.95mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf -TO-218-2 Horizontal RM 10.95mm SOT-93 -0 -2 -2 -Package_TO_SOT_THT -TO-218-2_Horizontal_TabUp -TO-218-2, Horizontal, RM 10.95mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf -TO-218-2 Horizontal RM 10.95mm SOT-93 -0 -2 -2 -Package_TO_SOT_THT -TO-218-2_Vertical -TO-218-2, Vertical, RM 10.95mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf -TO-218-2 Vertical RM 10.95mm SOT-93 -0 -2 -2 -Package_TO_SOT_THT -TO-218-3_Horizontal_TabDown -TO-218-3, Horizontal, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf -TO-218-3 Horizontal RM 5.475mm SOT-93 -0 -3 -3 -Package_TO_SOT_THT -TO-218-3_Horizontal_TabUp -TO-218-3, Horizontal, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf -TO-218-3 Horizontal RM 5.475mm SOT-93 -0 -3 -3 -Package_TO_SOT_THT -TO-218-3_Vertical -TO-218-3, Vertical, RM 5.475mm, SOT-93, see https://www.vishay.com/docs/95214/fto218.pdf -TO-218-3 Vertical RM 5.475mm SOT-93 -0 -3 -3 -Package_TO_SOT_THT -TO-220-2_Horizontal_TabDown -TO-220-2, Horizontal, RM 5.08mm, see https://www.centralsemi.com/PDFS/CASE/TO-220-2PD.PDF -TO-220-2 Horizontal RM 5.08mm -0 -2 -2 -Package_TO_SOT_THT -TO-220-2_Horizontal_TabUp -TO-220-2, Horizontal, RM 5.08mm, see https://www.centralsemi.com/PDFS/CASE/TO-220-2PD.PDF -TO-220-2 Horizontal RM 5.08mm -0 -2 -2 -Package_TO_SOT_THT -TO-220-2_Vertical -TO-220-2, Vertical, RM 5.08mm, see https://www.centralsemi.com/PDFS/CASE/TO-220-2PD.PDF -TO-220-2 Vertical RM 5.08mm -0 -2 -2 -Package_TO_SOT_THT -TO-220-3_Horizontal_TabDown -TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf -TO-220-3 Horizontal RM 2.54mm -0 -3 -3 -Package_TO_SOT_THT -TO-220-3_Horizontal_TabUp -TO-220-3, Horizontal, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf -TO-220-3 Horizontal RM 2.54mm -0 -3 -3 -Package_TO_SOT_THT -TO-220-3_Vertical -TO-220-3, Vertical, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf -TO-220-3 Vertical RM 2.54mm -0 -3 -3 -Package_TO_SOT_THT -TO-220-4_Horizontal_TabDown -TO-220-4, Horizontal, RM 2.54mm -TO-220-4 Horizontal RM 2.54mm -0 -4 -4 -Package_TO_SOT_THT -TO-220-4_Horizontal_TabUp -TO-220-4, Horizontal, RM 2.54mm -TO-220-4 Horizontal RM 2.54mm -0 -4 -4 -Package_TO_SOT_THT -TO-220-4_P5.08x2.54mm_StaggerEven_Lead3.8mm_Vertical -TO-220-4, Vertical, RM 2.54mm, staggered type-2 -TO-220-4 Vertical RM 2.54mm staggered type-2 -0 -4 -4 -Package_TO_SOT_THT -TO-220-4_P5.08x2.54mm_StaggerEven_Lead5.84mm_TabDown -TO-220-4, Horizontal, RM 2.54mm, staggered type-2 -TO-220-4 Horizontal RM 2.54mm staggered type-2 -0 -4 -4 -Package_TO_SOT_THT -TO-220-4_P5.08x2.54mm_StaggerOdd_Lead3.8mm_Vertical -TO-220-4, Vertical, RM 2.54mm, staggered type-1 -TO-220-4 Vertical RM 2.54mm staggered type-1 -0 -4 -4 -Package_TO_SOT_THT -TO-220-4_P5.08x2.54mm_StaggerOdd_Lead5.84mm_TabDown -TO-220-4, Horizontal, RM 2.54mm, staggered type-1 -TO-220-4 Horizontal RM 2.54mm staggered type-1 -0 -4 -4 -Package_TO_SOT_THT -TO-220-4_Vertical -TO-220-4, Vertical, RM 2.54mm -TO-220-4 Vertical RM 2.54mm -0 -4 -4 -Package_TO_SOT_THT -TO-220-5_Horizontal_TabDown -TO-220-5, Horizontal, RM 1.7mm, Pentawatt, Multiwatt-5, see http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-to-220/to-220_5_05-08-1421_straight_lead.pdf -TO-220-5 Horizontal RM 1.7mm Pentawatt Multiwatt-5 -0 -5 -5 -Package_TO_SOT_THT -TO-220-5_Horizontal_TabUp -TO-220-5, Horizontal, RM 1.7mm, Pentawatt, Multiwatt-5, see http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-to-220/to-220_5_05-08-1421_straight_lead.pdf -TO-220-5 Horizontal RM 1.7mm Pentawatt Multiwatt-5 -0 -5 -5 -Package_TO_SOT_THT -TO-220-5_P3.4x3.7mm_StaggerEven_Lead3.8mm_Vertical -TO-220-5, Vertical, RM 1.7mm, Pentawatt, Multiwatt-5, staggered type-2, see http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-to-220/to-220_5_05-08-1421.pdf?domain=www.linear.com, https://www.diodes.com/assets/Package-Files/TO220-5.pdf -TO-220-5 Vertical RM 1.7mm Pentawatt Multiwatt-5 staggered type-2 -0 -5 -5 -Package_TO_SOT_THT -TO-220-5_P3.4x3.7mm_StaggerOdd_Lead3.8mm_Vertical -TO-220-5, Vertical, RM 1.7mm, Pentawatt, Multiwatt-5, staggered type-1, see http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-to-220/to-220_5_05-08-1421.pdf?domain=www.linear.com, https://www.diodes.com/assets/Package-Files/TO220-5.pdf -TO-220-5 Vertical RM 1.7mm Pentawatt Multiwatt-5 staggered type-1 -0 -5 -5 -Package_TO_SOT_THT -TO-220-5_P3.4x3.8mm_StaggerEven_Lead7.13mm_TabDown -TO-220-5, Horizontal, RM 1.7mm, Pentawatt, Multiwatt-5, staggered type-2, see http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-to-220/to-220_5_05-08-1421.pdf?domain=www.linear.com, https://www.diodes.com/assets/Package-Files/TO220-5.pdf -TO-220-5 Horizontal RM 1.7mm Pentawatt Multiwatt-5 staggered type-2 -0 -5 -5 -Package_TO_SOT_THT -TO-220-5_P3.4x3.8mm_StaggerOdd_Lead7.13mm_TabDown -TO-220-5, Horizontal, RM 1.7mm, Pentawatt, Multiwatt-5, staggered type-1, see http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-to-220/to-220_5_05-08-1421.pdf?domain=www.linear.com, https://www.diodes.com/assets/Package-Files/TO220-5.pdf -TO-220-5 Horizontal RM 1.7mm Pentawatt Multiwatt-5 staggered type-1 -0 -5 -5 -Package_TO_SOT_THT -TO-220-5_Vertical -TO-220-5, Vertical, RM 1.7mm, Pentawatt, Multiwatt-5, see http://www.analog.com/media/en/package-pcb-resources/package/pkg_pdf/ltc-legacy-to-220/to-220_5_05-08-1421_straight_lead.pdf -TO-220-5 Vertical RM 1.7mm Pentawatt Multiwatt-5 -0 -5 -5 -Package_TO_SOT_THT -TO-220-7_P2.54x3.7mm_StaggerEven_Lead3.8mm_Vertical -TO-220-7, Vertical, RM 1.27mm, Multiwatt-7, staggered type-2 -TO-220-7 Vertical RM 1.27mm Multiwatt-7 staggered type-2 -0 -7 -7 -Package_TO_SOT_THT -TO-220-7_P2.54x3.7mm_StaggerOdd_Lead3.8mm_Vertical -TO-220-7, Vertical, RM 1.27mm, Multiwatt-7, staggered type-1 -TO-220-7 Vertical RM 1.27mm Multiwatt-7 staggered type-1 -0 -7 -7 -Package_TO_SOT_THT -TO-220-7_P2.54x3.8mm_StaggerEven_Lead5.85mm_TabDown -TO-220-7, Horizontal, RM 1.27mm, Multiwatt-7, staggered type-2 -TO-220-7 Horizontal RM 1.27mm Multiwatt-7 staggered type-2 -0 -7 -7 -Package_TO_SOT_THT -TO-220-7_P2.54x3.8mm_StaggerOdd_Lead5.85mm_TabDown -TO-220-7, Horizontal, RM 1.27mm, Multiwatt-7, staggered type-1 -TO-220-7 Horizontal RM 1.27mm Multiwatt-7 staggered type-1 -0 -7 -7 -Package_TO_SOT_THT -TO-220-8_Vertical -TO-220-8 (Multiwatt8), Vertical, 2.54mm Pitch (http://www.st.com/resource/en/datasheet/tda7264.pdf) -TO-220-9 Vertical 2.54mm Pitch Multiwatt 8 -0 -8 -8 -Package_TO_SOT_THT -TO-220-9_P1.94x3.7mm_StaggerEven_Lead3.8mm_Vertical -TO-220-9, Vertical, RM 0.97mm, Multiwatt-9, staggered type-2 -TO-220-9 Vertical RM 0.97mm Multiwatt-9 staggered type-2 -0 -9 -9 -Package_TO_SOT_THT -TO-220-9_P1.94x3.7mm_StaggerOdd_Lead3.8mm_Vertical -TO-220-9, Vertical, RM 0.97mm, Multiwatt-9, staggered type-1 -TO-220-9 Vertical RM 0.97mm Multiwatt-9 staggered type-1 -0 -9 -9 -Package_TO_SOT_THT -TO-220-9_P1.94x3.8mm_StaggerEven_Lead5.85mm_TabDown -TO-220-9, Horizontal, RM 0.97mm, Multiwatt-9, staggered type-2 -TO-220-9 Horizontal RM 0.97mm Multiwatt-9 staggered type-2 -0 -9 -9 -Package_TO_SOT_THT -TO-220-9_P1.94x3.8mm_StaggerOdd_Lead5.85mm_TabDown -TO-220-9, Horizontal, RM 0.97mm, Multiwatt-9, staggered type-1 -TO-220-9 Horizontal RM 0.97mm Multiwatt-9 staggered type-1 -0 -9 -9 -Package_TO_SOT_THT -TO-220-11_P3.4x2.54mm_StaggerEven_Lead5.84mm_TabDown -TO-220-11, Horizontal, RM 1.7mm, staggered type-2, see http://www.st.com/resource/en/datasheet/tda7391lv.pdf -TO-220-11 Horizontal RM 1.7mm staggered type-2 -0 -11 -11 -Package_TO_SOT_THT -TO-220-11_P3.4x2.54mm_StaggerOdd_Lead5.84mm_TabDown -TO-220-11, Horizontal, RM 1.7mm, staggered type-1, see http://www.st.com/resource/en/datasheet/tda7391lv.pdf -TO-220-11 Horizontal RM 1.7mm staggered type-1 -0 -11 -11 -Package_TO_SOT_THT -TO-220-11_P3.4x5.08mm_StaggerEven_Lead4.58mm_Vertical -TO-220-11, Vertical, RM 1.7mm, staggered type-2, see http://www.st.com/resource/en/datasheet/tda7391lv.pdf -TO-220-11 Vertical RM 1.7mm staggered type-2 -0 -11 -11 -Package_TO_SOT_THT -TO-220-11_P3.4x5.08mm_StaggerOdd_Lead4.85mm_Vertical -TO-220-11, Vertical, RM 1.7mm, staggered type-1, see http://www.st.com/resource/en/datasheet/tda7391lv.pdf -TO-220-11 Vertical RM 1.7mm staggered type-1 -0 -11 -11 -Package_TO_SOT_THT -TO-220-11_P3.4x5.08mm_StaggerOdd_Lead8.45mm_TabDown -TO-220-11, Horizontal, RM 1.7mm, staggered type-1, see http://www.ti.com/lit/ds/symlink/lmd18200.pdf -TO-220-11 Horizontal RM 1.7mm staggered type-1 -0 -11 -11 -Package_TO_SOT_THT -TO-220-15_P2.54x2.54mm_StaggerEven_Lead4.58mm_Vertical -TO-220-15, Vertical, RM 1.27mm, staggered type-2, see http://www.st.com/resource/en/datasheet/l298.pdf -TO-220-15 Vertical RM 1.27mm staggered type-2 -0 -15 -15 -Package_TO_SOT_THT -TO-220-15_P2.54x2.54mm_StaggerEven_Lead5.84mm_TabDown -TO-220-15, Horizontal, RM 1.27mm, staggered type-2, see http://www.st.com/resource/en/datasheet/l298.pdf -TO-220-15 Horizontal RM 1.27mm staggered type-2 -0 -15 -15 -Package_TO_SOT_THT -TO-220-15_P2.54x2.54mm_StaggerOdd_Lead4.58mm_Vertical -TO-220-15, Vertical, RM 1.27mm, staggered type-1, see http://www.st.com/resource/en/datasheet/l298.pdf -TO-220-15 Vertical RM 1.27mm staggered type-1 -0 -15 -15 -Package_TO_SOT_THT -TO-220-15_P2.54x2.54mm_StaggerOdd_Lead5.84mm_TabDown -TO-220-15, Horizontal, RM 1.27mm, staggered type-1, see http://www.st.com/resource/en/datasheet/l298.pdf -TO-220-15 Horizontal RM 1.27mm staggered type-1 -0 -15 -15 -Package_TO_SOT_THT -TO-220F-2_Horizontal_TabDown -TO-220F-2, Horizontal, RM 5.08mm, see http://www.onsemi.com/pub/Collateral/FFPF10F150S-D.pdf -TO-220F-2 Horizontal RM 5.08mm -0 -2 -2 -Package_TO_SOT_THT -TO-220F-2_Horizontal_TabUp -TO-220F-2, Horizontal, RM 5.08mm, see http://www.onsemi.com/pub/Collateral/FFPF10F150S-D.pdf -TO-220F-2 Horizontal RM 5.08mm -0 -2 -2 -Package_TO_SOT_THT -TO-220F-2_Vertical -TO-220F-2, Vertical, RM 5.08mm, see http://www.onsemi.com/pub/Collateral/FFPF10F150S-D.pdf -TO-220F-2 Vertical RM 5.08mm -0 -2 -2 -Package_TO_SOT_THT -TO-220F-3_Horizontal_TabDown -TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf -TO-220F-3 Horizontal RM 2.54mm -0 -3 -3 -Package_TO_SOT_THT -TO-220F-3_Horizontal_TabUp -TO-220F-3, Horizontal, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf -TO-220F-3 Horizontal RM 2.54mm -0 -3 -3 -Package_TO_SOT_THT -TO-220F-3_Vertical -TO-220F-3, Vertical, RM 2.54mm, see http://www.st.com/resource/en/datasheet/stp20nm60.pdf -TO-220F-3 Vertical RM 2.54mm -0 -3 -3 -Package_TO_SOT_THT -TO-220F-4_Horizontal_TabDown -TO-220F-4, Horizontal, RM 2.54mm, see https://www.njr.com/semicon/PDF/package/TO-220F-4_E.pdf -TO-220F-4 Horizontal RM 2.54mm -0 -4 -4 -Package_TO_SOT_THT -TO-220F-4_Horizontal_TabUp -TO-220F-4, Horizontal, RM 2.54mm, see https://www.njr.com/semicon/PDF/package/TO-220F-4_E.pdf -TO-220F-4 Horizontal RM 2.54mm -0 -4 -4 -Package_TO_SOT_THT -TO-220F-4_P5.08x2.05mm_StaggerEven_Lead1.85mm_Vertical -TO-220F-4, Vertical, RM 2.54mm, staggered type-2, see https://www.njr.com/semicon/PDF/package/TO-220F-4_E.pdf -TO-220F-4 Vertical RM 2.54mm staggered type-2 -0 -4 -4 -Package_TO_SOT_THT -TO-220F-4_P5.08x2.05mm_StaggerOdd_Lead1.85mm_Vertical -TO-220F-4, Vertical, RM 2.54mm, staggered type-1, see https://www.njr.com/semicon/PDF/package/TO-220F-4_E.pdf -TO-220F-4 Vertical RM 2.54mm staggered type-1 -0 -4 -4 -Package_TO_SOT_THT -TO-220F-4_P5.08x3.7mm_StaggerEven_Lead3.5mm_Vertical -TO-220F-4, Vertical, RM 2.54mm, staggered type-2, see https://www.njr.com/semicon/PDF/package/TO-220F-4_E.pdf -TO-220F-4 Vertical RM 2.54mm staggered type-2 -0 -4 -4 -Package_TO_SOT_THT -TO-220F-4_P5.08x3.7mm_StaggerOdd_Lead3.5mm_Vertical -TO-220F-4, Vertical, RM 2.54mm, staggered type-1, see https://www.njr.com/semicon/PDF/package/TO-220F-4_E.pdf -TO-220F-4 Vertical RM 2.54mm staggered type-1 -0 -4 -4 -Package_TO_SOT_THT -TO-220F-4_Vertical -TO-220F-4, Vertical, RM 2.54mm, see https://www.njr.com/semicon/PDF/package/TO-220F-4_E.pdf -TO-220F-4 Vertical RM 2.54mm -0 -4 -4 -Package_TO_SOT_THT -TO-220F-5_Horizontal_TabDown -TO-220F-5, Horizontal, RM 1.7mm, PentawattF-, MultiwattF-5 -TO-220F-5 Horizontal RM 1.7mm PentawattF- MultiwattF-5 -0 -5 -5 -Package_TO_SOT_THT -TO-220F-5_Horizontal_TabUp -TO-220F-5, Horizontal, RM 1.7mm, PentawattF-, MultiwattF-5 -TO-220F-5 Horizontal RM 1.7mm PentawattF- MultiwattF-5 -0 -5 -5 -Package_TO_SOT_THT -TO-220F-5_P3.4x2.06mm_StaggerEven_Lead1.86mm_Vertical -TO-220F-5, Vertical, RM 1.7mm, PentawattF-, MultiwattF-5, staggered type-2 -TO-220F-5 Vertical RM 1.7mm PentawattF- MultiwattF-5 staggered type-2 -0 -5 -5 -Package_TO_SOT_THT -TO-220F-5_P3.4x2.06mm_StaggerOdd_Lead1.86mm_Vertical -TO-220F-5, Vertical, RM 1.7mm, PentawattF-, MultiwattF-5, staggered type-1 -TO-220F-5 Vertical RM 1.7mm PentawattF- MultiwattF-5 staggered type-1 -0 -5 -5 -Package_TO_SOT_THT -TO-220F-5_P3.4x3.7mm_StaggerEven_Lead3.5mm_Vertical -TO-220F-5, Vertical, RM 1.7mm, PentawattF-, MultiwattF-5, staggered type-2 -TO-220F-5 Vertical RM 1.7mm PentawattF- MultiwattF-5 staggered type-2 -0 -5 -5 -Package_TO_SOT_THT -TO-220F-5_P3.4x3.7mm_StaggerOdd_Lead3.5mm_Vertical -TO-220F-5, Vertical, RM 1.7mm, PentawattF-, MultiwattF-5, staggered type-1 -TO-220F-5 Vertical RM 1.7mm PentawattF- MultiwattF-5 staggered type-1 -0 -5 -5 -Package_TO_SOT_THT -TO-220F-5_Vertical -TO-220F-5, Vertical, RM 1.7mm, PentawattF-, MultiwattF-5 -TO-220F-5 Vertical RM 1.7mm PentawattF- MultiwattF-5 -0 -5 -5 -Package_TO_SOT_THT -TO-220F-7_P2.54x3.7mm_StaggerEven_Lead3.5mm_Vertical -TO-220F-7, Vertical, RM 1.27mm, staggered type-2 -TO-220F-7 Vertical RM 1.27mm staggered type-2 -0 -7 -7 -Package_TO_SOT_THT -TO-220F-7_P2.54x3.7mm_StaggerOdd_Lead3.5mm_Vertical -TO-220F-7, Vertical, RM 1.27mm, staggered type-1 -TO-220F-7 Vertical RM 1.27mm staggered type-1 -0 -7 -7 -Package_TO_SOT_THT -TO-220F-9_P1.8x3.7mm_StaggerEven_Lead3.5mm_Vertical -TO-220F-9, Vertical, RM 0.9mm, staggered type-2 -TO-220F-9 Vertical RM 0.9mm staggered type-2 -0 -9 -9 -Package_TO_SOT_THT -TO-220F-9_P1.8x3.7mm_StaggerOdd_Lead3.5mm_Vertical -TO-220F-9, Vertical, RM 0.9mm, staggered type-1 -TO-220F-9 Vertical RM 0.9mm staggered type-1 -0 -9 -9 -Package_TO_SOT_THT -TO-220F-11_P3.4x5.08mm_StaggerEven_Lead5.08mm_Vertical -TO-220F-11, Vertical, RM 1.7mm, MultiwattF-11, staggered type-2, see http://www.ti.com/lit/ds/symlink/lm3886.pdf -TO-220F-11 Vertical RM 1.7mm MultiwattF-11 staggered type-2 -0 -11 -11 -Package_TO_SOT_THT -TO-220F-11_P3.4x5.08mm_StaggerOdd_Lead5.08mm_Vertical -TO-220F-11, Vertical, RM 1.7mm, MultiwattF-11, staggered type-1, see http://www.ti.com/lit/ds/symlink/lm3886.pdf -TO-220F-11 Vertical RM 1.7mm MultiwattF-11 staggered type-1 -0 -11 -11 -Package_TO_SOT_THT -TO-220F-15_P2.54x5.08mm_StaggerEven_Lead5.08mm_Vertical -TO-220F-15, Vertical, RM 1.27mm, MultiwattF-15, staggered type-2 -TO-220F-15 Vertical RM 1.27mm MultiwattF-15 staggered type-2 -0 -15 -15 -Package_TO_SOT_THT -TO-220F-15_P2.54x5.08mm_StaggerOdd_Lead5.08mm_Vertical -TO-220F-15, Vertical, RM 1.27mm, MultiwattF-15, staggered type-1 -TO-220F-15 Vertical RM 1.27mm MultiwattF-15 staggered type-1 -0 -15 -15 -Package_TO_SOT_THT -TO-247-2_Horizontal_TabDown -TO-247-2, Horizontal, RM 10.9mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html -TO-247-2 Horizontal RM 10.9mm -0 -2 -2 -Package_TO_SOT_THT -TO-247-2_Horizontal_TabUp -TO-247-2, Horizontal, RM 10.9mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html -TO-247-2 Horizontal RM 10.9mm -0 -2 -2 -Package_TO_SOT_THT -TO-247-2_Vertical -TO-247-2, Vertical, RM 10.9mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html -TO-247-2 Vertical RM 10.9mm -0 -2 -2 -Package_TO_SOT_THT -TO-247-3_Horizontal_TabDown -TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html -TO-247-3 Horizontal RM 5.45mm -0 -3 -3 -Package_TO_SOT_THT -TO-247-3_Horizontal_TabUp -TO-247-3, Horizontal, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html -TO-247-3 Horizontal RM 5.45mm -0 -3 -3 -Package_TO_SOT_THT -TO-247-3_Vertical -TO-247-3, Vertical, RM 5.45mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html -TO-247-3 Vertical RM 5.45mm -0 -3 -3 -Package_TO_SOT_THT -TO-247-4_Horizontal_TabDown -TO-247-4, Horizontal, RM 2.54mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html -TO-247-4 Horizontal RM 2.54mm -0 -4 -4 -Package_TO_SOT_THT -TO-247-4_Horizontal_TabUp -TO-247-4, Horizontal, RM 2.54mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html -TO-247-4 Horizontal RM 2.54mm -0 -4 -4 -Package_TO_SOT_THT -TO-247-4_Vertical -TO-247-4, Vertical, RM 2.54mm, see https://toshiba.semicon-storage.com/us/product/mosfet/to-247-4l.html -TO-247-4 Vertical RM 2.54mm -0 -4 -4 -Package_TO_SOT_THT -TO-247-5_Horizontal_TabDown -TO-247-5, Horizontal, RM 2.54mm, see http://ww1.microchip.com/downloads/en/DeviceDoc/20005685A.pdf -TO-247-5 Horizontal RM 2.54mm -0 -5 -5 -Package_TO_SOT_THT -TO-247-5_Horizontal_TabUp -TO-247-5, Horizontal, RM 2.54mm, see http://ww1.microchip.com/downloads/en/DeviceDoc/20005685A.pdf -TO-247-5 Horizontal RM 2.54mm -0 -5 -5 -Package_TO_SOT_THT -TO-247-5_Vertical -TO-247-5, Vertical, RM 2.54mm, see http://ww1.microchip.com/downloads/en/DeviceDoc/20005685A.pdf -TO-247-5 Vertical RM 2.54mm -0 -5 -5 -Package_TO_SOT_THT -TO-251-2-1EP_Horizontal_TabDown -TO-251-2, Horizontal, RM 4.58mm, IPAK, see https://www.diodes.com/assets/Package-Files/TO251.pdf -TO-251-2 Horizontal RM 4.58mm IPAK -0 -3 -3 -Package_TO_SOT_THT -TO-251-2_Vertical -TO-251-2, Vertical, RM 4.58mm, IPAK, see https://www.diodes.com/assets/Package-Files/TO251.pdf -TO-251-2 Vertical RM 4.58mm IPAK -0 -2 -2 -Package_TO_SOT_THT -TO-251-3-1EP_Horizontal_TabDown -TO-251-3, Horizontal, RM 2.29mm, IPAK, see https://www.diodes.com/assets/Package-Files/TO251.pdf -TO-251-3 Horizontal RM 2.29mm IPAK -0 -4 -4 -Package_TO_SOT_THT -TO-251-3_Vertical -TO-251-3, Vertical, RM 2.29mm, IPAK, see https://www.diodes.com/assets/Package-Files/TO251.pdf -TO-251-3 Vertical RM 2.29mm IPAK -0 -3 -3 -Package_TO_SOT_THT -TO-262-3-1EP_Horizontal_TabDown -TO-262-3, Horizontal, RM 2.54mm, IIPAK, I2PAK, see http://www.onsemi.com/pub/Collateral/EN8586-D.PDF -TO-262-3 Horizontal RM 2.54mm IIPAK I2PAK -0 -4 -4 -Package_TO_SOT_THT -TO-262-3_Vertical -TO-262-3, Vertical, RM 2.54mm, IIPAK, I2PAK, see http://www.onsemi.com/pub/Collateral/EN8586-D.PDF -TO-262-3 Vertical RM 2.54mm IIPAK I2PAK -0 -3 -3 -Package_TO_SOT_THT -TO-262-5-1EP_Horizontal_TabDown -TO-262-5, Horizontal, RM 1.7mm, IIPAK, I2PAK, see http://pdf.datasheetcatalog.com/datasheet/irf/iris4011.pdf -TO-262-5 Horizontal RM 1.7mm IIPAK I2PAK -0 -6 -6 -Package_TO_SOT_THT -TO-262-5_Vertical -TO-262-5, Vertical, RM 1.7mm, IIPAK, I2PAK, see http://pdf.datasheetcatalog.com/datasheet/irf/iris4011.pdf -TO-262-5 Vertical RM 1.7mm IIPAK I2PAK -0 -5 -5 -Package_TO_SOT_THT -TO-264-2_Horizontal_TabDown -TO-264-2, Horizontal, RM 10.9mm, see https://www.fairchildsemi.com/package-drawings/TO/TO264A03.pdf -TO-264-2 Horizontal RM 10.9mm -0 -2 -2 -Package_TO_SOT_THT -TO-264-2_Horizontal_TabUp -TO-264-2, Horizontal, RM 10.9mm, see https://www.fairchildsemi.com/package-drawings/TO/TO264A03.pdf -TO-264-2 Horizontal RM 10.9mm -0 -2 -2 -Package_TO_SOT_THT -TO-264-2_Vertical -TO-264-2, Vertical, RM 10.9mm, see https://www.fairchildsemi.com/package-drawings/TO/TO264A03.pdf -TO-264-2 Vertical RM 10.9mm -0 -2 -2 -Package_TO_SOT_THT -TO-264-3_Horizontal_TabDown -TO-264-3, Horizontal, RM 5.45mm, see https://www.fairchildsemi.com/package-drawings/TO/TO264A03.pdf -TO-264-3 Horizontal RM 5.45mm -0 -3 -3 -Package_TO_SOT_THT -TO-264-3_Horizontal_TabUp -TO-264-3, Horizontal, RM 5.45mm, see https://www.fairchildsemi.com/package-drawings/TO/TO264A03.pdf -TO-264-3 Horizontal RM 5.45mm -0 -3 -3 -Package_TO_SOT_THT -TO-264-3_Vertical -TO-264-3, Vertical, RM 5.45mm, see https://www.fairchildsemi.com/package-drawings/TO/TO264A03.pdf -TO-264-3 Vertical RM 5.45mm -0 -3 -3 -Package_TO_SOT_THT -TO-264-5_Horizontal_TabDown -TO-264-5, Horizontal, RM 3.81mm, see https://www.onsemi.com/pub/Collateral/NJL3281D-D.PDF -TO-264-5 Horizontal RM 3.81mm -0 -5 -5 -Package_TO_SOT_THT -TO-264-5_Horizontal_TabUp -TO-264-5, Horizontal, RM 3.81mm, see https://www.onsemi.com/pub/Collateral/NJL3281D-D.PDF -TO-264-5 Horizontal RM 3.81mm -0 -5 -5 -Package_TO_SOT_THT -TO-264-5_Vertical -TO-264-5, Vertical, RM 3.81mm, see https://www.onsemi.com/pub/Collateral/NJL3281D-D.PDF -TO-264-5 Vertical RM 3.81mm -0 -5 -5 -Potentiometer_SMD -Potentiometer_ACP_CA6-VSMD_Vertical -Potentiometer, vertical, ACP CA6-VSMD, http://www.acptechnologies.com/wp-content/uploads/2017/06/01-ACP-CA6.pdf -Potentiometer vertical ACP CA6-VSMD -0 -3 -3 -Potentiometer_SMD -Potentiometer_ACP_CA6-VSMD_Vertical_Hole -Potentiometer, vertical, shaft hole, ACP CA6-VSMD, http://www.acptechnologies.com/wp-content/uploads/2017/06/01-ACP-CA6.pdf -Potentiometer vertical hole ACP CA6-VSMD -0 -3 -3 -Potentiometer_SMD -Potentiometer_ACP_CA9-VSMD_Vertical -Potentiometer, vertical, ACP CA9-VSMD, http://www.acptechnologies.com/wp-content/uploads/2017/05/02-ACP-CA9-CE9.pdf -Potentiometer vertical ACP CA9-VSMD -0 -3 -3 -Potentiometer_SMD -Potentiometer_ACP_CA9-VSMD_Vertical_Hole -Potentiometer, vertical, shaft hole, ACP CA9-VSMD, http://www.acptechnologies.com/wp-content/uploads/2017/05/02-ACP-CA9-CE9.pdf -Potentiometer vertical hole ACP CA9-VSMD -0 -3 -3 -Potentiometer_SMD -Potentiometer_ACP_CA14-VSMD_Vertical -Potentiometer, vertical, ACP CA14-VSMD, http://www.acptechnologies.com/wp-content/uploads/2017/10/03-ACP-CA14-CE14.pdf -Potentiometer vertical ACP CA14-VSMD -0 -3 -3 -Potentiometer_SMD -Potentiometer_ACP_CA14-VSMD_Vertical_Hole -Potentiometer, vertical, shaft hole, ACP CA14-VSMD, http://www.acptechnologies.com/wp-content/uploads/2017/10/03-ACP-CA14-CE14.pdf -Potentiometer vertical hole ACP CA14-VSMD -0 -3 -3 -Potentiometer_SMD -Potentiometer_Bourns_3214G_Horizontal -Potentiometer, horizontal, Bourns 3214G, https://www.bourns.com/docs/Product-Datasheets/3214.pdf -Potentiometer horizontal Bourns 3214G -0 -3 -3 -Potentiometer_SMD -Potentiometer_Bourns_3214J_Horizontal -Potentiometer, horizontal, Bourns 3214J, https://www.bourns.com/docs/Product-Datasheets/3214.pdf -Potentiometer horizontal Bourns 3214J -0 -3 -3 -Potentiometer_SMD -Potentiometer_Bourns_3214W_Vertical -Potentiometer, vertical, Bourns 3214W, https://www.bourns.com/docs/Product-Datasheets/3214.pdf -Potentiometer vertical Bourns 3214W -0 -3 -3 -Potentiometer_SMD -Potentiometer_Bourns_3214X_Vertical -Potentiometer, vertical, Bourns 3214X, https://www.bourns.com/docs/Product-Datasheets/3214.pdf -Potentiometer vertical Bourns 3214X -0 -3 -3 -Potentiometer_SMD -Potentiometer_Bourns_3224G_Horizontal -Potentiometer, horizontal, Bourns 3224G, https://www.bourns.com/docs/Product-Datasheets/3224.pdf -Potentiometer horizontal Bourns 3224G -0 -3 -3 -Potentiometer_SMD -Potentiometer_Bourns_3224J_Horizontal -Potentiometer, horizontal, Bourns 3224J, https://www.bourns.com/docs/Product-Datasheets/3224.pdf -Potentiometer horizontal Bourns 3224J -0 -3 -3 -Potentiometer_SMD -Potentiometer_Bourns_3224W_Vertical -Potentiometer, vertical, Bourns 3224W, https://www.bourns.com/docs/Product-Datasheets/3224.pdf -Potentiometer vertical Bourns 3224W -0 -3 -3 -Potentiometer_SMD -Potentiometer_Bourns_3224X_Vertical -Potentiometer, vertical, Bourns 3224X, https://www.bourns.com/docs/Product-Datasheets/3224.pdf -Potentiometer vertical Bourns 3224X -0 -3 -3 -Potentiometer_SMD -Potentiometer_Bourns_3269P_Horizontal -Potentiometer, horizontal, Bourns 3269P, https://www.bourns.com/docs/Product-Datasheets/3269.pdf -Potentiometer horizontal Bourns 3269P -0 -3 -3 -Potentiometer_SMD -Potentiometer_Bourns_3269W_Vertical -Potentiometer, vertical, Bourns 3269W, https://www.bourns.com/docs/Product-Datasheets/3269.pdf -Potentiometer vertical Bourns 3269W -0 -3 -3 -Potentiometer_SMD -Potentiometer_Bourns_3269X_Horizontal -Potentiometer, horizontal, Bourns 3269X, https://www.bourns.com/docs/Product-Datasheets/3269.pdf -Potentiometer horizontal Bourns 3269X -0 -3 -3 -Potentiometer_SMD -Potentiometer_Bourns_3314G_Vertical -Potentiometer, vertical, Bourns 3314G, http://www.bourns.com/docs/Product-Datasheets/3314.pdf -Potentiometer vertical Bourns 3314G -0 -3 -3 -Potentiometer_SMD -Potentiometer_Bourns_3314J_Vertical -Potentiometer, vertical, Bourns 3314J, http://www.bourns.com/docs/Product-Datasheets/3314.pdf -Potentiometer vertical Bourns 3314J -0 -3 -3 -Potentiometer_SMD -Potentiometer_Bourns_3314R-1_Vertical_Hole -Potentiometer, vertical, shaft hole, Bourns 3314R-1, http://www.bourns.com/docs/Product-Datasheets/3314.pdf -Potentiometer vertical hole Bourns 3314R-1 -0 -3 -3 -Potentiometer_SMD -Potentiometer_Bourns_3314R-GM5_Vertical -Potentiometer, vertical, Bourns 3314R-GM5, http://www.bourns.com/docs/Product-Datasheets/3314.pdf -Potentiometer vertical Bourns 3314R-GM5 -0 -3 -3 -Potentiometer_SMD -Potentiometer_Bourns_3314S_Horizontal -Potentiometer, horizontal, Bourns 3314S, http://www.bourns.com/docs/Product-Datasheets/3314.pdf -Potentiometer horizontal Bourns 3314S -0 -3 -3 -Potentiometer_SMD -Potentiometer_Bourns_PRS11S_Vertical -Potentiometer, vertical, Bourns PRS11S, http://www.bourns.com/docs/Product-Datasheets/PRS11S.pdf -Potentiometer vertical Bourns PRS11S -0 -5 -5 -Potentiometer_SMD -Potentiometer_Bourns_TC33X_Vertical -Potentiometer, Bourns, TC33X, Vertical, https://www.bourns.com/pdfs/TC33.pdf -Potentiometer Bourns TC33X Vertical -0 -3 -3 -Potentiometer_SMD -Potentiometer_Vishay_TS53YJ_Vertical -Potentiometer, vertical, Vishay TS53YJ, https://www.vishay.com/docs/51008/ts53.pdf -Potentiometer vertical Vishay TS53YJ -0 -3 -3 -Potentiometer_SMD -Potentiometer_Vishay_TS53YL_Vertical -Potentiometer, vertical, Vishay TS53YL, https://www.vishay.com/docs/51008/ts53.pdf -Potentiometer vertical Vishay TS53YL -0 -3 -3 -Potentiometer_THT -Potentiometer_ACP_CA6-H2,5_Horizontal -Potentiometer, horizontal, ACP CA6-H2,5, http://www.acptechnologies.com/wp-content/uploads/2017/06/01-ACP-CA6.pdf -Potentiometer horizontal ACP CA6-H2,5 -0 -3 -3 -Potentiometer_THT -Potentiometer_ACP_CA9-H2,5_Horizontal -Potentiometer, horizontal, ACP CA9-H2,5, http://www.acptechnologies.com/wp-content/uploads/2017/05/02-ACP-CA9-CE9.pdf -Potentiometer horizontal ACP CA9-H2,5 -0 -3 -3 -Potentiometer_THT -Potentiometer_ACP_CA9-H3,8_Horizontal -Potentiometer, horizontal, ACP CA9-H3,8, http://www.acptechnologies.com/wp-content/uploads/2017/05/02-ACP-CA9-CE9.pdf -Potentiometer horizontal ACP CA9-H3,8 -0 -3 -3 -Potentiometer_THT -Potentiometer_ACP_CA9-H5_Horizontal -Potentiometer, horizontal, ACP CA9-H5, http://www.acptechnologies.com/wp-content/uploads/2017/05/02-ACP-CA9-CE9.pdf -Potentiometer horizontal ACP CA9-H5 -0 -3 -3 -Potentiometer_THT -Potentiometer_ACP_CA9-V10_Vertical -Potentiometer, vertical, ACP CA9-V10, http://www.acptechnologies.com/wp-content/uploads/2017/05/02-ACP-CA9-CE9.pdf -Potentiometer vertical ACP CA9-V10 -0 -3 -3 -Potentiometer_THT -Potentiometer_ACP_CA9-V10_Vertical_Hole -Potentiometer, vertical, shaft hole, ACP CA9-V10, http://www.acptechnologies.com/wp-content/uploads/2017/05/02-ACP-CA9-CE9.pdf -Potentiometer vertical hole ACP CA9-V10 -0 -3 -3 -Potentiometer_THT -Potentiometer_ACP_CA14-H2,5_Horizontal -Potentiometer, horizontal, ACP CA14-H2,5, http://www.acptechnologies.com/wp-content/uploads/2017/10/03-ACP-CA14-CE14.pdf -Potentiometer horizontal ACP CA14-H2,5 -0 -3 -3 -Potentiometer_THT -Potentiometer_ACP_CA14-H4_Horizontal -Potentiometer, horizontal, ACP CA14-H4, http://www.acptechnologies.com/wp-content/uploads/2017/10/03-ACP-CA14-CE14.pdf -Potentiometer horizontal ACP CA14-H4 -0 -3 -3 -Potentiometer_THT -Potentiometer_ACP_CA14-H5_Horizontal -Potentiometer, horizontal, ACP CA14-H5, http://www.acptechnologies.com/wp-content/uploads/2017/10/03-ACP-CA14-CE14.pdf -Potentiometer horizontal ACP CA14-H5 -0 -3 -3 -Potentiometer_THT -Potentiometer_ACP_CA14V-15_Vertical -Potentiometer, vertical, ACP CA14V-15, http://www.acptechnologies.com/wp-content/uploads/2017/10/03-ACP-CA14-CE14.pdf -Potentiometer vertical ACP CA14V-15 -0 -3 -3 -Potentiometer_THT -Potentiometer_ACP_CA14V-15_Vertical_Hole -Potentiometer, vertical, shaft hole, ACP CA14V-15, http://www.acptechnologies.com/wp-content/uploads/2017/10/03-ACP-CA14-CE14.pdf -Potentiometer vertical hole ACP CA14V-15 -0 -3 -3 -Potentiometer_THT -Potentiometer_Alpha_RD901F-40-00D_Single_Vertical -Potentiometer, vertical, 9mm, single, http://www.taiwanalpha.com.tw/downloads?target=products&id=113 -potentiometer vertical 9mm single -0 -5 -3 -Potentiometer_THT -Potentiometer_Alpha_RD901F-40-00D_Single_Vertical_CircularHoles -Potentiometer, vertical, 9mm, single, http://www.taiwanalpha.com.tw/downloads?target=products&id=113 -potentiometer vertical 9mm single -0 -5 -3 -Potentiometer_THT -Potentiometer_Alpha_RD902F-40-00D_Dual_Vertical -Potentiometer, vertical, 9mm, dual, http://www.taiwanalpha.com.tw/downloads?target=products&id=113 -potentiometer vertical 9mm dual -0 -8 -6 -Potentiometer_THT -Potentiometer_Alpha_RD902F-40-00D_Dual_Vertical_CircularHoles -Potentiometer, vertical, 9mm, dual, http://www.taiwanalpha.com.tw/downloads?target=products&id=113 -potentiometer vertical 9mm dual -0 -8 -6 -Potentiometer_THT -Potentiometer_Alps_RK09K_Single_Horizontal -111009J 1110AK4 11100DN 1110AAR 1110077 1110A0J 110AMJ 1110B26 D1110C1A Potentiometer, horizontal, Alps RK09K Single, https://tech.alpsalpine.com/prod/e/pdf/potentiometer/rotarypotentiometers/rk09k/rk09k.pdf -Potentiometer horizontal Alps RK09K Single Snapin -0 -5 -4 -Potentiometer_THT -Potentiometer_Alps_RK09K_Single_Vertical -113004U 1130A6S 11300DR 1130A8G 1130081 1130A5R 1130AP5 1130AST D1130C3W D1130C1B D1130C3C D1130C2P Potentiometer, vertical, Alps RK09K Single, https://tech.alpsalpine.com/prod/e/pdf/potentiometer/rotarypotentiometers/rk09k/rk09k.pdf -Potentiometer vertical Alps RK09K RK09D Single Snapin -0 -5 -4 -Potentiometer_THT -Potentiometer_Alps_RK09L_Double_Horizontal -122002H 122002L 12B0A4S 12B0A1V Potentiometer, horizontal, Alps RK09L Double, https://tech.alpsalpine.com/prod/e/pdf/potentiometer/rotarypotentiometers/rk09l/rk09l.pdf -Potentiometer horizontal Alps RK09L Double -0 -8 -7 -Potentiometer_THT -Potentiometer_Alps_RK09L_Double_Vertical -1240015 1240019 12D0A1W 12D0A1T Potentiometer, vertical, Alps RK09L Double, https://tech.alpsalpine.com/prod/e/pdf/potentiometer/rotarypotentiometers/rk09l/rk09l.pdf -Potentiometer vertical Alps RK09L Double -0 -8 -7 -Potentiometer_THT -Potentiometer_Alps_RK09L_Single_Horizontal -1120A5F 1120036 1120A0Z 112003S Potentiometer, horizontal, Alps RK09L Single, https://tech.alpsalpine.com/prod/e/pdf/potentiometer/rotarypotentiometers/rk09l/rk09l.pdf -Potentiometer horizontal Alps RK09L Single -0 -5 -4 -Potentiometer_THT -Potentiometer_Alps_RK09L_Single_Vertical - 1140A5L 114001E 1140A2U 114001T Potentiometer, vertical, Alps RK09L Single, https://tech.alpsalpine.com/prod/e/pdf/potentiometer/rotarypotentiometers/rk09l/rk09l.pdf -Potentiometer vertical Alps RK09L Single -0 -5 -4 -Potentiometer_THT -Potentiometer_Alps_RK09Y11_Single_Horizontal -Potentiometer, horizontal, Long Life, Alps RK09Y11 Single, https://tech.alpsalpine.com/prod/e/pdf/potentiometer/rotarypotentiometers/rk09y11/rk09y11.pdf -Potentiometer horizontal Alps RK09Y11 Single -0 -3 -3 -Potentiometer_THT -Potentiometer_Alps_RK097_Dual_Horizontal -1210, Dual Pot, Horizontal, Alps RK097 Dual, https://tech.alpsalpine.com/prod/e/pdf/potentiometer/rotarypotentiometers/rk097/rk097.pdf -Potentiometer horizontal Alps RK097 Dual -0 -6 -6 -Potentiometer_THT -Potentiometer_Alps_RK097_Dual_Horizontal_Switch -1221-5R1211, Dual Pot, Horizontal, Switch, Alps RK097 Dual, https://tech.alpsalpine.com/prod/e/pdf/potentiometer/rotarypotentiometers/rk097/rk097.pdf -Potentiometer horizontal Alps RK097 Dual Switch -0 -8 -8 -Potentiometer_THT -Potentiometer_Alps_RK097_Single_Horizontal -1110, Single Pot, Horizontal, Alps RK097 Single, https://tech.alpsalpine.com/prod/e/pdf/potentiometer/rotarypotentiometers/rk097/rk097.pdf -Potentiometer horizontal Alps RK097 Single -0 -3 -3 -Potentiometer_THT -Potentiometer_Alps_RK097_Single_Horizontal_Switch -1111-5R1211, Single Pot, Horizontal, Switch, Alps RK097 Single, https://tech.alpsalpine.com/prod/e/pdf/potentiometer/rotarypotentiometers/rk097/rk097.pdf -Potentiometer horizontal Alps RK097 Single Switch -0 -5 -5 -Potentiometer_THT -Potentiometer_Alps_RK163_Dual_Horizontal -12101A2 1210AX9 12A0B85 12A0BKR Potentiometer, horizontal, Alps RK163 Dual, https://tech.alpsalpine.com/prod/e/pdf/potentiometer/rotarypotentiometers/rk16/rk16.pdf -Potentiometer horizontal Alps RK163 Dual -0 -6 -6 -Potentiometer_THT -Potentiometer_Alps_RK163_Single_Horizontal -1110U1Q 1110TNP 1110U2A 1110U0Q Potentiometer, horizontal, Alps RK163 Single, https://tech.alpsalpine.com/prod/e/pdf/potentiometer/rotarypotentiometers/rk16/rk16.pdf -Potentiometer horizontal Alps RK163 Single -0 -3 -3 -Potentiometer_THT -Potentiometer_Bourns_3005_Horizontal -Potentiometer, horizontal, Bourns 3005, http://www.bourns.com/docs/Product-Datasheets/3005.pdf -Potentiometer horizontal Bourns 3005 -0 -3 -3 -Potentiometer_THT -Potentiometer_Bourns_3006P_Horizontal -Potentiometer, horizontal, Bourns 3006P, https://www.bourns.com/docs/Product-Datasheets/3006.pdf -Potentiometer horizontal Bourns 3006P -0 -3 -3 -Potentiometer_THT -Potentiometer_Bourns_3006W_Horizontal -Potentiometer, horizontal, Bourns 3006W, https://www.bourns.com/docs/Product-Datasheets/3006.pdf -Potentiometer horizontal Bourns 3006W -0 -3 -3 -Potentiometer_THT -Potentiometer_Bourns_3006Y_Horizontal -Potentiometer, horizontal, Bourns 3006Y, https://www.bourns.com/docs/Product-Datasheets/3006.pdf -Potentiometer horizontal Bourns 3006Y -0 -3 -3 -Potentiometer_THT -Potentiometer_Bourns_3009P_Horizontal -Potentiometer, horizontal, Bourns 3009P, http://www.bourns.com/docs/Product-Datasheets/3009.pdf -Potentiometer horizontal Bourns 3009P -0 -3 -3 -Potentiometer_THT -Potentiometer_Bourns_3009Y_Horizontal -Potentiometer, horizontal, Bourns 3009Y, http://www.bourns.com/docs/Product-Datasheets/3009.pdf -Potentiometer horizontal Bourns 3009Y -0 -3 -3 -Potentiometer_THT -Potentiometer_Bourns_3266P_Horizontal -Potentiometer, horizontal, Bourns 3266P, https://www.bourns.com/docs/Product-Datasheets/3266.pdf -Potentiometer horizontal Bourns 3266P -0 -3 -3 -Potentiometer_THT -Potentiometer_Bourns_3266W_Vertical -Potentiometer, vertical, Bourns 3266W, https://www.bourns.com/docs/Product-Datasheets/3266.pdf -Potentiometer vertical Bourns 3266W -0 -3 -3 -Potentiometer_THT -Potentiometer_Bourns_3266X_Horizontal -Potentiometer, horizontal, Bourns 3266X, https://www.bourns.com/docs/Product-Datasheets/3266.pdf -Potentiometer horizontal Bourns 3266X -0 -3 -3 -Potentiometer_THT -Potentiometer_Bourns_3266Y_Vertical -Potentiometer, vertical, Bourns 3266Y, https://www.bourns.com/docs/Product-Datasheets/3266.pdf -Potentiometer vertical Bourns 3266Y -0 -3 -3 -Potentiometer_THT -Potentiometer_Bourns_3266Z_Horizontal -Potentiometer, horizontal, Bourns 3266Z, https://www.bourns.com/docs/Product-Datasheets/3266.pdf -Potentiometer horizontal Bourns 3266Z -0 -3 -3 -Potentiometer_THT -Potentiometer_Bourns_3296P_Horizontal -Potentiometer, horizontal, Bourns 3296P, https://www.bourns.com/pdfs/3296.pdf -Potentiometer horizontal Bourns 3296P -0 -3 -3 -Potentiometer_THT -Potentiometer_Bourns_3296W_Vertical -Potentiometer, vertical, Bourns 3296W, https://www.bourns.com/pdfs/3296.pdf -Potentiometer vertical Bourns 3296W -0 -3 -3 -Potentiometer_THT -Potentiometer_Bourns_3296X_Horizontal -Potentiometer, horizontal, Bourns 3296X, https://www.bourns.com/pdfs/3296.pdf -Potentiometer horizontal Bourns 3296X -0 -3 -3 -Potentiometer_THT -Potentiometer_Bourns_3296Y_Vertical -Potentiometer, vertical, Bourns 3296Y, https://www.bourns.com/pdfs/3296.pdf -Potentiometer vertical Bourns 3296Y -0 -3 -3 -Potentiometer_THT -Potentiometer_Bourns_3296Z_Horizontal -Potentiometer, horizontal, Bourns 3296Z, https://www.bourns.com/pdfs/3296.pdf -Potentiometer horizontal Bourns 3296Z -0 -3 -3 -Potentiometer_THT -Potentiometer_Bourns_3299P_Horizontal -Potentiometer, horizontal, Bourns 3299P, https://www.bourns.com/pdfs/3299.pdf -Potentiometer horizontal Bourns 3299P -0 -3 -3 -Potentiometer_THT -Potentiometer_Bourns_3299W_Vertical -Potentiometer, vertical, Bourns 3299W, https://www.bourns.com/pdfs/3299.pdf -Potentiometer vertical Bourns 3299W -0 -3 -3 -Potentiometer_THT -Potentiometer_Bourns_3299X_Horizontal -Potentiometer, horizontal, Bourns 3299X, https://www.bourns.com/pdfs/3299.pdf -Potentiometer horizontal Bourns 3299X -0 -3 -3 -Potentiometer_THT -Potentiometer_Bourns_3299Y_Vertical -Potentiometer, vertical, Bourns 3299Y, https://www.bourns.com/pdfs/3299.pdf -Potentiometer vertical Bourns 3299Y -0 -3 -3 -Potentiometer_THT -Potentiometer_Bourns_3299Z_Horizontal -Potentiometer, horizontal, Bourns 3299Z, https://www.bourns.com/pdfs/3299.pdf -Potentiometer horizontal Bourns 3299Z -0 -3 -3 -Potentiometer_THT -Potentiometer_Bourns_3339H_Vertical -Potentiometer, vertical, Bourns 3339H, http://www.bourns.com/docs/Product-Datasheets/3339.pdf -Potentiometer vertical Bourns 3339H -0 -3 -3 -Potentiometer_THT -Potentiometer_Bourns_3339P_Vertical -Potentiometer, vertical, Bourns 3339P, http://www.bourns.com/docs/Product-Datasheets/3339.pdf -Potentiometer vertical Bourns 3339P -0 -3 -3 -Potentiometer_THT -Potentiometer_Bourns_3339P_Vertical_HandSoldering -Potentiometer, vertical, Bourns 3339P, hand-soldering, http://www.bourns.com/docs/Product-Datasheets/3339.pdf -Potentiometer vertical Bourns 3339P hand-soldering -0 -3 -3 -Potentiometer_THT -Potentiometer_Bourns_3339S_Horizontal -Potentiometer, horizontal, Bourns 3339S, http://www.bourns.com/docs/Product-Datasheets/3339.pdf -Potentiometer horizontal Bourns 3339S -0 -3 -3 -Potentiometer_THT -Potentiometer_Bourns_3339W_Horizontal -Potentiometer, horizontal, Bourns 3339W, http://www.bourns.com/docs/Product-Datasheets/3339.pdf -Potentiometer horizontal Bourns 3339W -0 -3 -3 -Potentiometer_THT -Potentiometer_Bourns_3386C_Horizontal -Potentiometer, horizontal, Bourns 3386C, https://www.bourns.com/pdfs/3386.pdf -Potentiometer horizontal Bourns 3386C -0 -3 -3 -Potentiometer_THT -Potentiometer_Bourns_3386F_Vertical -Potentiometer, vertical, Bourns 3386F, https://www.bourns.com/pdfs/3386.pdf -Potentiometer vertical Bourns 3386F -0 -3 -3 -Potentiometer_THT -Potentiometer_Bourns_3386P_Vertical -Potentiometer, vertical, Bourns 3386P, https://www.bourns.com/pdfs/3386.pdf -Potentiometer vertical Bourns 3386P -0 -3 -3 -Potentiometer_THT -Potentiometer_Bourns_3386X_Horizontal -Potentiometer, horizontal, Bourns 3386X, https://www.bourns.com/pdfs/3386.pdf -Potentiometer horizontal Bourns 3386X -0 -3 -3 -Potentiometer_THT -Potentiometer_Bourns_PTA1543_Single_Slide -Bourns single-gang slide potentiometer, 15.0mm travel, https://www.bourns.com/docs/Product-Datasheets/pta.pdf -Bourns single-gang slide potentiometer 15.0mm -0 -7 -4 -Potentiometer_THT -Potentiometer_Bourns_PTA2043_Single_Slide -Bourns single-gang slide potentiometer, 20.0mm travel, https://www.bourns.com/docs/Product-Datasheets/pta.pdf -Bourns single-gang slide potentiometer 20.0mm -0 -7 -4 -Potentiometer_THT -Potentiometer_Bourns_PTA3043_Single_Slide -Bourns single-gang slide potentiometer, 30.0mm travel, https://www.bourns.com/docs/Product-Datasheets/pta.pdf -Bourns single-gang slide potentiometer 30.0mm -0 -7 -4 -Potentiometer_THT -Potentiometer_Bourns_PTA4543_Single_Slide -Bourns single-gang slide potentiometer, 45.0mm travel, https://www.bourns.com/docs/Product-Datasheets/pta.pdf -Bourns single-gang slide potentiometer 45.0mm -0 -7 -4 -Potentiometer_THT -Potentiometer_Bourns_PTA6043_Single_Slide -Bourns single-gang slide potentiometer, 60.0mm travel, https://www.bourns.com/docs/Product-Datasheets/pta.pdf -Bourns single-gang slide potentiometer 60.0mm -0 -7 -4 -Potentiometer_THT -Potentiometer_Bourns_PTV09A-1_Single_Vertical -Potentiometer, vertical, Bourns PTV09A-1 Single, http://www.bourns.com/docs/Product-Datasheets/ptv09.pdf -Potentiometer vertical Bourns PTV09A-1 Single -0 -3 -3 -Potentiometer_THT -Potentiometer_Bourns_PTV09A-2_Single_Horizontal -Potentiometer, horizontal, Bourns PTV09A-2 Single, http://www.bourns.com/docs/Product-Datasheets/ptv09.pdf -Potentiometer horizontal Bourns PTV09A-2 Single -0 -5 -3 -Potentiometer_THT -Potentiometer_Omeg_PC16BU_Horizontal -Potentiometer, horizontal, Omeg PC16BU, http://www.omeg.co.uk/pc6bubrc.htm -Potentiometer horizontal Omeg PC16BU -0 -3 -3 -Potentiometer_THT -Potentiometer_Omeg_PC16BU_Vertical -Potentiometer, vertical, Omeg PC16BU, http://www.omeg.co.uk/pc6bubrc.htm -Potentiometer vertical Omeg PC16BU -0 -3 -3 -Potentiometer_THT -Potentiometer_Piher_PC-16_Dual_Horizontal -Potentiometer, horizontal, Piher PC-16 Dual, http://www.piher-nacesa.com/pdf/20-PC16v03.pdf -Potentiometer horizontal Piher PC-16 Dual -0 -6 -6 -Potentiometer_THT -Potentiometer_Piher_PC-16_Single_Horizontal -Potentiometer, horizontal, Piher PC-16 Single, http://www.piher-nacesa.com/pdf/20-PC16v03.pdf -Potentiometer horizontal Piher PC-16 Single -0 -3 -3 -Potentiometer_THT -Potentiometer_Piher_PC-16_Single_Vertical -Potentiometer, vertical, Piher PC-16 Single, http://www.piher-nacesa.com/pdf/20-PC16v03.pdf -Potentiometer vertical Piher PC-16 Single -0 -3 -3 -Potentiometer_THT -Potentiometer_Piher_PC-16_Triple_Horizontal -Potentiometer, horizontal, Piher PC-16 Triple, http://www.piher-nacesa.com/pdf/20-PC16v03.pdf -Potentiometer horizontal Piher PC-16 Triple -0 -9 -9 -Potentiometer_THT -Potentiometer_Piher_PT-6-H_Horizontal -Potentiometer, horizontal, Piher PT-6-H, http://www.piher-nacesa.com/pdf/11-PT6v03.pdf -Potentiometer horizontal Piher PT-6-H -0 -3 -3 -Potentiometer_THT -Potentiometer_Piher_PT-6-V_Vertical -Potentiometer, vertical, Piher PT-6-V, http://www.piher-nacesa.com/pdf/11-PT6v03.pdf -Potentiometer vertical Piher PT-6-V -0 -3 -3 -Potentiometer_THT -Potentiometer_Piher_PT-6-V_Vertical_Hole -Potentiometer, vertical, shaft hole, Piher PT-6-V, http://www.piher-nacesa.com/pdf/11-PT6v03.pdf -Potentiometer vertical hole Piher PT-6-V -0 -3 -3 -Potentiometer_THT -Potentiometer_Piher_PT-10-H01_Horizontal -Potentiometer, horizontal, Piher PT-10-H01, http://www.piher-nacesa.com/pdf/12-PT10v03.pdf -Potentiometer horizontal Piher PT-10-H01 -0 -3 -3 -Potentiometer_THT -Potentiometer_Piher_PT-10-H05_Horizontal -Potentiometer, horizontal, Piher PT-10-H05, http://www.piher-nacesa.com/pdf/12-PT10v03.pdf -Potentiometer horizontal Piher PT-10-H05 -0 -3 -3 -Potentiometer_THT -Potentiometer_Piher_PT-10-V05_Vertical -Potentiometer, vertical, Piher PT-10-V05, http://www.piher-nacesa.com/pdf/12-PT10v03.pdf -Potentiometer vertical Piher PT-10-V05 -0 -3 -3 -Potentiometer_THT -Potentiometer_Piher_PT-10-V10_Vertical -Potentiometer, vertical, Piher PT-10-V10, http://www.piher-nacesa.com/pdf/12-PT10v03.pdf -Potentiometer vertical Piher PT-10-V10 -0 -3 -3 -Potentiometer_THT -Potentiometer_Piher_PT-10-V10_Vertical_Hole -Potentiometer, vertical, shaft hole, Piher PT-10-V10, http://www.piher-nacesa.com/pdf/12-PT10v03.pdf -Potentiometer vertical hole Piher PT-10-V10 -0 -3 -3 -Potentiometer_THT -Potentiometer_Piher_PT-15-H01_Horizontal -Potentiometer, horizontal, Piher PT-15-H01, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf -Potentiometer horizontal Piher PT-15-H01 -0 -3 -3 -Potentiometer_THT -Potentiometer_Piher_PT-15-H05_Horizontal -Potentiometer, horizontal, Piher PT-15-H05, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf -Potentiometer horizontal Piher PT-15-H05 -0 -3 -3 -Potentiometer_THT -Potentiometer_Piher_PT-15-H06_Horizontal -Potentiometer, horizontal, Piher PT-15-H06, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf -Potentiometer horizontal Piher PT-15-H06 -0 -3 -3 -Potentiometer_THT -Potentiometer_Piher_PT-15-H25_Horizontal -Potentiometer, horizontal, Piher PT-15-H25, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf -Potentiometer horizontal Piher PT-15-H25 -0 -3 -3 -Potentiometer_THT -Potentiometer_Piher_PT-15-V02_Vertical -Potentiometer, vertical, Piher PT-15-V02, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf -Potentiometer vertical Piher PT-15-V02 -0 -3 -3 -Potentiometer_THT -Potentiometer_Piher_PT-15-V02_Vertical_Hole -Potentiometer, vertical, shaft hole, Piher PT-15-V02, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf -Potentiometer vertical hole Piher PT-15-V02 -0 -3 -3 -Potentiometer_THT -Potentiometer_Piher_PT-15-V15_Vertical -Potentiometer, vertical, Piher PT-15-V15, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf -Potentiometer vertical Piher PT-15-V15 -0 -3 -3 -Potentiometer_THT -Potentiometer_Piher_PT-15-V15_Vertical_Hole -Potentiometer, vertical, shaft hole, Piher PT-15-V15, http://www.piher-nacesa.com/pdf/14-PT15v03.pdf -Potentiometer vertical hole Piher PT-15-V15 -0 -3 -3 -Potentiometer_THT -Potentiometer_Piher_T-16H_Double_Horizontal -Potentiometer, horizontal, Piher T-16H Double, http://www.piher-nacesa.com/pdf/22-T16v03.pdf -Potentiometer horizontal Piher T-16H Double -0 -6 -6 -Potentiometer_THT -Potentiometer_Piher_T-16H_Single_Horizontal -Potentiometer, horizontal, Piher T-16H Single, http://www.piher-nacesa.com/pdf/22-T16v03.pdf -Potentiometer horizontal Piher T-16H Single -0 -3 -3 -Potentiometer_THT -Potentiometer_Piher_T-16L_Single_Vertical_Hole -Potentiometer, vertical, shaft hole, Piher T-16L Single, http://www.piher-nacesa.com/pdf/22-T16v03.pdf -Potentiometer vertical hole Piher T-16L Single -0 -3 -3 -Potentiometer_THT -Potentiometer_Runtron_RM-063_Horizontal -Potentiometer, horizontal, Trimmer, RM-063 http://www.runtron.com/down/PDF%20Datasheet/Carbon%20Film%20Potentiometer/RM065%20RM063.pdf -Potentiometer Trimmer RM-063 -0 -3 -3 -Potentiometer_THT -Potentiometer_Runtron_RM-065_Vertical -Potentiometer, vertical, Trimmer, RM-065 https://components101.com/sites/default/files/component_datasheet/Preset%20Potentiometer%20%28Trimpot%29.pdf -Potentiometer Trimmer RM-065 -0 -3 -3 -Potentiometer_THT -Potentiometer_TT_P0915N -http://www.ttelectronics.com/sites/default/files/download-files/Datasheet_PanelPot_P09xSeries.pdf -potentiometer vertical TT P0915N single -0 -5 -3 -Potentiometer_THT -Potentiometer_Vishay_43_Horizontal -Potentiometer, horizontal, Vishay 43, http://www.vishay.com/docs/57026/43.pdf -Potentiometer horizontal Vishay 43 -0 -3 -3 -Potentiometer_THT -Potentiometer_Vishay_148-149_Dual_Horizontal -Potentiometer, horizontal, Vishay 148-149 Dual, http://www.vishay.com/docs/57040/148149.pdf -Potentiometer horizontal Vishay 148-149 Dual -0 -6 -6 -Potentiometer_THT -Potentiometer_Vishay_148-149_Single_Horizontal -Potentiometer, horizontal, Vishay 148-149 Single, http://www.vishay.com/docs/57040/148149.pdf -Potentiometer horizontal Vishay 148-149 Single -0 -3 -3 -Potentiometer_THT -Potentiometer_Vishay_148-149_Single_Vertical -Potentiometer, vertical, Vishay 148-149 Single, http://www.vishay.com/docs/57040/148149.pdf -Potentiometer vertical Vishay 148-149 Single -0 -3 -3 -Potentiometer_THT -Potentiometer_Vishay_148E-149E_Dual_Horizontal -Potentiometer, horizontal, Vishay 148E-149E Dual, http://www.vishay.com/docs/57040/148149.pdf -Potentiometer horizontal Vishay 148E-149E Dual -0 -10 -6 -Potentiometer_THT -Potentiometer_Vishay_148E-149E_Single_Horizontal -Potentiometer, horizontal, Vishay 148E-149E Single, http://www.vishay.com/docs/57040/148149.pdf -Potentiometer horizontal Vishay 148E-149E Single -0 -7 -3 -Potentiometer_THT -Potentiometer_Vishay_248BH-249BH_Single_Horizontal -Potentiometer, horizontal, Vishay 248BH-249BH Single, http://www.vishay.com/docs/57054/248249.pdf -Potentiometer horizontal Vishay 248BH-249BH Single -0 -3 -3 -Potentiometer_THT -Potentiometer_Vishay_248GJ-249GJ_Single_Horizontal -Potentiometer, horizontal, Vishay 248GJ-249GJ Single, http://www.vishay.com/docs/57054/248249.pdf -Potentiometer horizontal Vishay 248GJ-249GJ Single -0 -3 -3 -Potentiometer_THT -Potentiometer_Vishay_248GJ-249GJ_Single_Vertical -Potentiometer, vertical, Vishay 248GJ-249GJ Single, http://www.vishay.com/docs/57054/248249.pdf -Potentiometer vertical Vishay 248GJ-249GJ Single -0 -3 -3 -Potentiometer_THT -Potentiometer_Vishay_T7-YA_Single_Vertical -Potentiometer, vertical, Vishay T7-YA Single, http://www.vishay.com/docs/51015/t7.pdf -Potentiometer vertical Vishay T7-YA Single -0 -3 -3 -Potentiometer_THT -Potentiometer_Vishay_T73XW_Horizontal -Potentiometer, horizontal, Vishay T73XW, http://www.vishay.com/docs/51016/t73.pdf -Potentiometer horizontal Vishay T73XW -0 -3 -3 -Potentiometer_THT -Potentiometer_Vishay_T73XX_Horizontal -Potentiometer, horizontal, Vishay T73XX, http://www.vishay.com/docs/51016/t73.pdf -Potentiometer horizontal Vishay T73XX -0 -3 -3 -Potentiometer_THT -Potentiometer_Vishay_T73YP_Vertical -Potentiometer, vertical, Vishay T73YP, http://www.vishay.com/docs/51016/t73.pdf -Potentiometer vertical Vishay T73YP -0 -3 -3 -RF -Skyworks_SKY13575_639LF -http://www.skyworksinc.com/uploads/documents/SKY13575_639LF_203270D.pdf -Skyworks -0 -19 -15 -RF -Skyworks_SKY65404-31 -http://www.skyworksinc.com/uploads/documents/SKY65404_31_201512K.pdf -Skyworks -0 -7 -7 -RF_Antenna -Abracon_APAES868R8060C16-T -Abracon RHCP ceramic patch antenna 854-882Mhz, 5dBi -APAES patch antenna -0 -1 -1 -RF_Antenna -Abracon_PRO-OB-440 -Abracon OnBoard SMD antenna 2400-2500Mhz, https://abracon.com/datasheets/PRO-OB-440.pdf -2400 PRO-OB-440 Antenna -0 -4 -4 -RF_Antenna -Abracon_PRO-OB-471 -OnBoard 868/915/868+2400 MHz Antenna, https://abracon.com/datasheets/PRO-OB-471.pdf -Antenna ProAnt OnBoard 868Mhz 915Mhz 2400Mhz -0 -6 -6 -RF_Antenna -Astrocast_AST50127-00 -L-band patch antenna, https://docs.astrocast.com/dl/0534-DOC-M2M-ASTRO-Patch_Antenna-Datasheet.pdf -L-band antenna astrocast Patch Antenna -0 -1 -1 -RF_Antenna -Coilcraft_MA5532-AE_RFID -RFID Transponder Coil -antenna rfid coilcraft -0 -2 -2 -RF_Antenna -Johanson_2450AT18x100 -Johanson 2450AT43F0100 SMD antenna 2400-2500Mhz, -0.5dBi, https://www.johansontechnology.com/datasheets/2450AT18A100/2450AT18A100.pdf -antenna -0 -2 -2 -RF_Antenna -Johanson_2450AT43F0100 -Johanson 2450AT43F0100 SMD antenna 2400-2500Mhz, 1dBi, https://www.johansontechnology.com/datasheets/2450AT43F0100/2450AT43F0100.pdf -antenna -0 -2 -2 -RF_Antenna -Pulse_W3011 -Pulse RF Antenna, 4mm Clearance -antenna rf -0 -3 -2 -RF_Antenna -Texas_SWRA117D_2.4GHz_Left -http://www.ti.com/lit/an/swra117d/swra117d.pdf -PCB antenna -0 -2 -2 -RF_Antenna -Texas_SWRA117D_2.4GHz_Right -http://www.ti.com/lit/an/swra117d/swra117d.pdf -PCB antenna -0 -2 -2 -RF_Antenna -Texas_SWRA416_868MHz_915MHz -http://www.ti.com/lit/an/swra416/swra416.pdf -PCB antenna -0 -20 -1 -RF_Converter -Anaren_0805_2012Metric-6 -https://cdn.anaren.com/product-documents/Xinger/DirectionalCouplers/DC4759J5020AHF/DC4759J5020AHF_DataSheet(Rev_E).pdf -coupler rf -0 -6 -6 -RF_Converter -Balun_Johanson_1.6x0.8mm -6-pin 1.6x0.8 mm balun footprint -Johanson balun filter -0 -6 -6 -RF_Converter -Balun_Johanson_0896BM15A0001 -https://www.johansontechnology.com/datasheets/0896BM15A0001/0896BM15A0001.pdf -balun RF -0 -6 -6 -RF_Converter -Balun_Johanson_0900FM15K0039 -Johanson 0900FM15K0039 DFN, 10 Pin (https://www.johansontechnology.com/datasheets/0900FM15K0039/0900FM15K0039.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -Johanson DFN NoLead -0 -10 -10 -RF_Converter -Balun_Johanson_0900PC15J0013 -Johanson 0900PC15J0013 DFN, 10 Pin (https://www.johansontechnology.com/datasheets/0900PC15J0013/0900PC15J0013.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -Johanson DFN NoLead -0 -10 -10 -RF_Converter -Balun_Johanson_5400BL15B050E -https://www.johansontechnology.com/datasheets/5400BL15B050/5400BL15B050.pdf -balun RF -0 -6 -6 -RF_Converter -RF_Attenuator_Susumu_PAT1220 -http://www.susumu-usa.com/pdf/Foot_Print_38.pdf, https://www.susumu.co.jp/common/pdf/n_catalog_partition16_en.pdf -2mm 1.2mm -0 -3 -3 -RF_GPS -Linx_RXM-GPS -GPS Module, Linx (https://linxtechnologies.com/wp/wp-content/uploads/rxm-gps-rm.pdf) -gps linx -0 -22 -22 -RF_GPS -Quectel_L70-R -Quectel L70-R, (https://www.quectel.com/product/gps-only-l70-r) -GPS Quectel L70-R -0 -18 -18 -RF_GPS -Quectel_L80-R -Quectel L80-R GPS Module, Patch on Top, https://www.quectel.com/UploadImage/Downlad/Quectel_L80-R_Hardware_Design_V1.2.pdf -quectel GPS GNSS -0 -12 -12 -RF_GPS -SIM28ML -https://simcom.ee/documents/SIM28ML/SIM28ML_Hardware%20Design_V1.01.pdf -SIM28ML GPS -0 -18 -18 -RF_GPS -Sierra_XA11X0 -QFN-24, Pitch 1.20 no EP, https://source.sierrawireless.com/resources/airprime/hardware_specs_user_guides/airprime_xm1100_product_technical_specification -QFN-24 P1.20 -0 -24 -24 -RF_GPS -Sierra_XM11X0 -QFN-20, Pitch 1.20 no EP, https://source.sierrawireless.com/resources/airprime/hardware_specs_user_guides/airprime_xm1100_product_technical_specification -QFN-20 P1.20 -0 -20 -20 -RF_GPS -ublox_LEA -ublox LEA 6/7/8, (https://www.u-blox.com/sites/default/files/LEA-M8S-M8T-FW3_HardwareIntegrationManual_%28UBX-15030060%29.pdf) -GPS ublox LEA 6/7/8 -0 -28 -28 -RF_GPS -ublox_MAX -ublox MAX 6/7/8, (https://www.u-blox.com/sites/default/files/MAX-8-M8-FW3_HardwareIntegrationManual_%28UBX-15030059%29.pdf) -GPS ublox MAX 6/7/8 -0 -18 -18 -RF_GPS -ublox_NEO -ublox NEO 6/7/8, (https://www.u-blox.com/sites/default/files/NEO-8Q-NEO-M8-FW3_HardwareIntegrationManual_%28UBX-15029985%29_0.pdf) -GPS ublox NEO 6/7/8 -0 -24 -24 -RF_GPS -ublox_SAM-M8Q -GPS Module, 15.5x15.5x6.3mm, https://www.u-blox.com/sites/default/files/SAM-M8Q_HardwareIntegrationManual_%28UBX-16018358%29.pdf -ublox SAM-M8Q -0 -100 -20 -RF_GPS -ublox_SAM-M8Q_HandSolder -GPS Module, 15.5x15.5x6.3mm, https://www.u-blox.com/sites/default/files/SAM-M8Q_HardwareIntegrationManual_%28UBX-16018358%29.pdf -ublox SAM-M8Q -0 -20 -20 -RF_GPS -ublox_ZED -ublox ZED-F9, https://www.u-blox.com/sites/default/files/ZED-F9P_DataSheet_%28UBX-17051259%29.pdf -GPS GNSS ublox ZED -0 -102 -55 -RF_GSM -Quectel_BC66 -GSM NB-IoT module, 15.8x17.7x2mm, https://www.quectel.com/UploadImage/Downlad/Quectel_BC66_Hardware_Design_V1.1.pdf -GSM NB-IoT Module BC66 M66 -0 -116 -58 -RF_GSM -Quectel_BC95 -GSM NB-IoT module, 19.9x23.6x2.2mm, https://www.quectel.com/UploadImage/Downlad/Quectel_BC95_Hardware_Design_V1.3.pdf -GSM NB-IoT module BC95 -0 -188 -94 -RF_GSM -Quectel_BG96 -Quectel BG96 Cellular GSM 2G Module https://www.quectel.com/download/quectel_bg96_hardware_design_v1-4 -Quectel BG96 Cellular GSM 2G Module -0 -204 -102 -RF_GSM -Quectel_M95 -Quad-Band GSM/GPRS module, 19.9x23.6x2.65mm, https://www.quectel.com/UploadImage/Downlad/M95_Hardware_Design_V1.3.pdf -GSM Module M95 -0 -84 -42 -RF_GSM -SIMCom_SIM800C -Quad-Band GSM/GPRS module, 17.6x15.7x2.3mm, http://simcom.ee/documents/SIM800C/SIM800C_Hardware_Design_V1.05.pdf -GSM Module SIM800C -0 -84 -42 -RF_GSM -SIMCom_SIM900 -Quad-Band GSM/GPRS module, 24x24x3mm, http://simcom.ee/documents/SIM900/SIM900_Hardware%20Design_V2.05.pdf -GSM Module SIM900 -0 -68 -68 -RF_GSM -Telit_xL865 -Telit xL865 familly footprint, http://www.telit.com/fileadmin/user_upload/products/Downloads/3G/Telit_UL865_Hardware_User_Guide_r8.pdf -xL865 gsm umts -0 -52 -48 -RF_GSM -ublox_SARA-G3_LGA-96 -ublox Sara GSM/HSPA modem, https://www.u-blox.com/sites/default/files/SARA-G3-U2_SysIntegrManual_%28UBX-13000995%29.pdf, pag.162 -ublox SARA-G3 SARA-U2 GSM HSPA -0 -192 -96 -RF_Mini-Circuits -Mini-Circuits_BK377 -Footprint for Mini-Circuits case BK377 (https://ww2.minicircuits.com/case_style/BK276.pdf) -Mini-circuits BK377 -0 -14 -14 -RF_Mini-Circuits -Mini-Circuits_BK377_LandPatternPL-005 -Footprint for Mini-Circuits case BK377 (https://ww2.minicircuits.com/case_style/BK276.pdf) according to land-pattern PL-005, including GND vias (https://ww2.minicircuits.com/pcb/98-pl005.pdf) -Mini-circuits VCXO JTOS PL-005 -0 -50 -14 -RF_Mini-Circuits -Mini-Circuits_CD541_H2.08mm -https://ww2.minicircuits.com/case_style/CD541.pdf -RF Transformer -0 -6 -6 -RF_Mini-Circuits -Mini-Circuits_CD542_H2.84mm -https://ww2.minicircuits.com/case_style/CD542.pdf -RF Transformer -0 -6 -6 -RF_Mini-Circuits -Mini-Circuits_CD542_LandPatternPL-052 -Footprint for Mini-Circuits case CD542 (https://ww2.minicircuits.com/case_style/CD542.pdf) using land-pattern PL-052, including GND-vias (https://ww2.minicircuits.com/pcb/98-pl052.pdf) -MiniCircuits PL-052 CD542 -0 -17 -6 -RF_Mini-Circuits -Mini-Circuits_CD542_LandPatternPL-094 -Footprint for mini circuit case CD542, Land pattern PL-094, pads 5 and 2 connected via insulated copper area below body, vias included (case drawing: https://ww2.minicircuits.com/case_style/CD542.pdf, land pattern drawing: https://ww2.minicircuits.com/pcb/98-pl094.pdf) -mini-circuits CD542 pl-094 -0 -18 -6 -RF_Mini-Circuits -Mini-Circuits_CD636_H4.11mm -https://ww2.minicircuits.com/case_style/CD636.pdf -RF Transformer -0 -6 -6 -RF_Mini-Circuits -Mini-Circuits_CD636_LandPatternPL-035 -Footprint for Mini-Circuits case CD636 (https://ww2.minicircuits.com/case_style/CD636.pdf) following land pattern PL-035, including GND-vias (https://ww2.minicircuits.com/pcb/98-pl035.pdf) -mini-circuits pl-035 CD636 -0 -13 -6 -RF_Mini-Circuits -Mini-Circuits_CD637_H5.23mm -https://ww2.minicircuits.com/case_style/CD637.pdf -RF Transformer -0 -6 -6 -RF_Mini-Circuits -Mini-Circuits_CK605 -Footprint for Mini-Circuits case CK605 (https://ww2.minicircuits.com/case_style/CK605.pdf) -Mini-Circuits CK605 -0 -16 -16 -RF_Mini-Circuits -Mini-Circuits_CK605_LandPatternPL-012 -Footprint for Mini-Circuits case CK605 (https://ww2.minicircuits.com/case_style/CK605.pdf) following land pattern PL-012, including GND vias (https://ww2.minicircuits.com/pcb/98-pl012.pdf) -Mini-Circuits PL-012 -0 -53 -16 -RF_Mini-Circuits -Mini-Circuits_DB1627 -Mini-Circuits top-hat case DB1627 (https://ww2.minicircuits.com/case_style/DB1627.pdf) -Mini-Circuits DB1627 -0 -6 -6 -RF_Mini-Circuits -Mini-Circuits_GP731 -Footprint for Mini-Circuits case GP731 (https://ww2.minicircuits.com/case_style/GP731.pdf) -Mini-Circuits GP731 -0 -8 -8 -RF_Mini-Circuits -Mini-Circuits_GP731_LandPatternPL-176 -Footprint for Mini-Circuits case GP731 (https://ww2.minicircuits.com/case_style/GP731.pdf) following land pattern PL-176, including GND vias (https://www.minicircuits.com/pcb/98-pl176.pdf) -mini-circuits PL-176 -0 -21 -8 -RF_Mini-Circuits -Mini-Circuits_GP1212 -Footprint for Mini-Circuits case GP1212 (https://ww2.minicircuits.com/case_style/GP731.pdf) -mini-circuits GP1212 -0 -8 -8 -RF_Mini-Circuits -Mini-Circuits_GP1212_LandPatternPL-176 -Footprint for Mini-Circuits case GP1212 (https://ww2.minicircuits.com/case_style/GP731.pdf) following land pattern PL-176, including GND vias (https://www.minicircuits.com/pcb/98-pl176.pdf) -mini-circuits PL-176 -0 -21 -8 -RF_Mini-Circuits -Mini-Circuits_HF1139 -Footprint for Mini-Circuits case HF1139 (https://ww2.minicircuits.com/case_style/HF1139.pdf) -Mini-Circuits HF1139 -0 -8 -8 -RF_Mini-Circuits -Mini-Circuits_HF1139_LandPatternPL-230 -Footprint for Mini-Circuits case HF1139 (https://ww2.minicircuits.com/case_style/HF1139.pdf) following land pattern PL-230, including GND vias (https://ww2.minicircuits.com/pcb/98-pl230.pdf) -Mini-Circuits PL-230 -0 -37 -8 -RF_Mini-Circuits -Mini-Circuits_HQ1157 -Footprint for Mini-Circuits case HQ1157 (https://www.minicircuits.com/case_style/HQ1157.pdf) -Mini-Circuits HQ1157 -0 -14 -14 -RF_Mini-Circuits -Mini-Circuits_HZ1198 -Footprint for Mini-Circuits case HZ1198 (https://ww2.minicircuits.com/case_style/HZ1198.pdf) -Mini-Circuits HZ1198 -0 -6 -6 -RF_Mini-Circuits -Mini-Circuits_HZ1198_LandPatternPL-247 -Footprint for Mini-Circuits cas HZ1198 (https://ww2.minicircuits.com/case_style/HZ1198.pdf) following land pattern PL-247, including GND-vias (https://www.minicircuits.com/pcb/98-pl247.pdf) -Mini-Circuits PL-247 HZ1198 -0 -40 -6 -RF_Mini-Circuits -Mini-Circuits_MMM168 -Footprint for Mini-Circuits case MMM168 (https://ww2.minicircuits.com/case_style/MMM168.pdf) -Mini-Circuits MMM168 -0 -4 -4 -RF_Mini-Circuits -Mini-Circuits_MMM168_LandPatternPL-225 -Footprint for Mini-Circuits case MMM168, Land pattern PL-225, vias included, (case drawing: https://ww2.minicircuits.com/case_style/MMM168.pdf, land pattern drawing: https://ww2.minicircuits.com/pcb/98-pl225.pdf) -pl-225 -0 -10 -4 -RF_Mini-Circuits -Mini-Circuits_QQQ130_ClockwisePinNumbering -Footprint for Mini-Circuits case QQQ130 (https://ww2.minicircuits.com/case_style/QQQ130.pdf) -Mini-Circuits QQQ130 -0 -6 -6 -RF_Mini-Circuits -Mini-Circuits_QQQ130_LandPattern_PL-236_ClockwisePinNumbering -Footprint for Mini-Circuits case QQQ130 (https://ww2.minicircuits.com/case_style/QQQ130.pdf) following land pattern PL-236, including GND vias (https://ww2.minicircuits.com/pcb/98-pl236.pdf) -Mini-Circuits PL-236 -0 -14 -6 -RF_Mini-Circuits -Mini-Circuits_TT1224_ClockwisePinNumbering -Footprint for Mini-Circuits case TT1224 (https://ww2.minicircuits.com/case_style/TT1224.pdf) following land-pattern PL-258, including GND-vias (https://www.minicircuits.com/pcb/98-pl258.pdf) -Mini-Circuits TT1224 -0 -6 -6 -RF_Mini-Circuits -Mini-Circuits_TT1224_LandPatternPL-258_ClockwisePinNumbering -Footprint for Mini-Circuits case TT1224 (https://ww2.minicircuits.com/case_style/TT1224.pdf) following land-pattern PL-258, including GND-vias (https://www.minicircuits.com/pcb/98-pl258.pdf) -PL-258 Mini-Circuits -0 -26 -6 -RF_Mini-Circuits -Mini-Circuits_TTT167 -Footprint for Mini-Circuits case TTT167 (https://ww2.minicircuits.com/case_style/TTT167.pdf) -Mini-Circuits TTT167 -0 -6 -6 -RF_Mini-Circuits -Mini-Circuits_TTT167_LandPatternPL-079 -Footprint for Mini-Circuits case TTT167 (Mini-Circuits_TTT167_LandPatternPL-079) following land pattern PL-079, including GND vias (https://ww2.minicircuits.com/pcb/98-pl079.pdf) -Mini-Circuits PL-079 -0 -36 -6 -RF_Mini-Circuits -Mini-Circuits_YY161 -Footprint for Mini-Circuits case YY161 (https://ww2.minicircuits.com/case_style/YY161.pdf) -Mini-Circuits YY161 -0 -8 -8 -RF_Mini-Circuits -Mini-Circuits_YY161_LandPatternPL-049 -Footprint for Mini-Circuits case YY161 (https://ww2.minicircuits.com/case_style/YY161.pdf) using land-pattern PL-049, including GND-connections and vias (https://ww2.minicircuits.com/pcb/98-pl049.pdf) -mini-circuits pl-049 -0 -36 -8 -RF_Module -Ai-Thinker-Ra-01-LoRa -Ai Thinker Ra-01 LoRa -LoRa Ra-01 -0 -16 -16 -RF_Module -Astrocast_AST50147-00 -L-band satellite communication module, https://docs.astrocast.com/dl/0532-DOC-M2M-ASTRO-Astronode_S-Datasheet.pdf -RF module Astrocast radio Astronode -0 -38 -38 -RF_Module -Atmel_ATSAMR21G18-MR210UA_NoRFPads -http://ww1.microchip.com/downloads/en/devicedoc/atmel-42475-atsamr21g18-mr210ua_datasheet.pdf -module wireless zigbee 802.15.4 flash crypto ATSAMR21G18 AT45DB041E TECC508A U.Fi -0 -42 -42 -RF_Module -BLE112-A -Class 4 Bluetooth Module with on-board antenna -Bluetooth Module -0 -30 -30 -RF_Module -BM78SPPS5xC2 -Bluetooth Dual-mode module with integral chip antenna (http://ww1.microchip.com/downloads/en/DeviceDoc/60001380C.pdf) -Bluetooth BR/EDR BLE -0 -33 -33 -RF_Module -CMWX1ZZABZ -https://wireless.murata.com/RFM/data/type_abz.pdf -iot lora sigfox -0 -57 -57 -RF_Module -CYBLE-21Pin-10x10mm -Cypress EZ-BLE PRoC Module (Bluetooth Smart) 21 Pin Module -Cypress BT Bluetooth -0 -21 -21 -RF_Module -DWM1000 -IEEE802.15.4-2011 UWB -UWB Module -0 -24 -24 -RF_Module -DecaWave_DWM1001 -https://www.decawave.com/sites/default/files/dwm1001_datasheet.pdf -UWB module -0 -34 -34 -RF_Module -Digi_XBee_SMT -http://www.digi.com/resources/documentation/digidocs/pdfs/90002126.pdf http://ftp1.digi.com/support/documentation/90001020_F.pdf -Digi XBee SMT RF -0 -37 -37 -RF_Module -E18-MS1-PCB -http://www.cdebyte.com/en/downpdf.aspx?id=122 -Zigbee -0 -24 -24 -RF_Module -E73-2G4M04S -http://www.cdebyte.com/en/downpdf.aspx?id=243 -BLE BLE5 nRF52832 -0 -44 -44 -RF_Module -ESP-07 -Wi-Fi Module, http://wiki.ai-thinker.com/_media/esp8266/docs/a007ps01a2_esp-07_product_specification_v1.2.pdf -Wi-Fi Module -0 -16 -16 -RF_Module -ESP-12E -Wi-Fi Module, http://wiki.ai-thinker.com/_media/esp8266/docs/aithinker_esp_12f_datasheet_en.pdf -Wi-Fi Module -0 -22 -22 -RF_Module -ESP-WROOM-02 -https://www.espressif.com/sites/default/files/documentation/0c-esp-wroom-02_datasheet_en.pdf -ESP WROOM-02 espressif esp8266ex -0 -19 -19 -RF_Module -ESP32-S2-MINI-1 -2.4 GHz Wi-Fi and Bluetooth combo chip, external antenna, https://www.espressif.com/sites/default/files/documentation/esp32-s3-mini-1_mini-1u_datasheet_en.pdf -2.4 GHz Wi-Fi Bluetooth external antenna espressif 20*15.4mm -0 -73 -65 -RF_Module -ESP32-S2-MINI-1U -2.4 GHz Wi-Fi and Bluetooth combo chip, external antenna, https://www.espressif.com/sites/default/files/documentation/esp32-s3-mini-1_mini-1u_datasheet_en.pdf -2.4 GHz Wi-Fi Bluetooth external antenna espressif 15.4*15.4mm -0 -73 -65 -RF_Module -ESP32-S2-WROVER -ESP32-S2-WROVER(-I) 2.4 GHz Wi-Fi https://www.espressif.com/sites/default/files/documentation/esp32-s2-wroom_esp32-s2-wroom-i_datasheet_en.pdf -ESP32-S2 ESP32 WIFI -0 -43 -43 -RF_Module -ESP32-S3-WROOM-1 -2.4 GHz Wi-Fi and Bluetooth module https://www.espressif.com/sites/default/files/documentation/esp32-s3-wroom-1_wroom-1u_datasheet_en.pdf -2.4 GHz Wi-Fi and Bluetooth module -0 -62 -41 -RF_Module -ESP32-S3-WROOM-1U -2.4 GHz Wi-Fi and Bluetooth module https://www.espressif.com/sites/default/files/documentation/esp32-s3-wroom-1_wroom-1u_datasheet_en.pdf -2.4 GHz Wi-Fi and Bluetooth module -0 -62 -41 -RF_Module -ESP32-WROOM-32 -Single 2.4 GHz Wi-Fi and Bluetooth combo chip https://www.espressif.com/sites/default/files/documentation/esp32-wroom-32_datasheet_en.pdf -Single 2.4 GHz Wi-Fi and Bluetooth combo chip -0 -60 -39 -RF_Module -ESP32-WROOM-32D -2.4 GHz Wi-Fi and Bluetooth module, https://www.espressif.com/sites/default/files/documentation/esp32-wroom-32d_esp32-wroom-32u_datasheet_en.pdf -2.4 GHz Wi-Fi and Bluetooth module ESP32-D0WD Espressif ESP32-WROOM-32E -0 -60 -39 -RF_Module -ESP32-WROOM-32U -Single 2.4 GHz Wi-Fi and Bluetooth combo chip with U.FL connector, https://www.espressif.com/sites/default/files/documentation/esp32-wroom-32d_esp32-wroom-32u_datasheet_en.pdf -Single 2.4 GHz Wi-Fi and Bluetooth combo chip -0 -60 -39 -RF_Module -ESP32-WROOM-32UE -2.4 GHz Wi-Fi and Bluetooth module, https://www.espressif.com/sites/default/files/documentation/esp32-wroom-32e_esp32-wroom-32ue_datasheet_en.pdf -2.4 GHz Wi-Fi and Bluetooth module -0 -60 -39 -RF_Module -Garmin_M8-35_9.8x14.0mm_Layout6x6_P1.5mm -D52M ANT SoC Module https://www.thisisant.com/assets/resources/D00001687_D52_Module_Datasheet.v.2.3_(Garmin).pdf -RF SoC Radio ANT Bluetooth BLE D52 nRF52 Garmin Canada Dynastream Nordic -0 -35 -35 -RF_Module -HOPERF_RFM9XW_SMD -Low Power Long Range Transceiver Module SMD-16 (https://www.hoperf.com/data/upload/portal/20181127/5bfcbea20e9ef.pdf) -LoRa Low Power Long Range Transceiver Module -0 -16 -16 -RF_Module -HOPERF_RFM9XW_THT -Low Power Long Range Transceiver Module THT-16 (https://www.hoperf.com/data/upload/portal/20181127/5bfcbea20e9ef.pdf) -Low Power Long Range Transceiver Module LoRa -0 -16 -16 -RF_Module -HOPERF_RFM69HW -Radio, RF, Module, http://www.hoperf.com/upload/rf/RFM69HW-V1.3.pdf -Radio RF Module -0 -16 -16 -RF_Module -IQRF_TRx2DA_KON-SIM-01 -8 pin SIM connector for IQRF TR-x2DA(T) modules, http://iqrf.org/weben/downloads.php?id=104 -IQRF_KON-SIM-01 IQRF_TRx2DA -0 -10 -8 -RF_Module -IQRF_TRx2D_KON-SIM-01 -8 pin SIM connector for IQRF TR-x2D(C)(T) modules, http://iqrf.org/weben/downloads.php?id=104 -IQRF_KON-SIM-01 IQRF_TRx2D IQRF_TRx2DC -0 -10 -8 -RF_Module -Laird_BL652 -Bluetooth v4.2 + NFC module -Bluetooth BLE NFC -0 -39 -39 -RF_Module -MOD-nRF8001 -BLE module, https://www.olimex.com/Products/Modules/RF/MOD-nRF8001/ -BLE module -0 -11 -11 -RF_Module -Microchip_RN4871 -Microchip RN4871 footprint -RN4871 BLE -0 -16 -16 -RF_Module -Modtronix_inAir9 -Modtronix Wireless SX1276 LoRa Module (http://modtronix.com/img/prod/imod/inair9/inair_dimensions.gif) -Modtronix LoRa inAir inAir9 SX1276 RF 915MHz 868MHz Wireless -0 -14 -14 -RF_Module -MonoWireless_TWE-L-WX -https://www.mono-wireless.com/jp/products/TWE-LITE/MW-PDS-TWELITE-JP.pdf -TWE-L-WX -0 -32 -32 -RF_Module -NINA-B111 -NINA-B111 LGA module 42 Pin https://content.u-blox.com/sites/default/files/NINA-B1_DataSheet_UBX-15019243.pdf#page=30 -NINA ublox u-blox b111 bluetooth nrf52840 module -0 -42 -42 -RF_Module -Particle_P1 -https://docs.particle.io/datasheets/p1-datasheet/ -Particle P1 -0 -75 -75 -RF_Module -RAK811 -RAK811 LPWAN Module https://downloads.rakwireless.com/LoRa/RAK811/Hardware_Specification/RAK811_LoRa_Module_Datasheet_V1.4.pdf -LoRa LoRaWAN RAK811 -0 -34 -34 -RF_Module -RAK4200 -RAK4200 LPWAN Module https://downloads.rakwireless.com/LoRa/RAK4200/Hardware-Specification/RAK4200_Module_Specifications_V1.4.pdf -LoRa LoRaWAN RAK4200 -0 -20 -20 -RF_Module -RFDigital_RFD77101 -RFDigital RFD77101 Simblee -RFDigital RFD77101 Simblee -0 -45 -45 -RF_Module -RN42 -Class 2 Bluetooth Module with on-board antenna -Bluetooth Module -0 -36 -33 -RF_Module -RN42N -Class 2 Bluetooth Module without antenna -Bluetooth Module -0 -39 -36 -RF_Module -RN2483 -Low-Power Long Range LoRa Transceiver Module -rf module lora lorawan -0 -47 -47 -RF_Module -Raytac_MDBT50Q -Multiprotocol radio SoC module https://www.raytac.com/download/index.php?index_id=43 -wireless 2.4 GHz Bluetooth ble zigbee 802.15.4 thread nordic raytac nrf52840 nrf52833 -0 -61 -61 -RF_Module -ST_SPBTLE -Bluetooth Low Energy Module -ble module st bluetooth -0 -11 -11 -RF_Module -TD1205 -https://github.com/Telecom-Design/Documentation_TD_RF_Module/blob/master/TD1205%20Datasheet.pdf -SIGFOX Module -0 -9 -9 -RF_Module -TD1208 -https://github.com/Telecom-Design/Documentation_TD_RF_Module/blob/master/TD1208%20Datasheet.pdf -SIGFOX Module -0 -25 -25 -RF_Module -Taiyo-Yuden_EYSGJNZWY -Taiyo Yuden NRF51822 Module Bluetooth https://www.yuden.co.jp/wireless_module/document/datareport2/en/TY_BLE_EYSGJNZ_DataReport_V1_9_20180530E.pdf -Taiyo Yuden NRF51822 Module Bluetooth -0 -30 -28 -RF_Module -ZETA-433-SO_SMD -RF transceiver SMD style https://www.rfsolutions.co.uk/downloads/1456219226DS-ZETA.pdf -RF transceiver SMD style -0 -12 -12 -RF_Module -ZETA-433-SO_THT -RF transceiver THT style https://www.rfsolutions.co.uk/downloads/1456219226DS-ZETA.pdf -RF transceiver SMD style -0 -12 -12 -RF_Module -nRF24L01_Breakout -nRF24L01 breakout board -nRF24L01 adapter breakout -0 -8 -8 -RF_Shielding -Laird_Technologies_97-2002_25.40x25.40mm -Laird Technologies 97-2002 EZ PEEL Shielding Cabinet One Piece SMD 25.40x25.40mm (https://assets.lairdtech.com/home/brandworld/files/Board%20Level%20Shields%20Catalog%20Download.pdf) -Shielding Cabinet -0 -8 -1 -RF_Shielding -Laird_Technologies_97-2003_12.70x13.37mm -Laird Technologies 97-2003 EZ PEEL Shielding Cabinet One Piece SMD 12.70x13.37mm (https://assets.lairdtech.com/home/brandworld/files/Board%20Level%20Shields%20Catalog%20Download.pdf) -Shielding Cabinet -0 -8 -1 -RF_Shielding -Laird_Technologies_BMI-S-101_13.66x12.70mm -Laird Technologies BMI-S-101 Shielding Cabinet One Piece SMD 13.66x12.70mm (https://assets.lairdtech.com/home/brandworld/files/Board%20Level%20Shields%20Catalog%20Download.pdf) -Shielding Cabinet -0 -16 -1 -RF_Shielding -Laird_Technologies_BMI-S-102_16.50x16.50mm -Laird Technologies BMI-S-102 Shielding Cabinet One Piece SMD 16.50x16.50mm (https://assets.lairdtech.com/home/brandworld/files/Board%20Level%20Shields%20Catalog%20Download.pdf) -Shielding Cabinet -0 -16 -1 -RF_Shielding -Laird_Technologies_BMI-S-103_26.21x26.21mm -Laird Technologies BMI-S-103 Shielding Cabinet One Piece SMD 26.21x26.21mm (https://assets.lairdtech.com/home/brandworld/files/Board%20Level%20Shields%20Catalog%20Download.pdf) -Shielding Cabinet -0 -24 -1 -RF_Shielding -Laird_Technologies_BMI-S-104_32.00x32.00mm -Laird Technologies BMI-S-104 Shielding Cabinet One Piece SMD 32.00x32.00mm (https://assets.lairdtech.com/home/brandworld/files/Board%20Level%20Shields%20Catalog%20Download.pdf) -Shielding Cabinet -0 -28 -1 -RF_Shielding -Laird_Technologies_BMI-S-105_38.10x25.40mm -Laird Technologies BMI-S-105 Shielding Cabinet One Piece SMD 38.10x25.40mm (https://assets.lairdtech.com/home/brandworld/files/Board%20Level%20Shields%20Catalog%20Download.pdf) -Shielding Cabinet -0 -28 -1 -RF_Shielding -Laird_Technologies_BMI-S-106_36.83x33.68mm -Laird Technologies BMI-S-106 Shielding Cabinet One Piece SMD 36.83x33.68mm (https://assets.lairdtech.com/home/brandworld/files/Board%20Level%20Shields%20Catalog%20Download.pdf) -Shielding Cabinet -0 -28 -1 -RF_Shielding -Laird_Technologies_BMI-S-107_44.37x44.37mm -Laird Technologies BMI-S-107 Shielding Cabinet One Piece SMD 44.37x44.37mm (https://assets.lairdtech.com/home/brandworld/files/Board%20Level%20Shields%20Catalog%20Download.pdf) -Shielding Cabinet -0 -36 -1 -RF_Shielding -Laird_Technologies_BMI-S-201-F_13.66x12.70mm -Laird Technologies BMI-S-201-F Shielding Cabinet Two Piece SMD 13.66x12.70mm (https://assets.lairdtech.com/home/brandworld/files/Board%20Level%20Shields%20Catalog%20Download.pdf) -Shielding Cabinet -0 -16 -1 -RF_Shielding -Laird_Technologies_BMI-S-202-F_16.50x16.50mm -Laird Technologies BMI-S-202-F Shielding Cabinet Two Piece SMD 16.50x16.50mm (https://assets.lairdtech.com/home/brandworld/files/Board%20Level%20Shields%20Catalog%20Download.pdf) -Shielding Cabinet -0 -16 -1 -RF_Shielding -Laird_Technologies_BMI-S-203-F_26.21x26.21mm -Laird Technologies BMI-S-203-F Shielding Cabinet Two Piece SMD 26.21x26.21mm (https://assets.lairdtech.com/home/brandworld/files/Board%20Level%20Shields%20Catalog%20Download.pdf) -Shielding Cabinet -0 -24 -1 -RF_Shielding -Laird_Technologies_BMI-S-204-F_32.00x32.00mm -Laird Technologies BMI-S-204-F Shielding Cabinet Two Piece SMD 32.00x32.00mm (https://assets.lairdtech.com/home/brandworld/files/Board%20Level%20Shields%20Catalog%20Download.pdf) -Shielding Cabinet -0 -28 -1 -RF_Shielding -Laird_Technologies_BMI-S-205-F_38.10x25.40mm -Laird Technologies BMI-S-205-F Shielding Cabinet Two Piece SMD 38.10x25.40mm (https://assets.lairdtech.com/home/brandworld/files/Board%20Level%20Shields%20Catalog%20Download.pdf) -Shielding Cabinet -0 -28 -1 -RF_Shielding -Laird_Technologies_BMI-S-206-F_36.83x33.68mm -Laird Technologies BMI-S-206-F Shielding Cabinet Two Piece SMD 36.83x33.68mm (https://assets.lairdtech.com/home/brandworld/files/Board%20Level%20Shields%20Catalog%20Download.pdf) -Shielding Cabinet -0 -28 -1 -RF_Shielding -Laird_Technologies_BMI-S-207-F_44.37x44.37mm -Laird Technologies BMI-S-207-F Shielding Cabinet Two Piece SMD 44.37x44.37mm (https://assets.lairdtech.com/home/brandworld/files/Board%20Level%20Shields%20Catalog%20Download.pdf) -Shielding Cabinet -0 -36 -1 -RF_Shielding -Laird_Technologies_BMI-S-208-F_39.60x39.60mm -Laird Technologies BMI-S-208-F Shielding Cabinet Two Piece SMD 39.60x39.60mm (https://assets.lairdtech.com/home/brandworld/files/Board%20Level%20Shields%20Catalog%20Download.pdf) -Shielding Cabinet -0 -32 -1 -RF_Shielding -Laird_Technologies_BMI-S-209-F_29.36x18.50mm -Laird Technologies BMI-S-209-F Shielding Cabinet Two Piece SMD 29.36x18.50mm (https://assets.lairdtech.com/home/brandworld/files/Board%20Level%20Shields%20Catalog%20Download.pdf) -Shielding Cabinet -0 -20 -1 -RF_Shielding -Laird_Technologies_BMI-S-210-F_44.00x30.50mm -Laird Technologies BMI-S-210-F Shielding Cabinet Two Piece SMD 44.00x30.50mm (https://assets.lairdtech.com/home/brandworld/files/Board%20Level%20Shields%20Catalog%20Download.pdf) -Shielding Cabinet -0 -32 -1 -RF_Shielding -Laird_Technologies_BMI-S-230-F_50.8x38.1mm -Laird Technologies BMI-S-230-F Shielding Cabinet Two Piece SMD 50.8x38.1mm -Shielding Cabinet -0 -36 -1 -RF_Shielding -Wuerth_36103205_20x20mm -WE-SHC Shielding Cabinet SMD 20x20mm -Shielding Cabinet -0 -20 -1 -RF_Shielding -Wuerth_36103255_25x25mm -WE-SHC Shielding Cabinet SMD 25x25mm -Shielding Cabinet -0 -24 -1 -RF_Shielding -Wuerth_36103305_30x30mm -WE-SHC Shielding Cabinet SMD 30x30mm -Shielding Cabinet -0 -28 -1 -RF_Shielding -Wuerth_36103505_50x50mm -WE-SHC Shielding Cabinet SMD 50x50mm -Shielding Cabinet -0 -44 -1 -RF_Shielding -Wuerth_36103605_60x60mm -WE-SHC Shielding Cabinet SMD 60x60mm -Shielding Cabinet -0 -52 -1 -RF_Shielding -Wuerth_36503205_20x20mm -WE-SHC Shielding Cabinet THT 21x21mm -Shielding Cabinet -0 -16 -1 -RF_Shielding -Wuerth_36503255_25x25mm -WE-SHC Shielding Cabinet THT 26x26mm -Shielding Cabinet -0 -20 -1 -RF_Shielding -Wuerth_36503305_30x30mm -WE-SHC Shielding Cabinet THT 31x31mm -Shielding Cabinet -0 -24 -1 -RF_Shielding -Wuerth_36503505_50x50mm -WE-SHC Shielding Cabinet THT 51x51mm -Shielding Cabinet -0 -40 -1 -RF_Shielding -Wuerth_36503605_60x60mm -WE-SHC Shielding Cabinet THT 61x61mm -Shielding Cabinet -0 -48 -1 -RF_WiFi -USR-C322 -https://www.usriot.com/download/WIFI/USR-C322-Hardware-Manual_V1.2.01.pdf -WiFi IEEE802.11 b/g/n -0 -44 -44 -Relay_SMD -Relay_2P2T_10x6mm_TE_IMxxG -Signal Relay, 10x6mm, 2 Form C, Gull Wings, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Data+Sheet%7F108-98001%7FZ.1%7Fpdf%7FEnglish%7FENG_DS_108-98001_Z.1.pdf -TE IM-Series Relay DPDT Form C -0 -8 -8 -Relay_SMD -Relay_DPDT_AXICOM_IMSeries_JLeg -http://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Specification+Or+Standard%7F108-98001%7FW5%7Fpdf%7FEnglish%7FENG_SS_108-98001_W5.pdf -AXICOM IM-Series Relay J JLeg -0 -8 -8 -Relay_SMD -Relay_DPDT_FRT5_SMD -IM Signal Relay DPDT FRT5 narrow footprint, SMD version of package -Relay DPDT IM-relay FRT5 -0 -10 -10 -Relay_SMD -Relay_DPDT_Kemet_EE2_NU -Kemet signal relay, DPDT, double coil latching, https://content.kemet.com/datasheets/KEM_R7002_EC2_EE2.pdf -Kemet EC2 signal relay DPDT double coil latching surface mount SMD -0 -8 -8 -Relay_SMD -Relay_DPDT_Kemet_EE2_NUH -Kemet signal relay, DPDT, double coil latching, https://content.kemet.com/datasheets/KEM_R7002_EC2_EE2.pdf -Kemet EC2 signal relay DPDT double coil latching surface mount SMD -0 -8 -8 -Relay_SMD -Relay_DPDT_Kemet_EE2_NUH_DoubleCoil -Kemet signal relay, DPDT, double coil latching, https://content.kemet.com/datasheets/KEM_R7002_EC2_EE2.pdf -Kemet EC2 signal relay DPDT double dual coil latching surface mount SMD -0 -10 -10 -Relay_SMD -Relay_DPDT_Kemet_EE2_NUX_DoubleCoil -Kemet signal relay, DPDT, double coil latching, https://content.kemet.com/datasheets/KEM_R7002_EC2_EE2.pdf -Kemet EC2 signal relay DPDT double dual coil latching surface mount SMD -0 -10 -10 -Relay_SMD -Relay_DPDT_Kemet_EE2_NUX_NKX -Kemet signal relay, DPDT, double coil latching, https://content.kemet.com/datasheets/KEM_R7002_EC2_EE2.pdf -Kemet EC2 signal relay DPDT double coil latching surface mount SMD -0 -8 -8 -Relay_SMD -Relay_DPDT_Kemet_EE2_NU_DoubleCoil -Kemet signal relay, DPDT, double coil latching, https://content.kemet.com/datasheets/KEM_R7002_EC2_EE2.pdf -Kemet EC2 signal relay DPDT double dual coil latching surface mount SMD -0 -10 -10 -Relay_SMD -Relay_DPDT_Omron_G6H-2F -package for Omron G6H-2F relais, see http://cdn-reichelt.de/documents/datenblatt/C300/G6H%23OMR.pdf -Omron G6H-2F relais -0 -10 -10 -Relay_SMD -Relay_DPDT_Omron_G6K-2F -Omron G6K-2F relay package http://omronfs.omron.com/en_US/ecb/products/pdf/en-g6k.pdf -Omron G6K-2F relay -0 -8 -8 -Relay_SMD -Relay_DPDT_Omron_G6K-2F-Y -Omron G6K-2F-Y relay package http://omronfs.omron.com/en_US/ecb/products/pdf/en-g6k.pdf -Omron G6K-2F-Y relay -0 -8 -8 -Relay_SMD -Relay_DPDT_Omron_G6K-2G -Omron G6K-2G relay package http://omronfs.omron.com/en_US/ecb/products/pdf/en-g6k.pdf -Omron G6K-2G relay -0 -8 -8 -Relay_SMD -Relay_DPDT_Omron_G6K-2G-Y -Omron G6K-2G-Y relay package http://omronfs.omron.com/en_US/ecb/products/pdf/en-g6k.pdf -Omron G6K-2G-Y relay -0 -8 -8 -Relay_SMD -Relay_DPDT_Omron_G6S-2F -Relay Omron G6S-2F, see http://omronfs.omron.com/en_US/ecb/products/pdf/en-g6s.pdf -Relay Omron G6S-2F -0 -8 -8 -Relay_SMD -Relay_DPDT_Omron_G6S-2G -Relay Omron G6S-2G, see http://omronfs.omron.com/en_US/ecb/products/pdf/en-g6s.pdf -Relay Omron G6S-2G -0 -8 -8 -Relay_SMD -Relay_DPDT_Omron_G6SK-2F -Relay Omron G6SK-2F, see http://omronfs.omron.com/en_US/ecb/products/pdf/en-g6s.pdf -Relay Omron G6SK-2F -0 -10 -10 -Relay_SMD -Relay_DPDT_Omron_G6SK-2G -Relay Omron G6SK-2G, see http://omronfs.omron.com/en_US/ecb/products/pdf/en-g6s.pdf -Relay Omron G6SK-2G -0 -10 -10 -Relay_SMD -Relay_Fujitsu_FTR-B3S -https://www.fujitsu.com/downloads/MICRO/fcai/relays/ftr-b3.pdf -Fujitsh FTR B3S B3SA Relay J JLeg -0 -8 -8 -Relay_SMD -Relay_SPDT_AXICOM_HF3Series_50ohms_Pitch1.27mm -hiqsdr.com/images/3/3e/Axicom-HF3.pdf -AXICOM HF3-Series Relay Pitch 1.27mm 50ohms -0 -16 -16 -Relay_SMD -Relay_SPDT_AXICOM_HF3Series_75ohms_Pitch1.27mm -hiqsdr.com/images/3/3e/Axicom-HF3.pdf -AXICOM HF3-Series Relay Pitch 1.27mm 75ohm -0 -16 -16 -Relay_THT -Relay_1-Form-A_Schrack-RYII_RM5mm -Relay, 1-Form-A, Schrack-RYII, RM5mm, SPST-NO -Relay 1-Form-A Schrack-RYII RM5mm SPST-NO -0 -4 -4 -Relay_THT -Relay_1-Form-B_Schrack-RYII_RM5mm -Relay, 1-Form-B, Schrack-RYII, RM5mm, SPST-NC -Relay 1-Form-B Schrack-RYII RM5mm SPST-NC -0 -4 -4 -Relay_THT -Relay_1-Form-C_Schrack-RYII_RM3.2mm -Relay, 1-Form-C, Schrack-RYII, RM3.2mm, SPDT -Relay 1-Form-C Schrack-RYII RM3.2mm SPDT -0 -5 -5 -Relay_THT -Relay_1P1T_NO_10x24x18.8mm_Panasonic_ADW11xxxxW_THT -Panasonic Relay SPST 10mm 24mm, https://www.panasonic-electric-works.com/pew/es/downloads/ds_dw_hl_en.pdf -Panasonic Relay SPST -0 -4 -4 -Relay_THT -Relay_DPDT_AXICOM_IMSeries_Pitch3.2mm -AXICOM IM-Series Relays, DPDR, Pitch 3.2mm, http://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Specification+Or+Standard%7F108-98001%7FV%7Fpdf%7FEnglish%7FENG_SS_108-98001_V_IM_0614_v1.pdf%7F4-1462039-1 -AXICOM IM-Series Relay DPDR Pitch 3.2mm -0 -8 -8 -Relay_THT -Relay_DPDT_AXICOM_IMSeries_Pitch5.08mm -AXICOM IM-Series Relays, DPDR, Pitch 5.08 -AXICOM IM-Series Relay DPDR Pitch 5.08 -0 -8 -8 -Relay_THT -Relay_DPDT_FRT5 -IM Signal Relay DPDT FRT5 narrow footprint -Relay DPDT IM-relay FRT5 -0 -10 -10 -Relay_THT -Relay_DPDT_Finder_30.22 -Finder 32.21-x000 Relay, DPDT, https://gfinder.findernet.com/public/attachments/30/EN/S30EN.pdf -AXICOM IM-Series Relay SPDT -0 -8 -8 -Relay_THT -Relay_DPDT_Finder_40.52 -Relay DPDT Finder 40.52, Pitch 5mm/7.5mm, https://www.finder-relais.net/de/finder-relais-serie-40.pdf -Relay DPDT Finder 40.52 Pitch 5mm -0 -8 -8 -Relay_THT -Relay_DPDT_Fujitsu_FTR-F1C -https://www.fujitsu.com/downloads/MICRO/fcai/relays/ftr-f1.pdf -relay dpdt fujitsu tht -0 -8 -8 -Relay_THT -Relay_DPDT_Kemet_EC2 -Kemet signal relay, DPDT, non-latching, single coil latching, https://content.kemet.com/datasheets/KEM_R7002_EC2_EE2.pdf -Kemet EC2 signal relay DPDT non single coil latching through hole THT -0 -8 -8 -Relay_THT -Relay_DPDT_Kemet_EC2_DoubleCoil -Kemet signal relay, DPDT, double coil latching, https://content.kemet.com/datasheets/KEM_R7002_EC2_EE2.pdf -Kemet EC2 signal relay DPDT double dual coil latching through hole THT -0 -10 -10 -Relay_THT -Relay_DPDT_Omron_G2RL-2 -Omron Relay, DPDT, https://omronfs.omron.com/en_US/ecb/products/pdf/en-g2rl.pdf -Omron Relay DPDT -0 -8 -8 -Relay_THT -Relay_DPDT_Omron_G5V-2 -http://omronfs.omron.com/en_US/ecb/products/pdf/en-g5v2.pdf -Omron G5V-2 Relay DPDT -0 -8 -8 -Relay_THT -Relay_DPDT_Omron_G6H-2 -Omron relay G6H-2, see http://cdn-reichelt.de/documents/datenblatt/C300/G6H%23OMR.pdf -Omron relay G6H-2 -0 -10 -10 -Relay_THT -Relay_DPDT_Omron_G6K-2P -Omron G6K-2P relay package http://omronfs.omron.com/en_US/ecb/products/pdf/en-g6k.pdf -Omron G6K-2P relay -0 -8 -8 -Relay_THT -Relay_DPDT_Omron_G6K-2P-Y -Omron G6K-2P-Y relay package http://omronfs.omron.com/en_US/ecb/products/pdf/en-g6k.pdf -Omron G6K-2P-Y relay -0 -8 -8 -Relay_THT -Relay_DPDT_Omron_G6S-2 -Relay Omron G6S-2, see http://omronfs.omron.com/en_US/ecb/products/pdf/en-g6s.pdf -Relay Omron G6S-2 -0 -8 -8 -Relay_THT -Relay_DPDT_Omron_G6SK-2 -Relay Omron G6SK-2, see http://omronfs.omron.com/en_US/ecb/products/pdf/en-g6s.pdf -Relay Omron G6SK-2 -0 -10 -10 -Relay_THT -Relay_DPDT_Panasonic_JW2 -Panasonic Relay DPDT, http://www3.panasonic.biz/ac/e_download/control/relay/power/catalog/mech_eng_jw.pdf?via=ok -Panasonic Relay DPDT -0 -8 -8 -Relay_THT -Relay_DPDT_Schrack-RT2-FormC-Dual-Coil_RM5mm -Relay DPDT Schrack-RT2 RM5mm 16A 250V AC Form C http://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Data+Sheet%7FRT2_bistable%7F1116%7Fpdf%7FEnglish%7FENG_DS_RT2_bistable_1116.pdf%7F1-1415537-8 -Relay DPDT Schrack-RT2 RM5mm 16A 250V AC Relay -0 -9 -9 -Relay_THT -Relay_DPDT_Schrack-RT2-FormC_RM5mm -Relay DPDT Schrack-RT2 RM5mm 16A 250V AC Form C http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=RT2_reflow&DocType=DS&DocLang=EN -Relay DPDT Schrack-RT2 RM5mm 16A 250V AC Relay -0 -8 -8 -Relay_THT -Relay_DPST_Fujitsu_FTR-F1A -https://www.fujitsu.com/downloads/MICRO/fcai/relays/ftr-f1.pdf -relay dpst fujitsu tht -0 -6 -6 -Relay_THT -Relay_DPST_Omron_G2RL-2A -Omron Relay, DPST, https://omronfs.omron.com/en_US/ecb/products/pdf/en-g2rl.pdf -Omron Relay DPST -0 -6 -6 -Relay_THT -Relay_DPST_Schrack-RT2-FormA_RM5mm -Relay DPST Schrack-RT2 RM5mm 16A 250V AC Form A http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=RT2_reflow&DocType=DS&DocLang=EN -Relay DPST Schrack-RT2 RM5mm 16A 250V AC Relay -0 -6 -6 -Relay_THT -Relay_SPDT_Finder_32.21-x000 -Finder 32.21-x000 Relay, SPDT, https://gfinder.findernet.com/assets/Series/355/S32EN.pdf -AXICOM IM-Series Relay SPDT -0 -5 -5 -Relay_THT -Relay_SPDT_Finder_34.51_Horizontal -Relay SPDT, Finder Type34.51, horizontal form, see https://gfinder.findernet.com/public/attachments/34/EN/S34USAEN.pdf -Relay SPDT Finder -0 -5 -5 -Relay_THT -Relay_SPDT_Finder_34.51_Vertical -Relay SPDT, Finder Type34.51, vertical/standing form, see https://gfinder.findernet.com/public/attachments/34/EN/S34USAEN.pdf -Relay SPDT Finder -0 -5 -5 -Relay_THT -Relay_SPDT_Finder_36.11 -FINDER 36.11, SPDT relay, 10A, https://gfinder.findernet.com/public/attachments/36/EN/S36EN.pdf -spdt relay -0 -5 -5 -Relay_THT -Relay_SPDT_Finder_40.11 -Relay SPDT Finder 40.11, https://www.finder-relais.net/de/finder-relais-serie-40.pdf -Relay SPDT Finder 40.11 -0 -5 -5 -Relay_THT -Relay_SPDT_Finder_40.31 -Relay DPDT Finder 40.31, Pitch 3.5mm/7.5mm, https://www.finder-relais.net/de/finder-relais-serie-40.pdf -Relay DPDT Finder 40.31 Pitch 3.5mm -0 -5 -5 -Relay_THT -Relay_SPDT_Finder_40.41 -Relay DPDT Finder 40.41, Pitch 3.5mm/7.5mm, https://www.finder-relais.net/de/finder-relais-serie-40.pdf -Relay DPDT Finder 40.41 Pitch 3.5mm -0 -5 -5 -Relay_THT -Relay_SPDT_Finder_40.51 -Relay DPDT Finder 40.51, Pitch 5mm/7.5mm, https://www.finder-relais.net/de/finder-relais-serie-40.pdf -Relay DPDT Finder 40.51 Pitch 5mm -0 -5 -5 -Relay_THT -Relay_SPDT_HJR-4102 -IM Signal Relay SPDT HJR-4102 -Relay SPDT IM-relay HJR-4102 -0 -6 -6 -Relay_THT -Relay_SPDT_HsinDa_Y14 -http://www.hsinda.com.tw/upload/file/Y14-20200430135145.pdf -Relay Y14 -0 -6 -6 -Relay_THT -Relay_SPDT_Omron-G5LE-1 -Omron Relay SPDT, http://www.omron.com/ecb/products/pdf/en-g5le.pdf -Omron Relay SPDT -0 -5 -5 -Relay_THT -Relay_SPDT_Omron-G5Q-1 -Relay SPDT Omron Serie G5Q, http://omronfs.omron.com/en_US/ecb/products/pdf/en-g5q.pdf -Relay SPDT Omron Serie G5Q -0 -5 -5 -Relay_THT -Relay_SPDT_Omron_G2RL-1 -Omron Relay, SPDT, https://omronfs.omron.com/en_US/ecb/products/pdf/en-g2rl.pdf -Omron Relay SPDT -0 -5 -5 -Relay_THT -Relay_SPDT_Omron_G2RL-1-E -Omron Relay, SPDT, High Capacity, https://omronfs.omron.com/en_US/ecb/products/pdf/en-g2rl.pdf -Omron Relay SPDT High Capacity -0 -8 -5 -Relay_THT -Relay_SPDT_Omron_G5V-1 -Relay Omron G5V-1, see http://omronfs.omron.com/en_US/ecb/products/pdf/en-g5v_1.pdf -Relay Omron G5V-1 -0 -6 -6 -Relay_THT -Relay_SPDT_Omron_G6E -Relay SPDT Omron Serie G6E -Relay SPDT Omron Serie G6E 1x um -0 -5 -5 -Relay_THT -Relay_SPDT_Omron_G6EK -Relay SPDT Omron Serie G6EK, see http://www.logosfoundation.org/instrum_gwr/pi/Omron_G6E_134P.pdf -Relay SPDT Omron Serie G6EK -0 -6 -6 -Relay_THT -Relay_SPDT_Panasonic_JW1_FormC -Panasonic Relay SPDT, http://www3.panasonic.biz/ac/e_download/control/relay/power/catalog/mech_eng_jw.pdf?via=ok -Panasonic Relay SPDT -0 -5 -5 -Relay_THT -Relay_SPDT_PotterBrumfield_T9AP5D52_12V30A -Relay SPDT Potter&Brumfield T9AP5D52 12V 30A 1xUn Connector Fast ON Only Dummy for Space NO Pads -Relay SPDT Potter&Brumfield T9AP5D52 12V 30A 1xUm Connector Fast ON Flachsteckeranschluss Only Dummy for Space NO Pads -0 -0 -0 -Relay_THT -Relay_SPDT_RAYEX-L90 -https://a3.sofastcdn.com/attachment/7jioKBjnRiiSrjrjknRiwS77gwbf3zmp/L90-SERIES.pdf -Relay RAYEX L90 SPDT -0 -6 -6 -Relay_THT -Relay_SPDT_RAYEX-L90S -https://a3.sofastcdn.com/attachment/7jioKBjnRiiSrjrjknRiwS77gwbf3zmp/L90-SERIES.pdf -Relay RAYEX L90S SPDT -0 -5 -5 -Relay_THT -Relay_SPDT_SANYOU_SRD_Series_Form_C -relay Sanyou SRD series Form C http://www.sanyourelay.ca/public/products/pdf/SRD.pdf -relay Sanyu SRD form C -0 -5 -5 -Relay_THT -Relay_SPDT_Schrack-RP-II-1-16A-FormC_RM5mm -Relay SPST Schrack-RP-II/1 RM5mm 16A 250V AC Form C http://image.schrack.com/datenblaetter/h_rp810012-b.pdf -Relay SPST Schrack-RP-II/1 RM5mm 16A 250V AC Relay -0 -8 -5 -Relay_THT -Relay_SPDT_Schrack-RP-II-1-FormC_RM3.5mm -Relay SPST Schrack-RP-II/1 RM3.5mm 8A 250V AC Form C http://image.schrack.com/datenblaetter/h_rp810012-b.pdf -Relay SPST Schrack-RP-II/1 RM3.5mm 8A 250V AC Relay -0 -5 -5 -Relay_THT -Relay_SPDT_Schrack-RP-II-1-FormC_RM5mm -Relay SPST Schrack-RP-II/1 RM5mm 8A 250V AC Form C http://image.schrack.com/datenblaetter/h_rp810012-b.pdf -Relay SPST Schrack-RP-II/1 RM5mm 8A 250V AC Relay -0 -5 -5 -Relay_THT -Relay_SPDT_Schrack-RT1-16A-FormC_RM5mm -Relay SPST Schrack-RT1 RM5mm 16A 250V AC Form C http://image.schrack.com/datenblaetter/h_rt114012--_de.pdf -Relay SPST Schrack-RT1 RM5mm 16A 250V AC Relay -0 -8 -5 -Relay_THT -Relay_SPDT_Schrack-RT1-FormC_RM3.5mm -Relay SPST Schrack-RT1 RM3.5mm 8A 250V AC Form C http://image.schrack.com/datenblaetter/h_rt114012--_de.pdf -Relay SPST Schrack-RT1 RM3.5mm 8A 250V AC Relay -0 -5 -5 -Relay_THT -Relay_SPDT_Schrack-RT1-FormC_RM5mm -Relay SPST Schrack-RT1 RM5mm 8A 250V AC Form C http://image.schrack.com/datenblaetter/h_rt114012--_de.pdf -Relay SPST Schrack-RT1 RM5mm 8A 250V AC Relay -0 -5 -5 -Relay_THT -Relay_SPDT_StandexMeder_SIL_Form1C -Standex-Meder SIL-relais, Form 1C, see https://standexelectronics.com/wp-content/uploads/datasheet_reed_relay_SIL.pdf -Standex Meder SIL reed relais -0 -5 -5 -Relay_THT -Relay_SPST_Finder_32.21-x300 -Finder 32.21-x300 Relay, SPST, https://gfinder.findernet.com/assets/Series/355/S32EN.pdf -Finder 32.21-x300 Relay SPST -0 -4 -4 -Relay_THT -Relay_SPST_Omron-G5Q-1A -Relay SPST-NO Omron Serie G5Q, http://omronfs.omron.com/en_US/ecb/products/pdf/en-g5q.pdf -Relay SPST-NO Omron Serie G5Q -0 -4 -4 -Relay_THT -Relay_SPST_Omron_G2RL-1A -Omron Relay, SPST, https://omronfs.omron.com/en_US/ecb/products/pdf/en-g2rl.pdf -Omron Relay SPST -0 -4 -4 -Relay_THT -Relay_SPST_Omron_G2RL-1A-E -Omron Relay, SPST, High Capacity, https://omronfs.omron.com/en_US/ecb/products/pdf/en-g2rl.pdf -Omron Relay SPST High Capacity -0 -6 -4 -Relay_THT -Relay_SPST_Panasonic_JW1_FormA -Panasonic Relay SPST, http://www3.panasonic.biz/ac/e_download/control/relay/power/catalog/mech_eng_jw.pdf?via=ok -Panasonic Relay SPST -0 -4 -4 -Relay_THT -Relay_SPST_PotterBrumfield_T9AP1D52_12V30A -Relay SPST Potter&Brumfield T9AP1D52 12V 30A 1xEin Connector Fast ON Only Dummy for Space NO Pads -Relau SPST Potter&Brumfield T9AP1D52 12V 30A 1xEin Connector Fast ON Flachsteckeranschluss Only Dummy for Space NO Pads -0 -0 -0 -Relay_THT -Relay_SPST_RAYEX-L90A -https://a3.sofastcdn.com/attachment/7jioKBjnRiiSrjrjknRiwS77gwbf3zmp/L90-SERIES.pdf -Relay RAYEX L90A SPST NO -0 -5 -5 -Relay_THT -Relay_SPST_RAYEX-L90AS -https://a3.sofastcdn.com/attachment/7jioKBjnRiiSrjrjknRiwS77gwbf3zmp/L90-SERIES.pdf -Relay RAYEX L90AS SPST NO -0 -4 -4 -Relay_THT -Relay_SPST_RAYEX-L90B -https://a3.sofastcdn.com/attachment/7jioKBjnRiiSrjrjknRiwS77gwbf3zmp/L90-SERIES.pdf -Relay RAYEX L90B SPST NC -0 -5 -5 -Relay_THT -Relay_SPST_RAYEX-L90BS -https://a3.sofastcdn.com/attachment/7jioKBjnRiiSrjrjknRiwS77gwbf3zmp/L90-SERIES.pdf -Relay RAYEX L90BS SPST NC -0 -4 -4 -Relay_THT -Relay_SPST_SANYOU_SRD_Series_Form_A -relay Sanyou SRD series Form A http://www.sanyourelay.ca/public/products/pdf/SRD.pdf -relay Sanyu SRD form A -0 -4 -4 -Relay_THT -Relay_SPST_SANYOU_SRD_Series_Form_B -relay Sanyou SRD series Form B opener http://www.sanyourelay.ca/public/products/pdf/SRD.pdf -relay Sanyu SRD form B opener -0 -4 -4 -Relay_THT -Relay_SPST_Schrack-RP-II-1-16A-FormA_RM5mm -Relay SPST Schrack-RP-II/1 RM5mm 16A 250V AC Form A http://image.schrack.com/datenblaetter/h_rp810012-b.pdf -Relay SPST Schrack-RP-II/1 RM5mm 16A 250V AC Relay -0 -6 -4 -Relay_THT -Relay_SPST_Schrack-RP-II-1-FormA_RM3.5mm -Relay SPST Schrack-RP-II/1 RM3.5mm 8A 250V AC Form A -Relay SPST Schrack-RP-II/1 RM3.5mm 8A 250V AC Relay -0 -4 -4 -Relay_THT -Relay_SPST_Schrack-RP-II-1-FormA_RM5mm -Relay SPST Schrack-RP-II/1 RM5mm 8A 250V AC Form A http://image.schrack.com/datenblaetter/h_rp810012-b.pdf -Relay SPST Schrack-RP-II/1 RM5mm 8A 250V AC Relay -0 -4 -4 -Relay_THT -Relay_SPST_Schrack-RP3SL-1coil_RM5mm -Relay SPST Schrack-RP3SL, 1-coil-version, RM5mm 16A 250V AC Form A http://www.alliedelec.com/m/d/543c6bed18bf23a83ae5238947033ee0.pdf -Relay SPST Schrack-RP3SL RM5mm 16A 250V AC Relay -0 -6 -4 -Relay_THT -Relay_SPST_Schrack-RP3SL_RM5mm -Relay SPST Schrack-RP3SL RM5mm 16A 250V AC Form A http://www.alliedelec.com/m/d/543c6bed18bf23a83ae5238947033ee0.pdf -Relay SPST Schrack-RP3SL RM5mm 16A 250V AC Relay -0 -7 -5 -Relay_THT -Relay_SPST_Schrack-RT1-16A-FormA_RM5mm -Relay SPST Schrack-RT2 RM5mm 16A 250V AC Form C http://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=RT2_reflow&DocType=DS&DocLang=EN -Relay SPST Schrack-RT2 RM5mm 16A 250V AC Relay -0 -6 -4 -Relay_THT -Relay_SPST_Schrack-RT1-FormA_RM3.5mm -Relay SPST Schrack-RT1 RM3.5mm 8A 250V AC Form A -Relay SPST Schrack-RT1 RM3.5mm 8A 250V AC Relay -0 -4 -4 -Relay_THT -Relay_SPST_Schrack-RT1-FormA_RM5mm -Relay SPST Schrack-RT1 RM5mm 8A 250V AC Form C http://image.schrack.com/datenblaetter/h_rt114012--_de.pdf -Relay SPST Schrack-RT1 RM5mm 8A 250V AC Relay -0 -4 -4 -Relay_THT -Relay_SPST_StandexMeder_MS_Form1AB -Standex-Meder MS SIL-relais, Form 1A/1B, see https://standexelectronics.com/de/produkte/ms-reed-relais/ -Standex Meder MS SIL reed relais -0 -4 -4 -Relay_THT -Relay_SPST_StandexMeder_SIL_Form1A -Standex-Meder SIL-relais, Form 1A, see https://standexelectronics.com/wp-content/uploads/datasheet_reed_relay_SIL.pdf -Standex Meder SIL reed relais -0 -4 -4 -Relay_THT -Relay_SPST_StandexMeder_SIL_Form1B -Standex-Meder SIL-relais, Form 1B, see https://standexelectronics.com/wp-content/uploads/datasheet_reed_relay_SIL.pdf -Standex Meder SIL reed relais -0 -4 -4 -Relay_THT -Relay_SPST_TE_PCH-1xxx2M -Miniature PCB Relay, PCH Series, 1 Form A (NO), SPST http://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Data+Sheet%7FPCH_series_relay_data_sheet_E%7F1215%7Fpdf%7FEnglish%7FENG_DS_PCH_series_relay_data_sheet_E_1215.pdf -Relay SPST NO -0 -4 -4 -Relay_THT -Relay_SPST_TE_PCN-1xxD3MHZ -https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F1461491%7FG2%7Fpdf%7FEnglish%7FENG_CD_1461491_G2.pdf%7F3-1461491-0 -SPST relay slim -0 -4 -4 -Relay_THT -Relay_Socket_DPDT_Finder_96.12 -https://gfinder.findernet.com/public/attachments/56/DE/S56DE.pdf -Relay socket DPDT Finder 96.12 56.32 -0 -8 -8 -Relay_THT -Relay_StandexMeder_DIP_HighProfile -package for Standex Meder DIP reed relay series, see https://standexelectronics.com/wp-content/uploads/datasheet_reed_relay_DIP.pdf -DIL DIP PDIP 2.54mm 7.62mm 300mil reed relay -0 -8 -8 -Relay_THT -Relay_StandexMeder_DIP_LowProfile -package for Standex Meder DIP reed relay series, see https://standexelectronics.com/wp-content/uploads/datasheet_reed_relay_DIP.pdf -DIL DIP PDIP 2.54mm 7.62mm 300mil reed relay -0 -8 -8 -Relay_THT -Relay_StandexMeder_UMS -Standex-Meder SIL-relais, UMS, see http://cdn-reichelt.de/documents/datenblatt/C300/UMS05_1A80_75L_DB.pdf -Standex Meder SIL reed relais -0 -4 -4 -Resistor_SMD -R_0201_0603Metric -Resistor SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), generated with kicad-footprint-generator -resistor -0 -4 -2 -Resistor_SMD -R_0201_0603Metric_Pad0.64x0.40mm_HandSolder -Resistor SMD 0201 (0603 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.vishay.com/docs/20052/crcw0201e3.pdf), generated with kicad-footprint-generator -resistor handsolder -0 -4 -2 -Resistor_SMD -R_0402_1005Metric -Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator -resistor -0 -2 -2 -Resistor_SMD -R_0402_1005Metric_Pad0.72x0.64mm_HandSolder -Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator -resistor handsolder -0 -2 -2 -Resistor_SMD -R_0603_1608Metric -Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator -resistor -0 -2 -2 -Resistor_SMD -R_0603_1608Metric_Pad0.98x0.95mm_HandSolder -Resistor SMD 0603 (1608 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator -resistor handsolder -0 -2 -2 -Resistor_SMD -R_0612_1632Metric -Resistor SMD 0612 (1632 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20019/rcwe.pdf), generated with kicad-footprint-generator -resistor -0 -2 -2 -Resistor_SMD -R_0612_1632Metric_Pad1.18x3.40mm_HandSolder -Resistor SMD 0612 (1632 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.vishay.com/docs/20019/rcwe.pdf), generated with kicad-footprint-generator -resistor handsolder -0 -2 -2 -Resistor_SMD -R_0805_2012Metric -Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator -resistor -0 -2 -2 -Resistor_SMD -R_0805_2012Metric_Pad1.20x1.40mm_HandSolder -Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator -resistor handsolder -0 -2 -2 -Resistor_SMD -R_0815_2038Metric -Resistor SMD 0815 (2038 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.susumu.co.jp/common/pdf/n_catalog_partition07_en.pdf), generated with kicad-footprint-generator -resistor -0 -2 -2 -Resistor_SMD -R_0815_2038Metric_Pad1.20x4.05mm_HandSolder -Resistor SMD 0815 (2038 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.susumu.co.jp/common/pdf/n_catalog_partition07_en.pdf), generated with kicad-footprint-generator -resistor handsolder -0 -2 -2 -Resistor_SMD -R_01005_0402Metric -Resistor SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), generated with kicad-footprint-generator -resistor -0 -4 -2 -Resistor_SMD -R_01005_0402Metric_Pad0.57x0.30mm_HandSolder -Resistor SMD 01005 (0402 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://www.vishay.com/docs/20056/crcw01005e3.pdf), generated with kicad-footprint-generator -resistor handsolder -0 -4 -2 -Resistor_SMD -R_1020_2550Metric -Resistor SMD 1020 (2550 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20019/rcwe.pdf), generated with kicad-footprint-generator -resistor -0 -2 -2 -Resistor_SMD -R_1020_2550Metric_Pad1.33x5.20mm_HandSolder -Resistor SMD 1020 (2550 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.vishay.com/docs/20019/rcwe.pdf), generated with kicad-footprint-generator -resistor handsolder -0 -2 -2 -Resistor_SMD -R_1206_3216Metric -Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator -resistor -0 -2 -2 -Resistor_SMD -R_1206_3216Metric_Pad1.30x1.75mm_HandSolder -Resistor SMD 1206 (3216 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator -resistor handsolder -0 -2 -2 -Resistor_SMD -R_1210_3225Metric -Resistor SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator -resistor -0 -2 -2 -Resistor_SMD -R_1210_3225Metric_Pad1.30x2.65mm_HandSolder -Resistor SMD 1210 (3225 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator -resistor handsolder -0 -2 -2 -Resistor_SMD -R_1218_3246Metric -Resistor SMD 1218 (3246 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.vishay.com/docs/20035/dcrcwe3.pdf), generated with kicad-footprint-generator -resistor -0 -2 -2 -Resistor_SMD -R_1218_3246Metric_Pad1.22x4.75mm_HandSolder -Resistor SMD 1218 (3246 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.vishay.com/docs/20035/dcrcwe3.pdf), generated with kicad-footprint-generator -resistor handsolder -0 -2 -2 -Resistor_SMD -R_1812_4532Metric -Resistor SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), generated with kicad-footprint-generator -resistor -0 -2 -2 -Resistor_SMD -R_1812_4532Metric_Pad1.30x3.40mm_HandSolder -Resistor SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), generated with kicad-footprint-generator -resistor handsolder -0 -2 -2 -Resistor_SMD -R_2010_5025Metric -Resistor SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator -resistor -0 -2 -2 -Resistor_SMD -R_2010_5025Metric_Pad1.40x2.65mm_HandSolder -Resistor SMD 2010 (5025 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator -resistor handsolder -0 -2 -2 -Resistor_SMD -R_2512_6332Metric -Resistor SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator -resistor -0 -2 -2 -Resistor_SMD -R_2512_6332Metric_Pad1.40x3.35mm_HandSolder -Resistor SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator -resistor handsolder -0 -2 -2 -Resistor_SMD -R_2816_7142Metric -Resistor SMD 2816 (7142 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), generated with kicad-footprint-generator -resistor -0 -2 -2 -Resistor_SMD -R_2816_7142Metric_Pad3.20x4.45mm_HandSolder -Resistor SMD 2816 (7142 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size from: https://www.vishay.com/docs/30100/wsl.pdf), generated with kicad-footprint-generator -resistor handsolder -0 -2 -2 -Resistor_SMD -R_4020_10251Metric -Resistor SMD 4020 (10251 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://datasheet.octopart.com/HVC0603T5004FET-Ohmite-datasheet-26699797.pdf), generated with kicad-footprint-generator -resistor -0 -2 -2 -Resistor_SMD -R_4020_10251Metric_Pad1.65x5.30mm_HandSolder -Resistor SMD 4020 (10251 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: http://datasheet.octopart.com/HVC0603T5004FET-Ohmite-datasheet-26699797.pdf), generated with kicad-footprint-generator -resistor handsolder -0 -2 -2 -Resistor_SMD -R_Array_Concave_2x0603 -Thick Film Chip Resistor Array, Wave soldering, Vishay CRA06P (see cra06p.pdf) -resistor array -0 -4 -4 -Resistor_SMD -R_Array_Concave_4x0402 -Thick Film Chip Resistor Array, Wave soldering, Vishay CRA04P (see cra04p.pdf) -resistor array -0 -8 -8 -Resistor_SMD -R_Array_Concave_4x0603 -Thick Film Chip Resistor Array, Wave soldering, Vishay CRA06P (see cra06p.pdf) -resistor array -0 -8 -8 -Resistor_SMD -R_Array_Convex_2x0402 -Chip Resistor Network, ROHM MNR02 (see mnr_g.pdf) -resistor array -0 -4 -4 -Resistor_SMD -R_Array_Convex_2x0603 -Chip Resistor Network, ROHM MNR12 (see mnr_g.pdf) -resistor array -0 -4 -4 -Resistor_SMD -R_Array_Convex_2x0606 -Precision Thin Film Chip Resistor Array, VISHAY (see http://www.vishay.com/docs/28770/acasat.pdf) -resistor array -0 -4 -4 -Resistor_SMD -R_Array_Convex_2x1206 -Chip Resistor Network, ROHM MNR32 (see mnr_g.pdf) -resistor array -0 -4 -4 -Resistor_SMD -R_Array_Convex_4x0402 -Chip Resistor Network, ROHM MNR04 (see mnr_g.pdf) -resistor array -0 -8 -8 -Resistor_SMD -R_Array_Convex_4x0603 -Chip Resistor Network, ROHM MNR14 (see mnr_g.pdf) -resistor array -0 -8 -8 -Resistor_SMD -R_Array_Convex_4x0612 -Precision Thin Film Chip Resistor Array, VISHAY (see http://www.vishay.com/docs/28770/acasat.pdf) -resistor array -0 -8 -8 -Resistor_SMD -R_Array_Convex_4x1206 -Chip Resistor Network, ROHM MNR34 (see mnr_g.pdf) -resistor array -0 -8 -8 -Resistor_SMD -R_Array_Convex_5x0603 -Chip Resistor Network, ROHM MNR15 (see mnr_g.pdf) -resistor array -0 -10 -10 -Resistor_SMD -R_Array_Convex_5x1206 -Chip Resistor Network, ROHM MNR35 (see mnr_g.pdf) -resistor array -0 -10 -10 -Resistor_SMD -R_Array_Convex_8x0602 -Chip Resistor Network, ROHM MNR18 (see mnr_g.pdf) -resistor array -0 -16 -16 -Resistor_SMD -R_Cat16-2 -SMT resistor net, Bourns CAT16 series, 2 way -SMT resistor net Bourns CAT16 series 2 way -0 -4 -4 -Resistor_SMD -R_Cat16-4 -SMT resistor net, Bourns CAT16 series, 4 way -SMT resistor net Bourns CAT16 series 4 way -0 -8 -8 -Resistor_SMD -R_Cat16-8 -SMT resistor net, Bourns CAT16 series, 8 way -SMT resistor net Bourns CAT16 series 8 way -0 -16 -16 -Resistor_SMD -R_MELF_MMB-0207 -Resistor, MELF, MMB-0207, http://www.vishay.com/docs/28713/melfprof.pdf -MELF Resistor -0 -2 -2 -Resistor_SMD -R_MicroMELF_MMU-0102 -Resistor, MicroMELF, MMU-0102, http://www.vishay.com/docs/28713/melfprof.pdf -MicroMELF Resistor -0 -2 -2 -Resistor_SMD -R_MiniMELF_MMA-0204 -Resistor, MiniMELF, MMA-0204, http://www.vishay.com/docs/28713/melfprof.pdf -MiniMELF Resistor -0 -2 -2 -Resistor_SMD -R_Shunt_Ohmite_LVK12 -4 contact shunt resistor -shunt resistor 4 contacts -0 -4 -4 -Resistor_SMD -R_Shunt_Ohmite_LVK20 -4 contacts shunt resistor, https://www.ohmite.com/assets/docs/res_lvk.pdf -4 contacts resistor smd -0 -4 -4 -Resistor_SMD -R_Shunt_Ohmite_LVK24 -4 contacts shunt resistor,https://www.ohmite.com/assets/docs/res_lvk.pdf -4 contacts resistor smd -0 -4 -4 -Resistor_SMD -R_Shunt_Ohmite_LVK25 -4 contacts shunt resistor,https://www.ohmite.com/assets/docs/res_lvk.pdf -4 contacts resistor smd -0 -4 -4 -Resistor_SMD -R_Shunt_Vishay_WSK2512_6332Metric_T1.19mm -Shunt Resistor SMD 2512 (6332 Metric), 2.6mm thick, Vishay WKS2512, Terminal length (T) 1.19mm, 5 to 200 milli Ohm (http://http://www.vishay.com/docs/30108/wsk.pdf) -resistor shunt WSK2512 -0 -4 -4 -Resistor_SMD -R_Shunt_Vishay_WSK2512_6332Metric_T2.21mm -Shunt Resistor SMD 2512 (6332 Metric), 2.6mm thick, Vishay WKS2512, Terminal length (T) 2.21mm, 1 to 4.9 milli Ohm (http://http://www.vishay.com/docs/30108/wsk.pdf) -resistor shunt WSK2512 -0 -4 -4 -Resistor_SMD -R_Shunt_Vishay_WSK2512_6332Metric_T2.66mm -Shunt Resistor SMD 2512 (6332 Metric), 2.6mm thick, Vishay WKS2512, Terminal length (T) 2.66mm, 0.5 to 0.99 milli Ohm (http://http://www.vishay.com/docs/30108/wsk.pdf) -resistor shunt WSK2512 -0 -4 -4 -Resistor_SMD -R_Shunt_Vishay_WSKW0612 -https://www.vishay.com/docs/30332/wskw0612.pdf -4-Terminal SMD Shunt -0 -4 -4 -Resistor_SMD -R_Shunt_Vishay_WSR2_WSR3 -Power Metal Strip Resistors 0.005 to 0.2, https://www.vishay.com/docs/30101/wsr.pdf -SMD Shunt Resistor -0 -2 -2 -Resistor_SMD -R_Shunt_Vishay_WSR2_WSR3_KelvinConnection -Power Metal Strip Resistors 0.005 to 0.2, https://www.vishay.com/docs/30101/wsr.pdf -SMD Shunt Resistor -0 -4 -2 -Resistor_THT -R_Array_SIP4 -4-pin Resistor SIP pack -R -0 -4 -4 -Resistor_THT -R_Array_SIP5 -5-pin Resistor SIP pack -R -0 -5 -5 -Resistor_THT -R_Array_SIP6 -6-pin Resistor SIP pack -R -0 -6 -6 -Resistor_THT -R_Array_SIP7 -7-pin Resistor SIP pack -R -0 -7 -7 -Resistor_THT -R_Array_SIP8 -8-pin Resistor SIP pack -R -0 -8 -8 -Resistor_THT -R_Array_SIP9 -9-pin Resistor SIP pack -R -0 -9 -9 -Resistor_THT -R_Array_SIP10 -10-pin Resistor SIP pack -R -0 -10 -10 -Resistor_THT -R_Array_SIP11 -11-pin Resistor SIP pack -R -0 -11 -11 -Resistor_THT -R_Array_SIP12 -12-pin Resistor SIP pack -R -0 -12 -12 -Resistor_THT -R_Array_SIP13 -13-pin Resistor SIP pack -R -0 -13 -13 -Resistor_THT -R_Array_SIP14 -14-pin Resistor SIP pack -R -0 -14 -14 -Resistor_THT -R_Axial_DIN0204_L3.6mm_D1.6mm_P1.90mm_Vertical -Resistor, Axial_DIN0204 series, Axial, Vertical, pin pitch=1.9mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf -Resistor Axial_DIN0204 series Axial Vertical pin pitch 1.9mm 0.167W length 3.6mm diameter 1.6mm -0 -2 -2 -Resistor_THT -R_Axial_DIN0204_L3.6mm_D1.6mm_P2.54mm_Vertical -Resistor, Axial_DIN0204 series, Axial, Vertical, pin pitch=2.54mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf -Resistor Axial_DIN0204 series Axial Vertical pin pitch 2.54mm 0.167W length 3.6mm diameter 1.6mm -0 -2 -2 -Resistor_THT -R_Axial_DIN0204_L3.6mm_D1.6mm_P5.08mm_Horizontal -Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=5.08mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf -Resistor Axial_DIN0204 series Axial Horizontal pin pitch 5.08mm 0.167W length 3.6mm diameter 1.6mm -0 -2 -2 -Resistor_THT -R_Axial_DIN0204_L3.6mm_D1.6mm_P5.08mm_Vertical -Resistor, Axial_DIN0204 series, Axial, Vertical, pin pitch=5.08mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf -Resistor Axial_DIN0204 series Axial Vertical pin pitch 5.08mm 0.167W length 3.6mm diameter 1.6mm -0 -2 -2 -Resistor_THT -R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal -Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf -Resistor Axial_DIN0204 series Axial Horizontal pin pitch 7.62mm 0.167W length 3.6mm diameter 1.6mm -0 -2 -2 -Resistor_THT -R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical -Resistor, Axial_DIN0207 series, Axial, Vertical, pin pitch=2.54mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf -Resistor Axial_DIN0207 series Axial Vertical pin pitch 2.54mm 0.25W = 1/4W length 6.3mm diameter 2.5mm -0 -2 -2 -Resistor_THT -R_Axial_DIN0207_L6.3mm_D2.5mm_P5.08mm_Vertical -Resistor, Axial_DIN0207 series, Axial, Vertical, pin pitch=5.08mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf -Resistor Axial_DIN0207 series Axial Vertical pin pitch 5.08mm 0.25W = 1/4W length 6.3mm diameter 2.5mm -0 -2 -2 -Resistor_THT -R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal -Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf -Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm -0 -2 -2 -Resistor_THT -R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal -Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf -Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm -0 -2 -2 -Resistor_THT -R_Axial_DIN0207_L6.3mm_D2.5mm_P15.24mm_Horizontal -Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=15.24mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf -Resistor Axial_DIN0207 series Axial Horizontal pin pitch 15.24mm 0.25W = 1/4W length 6.3mm diameter 2.5mm -0 -2 -2 -Resistor_THT -R_Axial_DIN0309_L9.0mm_D3.2mm_P2.54mm_Vertical -Resistor, Axial_DIN0309 series, Axial, Vertical, pin pitch=2.54mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf -Resistor Axial_DIN0309 series Axial Vertical pin pitch 2.54mm 0.5W = 1/2W length 9mm diameter 3.2mm -0 -2 -2 -Resistor_THT -R_Axial_DIN0309_L9.0mm_D3.2mm_P5.08mm_Vertical -Resistor, Axial_DIN0309 series, Axial, Vertical, pin pitch=5.08mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf -Resistor Axial_DIN0309 series Axial Vertical pin pitch 5.08mm 0.5W = 1/2W length 9mm diameter 3.2mm -0 -2 -2 -Resistor_THT -R_Axial_DIN0309_L9.0mm_D3.2mm_P12.70mm_Horizontal -Resistor, Axial_DIN0309 series, Axial, Horizontal, pin pitch=12.7mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf -Resistor Axial_DIN0309 series Axial Horizontal pin pitch 12.7mm 0.5W = 1/2W length 9mm diameter 3.2mm -0 -2 -2 -Resistor_THT -R_Axial_DIN0309_L9.0mm_D3.2mm_P15.24mm_Horizontal -Resistor, Axial_DIN0309 series, Axial, Horizontal, pin pitch=15.24mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf -Resistor Axial_DIN0309 series Axial Horizontal pin pitch 15.24mm 0.5W = 1/2W length 9mm diameter 3.2mm -0 -2 -2 -Resistor_THT -R_Axial_DIN0309_L9.0mm_D3.2mm_P20.32mm_Horizontal -Resistor, Axial_DIN0309 series, Axial, Horizontal, pin pitch=20.32mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf -Resistor Axial_DIN0309 series Axial Horizontal pin pitch 20.32mm 0.5W = 1/2W length 9mm diameter 3.2mm -0 -2 -2 -Resistor_THT -R_Axial_DIN0309_L9.0mm_D3.2mm_P25.40mm_Horizontal -Resistor, Axial_DIN0309 series, Axial, Horizontal, pin pitch=25.4mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf -Resistor Axial_DIN0309 series Axial Horizontal pin pitch 25.4mm 0.5W = 1/2W length 9mm diameter 3.2mm -0 -2 -2 -Resistor_THT -R_Axial_DIN0411_L9.9mm_D3.6mm_P5.08mm_Vertical -Resistor, Axial_DIN0411 series, Axial, Vertical, pin pitch=5.08mm, 1W, length*diameter=9.9*3.6mm^2 -Resistor Axial_DIN0411 series Axial Vertical pin pitch 5.08mm 1W length 9.9mm diameter 3.6mm -0 -2 -2 -Resistor_THT -R_Axial_DIN0411_L9.9mm_D3.6mm_P7.62mm_Vertical -Resistor, Axial_DIN0411 series, Axial, Vertical, pin pitch=7.62mm, 1W, length*diameter=9.9*3.6mm^2 -Resistor Axial_DIN0411 series Axial Vertical pin pitch 7.62mm 1W length 9.9mm diameter 3.6mm -0 -2 -2 -Resistor_THT -R_Axial_DIN0411_L9.9mm_D3.6mm_P12.70mm_Horizontal -Resistor, Axial_DIN0411 series, Axial, Horizontal, pin pitch=12.7mm, 1W, length*diameter=9.9*3.6mm^2 -Resistor Axial_DIN0411 series Axial Horizontal pin pitch 12.7mm 1W length 9.9mm diameter 3.6mm -0 -2 -2 -Resistor_THT -R_Axial_DIN0411_L9.9mm_D3.6mm_P15.24mm_Horizontal -Resistor, Axial_DIN0411 series, Axial, Horizontal, pin pitch=15.24mm, 1W, length*diameter=9.9*3.6mm^2 -Resistor Axial_DIN0411 series Axial Horizontal pin pitch 15.24mm 1W length 9.9mm diameter 3.6mm -0 -2 -2 -Resistor_THT -R_Axial_DIN0411_L9.9mm_D3.6mm_P20.32mm_Horizontal -Resistor, Axial_DIN0411 series, Axial, Horizontal, pin pitch=20.32mm, 1W, length*diameter=9.9*3.6mm^2 -Resistor Axial_DIN0411 series Axial Horizontal pin pitch 20.32mm 1W length 9.9mm diameter 3.6mm -0 -2 -2 -Resistor_THT -R_Axial_DIN0411_L9.9mm_D3.6mm_P25.40mm_Horizontal -Resistor, Axial_DIN0411 series, Axial, Horizontal, pin pitch=25.4mm, 1W, length*diameter=9.9*3.6mm^2 -Resistor Axial_DIN0411 series Axial Horizontal pin pitch 25.4mm 1W length 9.9mm diameter 3.6mm -0 -2 -2 -Resistor_THT -R_Axial_DIN0414_L11.9mm_D4.5mm_P5.08mm_Vertical -Resistor, Axial_DIN0414 series, Axial, Vertical, pin pitch=5.08mm, 2W, length*diameter=11.9*4.5mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf -Resistor Axial_DIN0414 series Axial Vertical pin pitch 5.08mm 2W length 11.9mm diameter 4.5mm -0 -2 -2 -Resistor_THT -R_Axial_DIN0414_L11.9mm_D4.5mm_P7.62mm_Vertical -Resistor, Axial_DIN0414 series, Axial, Vertical, pin pitch=7.62mm, 2W, length*diameter=11.9*4.5mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf -Resistor Axial_DIN0414 series Axial Vertical pin pitch 7.62mm 2W length 11.9mm diameter 4.5mm -0 -2 -2 -Resistor_THT -R_Axial_DIN0414_L11.9mm_D4.5mm_P15.24mm_Horizontal -Resistor, Axial_DIN0414 series, Axial, Horizontal, pin pitch=15.24mm, 2W, length*diameter=11.9*4.5mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf -Resistor Axial_DIN0414 series Axial Horizontal pin pitch 15.24mm 2W length 11.9mm diameter 4.5mm -0 -2 -2 -Resistor_THT -R_Axial_DIN0414_L11.9mm_D4.5mm_P20.32mm_Horizontal -Resistor, Axial_DIN0414 series, Axial, Horizontal, pin pitch=20.32mm, 2W, length*diameter=11.9*4.5mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf -Resistor Axial_DIN0414 series Axial Horizontal pin pitch 20.32mm 2W length 11.9mm diameter 4.5mm -0 -2 -2 -Resistor_THT -R_Axial_DIN0414_L11.9mm_D4.5mm_P25.40mm_Horizontal -Resistor, Axial_DIN0414 series, Axial, Horizontal, pin pitch=25.4mm, 2W, length*diameter=11.9*4.5mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf -Resistor Axial_DIN0414 series Axial Horizontal pin pitch 25.4mm 2W length 11.9mm diameter 4.5mm -0 -2 -2 -Resistor_THT -R_Axial_DIN0516_L15.5mm_D5.0mm_P5.08mm_Vertical -Resistor, Axial_DIN0516 series, Axial, Vertical, pin pitch=5.08mm, 2W, length*diameter=15.5*5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf -Resistor Axial_DIN0516 series Axial Vertical pin pitch 5.08mm 2W length 15.5mm diameter 5mm -0 -2 -2 -Resistor_THT -R_Axial_DIN0516_L15.5mm_D5.0mm_P7.62mm_Vertical -Resistor, Axial_DIN0516 series, Axial, Vertical, pin pitch=7.62mm, 2W, length*diameter=15.5*5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf -Resistor Axial_DIN0516 series Axial Vertical pin pitch 7.62mm 2W length 15.5mm diameter 5mm -0 -2 -2 -Resistor_THT -R_Axial_DIN0516_L15.5mm_D5.0mm_P20.32mm_Horizontal -Resistor, Axial_DIN0516 series, Axial, Horizontal, pin pitch=20.32mm, 2W, length*diameter=15.5*5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf -Resistor Axial_DIN0516 series Axial Horizontal pin pitch 20.32mm 2W length 15.5mm diameter 5mm -0 -2 -2 -Resistor_THT -R_Axial_DIN0516_L15.5mm_D5.0mm_P25.40mm_Horizontal -Resistor, Axial_DIN0516 series, Axial, Horizontal, pin pitch=25.4mm, 2W, length*diameter=15.5*5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf -Resistor Axial_DIN0516 series Axial Horizontal pin pitch 25.4mm 2W length 15.5mm diameter 5mm -0 -2 -2 -Resistor_THT -R_Axial_DIN0516_L15.5mm_D5.0mm_P30.48mm_Horizontal -Resistor, Axial_DIN0516 series, Axial, Horizontal, pin pitch=30.48mm, 2W, length*diameter=15.5*5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf -Resistor Axial_DIN0516 series Axial Horizontal pin pitch 30.48mm 2W length 15.5mm diameter 5mm -0 -2 -2 -Resistor_THT -R_Axial_DIN0614_L14.3mm_D5.7mm_P5.08mm_Vertical -Resistor, Axial_DIN0614 series, Axial, Vertical, pin pitch=5.08mm, 1.5W, length*diameter=14.3*5.7mm^2 -Resistor Axial_DIN0614 series Axial Vertical pin pitch 5.08mm 1.5W length 14.3mm diameter 5.7mm -0 -2 -2 -Resistor_THT -R_Axial_DIN0614_L14.3mm_D5.7mm_P7.62mm_Vertical -Resistor, Axial_DIN0614 series, Axial, Vertical, pin pitch=7.62mm, 1.5W, length*diameter=14.3*5.7mm^2 -Resistor Axial_DIN0614 series Axial Vertical pin pitch 7.62mm 1.5W length 14.3mm diameter 5.7mm -0 -2 -2 -Resistor_THT -R_Axial_DIN0614_L14.3mm_D5.7mm_P15.24mm_Horizontal -Resistor, Axial_DIN0614 series, Axial, Horizontal, pin pitch=15.24mm, 1.5W, length*diameter=14.3*5.7mm^2 -Resistor Axial_DIN0614 series Axial Horizontal pin pitch 15.24mm 1.5W length 14.3mm diameter 5.7mm -0 -2 -2 -Resistor_THT -R_Axial_DIN0614_L14.3mm_D5.7mm_P20.32mm_Horizontal -Resistor, Axial_DIN0614 series, Axial, Horizontal, pin pitch=20.32mm, 1.5W, length*diameter=14.3*5.7mm^2 -Resistor Axial_DIN0614 series Axial Horizontal pin pitch 20.32mm 1.5W length 14.3mm diameter 5.7mm -0 -2 -2 -Resistor_THT -R_Axial_DIN0614_L14.3mm_D5.7mm_P25.40mm_Horizontal -Resistor, Axial_DIN0614 series, Axial, Horizontal, pin pitch=25.4mm, 1.5W, length*diameter=14.3*5.7mm^2 -Resistor Axial_DIN0614 series Axial Horizontal pin pitch 25.4mm 1.5W length 14.3mm diameter 5.7mm -0 -2 -2 -Resistor_THT -R_Axial_DIN0617_L17.0mm_D6.0mm_P5.08mm_Vertical -Resistor, Axial_DIN0617 series, Axial, Vertical, pin pitch=5.08mm, 2W, length*diameter=17*6mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf -Resistor Axial_DIN0617 series Axial Vertical pin pitch 5.08mm 2W length 17mm diameter 6mm -0 -2 -2 -Resistor_THT -R_Axial_DIN0617_L17.0mm_D6.0mm_P7.62mm_Vertical -Resistor, Axial_DIN0617 series, Axial, Vertical, pin pitch=7.62mm, 2W, length*diameter=17*6mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf -Resistor Axial_DIN0617 series Axial Vertical pin pitch 7.62mm 2W length 17mm diameter 6mm -0 -2 -2 -Resistor_THT -R_Axial_DIN0617_L17.0mm_D6.0mm_P20.32mm_Horizontal -Resistor, Axial_DIN0617 series, Axial, Horizontal, pin pitch=20.32mm, 2W, length*diameter=17*6mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf -Resistor Axial_DIN0617 series Axial Horizontal pin pitch 20.32mm 2W length 17mm diameter 6mm -0 -2 -2 -Resistor_THT -R_Axial_DIN0617_L17.0mm_D6.0mm_P25.40mm_Horizontal -Resistor, Axial_DIN0617 series, Axial, Horizontal, pin pitch=25.4mm, 2W, length*diameter=17*6mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf -Resistor Axial_DIN0617 series Axial Horizontal pin pitch 25.4mm 2W length 17mm diameter 6mm -0 -2 -2 -Resistor_THT -R_Axial_DIN0617_L17.0mm_D6.0mm_P30.48mm_Horizontal -Resistor, Axial_DIN0617 series, Axial, Horizontal, pin pitch=30.48mm, 2W, length*diameter=17*6mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf -Resistor Axial_DIN0617 series Axial Horizontal pin pitch 30.48mm 2W length 17mm diameter 6mm -0 -2 -2 -Resistor_THT -R_Axial_DIN0918_L18.0mm_D9.0mm_P7.62mm_Vertical -Resistor, Axial_DIN0918 series, Axial, Vertical, pin pitch=7.62mm, 4W, length*diameter=18*9mm^2 -Resistor Axial_DIN0918 series Axial Vertical pin pitch 7.62mm 4W length 18mm diameter 9mm -0 -2 -2 -Resistor_THT -R_Axial_DIN0918_L18.0mm_D9.0mm_P22.86mm_Horizontal -Resistor, Axial_DIN0918 series, Axial, Horizontal, pin pitch=22.86mm, 4W, length*diameter=18*9mm^2 -Resistor Axial_DIN0918 series Axial Horizontal pin pitch 22.86mm 4W length 18mm diameter 9mm -0 -2 -2 -Resistor_THT -R_Axial_DIN0918_L18.0mm_D9.0mm_P25.40mm_Horizontal -Resistor, Axial_DIN0918 series, Axial, Horizontal, pin pitch=25.4mm, 4W, length*diameter=18*9mm^2 -Resistor Axial_DIN0918 series Axial Horizontal pin pitch 25.4mm 4W length 18mm diameter 9mm -0 -2 -2 -Resistor_THT -R_Axial_DIN0918_L18.0mm_D9.0mm_P30.48mm_Horizontal -Resistor, Axial_DIN0918 series, Axial, Horizontal, pin pitch=30.48mm, 4W, length*diameter=18*9mm^2 -Resistor Axial_DIN0918 series Axial Horizontal pin pitch 30.48mm 4W length 18mm diameter 9mm -0 -2 -2 -Resistor_THT -R_Axial_DIN0922_L20.0mm_D9.0mm_P7.62mm_Vertical -Resistor, Axial_DIN0922 series, Axial, Vertical, pin pitch=7.62mm, 5W, length*diameter=20*9mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf -Resistor Axial_DIN0922 series Axial Vertical pin pitch 7.62mm 5W length 20mm diameter 9mm -0 -2 -2 -Resistor_THT -R_Axial_DIN0922_L20.0mm_D9.0mm_P25.40mm_Horizontal -Resistor, Axial_DIN0922 series, Axial, Horizontal, pin pitch=25.4mm, 5W, length*diameter=20*9mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf -Resistor Axial_DIN0922 series Axial Horizontal pin pitch 25.4mm 5W length 20mm diameter 9mm -0 -2 -2 -Resistor_THT -R_Axial_DIN0922_L20.0mm_D9.0mm_P30.48mm_Horizontal -Resistor, Axial_DIN0922 series, Axial, Horizontal, pin pitch=30.48mm, 5W, length*diameter=20*9mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf -Resistor Axial_DIN0922 series Axial Horizontal pin pitch 30.48mm 5W length 20mm diameter 9mm -0 -2 -2 -Resistor_THT -R_Axial_Power_L20.0mm_W6.4mm_P5.08mm_Vertical -Resistor, Axial_Power series, Axial, Vertical, pin pitch=5.08mm, 4W, length*width*height=20*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Axial Vertical pin pitch 5.08mm 4W length 20mm width 6.4mm height 6.4mm -0 -2 -2 -Resistor_THT -R_Axial_Power_L20.0mm_W6.4mm_P7.62mm_Vertical -Resistor, Axial_Power series, Axial, Vertical, pin pitch=7.62mm, 4W, length*width*height=20*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Axial Vertical pin pitch 7.62mm 4W length 20mm width 6.4mm height 6.4mm -0 -2 -2 -Resistor_THT -R_Axial_Power_L20.0mm_W6.4mm_P22.40mm -Resistor, Axial_Power series, Box, pin pitch=22.4mm, 4W, length*width*height=20*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 22.4mm 4W length 20mm width 6.4mm height 6.4mm -0 -2 -2 -Resistor_THT -R_Axial_Power_L20.0mm_W6.4mm_P25.40mm -Resistor, Axial_Power series, Box, pin pitch=25.4mm, 4W, length*width*height=20*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 25.4mm 4W length 20mm width 6.4mm height 6.4mm -0 -2 -2 -Resistor_THT -R_Axial_Power_L20.0mm_W6.4mm_P30.48mm -Resistor, Axial_Power series, Box, pin pitch=30.48mm, 4W, length*width*height=20*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 30.48mm 4W length 20mm width 6.4mm height 6.4mm -0 -2 -2 -Resistor_THT -R_Axial_Power_L25.0mm_W6.4mm_P27.94mm -Resistor, Axial_Power series, Box, pin pitch=27.94mm, 5W, length*width*height=25*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 27.94mm 5W length 25mm width 6.4mm height 6.4mm -0 -2 -2 -Resistor_THT -R_Axial_Power_L25.0mm_W6.4mm_P30.48mm -Resistor, Axial_Power series, Box, pin pitch=30.48mm, 5W, length*width*height=25*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 30.48mm 5W length 25mm width 6.4mm height 6.4mm -0 -2 -2 -Resistor_THT -R_Axial_Power_L25.0mm_W9.0mm_P7.62mm_Vertical -Resistor, Axial_Power series, Axial, Vertical, pin pitch=7.62mm, 7W, length*width*height=25*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Axial Vertical pin pitch 7.62mm 7W length 25mm width 9mm height 9mm -0 -2 -2 -Resistor_THT -R_Axial_Power_L25.0mm_W9.0mm_P10.16mm_Vertical -Resistor, Axial_Power series, Axial, Vertical, pin pitch=10.16mm, 7W, length*width*height=25*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Axial Vertical pin pitch 10.16mm 7W length 25mm width 9mm height 9mm -0 -2 -2 -Resistor_THT -R_Axial_Power_L25.0mm_W9.0mm_P27.94mm -Resistor, Axial_Power series, Box, pin pitch=27.94mm, 7W, length*width*height=25*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 27.94mm 7W length 25mm width 9mm height 9mm -0 -2 -2 -Resistor_THT -R_Axial_Power_L25.0mm_W9.0mm_P30.48mm -Resistor, Axial_Power series, Box, pin pitch=30.48mm, 7W, length*width*height=25*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 30.48mm 7W length 25mm width 9mm height 9mm -0 -2 -2 -Resistor_THT -R_Axial_Power_L38.0mm_W6.4mm_P40.64mm -Resistor, Axial_Power series, Box, pin pitch=40.64mm, 7W, length*width*height=38*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 40.64mm 7W length 38mm width 6.4mm height 6.4mm -0 -2 -2 -Resistor_THT -R_Axial_Power_L38.0mm_W6.4mm_P45.72mm -Resistor, Axial_Power series, Box, pin pitch=45.72mm, 7W, length*width*height=38*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 45.72mm 7W length 38mm width 6.4mm height 6.4mm -0 -2 -2 -Resistor_THT -R_Axial_Power_L38.0mm_W9.0mm_P40.64mm -Resistor, Axial_Power series, Box, pin pitch=40.64mm, 9W, length*width*height=38*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 40.64mm 9W length 38mm width 9mm height 9mm -0 -2 -2 -Resistor_THT -R_Axial_Power_L38.0mm_W9.0mm_P45.72mm -Resistor, Axial_Power series, Box, pin pitch=45.72mm, 9W, length*width*height=38*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 45.72mm 9W length 38mm width 9mm height 9mm -0 -2 -2 -Resistor_THT -R_Axial_Power_L48.0mm_W12.5mm_P7.62mm_Vertical -Resistor, Axial_Power series, Axial, Vertical, pin pitch=7.62mm, 15W, length*width*height=48*12.5*12.5mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Axial Vertical pin pitch 7.62mm 15W length 48mm width 12.5mm height 12.5mm -0 -2 -2 -Resistor_THT -R_Axial_Power_L48.0mm_W12.5mm_P10.16mm_Vertical -Resistor, Axial_Power series, Axial, Vertical, pin pitch=10.16mm, 15W, length*width*height=48*12.5*12.5mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Axial Vertical pin pitch 10.16mm 15W length 48mm width 12.5mm height 12.5mm -0 -2 -2 -Resistor_THT -R_Axial_Power_L48.0mm_W12.5mm_P55.88mm -Resistor, Axial_Power series, Box, pin pitch=55.88mm, 15W, length*width*height=48*12.5*12.5mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 55.88mm 15W length 48mm width 12.5mm height 12.5mm -0 -2 -2 -Resistor_THT -R_Axial_Power_L48.0mm_W12.5mm_P60.96mm -Resistor, Axial_Power series, Box, pin pitch=60.96mm, 15W, length*width*height=48*12.5*12.5mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 60.96mm 15W length 48mm width 12.5mm height 12.5mm -0 -2 -2 -Resistor_THT -R_Axial_Power_L50.0mm_W9.0mm_P55.88mm -Resistor, Axial_Power series, Box, pin pitch=55.88mm, 11W, length*width*height=50*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 55.88mm 11W length 50mm width 9mm height 9mm -0 -2 -2 -Resistor_THT -R_Axial_Power_L50.0mm_W9.0mm_P60.96mm -Resistor, Axial_Power series, Box, pin pitch=60.96mm, 11W, length*width*height=50*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 60.96mm 11W length 50mm width 9mm height 9mm -0 -2 -2 -Resistor_THT -R_Axial_Power_L60.0mm_W14.0mm_P10.16mm_Vertical -Resistor, Axial_Power series, Axial, Vertical, pin pitch=10.16mm, 25W, length*width*height=60*14*14mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Axial Vertical pin pitch 10.16mm 25W length 60mm width 14mm height 14mm -0 -2 -2 -Resistor_THT -R_Axial_Power_L60.0mm_W14.0mm_P66.04mm -Resistor, Axial_Power series, Box, pin pitch=66.04mm, 25W, length*width*height=60*14*14mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 66.04mm 25W length 60mm width 14mm height 14mm -0 -2 -2 -Resistor_THT -R_Axial_Power_L60.0mm_W14.0mm_P71.12mm -Resistor, Axial_Power series, Box, pin pitch=71.12mm, 25W, length*width*height=60*14*14mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 71.12mm 25W length 60mm width 14mm height 14mm -0 -2 -2 -Resistor_THT -R_Axial_Power_L75.0mm_W9.0mm_P81.28mm -Resistor, Axial_Power series, Box, pin pitch=81.28mm, 17W, length*width*height=75*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 81.28mm 17W length 75mm width 9mm height 9mm -0 -2 -2 -Resistor_THT -R_Axial_Power_L75.0mm_W9.0mm_P86.36mm -Resistor, Axial_Power series, Box, pin pitch=86.36mm, 17W, length*width*height=75*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf -Resistor Axial_Power series Box pin pitch 86.36mm 17W length 75mm width 9mm height 9mm -0 -2 -2 -Resistor_THT -R_Axial_Shunt_L22.2mm_W8.0mm_PS14.30mm_P25.40mm -Resistor, Axial_Shunt series, Box, pin pitch=25.4mm, 3W, length*width*height=22.2*8*8mm^3, shunt pin pitch = 14.30mm, http://www.vishay.com/docs/30217/cpsl.pdf -Resistor Axial_Shunt series Box pin pitch 25.4mm 3W length 22.2mm width 8mm height 8mm shunt pin pitch 14.30mm -0 -4 -4 -Resistor_THT -R_Axial_Shunt_L22.2mm_W9.5mm_PS14.30mm_P25.40mm -Resistor, Axial_Shunt series, Box, pin pitch=25.4mm, 5W, length*width*height=22.2*9.5*9.5mm^3, shunt pin pitch = 14.30mm, http://www.vishay.com/docs/30217/cpsl.pdf -Resistor Axial_Shunt series Box pin pitch 25.4mm 5W length 22.2mm width 9.5mm height 9.5mm shunt pin pitch 14.30mm -0 -4 -4 -Resistor_THT -R_Axial_Shunt_L35.3mm_W9.5mm_PS25.40mm_P38.10mm -Resistor, Axial_Shunt series, Box, pin pitch=38.1mm, 7W, length*width*height=35.3*9.5*9.5mm^3, shunt pin pitch = 25.40mm, http://www.vishay.com/docs/30217/cpsl.pdf -Resistor Axial_Shunt series Box pin pitch 38.1mm 7W length 35.3mm width 9.5mm height 9.5mm shunt pin pitch 25.40mm -0 -4 -4 -Resistor_THT -R_Axial_Shunt_L47.6mm_W9.5mm_PS34.93mm_P50.80mm -Resistor, Axial_Shunt series, Box, pin pitch=50.8mm, 10W, length*width*height=47.6*9.5*9.5mm^3, shunt pin pitch = 34.93mm, http://www.vishay.com/docs/30217/cpsl.pdf -Resistor Axial_Shunt series Box pin pitch 50.8mm 10W length 47.6mm width 9.5mm height 9.5mm shunt pin pitch 34.93mm -0 -4 -4 -Resistor_THT -R_Axial_Shunt_L47.6mm_W12.7mm_PS34.93mm_P50.80mm -Resistor, Axial_Shunt series, Box, pin pitch=50.8mm, 15W, length*width*height=47.6*12.7*12.7mm^3, shunt pin pitch = 34.93mm, http://www.vishay.com/docs/30217/cpsl.pdf -Resistor Axial_Shunt series Box pin pitch 50.8mm 15W length 47.6mm width 12.7mm height 12.7mm shunt pin pitch 34.93mm -0 -4 -4 -Resistor_THT -R_Bare_Metal_Element_L12.4mm_W4.8mm_P11.40mm -Resistor, Bare_Metal_Element series, Bare Metal Strip/Wire, Horizontal, pin pitch=11.4mm, 1W, length*width=12.4*4.8mm^2, https://www.bourns.com/pdfs/PWR4412-2S.pdf -Resistor Bare_Metal_Element series Bare Metal Strip Wire Horizontal pin pitch 11.4mm 1W length 12.4mm width 4.8mm -0 -2 -2 -Resistor_THT -R_Bare_Metal_Element_L16.3mm_W4.8mm_P15.30mm -Resistor, Bare_Metal_Element series, Bare Metal Strip/Wire, Horizontal, pin pitch=15.3mm, 3W, length*width=16.3*4.8mm^2, https://www.bourns.com/pdfs/PWR4412-2S.pdf -Resistor Bare_Metal_Element series Bare Metal Strip Wire Horizontal pin pitch 15.3mm 3W length 16.3mm width 4.8mm -0 -2 -2 -Resistor_THT -R_Bare_Metal_Element_L21.3mm_W4.8mm_P20.30mm -Resistor, Bare_Metal_Element series, Bare Metal Strip/Wire, Horizontal, pin pitch=20.3mm, 5W, length*width=21.3*4.8mm^2, https://www.bourns.com/pdfs/PWR4412-2S.pdf -Resistor Bare_Metal_Element series Bare Metal Strip Wire Horizontal pin pitch 20.3mm 5W length 21.3mm width 4.8mm -0 -2 -2 -Resistor_THT -R_Box_L8.4mm_W2.5mm_P5.08mm -Resistor, Box series, Radial, pin pitch=5.08mm, 0.5W = 1/2W, length*width=8.38*2.54mm^2, http://www.vishay.com/docs/60051/cns020.pdf -Resistor Box series Radial pin pitch 5.08mm 0.5W = 1/2W length 8.38mm width 2.54mm -0 -2 -2 -Resistor_THT -R_Box_L13.0mm_W4.0mm_P9.00mm -Resistor, Box series, Radial, pin pitch=9.00mm, 2W, length*width=13.0*4.0mm^2, http://www.produktinfo.conrad.com/datenblaetter/425000-449999/443860-da-01-de-METALLBAND_WIDERSTAND_0_1_OHM_5W_5Pr.pdf -Resistor Box series Radial pin pitch 9.00mm 2W length 13.0mm width 4.0mm -0 -2 -2 -Resistor_THT -R_Box_L14.0mm_W5.0mm_P9.00mm -Resistor, Box series, Radial, pin pitch=9.00mm, 5W, length*width=14.0*5.0mm^2, http://www.produktinfo.conrad.com/datenblaetter/425000-449999/443860-da-01-de-METALLBAND_WIDERSTAND_0_1_OHM_5W_5Pr.pdf -Resistor Box series Radial pin pitch 9.00mm 5W length 14.0mm width 5.0mm -0 -2 -2 -Resistor_THT -R_Box_L26.0mm_W5.0mm_P20.00mm -Resistor, Box series, Radial, pin pitch=20.00mm, 10W, length*width=26.0*5.0mm^2, http://www.produktinfo.conrad.com/datenblaetter/425000-449999/443860-da-01-de-METALLBAND_WIDERSTAND_0_1_OHM_5W_5Pr.pdf -Resistor Box series Radial pin pitch 20.00mm 10W length 26.0mm width 5.0mm -0 -2 -2 -Resistor_THT -R_Radial_Power_L7.0mm_W8.0mm_Px2.40mm_Py2.30mm -Resistor, Radial_Power series, Radial, pin pitch=2.40*2.30mm^2, 7W, length*width=7*8mm^2, http://www.vitrohm.com/content/files/vitrohm_series_kv_-_201601.pdf -Resistor Radial_Power series Radial pin pitch 2.40*2.30mm^2 7W length 7mm width 8mm -0 -2 -2 -Resistor_THT -R_Radial_Power_L9.0mm_W10.0mm_Px2.70mm_Py2.30mm -Resistor, Radial_Power series, Radial, pin pitch=2.70*2.30mm^2, 17W, length*width=9*10mm^2, http://www.vitrohm.com/content/files/vitrohm_series_kv_-_201601.pdf -Resistor Radial_Power series Radial pin pitch 2.70*2.30mm^2 17W length 9mm width 10mm -0 -2 -2 -Resistor_THT -R_Radial_Power_L11.0mm_W7.0mm_P5.00mm -Resistor, Radial_Power series, Radial, pin pitch=5.00mm, 2W, length*width=11.0*7.0mm^2, http://www.vishay.com/docs/30218/cpcx.pdf -Resistor Radial_Power series Radial pin pitch 5.00mm 2W length 11.0mm width 7.0mm -0 -2 -2 -Resistor_THT -R_Radial_Power_L12.0mm_W8.0mm_P5.00mm -Resistor, Radial_Power series, Radial, pin pitch=5.00mm, 3W, length*width=12.0*8.0mm^2, http://www.vishay.com/docs/30218/cpcx.pdf -Resistor Radial_Power series Radial pin pitch 5.00mm 3W length 12.0mm width 8.0mm -0 -2 -2 -Resistor_THT -R_Radial_Power_L13.0mm_W9.0mm_P5.00mm -Resistor, Radial_Power series, Radial, pin pitch=5.00mm, 7W, length*width=13.0*9.0mm^2, http://www.vishay.com/docs/30218/cpcx.pdf -Resistor Radial_Power series Radial pin pitch 5.00mm 7W length 13.0mm width 9.0mm -0 -2 -2 -Resistor_THT -R_Radial_Power_L16.1mm_W9.0mm_P7.37mm -Resistor, Radial_Power series, Radial, pin pitch=7.37mm, 10W, length*width=16.1*9mm^2, http://www.vishay.com/docs/30218/cpcx.pdf -Resistor Radial_Power series Radial pin pitch 7.37mm 10W length 16.1mm width 9mm -0 -2 -2 -Rotary_Encoder -RotaryEncoder_Alps_EC11E-Switch_Vertical_H20mm -Alps rotary encoder, EC12E... with switch, vertical shaft, http://www.alps.com/prod/info/E/HTML/Encoder/Incremental/EC11/EC11E15204A3.html -rotary encoder -0 -7 -6 -Rotary_Encoder -RotaryEncoder_Alps_EC11E-Switch_Vertical_H20mm_CircularMountingHoles -Alps rotary encoder, EC12E... with switch, vertical shaft, mounting holes with circular drills, http://www.alps.com/prod/info/E/HTML/Encoder/Incremental/EC11/EC11E15204A3.html -rotary encoder -0 -7 -6 -Rotary_Encoder -RotaryEncoder_Alps_EC11E_Vertical_H20mm -Alps rotary encoder, EC12E... without switch (pins are dummy), vertical shaft, http://www.alps.com/prod/info/E/HTML/Encoder/Incremental/EC11/EC11E15204A3.html -rotary encoder -0 -7 -4 -Rotary_Encoder -RotaryEncoder_Alps_EC11E_Vertical_H20mm_CircularMountingHoles -Alps rotary encoder, EC12E... without switch (pins are dummy), vertical shaft, mounting holes with circular drills, http://www.alps.com/prod/info/E/HTML/Encoder/Incremental/EC11/EC11E15204A3.html -rotary encoder -0 -7 -4 -Rotary_Encoder -RotaryEncoder_Alps_EC12E-Switch_Vertical_H20mm -Alps rotary encoder, EC12E... with switch, vertical shaft, http://www.alps.com/prod/info/E/HTML/Encoder/Incremental/EC12E/EC12E1240405.html & http://cdn-reichelt.de/documents/datenblatt/F100/402097STEC12E08.PDF -rotary encoder -0 -7 -6 -Rotary_Encoder -RotaryEncoder_Alps_EC12E-Switch_Vertical_H20mm_CircularMountingHoles -Alps rotary encoder, EC12E... with switch, vertical shaft, mounting holes with circular drills, http://www.alps.com/prod/info/E/HTML/Encoder/Incremental/EC12E/EC12E1240405.html & http://cdn-reichelt.de/documents/datenblatt/F100/402097STEC12E08.PDF -rotary encoder -0 -7 -6 -Rotary_Encoder -RotaryEncoder_Alps_EC12E_Vertical_H20mm -Alps rotary encoder, EC12E..., vertical shaft, http://www.alps.com/prod/info/E/HTML/Encoder/Incremental/EC12E/EC12E1240405.html -rotary encoder -0 -5 -4 -Rotary_Encoder -RotaryEncoder_Alps_EC12E_Vertical_H20mm_CircularMountingHoles -Alps rotary encoder, EC12E..., vertical shaft, mounting holes with circular drills, http://www.alps.com/prod/info/E/HTML/Encoder/Incremental/EC12E/EC12E1240405.html -rotary encoder -0 -5 -4 -Rotary_Encoder -RotaryEncoder_Bourns_Horizontal_PEC09-2xxxF-Nxxxx -Bourns rotary encoder, PEC09, without switch, horizontal shaft, https://www.bourns.com/products/encoders/contacting-encoders/product/PEC09 -rotary encoder -0 -3 -3 -Rotary_Encoder -RotaryEncoder_Bourns_Horizontal_PEC09-2xxxF-Sxxxx -Bourns rotary encoder, PEC09, with switch, horizontal shaft, https://www.bourns.com/products/encoders/contacting-encoders/product/PEC09 -rotary encoder -0 -5 -5 -Rotary_Encoder -RotaryEncoder_Bourns_Horizontal_PEC12R-2xxxF-Nxxxx -Bourns rotary encoder, PEC12R, without switch, horizontal shaft, https://www.bourns.com/docs/product-datasheets/pec12r.pdf -rotary encoder -0 -5 -4 -Rotary_Encoder -RotaryEncoder_Bourns_Horizontal_PEC12R-2xxxF-Sxxxx -Bourns rotary encoder, PEC12R, with switch, horizontal shaft, https://www.bourns.com/docs/product-datasheets/pec12r.pdf -rotary encoder -0 -7 -6 -Rotary_Encoder -RotaryEncoder_Bourns_Vertical_PEC12R-3xxxF-Nxxxx -Bourns rotary encoder, PEC12R, without switch, vertical shaft, https://www.bourns.com/docs/product-datasheets/pec12r.pdf -rotary encoder -0 -5 -4 -Rotary_Encoder -RotaryEncoder_Bourns_Vertical_PEC12R-3xxxF-Sxxxx -Bourns rotary encoder, PEC12R, with switch, vertical shaft, https://www.bourns.com/docs/product-datasheets/pec12r.pdf -rotary encoder -0 -7 -6 -ScitechKorea -Holder5reg - - -0 -4 -4 -ScitechKorea -Holder485 - - -0 -8 -8 -ScitechKorea -HolderEth - - -0 -10 -0 -ScitechKorea -HolderEth_1 - - -0 -10 -10 -ScitechKorea -I2C_Socket - - -0 -4 -4 -ScitechKorea -Terminal_02 - - -0 -2 -2 -ScitechKorea -Terminal_08 - - -0 -8 -8 -ScitechKorea -Terminal_16 - - -0 -16 -16 -ScitechKorea -Terminal_24 - - -0 -24 -24 -ScitechKorea -mega_socket - - -0 -92 -91 -ScitechKorea -mega_socket_no_center - - -0 -86 -85 -Sensor -Aosong_DHT11_5.5x12.0_P2.54mm -Temperature and humidity module, http://akizukidenshi.com/download/ds/aosong/DHT11.pdf -Temperature and humidity module -0 -4 -4 -Sensor -Avago_APDS-9960 -Digital Proximity, Ambient Light, RGB and Gesture Sensor (https://docs.broadcom.com/doc/AV02-4191EN) -DFN Sensor optical IR -0 -8 -8 -Sensor -LuminOX_LOX-O2 -SST LuminOX Luminescence-based O2 sensor, https://sstsensing.com/wp-content/uploads/2021/08/DS0030rev15_LuminOx.pdf -SST LuminOX O2 -0 -4 -4 -Sensor -MQ-6 -Gas Sensor, 6 pin, https://www.winsen-sensor.com/d/files/semiconductor/mq-6.pdf -gas sensor -0 -6 -6 -Sensor -SHT1x -SHT1x -SHT1x -0 -8 -8 -Sensor -Senseair_S8_Down -Sensair S8 Series CO2 sensor, 1kHz PWM output, Modbus, THT -co2 gas sensor pwm modbus -0 -9 -9 -Sensor -Senseair_S8_Up -Sensair S8 Series CO2 sensor, 1kHz PWM output, Modbus, THT -co2 gas sensor pwm modbus -0 -9 -9 -Sensor -Sensirion_SCD4x-1EP_10.1x10.1mm_P1.25mm_EP4.8x4.8mm -Sensirion SCD4x QFN, 20 Pin (https://sensirion.com/media/documents/C4B87CE6/627C2DCD/CD_DS_SCD40_SCD41_Datasheet_D1.pdf), generated with kicad-footprint-generator ipc_noLead_generator.py -Sensirion QFN NoLead -0 -25 -21 -Sensor -Sensortech_MiCS_5x7mm_P1.25mm -https://www.sgxsensortech.com/content/uploads/2014/07/1084_Datasheet-MiCS-5524-rev-8.pdf -Sensortech MiCS MEMS sensor -0 -10 -10 -Sensor -Winson_GM-402B_5x5mm_P1.27mm -Winson GM-402B, 8 Pin (https://www.winsen-sensor.com/d/files/me2/mems--gm-402b--manual-v1_1.pdf) -Winson -0 -8 -8 -Sensor_Audio -CUI_CMC-4013-SMT -Omnidirectional, -42dB, reflowable, electret condenser microphone https://www.cuidevices.com/product/resource/cmc-4013-smt-tr.pdf -Microphone CUI -0 -2 -2 -Sensor_Audio -Infineon_PG-LLGA-5-1 -Infineon_PG-LLGA-5-1 StepUp generated footprint, https://www.infineon.com/cms/en/product/packages/PG-LLGA/PG-LLGA-5-1/ -infineon mems microphone -0 -15 -5 -Sensor_Audio -InvenSense_ICS-43434-6_3.5x2.65mm -TDK InvenSense MEMS I2S Microphone: https://invensense.tdk.com/products/ics-43434/ -microphone MEMS I2S ICS-43434 TDK InvenSense -0 -6 -6 -Sensor_Audio -Knowles_LGA-5_3.5x2.65mm -https://www.knowles.com/docs/default-source/model-downloads/sph0641lu4h-1-revb.pdf -MEMS Microphone LGA -0 -5 -5 -Sensor_Audio -Knowles_SPH0645LM4H-6_3.5x2.65mm -Knowles MEMS I2S Microphone: https://www.knowles.com/subdepartment/dpt-microphones/subdpt-sisonic-surface-mount-mems -microphone MEMS I2S SPH0645LM4H Knowles -0 -6 -6 -Sensor_Audio -ST_HLGA-6_3.76x4.72mm_P1.65mm -http://www.st.com/content/ccc/resource/technical/document/datasheet/group3/27/62/48/98/44/54/4d/36/DM00303211/files/DM00303211.pdf/jcr:content/translations/en.DM00303211.pdf -HLGA Sensor Audio -0 -6 -6 -Sensor_Current -AKM_CQ_7 -AKM Current Sensor, 7 pin, THT (http://www.akm.com/akm/en/file/datasheet/CQ-236B.pdf) -akm current sensor tht -0 -39 -7 -Sensor_Current -AKM_CQ_7S -AKM Current Sensor, 7 pin, SMD (http://www.akm.com/akm/en/file/datasheet/CQ-236B.pdf) -akm current sensor smd -0 -19 -7 -Sensor_Current -AKM_CQ_VSOP-24_5.6x7.9mm_P0.65mm -AKM VSOP-24 current sensor, 5.6x7.9mm body, 0.65mm pitch (http://www.akm.com/akm/en/file/datasheet/CQ-330J.pdf) -akm vsop 24 -0 -10 -10 -Sensor_Current -AKM_CZ_SSOP-10_6.5x8.1mm_P0.95mm -AKM CZ-381x current sensor, 6.5x8.1mm body, 0.95mm pitch (http://www.akm.com/akm/en/product/detail/0009/) -akm cz-381x 10 -0 -10 -10 -Sensor_Current -Allegro_CB_PFF -Allegro MicroSystems, CB-PFF Package (http://www.allegromicro.com/en/Products/Current-Sensor-ICs/Fifty-To-Two-Hundred-Amp-Integrated-Conductor-Sensor-ICs/ACS758.aspx) !PADS 4-5 DO NOT MATCH DATASHEET! -Allegro CB-PFF -0 -37 -5 -Sensor_Current -Allegro_CB_PSF -Allegro MicroSystems, CB-PSF Package (http://www.allegromicro.com/en/Products/Current-Sensor-ICs/Fifty-To-Two-Hundred-Amp-Integrated-Conductor-Sensor-ICs/ACS758.aspx) -Allegro CB-PSF -0 -5 -5 -Sensor_Current -Allegro_CB_PSS -Allegro MicroSystems, CB-PSS Package (http://www.allegromicro.com/en/Products/Current-Sensor-ICs/Fifty-To-Two-Hundred-Amp-Integrated-Conductor-Sensor-ICs/ACS758.aspx) -Allegro CB-PSS -0 -5 -5 -Sensor_Current -Allegro_PSOF-7_4.8x6.4mm_P1.60mm -Allegro Microsystems PSOF-7, 4.8x6.4mm Body, 1.60mm Pitch (http://www.allegromicro.com/~/media/Files/Datasheets/ACS780-Datasheet.ashx) -Allegro PSOF-7 -0 -7 -7 -Sensor_Current -Allegro_QFN-12-10-1EP_3x3mm_P0.5mm -Allegro Microsystems 12-Lead (10-Lead Populated) Quad Flat Pack, 3x3mm Body, 0.5mm Pitch (http://www.allegromicro.com/~/media/Files/Datasheets/ACS711-Datasheet.ashx) -Allegro QFN 0.5 -0 -14 -10 -Sensor_Current -Allegro_QSOP-24_3.9x8.7mm_P0.635mm -Allegro Microsystems 24-Lead Plastic Shrink Small Outline Narrow Body Body [QSOP] (http://www.allegromicro.com/~/media/Files/Datasheets/ACS726-Datasheet.ashx?la=en) -Allegro QSOP 0.635 -0 -24 -24 -Sensor_Current -Allegro_SIP-3 -Allegro Microsystems SIP-3, 1.27mm Pitch (http://www.allegromicro.com/~/media/Files/Datasheets/A1369-Datasheet.ashx) -Allegro SIP-3 -0 -3 -3 -Sensor_Current -Allegro_SIP-4 -Allegro Microsystems SIP-4, 1.27mm Pitch (http://www.allegromicro.com/~/media/Files/Datasheets/A1363-Datasheet.ashx) -Allegro SIP-4 -0 -4 -4 -Sensor_Current -Diodes_SIP-3_4.1x1.5mm_P1.27mm -Diodes SIP-3 Bulk Pack, 1.27mm Pitch (https://www.diodes.com/assets/Package-Files/SIP-3-Bulk-Pack.pdf) -Diodes SIP-3 Bulk Pack -0 -3 -3 -Sensor_Current -Diodes_SIP-3_4.1x1.5mm_P2.65mm -Diodes SIP-3 Ammo Pack, 2.65mm Pitch (https://www.diodes.com/assets/Package-Files/SIP-3-Ammo-Pack.pdf) -Diodes SIP-3 Ammo Pack -0 -3 -3 -Sensor_Current -Honeywell_CSLW -https://sensing.honeywell.com/honeywell-sensing-cslw-series-product-sheet-005861-1-en.pdf -Miniature Wired Open-Loop Current Sensor -0 -5 -5 -Sensor_Current -LEM_CKSR -LEM CKSR 6/15/25/50/75-NP Current Transducer, https://www.lem.com/sites/default/files/products_datasheets/cksr_75-np.pdf -current transducer LEM -0 -14 -14 -Sensor_Current -LEM_HO8-NP -LEM HO 8/15/25-NP Current Transducer (https://www.lem.com/sites/default/files/products_datasheets/ho-np-0000_series.pdf) -current transducer -0 -13 -13 -Sensor_Current -LEM_HO8-NSM -LEM HO 8/15/25-NSM Current Transducer (https://www.lem.com/sites/default/files/products_datasheets/ho-nsm-0000_series.pdf) -current transducer -0 -13 -13 -Sensor_Current -LEM_HO40-NP -LEM HO 40/60/120/150-NP Current Transducer (https://www.lem.com/sites/default/files/products_datasheets/ho-np_0100__1100_series.pdf) -current transducer -0 -13 -13 -Sensor_Current -LEM_HTFS -LEM HTFS x00-P current transducer (https://www.lem.com/sites/default/files/products_datasheets/htfs_200_800-p.pdf) -HTFS current transducer -0 -4 -4 -Sensor_Current -LEM_HX02-P -LEM HX02-P hall effect current transducer (https://www.lem.com/sites/default/files/products_datasheets/hx%202_6-p_e%20v5.pdf) -hall current -0 -6 -6 -Sensor_Current -LEM_HX03-P-SP2 -LEM HX03-P-SP2 hall effect current transducer (https://www.lem.com/sites/default/files/products_datasheets/hx%203_50-p_sp2_e%20v07.pdf) -hall current -0 -6 -6 -Sensor_Current -LEM_HX04-P -LEM HX04-P hall effect current transducer (https://www.lem.com/sites/default/files/products_datasheets/hx%202_6-p_e%20v5.pdf) -hall current -0 -6 -6 -Sensor_Current -LEM_HX05-NP -LEM HX05-NP hall effect current transducer (https://www.lem.com/sites/default/files/products_datasheets/hx%205_15-np_e%20v10.pdf) -hall current -0 -8 -8 -Sensor_Current -LEM_HX05-P-SP2 -LEM HX05-P-SP2 hall effect current transducer (https://www.lem.com/sites/default/files/products_datasheets/hx%203_50-p_sp2_e%20v07.pdf) -hall current -0 -6 -6 -Sensor_Current -LEM_HX06-P -LEM HX06-P hall effect current transducer (https://www.lem.com/sites/default/files/products_datasheets/hx%202_6-p_e%20v5.pdf) -hall current -0 -6 -6 -Sensor_Current -LEM_HX10-NP -LEM HX10-NP hall effect current transducer (https://www.lem.com/sites/default/files/products_datasheets/hx%205_15-np_e%20v10.pdf) -hall current -0 -8 -8 -Sensor_Current -LEM_HX10-P-SP2 -LEM HX10-P-SP2 hall effect current transducer (https://www.lem.com/sites/default/files/products_datasheets/hx%203_50-p_sp2_e%20v07.pdf) -hall current -0 -6 -6 -Sensor_Current -LEM_HX15-NP -LEM HX15-NP hall effect current transducer (https://www.lem.com/sites/default/files/products_datasheets/hx%205_15-np_e%20v10.pdf) -hall current -0 -8 -8 -Sensor_Current -LEM_HX15-P-SP2 -LEM HX15-P-SP2 hall effect current transducer (https://www.lem.com/sites/default/files/products_datasheets/hx%203_50-p_sp2_e%20v07.pdf) -hall current -0 -6 -6 -Sensor_Current -LEM_HX20-P-SP2 -LEM HX20-P-SP2 hall effect current transducer (https://www.lem.com/sites/default/files/products_datasheets/hx%203_50-p_sp2_e%20v07.pdf) -hall current -0 -6 -6 -Sensor_Current -LEM_HX25-P-SP2 -LEM HX25-P-SP2 hall effect current transducer (https://www.lem.com/sites/default/files/products_datasheets/hx%203_50-p_sp2_e%20v07.pdf) -hall current -0 -6 -6 -Sensor_Current -LEM_HX50-P-SP2 -LEM HX50-P-SP2 hall effect current transducer (https://www.lem.com/sites/default/files/products_datasheets/hx%203_50-p_sp2_e%20v07.pdf) -hall current -0 -6 -6 -Sensor_Current -LEM_LA25-P -LEM Current Transducer (https://www.lem.com/sites/default/files/products_datasheets/la_25-p.pdf) -current transducer -0 -3 -3 -Sensor_Current -LEM_LTSR-NP -LEM current transducer LEM_LTSR-NP 5V supply voltage series https://www.lem.com/sites/default/files/products_datasheets/ltsr_6-np.pdf -Current transducer -0 -10 -10 -Sensor_Distance -ST_VL53L1x -VL53L1x distance sensor -VL53L1CXV0FY1 VL53L1x -0 -13 -12 -Sensor_Humidity -Sensirion_DFN-4-1EP_2x2mm_P1mm_EP0.7x1.6mm -DFN, 4 Pin (https://www.sensirion.com/fileadmin/user_upload/customers/sensirion/Dokumente/0_Datasheets/Humidity/Sensirion_Humidity_Sensors_SHTC3_Datasheet.pdf) -Sensirion DFN NoLead -0 -10 -5 -Sensor_Humidity -Sensirion_DFN-4_1.5x1.5mm_P0.8mm_SHT4x_NoCentralPad -Sensirion, SHT40, SHT41, SHT45, DFN, 4 Pin (https://sensirion.com/media/documents/33FD6951/624C4357/Datasheet_SHT4x.pdf) -DFN NoLead -0 -4 -4 -Sensor_Humidity -Sensirion_DFN-8-1EP_2.5x2.5mm_P0.5mm_EP1.1x1.7mm -Sensirion DFN-8 SHT3x-DIS (https://www.sensirion.com/fileadmin/user_upload/customers/sensirion/Dokumente/2_Humidity_Sensors/Datasheets/Sensirion_Humidity_Sensors_SHT3x_Datasheet_digital.pdf) -sensirion dfn nolead -0 -10 -9 -Sensor_Motion -Analog_LGA-16_3.25x3mm_P0.5mm_LayoutBorder3x5y -LGA, 16 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/ADXL363.pdf#page=44) -LGA NoLead CC-16-4 -0 -16 -16 -Sensor_Motion -InvenSense_QFN-24_3x3mm_P0.4mm -24-Lead Plastic QFN (3mm x 3mm); Pitch 0.4mm; EP 1.7x1.54mm; for InvenSense motion sensors; keepout area marked (Package see: https://store.invensense.com/datasheets/invensense/MPU9250REV1.0.pdf; See also https://www.invensense.com/wp-content/uploads/2015/02/InvenSense-MEMS-Handling.pdf) -QFN 0.4 -0 -24 -24 -Sensor_Motion -InvenSense_QFN-24_3x3mm_P0.4mm_NoMask -24-Lead Plastic QFN (3mm x 3mm); Pitch 0.4mm; EP 1.7x1.54mm; for InvenSense motion sensors; Mask removed below exposed pad; keepout area marked (Package see: https://store.invensense.com/datasheets/invensense/MPU9250REV1.0.pdf; See also https://www.invensense.com/wp-content/uploads/2015/02/InvenSense-MEMS-Handling.pdf) -QFN 0.4 -0 -25 -24 -Sensor_Motion -InvenSense_QFN-24_4x4mm_P0.5mm -24-Lead Plastic QFN (4mm x 4mm); Pitch 0.5mm; EP 2.7x2.6mm; for InvenSense motion sensors; keepout area marked (Package see: https://store.invensense.com/datasheets/invensense/MPU-6050_DataSheet_V3%204.pdf; See also https://www.invensense.com/wp-content/uploads/2015/02/InvenSense-MEMS-Handling.pdf) -QFN 0.5 -0 -24 -24 -Sensor_Motion -InvenSense_QFN-24_4x4mm_P0.5mm_NoMask -24-Lead Plastic QFN (4mm x 4mm); Pitch 0.5mm; EP 2.7x2.6mm; for InvenSense motion sensors; Mask removed below exposed pad; keepout area marked (Package see: https://store.invensense.com/datasheets/invensense/MPU-6050_DataSheet_V3%204.pdf; See also https://www.invensense.com/wp-content/uploads/2015/02/InvenSense-MEMS-Handling.pdf) -QFN 0.5 -0 -25 -24 -Sensor_Pressure -Freescale_98ARH99066A -https://www.nxp.com/docs/en/data-sheet/MPXH6250A.pdf -sensor pressure ssop 98ARH99066A -0 -8 -8 -Sensor_Pressure -Freescale_98ARH99089A -https://www.nxp.com/docs/en/data-sheet/MPXH6250A.pdf -sensor pressure ssop 98ARH99089A -0 -8 -8 -Sensor_Pressure -Honeywell_40PCxxxG1A -https://www.honeywellscportal.com/index.php?ci_id=138832 -pressure sensor automotive honeywell -0 -3 -3 -Sensor_Pressure -TE_MS5525DSO-DBxxxyS -Pressure Sensor, Dual-Barbed, https://www.te.com/commerce/DocumentDelivery/DDEController?Action=srchrtrv&DocNm=MS5525DSO&DocType=DS&DocLang=English -Pressure DualBarbed -0 -14 -14 -Sensor_Pressure -TE_MS5837-xxBA -https://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Data+Sheet%7FMS5837-30BA%7FB1%7Fpdf%7FEnglish%7FENG_DS_MS5837-30BA_B1.pdf%7FCAT-BLPS0017 -MS5837 Ultra-small gel-filled pressure sensor with stainless steel cap -0 -4 -4 -Sensor_Voltage -LEM_LV25-P -LEM LV25-P Voltage transducer, https://www.lem.com/sites/default/files/products_datasheets/lv_25-p.pdf -LEM Hall Effect Voltage transducer -0 -5 -5 -Socket -3M_Textool_240-1288-00-0602J_2x20_P2.54mm -3M 40-pin zero insertion force socket, though-hole, row spacing 25.4 mm (1000 mils) -THT DIP DIL ZIF 25.4mm 1000mil Socket -0 -40 -40 -Socket -DIP_Socket-14_W4.3_W5.08_W7.62_W10.16_W10.9_3M_214-3339-00-0602J -3M 14-pin zero insertion force socket, through-hole, row spacing 7.62 mm (300 mils), http://multimedia.3m.com/mws/media/494546O/3mtm-dip-sockets-100-2-54-mm-ts0365.pdf -THT DIP DIL ZIF 7.62mm 300mil Socket -0 -14 -14 -Socket -DIP_Socket-16_W4.3_W5.08_W7.62_W10.16_W10.9_3M_216-3340-00-0602J -3M 16-pin zero insertion force socket, through-hole, row spacing 7.62 mm (300 mils), http://multimedia.3m.com/mws/media/494546O/3mtm-dip-sockets-100-2-54-mm-ts0365.pdf -THT DIP DIL ZIF 7.62mm 300mil Socket -0 -16 -16 -Socket -DIP_Socket-18_W4.3_W5.08_W7.62_W10.16_W10.9_3M_218-3341-00-0602J -3M 18-pin zero insertion force socket, through-hole, row spacing 7.62 mm (300 mils), http://multimedia.3m.com/mws/media/494546O/3mtm-dip-sockets-100-2-54-mm-ts0365.pdf -THT DIP DIL ZIF 7.62mm 300mil Socket -0 -18 -18 -Socket -DIP_Socket-20_W4.3_W5.08_W7.62_W10.16_W10.9_3M_220-3342-00-0602J -3M 20-pin zero insertion force socket, through-hole, row spacing 7.62 mm (300 mils), http://multimedia.3m.com/mws/media/494546O/3mtm-dip-sockets-100-2-54-mm-ts0365.pdf -THT DIP DIL ZIF 7.62mm 300mil Socket -0 -20 -20 -Socket -DIP_Socket-22_W6.9_W7.62_W10.16_W12.7_W13.5_3M_222-3343-00-0602J -3M 22-pin zero insertion force socket, through-hole, row spacing 10.16 mm (400 mils), http://multimedia.3m.com/mws/media/494546O/3mtm-dip-sockets-100-2-54-mm-ts0365.pdf -THT DIP DIL ZIF 10.16mm 400mil Socket -0 -22 -22 -Socket -DIP_Socket-24_W4.3_W5.08_W7.62_W10.16_W10.9_3M_224-5248-00-0602J -3M 24-pin zero insertion force socket, through-hole, row spacing 7.62 mm (300 mils), http://multimedia.3m.com/mws/media/494546O/3mtm-dip-sockets-100-2-54-mm-ts0365.pdf -THT DIP DIL ZIF 7.62mm 300mil Socket -0 -24 -24 -Socket -DIP_Socket-24_W11.9_W12.7_W15.24_W17.78_W18.5_3M_224-1275-00-0602J -3M 24-pin zero insertion force socket, through-hole, row spacing 15.24 mm (600 mils), http://multimedia.3m.com/mws/media/494546O/3mtm-dip-sockets-100-2-54-mm-ts0365.pdf -THT DIP DIL ZIF 15.24mm 600mil Socket -0 -24 -24 -Socket -DIP_Socket-28_W6.9_W7.62_W10.16_W12.7_W13.5_3M_228-4817-00-0602J -3M 28-pin zero insertion force socket, through-hole, row spacing 10.16 mm (400 mils), http://multimedia.3m.com/mws/media/494546O/3mtm-dip-sockets-100-2-54-mm-ts0365.pdf -THT DIP DIL ZIF 10.16mm 400mil Socket -0 -28 -28 -Socket -DIP_Socket-28_W11.9_W12.7_W15.24_W17.78_W18.5_3M_228-1277-00-0602J -3M 28-pin zero insertion force socket, through-hole, row spacing 15.24 mm (600 mils), http://multimedia.3m.com/mws/media/494546O/3mtm-dip-sockets-100-2-54-mm-ts0365.pdf -THT DIP DIL ZIF 15.24mm 600mil Socket -0 -28 -28 -Socket -DIP_Socket-32_W11.9_W12.7_W15.24_W17.78_W18.5_3M_232-1285-00-0602J -3M 32-pin zero insertion force socket, through-hole, row spacing 15.24 mm (600 mils), http://multimedia.3m.com/mws/media/494546O/3mtm-dip-sockets-100-2-54-mm-ts0365.pdf -THT DIP DIL ZIF 15.24mm 600mil Socket -0 -32 -32 -Socket -DIP_Socket-40_W11.9_W12.7_W15.24_W17.78_W18.5_3M_240-1280-00-0602J -3M 40-pin zero insertion force socket, through-hole, row spacing 15.24 mm (600 mils), http://multimedia.3m.com/mws/media/494546O/3mtm-dip-sockets-100-2-54-mm-ts0365.pdf -THT DIP DIL ZIF 15.24mm 600mil Socket -0 -40 -40 -Socket -DIP_Socket-40_W22.1_W22.86_W25.4_W27.94_W28.7_3M_240-3639-00-0602J -3M 40-pin zero insertion force socket, through-hole, row spacing 25.4 mm (1000 mils), http://multimedia.3m.com/mws/media/494546O/3mtm-dip-sockets-100-2-54-mm-ts0365.pdf -THT DIP DIL ZIF 25.4mm 1000mil Socket -0 -40 -40 -Socket -DIP_Socket-42_W11.9_W12.7_W15.24_W17.78_W18.5_3M_242-1281-00-0602J -3M 42-pin zero insertion force socket, through-hole, row spacing 15.24 mm (600 mils), http://multimedia.3m.com/mws/media/494546O/3mtm-dip-sockets-100-2-54-mm-ts0365.pdf -THT DIP DIL ZIF 15.24mm 600mil Socket -0 -42 -42 -Socket -Wells_648-0482211SA01 -https://www.farnell.com/cad/316865.pdf?_ga=2.37208032.177107060.1530611323-249019997.1498114824 -48pin TSOP Socket -0 -48 -48 -Symbol -CE-Logo_8.5x6mm_SilkScreen -CE marking -Logo CE certification -0 -0 -0 -Symbol -CE-Logo_11.2x8mm_SilkScreen -CE marking -Logo CE certification -0 -0 -0 -Symbol -CE-Logo_16.8x12mm_SilkScreen -CE marking -Logo CE certification -0 -0 -0 -Symbol -CE-Logo_28x20mm_SilkScreen -CE marking -Logo CE certification -0 -0 -0 -Symbol -CE-Logo_42x30mm_SilkScreen -CE marking -Logo CE certification -0 -0 -0 -Symbol -CE-Logo_56.1x40mm_SilkScreen -CE marking -Logo CE certification -0 -0 -0 -Symbol -ESD-Logo_6.6x6mm_SilkScreen -Electrostatic discharge Logo -Logo ESD -0 -0 -0 -Symbol -ESD-Logo_8.9x8mm_SilkScreen -Electrostatic discharge Logo -Logo ESD -0 -0 -0 -Symbol -ESD-Logo_13.2x12mm_SilkScreen -Electrostatic discharge Logo -Logo ESD -0 -0 -0 -Symbol -ESD-Logo_22x20mm_SilkScreen -Electrostatic discharge Logo -Logo ESD -0 -0 -0 -Symbol -ESD-Logo_33x30mm_SilkScreen -Electrostatic discharge Logo -Logo ESD -0 -0 -0 -Symbol -ESD-Logo_44.1x40mm_SilkScreen -Electrostatic discharge Logo -Logo ESD -0 -0 -0 -Symbol -EasterEgg_EWG1308-2013_ClassA -Egg with 42x60mm Body-Size, ClassA, according to EWG1308/2013 -egg easter -0 -0 -0 -Symbol -FCC-Logo_7.3x6mm_SilkScreen -FCC marking -Logo FCC certification -0 -0 -0 -Symbol -FCC-Logo_9.6x8mm_SilkScreen -FCC marking -Logo FCC certification -0 -0 -0 -Symbol -FCC-Logo_14.6x12mm_SilkScreen -FCC marking -Logo FCC certification -0 -0 -0 -Symbol -FCC-Logo_24.2x20mm_SilkScreen -FCC marking -Logo FCC certification -0 -0 -0 -Symbol -FCC-Logo_36.3x30mm_SilkScreen -FCC marking -Logo FCC certification -0 -0 -0 -Symbol -FCC-Logo_48.3x40mm_SilkScreen -FCC marking -Logo FCC certification -0 -0 -0 -Symbol -KiCad-Logo2_5mm_Copper -KiCad Logo -Logo KiCad -0 -0 -0 -Symbol -KiCad-Logo2_5mm_SilkScreen -KiCad Logo -Logo KiCad -0 -0 -0 -Symbol -KiCad-Logo2_6mm_Copper -KiCad Logo -Logo KiCad -0 -0 -0 -Symbol -KiCad-Logo2_6mm_SilkScreen -KiCad Logo -Logo KiCad -0 -0 -0 -Symbol -KiCad-Logo2_8mm_Copper -KiCad Logo -Logo KiCad -0 -0 -0 -Symbol -KiCad-Logo2_8mm_SilkScreen -KiCad Logo -Logo KiCad -0 -0 -0 -Symbol -KiCad-Logo2_12mm_Copper -KiCad Logo -Logo KiCad -0 -0 -0 -Symbol -KiCad-Logo2_12mm_SilkScreen -KiCad Logo -Logo KiCad -0 -0 -0 -Symbol -KiCad-Logo2_20mm_Copper -KiCad Logo -Logo KiCad -0 -0 -0 -Symbol -KiCad-Logo2_20mm_SilkScreen -KiCad Logo -Logo KiCad -0 -0 -0 -Symbol -KiCad-Logo2_30mm_Copper -KiCad Logo -Logo KiCad -0 -0 -0 -Symbol -KiCad-Logo2_30mm_SilkScreen -KiCad Logo -Logo KiCad -0 -0 -0 -Symbol -KiCad-Logo2_40mm_Copper -KiCad Logo -Logo KiCad -0 -0 -0 -Symbol -KiCad-Logo2_40mm_SilkScreen -KiCad Logo -Logo KiCad -0 -0 -0 -Symbol -KiCad-Logo_5mm_Copper -KiCad Logo -Logo KiCad -0 -0 -0 -Symbol -KiCad-Logo_5mm_SilkScreen -KiCad Logo -Logo KiCad -0 -0 -0 -Symbol -KiCad-Logo_6mm_Copper -KiCad Logo -Logo KiCad -0 -0 -0 -Symbol -KiCad-Logo_6mm_SilkScreen -KiCad Logo -Logo KiCad -0 -0 -0 -Symbol -KiCad-Logo_8mm_Copper -KiCad Logo -Logo KiCad -0 -0 -0 -Symbol -KiCad-Logo_8mm_SilkScreen -KiCad Logo -Logo KiCad -0 -0 -0 -Symbol -KiCad-Logo_12mm_Copper -KiCad Logo -Logo KiCad -0 -0 -0 -Symbol -KiCad-Logo_12mm_SilkScreen -KiCad Logo -Logo KiCad -0 -0 -0 -Symbol -KiCad-Logo_20mm_Copper -KiCad Logo -Logo KiCad -0 -0 -0 -Symbol -KiCad-Logo_20mm_SilkScreen -KiCad Logo -Logo KiCad -0 -0 -0 -Symbol -KiCad-Logo_30mm_Copper -KiCad Logo -Logo KiCad -0 -0 -0 -Symbol -KiCad-Logo_30mm_SilkScreen -KiCad Logo -Logo KiCad -0 -0 -0 -Symbol -KiCad-Logo_40mm_Copper -KiCad Logo -Logo KiCad -0 -0 -0 -Symbol -KiCad-Logo_40mm_SilkScreen -KiCad Logo -Logo KiCad -0 -0 -0 -Symbol -OSHW-Logo2_7.3x6mm_Copper -Open Source Hardware Symbol -Logo Symbol OSHW -0 -0 -0 -Symbol -OSHW-Logo2_7.3x6mm_SilkScreen -Open Source Hardware Symbol -Logo Symbol OSHW -0 -0 -0 -Symbol -OSHW-Logo2_9.8x8mm_Copper -Open Source Hardware Symbol -Logo Symbol OSHW -0 -0 -0 -Symbol -OSHW-Logo2_9.8x8mm_SilkScreen -Open Source Hardware Symbol -Logo Symbol OSHW -0 -0 -0 -Symbol -OSHW-Logo2_14.6x12mm_Copper -Open Source Hardware Symbol -Logo Symbol OSHW -0 -0 -0 -Symbol -OSHW-Logo2_14.6x12mm_SilkScreen -Open Source Hardware Symbol -Logo Symbol OSHW -0 -0 -0 -Symbol -OSHW-Logo2_24.3x20mm_Copper -Open Source Hardware Symbol -Logo Symbol OSHW -0 -0 -0 -Symbol -OSHW-Logo2_24.3x20mm_SilkScreen -Open Source Hardware Symbol -Logo Symbol OSHW -0 -0 -0 -Symbol -OSHW-Logo2_36.5x30mm_Copper -Open Source Hardware Symbol -Logo Symbol OSHW -0 -0 -0 -Symbol -OSHW-Logo2_36.5x30mm_SilkScreen -Open Source Hardware Symbol -Logo Symbol OSHW -0 -0 -0 -Symbol -OSHW-Logo2_48.7x40mm_Copper -Open Source Hardware Symbol -Logo Symbol OSHW -0 -0 -0 -Symbol -OSHW-Logo2_48.7x40mm_SilkScreen -Open Source Hardware Symbol -Logo Symbol OSHW -0 -0 -0 -Symbol -OSHW-Logo_5.7x6mm_Copper -Open Source Hardware Logo -Logo OSHW -0 -0 -0 -Symbol -OSHW-Logo_5.7x6mm_SilkScreen -Open Source Hardware Logo -Logo OSHW -0 -0 -0 -Symbol -OSHW-Logo_7.5x8mm_Copper -Open Source Hardware Logo -Logo OSHW -0 -0 -0 -Symbol -OSHW-Logo_7.5x8mm_SilkScreen -Open Source Hardware Logo -Logo OSHW -0 -0 -0 -Symbol -OSHW-Logo_11.4x12mm_Copper -Open Source Hardware Logo -Logo OSHW -0 -0 -0 -Symbol -OSHW-Logo_11.4x12mm_SilkScreen -Open Source Hardware Logo -Logo OSHW -0 -0 -0 -Symbol -OSHW-Logo_19x20mm_Copper -Open Source Hardware Logo -Logo OSHW -0 -0 -0 -Symbol -OSHW-Logo_19x20mm_SilkScreen -Open Source Hardware Logo -Logo OSHW -0 -0 -0 -Symbol -OSHW-Logo_28.5x30mm_Copper -Open Source Hardware Logo -Logo OSHW -0 -0 -0 -Symbol -OSHW-Logo_28.5x30mm_SilkScreen -Open Source Hardware Logo -Logo OSHW -0 -0 -0 -Symbol -OSHW-Logo_38.1x40mm_Copper -Open Source Hardware Logo -Logo OSHW -0 -0 -0 -Symbol -OSHW-Logo_38.1x40mm_SilkScreen -Open Source Hardware Logo -Logo OSHW -0 -0 -0 -Symbol -OSHW-Symbol_6.7x6mm_Copper -Open Source Hardware Symbol -Logo Symbol OSHW -0 -0 -0 -Symbol -OSHW-Symbol_6.7x6mm_SilkScreen -Open Source Hardware Symbol -Logo Symbol OSHW -0 -0 -0 -Symbol -OSHW-Symbol_8.9x8mm_Copper -Open Source Hardware Symbol -Logo Symbol OSHW -0 -0 -0 -Symbol -OSHW-Symbol_8.9x8mm_SilkScreen -Open Source Hardware Symbol -Logo Symbol OSHW -0 -0 -0 -Symbol -OSHW-Symbol_13.4x12mm_Copper -Open Source Hardware Symbol -Logo Symbol OSHW -0 -0 -0 -Symbol -OSHW-Symbol_13.4x12mm_SilkScreen -Open Source Hardware Symbol -Logo Symbol OSHW -0 -0 -0 -Symbol -OSHW-Symbol_22.3x20mm_Copper -Open Source Hardware Symbol -Logo Symbol OSHW -0 -0 -0 -Symbol -OSHW-Symbol_22.3x20mm_SilkScreen -Open Source Hardware Symbol -Logo Symbol OSHW -0 -0 -0 -Symbol -OSHW-Symbol_33.5x30mm_Copper -Open Source Hardware Symbol -Logo Symbol OSHW -0 -0 -0 -Symbol -OSHW-Symbol_33.5x30mm_SilkScreen -Open Source Hardware Symbol -Logo Symbol OSHW -0 -0 -0 -Symbol -OSHW-Symbol_44.5x40mm_Copper -Open Source Hardware Symbol -Logo Symbol OSHW -0 -0 -0 -Symbol -OSHW-Symbol_44.5x40mm_SilkScreen -Open Source Hardware Symbol -Logo Symbol OSHW -0 -0 -0 -Symbol -Polarity_Center_Negative_6mm_SilkScreen -Polarity Logo, Center Negative -Logo Polarity Center Negative -0 -0 -0 -Symbol -Polarity_Center_Negative_8mm_SilkScreen -Polarity Logo, Center Negative -Logo Polarity Center Negative -0 -0 -0 -Symbol -Polarity_Center_Negative_12mm_SilkScreen -Polarity Logo, Center Negative -Logo Polarity Center Negative -0 -0 -0 -Symbol -Polarity_Center_Negative_20mm_SilkScreen -Polarity Logo, Center Negative -Logo Polarity Center Negative -0 -0 -0 -Symbol -Polarity_Center_Negative_30mm_SilkScreen -Polarity Logo, Center Negative -Logo Polarity Center Negative -0 -0 -0 -Symbol -Polarity_Center_Negative_40mm_SilkScreen -Polarity Logo, Center Negative -Logo Polarity Center Negative -0 -0 -0 -Symbol -Polarity_Center_Positive_6mm_SilkScreen -Polarity Logo, Center Positive -Logo Polarity Center Positive -0 -0 -0 -Symbol -Polarity_Center_Positive_8mm_SilkScreen -Polarity Logo, Center Positive -Logo Polarity Center Positive -0 -0 -0 -Symbol -Polarity_Center_Positive_12mm_SilkScreen -Polarity Logo, Center Positive -Logo Polarity Center Positive -0 -0 -0 -Symbol -Polarity_Center_Positive_20mm_SilkScreen -Polarity Logo, Center Positive -Logo Polarity Center Positive -0 -0 -0 -Symbol -Polarity_Center_Positive_30mm_SilkScreen -Polarity Logo, Center Positive -Logo Polarity Center Positive -0 -0 -0 -Symbol -Polarity_Center_Positive_40mm_SilkScreen -Polarity Logo, Center Positive -Logo Polarity Center Positive -0 -0 -0 -Symbol -RoHS-Logo_6mm_SilkScreen -Restriction of Hazardous Substances Directive Logo -Logo RoHS -0 -0 -0 -Symbol -RoHS-Logo_8mm_SilkScreen -Restriction of Hazardous Substances Directive Logo -Logo RoHS -0 -0 -0 -Symbol -RoHS-Logo_12mm_SilkScreen -Restriction of Hazardous Substances Directive Logo -Logo RoHS -0 -0 -0 -Symbol -RoHS-Logo_20mm_SilkScreen -Restriction of Hazardous Substances Directive Logo -Logo RoHS -0 -0 -0 -Symbol -RoHS-Logo_30mm_SilkScreen -Restriction of Hazardous Substances Directive Logo -Logo RoHS -0 -0 -0 -Symbol -RoHS-Logo_40mm_SilkScreen -Restriction of Hazardous Substances Directive Logo -Logo RoHS -0 -0 -0 -Symbol -Symbol_Attention_CopperTop_Big -Symbol, Attention, Copper Top, Big, -Symbol, Attention, Copper Top, Big, -0 -0 -0 -Symbol -Symbol_Attention_CopperTop_Small -Symbol, Attention, Copper Top, Small, -Symbol, Attention, Copper Top, Small, -0 -0 -0 -Symbol -Symbol_Barrel_Polarity -Barrel connector polarity indicator -barrel polarity -0 -0 -0 -Symbol -Symbol_CC-Attribution_CopperTop_Big -Symbol, CC-Attribution, Copper Top, Big, -Symbol, CC-Attribution, Copper Top, Big, -0 -0 -0 -Symbol -Symbol_CC-Attribution_CopperTop_Small -Symbol, CC-Share Alike, Copper Top, Small, -Symbol, CC-Share Alike, Copper Top, Small, -0 -0 -0 -Symbol -Symbol_CC-Noncommercial_CopperTop_Big -Symbol, CC-Noncommercial, Copper Top, Big, -Symbol, CC-Noncommercial, Copper Top, Big, -0 -0 -0 -Symbol -Symbol_CC-Noncommercial_CopperTop_Small -Symbol, CC-Noncommercial Alike, Copper Top, Small, -Symbol, CC-Noncommercial Alike, Copper Top, Small, -0 -0 -0 -Symbol -Symbol_CC-PublicDomain_CopperTop_Big -Symbol, CC-PublicDomain, Copper Top, Big, -Symbol, CC-PublicDomain, Copper Top, Big, -0 -0 -0 -Symbol -Symbol_CC-PublicDomain_CopperTop_Small -Symbol, CC-Public Domain, Copper Top, Small, -Symbol, CC-Public Domain, Copper Top, Small, -0 -0 -0 -Symbol -Symbol_CC-PublicDomain_SilkScreenTop_Big -Symbol, CC-PublicDomain, SilkScreen Top, Big, -Symbol, CC-PublicDomain, SilkScreen Top, Big, -0 -0 -0 -Symbol -Symbol_CC-ShareAlike_CopperTop_Big -Symbol, CC-Share Alike, Copper Top, Big, -Symbol, CC-Share Alike, Copper Top, Big, -0 -0 -0 -Symbol -Symbol_CC-ShareAlike_CopperTop_Small -Symbol, CC-Share Alike, Copper Top, Small, -Symbol, CC-Share Alike, Copper Top, Small, -0 -0 -0 -Symbol -Symbol_CreativeCommonsPublicDomain_CopperTop_Small -Symbol, Creative Commons Public Domain, CopperTop, Small, -Symbol, Creative Commons Public Domain, CopperTop, Small, -0 -0 -0 -Symbol -Symbol_CreativeCommonsPublicDomain_SilkScreenTop_Small -Symbol, Creative Commons Public Domain, SilkScreenTop, Small, -Symbol, Creative Commons Public Domain, SilkScreen Top, Small, -0 -0 -0 -Symbol -Symbol_CreativeCommons_CopperTop_Type1_Big -Symbol, Creative Commons, CopperTop, Type 1, Big, -Symbol, Creative Commons, CopperTop, Type 1, Big, -0 -0 -0 -Symbol -Symbol_CreativeCommons_CopperTop_Type2_Big -Symbol, Creative Commons, CopperTop, Type 2, Big, -Symbol, Creative Commons, CopperTop, Type 2, Big, -0 -0 -0 -Symbol -Symbol_CreativeCommons_CopperTop_Type2_Small -Symbol, Creative Commons, CopperTop, Type 2, Small, -Symbol, Creative Commons, CopperTop, Type 2, Small, -0 -0 -0 -Symbol -Symbol_CreativeCommons_SilkScreenTop_Type2_Big -Symbol, Creative Commons, SilkScreen Top, Type 2, Big, -Symbol, Creative Commons, SilkScreen Top, Type 2, Big, -0 -0 -0 -Symbol -Symbol_Danger_CopperTop_Big -Symbol, Danger, CopperTop, Big, -Symbol, Danger, CopperTop, Big, -0 -0 -0 -Symbol -Symbol_Danger_CopperTop_Small -Symbol, Danger, Copper Top, Small, -Symbol, Danger, Copper Top, Small, -0 -0 -0 -Symbol -Symbol_ESD-Logo-Text_CopperTop - - -0 -0 -0 -Symbol -Symbol_ESD-Logo_CopperTop -ESD-Logo, similar JEDEC-14, without text, ohne Text, Copper Top, -ESD-Logo, similar JEDEC-14, without text, ohne Text, Copper Top, -0 -0 -0 -Symbol -Symbol_GNU-GPL_CopperTop_Big -Symbol, GNU-GPL, Copper Top, Big, -Symbol, GNU-GPL, Copper Top, Big, -0 -0 -0 -Symbol -Symbol_GNU-GPL_CopperTop_Small -Symbol, GNU-GPL, Copper Top, Small, -Symbol, GNU-GPL, Copper Top, Small, -0 -0 -0 -Symbol -Symbol_GNU-Logo_CopperTop -GNU-Logo, GNU-Head, GNU-Kopf, Copper Top, -GNU-Logo, GNU-Head, GNU-Kopf, Copper Top, -0 -0 -0 -Symbol -Symbol_GNU-Logo_SilkscreenTop -GNU-Logo, GNU-Head, GNU-Kopf, Silkscreen, -GNU-Logo, GNU-Head, GNU-Kopf, Silkscreen, -0 -0 -0 -Symbol -Symbol_HighVoltage_Type1_CopperTop_Big -Symbol, HighVoltage, Type1, Copper Top, Big, -Symbol, HighVoltage, Type1, Copper Top, Big, -0 -0 -0 -Symbol -Symbol_HighVoltage_Type2_CopperTop_Big -Symbol, HighVoltage, Type2, Copper Top, Big, -Symbol, HighVoltage, Type2, Copper Top, Big, -0 -0 -0 -Symbol -Symbol_HighVoltage_Type2_CopperTop_VerySmall -Symbol, High Voltage, Type 2, Copper Top, Very Small, -Symbol, High Voltage, Type 2, Copper Top, Very Small, -0 -0 -0 -Symbol -Symbol_Highvoltage_Type1_CopperTop_Small -Symbol, Highvoltage, Type 1, Copper Top, Small, -Symbol, Highvoltage, Type 1, Copper Top, Small, -0 -0 -0 -Symbol -Symbol_Highvoltage_Type2_CopperTop_Small -Symbol, Highvoltage, Type 2, Copper Top, Small, -Symbol, Highvoltage, Type 2, Copper Top, Small, -0 -0 -0 -Symbol -UKCA-Logo_6x6mm_SilkScreen -UKCA marking -Logo UKCA marking -0 -0 -0 -Symbol -UKCA-Logo_8x8mm_SilkScreen -UKCA marking -Logo UKCA marking -0 -0 -0 -Symbol -UKCA-Logo_12x12mm_SilkScreen -UKCA marking -Logo UKCA marking -0 -0 -0 -Symbol -UKCA-Logo_20x20mm_SilkScreen -UKCA marking -Logo UKCA marking -0 -0 -0 -Symbol -UKCA-Logo_30x30mm_SilkScreen -UKCA marking -Logo UKCA marking -0 -0 -0 -Symbol -UKCA-Logo_40x40mm_SilkScreen -UKCA marking -Logo UKCA marking -0 -0 -0 -Symbol -WEEE-Logo_4.2x6mm_SilkScreen -Waste Electrical and Electronic Equipment Directive -Logo WEEE -0 -0 -0 -Symbol -WEEE-Logo_5.6x8mm_SilkScreen -Waste Electrical and Electronic Equipment Directive -Logo WEEE -0 -0 -0 -Symbol -WEEE-Logo_8.4x12mm_SilkScreen -Waste Electrical and Electronic Equipment Directive -Logo WEEE -0 -0 -0 -Symbol -WEEE-Logo_14x20mm_SilkScreen -Waste Electrical and Electronic Equipment Directive -Logo WEEE -0 -0 -0 -Symbol -WEEE-Logo_21x30mm_SilkScreen -Waste Electrical and Electronic Equipment Directive -Logo WEEE -0 -0 -0 -Symbol -WEEE-Logo_28.1x40mm_SilkScreen -Waste Electrical and Electronic Equipment Directive -Logo WEEE -0 -0 -0 -TerminalBlock -TerminalBlock_Altech_AK300-2_P5.00mm -Altech AK300 terminal block, pitch 5.0mm, 45 degree angled, see http://www.mouser.com/ds/2/16/PCBMETRC-24178.pdf -Altech AK300 terminal block pitch 5.0mm -0 -2 -2 -TerminalBlock -TerminalBlock_Altech_AK300-3_P5.00mm -Altech AK300 terminal block, pitch 5.0mm, 45 degree angled, see http://www.mouser.com/ds/2/16/PCBMETRC-24178.pdf -Altech AK300 terminal block pitch 5.0mm -0 -3 -3 -TerminalBlock -TerminalBlock_Altech_AK300-4_P5.00mm -Altech AK300 terminal block, pitch 5.0mm, 45 degree angled, see http://www.mouser.com/ds/2/16/PCBMETRC-24178.pdf -Altech AK300 terminal block pitch 5.0mm -0 -4 -4 -TerminalBlock -TerminalBlock_Wuerth_691311400102_P7.62mm -https://katalog.we-online.de/em/datasheet/6913114001xx.pdf -Wuerth WR-TBL Series 3114 terminal block pitch 7.62mm -0 -2 -2 -TerminalBlock -TerminalBlock_bornier-2_P5.08mm -simple 2-pin terminal block, pitch 5.08mm, revamped version of bornier2 -terminal block bornier2 -0 -2 -2 -TerminalBlock -TerminalBlock_bornier-3_P5.08mm -simple 3-pin terminal block, pitch 5.08mm, revamped version of bornier3 -terminal block bornier3 -0 -3 -3 -TerminalBlock -TerminalBlock_bornier-4_P5.08mm -simple 4-pin terminal block, pitch 5.08mm, revamped version of bornier4 -terminal block bornier4 -0 -4 -4 -TerminalBlock -TerminalBlock_bornier-5_P5.08mm -simple 5-pin terminal block, pitch 5.08mm, revamped version of bornier5 -terminal block bornier5 -0 -5 -5 -TerminalBlock -TerminalBlock_bornier-6_P5.08mm -simple 6pin terminal block, pitch 5.08mm, revamped version of bornier6 -terminal block bornier6 -0 -6 -6 -TerminalBlock_4Ucon -TerminalBlock_4Ucon_1x02_P3.50mm_Horizontal -Terminal Block 4Ucon ItemNo. 19963, 2 pins, pitch 3.5mm, size 7.7x7mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see http://www.4uconnector.com/online/object/4udrawing/19963.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon -THT Terminal Block 4Ucon ItemNo. 19963 pitch 3.5mm size 7.7x7mm^2 drill 1.2mm pad 2.4mm -0 -2 -2 -TerminalBlock_4Ucon -TerminalBlock_4Ucon_1x02_P3.50mm_Vertical -Terminal Block 4Ucon ItemNo. 10693, vertical (cable from top), 2 pins, pitch 3.5mm, size 8x8.3mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.4uconnector.com/online/object/4udrawing/10693.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon -THT Terminal Block 4Ucon ItemNo. 10693 vertical pitch 3.5mm size 8x8.3mm^2 drill 1.3mm pad 2.6mm -0 -2 -2 -TerminalBlock_4Ucon -TerminalBlock_4Ucon_1x03_P3.50mm_Horizontal -Terminal Block 4Ucon ItemNo. 20193, 3 pins, pitch 3.5mm, size 11.2x7mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see http://www.4uconnector.com/online/object/4udrawing/20193.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon -THT Terminal Block 4Ucon ItemNo. 20193 pitch 3.5mm size 11.2x7mm^2 drill 1.2mm pad 2.4mm -0 -3 -3 -TerminalBlock_4Ucon -TerminalBlock_4Ucon_1x03_P3.50mm_Vertical -Terminal Block 4Ucon ItemNo. 10694, vertical (cable from top), 3 pins, pitch 3.5mm, size 11.5x8.3mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.4uconnector.com/online/object/4udrawing/10694.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon -THT Terminal Block 4Ucon ItemNo. 10694 vertical pitch 3.5mm size 11.5x8.3mm^2 drill 1.3mm pad 2.6mm -0 -3 -3 -TerminalBlock_4Ucon -TerminalBlock_4Ucon_1x04_P3.50mm_Horizontal -Terminal Block 4Ucon ItemNo. 20001, 4 pins, pitch 3.5mm, size 14.7x7mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see http://www.4uconnector.com/online/object/4udrawing/20001.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon -THT Terminal Block 4Ucon ItemNo. 20001 pitch 3.5mm size 14.7x7mm^2 drill 1.2mm pad 2.4mm -0 -4 -4 -TerminalBlock_4Ucon -TerminalBlock_4Ucon_1x04_P3.50mm_Vertical -Terminal Block 4Ucon ItemNo. 10695, vertical (cable from top), 4 pins, pitch 3.5mm, size 15x8.3mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.4uconnector.com/online/object/4udrawing/10695.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon -THT Terminal Block 4Ucon ItemNo. 10695 vertical pitch 3.5mm size 15x8.3mm^2 drill 1.3mm pad 2.6mm -0 -4 -4 -TerminalBlock_4Ucon -TerminalBlock_4Ucon_1x05_P3.50mm_Horizontal -Terminal Block 4Ucon ItemNo. 20223, 5 pins, pitch 3.5mm, size 18.2x7mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see http://www.4uconnector.com/online/object/4udrawing/20223.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon -THT Terminal Block 4Ucon ItemNo. 20223 pitch 3.5mm size 18.2x7mm^2 drill 1.2mm pad 2.4mm -0 -5 -5 -TerminalBlock_4Ucon -TerminalBlock_4Ucon_1x05_P3.50mm_Vertical -Terminal Block 4Ucon ItemNo. 10696, vertical (cable from top), 5 pins, pitch 3.5mm, size 18.5x8.3mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.4uconnector.com/online/object/4udrawing/10696.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon -THT Terminal Block 4Ucon ItemNo. 10696 vertical pitch 3.5mm size 18.5x8.3mm^2 drill 1.3mm pad 2.6mm -0 -5 -5 -TerminalBlock_4Ucon -TerminalBlock_4Ucon_1x06_P3.50mm_Horizontal -Terminal Block 4Ucon ItemNo. 19964, 6 pins, pitch 3.5mm, size 21.7x7mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see http://www.4uconnector.com/online/object/4udrawing/19964.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon -THT Terminal Block 4Ucon ItemNo. 19964 pitch 3.5mm size 21.7x7mm^2 drill 1.2mm pad 2.4mm -0 -6 -6 -TerminalBlock_4Ucon -TerminalBlock_4Ucon_1x06_P3.50mm_Vertical -Terminal Block 4Ucon ItemNo. 10697, vertical (cable from top), 6 pins, pitch 3.5mm, size 22x8.3mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.4uconnector.com/online/object/4udrawing/10697.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon -THT Terminal Block 4Ucon ItemNo. 10697 vertical pitch 3.5mm size 22x8.3mm^2 drill 1.3mm pad 2.6mm -0 -6 -6 -TerminalBlock_4Ucon -TerminalBlock_4Ucon_1x07_P3.50mm_Horizontal -Terminal Block 4Ucon ItemNo. 10684, 7 pins, pitch 3.5mm, size 25.2x7mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see http://www.4uconnector.com/online/object/4udrawing/10684.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon -THT Terminal Block 4Ucon ItemNo. 10684 pitch 3.5mm size 25.2x7mm^2 drill 1.2mm pad 2.4mm -0 -7 -7 -TerminalBlock_4Ucon -TerminalBlock_4Ucon_1x07_P3.50mm_Vertical -Terminal Block 4Ucon ItemNo. 10698, vertical (cable from top), 7 pins, pitch 3.5mm, size 25.5x8.3mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.4uconnector.com/online/object/4udrawing/10698.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon -THT Terminal Block 4Ucon ItemNo. 10698 vertical pitch 3.5mm size 25.5x8.3mm^2 drill 1.3mm pad 2.6mm -0 -7 -7 -TerminalBlock_4Ucon -TerminalBlock_4Ucon_1x08_P3.50mm_Horizontal -Terminal Block 4Ucon ItemNo. 19965, 8 pins, pitch 3.5mm, size 28.7x7mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see http://www.4uconnector.com/online/object/4udrawing/19965.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon -THT Terminal Block 4Ucon ItemNo. 19965 pitch 3.5mm size 28.7x7mm^2 drill 1.2mm pad 2.4mm -0 -8 -8 -TerminalBlock_4Ucon -TerminalBlock_4Ucon_1x08_P3.50mm_Vertical -Terminal Block 4Ucon ItemNo. 10699, vertical (cable from top), 8 pins, pitch 3.5mm, size 29x8.3mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.4uconnector.com/online/object/4udrawing/10699.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon -THT Terminal Block 4Ucon ItemNo. 10699 vertical pitch 3.5mm size 29x8.3mm^2 drill 1.3mm pad 2.6mm -0 -8 -8 -TerminalBlock_4Ucon -TerminalBlock_4Ucon_1x09_P3.50mm_Horizontal -Terminal Block 4Ucon ItemNo. 10686, 9 pins, pitch 3.5mm, size 32.2x7mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see http://www.4uconnector.com/online/object/4udrawing/10686.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon -THT Terminal Block 4Ucon ItemNo. 10686 pitch 3.5mm size 32.2x7mm^2 drill 1.2mm pad 2.4mm -0 -9 -9 -TerminalBlock_4Ucon -TerminalBlock_4Ucon_1x09_P3.50mm_Vertical -Terminal Block 4Ucon ItemNo. 10700, vertical (cable from top), 9 pins, pitch 3.5mm, size 32.5x8.3mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.4uconnector.com/online/object/4udrawing/10700.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon -THT Terminal Block 4Ucon ItemNo. 10700 vertical pitch 3.5mm size 32.5x8.3mm^2 drill 1.3mm pad 2.6mm -0 -9 -9 -TerminalBlock_4Ucon -TerminalBlock_4Ucon_1x10_P3.50mm_Horizontal -Terminal Block 4Ucon ItemNo. 10687, 10 pins, pitch 3.5mm, size 35.7x7mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see http://www.4uconnector.com/online/object/4udrawing/10687.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon -THT Terminal Block 4Ucon ItemNo. 10687 pitch 3.5mm size 35.7x7mm^2 drill 1.2mm pad 2.4mm -0 -10 -10 -TerminalBlock_4Ucon -TerminalBlock_4Ucon_1x10_P3.50mm_Vertical -Terminal Block 4Ucon ItemNo. 10701, vertical (cable from top), 10 pins, pitch 3.5mm, size 36x8.3mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.4uconnector.com/online/object/4udrawing/10701.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon -THT Terminal Block 4Ucon ItemNo. 10701 vertical pitch 3.5mm size 36x8.3mm^2 drill 1.3mm pad 2.6mm -0 -10 -10 -TerminalBlock_4Ucon -TerminalBlock_4Ucon_1x11_P3.50mm_Horizontal -Terminal Block 4Ucon ItemNo. 10688, 11 pins, pitch 3.5mm, size 39.2x7mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see http://www.4uconnector.com/online/object/4udrawing/10688.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon -THT Terminal Block 4Ucon ItemNo. 10688 pitch 3.5mm size 39.2x7mm^2 drill 1.2mm pad 2.4mm -0 -11 -11 -TerminalBlock_4Ucon -TerminalBlock_4Ucon_1x11_P3.50mm_Vertical -Terminal Block 4Ucon ItemNo. 10702, vertical (cable from top), 11 pins, pitch 3.5mm, size 39.5x8.3mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.4uconnector.com/online/object/4udrawing/10702.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon -THT Terminal Block 4Ucon ItemNo. 10702 vertical pitch 3.5mm size 39.5x8.3mm^2 drill 1.3mm pad 2.6mm -0 -11 -11 -TerminalBlock_4Ucon -TerminalBlock_4Ucon_1x12_P3.50mm_Horizontal -Terminal Block 4Ucon ItemNo. 10689, 12 pins, pitch 3.5mm, size 42.7x7mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see http://www.4uconnector.com/online/object/4udrawing/10689.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon -THT Terminal Block 4Ucon ItemNo. 10689 pitch 3.5mm size 42.7x7mm^2 drill 1.2mm pad 2.4mm -0 -12 -12 -TerminalBlock_4Ucon -TerminalBlock_4Ucon_1x12_P3.50mm_Vertical -Terminal Block 4Ucon ItemNo. 10703, vertical (cable from top), 12 pins, pitch 3.5mm, size 43x8.3mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.4uconnector.com/online/object/4udrawing/10703.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon -THT Terminal Block 4Ucon ItemNo. 10703 vertical pitch 3.5mm size 43x8.3mm^2 drill 1.3mm pad 2.6mm -0 -12 -12 -TerminalBlock_4Ucon -TerminalBlock_4Ucon_1x13_P3.50mm_Horizontal -Terminal Block 4Ucon ItemNo. 10690, 13 pins, pitch 3.5mm, size 46.2x7mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see http://www.4uconnector.com/online/object/4udrawing/10690.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon -THT Terminal Block 4Ucon ItemNo. 10690 pitch 3.5mm size 46.2x7mm^2 drill 1.2mm pad 2.4mm -0 -13 -13 -TerminalBlock_4Ucon -TerminalBlock_4Ucon_1x13_P3.50mm_Vertical -Terminal Block 4Ucon ItemNo. 10704, vertical (cable from top), 13 pins, pitch 3.5mm, size 46.5x8.3mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.4uconnector.com/online/object/4udrawing/10704.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon -THT Terminal Block 4Ucon ItemNo. 10704 vertical pitch 3.5mm size 46.5x8.3mm^2 drill 1.3mm pad 2.6mm -0 -13 -13 -TerminalBlock_4Ucon -TerminalBlock_4Ucon_1x14_P3.50mm_Horizontal -Terminal Block 4Ucon ItemNo. 10691, 14 pins, pitch 3.5mm, size 49.7x7mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see http://www.4uconnector.com/online/object/4udrawing/10691.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon -THT Terminal Block 4Ucon ItemNo. 10691 pitch 3.5mm size 49.7x7mm^2 drill 1.2mm pad 2.4mm -0 -14 -14 -TerminalBlock_4Ucon -TerminalBlock_4Ucon_1x14_P3.50mm_Vertical -Terminal Block 4Ucon ItemNo. 10705, vertical (cable from top), 14 pins, pitch 3.5mm, size 50x8.3mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.4uconnector.com/online/object/4udrawing/10705.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon -THT Terminal Block 4Ucon ItemNo. 10705 vertical pitch 3.5mm size 50x8.3mm^2 drill 1.3mm pad 2.6mm -0 -14 -14 -TerminalBlock_4Ucon -TerminalBlock_4Ucon_1x15_P3.50mm_Horizontal -Terminal Block 4Ucon ItemNo. 10692, 15 pins, pitch 3.5mm, size 53.2x7mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see http://www.4uconnector.com/online/object/4udrawing/10692.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon -THT Terminal Block 4Ucon ItemNo. 10692 pitch 3.5mm size 53.2x7mm^2 drill 1.2mm pad 2.4mm -0 -15 -15 -TerminalBlock_4Ucon -TerminalBlock_4Ucon_1x15_P3.50mm_Vertical -Terminal Block 4Ucon ItemNo. 10706, vertical (cable from top), 15 pins, pitch 3.5mm, size 53.5x8.3mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.4uconnector.com/online/object/4udrawing/10706.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_4Ucon -THT Terminal Block 4Ucon ItemNo. 10706 vertical pitch 3.5mm size 53.5x8.3mm^2 drill 1.3mm pad 2.6mm -0 -15 -15 -TerminalBlock_Altech -Altech_AK300_1x02_P5.00mm_45-Degree -Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) -Altech AK300 serie connector -0 -2 -2 -TerminalBlock_Altech -Altech_AK300_1x03_P5.00mm_45-Degree -Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) -Altech AK300 serie connector -0 -3 -3 -TerminalBlock_Altech -Altech_AK300_1x04_P5.00mm_45-Degree -Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) -Altech AK300 serie connector -0 -4 -4 -TerminalBlock_Altech -Altech_AK300_1x05_P5.00mm_45-Degree -Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) -Altech AK300 serie connector -0 -5 -5 -TerminalBlock_Altech -Altech_AK300_1x06_P5.00mm_45-Degree -Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) -Altech AK300 serie connector -0 -6 -6 -TerminalBlock_Altech -Altech_AK300_1x07_P5.00mm_45-Degree -Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) -Altech AK300 serie connector -0 -7 -7 -TerminalBlock_Altech -Altech_AK300_1x08_P5.00mm_45-Degree -Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) -Altech AK300 serie connector -0 -8 -8 -TerminalBlock_Altech -Altech_AK300_1x09_P5.00mm_45-Degree -Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) -Altech AK300 serie connector -0 -9 -9 -TerminalBlock_Altech -Altech_AK300_1x10_P5.00mm_45-Degree -Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) -Altech AK300 serie connector -0 -10 -10 -TerminalBlock_Altech -Altech_AK300_1x11_P5.00mm_45-Degree -Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) -Altech AK300 serie connector -0 -11 -11 -TerminalBlock_Altech -Altech_AK300_1x12_P5.00mm_45-Degree -Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) -Altech AK300 serie connector -0 -12 -12 -TerminalBlock_Altech -Altech_AK300_1x13_P5.00mm_45-Degree -Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) -Altech AK300 serie connector -0 -13 -13 -TerminalBlock_Altech -Altech_AK300_1x14_P5.00mm_45-Degree -Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) -Altech AK300 serie connector -0 -14 -14 -TerminalBlock_Altech -Altech_AK300_1x15_P5.00mm_45-Degree -Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) -Altech AK300 serie connector -0 -15 -15 -TerminalBlock_Altech -Altech_AK300_1x16_P5.00mm_45-Degree -Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) -Altech AK300 serie connector -0 -16 -16 -TerminalBlock_Altech -Altech_AK300_1x17_P5.00mm_45-Degree -Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) -Altech AK300 serie connector -0 -17 -17 -TerminalBlock_Altech -Altech_AK300_1x18_P5.00mm_45-Degree -Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) -Altech AK300 serie connector -0 -18 -18 -TerminalBlock_Altech -Altech_AK300_1x19_P5.00mm_45-Degree -Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) -Altech AK300 serie connector -0 -19 -19 -TerminalBlock_Altech -Altech_AK300_1x20_P5.00mm_45-Degree -Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) -Altech AK300 serie connector -0 -20 -20 -TerminalBlock_Altech -Altech_AK300_1x21_P5.00mm_45-Degree -Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) -Altech AK300 serie connector -0 -21 -21 -TerminalBlock_Altech -Altech_AK300_1x22_P5.00mm_45-Degree -Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) -Altech AK300 serie connector -0 -22 -22 -TerminalBlock_Altech -Altech_AK300_1x23_P5.00mm_45-Degree -Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) -Altech AK300 serie connector -0 -23 -23 -TerminalBlock_Altech -Altech_AK300_1x24_P5.00mm_45-Degree -Altech AK300 serie terminal block (Script generated with StandardBox.py) (http://www.altechcorp.com/PDFS/PCBMETRC.PDF) -Altech AK300 serie connector -0 -24 -24 -TerminalBlock_Dinkle -TerminalBlock_Dinkle_DT-55-B01X-02_P10.00mm -Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX -Dinkle DT-55-B01X Terminal Block pitch 10.00mm -0 -2 -2 -TerminalBlock_Dinkle -TerminalBlock_Dinkle_DT-55-B01X-03_P10.00mm -Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX -Dinkle DT-55-B01X Terminal Block pitch 10.00mm -0 -3 -3 -TerminalBlock_Dinkle -TerminalBlock_Dinkle_DT-55-B01X-04_P10.00mm -Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX -Dinkle DT-55-B01X Terminal Block pitch 10.00mm -0 -4 -4 -TerminalBlock_Dinkle -TerminalBlock_Dinkle_DT-55-B01X-05_P10.00mm -Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX -Dinkle DT-55-B01X Terminal Block pitch 10.00mm -0 -5 -5 -TerminalBlock_Dinkle -TerminalBlock_Dinkle_DT-55-B01X-06_P10.00mm -Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX -Dinkle DT-55-B01X Terminal Block pitch 10.00mm -0 -6 -6 -TerminalBlock_Dinkle -TerminalBlock_Dinkle_DT-55-B01X-07_P10.00mm -Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX -Dinkle DT-55-B01X Terminal Block pitch 10.00mm -0 -7 -7 -TerminalBlock_Dinkle -TerminalBlock_Dinkle_DT-55-B01X-08_P10.00mm -Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX -Dinkle DT-55-B01X Terminal Block pitch 10.00mm -0 -8 -8 -TerminalBlock_Dinkle -TerminalBlock_Dinkle_DT-55-B01X-09_P10.00mm -Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX -Dinkle DT-55-B01X Terminal Block pitch 10.00mm -0 -9 -9 -TerminalBlock_Dinkle -TerminalBlock_Dinkle_DT-55-B01X-10_P10.00mm -Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX -Dinkle DT-55-B01X Terminal Block pitch 10.00mm -0 -10 -10 -TerminalBlock_Dinkle -TerminalBlock_Dinkle_DT-55-B01X-11_P10.00mm -Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX -Dinkle DT-55-B01X Terminal Block pitch 10.00mm -0 -11 -11 -TerminalBlock_Dinkle -TerminalBlock_Dinkle_DT-55-B01X-12_P10.00mm -Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX -Dinkle DT-55-B01X Terminal Block pitch 10.00mm -0 -12 -12 -TerminalBlock_Dinkle -TerminalBlock_Dinkle_DT-55-B01X-13_P10.00mm -Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX -Dinkle DT-55-B01X Terminal Block pitch 10.00mm -0 -13 -13 -TerminalBlock_Dinkle -TerminalBlock_Dinkle_DT-55-B01X-14_P10.00mm -Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX -Dinkle DT-55-B01X Terminal Block pitch 10.00mm -0 -14 -14 -TerminalBlock_Dinkle -TerminalBlock_Dinkle_DT-55-B01X-15_P10.00mm -Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX -Dinkle DT-55-B01X Terminal Block pitch 10.00mm -0 -15 -15 -TerminalBlock_Dinkle -TerminalBlock_Dinkle_DT-55-B01X-16_P10.00mm -Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX -Dinkle DT-55-B01X Terminal Block pitch 10.00mm -0 -16 -16 -TerminalBlock_Dinkle -TerminalBlock_Dinkle_DT-55-B01X-17_P10.00mm -Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX -Dinkle DT-55-B01X Terminal Block pitch 10.00mm -0 -17 -17 -TerminalBlock_Dinkle -TerminalBlock_Dinkle_DT-55-B01X-18_P10.00mm -Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX -Dinkle DT-55-B01X Terminal Block pitch 10.00mm -0 -18 -18 -TerminalBlock_Dinkle -TerminalBlock_Dinkle_DT-55-B01X-19_P10.00mm -Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX -Dinkle DT-55-B01X Terminal Block pitch 10.00mm -0 -19 -19 -TerminalBlock_Dinkle -TerminalBlock_Dinkle_DT-55-B01X-20_P10.00mm -Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX -Dinkle DT-55-B01X Terminal Block pitch 10.00mm -0 -20 -20 -TerminalBlock_Dinkle -TerminalBlock_Dinkle_DT-55-B01X-21_P10.00mm -Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX -Dinkle DT-55-B01X Terminal Block pitch 10.00mm -0 -21 -21 -TerminalBlock_Dinkle -TerminalBlock_Dinkle_DT-55-B01X-22_P10.00mm -Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX -Dinkle DT-55-B01X Terminal Block pitch 10.00mm -0 -22 -22 -TerminalBlock_Dinkle -TerminalBlock_Dinkle_DT-55-B01X-23_P10.00mm -Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX -Dinkle DT-55-B01X Terminal Block pitch 10.00mm -0 -23 -23 -TerminalBlock_Dinkle -TerminalBlock_Dinkle_DT-55-B01X-24_P10.00mm -Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX -Dinkle DT-55-B01X Terminal Block pitch 10.00mm -0 -24 -24 -TerminalBlock_Dinkle -TerminalBlock_Dinkle_DT-55-B01X-25_P10.00mm -Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX -Dinkle DT-55-B01X Terminal Block pitch 10.00mm -0 -25 -25 -TerminalBlock_Dinkle -TerminalBlock_Dinkle_DT-55-B01X-26_P10.00mm -Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX -Dinkle DT-55-B01X Terminal Block pitch 10.00mm -0 -26 -26 -TerminalBlock_Dinkle -TerminalBlock_Dinkle_DT-55-B01X-27_P10.00mm -Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX -Dinkle DT-55-B01X Terminal Block pitch 10.00mm -0 -27 -27 -TerminalBlock_Dinkle -TerminalBlock_Dinkle_DT-55-B01X-28_P10.00mm -Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX -Dinkle DT-55-B01X Terminal Block pitch 10.00mm -0 -28 -28 -TerminalBlock_Dinkle -TerminalBlock_Dinkle_DT-55-B01X-29_P10.00mm -Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX -Dinkle DT-55-B01X Terminal Block pitch 10.00mm -0 -29 -29 -TerminalBlock_Dinkle -TerminalBlock_Dinkle_DT-55-B01X-30_P10.00mm -Dinkle DT-55-B01X Terminal Block pitch 10.00mm https://www.dinkle.com/en/terminal/DT-55-B01W-XX -Dinkle DT-55-B01X Terminal Block pitch 10.00mm -0 -30 -30 -TerminalBlock_MetzConnect -TerminalBlock_MetzConnect_360271_1x01_Horizontal_ScrewM3.0_Boxed -single screw terminal block Metz Connect 360271, block size 9x7.3mm^2, drill diamater 1.5mm, 1 pads, pad diameter 3mm, see http://www.metz-connect.com/de/system/files/METZ_CONNECT_U_Contact_Katalog_Anschlusssysteme_fuer_Leiterplatten_DE_31_07_2017_OFF_024803.pdf?language=en page 134, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect -THT single screw terminal block Metz Connect 360271 size 9x7.3mm^2 drill 1.5mm pad 3mm -0 -1 -1 -TerminalBlock_MetzConnect -TerminalBlock_MetzConnect_360272_1x01_Horizontal_ScrewM2.6 -single screw terminal block Metz Connect 360272, block size 4x4mm^2, drill diamater 1.5mm, 2 pads, pad diameter 3mm, see http://www.metz-connect.com/de/system/files/METZ_CONNECT_U_Contact_Katalog_Anschlusssysteme_fuer_Leiterplatten_DE_31_07_2017_OFF_024803.pdf?language=en page 131, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect -THT single screw terminal block Metz Connect 360272 size 4x4mm^2 drill 1.5mm pad 3mm -0 -2 -1 -TerminalBlock_MetzConnect -TerminalBlock_MetzConnect_360273_1x01_Horizontal_ScrewM2.6_WireProtection -single screw terminal block Metz Connect 360273, block size 5x4mm^2, drill diamater 1.5mm, 2 pads, pad diameter 3mm, see http://www.metz-connect.com/de/system/files/METZ_CONNECT_U_Contact_Katalog_Anschlusssysteme_fuer_Leiterplatten_DE_31_07_2017_OFF_024803.pdf?language=en page 131, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect -THT single screw terminal block Metz Connect 360273 size 5x4mm^2 drill 1.5mm pad 3mm -0 -2 -1 -TerminalBlock_MetzConnect -TerminalBlock_MetzConnect_360291_1x01_Horizontal_ScrewM3.0_Boxed -single screw terminal block Metz Connect 360291, block size 9x7.3mm^2, drill diamater 1.5mm, 2 pads, pad diameter 3mm, see http://www.metz-connect.com/de/system/files/METZ_CONNECT_U_Contact_Katalog_Anschlusssysteme_fuer_Leiterplatten_DE_31_07_2017_OFF_024803.pdf?language=en page 133, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect -THT single screw terminal block Metz Connect 360291 size 9x7.3mm^2 drill 1.5mm pad 3mm -0 -2 -1 -TerminalBlock_MetzConnect -TerminalBlock_MetzConnect_360322_1x01_Horizontal_ScrewM3.0_WireProtection -single screw terminal block Metz Connect 360322, block size 6x4mm^2, drill diamater 1.5mm, 2 pads, pad diameter 3mm, see http://www.metz-connect.com/de/system/files/METZ_CONNECT_U_Contact_Katalog_Anschlusssysteme_fuer_Leiterplatten_DE_31_07_2017_OFF_024803.pdf?language=en page 133, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect -THT single screw terminal block Metz Connect 360322 size 6x4mm^2 drill 1.5mm pad 3mm -0 -2 -1 -TerminalBlock_MetzConnect -TerminalBlock_MetzConnect_360381_1x01_Horizontal_ScrewM3.0 -single screw terminal block Metz Connect 360381, block size 5x5mm^2, drill diamater 1.5mm, 2 pads, pad diameter 3mm, see http://www.metz-connect.com/de/system/files/METZ_CONNECT_U_Contact_Katalog_Anschlusssysteme_fuer_Leiterplatten_DE_31_07_2017_OFF_024803.pdf?language=en page 133, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect -THT single screw terminal block Metz Connect 360381 size 5x5mm^2 drill 1.5mm pad 3mm -0 -2 -1 -TerminalBlock_MetzConnect -TerminalBlock_MetzConnect_360410_1x01_Horizontal_ScrewM3.0 -single screw terminal block Metz Connect 360410, block size 5x5mm^2, drill diamater 1.5mm, 2 pads, pad diameter 3mm, see http://www.metz-connect.com/de/system/files/METZ_CONNECT_U_Contact_Katalog_Anschlusssysteme_fuer_Leiterplatten_DE_31_07_2017_OFF_024803.pdf?language=en page 132, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect -THT single screw terminal block Metz Connect 360410 size 5x5mm^2 drill 1.5mm pad 3mm -0 -2 -1 -TerminalBlock_MetzConnect -TerminalBlock_MetzConnect_360425_1x01_Horizontal_ScrewM4.0_Boxed -single screw terminal block Metz Connect 360425, block size 9x9mm^2, drill diamater 1.6mm, 4 pads, pad diameter 3.2mm, see http://www.metz-connect.com/de/system/files/METZ_CONNECT_U_Contact_Katalog_Anschlusssysteme_fuer_Leiterplatten_DE_31_07_2017_OFF_024803.pdf?language=en page 134, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect -THT single screw terminal block Metz Connect 360425 size 9x9mm^2 drill 1.6mm pad 3.2mm -0 -4 -1 -TerminalBlock_MetzConnect -TerminalBlock_MetzConnect_Type011_RT05502HBWC_1x02_P5.00mm_Horizontal -terminal block Metz Connect Type011_RT05502HBWC, 2 pins, pitch 5mm, size 10x10.5mm^2, drill diamater 1.4mm, pad diameter 2.8mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310111_RT055xxHBLC_OFF-022717S.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect -THT terminal block Metz Connect Type011_RT05502HBWC pitch 5mm size 10x10.5mm^2 drill 1.4mm pad 2.8mm -0 -2 -2 -TerminalBlock_MetzConnect -TerminalBlock_MetzConnect_Type011_RT05503HBWC_1x03_P5.00mm_Horizontal -terminal block Metz Connect Type011_RT05503HBWC, 3 pins, pitch 5mm, size 15x10.5mm^2, drill diamater 1.4mm, pad diameter 2.8mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310111_RT055xxHBLC_OFF-022717S.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect -THT terminal block Metz Connect Type011_RT05503HBWC pitch 5mm size 15x10.5mm^2 drill 1.4mm pad 2.8mm -0 -3 -3 -TerminalBlock_MetzConnect -TerminalBlock_MetzConnect_Type011_RT05504HBWC_1x04_P5.00mm_Horizontal -terminal block Metz Connect Type011_RT05504HBWC, 4 pins, pitch 5mm, size 20x10.5mm^2, drill diamater 1.4mm, pad diameter 2.8mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310111_RT055xxHBLC_OFF-022717S.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect -THT terminal block Metz Connect Type011_RT05504HBWC pitch 5mm size 20x10.5mm^2 drill 1.4mm pad 2.8mm -0 -4 -4 -TerminalBlock_MetzConnect -TerminalBlock_MetzConnect_Type011_RT05505HBWC_1x05_P5.00mm_Horizontal -terminal block Metz Connect Type011_RT05505HBWC, 5 pins, pitch 5mm, size 25x10.5mm^2, drill diamater 1.4mm, pad diameter 2.8mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310111_RT055xxHBLC_OFF-022717S.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect -THT terminal block Metz Connect Type011_RT05505HBWC pitch 5mm size 25x10.5mm^2 drill 1.4mm pad 2.8mm -0 -5 -5 -TerminalBlock_MetzConnect -TerminalBlock_MetzConnect_Type011_RT05506HBWC_1x06_P5.00mm_Horizontal -terminal block Metz Connect Type011_RT05506HBWC, 6 pins, pitch 5mm, size 30x10.5mm^2, drill diamater 1.4mm, pad diameter 2.8mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310111_RT055xxHBLC_OFF-022717S.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect -THT terminal block Metz Connect Type011_RT05506HBWC pitch 5mm size 30x10.5mm^2 drill 1.4mm pad 2.8mm -0 -6 -6 -TerminalBlock_MetzConnect -TerminalBlock_MetzConnect_Type055_RT01502HDWU_1x02_P5.00mm_Horizontal -terminal block Metz Connect Type055_RT01502HDWU, 2 pins, pitch 5mm, size 10x8mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310551_RT015xxHDWU_OFF-022723S.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect -THT terminal block Metz Connect Type055_RT01502HDWU pitch 5mm size 10x8mm^2 drill 1.3mm pad 2.5mm -0 -2 -2 -TerminalBlock_MetzConnect -TerminalBlock_MetzConnect_Type055_RT01503HDWU_1x03_P5.00mm_Horizontal -terminal block Metz Connect Type055_RT01503HDWU, 3 pins, pitch 5mm, size 15x8mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310551_RT015xxHDWU_OFF-022723S.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect -THT terminal block Metz Connect Type055_RT01503HDWU pitch 5mm size 15x8mm^2 drill 1.3mm pad 2.5mm -0 -3 -3 -TerminalBlock_MetzConnect -TerminalBlock_MetzConnect_Type055_RT01504HDWU_1x04_P5.00mm_Horizontal -terminal block Metz Connect Type055_RT01504HDWU, 4 pins, pitch 5mm, size 20x8mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310551_RT015xxHDWU_OFF-022723S.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect -THT terminal block Metz Connect Type055_RT01504HDWU pitch 5mm size 20x8mm^2 drill 1.3mm pad 2.5mm -0 -4 -4 -TerminalBlock_MetzConnect -TerminalBlock_MetzConnect_Type059_RT06302HBWC_1x02_P3.50mm_Horizontal -terminal block Metz Connect Type059_RT06302HBWC, 2 pins, pitch 3.5mm, size 7x6.5mm^2, drill diamater 1.2mm, pad diameter 2.3mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310591_RT063xxHBWC_OFF-022684T.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect -THT terminal block Metz Connect Type059_RT06302HBWC pitch 3.5mm size 7x6.5mm^2 drill 1.2mm pad 2.3mm -0 -2 -2 -TerminalBlock_MetzConnect -TerminalBlock_MetzConnect_Type059_RT06303HBWC_1x03_P3.50mm_Horizontal -terminal block Metz Connect Type059_RT06303HBWC, 3 pins, pitch 3.5mm, size 10.5x6.5mm^2, drill diamater 1.2mm, pad diameter 2.3mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310591_RT063xxHBWC_OFF-022684T.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect -THT terminal block Metz Connect Type059_RT06303HBWC pitch 3.5mm size 10.5x6.5mm^2 drill 1.2mm pad 2.3mm -0 -3 -3 -TerminalBlock_MetzConnect -TerminalBlock_MetzConnect_Type059_RT06304HBWC_1x04_P3.50mm_Horizontal -terminal block Metz Connect Type059_RT06304HBWC, 4 pins, pitch 3.5mm, size 14x6.5mm^2, drill diamater 1.2mm, pad diameter 2.3mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310591_RT063xxHBWC_OFF-022684T.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect -THT terminal block Metz Connect Type059_RT06304HBWC pitch 3.5mm size 14x6.5mm^2 drill 1.2mm pad 2.3mm -0 -4 -4 -TerminalBlock_MetzConnect -TerminalBlock_MetzConnect_Type059_RT06305HBWC_1x05_P3.50mm_Horizontal -terminal block Metz Connect Type059_RT06305HBWC, 5 pins, pitch 3.5mm, size 17.5x6.5mm^2, drill diamater 1.2mm, pad diameter 2.3mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310591_RT063xxHBWC_OFF-022684T.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect -THT terminal block Metz Connect Type059_RT06305HBWC pitch 3.5mm size 17.5x6.5mm^2 drill 1.2mm pad 2.3mm -0 -5 -5 -TerminalBlock_MetzConnect -TerminalBlock_MetzConnect_Type059_RT06306HBWC_1x06_P3.50mm_Horizontal -terminal block Metz Connect Type059_RT06306HBWC, 6 pins, pitch 3.5mm, size 21x6.5mm^2, drill diamater 1.2mm, pad diameter 2.3mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310591_RT063xxHBWC_OFF-022684T.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect -THT terminal block Metz Connect Type059_RT06306HBWC pitch 3.5mm size 21x6.5mm^2 drill 1.2mm pad 2.3mm -0 -6 -6 -TerminalBlock_MetzConnect -TerminalBlock_MetzConnect_Type067_RT01902HDWC_1x02_P10.00mm_Horizontal -terminal block Metz Connect Type067_RT01902HDWC, 2 pins, pitch 10mm, size 15.8x8.2mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310671_RT019xxHDWC_OFF-023605N.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect -THT terminal block Metz Connect Type067_RT01902HDWC pitch 10mm size 15.8x8.2mm^2 drill 1.3mm pad 2.6mm -0 -2 -2 -TerminalBlock_MetzConnect -TerminalBlock_MetzConnect_Type067_RT01903HDWC_1x03_P10.00mm_Horizontal -terminal block Metz Connect Type067_RT01903HDWC, 3 pins, pitch 10mm, size 25.8x8.2mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310671_RT019xxHDWC_OFF-023605N.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect -THT terminal block Metz Connect Type067_RT01903HDWC pitch 10mm size 25.8x8.2mm^2 drill 1.3mm pad 2.6mm -0 -3 -3 -TerminalBlock_MetzConnect -TerminalBlock_MetzConnect_Type067_RT01904HDWC_1x04_P10.00mm_Horizontal -terminal block Metz Connect Type067_RT01904HDWC, 4 pins, pitch 10mm, size 35.8x8.2mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310671_RT019xxHDWC_OFF-023605N.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect -THT terminal block Metz Connect Type067_RT01904HDWC pitch 10mm size 35.8x8.2mm^2 drill 1.3mm pad 2.6mm -0 -4 -4 -TerminalBlock_MetzConnect -TerminalBlock_MetzConnect_Type067_RT01905HDWC_1x05_P10.00mm_Horizontal -terminal block Metz Connect Type067_RT01905HDWC, 5 pins, pitch 10mm, size 45.8x8.2mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310671_RT019xxHDWC_OFF-023605N.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect -THT terminal block Metz Connect Type067_RT01905HDWC pitch 10mm size 45.8x8.2mm^2 drill 1.3mm pad 2.6mm -0 -5 -5 -TerminalBlock_MetzConnect -TerminalBlock_MetzConnect_Type073_RT02602HBLU_1x02_P5.08mm_Horizontal -terminal block Metz Connect Type073_RT02602HBLU, 2 pins, pitch 5.08mm, size 10.2x11mm^2, drill diamater 1.4mm, pad diameter 2.6mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310731_RT026xxHBLU_OFF-022792U.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect -THT terminal block Metz Connect Type073_RT02602HBLU pitch 5.08mm size 10.2x11mm^2 drill 1.4mm pad 2.6mm -0 -2 -2 -TerminalBlock_MetzConnect -TerminalBlock_MetzConnect_Type073_RT02603HBLU_1x03_P5.08mm_Horizontal -terminal block Metz Connect Type073_RT02603HBLU, 3 pins, pitch 5.08mm, size 15.2x11mm^2, drill diamater 1.4mm, pad diameter 2.6mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310731_RT026xxHBLU_OFF-022792U.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect -THT terminal block Metz Connect Type073_RT02603HBLU pitch 5.08mm size 15.2x11mm^2 drill 1.4mm pad 2.6mm -0 -3 -3 -TerminalBlock_MetzConnect -TerminalBlock_MetzConnect_Type086_RT03402HBLC_1x02_P3.81mm_Horizontal -terminal block Metz Connect Type086_RT03402HBLC, 2 pins, pitch 3.81mm, size 7.51x7.3mm^2, drill diamater 0.7mm, pad diameter 1.4mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310861_RT034xxHBLC_OFF-026114K.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect -THT terminal block Metz Connect Type086_RT03402HBLC pitch 3.81mm size 7.51x7.3mm^2 drill 0.7mm pad 1.4mm -0 -2 -2 -TerminalBlock_MetzConnect -TerminalBlock_MetzConnect_Type086_RT03403HBLC_1x03_P3.81mm_Horizontal -terminal block Metz Connect Type086_RT03403HBLC, 3 pins, pitch 3.81mm, size 11.3x7.3mm^2, drill diamater 0.7mm, pad diameter 1.4mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310861_RT034xxHBLC_OFF-026114K.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect -THT terminal block Metz Connect Type086_RT03403HBLC pitch 3.81mm size 11.3x7.3mm^2 drill 0.7mm pad 1.4mm -0 -3 -3 -TerminalBlock_MetzConnect -TerminalBlock_MetzConnect_Type086_RT03404HBLC_1x04_P3.81mm_Horizontal -terminal block Metz Connect Type086_RT03404HBLC, 4 pins, pitch 3.81mm, size 15.1x7.3mm^2, drill diamater 0.7mm, pad diameter 1.4mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310861_RT034xxHBLC_OFF-026114K.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect -THT terminal block Metz Connect Type086_RT03404HBLC pitch 3.81mm size 15.1x7.3mm^2 drill 0.7mm pad 1.4mm -0 -4 -4 -TerminalBlock_MetzConnect -TerminalBlock_MetzConnect_Type086_RT03405HBLC_1x05_P3.81mm_Horizontal -terminal block Metz Connect Type086_RT03405HBLC, 5 pins, pitch 3.81mm, size 18.9x7.3mm^2, drill diamater 0.7mm, pad diameter 1.4mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310861_RT034xxHBLC_OFF-026114K.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect -THT terminal block Metz Connect Type086_RT03405HBLC pitch 3.81mm size 18.9x7.3mm^2 drill 0.7mm pad 1.4mm -0 -5 -5 -TerminalBlock_MetzConnect -TerminalBlock_MetzConnect_Type086_RT03406HBLC_1x06_P3.81mm_Horizontal -terminal block Metz Connect Type086_RT03406HBLC, 6 pins, pitch 3.81mm, size 22.8x7.3mm^2, drill diamater 0.7mm, pad diameter 1.4mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_310861_RT034xxHBLC_OFF-026114K.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect -THT terminal block Metz Connect Type086_RT03406HBLC pitch 3.81mm size 22.8x7.3mm^2 drill 0.7mm pad 1.4mm -0 -6 -6 -TerminalBlock_MetzConnect -TerminalBlock_MetzConnect_Type094_RT03502HBLU_1x02_P5.00mm_Horizontal -terminal block Metz Connect Type094_RT03502HBLU, 2 pins, pitch 5mm, size 10x8.3mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.metz-connect.com/ru/system/files/productfiles/Data_sheet_310941_RT035xxHBLU_OFF-022742T.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect -THT terminal block Metz Connect Type094_RT03502HBLU pitch 5mm size 10x8.3mm^2 drill 1.3mm pad 2.6mm -0 -2 -2 -TerminalBlock_MetzConnect -TerminalBlock_MetzConnect_Type094_RT03503HBLU_1x03_P5.00mm_Horizontal -terminal block Metz Connect Type094_RT03503HBLU, 3 pins, pitch 5mm, size 15x8.3mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.metz-connect.com/ru/system/files/productfiles/Data_sheet_310941_RT035xxHBLU_OFF-022742T.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect -THT terminal block Metz Connect Type094_RT03503HBLU pitch 5mm size 15x8.3mm^2 drill 1.3mm pad 2.6mm -0 -3 -3 -TerminalBlock_MetzConnect -TerminalBlock_MetzConnect_Type094_RT03504HBLU_1x04_P5.00mm_Horizontal -terminal block Metz Connect Type094_RT03504HBLU, 4 pins, pitch 5mm, size 20x8.3mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.metz-connect.com/ru/system/files/productfiles/Data_sheet_310941_RT035xxHBLU_OFF-022742T.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect -THT terminal block Metz Connect Type094_RT03504HBLU pitch 5mm size 20x8.3mm^2 drill 1.3mm pad 2.6mm -0 -4 -4 -TerminalBlock_MetzConnect -TerminalBlock_MetzConnect_Type094_RT03505HBLU_1x05_P5.00mm_Horizontal -terminal block Metz Connect Type094_RT03505HBLU, 5 pins, pitch 5mm, size 25x8.3mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.metz-connect.com/ru/system/files/productfiles/Data_sheet_310941_RT035xxHBLU_OFF-022742T.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect -THT terminal block Metz Connect Type094_RT03505HBLU pitch 5mm size 25x8.3mm^2 drill 1.3mm pad 2.6mm -0 -5 -5 -TerminalBlock_MetzConnect -TerminalBlock_MetzConnect_Type094_RT03506HBLU_1x06_P5.00mm_Horizontal -terminal block Metz Connect Type094_RT03506HBLU, 6 pins, pitch 5mm, size 30x8.3mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.metz-connect.com/ru/system/files/productfiles/Data_sheet_310941_RT035xxHBLU_OFF-022742T.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect -THT terminal block Metz Connect Type094_RT03506HBLU pitch 5mm size 30x8.3mm^2 drill 1.3mm pad 2.6mm -0 -6 -6 -TerminalBlock_MetzConnect -TerminalBlock_MetzConnect_Type101_RT01602HBWC_1x02_P5.08mm_Horizontal -terminal block Metz Connect Type101_RT01602HBWC, 2 pins, pitch 5.08mm, size 10.2x8mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_311011_RT016xxHBWC_OFF-022771S.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect -THT terminal block Metz Connect Type101_RT01602HBWC pitch 5.08mm size 10.2x8mm^2 drill 1.3mm pad 2.5mm -0 -2 -2 -TerminalBlock_MetzConnect -TerminalBlock_MetzConnect_Type101_RT01603HBWC_1x03_P5.08mm_Horizontal -terminal block Metz Connect Type101_RT01603HBWC, 3 pins, pitch 5.08mm, size 15.2x8mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_311011_RT016xxHBWC_OFF-022771S.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect -THT terminal block Metz Connect Type101_RT01603HBWC pitch 5.08mm size 15.2x8mm^2 drill 1.3mm pad 2.5mm -0 -3 -3 -TerminalBlock_MetzConnect -TerminalBlock_MetzConnect_Type101_RT01604HBWC_1x04_P5.08mm_Horizontal -terminal block Metz Connect Type101_RT01604HBWC, 4 pins, pitch 5.08mm, size 20.3x8mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_311011_RT016xxHBWC_OFF-022771S.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect -THT terminal block Metz Connect Type101_RT01604HBWC pitch 5.08mm size 20.3x8mm^2 drill 1.3mm pad 2.5mm -0 -4 -4 -TerminalBlock_MetzConnect -TerminalBlock_MetzConnect_Type101_RT01605HBWC_1x05_P5.08mm_Horizontal -terminal block Metz Connect Type101_RT01605HBWC, 5 pins, pitch 5.08mm, size 25.4x8mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_311011_RT016xxHBWC_OFF-022771S.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect -THT terminal block Metz Connect Type101_RT01605HBWC pitch 5.08mm size 25.4x8mm^2 drill 1.3mm pad 2.5mm -0 -5 -5 -TerminalBlock_MetzConnect -TerminalBlock_MetzConnect_Type101_RT01606HBWC_1x06_P5.08mm_Horizontal -terminal block Metz Connect Type101_RT01606HBWC, 6 pins, pitch 5.08mm, size 30.5x8mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_311011_RT016xxHBWC_OFF-022771S.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect -THT terminal block Metz Connect Type101_RT01606HBWC pitch 5.08mm size 30.5x8mm^2 drill 1.3mm pad 2.5mm -0 -6 -6 -TerminalBlock_MetzConnect -TerminalBlock_MetzConnect_Type171_RT13702HBWC_1x02_P7.50mm_Horizontal -terminal block Metz Connect Type171_RT13702HBWC, 2 pins, pitch 7.5mm, size 15x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_311711_RT137xxHBWC_OFF-022811Q.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect -THT terminal block Metz Connect Type171_RT13702HBWC pitch 7.5mm size 15x9mm^2 drill 1.3mm pad 2.5mm -0 -2 -2 -TerminalBlock_MetzConnect -TerminalBlock_MetzConnect_Type171_RT13703HBWC_1x03_P7.50mm_Horizontal -terminal block Metz Connect Type171_RT13703HBWC, 3 pins, pitch 7.5mm, size 22.5x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_311711_RT137xxHBWC_OFF-022811Q.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect -THT terminal block Metz Connect Type171_RT13703HBWC pitch 7.5mm size 22.5x9mm^2 drill 1.3mm pad 2.5mm -0 -3 -3 -TerminalBlock_MetzConnect -TerminalBlock_MetzConnect_Type171_RT13704HBWC_1x04_P7.50mm_Horizontal -terminal block Metz Connect Type171_RT13704HBWC, 4 pins, pitch 7.5mm, size 30x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_311711_RT137xxHBWC_OFF-022811Q.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect -THT terminal block Metz Connect Type171_RT13704HBWC pitch 7.5mm size 30x9mm^2 drill 1.3mm pad 2.5mm -0 -4 -4 -TerminalBlock_MetzConnect -TerminalBlock_MetzConnect_Type171_RT13705HBWC_1x05_P7.50mm_Horizontal -terminal block Metz Connect Type171_RT13705HBWC, 5 pins, pitch 7.5mm, size 37.5x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_311711_RT137xxHBWC_OFF-022811Q.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect -THT terminal block Metz Connect Type171_RT13705HBWC pitch 7.5mm size 37.5x9mm^2 drill 1.3mm pad 2.5mm -0 -5 -5 -TerminalBlock_MetzConnect -TerminalBlock_MetzConnect_Type171_RT13706HBWC_1x06_P7.50mm_Horizontal -terminal block Metz Connect Type171_RT13706HBWC, 6 pins, pitch 7.5mm, size 45x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_311711_RT137xxHBWC_OFF-022811Q.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect -THT terminal block Metz Connect Type171_RT13706HBWC pitch 7.5mm size 45x9mm^2 drill 1.3mm pad 2.5mm -0 -6 -6 -TerminalBlock_MetzConnect -TerminalBlock_MetzConnect_Type175_RT02702HBLC_1x02_P7.50mm_Horizontal -terminal block Metz Connect Type175_RT02702HBLC, 2 pins, pitch 7.5mm, size 15x11mm^2, drill diamater 1.4mm, pad diameter 2.6mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_311751_RT027xxHBLC_OFF-022814U.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect -THT terminal block Metz Connect Type175_RT02702HBLC pitch 7.5mm size 15x11mm^2 drill 1.4mm pad 2.6mm -0 -2 -2 -TerminalBlock_MetzConnect -TerminalBlock_MetzConnect_Type175_RT02703HBLC_1x03_P7.50mm_Horizontal -terminal block Metz Connect Type175_RT02703HBLC, 3 pins, pitch 7.5mm, size 22.5x11mm^2, drill diamater 1.4mm, pad diameter 2.6mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_311751_RT027xxHBLC_OFF-022814U.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect -THT terminal block Metz Connect Type175_RT02703HBLC pitch 7.5mm size 22.5x11mm^2 drill 1.4mm pad 2.6mm -0 -3 -3 -TerminalBlock_MetzConnect -TerminalBlock_MetzConnect_Type175_RT02704HBLC_1x04_P7.50mm_Horizontal -terminal block Metz Connect Type175_RT02704HBLC, 4 pins, pitch 7.5mm, size 30x11mm^2, drill diamater 1.4mm, pad diameter 2.6mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_311751_RT027xxHBLC_OFF-022814U.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect -THT terminal block Metz Connect Type175_RT02704HBLC pitch 7.5mm size 30x11mm^2 drill 1.4mm pad 2.6mm -0 -4 -4 -TerminalBlock_MetzConnect -TerminalBlock_MetzConnect_Type175_RT02705HBLC_1x05_P7.50mm_Horizontal -terminal block Metz Connect Type175_RT02705HBLC, 5 pins, pitch 7.5mm, size 37.5x11mm^2, drill diamater 1.4mm, pad diameter 2.6mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_311751_RT027xxHBLC_OFF-022814U.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect -THT terminal block Metz Connect Type175_RT02705HBLC pitch 7.5mm size 37.5x11mm^2 drill 1.4mm pad 2.6mm -0 -5 -5 -TerminalBlock_MetzConnect -TerminalBlock_MetzConnect_Type175_RT02706HBLC_1x06_P7.50mm_Horizontal -terminal block Metz Connect Type175_RT02706HBLC, 6 pins, pitch 7.5mm, size 45x11mm^2, drill diamater 1.4mm, pad diameter 2.6mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_311751_RT027xxHBLC_OFF-022814U.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect -THT terminal block Metz Connect Type175_RT02706HBLC pitch 7.5mm size 45x11mm^2 drill 1.4mm pad 2.6mm -0 -6 -6 -TerminalBlock_MetzConnect -TerminalBlock_MetzConnect_Type205_RT04502UBLC_1x02_P5.00mm_45Degree -terminal block Metz Connect Type205_RT04502UBLC, 45Degree (cable under 45degree), 2 pins, pitch 5mm, size 10x12.5mm^2, drill diamater 1.4mm, pad diameter 2.7mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_312051_RT045xxUBLC_OFF-022759T.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect -THT terminal block Metz Connect Type205_RT04502UBLC 45Degree pitch 5mm size 10x12.5mm^2 drill 1.4mm pad 2.7mm -0 -2 -2 -TerminalBlock_MetzConnect -TerminalBlock_MetzConnect_Type205_RT04503UBLC_1x03_P5.00mm_45Degree -terminal block Metz Connect Type205_RT04503UBLC, 45Degree (cable under 45degree), 3 pins, pitch 5mm, size 15x12.5mm^2, drill diamater 1.4mm, pad diameter 2.7mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_312051_RT045xxUBLC_OFF-022759T.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect -THT terminal block Metz Connect Type205_RT04503UBLC 45Degree pitch 5mm size 15x12.5mm^2 drill 1.4mm pad 2.7mm -0 -3 -3 -TerminalBlock_MetzConnect -TerminalBlock_MetzConnect_Type205_RT04504UBLC_1x04_P5.00mm_45Degree -terminal block Metz Connect Type205_RT04504UBLC, 45Degree (cable under 45degree), 4 pins, pitch 5mm, size 20x12.5mm^2, drill diamater 1.4mm, pad diameter 2.7mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_312051_RT045xxUBLC_OFF-022759T.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect -THT terminal block Metz Connect Type205_RT04504UBLC 45Degree pitch 5mm size 20x12.5mm^2 drill 1.4mm pad 2.7mm -0 -4 -4 -TerminalBlock_MetzConnect -TerminalBlock_MetzConnect_Type205_RT04505UBLC_1x05_P5.00mm_45Degree -terminal block Metz Connect Type205_RT04505UBLC, 45Degree (cable under 45degree), 5 pins, pitch 5mm, size 25x12.5mm^2, drill diamater 1.4mm, pad diameter 2.7mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_312051_RT045xxUBLC_OFF-022759T.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect -THT terminal block Metz Connect Type205_RT04505UBLC 45Degree pitch 5mm size 25x12.5mm^2 drill 1.4mm pad 2.7mm -0 -5 -5 -TerminalBlock_MetzConnect -TerminalBlock_MetzConnect_Type205_RT04506UBLC_1x06_P5.00mm_45Degree -terminal block Metz Connect Type205_RT04506UBLC, 45Degree (cable under 45degree), 6 pins, pitch 5mm, size 30x12.5mm^2, drill diamater 1.4mm, pad diameter 2.7mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_312051_RT045xxUBLC_OFF-022759T.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect -THT terminal block Metz Connect Type205_RT04506UBLC 45Degree pitch 5mm size 30x12.5mm^2 drill 1.4mm pad 2.7mm -0 -6 -6 -TerminalBlock_MetzConnect -TerminalBlock_MetzConnect_Type701_RT11L02HGLU_1x02_P6.35mm_Horizontal -terminal block Metz Connect Type701_RT11L02HGLU, 2 pins, pitch 6.35mm, size 12.7x12.5mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_317011_RT11LxxHGLU_OFF-022798U.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect -THT terminal block Metz Connect Type701_RT11L02HGLU pitch 6.35mm size 12.7x12.5mm^2 drill 1.3mm pad 2.5mm -0 -2 -2 -TerminalBlock_MetzConnect -TerminalBlock_MetzConnect_Type701_RT11L03HGLU_1x03_P6.35mm_Horizontal -terminal block Metz Connect Type701_RT11L03HGLU, 3 pins, pitch 6.35mm, size 19x12.5mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_317011_RT11LxxHGLU_OFF-022798U.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect -THT terminal block Metz Connect Type701_RT11L03HGLU pitch 6.35mm size 19x12.5mm^2 drill 1.3mm pad 2.5mm -0 -3 -3 -TerminalBlock_MetzConnect -TerminalBlock_MetzConnect_Type703_RT10N02HGLU_1x02_P9.52mm_Horizontal -terminal block Metz Connect Type703_RT10N02HGLU, 2 pins, pitch 9.52mm, size 19x12.5mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_317031_RT10NxxHGLU_OFF-022897S.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect -THT terminal block Metz Connect Type703_RT10N02HGLU pitch 9.52mm size 19x12.5mm^2 drill 1.3mm pad 2.6mm -0 -2 -2 -TerminalBlock_MetzConnect -TerminalBlock_MetzConnect_Type703_RT10N03HGLU_1x03_P9.52mm_Horizontal -terminal block Metz Connect Type703_RT10N03HGLU, 3 pins, pitch 9.52mm, size 28.6x12.5mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.metz-connect.com/de/system/files/productfiles/Datenblatt_317031_RT10NxxHGLU_OFF-022897S.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_MetzConnect -THT terminal block Metz Connect Type703_RT10N03HGLU pitch 9.52mm size 28.6x12.5mm^2 drill 1.3mm pad 2.6mm -0 -3 -3 -TerminalBlock_Philmore -TerminalBlock_Philmore_TB132_1x02_P5.00mm_Horizontal -Terminal Block Philmore , 2 pins, pitch 5mm, size 10x10.2mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see http://www.philmore-datak.com/mc/Page%20197.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Philmore -THT Terminal Block Philmore pitch 5mm size 10x10.2mm^2 drill 1.2mm pad 2.4mm -0 -2 -2 -TerminalBlock_Philmore -TerminalBlock_Philmore_TB133_1x03_P5.00mm_Horizontal -Terminal Block Philmore , 3 pins, pitch 5mm, size 15x10.2mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see http://www.philmore-datak.com/mc/Page%20197.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Philmore -THT Terminal Block Philmore pitch 5mm size 15x10.2mm^2 drill 1.2mm pad 2.4mm -0 -3 -3 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_MKDS-1,5-2-5.08_1x02_P5.08mm_Horizontal -Terminal Block Phoenix MKDS-1,5-2-5.08, 2 pins, pitch 5.08mm, size 10.2x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix MKDS-1,5-2-5.08 pitch 5.08mm size 10.2x9.8mm^2 drill 1.3mm pad 2.6mm -0 -2 -2 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_MKDS-1,5-2_1x02_P5.00mm_Horizontal -Terminal Block Phoenix MKDS-1,5-2, 2 pins, pitch 5mm, size 10x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix MKDS-1,5-2 pitch 5mm size 10x9.8mm^2 drill 1.3mm pad 2.6mm -0 -2 -2 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_MKDS-1,5-3-5.08_1x03_P5.08mm_Horizontal -Terminal Block Phoenix MKDS-1,5-3-5.08, 3 pins, pitch 5.08mm, size 15.2x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix MKDS-1,5-3-5.08 pitch 5.08mm size 15.2x9.8mm^2 drill 1.3mm pad 2.6mm -0 -3 -3 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_MKDS-1,5-3_1x03_P5.00mm_Horizontal -Terminal Block Phoenix MKDS-1,5-3, 3 pins, pitch 5mm, size 15x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix MKDS-1,5-3 pitch 5mm size 15x9.8mm^2 drill 1.3mm pad 2.6mm -0 -3 -3 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_MKDS-1,5-4-5.08_1x04_P5.08mm_Horizontal -Terminal Block Phoenix MKDS-1,5-4-5.08, 4 pins, pitch 5.08mm, size 20.3x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix MKDS-1,5-4-5.08 pitch 5.08mm size 20.3x9.8mm^2 drill 1.3mm pad 2.6mm -0 -4 -4 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_MKDS-1,5-4_1x04_P5.00mm_Horizontal -Terminal Block Phoenix MKDS-1,5-4, 4 pins, pitch 5mm, size 20x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix MKDS-1,5-4 pitch 5mm size 20x9.8mm^2 drill 1.3mm pad 2.6mm -0 -4 -4 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_MKDS-1,5-5-5.08_1x05_P5.08mm_Horizontal -Terminal Block Phoenix MKDS-1,5-5-5.08, 5 pins, pitch 5.08mm, size 25.4x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix MKDS-1,5-5-5.08 pitch 5.08mm size 25.4x9.8mm^2 drill 1.3mm pad 2.6mm -0 -5 -5 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_MKDS-1,5-5_1x05_P5.00mm_Horizontal -Terminal Block Phoenix MKDS-1,5-5, 5 pins, pitch 5mm, size 25x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix MKDS-1,5-5 pitch 5mm size 25x9.8mm^2 drill 1.3mm pad 2.6mm -0 -5 -5 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_MKDS-1,5-6-5.08_1x06_P5.08mm_Horizontal -Terminal Block Phoenix MKDS-1,5-6-5.08, 6 pins, pitch 5.08mm, size 30.5x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix MKDS-1,5-6-5.08 pitch 5.08mm size 30.5x9.8mm^2 drill 1.3mm pad 2.6mm -0 -6 -6 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_MKDS-1,5-6_1x06_P5.00mm_Horizontal -Terminal Block Phoenix MKDS-1,5-6, 6 pins, pitch 5mm, size 30x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix MKDS-1,5-6 pitch 5mm size 30x9.8mm^2 drill 1.3mm pad 2.6mm -0 -6 -6 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_MKDS-1,5-7-5.08_1x07_P5.08mm_Horizontal -Terminal Block Phoenix MKDS-1,5-7-5.08, 7 pins, pitch 5.08mm, size 35.6x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix MKDS-1,5-7-5.08 pitch 5.08mm size 35.6x9.8mm^2 drill 1.3mm pad 2.6mm -0 -7 -7 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_MKDS-1,5-7_1x07_P5.00mm_Horizontal -Terminal Block Phoenix MKDS-1,5-7, 7 pins, pitch 5mm, size 35x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix MKDS-1,5-7 pitch 5mm size 35x9.8mm^2 drill 1.3mm pad 2.6mm -0 -7 -7 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_MKDS-1,5-8-5.08_1x08_P5.08mm_Horizontal -Terminal Block Phoenix MKDS-1,5-8-5.08, 8 pins, pitch 5.08mm, size 40.6x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix MKDS-1,5-8-5.08 pitch 5.08mm size 40.6x9.8mm^2 drill 1.3mm pad 2.6mm -0 -8 -8 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_MKDS-1,5-8_1x08_P5.00mm_Horizontal -Terminal Block Phoenix MKDS-1,5-8, 8 pins, pitch 5mm, size 40x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix MKDS-1,5-8 pitch 5mm size 40x9.8mm^2 drill 1.3mm pad 2.6mm -0 -8 -8 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_MKDS-1,5-9-5.08_1x09_P5.08mm_Horizontal -Terminal Block Phoenix MKDS-1,5-9-5.08, 9 pins, pitch 5.08mm, size 45.7x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix MKDS-1,5-9-5.08 pitch 5.08mm size 45.7x9.8mm^2 drill 1.3mm pad 2.6mm -0 -9 -9 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_MKDS-1,5-9_1x09_P5.00mm_Horizontal -Terminal Block Phoenix MKDS-1,5-9, 9 pins, pitch 5mm, size 45x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix MKDS-1,5-9 pitch 5mm size 45x9.8mm^2 drill 1.3mm pad 2.6mm -0 -9 -9 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_MKDS-1,5-10-5.08_1x10_P5.08mm_Horizontal -Terminal Block Phoenix MKDS-1,5-10-5.08, 10 pins, pitch 5.08mm, size 50.8x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix MKDS-1,5-10-5.08 pitch 5.08mm size 50.8x9.8mm^2 drill 1.3mm pad 2.6mm -0 -10 -10 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_MKDS-1,5-10_1x10_P5.00mm_Horizontal -Terminal Block Phoenix MKDS-1,5-10, 10 pins, pitch 5mm, size 50x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix MKDS-1,5-10 pitch 5mm size 50x9.8mm^2 drill 1.3mm pad 2.6mm -0 -10 -10 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_MKDS-1,5-11-5.08_1x11_P5.08mm_Horizontal -Terminal Block Phoenix MKDS-1,5-11-5.08, 11 pins, pitch 5.08mm, size 55.9x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix MKDS-1,5-11-5.08 pitch 5.08mm size 55.9x9.8mm^2 drill 1.3mm pad 2.6mm -0 -11 -11 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_MKDS-1,5-11_1x11_P5.00mm_Horizontal -Terminal Block Phoenix MKDS-1,5-11, 11 pins, pitch 5mm, size 55x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix MKDS-1,5-11 pitch 5mm size 55x9.8mm^2 drill 1.3mm pad 2.6mm -0 -11 -11 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_MKDS-1,5-12-5.08_1x12_P5.08mm_Horizontal -Terminal Block Phoenix MKDS-1,5-12-5.08, 12 pins, pitch 5.08mm, size 61x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix MKDS-1,5-12-5.08 pitch 5.08mm size 61x9.8mm^2 drill 1.3mm pad 2.6mm -0 -12 -12 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_MKDS-1,5-12_1x12_P5.00mm_Horizontal -Terminal Block Phoenix MKDS-1,5-12, 12 pins, pitch 5mm, size 60x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix MKDS-1,5-12 pitch 5mm size 60x9.8mm^2 drill 1.3mm pad 2.6mm -0 -12 -12 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_MKDS-1,5-13-5.08_1x13_P5.08mm_Horizontal -Terminal Block Phoenix MKDS-1,5-13-5.08, 13 pins, pitch 5.08mm, size 66x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix MKDS-1,5-13-5.08 pitch 5.08mm size 66x9.8mm^2 drill 1.3mm pad 2.6mm -0 -13 -13 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_MKDS-1,5-13_1x13_P5.00mm_Horizontal -Terminal Block Phoenix MKDS-1,5-13, 13 pins, pitch 5mm, size 65x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix MKDS-1,5-13 pitch 5mm size 65x9.8mm^2 drill 1.3mm pad 2.6mm -0 -13 -13 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_MKDS-1,5-14-5.08_1x14_P5.08mm_Horizontal -Terminal Block Phoenix MKDS-1,5-14-5.08, 14 pins, pitch 5.08mm, size 71.1x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix MKDS-1,5-14-5.08 pitch 5.08mm size 71.1x9.8mm^2 drill 1.3mm pad 2.6mm -0 -14 -14 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_MKDS-1,5-14_1x14_P5.00mm_Horizontal -Terminal Block Phoenix MKDS-1,5-14, 14 pins, pitch 5mm, size 70x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix MKDS-1,5-14 pitch 5mm size 70x9.8mm^2 drill 1.3mm pad 2.6mm -0 -14 -14 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_MKDS-1,5-15-5.08_1x15_P5.08mm_Horizontal -Terminal Block Phoenix MKDS-1,5-15-5.08, 15 pins, pitch 5.08mm, size 76.2x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix MKDS-1,5-15-5.08 pitch 5.08mm size 76.2x9.8mm^2 drill 1.3mm pad 2.6mm -0 -15 -15 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_MKDS-1,5-15_1x15_P5.00mm_Horizontal -Terminal Block Phoenix MKDS-1,5-15, 15 pins, pitch 5mm, size 75x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix MKDS-1,5-15 pitch 5mm size 75x9.8mm^2 drill 1.3mm pad 2.6mm -0 -15 -15 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_MKDS-1,5-16-5.08_1x16_P5.08mm_Horizontal -Terminal Block Phoenix MKDS-1,5-16-5.08, 16 pins, pitch 5.08mm, size 81.3x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix MKDS-1,5-16-5.08 pitch 5.08mm size 81.3x9.8mm^2 drill 1.3mm pad 2.6mm -0 -16 -16 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_MKDS-1,5-16_1x16_P5.00mm_Horizontal -Terminal Block Phoenix MKDS-1,5-16, 16 pins, pitch 5mm, size 80x9.8mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/100425.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix MKDS-1,5-16 pitch 5mm size 80x9.8mm^2 drill 1.3mm pad 2.6mm -0 -16 -16 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_MKDS-3-2-5.08_1x02_P5.08mm_Horizontal -Terminal Block Phoenix MKDS-3-2-5.08, 2 pins, pitch 5.08mm, size 10.2x11.2mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/2138224.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix MKDS-3-2-5.08 pitch 5.08mm size 10.2x11.2mm^2 drill 1.3mm pad 2.6mm -0 -2 -2 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_MKDS-3-3-5.08_1x03_P5.08mm_Horizontal -Terminal Block Phoenix MKDS-3-3-5.08, 3 pins, pitch 5.08mm, size 15.2x11.2mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/2138224.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix MKDS-3-3-5.08 pitch 5.08mm size 15.2x11.2mm^2 drill 1.3mm pad 2.6mm -0 -3 -3 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_MKDS-3-4-5.08_1x04_P5.08mm_Horizontal -Terminal Block Phoenix MKDS-3-4-5.08, 4 pins, pitch 5.08mm, size 20.3x11.2mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/2138224.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix MKDS-3-4-5.08 pitch 5.08mm size 20.3x11.2mm^2 drill 1.3mm pad 2.6mm -0 -4 -4 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_MKDS-3-5-5.08_1x05_P5.08mm_Horizontal -Terminal Block Phoenix MKDS-3-5-5.08, 5 pins, pitch 5.08mm, size 25.4x11.2mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/2138224.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix MKDS-3-5-5.08 pitch 5.08mm size 25.4x11.2mm^2 drill 1.3mm pad 2.6mm -0 -5 -5 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_MKDS-3-6-5.08_1x06_P5.08mm_Horizontal -Terminal Block Phoenix MKDS-3-6-5.08, 6 pins, pitch 5.08mm, size 30.5x11.2mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/2138224.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix MKDS-3-6-5.08 pitch 5.08mm size 30.5x11.2mm^2 drill 1.3mm pad 2.6mm -0 -6 -6 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_MKDS-3-7-5.08_1x07_P5.08mm_Horizontal -Terminal Block Phoenix MKDS-3-7-5.08, 7 pins, pitch 5.08mm, size 35.6x11.2mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/2138224.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix MKDS-3-7-5.08 pitch 5.08mm size 35.6x11.2mm^2 drill 1.3mm pad 2.6mm -0 -7 -7 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_MKDS-3-8-5.08_1x08_P5.08mm_Horizontal -Terminal Block Phoenix MKDS-3-8-5.08, 8 pins, pitch 5.08mm, size 40.6x11.2mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/2138224.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix MKDS-3-8-5.08 pitch 5.08mm size 40.6x11.2mm^2 drill 1.3mm pad 2.6mm -0 -8 -8 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_MKDS-3-9-5.08_1x09_P5.08mm_Horizontal -Terminal Block Phoenix MKDS-3-9-5.08, 9 pins, pitch 5.08mm, size 45.7x11.2mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/2138224.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix MKDS-3-9-5.08 pitch 5.08mm size 45.7x11.2mm^2 drill 1.3mm pad 2.6mm -0 -9 -9 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_MKDS-3-10-5.08_1x10_P5.08mm_Horizontal -Terminal Block Phoenix MKDS-3-10-5.08, 10 pins, pitch 5.08mm, size 50.8x11.2mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/2138224.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix MKDS-3-10-5.08 pitch 5.08mm size 50.8x11.2mm^2 drill 1.3mm pad 2.6mm -0 -10 -10 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_MKDS-3-11-5.08_1x11_P5.08mm_Horizontal -Terminal Block Phoenix MKDS-3-11-5.08, 11 pins, pitch 5.08mm, size 55.9x11.2mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/2138224.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix MKDS-3-11-5.08 pitch 5.08mm size 55.9x11.2mm^2 drill 1.3mm pad 2.6mm -0 -11 -11 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_MKDS-3-12-5.08_1x12_P5.08mm_Horizontal -Terminal Block Phoenix MKDS-3-12-5.08, 12 pins, pitch 5.08mm, size 61x11.2mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/2138224.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix MKDS-3-12-5.08 pitch 5.08mm size 61x11.2mm^2 drill 1.3mm pad 2.6mm -0 -12 -12 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_MKDS-3-13-5.08_1x13_P5.08mm_Horizontal -Terminal Block Phoenix MKDS-3-13-5.08, 13 pins, pitch 5.08mm, size 66x11.2mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/2138224.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix MKDS-3-13-5.08 pitch 5.08mm size 66x11.2mm^2 drill 1.3mm pad 2.6mm -0 -13 -13 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_MKDS-3-14-5.08_1x14_P5.08mm_Horizontal -Terminal Block Phoenix MKDS-3-14-5.08, 14 pins, pitch 5.08mm, size 71.1x11.2mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/2138224.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix MKDS-3-14-5.08 pitch 5.08mm size 71.1x11.2mm^2 drill 1.3mm pad 2.6mm -0 -14 -14 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_MKDS-3-15-5.08_1x15_P5.08mm_Horizontal -Terminal Block Phoenix MKDS-3-15-5.08, 15 pins, pitch 5.08mm, size 76.2x11.2mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/2138224.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix MKDS-3-15-5.08 pitch 5.08mm size 76.2x11.2mm^2 drill 1.3mm pad 2.6mm -0 -15 -15 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_MKDS-3-16-5.08_1x16_P5.08mm_Horizontal -Terminal Block Phoenix MKDS-3-16-5.08, 16 pins, pitch 5.08mm, size 81.3x11.2mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.farnell.com/datasheets/2138224.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix MKDS-3-16-5.08 pitch 5.08mm size 81.3x11.2mm^2 drill 1.3mm pad 2.6mm -0 -16 -16 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_MPT-0,5-2-2.54_1x02_P2.54mm_Horizontal -Terminal Block Phoenix MPT-0,5-2-2.54, 2 pins, pitch 2.54mm, size 5.54x6.2mm^2, drill diamater 1.1mm, pad diameter 2.2mm, see http://www.mouser.com/ds/2/324/ItemDetail_1725656-920552.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix MPT-0,5-2-2.54 pitch 2.54mm size 5.54x6.2mm^2 drill 1.1mm pad 2.2mm -0 -2 -2 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_MPT-0,5-3-2.54_1x03_P2.54mm_Horizontal -Terminal Block Phoenix MPT-0,5-3-2.54, 3 pins, pitch 2.54mm, size 8.08x6.2mm^2, drill diamater 1.1mm, pad diameter 2.2mm, see http://www.mouser.com/ds/2/324/ItemDetail_1725656-920552.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix MPT-0,5-3-2.54 pitch 2.54mm size 8.08x6.2mm^2 drill 1.1mm pad 2.2mm -0 -3 -3 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_MPT-0,5-4-2.54_1x04_P2.54mm_Horizontal -Terminal Block Phoenix MPT-0,5-4-2.54, 4 pins, pitch 2.54mm, size 10.6x6.2mm^2, drill diamater 1.1mm, pad diameter 2.2mm, see http://www.mouser.com/ds/2/324/ItemDetail_1725672-916605.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix MPT-0,5-4-2.54 pitch 2.54mm size 10.6x6.2mm^2 drill 1.1mm pad 2.2mm -0 -4 -4 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_MPT-0,5-5-2.54_1x05_P2.54mm_Horizontal -Terminal Block Phoenix MPT-0,5-5-2.54, 5 pins, pitch 2.54mm, size 13.2x6.2mm^2, drill diamater 1.1mm, pad diameter 2.2mm, see http://www.mouser.com/ds/2/324/ItemDetail_1725672-916605.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix MPT-0,5-5-2.54 pitch 2.54mm size 13.2x6.2mm^2 drill 1.1mm pad 2.2mm -0 -5 -5 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_MPT-0,5-6-2.54_1x06_P2.54mm_Horizontal -Terminal Block Phoenix MPT-0,5-6-2.54, 6 pins, pitch 2.54mm, size 15.7x6.2mm^2, drill diamater 1.1mm, pad diameter 2.2mm, see http://www.mouser.com/ds/2/324/ItemDetail_1725672-916605.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix MPT-0,5-6-2.54 pitch 2.54mm size 15.7x6.2mm^2 drill 1.1mm pad 2.2mm -0 -6 -6 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_MPT-0,5-7-2.54_1x07_P2.54mm_Horizontal -Terminal Block Phoenix MPT-0,5-7-2.54, 7 pins, pitch 2.54mm, size 18.2x6.2mm^2, drill diamater 1.1mm, pad diameter 2.2mm, see http://www.mouser.com/ds/2/324/ItemDetail_1725672-916605.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix MPT-0,5-7-2.54 pitch 2.54mm size 18.2x6.2mm^2 drill 1.1mm pad 2.2mm -0 -7 -7 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_MPT-0,5-8-2.54_1x08_P2.54mm_Horizontal -Terminal Block Phoenix MPT-0,5-8-2.54, 8 pins, pitch 2.54mm, size 20.8x6.2mm^2, drill diamater 1.1mm, pad diameter 2.2mm, see http://www.mouser.com/ds/2/324/ItemDetail_1725672-916605.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix MPT-0,5-8-2.54 pitch 2.54mm size 20.8x6.2mm^2 drill 1.1mm pad 2.2mm -0 -8 -8 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_MPT-0,5-9-2.54_1x09_P2.54mm_Horizontal -Terminal Block Phoenix MPT-0,5-9-2.54, 9 pins, pitch 2.54mm, size 23.3x6.2mm^2, drill diamater 1.1mm, pad diameter 2.2mm, see http://www.mouser.com/ds/2/324/ItemDetail_1725672-916605.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix MPT-0,5-9-2.54 pitch 2.54mm size 23.3x6.2mm^2 drill 1.1mm pad 2.2mm -0 -9 -9 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_MPT-0,5-10-2.54_1x10_P2.54mm_Horizontal -Terminal Block Phoenix MPT-0,5-10-2.54, 10 pins, pitch 2.54mm, size 25.9x6.2mm^2, drill diamater 1.1mm, pad diameter 2.2mm, see http://www.mouser.com/ds/2/324/ItemDetail_1725672-916605.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix MPT-0,5-10-2.54 pitch 2.54mm size 25.9x6.2mm^2 drill 1.1mm pad 2.2mm -0 -10 -10 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_MPT-0,5-11-2.54_1x11_P2.54mm_Horizontal -Terminal Block Phoenix MPT-0,5-11-2.54, 11 pins, pitch 2.54mm, size 28.4x6.2mm^2, drill diamater 1.1mm, pad diameter 2.2mm, see http://www.mouser.com/ds/2/324/ItemDetail_1725672-916605.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix MPT-0,5-11-2.54 pitch 2.54mm size 28.4x6.2mm^2 drill 1.1mm pad 2.2mm -0 -11 -11 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_MPT-0,5-12-2.54_1x12_P2.54mm_Horizontal -Terminal Block Phoenix MPT-0,5-12-2.54, 12 pins, pitch 2.54mm, size 30.9x6.2mm^2, drill diamater 1.1mm, pad diameter 2.2mm, see http://www.mouser.com/ds/2/324/ItemDetail_1725672-916605.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix MPT-0,5-12-2.54 pitch 2.54mm size 30.9x6.2mm^2 drill 1.1mm pad 2.2mm -0 -12 -12 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_PT-1,5-2-3.5-H_1x02_P3.50mm_Horizontal -Terminal Block Phoenix PT-1,5-2-3.5-H, 2 pins, pitch 3.5mm, size 7x7.6mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix PT-1,5-2-3.5-H pitch 3.5mm size 7x7.6mm^2 drill 1.2mm pad 2.4mm -0 -2 -2 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_PT-1,5-2-5.0-H_1x02_P5.00mm_Horizontal -Terminal Block Phoenix PT-1,5-2-5.0-H, 2 pins, pitch 5mm, size 10x9mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.mouser.com/ds/2/324/ItemDetail_1935161-922578.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix PT-1,5-2-5.0-H pitch 5mm size 10x9mm^2 drill 1.3mm pad 2.6mm -0 -2 -2 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_PT-1,5-3-3.5-H_1x03_P3.50mm_Horizontal -Terminal Block Phoenix PT-1,5-3-3.5-H, 3 pins, pitch 3.5mm, size 10.5x7.6mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix PT-1,5-3-3.5-H pitch 3.5mm size 10.5x7.6mm^2 drill 1.2mm pad 2.4mm -0 -3 -3 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_PT-1,5-3-5.0-H_1x03_P5.00mm_Horizontal -Terminal Block Phoenix PT-1,5-3-5.0-H, 3 pins, pitch 5mm, size 15x9mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.mouser.com/ds/2/324/ItemDetail_1935161-922578.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix PT-1,5-3-5.0-H pitch 5mm size 15x9mm^2 drill 1.3mm pad 2.6mm -0 -3 -3 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_PT-1,5-4-3.5-H_1x04_P3.50mm_Horizontal -Terminal Block Phoenix PT-1,5-4-3.5-H, 4 pins, pitch 3.5mm, size 14x7.6mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix PT-1,5-4-3.5-H pitch 3.5mm size 14x7.6mm^2 drill 1.2mm pad 2.4mm -0 -4 -4 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_PT-1,5-4-5.0-H_1x04_P5.00mm_Horizontal -Terminal Block Phoenix PT-1,5-4-5.0-H, 4 pins, pitch 5mm, size 20x9mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.mouser.com/ds/2/324/ItemDetail_1935161-922578.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix PT-1,5-4-5.0-H pitch 5mm size 20x9mm^2 drill 1.3mm pad 2.6mm -0 -4 -4 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_PT-1,5-5-3.5-H_1x05_P3.50mm_Horizontal -Terminal Block Phoenix PT-1,5-5-3.5-H, 5 pins, pitch 3.5mm, size 17.5x7.6mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix PT-1,5-5-3.5-H pitch 3.5mm size 17.5x7.6mm^2 drill 1.2mm pad 2.4mm -0 -5 -5 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_PT-1,5-5-5.0-H_1x05_P5.00mm_Horizontal -Terminal Block Phoenix PT-1,5-5-5.0-H, 5 pins, pitch 5mm, size 25x9mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.mouser.com/ds/2/324/ItemDetail_1935161-922578.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix PT-1,5-5-5.0-H pitch 5mm size 25x9mm^2 drill 1.3mm pad 2.6mm -0 -5 -5 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_PT-1,5-6-3.5-H_1x06_P3.50mm_Horizontal -Terminal Block Phoenix PT-1,5-6-3.5-H, 6 pins, pitch 3.5mm, size 21x7.6mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix PT-1,5-6-3.5-H pitch 3.5mm size 21x7.6mm^2 drill 1.2mm pad 2.4mm -0 -6 -6 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_PT-1,5-6-5.0-H_1x06_P5.00mm_Horizontal -Terminal Block Phoenix PT-1,5-6-5.0-H, 6 pins, pitch 5mm, size 30x9mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.mouser.com/ds/2/324/ItemDetail_1935161-922578.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix PT-1,5-6-5.0-H pitch 5mm size 30x9mm^2 drill 1.3mm pad 2.6mm -0 -6 -6 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_PT-1,5-7-3.5-H_1x07_P3.50mm_Horizontal -Terminal Block Phoenix PT-1,5-7-3.5-H, 7 pins, pitch 3.5mm, size 24.5x7.6mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix PT-1,5-7-3.5-H pitch 3.5mm size 24.5x7.6mm^2 drill 1.2mm pad 2.4mm -0 -7 -7 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_PT-1,5-7-5.0-H_1x07_P5.00mm_Horizontal -Terminal Block Phoenix PT-1,5-7-5.0-H, 7 pins, pitch 5mm, size 35x9mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.mouser.com/ds/2/324/ItemDetail_1935161-922578.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix PT-1,5-7-5.0-H pitch 5mm size 35x9mm^2 drill 1.3mm pad 2.6mm -0 -7 -7 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_PT-1,5-8-3.5-H_1x08_P3.50mm_Horizontal -Terminal Block Phoenix PT-1,5-8-3.5-H, 8 pins, pitch 3.5mm, size 28x7.6mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix PT-1,5-8-3.5-H pitch 3.5mm size 28x7.6mm^2 drill 1.2mm pad 2.4mm -0 -8 -8 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_PT-1,5-8-5.0-H_1x08_P5.00mm_Horizontal -Terminal Block Phoenix PT-1,5-8-5.0-H, 8 pins, pitch 5mm, size 40x9mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.mouser.com/ds/2/324/ItemDetail_1935161-922578.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix PT-1,5-8-5.0-H pitch 5mm size 40x9mm^2 drill 1.3mm pad 2.6mm -0 -8 -8 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_PT-1,5-9-3.5-H_1x09_P3.50mm_Horizontal -Terminal Block Phoenix PT-1,5-9-3.5-H, 9 pins, pitch 3.5mm, size 31.5x7.6mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix PT-1,5-9-3.5-H pitch 3.5mm size 31.5x7.6mm^2 drill 1.2mm pad 2.4mm -0 -9 -9 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_PT-1,5-9-5.0-H_1x09_P5.00mm_Horizontal -Terminal Block Phoenix PT-1,5-9-5.0-H, 9 pins, pitch 5mm, size 45x9mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.mouser.com/ds/2/324/ItemDetail_1935161-922578.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix PT-1,5-9-5.0-H pitch 5mm size 45x9mm^2 drill 1.3mm pad 2.6mm -0 -9 -9 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_PT-1,5-10-3.5-H_1x10_P3.50mm_Horizontal -Terminal Block Phoenix PT-1,5-10-3.5-H, 10 pins, pitch 3.5mm, size 35x7.6mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix PT-1,5-10-3.5-H pitch 3.5mm size 35x7.6mm^2 drill 1.2mm pad 2.4mm -0 -10 -10 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_PT-1,5-10-5.0-H_1x10_P5.00mm_Horizontal -Terminal Block Phoenix PT-1,5-10-5.0-H, 10 pins, pitch 5mm, size 50x9mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.mouser.com/ds/2/324/ItemDetail_1935161-922578.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix PT-1,5-10-5.0-H pitch 5mm size 50x9mm^2 drill 1.3mm pad 2.6mm -0 -10 -10 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_PT-1,5-11-3.5-H_1x11_P3.50mm_Horizontal -Terminal Block Phoenix PT-1,5-11-3.5-H, 11 pins, pitch 3.5mm, size 38.5x7.6mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix PT-1,5-11-3.5-H pitch 3.5mm size 38.5x7.6mm^2 drill 1.2mm pad 2.4mm -0 -11 -11 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_PT-1,5-11-5.0-H_1x11_P5.00mm_Horizontal -Terminal Block Phoenix PT-1,5-11-5.0-H, 11 pins, pitch 5mm, size 55x9mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.mouser.com/ds/2/324/ItemDetail_1935161-922578.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix PT-1,5-11-5.0-H pitch 5mm size 55x9mm^2 drill 1.3mm pad 2.6mm -0 -11 -11 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_PT-1,5-12-3.5-H_1x12_P3.50mm_Horizontal -Terminal Block Phoenix PT-1,5-12-3.5-H, 12 pins, pitch 3.5mm, size 42x7.6mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix PT-1,5-12-3.5-H pitch 3.5mm size 42x7.6mm^2 drill 1.2mm pad 2.4mm -0 -12 -12 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_PT-1,5-12-5.0-H_1x12_P5.00mm_Horizontal -Terminal Block Phoenix PT-1,5-12-5.0-H, 12 pins, pitch 5mm, size 60x9mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.mouser.com/ds/2/324/ItemDetail_1935161-922578.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix PT-1,5-12-5.0-H pitch 5mm size 60x9mm^2 drill 1.3mm pad 2.6mm -0 -12 -12 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_PT-1,5-13-3.5-H_1x13_P3.50mm_Horizontal -Terminal Block Phoenix PT-1,5-13-3.5-H, 13 pins, pitch 3.5mm, size 45.5x7.6mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix PT-1,5-13-3.5-H pitch 3.5mm size 45.5x7.6mm^2 drill 1.2mm pad 2.4mm -0 -13 -13 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_PT-1,5-13-5.0-H_1x13_P5.00mm_Horizontal -Terminal Block Phoenix PT-1,5-13-5.0-H, 13 pins, pitch 5mm, size 65x9mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.mouser.com/ds/2/324/ItemDetail_1935161-922578.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix PT-1,5-13-5.0-H pitch 5mm size 65x9mm^2 drill 1.3mm pad 2.6mm -0 -13 -13 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_PT-1,5-14-3.5-H_1x14_P3.50mm_Horizontal -Terminal Block Phoenix PT-1,5-14-3.5-H, 14 pins, pitch 3.5mm, size 49x7.6mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix PT-1,5-14-3.5-H pitch 3.5mm size 49x7.6mm^2 drill 1.2mm pad 2.4mm -0 -14 -14 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_PT-1,5-14-5.0-H_1x14_P5.00mm_Horizontal -Terminal Block Phoenix PT-1,5-14-5.0-H, 14 pins, pitch 5mm, size 70x9mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.mouser.com/ds/2/324/ItemDetail_1935161-922578.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix PT-1,5-14-5.0-H pitch 5mm size 70x9mm^2 drill 1.3mm pad 2.6mm -0 -14 -14 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_PT-1,5-15-3.5-H_1x15_P3.50mm_Horizontal -Terminal Block Phoenix PT-1,5-15-3.5-H, 15 pins, pitch 3.5mm, size 52.5x7.6mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix PT-1,5-15-3.5-H pitch 3.5mm size 52.5x7.6mm^2 drill 1.2mm pad 2.4mm -0 -15 -15 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_PT-1,5-15-5.0-H_1x15_P5.00mm_Horizontal -Terminal Block Phoenix PT-1,5-15-5.0-H, 15 pins, pitch 5mm, size 75x9mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.mouser.com/ds/2/324/ItemDetail_1935161-922578.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix PT-1,5-15-5.0-H pitch 5mm size 75x9mm^2 drill 1.3mm pad 2.6mm -0 -15 -15 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_PT-1,5-16-3.5-H_1x16_P3.50mm_Horizontal -Terminal Block Phoenix PT-1,5-16-3.5-H, 16 pins, pitch 3.5mm, size 56x7.6mm^2, drill diamater 1.2mm, pad diameter 2.4mm, see , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix PT-1,5-16-3.5-H pitch 3.5mm size 56x7.6mm^2 drill 1.2mm pad 2.4mm -0 -16 -16 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_PT-1,5-16-5.0-H_1x16_P5.00mm_Horizontal -Terminal Block Phoenix PT-1,5-16-5.0-H, 16 pins, pitch 5mm, size 80x9mm^2, drill diamater 1.3mm, pad diameter 2.6mm, see http://www.mouser.com/ds/2/324/ItemDetail_1935161-922578.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix PT-1,5-16-5.0-H pitch 5mm size 80x9mm^2 drill 1.3mm pad 2.6mm -0 -16 -16 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_PTSM-0,5-2-2,5-V-SMD_1x02-1MP_P2.50mm_Vertical -PhoenixContact PTSM0,5 2 2,5mm vertical SMD spring clamp terminal block connector http://www.phoenixcontact.com/us/products/1814702/pdf -PhoenixContact PTSM0.5 2 2.5mm vertical SMD spring clamp terminal block connector -0 -4 -3 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_PTSM-0,5-2-2.5-H-THR_1x02_P2.50mm_Horizontal -Terminal Block Phoenix PTSM-0,5-2-2.5-H-THR, 2 pins, pitch 2.5mm, size 7.2x10mm^2, drill diamater 1.2mm, pad diameter 3mm, see http://www.produktinfo.conrad.com/datenblaetter/550000-574999/556441-da-01-de-LEITERPLATTENKL__PTSM_0_5__8_2_5_H_THR.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix PTSM-0,5-2-2.5-H-THR pitch 2.5mm size 7.2x10mm^2 drill 1.2mm pad 3mm -0 -4 -2 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_PTSM-0,5-2-2.5-V-THR_1x02_P2.50mm_Vertical -Terminal Block Phoenix PTSM-0,5-2-2.5-V-THR, vertical (cable from top), 2 pins, pitch 2.5mm, size 5.5x5mm^2, drill diamater 1.2mm, pad diameter 2mm, see http://www.produktinfo.conrad.com/datenblaetter/550000-574999/556444-da-01-de-LEITERPLATTENKL__PTSM_0_5__4_2_5_V_THR.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix PTSM-0,5-2-2.5-V-THR vertical pitch 2.5mm size 5.5x5mm^2 drill 1.2mm pad 2mm -0 -4 -2 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_PTSM-0,5-2-HV-2.5-SMD_1x02-1MP_P2.50mm_Vertical -PhoenixContact PTSM0,5 2 HV 2,5mm vertical SMD spring clamp terminal block connector http://www.phoenixcontact.com/us/products/1778696/pdf -2.5mm vertical SMD spring clamp terminal block connector -0 -4 -3 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_PTSM-0,5-3-2,5-V-SMD_1x03-1MP_P2.50mm_Vertical -PhoenixContact PTSM0,5 3 2,5mm vertical SMD spring clamp terminal block connector http://www.phoenixcontact.com/us/products/1814715/pdf -PhoenixContact PTSM0.5 3 2.5mm vertical SMD spring clamp terminal block connector -0 -5 -4 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_PTSM-0,5-3-2.5-H-THR_1x03_P2.50mm_Horizontal -Terminal Block Phoenix PTSM-0,5-3-2.5-H-THR, 3 pins, pitch 2.5mm, size 9.7x10mm^2, drill diamater 1.2mm, pad diameter 3mm, see http://www.produktinfo.conrad.com/datenblaetter/550000-574999/556441-da-01-de-LEITERPLATTENKL__PTSM_0_5__8_2_5_H_THR.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix PTSM-0,5-3-2.5-H-THR pitch 2.5mm size 9.7x10mm^2 drill 1.2mm pad 3mm -0 -6 -3 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_PTSM-0,5-3-2.5-V-THR_1x03_P2.50mm_Vertical -Terminal Block Phoenix PTSM-0,5-3-2.5-V-THR, vertical (cable from top), 3 pins, pitch 2.5mm, size 8x5mm^2, drill diamater 1.2mm, pad diameter 2mm, see http://www.produktinfo.conrad.com/datenblaetter/550000-574999/556444-da-01-de-LEITERPLATTENKL__PTSM_0_5__4_2_5_V_THR.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix PTSM-0,5-3-2.5-V-THR vertical pitch 2.5mm size 8x5mm^2 drill 1.2mm pad 2mm -0 -6 -3 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_PTSM-0,5-3-HV-2.5-SMD_1x03-1MP_P2.50mm_Vertical -PhoenixContact PTSM0,5 3 HV 2,5mm vertical SMD spring clamp terminal block connector http://www.phoenixcontact.com/us/products/1778706/pdf -2.5mm vertical SMD spring clamp terminal block connector -0 -5 -4 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_PTSM-0,5-4-2,5-V-SMD_1x04-1MP_P2.50mm_Vertical -PhoenixContact PTSM0,5 4 2,5mm vertical SMD spring clamp terminal block connector http://www.phoenixcontact.com/us/products/1814728/pdf -PhoenixContact PTSM0.5 4 2.5mm vertical SMD spring clamp terminal block connector -0 -6 -5 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_PTSM-0,5-4-2.5-H-THR_1x04_P2.50mm_Horizontal -Terminal Block Phoenix PTSM-0,5-4-2.5-H-THR, 4 pins, pitch 2.5mm, size 12.2x10mm^2, drill diamater 1.2mm, pad diameter 3mm, see http://www.produktinfo.conrad.com/datenblaetter/550000-574999/556441-da-01-de-LEITERPLATTENKL__PTSM_0_5__8_2_5_H_THR.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix PTSM-0,5-4-2.5-H-THR pitch 2.5mm size 12.2x10mm^2 drill 1.2mm pad 3mm -0 -8 -4 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_PTSM-0,5-4-2.5-V-THR_1x04_P2.50mm_Vertical -Terminal Block Phoenix PTSM-0,5-4-2.5-V-THR, vertical (cable from top), 4 pins, pitch 2.5mm, size 10.5x5mm^2, drill diamater 1.2mm, pad diameter 2mm, see http://www.produktinfo.conrad.com/datenblaetter/550000-574999/556444-da-01-de-LEITERPLATTENKL__PTSM_0_5__4_2_5_V_THR.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix PTSM-0,5-4-2.5-V-THR vertical pitch 2.5mm size 10.5x5mm^2 drill 1.2mm pad 2mm -0 -8 -4 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_PTSM-0,5-4-HV-2.5-SMD_1x04-1MP_P2.50mm_Vertical -PhoenixContact PTSM0,5 4 HV 2,5mm vertical SMD spring clamp terminal block connector http://www.phoenixcontact.com/us/products/1778719/pdf -2.5mm vertical SMD spring clamp terminal block connector -0 -4 -3 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_PTSM-0,5-5-2,5-V-SMD_1x05-1MP_P2.50mm_Vertical -PhoenixContact PTSM0,5 5 2,5mm vertical SMD spring clamp terminal block connector http://www.phoenixcontact.com/us/products/1814731/pdf -PhoenixContact PTSM0.5 5 2.5mm vertical SMD spring clamp terminal block connector -0 -7 -6 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_PTSM-0,5-5-2.5-H-THR_1x05_P2.50mm_Horizontal -Terminal Block Phoenix PTSM-0,5-5-2.5-H-THR, 5 pins, pitch 2.5mm, size 14.7x10mm^2, drill diamater 1.2mm, pad diameter 3mm, see http://www.produktinfo.conrad.com/datenblaetter/550000-574999/556441-da-01-de-LEITERPLATTENKL__PTSM_0_5__8_2_5_H_THR.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix PTSM-0,5-5-2.5-H-THR pitch 2.5mm size 14.7x10mm^2 drill 1.2mm pad 3mm -0 -10 -5 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_PTSM-0,5-5-2.5-V-THR_1x05_P2.50mm_Vertical -Terminal Block Phoenix PTSM-0,5-5-2.5-V-THR, vertical (cable from top), 5 pins, pitch 2.5mm, size 13x5mm^2, drill diamater 1.2mm, pad diameter 2mm, see http://www.produktinfo.conrad.com/datenblaetter/550000-574999/556444-da-01-de-LEITERPLATTENKL__PTSM_0_5__4_2_5_V_THR.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix PTSM-0,5-5-2.5-V-THR vertical pitch 2.5mm size 13x5mm^2 drill 1.2mm pad 2mm -0 -10 -5 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_PTSM-0,5-5-HV-2.5-SMD_1x05-1MP_P2.50mm_Vertical -PhoenixContact PTSM0,5 5 HV 2,5mm vertical SMD spring clamp terminal block connector http://www.phoenixcontact.com/us/products/1778722/pdf -2.5mm vertical SMD spring clamp terminal block connector -0 -7 -6 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_PTSM-0,5-6-2,5-V-SMD_1x06-1MP_P2.50mm_Vertical -PhoenixContact PTSM0,5 6 2,5mm vertical SMD spring clamp terminal block connector http://www.phoenixcontact.com/us/products/1814744/pdf -PhoenixContact PTSM0.5 6 2.5mm vertical SMD spring clamp terminal block connector -0 -8 -7 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_PTSM-0,5-6-2.5-H-THR_1x06_P2.50mm_Horizontal -Terminal Block Phoenix PTSM-0,5-6-2.5-H-THR, 6 pins, pitch 2.5mm, size 17.2x10mm^2, drill diamater 1.2mm, pad diameter 3mm, see http://www.produktinfo.conrad.com/datenblaetter/550000-574999/556441-da-01-de-LEITERPLATTENKL__PTSM_0_5__8_2_5_H_THR.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix PTSM-0,5-6-2.5-H-THR pitch 2.5mm size 17.2x10mm^2 drill 1.2mm pad 3mm -0 -12 -6 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_PTSM-0,5-6-2.5-V-THR_1x06_P2.50mm_Vertical -Terminal Block Phoenix PTSM-0,5-6-2.5-V-THR, vertical (cable from top), 6 pins, pitch 2.5mm, size 15.5x5mm^2, drill diamater 1.2mm, pad diameter 2mm, see http://www.produktinfo.conrad.com/datenblaetter/550000-574999/556444-da-01-de-LEITERPLATTENKL__PTSM_0_5__4_2_5_V_THR.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix PTSM-0,5-6-2.5-V-THR vertical pitch 2.5mm size 15.5x5mm^2 drill 1.2mm pad 2mm -0 -12 -6 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_PTSM-0,5-6-HV-2.5-SMD_1x06-1MP_P2.50mm_Vertical -PhoenixContact PTSM0,5 6 HV 2,5mm vertical SMD spring clamp terminal block connector http://www.phoenixcontact.com/us/products/1778735/pdf -2.5mm vertical SMD spring clamp terminal block connector -0 -8 -7 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_PTSM-0,5-7-2,5-V-SMD_1x07-1MP_P2.50mm_Vertical -PhoenixContact PTSM0,5 7 2,5mm vertical SMD spring clamp terminal block connector http://www.phoenixcontact.com/us/products/1814757/pdf -PhoenixContact PTSM0.5 7 2.5mm vertical SMD spring clamp terminal block connector -0 -9 -8 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_PTSM-0,5-7-2.5-H-THR_1x07_P2.50mm_Horizontal -Terminal Block Phoenix PTSM-0,5-7-2.5-H-THR, 7 pins, pitch 2.5mm, size 19.7x10mm^2, drill diamater 1.2mm, pad diameter 3mm, see http://www.produktinfo.conrad.com/datenblaetter/550000-574999/556441-da-01-de-LEITERPLATTENKL__PTSM_0_5__8_2_5_H_THR.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix PTSM-0,5-7-2.5-H-THR pitch 2.5mm size 19.7x10mm^2 drill 1.2mm pad 3mm -0 -14 -7 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_PTSM-0,5-7-2.5-V-THR_1x07_P2.50mm_Vertical -Terminal Block Phoenix PTSM-0,5-7-2.5-V-THR, vertical (cable from top), 7 pins, pitch 2.5mm, size 18x5mm^2, drill diamater 1.2mm, pad diameter 2mm, see http://www.produktinfo.conrad.com/datenblaetter/550000-574999/556444-da-01-de-LEITERPLATTENKL__PTSM_0_5__4_2_5_V_THR.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix PTSM-0,5-7-2.5-V-THR vertical pitch 2.5mm size 18x5mm^2 drill 1.2mm pad 2mm -0 -14 -7 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_PTSM-0,5-7-HV-2.5-SMD_1x07-1MP_P2.50mm_Vertical -PhoenixContact PTSM0,5 7 HV 2,5mm vertical SMD spring clamp terminal block connector http://www.phoenixcontact.com/us/products/1778748/pdf -2.5mm vertical SMD spring clamp terminal block connector -0 -9 -8 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_PTSM-0,5-8-2,5-V-SMD_1x08-1MP_P2.50mm_Vertical -PhoenixContact PTSM0,5 8 2,5mm vertical SMD spring clamp terminal block connector http://www.phoenixcontact.com/us/products/1814760/pdf -PhoenixContact PTSM0.5 8 2.5mm vertical SMD spring clamp terminal block connector -0 -10 -9 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_PTSM-0,5-8-2.5-H-THR_1x08_P2.50mm_Horizontal -Terminal Block Phoenix PTSM-0,5-8-2.5-H-THR, 8 pins, pitch 2.5mm, size 22.2x10mm^2, drill diamater 1.2mm, pad diameter 3mm, see http://www.produktinfo.conrad.com/datenblaetter/550000-574999/556441-da-01-de-LEITERPLATTENKL__PTSM_0_5__8_2_5_H_THR.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix PTSM-0,5-8-2.5-H-THR pitch 2.5mm size 22.2x10mm^2 drill 1.2mm pad 3mm -0 -16 -8 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_PTSM-0,5-8-2.5-V-THR_1x08_P2.50mm_Vertical -Terminal Block Phoenix PTSM-0,5-8-2.5-V-THR, vertical (cable from top), 8 pins, pitch 2.5mm, size 20.5x5mm^2, drill diamater 1.2mm, pad diameter 2mm, see http://www.produktinfo.conrad.com/datenblaetter/550000-574999/556444-da-01-de-LEITERPLATTENKL__PTSM_0_5__4_2_5_V_THR.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_Phoenix -THT Terminal Block Phoenix PTSM-0,5-8-2.5-V-THR vertical pitch 2.5mm size 20.5x5mm^2 drill 1.2mm pad 2mm -0 -16 -8 -TerminalBlock_Phoenix -TerminalBlock_Phoenix_PTSM-0,5-8-HV-2.5-SMD_1x08-1MP_P2.50mm_Vertical -PhoenixContact PTSM0,5 8 HV 2,5mm vertical SMD spring clamp terminal block connector http://www.phoenixcontact.com/us/products/1778751/pdf -2.5mm vertical SMD spring clamp terminal block connector -0 -10 -9 -TerminalBlock_RND -TerminalBlock_RND_205-00001_1x02_P5.00mm_Horizontal -terminal block RND 205-00001, 2 pins, pitch 5mm, size 10x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00001_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00001 pitch 5mm size 10x9mm^2 drill 1.3mm pad 2.5mm -0 -2 -2 -TerminalBlock_RND -TerminalBlock_RND_205-00002_1x03_P5.00mm_Horizontal -terminal block RND 205-00002, 3 pins, pitch 5mm, size 15x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00001_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00002 pitch 5mm size 15x9mm^2 drill 1.3mm pad 2.5mm -0 -3 -3 -TerminalBlock_RND -TerminalBlock_RND_205-00003_1x04_P5.00mm_Horizontal -terminal block RND 205-00003, 4 pins, pitch 5mm, size 20x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00001_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00003 pitch 5mm size 20x9mm^2 drill 1.3mm pad 2.5mm -0 -4 -4 -TerminalBlock_RND -TerminalBlock_RND_205-00004_1x05_P5.00mm_Horizontal -terminal block RND 205-00004, 5 pins, pitch 5mm, size 25x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00001_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00004 pitch 5mm size 25x9mm^2 drill 1.3mm pad 2.5mm -0 -5 -5 -TerminalBlock_RND -TerminalBlock_RND_205-00005_1x06_P5.00mm_Horizontal -terminal block RND 205-00005, 6 pins, pitch 5mm, size 30x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00001_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00005 pitch 5mm size 30x9mm^2 drill 1.3mm pad 2.5mm -0 -6 -6 -TerminalBlock_RND -TerminalBlock_RND_205-00006_1x07_P5.00mm_Horizontal -terminal block RND 205-00006, 7 pins, pitch 5mm, size 35x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00001_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00006 pitch 5mm size 35x9mm^2 drill 1.3mm pad 2.5mm -0 -7 -7 -TerminalBlock_RND -TerminalBlock_RND_205-00007_1x08_P5.00mm_Horizontal -terminal block RND 205-00007, 8 pins, pitch 5mm, size 40x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00001_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00007 pitch 5mm size 40x9mm^2 drill 1.3mm pad 2.5mm -0 -8 -8 -TerminalBlock_RND -TerminalBlock_RND_205-00008_1x09_P5.00mm_Horizontal -terminal block RND 205-00008, 9 pins, pitch 5mm, size 45x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00001_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00008 pitch 5mm size 45x9mm^2 drill 1.3mm pad 2.5mm -0 -9 -9 -TerminalBlock_RND -TerminalBlock_RND_205-00009_1x10_P5.00mm_Horizontal -terminal block RND 205-00009, 10 pins, pitch 5mm, size 50x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00001_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00009 pitch 5mm size 50x9mm^2 drill 1.3mm pad 2.5mm -0 -10 -10 -TerminalBlock_RND -TerminalBlock_RND_205-00010_1x11_P5.00mm_Horizontal -terminal block RND 205-00010, 11 pins, pitch 5mm, size 55x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00001_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00010 pitch 5mm size 55x9mm^2 drill 1.3mm pad 2.5mm -0 -11 -11 -TerminalBlock_RND -TerminalBlock_RND_205-00011_1x12_P5.00mm_Horizontal -terminal block RND 205-00011, 12 pins, pitch 5mm, size 60x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00001_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00011 pitch 5mm size 60x9mm^2 drill 1.3mm pad 2.5mm -0 -12 -12 -TerminalBlock_RND -TerminalBlock_RND_205-00012_1x02_P5.00mm_Horizontal -terminal block RND 205-00012, 2 pins, pitch 5mm, size 10x7.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00012_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00012 pitch 5mm size 10x7.6mm^2 drill 1.3mm pad 2.5mm -0 -2 -2 -TerminalBlock_RND -TerminalBlock_RND_205-00013_1x03_P5.00mm_Horizontal -terminal block RND 205-00013, 3 pins, pitch 5mm, size 15x7.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00012_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00013 pitch 5mm size 15x7.6mm^2 drill 1.3mm pad 2.5mm -0 -3 -3 -TerminalBlock_RND -TerminalBlock_RND_205-00014_1x04_P5.00mm_Horizontal -terminal block RND 205-00014, 4 pins, pitch 5mm, size 20x7.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00012_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00014 pitch 5mm size 20x7.6mm^2 drill 1.3mm pad 2.5mm -0 -4 -4 -TerminalBlock_RND -TerminalBlock_RND_205-00015_1x05_P5.00mm_Horizontal -terminal block RND 205-00015, 5 pins, pitch 5mm, size 25x7.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00012_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00015 pitch 5mm size 25x7.6mm^2 drill 1.3mm pad 2.5mm -0 -5 -5 -TerminalBlock_RND -TerminalBlock_RND_205-00016_1x06_P5.00mm_Horizontal -terminal block RND 205-00016, 6 pins, pitch 5mm, size 30x7.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00012_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00016 pitch 5mm size 30x7.6mm^2 drill 1.3mm pad 2.5mm -0 -6 -6 -TerminalBlock_RND -TerminalBlock_RND_205-00017_1x07_P5.00mm_Horizontal -terminal block RND 205-00017, 7 pins, pitch 5mm, size 35x7.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00012_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00017 pitch 5mm size 35x7.6mm^2 drill 1.3mm pad 2.5mm -0 -7 -7 -TerminalBlock_RND -TerminalBlock_RND_205-00018_1x08_P5.00mm_Horizontal -terminal block RND 205-00018, 8 pins, pitch 5mm, size 40x7.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00012_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00018 pitch 5mm size 40x7.6mm^2 drill 1.3mm pad 2.5mm -0 -8 -8 -TerminalBlock_RND -TerminalBlock_RND_205-00019_1x09_P5.00mm_Horizontal -terminal block RND 205-00019, 9 pins, pitch 5mm, size 45x7.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00012_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00019 pitch 5mm size 45x7.6mm^2 drill 1.3mm pad 2.5mm -0 -9 -9 -TerminalBlock_RND -TerminalBlock_RND_205-00020_1x10_P5.00mm_Horizontal -terminal block RND 205-00020, 10 pins, pitch 5mm, size 50x7.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00012_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00020 pitch 5mm size 50x7.6mm^2 drill 1.3mm pad 2.5mm -0 -10 -10 -TerminalBlock_RND -TerminalBlock_RND_205-00021_1x11_P5.00mm_Horizontal -terminal block RND 205-00021, 11 pins, pitch 5mm, size 55x7.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00012_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00021 pitch 5mm size 55x7.6mm^2 drill 1.3mm pad 2.5mm -0 -11 -11 -TerminalBlock_RND -TerminalBlock_RND_205-00022_1x12_P5.00mm_Horizontal -terminal block RND 205-00022, 12 pins, pitch 5mm, size 60x7.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00012_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00022 pitch 5mm size 60x7.6mm^2 drill 1.3mm pad 2.5mm -0 -12 -12 -TerminalBlock_RND -TerminalBlock_RND_205-00023_1x02_P10.00mm_Horizontal -terminal block RND 205-00023, 2 pins, pitch 10mm, size 15x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00023 pitch 10mm size 15x9mm^2 drill 1.3mm pad 2.5mm -0 -2 -2 -TerminalBlock_RND -TerminalBlock_RND_205-00024_1x03_P10.00mm_Horizontal -terminal block RND 205-00024, 3 pins, pitch 10mm, size 25x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00024 pitch 10mm size 25x9mm^2 drill 1.3mm pad 2.5mm -0 -3 -3 -TerminalBlock_RND -TerminalBlock_RND_205-00025_1x04_P10.00mm_Horizontal -terminal block RND 205-00025, 4 pins, pitch 10mm, size 35x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00025 pitch 10mm size 35x9mm^2 drill 1.3mm pad 2.5mm -0 -4 -4 -TerminalBlock_RND -TerminalBlock_RND_205-00026_1x05_P10.00mm_Horizontal -terminal block RND 205-00026, 5 pins, pitch 10mm, size 45x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00026 pitch 10mm size 45x9mm^2 drill 1.3mm pad 2.5mm -0 -5 -5 -TerminalBlock_RND -TerminalBlock_RND_205-00027_1x06_P10.00mm_Horizontal -terminal block RND 205-00027, 6 pins, pitch 10mm, size 55x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00027 pitch 10mm size 55x9mm^2 drill 1.3mm pad 2.5mm -0 -6 -6 -TerminalBlock_RND -TerminalBlock_RND_205-00028_1x07_P10.00mm_Horizontal -terminal block RND 205-00028, 7 pins, pitch 10mm, size 65x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00028 pitch 10mm size 65x9mm^2 drill 1.3mm pad 2.5mm -0 -7 -7 -TerminalBlock_RND -TerminalBlock_RND_205-00029_1x08_P10.00mm_Horizontal -terminal block RND 205-00029, 8 pins, pitch 10mm, size 75x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00029 pitch 10mm size 75x9mm^2 drill 1.3mm pad 2.5mm -0 -8 -8 -TerminalBlock_RND -TerminalBlock_RND_205-00030_1x09_P10.00mm_Horizontal -terminal block RND 205-00030, 9 pins, pitch 10mm, size 85x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00030 pitch 10mm size 85x9mm^2 drill 1.3mm pad 2.5mm -0 -9 -9 -TerminalBlock_RND -TerminalBlock_RND_205-00031_1x10_P10.00mm_Horizontal -terminal block RND 205-00031, 10 pins, pitch 10mm, size 95x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00031 pitch 10mm size 95x9mm^2 drill 1.3mm pad 2.5mm -0 -10 -10 -TerminalBlock_RND -TerminalBlock_RND_205-00032_1x11_P10.00mm_Horizontal -terminal block RND 205-00032, 11 pins, pitch 10mm, size 105x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00032 pitch 10mm size 105x9mm^2 drill 1.3mm pad 2.5mm -0 -11 -11 -TerminalBlock_RND -TerminalBlock_RND_205-00033_1x12_P10.00mm_Horizontal -terminal block RND 205-00033, 12 pins, pitch 10mm, size 115x9mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00033 pitch 10mm size 115x9mm^2 drill 1.3mm pad 2.5mm -0 -12 -12 -TerminalBlock_RND -TerminalBlock_RND_205-00045_1x02_P5.00mm_Horizontal -terminal block RND 205-00045, 2 pins, pitch 5mm, size 10x8.1mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00045_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00045 pitch 5mm size 10x8.1mm^2 drill 1.1mm pad 2.1mm -0 -2 -2 -TerminalBlock_RND -TerminalBlock_RND_205-00046_1x03_P5.00mm_Horizontal -terminal block RND 205-00046, 3 pins, pitch 5mm, size 15x8.1mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00045_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00046 pitch 5mm size 15x8.1mm^2 drill 1.1mm pad 2.1mm -0 -3 -3 -TerminalBlock_RND -TerminalBlock_RND_205-00047_1x04_P5.00mm_Horizontal -terminal block RND 205-00047, 4 pins, pitch 5mm, size 20x8.1mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00045_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00047 pitch 5mm size 20x8.1mm^2 drill 1.1mm pad 2.1mm -0 -4 -4 -TerminalBlock_RND -TerminalBlock_RND_205-00048_1x05_P5.00mm_Horizontal -terminal block RND 205-00048, 5 pins, pitch 5mm, size 25x8.1mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00045_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00048 pitch 5mm size 25x8.1mm^2 drill 1.1mm pad 2.1mm -0 -5 -5 -TerminalBlock_RND -TerminalBlock_RND_205-00049_1x06_P5.00mm_Horizontal -terminal block RND 205-00049, 6 pins, pitch 5mm, size 30x8.1mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00045_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00049 pitch 5mm size 30x8.1mm^2 drill 1.1mm pad 2.1mm -0 -6 -6 -TerminalBlock_RND -TerminalBlock_RND_205-00050_1x07_P5.00mm_Horizontal -terminal block RND 205-00050, 7 pins, pitch 5mm, size 35x8.1mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00045_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00050 pitch 5mm size 35x8.1mm^2 drill 1.1mm pad 2.1mm -0 -7 -7 -TerminalBlock_RND -TerminalBlock_RND_205-00051_1x08_P5.00mm_Horizontal -terminal block RND 205-00051, 8 pins, pitch 5mm, size 40x8.1mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00045_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00051 pitch 5mm size 40x8.1mm^2 drill 1.1mm pad 2.1mm -0 -8 -8 -TerminalBlock_RND -TerminalBlock_RND_205-00052_1x09_P5.00mm_Horizontal -terminal block RND 205-00052, 9 pins, pitch 5mm, size 45x8.1mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00045_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00052 pitch 5mm size 45x8.1mm^2 drill 1.1mm pad 2.1mm -0 -9 -9 -TerminalBlock_RND -TerminalBlock_RND_205-00053_1x10_P5.00mm_Horizontal -terminal block RND 205-00053, 10 pins, pitch 5mm, size 50x8.1mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00045_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00053 pitch 5mm size 50x8.1mm^2 drill 1.1mm pad 2.1mm -0 -10 -10 -TerminalBlock_RND -TerminalBlock_RND_205-00054_1x11_P5.00mm_Horizontal -terminal block RND 205-00054, 11 pins, pitch 5mm, size 55x8.1mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00045_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00054 pitch 5mm size 55x8.1mm^2 drill 1.1mm pad 2.1mm -0 -11 -11 -TerminalBlock_RND -TerminalBlock_RND_205-00055_1x12_P5.00mm_Horizontal -terminal block RND 205-00055, 12 pins, pitch 5mm, size 60x8.1mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00045_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00055 pitch 5mm size 60x8.1mm^2 drill 1.1mm pad 2.1mm -0 -12 -12 -TerminalBlock_RND -TerminalBlock_RND_205-00056_1x02_P5.00mm_45Degree -terminal block RND 205-00056, 45Degree (cable under 45degree), 2 pins, pitch 5mm, size 10x12.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00056_DB_EN.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00056 45Degree pitch 5mm size 10x12.6mm^2 drill 1.3mm pad 2.5mm -0 -2 -2 -TerminalBlock_RND -TerminalBlock_RND_205-00057_1x03_P5.00mm_45Degree -terminal block RND 205-00057, 45Degree (cable under 45degree), 3 pins, pitch 5mm, size 15x12.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00056_DB_EN.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00057 45Degree pitch 5mm size 15x12.6mm^2 drill 1.3mm pad 2.5mm -0 -3 -3 -TerminalBlock_RND -TerminalBlock_RND_205-00058_1x04_P5.00mm_45Degree -terminal block RND 205-00058, 45Degree (cable under 45degree), 4 pins, pitch 5mm, size 20x12.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00056_DB_EN.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00058 45Degree pitch 5mm size 20x12.6mm^2 drill 1.3mm pad 2.5mm -0 -4 -4 -TerminalBlock_RND -TerminalBlock_RND_205-00059_1x05_P5.00mm_45Degree -terminal block RND 205-00059, 45Degree (cable under 45degree), 5 pins, pitch 5mm, size 25x12.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00056_DB_EN.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00059 45Degree pitch 5mm size 25x12.6mm^2 drill 1.3mm pad 2.5mm -0 -5 -5 -TerminalBlock_RND -TerminalBlock_RND_205-00060_1x06_P5.00mm_45Degree -terminal block RND 205-00060, 45Degree (cable under 45degree), 6 pins, pitch 5mm, size 30x12.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00056_DB_EN.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00060 45Degree pitch 5mm size 30x12.6mm^2 drill 1.3mm pad 2.5mm -0 -6 -6 -TerminalBlock_RND -TerminalBlock_RND_205-00061_1x07_P5.00mm_45Degree -terminal block RND 205-00061, 45Degree (cable under 45degree), 7 pins, pitch 5mm, size 35x12.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00056_DB_EN.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00061 45Degree pitch 5mm size 35x12.6mm^2 drill 1.3mm pad 2.5mm -0 -7 -7 -TerminalBlock_RND -TerminalBlock_RND_205-00062_1x08_P5.00mm_45Degree -terminal block RND 205-00062, 45Degree (cable under 45degree), 8 pins, pitch 5mm, size 40x12.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00056_DB_EN.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00062 45Degree pitch 5mm size 40x12.6mm^2 drill 1.3mm pad 2.5mm -0 -8 -8 -TerminalBlock_RND -TerminalBlock_RND_205-00063_1x09_P5.00mm_45Degree -terminal block RND 205-00063, 45Degree (cable under 45degree), 9 pins, pitch 5mm, size 45x12.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00056_DB_EN.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00063 45Degree pitch 5mm size 45x12.6mm^2 drill 1.3mm pad 2.5mm -0 -9 -9 -TerminalBlock_RND -TerminalBlock_RND_205-00064_1x10_P5.00mm_45Degree -terminal block RND 205-00064, 45Degree (cable under 45degree), 10 pins, pitch 5mm, size 50x12.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00056_DB_EN.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00064 45Degree pitch 5mm size 50x12.6mm^2 drill 1.3mm pad 2.5mm -0 -10 -10 -TerminalBlock_RND -TerminalBlock_RND_205-00065_1x11_P5.00mm_45Degree -terminal block RND 205-00065, 45Degree (cable under 45degree), 11 pins, pitch 5mm, size 55x12.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00056_DB_EN.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00065 45Degree pitch 5mm size 55x12.6mm^2 drill 1.3mm pad 2.5mm -0 -11 -11 -TerminalBlock_RND -TerminalBlock_RND_205-00066_1x12_P5.00mm_45Degree -terminal block RND 205-00066, 45Degree (cable under 45degree), 12 pins, pitch 5mm, size 60x12.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00056_DB_EN.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00066 45Degree pitch 5mm size 60x12.6mm^2 drill 1.3mm pad 2.5mm -0 -12 -12 -TerminalBlock_RND -TerminalBlock_RND_205-00067_1x02_P7.50mm_Horizontal -terminal block RND 205-00067, 2 pins, pitch 7.5mm, size 15x10.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00067_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00067 pitch 7.5mm size 15x10.3mm^2 drill 1.3mm pad 2.5mm -0 -2 -2 -TerminalBlock_RND -TerminalBlock_RND_205-00068_1x03_P7.50mm_Horizontal -terminal block RND 205-00068, 3 pins, pitch 7.5mm, size 22.5x10.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00067_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00068 pitch 7.5mm size 22.5x10.3mm^2 drill 1.3mm pad 2.5mm -0 -3 -3 -TerminalBlock_RND -TerminalBlock_RND_205-00069_1x04_P7.50mm_Horizontal -terminal block RND 205-00069, 4 pins, pitch 7.5mm, size 30x10.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00067_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00069 pitch 7.5mm size 30x10.3mm^2 drill 1.3mm pad 2.5mm -0 -4 -4 -TerminalBlock_RND -TerminalBlock_RND_205-00070_1x05_P7.50mm_Horizontal -terminal block RND 205-00070, 5 pins, pitch 7.5mm, size 37.5x10.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00067_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00070 pitch 7.5mm size 37.5x10.3mm^2 drill 1.3mm pad 2.5mm -0 -5 -5 -TerminalBlock_RND -TerminalBlock_RND_205-00071_1x06_P7.50mm_Horizontal -terminal block RND 205-00071, 6 pins, pitch 7.5mm, size 45x10.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00067_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00071 pitch 7.5mm size 45x10.3mm^2 drill 1.3mm pad 2.5mm -0 -6 -6 -TerminalBlock_RND -TerminalBlock_RND_205-00072_1x07_P7.50mm_Horizontal -terminal block RND 205-00072, 7 pins, pitch 7.5mm, size 52.5x10.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00067_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00072 pitch 7.5mm size 52.5x10.3mm^2 drill 1.3mm pad 2.5mm -0 -7 -7 -TerminalBlock_RND -TerminalBlock_RND_205-00073_1x08_P7.50mm_Horizontal -terminal block RND 205-00073, 8 pins, pitch 7.5mm, size 60x10.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00067_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00073 pitch 7.5mm size 60x10.3mm^2 drill 1.3mm pad 2.5mm -0 -8 -8 -TerminalBlock_RND -TerminalBlock_RND_205-00074_1x09_P7.50mm_Horizontal -terminal block RND 205-00074, 9 pins, pitch 7.5mm, size 67.5x10.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00067_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00074 pitch 7.5mm size 67.5x10.3mm^2 drill 1.3mm pad 2.5mm -0 -9 -9 -TerminalBlock_RND -TerminalBlock_RND_205-00075_1x10_P7.50mm_Horizontal -terminal block RND 205-00075, 10 pins, pitch 7.5mm, size 75x10.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00067_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00075 pitch 7.5mm size 75x10.3mm^2 drill 1.3mm pad 2.5mm -0 -10 -10 -TerminalBlock_RND -TerminalBlock_RND_205-00076_1x11_P7.50mm_Horizontal -terminal block RND 205-00076, 11 pins, pitch 7.5mm, size 82.5x10.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00067_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00076 pitch 7.5mm size 82.5x10.3mm^2 drill 1.3mm pad 2.5mm -0 -11 -11 -TerminalBlock_RND -TerminalBlock_RND_205-00077_1x12_P7.50mm_Horizontal -terminal block RND 205-00077, 12 pins, pitch 7.5mm, size 90x10.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00067_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00077 pitch 7.5mm size 90x10.3mm^2 drill 1.3mm pad 2.5mm -0 -12 -12 -TerminalBlock_RND -TerminalBlock_RND_205-00078_1x02_P10.00mm_Horizontal -terminal block RND 205-00078, 2 pins, pitch 10mm, size 15x10.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00078_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00078 pitch 10mm size 15x10.3mm^2 drill 1.3mm pad 2.5mm -0 -2 -2 -TerminalBlock_RND -TerminalBlock_RND_205-00079_1x03_P10.00mm_Horizontal -terminal block RND 205-00079, 3 pins, pitch 10mm, size 25x10.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00078_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00079 pitch 10mm size 25x10.3mm^2 drill 1.3mm pad 2.5mm -0 -3 -3 -TerminalBlock_RND -TerminalBlock_RND_205-00080_1x04_P10.00mm_Horizontal -terminal block RND 205-00080, 4 pins, pitch 10mm, size 35x10.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00078_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00080 pitch 10mm size 35x10.3mm^2 drill 1.3mm pad 2.5mm -0 -4 -4 -TerminalBlock_RND -TerminalBlock_RND_205-00081_1x05_P10.00mm_Horizontal -terminal block RND 205-00081, 5 pins, pitch 10mm, size 45x10.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00078_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00081 pitch 10mm size 45x10.3mm^2 drill 1.3mm pad 2.5mm -0 -5 -5 -TerminalBlock_RND -TerminalBlock_RND_205-00082_1x06_P10.00mm_Horizontal -terminal block RND 205-00082, 6 pins, pitch 10mm, size 55x10.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00078_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00082 pitch 10mm size 55x10.3mm^2 drill 1.3mm pad 2.5mm -0 -6 -6 -TerminalBlock_RND -TerminalBlock_RND_205-00083_1x07_P10.00mm_Horizontal -terminal block RND 205-00083, 7 pins, pitch 10mm, size 65x10.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00078_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00083 pitch 10mm size 65x10.3mm^2 drill 1.3mm pad 2.5mm -0 -7 -7 -TerminalBlock_RND -TerminalBlock_RND_205-00084_1x08_P10.00mm_Horizontal -terminal block RND 205-00084, 8 pins, pitch 10mm, size 75x10.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00078_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00084 pitch 10mm size 75x10.3mm^2 drill 1.3mm pad 2.5mm -0 -8 -8 -TerminalBlock_RND -TerminalBlock_RND_205-00085_1x09_P10.00mm_Horizontal -terminal block RND 205-00085, 9 pins, pitch 10mm, size 85x10.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00078_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00085 pitch 10mm size 85x10.3mm^2 drill 1.3mm pad 2.5mm -0 -9 -9 -TerminalBlock_RND -TerminalBlock_RND_205-00086_1x10_P10.00mm_Horizontal -terminal block RND 205-00086, 10 pins, pitch 10mm, size 95x10.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00078_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00086 pitch 10mm size 95x10.3mm^2 drill 1.3mm pad 2.5mm -0 -10 -10 -TerminalBlock_RND -TerminalBlock_RND_205-00087_1x11_P10.00mm_Horizontal -terminal block RND 205-00087, 11 pins, pitch 10mm, size 105x10.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00078_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00087 pitch 10mm size 105x10.3mm^2 drill 1.3mm pad 2.5mm -0 -11 -11 -TerminalBlock_RND -TerminalBlock_RND_205-00088_1x12_P10.00mm_Horizontal -terminal block RND 205-00088, 12 pins, pitch 10mm, size 115x10.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00078_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00088 pitch 10mm size 115x10.3mm^2 drill 1.3mm pad 2.5mm -0 -12 -12 -TerminalBlock_RND -TerminalBlock_RND_205-00232_1x02_P5.08mm_Horizontal -terminal block RND 205-00232, 2 pins, pitch 5.08mm, size 10.2x8.45mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00232_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00232 pitch 5.08mm size 10.2x8.45mm^2 drill 1.1mm pad 2.1mm -0 -2 -2 -TerminalBlock_RND -TerminalBlock_RND_205-00233_1x03_P5.08mm_Horizontal -terminal block RND 205-00233, 3 pins, pitch 5.08mm, size 15.2x8.45mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00232_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00233 pitch 5.08mm size 15.2x8.45mm^2 drill 1.1mm pad 2.1mm -0 -3 -3 -TerminalBlock_RND -TerminalBlock_RND_205-00234_1x04_P5.08mm_Horizontal -terminal block RND 205-00234, 4 pins, pitch 5.08mm, size 20.3x8.45mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00232_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00234 pitch 5.08mm size 20.3x8.45mm^2 drill 1.1mm pad 2.1mm -0 -4 -4 -TerminalBlock_RND -TerminalBlock_RND_205-00235_1x05_P5.08mm_Horizontal -terminal block RND 205-00235, 5 pins, pitch 5.08mm, size 25.4x8.45mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00232_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00235 pitch 5.08mm size 25.4x8.45mm^2 drill 1.1mm pad 2.1mm -0 -5 -5 -TerminalBlock_RND -TerminalBlock_RND_205-00236_1x06_P5.08mm_Horizontal -terminal block RND 205-00236, 6 pins, pitch 5.08mm, size 30.5x8.45mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00232_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00236 pitch 5.08mm size 30.5x8.45mm^2 drill 1.1mm pad 2.1mm -0 -6 -6 -TerminalBlock_RND -TerminalBlock_RND_205-00237_1x07_P5.08mm_Horizontal -terminal block RND 205-00237, 7 pins, pitch 5.08mm, size 35.6x8.45mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00232_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00237 pitch 5.08mm size 35.6x8.45mm^2 drill 1.1mm pad 2.1mm -0 -7 -7 -TerminalBlock_RND -TerminalBlock_RND_205-00238_1x08_P5.08mm_Horizontal -terminal block RND 205-00238, 8 pins, pitch 5.08mm, size 40.6x8.45mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00232_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00238 pitch 5.08mm size 40.6x8.45mm^2 drill 1.1mm pad 2.1mm -0 -8 -8 -TerminalBlock_RND -TerminalBlock_RND_205-00239_1x09_P5.08mm_Horizontal -terminal block RND 205-00239, 9 pins, pitch 5.08mm, size 45.7x8.45mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00232_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00239 pitch 5.08mm size 45.7x8.45mm^2 drill 1.1mm pad 2.1mm -0 -9 -9 -TerminalBlock_RND -TerminalBlock_RND_205-00240_1x10_P5.08mm_Horizontal -terminal block RND 205-00240, 10 pins, pitch 5.08mm, size 50.8x8.45mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00232_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00240 pitch 5.08mm size 50.8x8.45mm^2 drill 1.1mm pad 2.1mm -0 -10 -10 -TerminalBlock_RND -TerminalBlock_RND_205-00241_1x02_P10.16mm_Horizontal -terminal block RND 205-00241, 2 pins, pitch 10.2mm, size 15.2x8.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00241 pitch 10.2mm size 15.2x8.3mm^2 drill 1.3mm pad 2.5mm -0 -2 -2 -TerminalBlock_RND -TerminalBlock_RND_205-00242_1x03_P10.16mm_Horizontal -terminal block RND 205-00242, 3 pins, pitch 10.2mm, size 25.4x8.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00242 pitch 10.2mm size 25.4x8.3mm^2 drill 1.3mm pad 2.5mm -0 -3 -3 -TerminalBlock_RND -TerminalBlock_RND_205-00243_1x04_P10.16mm_Horizontal -terminal block RND 205-00243, 4 pins, pitch 10.2mm, size 35.6x8.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00243 pitch 10.2mm size 35.6x8.3mm^2 drill 1.3mm pad 2.5mm -0 -4 -4 -TerminalBlock_RND -TerminalBlock_RND_205-00244_1x05_P10.16mm_Horizontal -terminal block RND 205-00244, 5 pins, pitch 10.2mm, size 45.7x8.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00244 pitch 10.2mm size 45.7x8.3mm^2 drill 1.3mm pad 2.5mm -0 -5 -5 -TerminalBlock_RND -TerminalBlock_RND_205-00245_1x06_P10.16mm_Horizontal -terminal block RND 205-00245, 6 pins, pitch 10.2mm, size 55.9x8.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00245 pitch 10.2mm size 55.9x8.3mm^2 drill 1.3mm pad 2.5mm -0 -6 -6 -TerminalBlock_RND -TerminalBlock_RND_205-00246_1x07_P10.16mm_Horizontal -terminal block RND 205-00246, 7 pins, pitch 10.2mm, size 66x8.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00246 pitch 10.2mm size 66x8.3mm^2 drill 1.3mm pad 2.5mm -0 -7 -7 -TerminalBlock_RND -TerminalBlock_RND_205-00247_1x08_P10.16mm_Horizontal -terminal block RND 205-00247, 8 pins, pitch 10.2mm, size 76.2x8.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00247 pitch 10.2mm size 76.2x8.3mm^2 drill 1.3mm pad 2.5mm -0 -8 -8 -TerminalBlock_RND -TerminalBlock_RND_205-00248_1x09_P10.16mm_Horizontal -terminal block RND 205-00248, 9 pins, pitch 10.2mm, size 86.4x8.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00248 pitch 10.2mm size 86.4x8.3mm^2 drill 1.3mm pad 2.5mm -0 -9 -9 -TerminalBlock_RND -TerminalBlock_RND_205-00249_1x10_P10.16mm_Horizontal -terminal block RND 205-00249, 10 pins, pitch 10.2mm, size 96.5x8.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00249 pitch 10.2mm size 96.5x8.3mm^2 drill 1.3mm pad 2.5mm -0 -10 -10 -TerminalBlock_RND -TerminalBlock_RND_205-00250_1x11_P10.16mm_Horizontal -terminal block RND 205-00250, 11 pins, pitch 10.2mm, size 107x8.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00250 pitch 10.2mm size 107x8.3mm^2 drill 1.3mm pad 2.5mm -0 -11 -11 -TerminalBlock_RND -TerminalBlock_RND_205-00251_1x12_P10.16mm_Horizontal -terminal block RND 205-00251, 12 pins, pitch 10.2mm, size 117x8.3mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00023_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00251 pitch 10.2mm size 117x8.3mm^2 drill 1.3mm pad 2.5mm -0 -12 -12 -TerminalBlock_RND -TerminalBlock_RND_205-00276_1x02_P5.00mm_Vertical -terminal block RND 205-00078, vertical (cable from top), 2 pins, pitch 5mm, size 10x10mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00276_DB_EN.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00078 vertical pitch 5mm size 10x10mm^2 drill 1.3mm pad 2.5mm -0 -2 -2 -TerminalBlock_RND -TerminalBlock_RND_205-00277_1x03_P5.00mm_Vertical -terminal block RND 205-00079, vertical (cable from top), 3 pins, pitch 5mm, size 15x10mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00276_DB_EN.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00079 vertical pitch 5mm size 15x10mm^2 drill 1.3mm pad 2.5mm -0 -3 -3 -TerminalBlock_RND -TerminalBlock_RND_205-00278_1x04_P5.00mm_Vertical -terminal block RND 205-00080, vertical (cable from top), 4 pins, pitch 5mm, size 20x10mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00276_DB_EN.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00080 vertical pitch 5mm size 20x10mm^2 drill 1.3mm pad 2.5mm -0 -4 -4 -TerminalBlock_RND -TerminalBlock_RND_205-00279_1x05_P5.00mm_Vertical -terminal block RND 205-00081, vertical (cable from top), 5 pins, pitch 5mm, size 25x10mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00276_DB_EN.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00081 vertical pitch 5mm size 25x10mm^2 drill 1.3mm pad 2.5mm -0 -5 -5 -TerminalBlock_RND -TerminalBlock_RND_205-00280_1x06_P5.00mm_Vertical -terminal block RND 205-00082, vertical (cable from top), 6 pins, pitch 5mm, size 30x10mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00276_DB_EN.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00082 vertical pitch 5mm size 30x10mm^2 drill 1.3mm pad 2.5mm -0 -6 -6 -TerminalBlock_RND -TerminalBlock_RND_205-00281_1x07_P5.00mm_Vertical -terminal block RND 205-00083, vertical (cable from top), 7 pins, pitch 5mm, size 35x10mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00276_DB_EN.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00083 vertical pitch 5mm size 35x10mm^2 drill 1.3mm pad 2.5mm -0 -7 -7 -TerminalBlock_RND -TerminalBlock_RND_205-00282_1x08_P5.00mm_Vertical -terminal block RND 205-00084, vertical (cable from top), 8 pins, pitch 5mm, size 40x10mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00276_DB_EN.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00084 vertical pitch 5mm size 40x10mm^2 drill 1.3mm pad 2.5mm -0 -8 -8 -TerminalBlock_RND -TerminalBlock_RND_205-00283_1x09_P5.00mm_Vertical -terminal block RND 205-00085, vertical (cable from top), 9 pins, pitch 5mm, size 45x10mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00276_DB_EN.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00085 vertical pitch 5mm size 45x10mm^2 drill 1.3mm pad 2.5mm -0 -9 -9 -TerminalBlock_RND -TerminalBlock_RND_205-00284_1x10_P5.00mm_Vertical -terminal block RND 205-00086, vertical (cable from top), 10 pins, pitch 5mm, size 50x10mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00276_DB_EN.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00086 vertical pitch 5mm size 50x10mm^2 drill 1.3mm pad 2.5mm -0 -10 -10 -TerminalBlock_RND -TerminalBlock_RND_205-00285_1x11_P5.00mm_Vertical -terminal block RND 205-00087, vertical (cable from top), 11 pins, pitch 5mm, size 55x10mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00276_DB_EN.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00087 vertical pitch 5mm size 55x10mm^2 drill 1.3mm pad 2.5mm -0 -11 -11 -TerminalBlock_RND -TerminalBlock_RND_205-00286_1x12_P5.00mm_Vertical -terminal block RND 205-00088, vertical (cable from top), 12 pins, pitch 5mm, size 60x10mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00276_DB_EN.pdf, script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00088 vertical pitch 5mm size 60x10mm^2 drill 1.3mm pad 2.5mm -0 -12 -12 -TerminalBlock_RND -TerminalBlock_RND_205-00287_1x02_P5.08mm_Horizontal -terminal block RND 205-00287, 2 pins, pitch 5.08mm, size 10.2x10.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00287_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00287 pitch 5.08mm size 10.2x10.6mm^2 drill 1.3mm pad 2.5mm -0 -2 -2 -TerminalBlock_RND -TerminalBlock_RND_205-00288_1x03_P5.08mm_Horizontal -terminal block RND 205-00288, 3 pins, pitch 5.08mm, size 15.2x10.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00287_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00288 pitch 5.08mm size 15.2x10.6mm^2 drill 1.3mm pad 2.5mm -0 -3 -3 -TerminalBlock_RND -TerminalBlock_RND_205-00289_1x04_P5.08mm_Horizontal -terminal block RND 205-00289, 4 pins, pitch 5.08mm, size 20.3x10.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00287_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00289 pitch 5.08mm size 20.3x10.6mm^2 drill 1.3mm pad 2.5mm -0 -4 -4 -TerminalBlock_RND -TerminalBlock_RND_205-00290_1x05_P5.08mm_Horizontal -terminal block RND 205-00290, 5 pins, pitch 5.08mm, size 25.4x10.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00287_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00290 pitch 5.08mm size 25.4x10.6mm^2 drill 1.3mm pad 2.5mm -0 -5 -5 -TerminalBlock_RND -TerminalBlock_RND_205-00291_1x06_P5.08mm_Horizontal -terminal block RND 205-00291, 6 pins, pitch 5.08mm, size 30.5x10.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00287_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00291 pitch 5.08mm size 30.5x10.6mm^2 drill 1.3mm pad 2.5mm -0 -6 -6 -TerminalBlock_RND -TerminalBlock_RND_205-00292_1x07_P5.08mm_Horizontal -terminal block RND 205-00292, 7 pins, pitch 5.08mm, size 35.6x10.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00287_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00292 pitch 5.08mm size 35.6x10.6mm^2 drill 1.3mm pad 2.5mm -0 -7 -7 -TerminalBlock_RND -TerminalBlock_RND_205-00293_1x08_P5.08mm_Horizontal -terminal block RND 205-00293, 8 pins, pitch 5.08mm, size 40.6x10.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00287_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00293 pitch 5.08mm size 40.6x10.6mm^2 drill 1.3mm pad 2.5mm -0 -8 -8 -TerminalBlock_RND -TerminalBlock_RND_205-00294_1x09_P5.08mm_Horizontal -terminal block RND 205-00294, 9 pins, pitch 5.08mm, size 45.7x10.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00287_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00294 pitch 5.08mm size 45.7x10.6mm^2 drill 1.3mm pad 2.5mm -0 -9 -9 -TerminalBlock_RND -TerminalBlock_RND_205-00295_1x10_P5.08mm_Horizontal -terminal block RND 205-00295, 10 pins, pitch 5.08mm, size 50.8x10.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00287_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00295 pitch 5.08mm size 50.8x10.6mm^2 drill 1.3mm pad 2.5mm -0 -10 -10 -TerminalBlock_RND -TerminalBlock_RND_205-00296_1x11_P5.08mm_Horizontal -terminal block RND 205-00296, 11 pins, pitch 5.08mm, size 55.9x10.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00287_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00296 pitch 5.08mm size 55.9x10.6mm^2 drill 1.3mm pad 2.5mm -0 -11 -11 -TerminalBlock_RND -TerminalBlock_RND_205-00297_1x12_P5.08mm_Horizontal -terminal block RND 205-00297, 12 pins, pitch 5.08mm, size 61x10.6mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00287_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00297 pitch 5.08mm size 61x10.6mm^2 drill 1.3mm pad 2.5mm -0 -12 -12 -TerminalBlock_RND -TerminalBlock_RND_205-00298_1x02_P10.00mm_Horizontal -terminal block RND 205-00298, 2 pins, pitch 10mm, size 15x8.1mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00298_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00298 pitch 10mm size 15x8.1mm^2 drill 1.3mm pad 2.5mm -0 -2 -2 -TerminalBlock_RND -TerminalBlock_RND_205-00299_1x03_P10.00mm_Horizontal -terminal block RND 205-00299, 3 pins, pitch 10mm, size 25x8.1mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00298_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00299 pitch 10mm size 25x8.1mm^2 drill 1.3mm pad 2.5mm -0 -3 -3 -TerminalBlock_RND -TerminalBlock_RND_205-00300_1x04_P10.00mm_Horizontal -terminal block RND 205-00300, 4 pins, pitch 10mm, size 35x8.1mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00298_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00300 pitch 10mm size 35x8.1mm^2 drill 1.3mm pad 2.5mm -0 -4 -4 -TerminalBlock_RND -TerminalBlock_RND_205-00301_1x05_P10.00mm_Horizontal -terminal block RND 205-00301, 5 pins, pitch 10mm, size 45x8.1mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00298_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00301 pitch 10mm size 45x8.1mm^2 drill 1.3mm pad 2.5mm -0 -5 -5 -TerminalBlock_RND -TerminalBlock_RND_205-00302_1x06_P10.00mm_Horizontal -terminal block RND 205-00302, 6 pins, pitch 10mm, size 55x8.1mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00298_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00302 pitch 10mm size 55x8.1mm^2 drill 1.3mm pad 2.5mm -0 -6 -6 -TerminalBlock_RND -TerminalBlock_RND_205-00303_1x07_P10.00mm_Horizontal -terminal block RND 205-00303, 7 pins, pitch 10mm, size 65x8.1mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00298_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00303 pitch 10mm size 65x8.1mm^2 drill 1.3mm pad 2.5mm -0 -7 -7 -TerminalBlock_RND -TerminalBlock_RND_205-00304_1x08_P10.00mm_Horizontal -terminal block RND 205-00304, 8 pins, pitch 10mm, size 75x8.1mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00298_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00304 pitch 10mm size 75x8.1mm^2 drill 1.3mm pad 2.5mm -0 -8 -8 -TerminalBlock_RND -TerminalBlock_RND_205-00305_1x09_P10.00mm_Horizontal -terminal block RND 205-00305, 9 pins, pitch 10mm, size 85x8.1mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00298_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00305 pitch 10mm size 85x8.1mm^2 drill 1.3mm pad 2.5mm -0 -9 -9 -TerminalBlock_RND -TerminalBlock_RND_205-00306_1x10_P10.00mm_Horizontal -terminal block RND 205-00306, 10 pins, pitch 10mm, size 95x8.1mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00298_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00306 pitch 10mm size 95x8.1mm^2 drill 1.3mm pad 2.5mm -0 -10 -10 -TerminalBlock_RND -TerminalBlock_RND_205-00307_1x11_P10.00mm_Horizontal -terminal block RND 205-00307, 11 pins, pitch 10mm, size 105x8.1mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00298_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00307 pitch 10mm size 105x8.1mm^2 drill 1.3mm pad 2.5mm -0 -11 -11 -TerminalBlock_RND -TerminalBlock_RND_205-00308_1x12_P10.00mm_Horizontal -terminal block RND 205-00308, 12 pins, pitch 10mm, size 115x8.1mm^2, drill diamater 1.3mm, pad diameter 2.5mm, see http://cdn-reichelt.de/documents/datenblatt/C151/RND_205-00298_DB_EN.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_RND -THT terminal block RND 205-00308 pitch 10mm size 115x8.1mm^2 drill 1.3mm pad 2.5mm -0 -12 -12 -TerminalBlock_TE-Connectivity -TerminalBlock_TE_1-282834-0_1x10_P2.54mm_Horizontal -Terminal Block TE 1-282834-0, 10 pins, pitch 2.54mm, size 25.86x6.5mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F282834%7FC1%7Fpdf%7FEnglish%7FENG_CD_282834_C1.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_TE-Connectivity -THT Terminal Block TE 1-282834-0 pitch 2.54mm size 25.86x6.5mm^2 drill 1.1mm pad 2.1mm -0 -10 -10 -TerminalBlock_TE-Connectivity -TerminalBlock_TE_1-282834-1_1x11_P2.54mm_Horizontal -Terminal Block TE 1-282834-1, 11 pins, pitch 2.54mm, size 28.4x6.5mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F282834%7FC1%7Fpdf%7FEnglish%7FENG_CD_282834_C1.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_TE-Connectivity -THT Terminal Block TE 1-282834-1 pitch 2.54mm size 28.4x6.5mm^2 drill 1.1mm pad 2.1mm -0 -11 -11 -TerminalBlock_TE-Connectivity -TerminalBlock_TE_1-282834-2_1x12_P2.54mm_Horizontal -Terminal Block TE 1-282834-2, 12 pins, pitch 2.54mm, size 30.94x6.5mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F282834%7FC1%7Fpdf%7FEnglish%7FENG_CD_282834_C1.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_TE-Connectivity -THT Terminal Block TE 1-282834-2 pitch 2.54mm size 30.94x6.5mm^2 drill 1.1mm pad 2.1mm -0 -12 -12 -TerminalBlock_TE-Connectivity -TerminalBlock_TE_282834-2_1x02_P2.54mm_Horizontal -Terminal Block TE 282834-2, 2 pins, pitch 2.54mm, size 5.54x6.5mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F282834%7FC1%7Fpdf%7FEnglish%7FENG_CD_282834_C1.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_TE-Connectivity -THT Terminal Block TE 282834-2 pitch 2.54mm size 5.54x6.5mm^2 drill 1.1mm pad 2.1mm -0 -2 -2 -TerminalBlock_TE-Connectivity -TerminalBlock_TE_282834-3_1x03_P2.54mm_Horizontal -Terminal Block TE 282834-3, 3 pins, pitch 2.54mm, size 8.08x6.5mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F282834%7FC1%7Fpdf%7FEnglish%7FENG_CD_282834_C1.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_TE-Connectivity -THT Terminal Block TE 282834-3 pitch 2.54mm size 8.08x6.5mm^2 drill 1.1mm pad 2.1mm -0 -3 -3 -TerminalBlock_TE-Connectivity -TerminalBlock_TE_282834-4_1x04_P2.54mm_Horizontal -Terminal Block TE 282834-4, 4 pins, pitch 2.54mm, size 10.620000000000001x6.5mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F282834%7FC1%7Fpdf%7FEnglish%7FENG_CD_282834_C1.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_TE-Connectivity -THT Terminal Block TE 282834-4 pitch 2.54mm size 10.620000000000001x6.5mm^2 drill 1.1mm pad 2.1mm -0 -4 -4 -TerminalBlock_TE-Connectivity -TerminalBlock_TE_282834-5_1x05_P2.54mm_Horizontal -Terminal Block TE 282834-5, 5 pins, pitch 2.54mm, size 13.16x6.5mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F282834%7FC1%7Fpdf%7FEnglish%7FENG_CD_282834_C1.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_TE-Connectivity -THT Terminal Block TE 282834-5 pitch 2.54mm size 13.16x6.5mm^2 drill 1.1mm pad 2.1mm -0 -5 -5 -TerminalBlock_TE-Connectivity -TerminalBlock_TE_282834-6_1x06_P2.54mm_Horizontal -Terminal Block TE 282834-6, 6 pins, pitch 2.54mm, size 15.7x6.5mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F282834%7FC1%7Fpdf%7FEnglish%7FENG_CD_282834_C1.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_TE-Connectivity -THT Terminal Block TE 282834-6 pitch 2.54mm size 15.7x6.5mm^2 drill 1.1mm pad 2.1mm -0 -6 -6 -TerminalBlock_TE-Connectivity -TerminalBlock_TE_282834-7_1x07_P2.54mm_Horizontal -Terminal Block TE 282834-7, 7 pins, pitch 2.54mm, size 18.240000000000002x6.5mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F282834%7FC1%7Fpdf%7FEnglish%7FENG_CD_282834_C1.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_TE-Connectivity -THT Terminal Block TE 282834-7 pitch 2.54mm size 18.240000000000002x6.5mm^2 drill 1.1mm pad 2.1mm -0 -7 -7 -TerminalBlock_TE-Connectivity -TerminalBlock_TE_282834-8_1x08_P2.54mm_Horizontal -Terminal Block TE 282834-8, 8 pins, pitch 2.54mm, size 20.78x6.5mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F282834%7FC1%7Fpdf%7FEnglish%7FENG_CD_282834_C1.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_TE-Connectivity -THT Terminal Block TE 282834-8 pitch 2.54mm size 20.78x6.5mm^2 drill 1.1mm pad 2.1mm -0 -8 -8 -TerminalBlock_TE-Connectivity -TerminalBlock_TE_282834-9_1x09_P2.54mm_Horizontal -Terminal Block TE 282834-9, 9 pins, pitch 2.54mm, size 23.32x6.5mm^2, drill diamater 1.1mm, pad diameter 2.1mm, see http://www.te.com/commerce/DocumentDelivery/DDEController?Action=showdoc&DocId=Customer+Drawing%7F282834%7FC1%7Fpdf%7FEnglish%7FENG_CD_282834_C1.pdf, script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_TE-Connectivity -THT Terminal Block TE 282834-9 pitch 2.54mm size 23.32x6.5mm^2 drill 1.1mm pad 2.1mm -0 -9 -9 -TerminalBlock_WAGO -TerminalBlock_WAGO_236-101_1x01_P5.00mm_45Degree -Terminal Block WAGO 236-101, 45Degree (cable under 45degree), 1 pins, pitch 5mm, size 7.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 236-101 45Degree pitch 5mm size 7.3x14mm^2 drill 1.15mm pad 3mm -0 -1 -1 -TerminalBlock_WAGO -TerminalBlock_WAGO_236-102_1x02_P5.00mm_45Degree -Terminal Block WAGO 236-102, 45Degree (cable under 45degree), 2 pins, pitch 5mm, size 12.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 236-102 45Degree pitch 5mm size 12.3x14mm^2 drill 1.15mm pad 3mm -0 -2 -2 -TerminalBlock_WAGO -TerminalBlock_WAGO_236-103_1x03_P5.00mm_45Degree -Terminal Block WAGO 236-103, 45Degree (cable under 45degree), 3 pins, pitch 5mm, size 17.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 236-103 45Degree pitch 5mm size 17.3x14mm^2 drill 1.15mm pad 3mm -0 -3 -3 -TerminalBlock_WAGO -TerminalBlock_WAGO_236-104_1x04_P5.00mm_45Degree -Terminal Block WAGO 236-104, 45Degree (cable under 45degree), 4 pins, pitch 5mm, size 22.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 236-104 45Degree pitch 5mm size 22.3x14mm^2 drill 1.15mm pad 3mm -0 -4 -4 -TerminalBlock_WAGO -TerminalBlock_WAGO_236-105_1x05_P5.00mm_45Degree -Terminal Block WAGO 236-105, 45Degree (cable under 45degree), 5 pins, pitch 5mm, size 27.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 236-105 45Degree pitch 5mm size 27.3x14mm^2 drill 1.15mm pad 3mm -0 -5 -5 -TerminalBlock_WAGO -TerminalBlock_WAGO_236-106_1x06_P5.00mm_45Degree -Terminal Block WAGO 236-106, 45Degree (cable under 45degree), 6 pins, pitch 5mm, size 32.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 236-106 45Degree pitch 5mm size 32.3x14mm^2 drill 1.15mm pad 3mm -0 -6 -6 -TerminalBlock_WAGO -TerminalBlock_WAGO_236-107_1x07_P5.00mm_45Degree -Terminal Block WAGO 236-107, 45Degree (cable under 45degree), 7 pins, pitch 5mm, size 37.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 236-107 45Degree pitch 5mm size 37.3x14mm^2 drill 1.15mm pad 3mm -0 -7 -7 -TerminalBlock_WAGO -TerminalBlock_WAGO_236-108_1x08_P5.00mm_45Degree -Terminal Block WAGO 236-108, 45Degree (cable under 45degree), 8 pins, pitch 5mm, size 42.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 236-108 45Degree pitch 5mm size 42.3x14mm^2 drill 1.15mm pad 3mm -0 -8 -8 -TerminalBlock_WAGO -TerminalBlock_WAGO_236-109_1x09_P5.00mm_45Degree -Terminal Block WAGO 236-109, 45Degree (cable under 45degree), 9 pins, pitch 5mm, size 47.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 236-109 45Degree pitch 5mm size 47.3x14mm^2 drill 1.15mm pad 3mm -0 -9 -9 -TerminalBlock_WAGO -TerminalBlock_WAGO_236-112_1x12_P5.00mm_45Degree -Terminal Block WAGO 236-112, 45Degree (cable under 45degree), 12 pins, pitch 5mm, size 62.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 236-112 45Degree pitch 5mm size 62.3x14mm^2 drill 1.15mm pad 3mm -0 -12 -12 -TerminalBlock_WAGO -TerminalBlock_WAGO_236-114_1x14_P5.00mm_45Degree -Terminal Block WAGO 236-114, 45Degree (cable under 45degree), 14 pins, pitch 5mm, size 72.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 236-114 45Degree pitch 5mm size 72.3x14mm^2 drill 1.15mm pad 3mm -0 -14 -14 -TerminalBlock_WAGO -TerminalBlock_WAGO_236-116_1x16_P5.00mm_45Degree -Terminal Block WAGO 236-116, 45Degree (cable under 45degree), 16 pins, pitch 5mm, size 82.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 236-116 45Degree pitch 5mm size 82.3x14mm^2 drill 1.15mm pad 3mm -0 -16 -16 -TerminalBlock_WAGO -TerminalBlock_WAGO_236-124_1x24_P5.00mm_45Degree -Terminal Block WAGO 236-124, 45Degree (cable under 45degree), 24 pins, pitch 5mm, size 122x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 236-124 45Degree pitch 5mm size 122x14mm^2 drill 1.15mm pad 3mm -0 -24 -24 -TerminalBlock_WAGO -TerminalBlock_WAGO_236-136_1x36_P5.00mm_45Degree -Terminal Block WAGO 236-136, 45Degree (cable under 45degree), 36 pins, pitch 5mm, size 182x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 236-136 45Degree pitch 5mm size 182x14mm^2 drill 1.15mm pad 3mm -0 -36 -36 -TerminalBlock_WAGO -TerminalBlock_WAGO_236-148_1x48_P5.00mm_45Degree -Terminal Block WAGO 236-148, 45Degree (cable under 45degree), 48 pins, pitch 5mm, size 242x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 236-148 45Degree pitch 5mm size 242x14mm^2 drill 1.15mm pad 3mm -0 -48 -48 -TerminalBlock_WAGO -TerminalBlock_WAGO_236-201_1x01_P7.50mm_45Degree -Terminal Block WAGO 236-201, 45Degree (cable under 45degree), 1 pins, pitch 7.5mm, size 9.8x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 236-201 45Degree pitch 7.5mm size 9.8x14mm^2 drill 1.15mm pad 3mm -0 -1 -1 -TerminalBlock_WAGO -TerminalBlock_WAGO_236-202_1x02_P7.50mm_45Degree -Terminal Block WAGO 236-202, 45Degree (cable under 45degree), 2 pins, pitch 7.5mm, size 17.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 236-202 45Degree pitch 7.5mm size 17.3x14mm^2 drill 1.15mm pad 3mm -0 -2 -2 -TerminalBlock_WAGO -TerminalBlock_WAGO_236-203_1x03_P7.50mm_45Degree -Terminal Block WAGO 236-203, 45Degree (cable under 45degree), 3 pins, pitch 7.5mm, size 24.8x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 236-203 45Degree pitch 7.5mm size 24.8x14mm^2 drill 1.15mm pad 3mm -0 -3 -3 -TerminalBlock_WAGO -TerminalBlock_WAGO_236-204_1x04_P7.50mm_45Degree -Terminal Block WAGO 236-204, 45Degree (cable under 45degree), 4 pins, pitch 7.5mm, size 32.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 236-204 45Degree pitch 7.5mm size 32.3x14mm^2 drill 1.15mm pad 3mm -0 -4 -4 -TerminalBlock_WAGO -TerminalBlock_WAGO_236-205_1x05_P7.50mm_45Degree -Terminal Block WAGO 236-205, 45Degree (cable under 45degree), 5 pins, pitch 7.5mm, size 39.8x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 236-205 45Degree pitch 7.5mm size 39.8x14mm^2 drill 1.15mm pad 3mm -0 -5 -5 -TerminalBlock_WAGO -TerminalBlock_WAGO_236-206_1x06_P7.50mm_45Degree -Terminal Block WAGO 236-206, 45Degree (cable under 45degree), 6 pins, pitch 7.5mm, size 47.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 236-206 45Degree pitch 7.5mm size 47.3x14mm^2 drill 1.15mm pad 3mm -0 -6 -6 -TerminalBlock_WAGO -TerminalBlock_WAGO_236-207_1x07_P7.50mm_45Degree -Terminal Block WAGO 236-207, 45Degree (cable under 45degree), 7 pins, pitch 7.5mm, size 54.8x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 236-207 45Degree pitch 7.5mm size 54.8x14mm^2 drill 1.15mm pad 3mm -0 -7 -7 -TerminalBlock_WAGO -TerminalBlock_WAGO_236-208_1x08_P7.50mm_45Degree -Terminal Block WAGO 236-208, 45Degree (cable under 45degree), 8 pins, pitch 7.5mm, size 62.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 236-208 45Degree pitch 7.5mm size 62.3x14mm^2 drill 1.15mm pad 3mm -0 -8 -8 -TerminalBlock_WAGO -TerminalBlock_WAGO_236-209_1x09_P7.50mm_45Degree -Terminal Block WAGO 236-209, 45Degree (cable under 45degree), 9 pins, pitch 7.5mm, size 69.8x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 236-209 45Degree pitch 7.5mm size 69.8x14mm^2 drill 1.15mm pad 3mm -0 -9 -9 -TerminalBlock_WAGO -TerminalBlock_WAGO_236-212_1x12_P7.50mm_45Degree -Terminal Block WAGO 236-212, 45Degree (cable under 45degree), 12 pins, pitch 7.5mm, size 92.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 236-212 45Degree pitch 7.5mm size 92.3x14mm^2 drill 1.15mm pad 3mm -0 -12 -12 -TerminalBlock_WAGO -TerminalBlock_WAGO_236-216_1x16_P7.50mm_45Degree -Terminal Block WAGO 236-216, 45Degree (cable under 45degree), 16 pins, pitch 7.5mm, size 122x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 236-216 45Degree pitch 7.5mm size 122x14mm^2 drill 1.15mm pad 3mm -0 -16 -16 -TerminalBlock_WAGO -TerminalBlock_WAGO_236-224_1x24_P7.50mm_45Degree -Terminal Block WAGO 236-224, 45Degree (cable under 45degree), 24 pins, pitch 7.5mm, size 182x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 236-224 45Degree pitch 7.5mm size 182x14mm^2 drill 1.15mm pad 3mm -0 -24 -24 -TerminalBlock_WAGO -TerminalBlock_WAGO_236-301_1x01_P10.00mm_45Degree -Terminal Block WAGO 236-301, 45Degree (cable under 45degree), 1 pins, pitch 10mm, size 12.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 236-301 45Degree pitch 10mm size 12.3x14mm^2 drill 1.15mm pad 3mm -0 -1 -1 -TerminalBlock_WAGO -TerminalBlock_WAGO_236-302_1x02_P10.00mm_45Degree -Terminal Block WAGO 236-302, 45Degree (cable under 45degree), 2 pins, pitch 10mm, size 22.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 236-302 45Degree pitch 10mm size 22.3x14mm^2 drill 1.15mm pad 3mm -0 -2 -2 -TerminalBlock_WAGO -TerminalBlock_WAGO_236-303_1x03_P10.00mm_45Degree -Terminal Block WAGO 236-303, 45Degree (cable under 45degree), 3 pins, pitch 10mm, size 32.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 236-303 45Degree pitch 10mm size 32.3x14mm^2 drill 1.15mm pad 3mm -0 -3 -3 -TerminalBlock_WAGO -TerminalBlock_WAGO_236-304_1x04_P10.00mm_45Degree -Terminal Block WAGO 236-304, 45Degree (cable under 45degree), 4 pins, pitch 10mm, size 42.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 236-304 45Degree pitch 10mm size 42.3x14mm^2 drill 1.15mm pad 3mm -0 -4 -4 -TerminalBlock_WAGO -TerminalBlock_WAGO_236-305_1x05_P10.00mm_45Degree -Terminal Block WAGO 236-305, 45Degree (cable under 45degree), 5 pins, pitch 10mm, size 52.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 236-305 45Degree pitch 10mm size 52.3x14mm^2 drill 1.15mm pad 3mm -0 -5 -5 -TerminalBlock_WAGO -TerminalBlock_WAGO_236-306_1x06_P10.00mm_45Degree -Terminal Block WAGO 236-306, 45Degree (cable under 45degree), 6 pins, pitch 10mm, size 62.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 236-306 45Degree pitch 10mm size 62.3x14mm^2 drill 1.15mm pad 3mm -0 -6 -6 -TerminalBlock_WAGO -TerminalBlock_WAGO_236-308_1x08_P10.00mm_45Degree -Terminal Block WAGO 236-308, 45Degree (cable under 45degree), 8 pins, pitch 10mm, size 82.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 236-308 45Degree pitch 10mm size 82.3x14mm^2 drill 1.15mm pad 3mm -0 -8 -8 -TerminalBlock_WAGO -TerminalBlock_WAGO_236-309_1x09_P10.00mm_45Degree -Terminal Block WAGO 236-309, 45Degree (cable under 45degree), 9 pins, pitch 10mm, size 92.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 236-309 45Degree pitch 10mm size 92.3x14mm^2 drill 1.15mm pad 3mm -0 -9 -9 -TerminalBlock_WAGO -TerminalBlock_WAGO_236-312_1x12_P10.00mm_45Degree -Terminal Block WAGO 236-312, 45Degree (cable under 45degree), 12 pins, pitch 10mm, size 122x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 236-312 45Degree pitch 10mm size 122x14mm^2 drill 1.15mm pad 3mm -0 -12 -12 -TerminalBlock_WAGO -TerminalBlock_WAGO_236-316_1x16_P10.00mm_45Degree -Terminal Block WAGO 236-316, 45Degree (cable under 45degree), 16 pins, pitch 10mm, size 162x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 236-316 45Degree pitch 10mm size 162x14mm^2 drill 1.15mm pad 3mm -0 -16 -16 -TerminalBlock_WAGO -TerminalBlock_WAGO_236-324_1x24_P10.00mm_45Degree -Terminal Block WAGO 236-324, 45Degree (cable under 45degree), 24 pins, pitch 10mm, size 242x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 236-324 45Degree pitch 10mm size 242x14mm^2 drill 1.15mm pad 3mm -0 -24 -24 -TerminalBlock_WAGO -TerminalBlock_WAGO_236-401_1x01_P5.00mm_45Degree -Terminal Block WAGO 236-401, 45Degree (cable under 45degree), 1 pins, pitch 5mm, size 7.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 236-401 45Degree pitch 5mm size 7.3x14mm^2 drill 1.15mm pad 3mm -0 -2 -1 -TerminalBlock_WAGO -TerminalBlock_WAGO_236-402_1x02_P5.00mm_45Degree -Terminal Block WAGO 236-402, 45Degree (cable under 45degree), 2 pins, pitch 5mm, size 12.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 236-402 45Degree pitch 5mm size 12.3x14mm^2 drill 1.15mm pad 3mm -0 -4 -2 -TerminalBlock_WAGO -TerminalBlock_WAGO_236-403_1x03_P5.00mm_45Degree -Terminal Block WAGO 236-403, 45Degree (cable under 45degree), 3 pins, pitch 5mm, size 17.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 236-403 45Degree pitch 5mm size 17.3x14mm^2 drill 1.15mm pad 3mm -0 -6 -3 -TerminalBlock_WAGO -TerminalBlock_WAGO_236-404_1x04_P5.00mm_45Degree -Terminal Block WAGO 236-404, 45Degree (cable under 45degree), 4 pins, pitch 5mm, size 22.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 236-404 45Degree pitch 5mm size 22.3x14mm^2 drill 1.15mm pad 3mm -0 -8 -4 -TerminalBlock_WAGO -TerminalBlock_WAGO_236-405_1x05_P5.00mm_45Degree -Terminal Block WAGO 236-405, 45Degree (cable under 45degree), 5 pins, pitch 5mm, size 27.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 236-405 45Degree pitch 5mm size 27.3x14mm^2 drill 1.15mm pad 3mm -0 -10 -5 -TerminalBlock_WAGO -TerminalBlock_WAGO_236-406_1x06_P5.00mm_45Degree -Terminal Block WAGO 236-406, 45Degree (cable under 45degree), 6 pins, pitch 5mm, size 32.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 236-406 45Degree pitch 5mm size 32.3x14mm^2 drill 1.15mm pad 3mm -0 -12 -6 -TerminalBlock_WAGO -TerminalBlock_WAGO_236-407_1x07_P5.00mm_45Degree -Terminal Block WAGO 236-407, 45Degree (cable under 45degree), 7 pins, pitch 5mm, size 37.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 236-407 45Degree pitch 5mm size 37.3x14mm^2 drill 1.15mm pad 3mm -0 -14 -7 -TerminalBlock_WAGO -TerminalBlock_WAGO_236-408_1x08_P5.00mm_45Degree -Terminal Block WAGO 236-408, 45Degree (cable under 45degree), 8 pins, pitch 5mm, size 42.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 236-408 45Degree pitch 5mm size 42.3x14mm^2 drill 1.15mm pad 3mm -0 -16 -8 -TerminalBlock_WAGO -TerminalBlock_WAGO_236-409_1x09_P5.00mm_45Degree -Terminal Block WAGO 236-409, 45Degree (cable under 45degree), 9 pins, pitch 5mm, size 47.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 236-409 45Degree pitch 5mm size 47.3x14mm^2 drill 1.15mm pad 3mm -0 -18 -9 -TerminalBlock_WAGO -TerminalBlock_WAGO_236-412_1x12_P5.00mm_45Degree -Terminal Block WAGO 236-412, 45Degree (cable under 45degree), 12 pins, pitch 5mm, size 62.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 236-412 45Degree pitch 5mm size 62.3x14mm^2 drill 1.15mm pad 3mm -0 -24 -12 -TerminalBlock_WAGO -TerminalBlock_WAGO_236-414_1x14_P5.00mm_45Degree -Terminal Block WAGO 236-414, 45Degree (cable under 45degree), 14 pins, pitch 5mm, size 72.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 236-414 45Degree pitch 5mm size 72.3x14mm^2 drill 1.15mm pad 3mm -0 -28 -14 -TerminalBlock_WAGO -TerminalBlock_WAGO_236-416_1x16_P5.00mm_45Degree -Terminal Block WAGO 236-416, 45Degree (cable under 45degree), 16 pins, pitch 5mm, size 82.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 236-416 45Degree pitch 5mm size 82.3x14mm^2 drill 1.15mm pad 3mm -0 -32 -16 -TerminalBlock_WAGO -TerminalBlock_WAGO_236-424_1x24_P5.00mm_45Degree -Terminal Block WAGO 236-424, 45Degree (cable under 45degree), 24 pins, pitch 5mm, size 122x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 236-424 45Degree pitch 5mm size 122x14mm^2 drill 1.15mm pad 3mm -0 -48 -24 -TerminalBlock_WAGO -TerminalBlock_WAGO_236-436_1x36_P5.00mm_45Degree -Terminal Block WAGO 236-436, 45Degree (cable under 45degree), 36 pins, pitch 5mm, size 182x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 236-436 45Degree pitch 5mm size 182x14mm^2 drill 1.15mm pad 3mm -0 -72 -36 -TerminalBlock_WAGO -TerminalBlock_WAGO_236-448_1x48_P5.00mm_45Degree -Terminal Block WAGO 236-448, 45Degree (cable under 45degree), 48 pins, pitch 5mm, size 242x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 236-448 45Degree pitch 5mm size 242x14mm^2 drill 1.15mm pad 3mm -0 -96 -48 -TerminalBlock_WAGO -TerminalBlock_WAGO_236-501_1x01_P7.50mm_45Degree -Terminal Block WAGO 236-501, 45Degree (cable under 45degree), 1 pins, pitch 7.5mm, size 9.8x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 236-501 45Degree pitch 7.5mm size 9.8x14mm^2 drill 1.15mm pad 3mm -0 -2 -1 -TerminalBlock_WAGO -TerminalBlock_WAGO_236-502_1x02_P7.50mm_45Degree -Terminal Block WAGO 236-502, 45Degree (cable under 45degree), 2 pins, pitch 7.5mm, size 17.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 236-502 45Degree pitch 7.5mm size 17.3x14mm^2 drill 1.15mm pad 3mm -0 -4 -2 -TerminalBlock_WAGO -TerminalBlock_WAGO_236-503_1x03_P7.50mm_45Degree -Terminal Block WAGO 236-503, 45Degree (cable under 45degree), 3 pins, pitch 7.5mm, size 24.8x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 236-503 45Degree pitch 7.5mm size 24.8x14mm^2 drill 1.15mm pad 3mm -0 -6 -3 -TerminalBlock_WAGO -TerminalBlock_WAGO_236-504_1x04_P7.50mm_45Degree -Terminal Block WAGO 236-504, 45Degree (cable under 45degree), 4 pins, pitch 7.5mm, size 32.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 236-504 45Degree pitch 7.5mm size 32.3x14mm^2 drill 1.15mm pad 3mm -0 -8 -4 -TerminalBlock_WAGO -TerminalBlock_WAGO_236-505_1x05_P7.50mm_45Degree -Terminal Block WAGO 236-505, 45Degree (cable under 45degree), 5 pins, pitch 7.5mm, size 39.8x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 236-505 45Degree pitch 7.5mm size 39.8x14mm^2 drill 1.15mm pad 3mm -0 -10 -5 -TerminalBlock_WAGO -TerminalBlock_WAGO_236-506_1x06_P7.50mm_45Degree -Terminal Block WAGO 236-506, 45Degree (cable under 45degree), 6 pins, pitch 7.5mm, size 47.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 236-506 45Degree pitch 7.5mm size 47.3x14mm^2 drill 1.15mm pad 3mm -0 -12 -6 -TerminalBlock_WAGO -TerminalBlock_WAGO_236-507_1x07_P7.50mm_45Degree -Terminal Block WAGO 236-507, 45Degree (cable under 45degree), 7 pins, pitch 7.5mm, size 54.8x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 236-507 45Degree pitch 7.5mm size 54.8x14mm^2 drill 1.15mm pad 3mm -0 -14 -7 -TerminalBlock_WAGO -TerminalBlock_WAGO_236-508_1x08_P7.50mm_45Degree -Terminal Block WAGO 236-508, 45Degree (cable under 45degree), 8 pins, pitch 7.5mm, size 62.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 236-508 45Degree pitch 7.5mm size 62.3x14mm^2 drill 1.15mm pad 3mm -0 -16 -8 -TerminalBlock_WAGO -TerminalBlock_WAGO_236-509_1x09_P7.50mm_45Degree -Terminal Block WAGO 236-509, 45Degree (cable under 45degree), 9 pins, pitch 7.5mm, size 69.8x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 236-509 45Degree pitch 7.5mm size 69.8x14mm^2 drill 1.15mm pad 3mm -0 -18 -9 -TerminalBlock_WAGO -TerminalBlock_WAGO_236-512_1x12_P7.50mm_45Degree -Terminal Block WAGO 236-512, 45Degree (cable under 45degree), 12 pins, pitch 7.5mm, size 92.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 236-512 45Degree pitch 7.5mm size 92.3x14mm^2 drill 1.15mm pad 3mm -0 -24 -12 -TerminalBlock_WAGO -TerminalBlock_WAGO_236-516_1x16_P7.50mm_45Degree -Terminal Block WAGO 236-516, 45Degree (cable under 45degree), 16 pins, pitch 7.5mm, size 122x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 236-516 45Degree pitch 7.5mm size 122x14mm^2 drill 1.15mm pad 3mm -0 -32 -16 -TerminalBlock_WAGO -TerminalBlock_WAGO_236-524_1x24_P7.50mm_45Degree -Terminal Block WAGO 236-524, 45Degree (cable under 45degree), 24 pins, pitch 7.5mm, size 182x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 236-524 45Degree pitch 7.5mm size 182x14mm^2 drill 1.15mm pad 3mm -0 -48 -24 -TerminalBlock_WAGO -TerminalBlock_WAGO_236-601_1x01_P10.00mm_45Degree -Terminal Block WAGO 236-601, 45Degree (cable under 45degree), 1 pins, pitch 10mm, size 12.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 236-601 45Degree pitch 10mm size 12.3x14mm^2 drill 1.15mm pad 3mm -0 -2 -1 -TerminalBlock_WAGO -TerminalBlock_WAGO_236-602_1x02_P10.00mm_45Degree -Terminal Block WAGO 236-602, 45Degree (cable under 45degree), 2 pins, pitch 10mm, size 22.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 236-602 45Degree pitch 10mm size 22.3x14mm^2 drill 1.15mm pad 3mm -0 -4 -2 -TerminalBlock_WAGO -TerminalBlock_WAGO_236-603_1x03_P10.00mm_45Degree -Terminal Block WAGO 236-603, 45Degree (cable under 45degree), 3 pins, pitch 10mm, size 32.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 236-603 45Degree pitch 10mm size 32.3x14mm^2 drill 1.15mm pad 3mm -0 -6 -3 -TerminalBlock_WAGO -TerminalBlock_WAGO_236-604_1x04_P10.00mm_45Degree -Terminal Block WAGO 236-604, 45Degree (cable under 45degree), 4 pins, pitch 10mm, size 42.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 236-604 45Degree pitch 10mm size 42.3x14mm^2 drill 1.15mm pad 3mm -0 -8 -4 -TerminalBlock_WAGO -TerminalBlock_WAGO_236-605_1x05_P10.00mm_45Degree -Terminal Block WAGO 236-605, 45Degree (cable under 45degree), 5 pins, pitch 10mm, size 52.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 236-605 45Degree pitch 10mm size 52.3x14mm^2 drill 1.15mm pad 3mm -0 -10 -5 -TerminalBlock_WAGO -TerminalBlock_WAGO_236-606_1x06_P10.00mm_45Degree -Terminal Block WAGO 236-606, 45Degree (cable under 45degree), 6 pins, pitch 10mm, size 62.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 236-606 45Degree pitch 10mm size 62.3x14mm^2 drill 1.15mm pad 3mm -0 -12 -6 -TerminalBlock_WAGO -TerminalBlock_WAGO_236-608_1x08_P10.00mm_45Degree -Terminal Block WAGO 236-608, 45Degree (cable under 45degree), 8 pins, pitch 10mm, size 82.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 236-608 45Degree pitch 10mm size 82.3x14mm^2 drill 1.15mm pad 3mm -0 -16 -8 -TerminalBlock_WAGO -TerminalBlock_WAGO_236-609_1x09_P10.00mm_45Degree -Terminal Block WAGO 236-609, 45Degree (cable under 45degree), 9 pins, pitch 10mm, size 92.3x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 236-609 45Degree pitch 10mm size 92.3x14mm^2 drill 1.15mm pad 3mm -0 -18 -9 -TerminalBlock_WAGO -TerminalBlock_WAGO_236-612_1x12_P10.00mm_45Degree -Terminal Block WAGO 236-612, 45Degree (cable under 45degree), 12 pins, pitch 10mm, size 122x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 236-612 45Degree pitch 10mm size 122x14mm^2 drill 1.15mm pad 3mm -0 -24 -12 -TerminalBlock_WAGO -TerminalBlock_WAGO_236-616_1x16_P10.00mm_45Degree -Terminal Block WAGO 236-616, 45Degree (cable under 45degree), 16 pins, pitch 10mm, size 162x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 236-616 45Degree pitch 10mm size 162x14mm^2 drill 1.15mm pad 3mm -0 -32 -16 -TerminalBlock_WAGO -TerminalBlock_WAGO_236-624_1x24_P10.00mm_45Degree -Terminal Block WAGO 236-624, 45Degree (cable under 45degree), 24 pins, pitch 10mm, size 242x14mm^2, drill diamater 1.15mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 236-624 45Degree pitch 10mm size 242x14mm^2 drill 1.15mm pad 3mm -0 -48 -24 -TerminalBlock_WAGO -TerminalBlock_WAGO_804-101_1x01_P5.00mm_45Degree -Terminal Block WAGO 804-101, 45Degree (cable under 45degree), 1 pins, pitch 5mm, size 6.5x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 804-101 45Degree pitch 5mm size 6.5x15mm^2 drill 1.2mm pad 3mm -0 -2 -1 -TerminalBlock_WAGO -TerminalBlock_WAGO_804-102_1x02_P5.00mm_45Degree -Terminal Block WAGO 804-102, 45Degree (cable under 45degree), 2 pins, pitch 5mm, size 11.5x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 804-102 45Degree pitch 5mm size 11.5x15mm^2 drill 1.2mm pad 3mm -0 -4 -2 -TerminalBlock_WAGO -TerminalBlock_WAGO_804-103_1x03_P5.00mm_45Degree -Terminal Block WAGO 804-103, 45Degree (cable under 45degree), 3 pins, pitch 5mm, size 16.5x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 804-103 45Degree pitch 5mm size 16.5x15mm^2 drill 1.2mm pad 3mm -0 -6 -3 -TerminalBlock_WAGO -TerminalBlock_WAGO_804-104_1x04_P5.00mm_45Degree -Terminal Block WAGO 804-104, 45Degree (cable under 45degree), 4 pins, pitch 5mm, size 21.5x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 804-104 45Degree pitch 5mm size 21.5x15mm^2 drill 1.2mm pad 3mm -0 -8 -4 -TerminalBlock_WAGO -TerminalBlock_WAGO_804-105_1x05_P5.00mm_45Degree -Terminal Block WAGO 804-105, 45Degree (cable under 45degree), 5 pins, pitch 5mm, size 26.5x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 804-105 45Degree pitch 5mm size 26.5x15mm^2 drill 1.2mm pad 3mm -0 -10 -5 -TerminalBlock_WAGO -TerminalBlock_WAGO_804-106_1x06_P5.00mm_45Degree -Terminal Block WAGO 804-106, 45Degree (cable under 45degree), 6 pins, pitch 5mm, size 31.5x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 804-106 45Degree pitch 5mm size 31.5x15mm^2 drill 1.2mm pad 3mm -0 -12 -6 -TerminalBlock_WAGO -TerminalBlock_WAGO_804-107_1x07_P5.00mm_45Degree -Terminal Block WAGO 804-107, 45Degree (cable under 45degree), 7 pins, pitch 5mm, size 36.5x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 804-107 45Degree pitch 5mm size 36.5x15mm^2 drill 1.2mm pad 3mm -0 -14 -7 -TerminalBlock_WAGO -TerminalBlock_WAGO_804-108_1x08_P5.00mm_45Degree -Terminal Block WAGO 804-108, 45Degree (cable under 45degree), 8 pins, pitch 5mm, size 41.5x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 804-108 45Degree pitch 5mm size 41.5x15mm^2 drill 1.2mm pad 3mm -0 -16 -8 -TerminalBlock_WAGO -TerminalBlock_WAGO_804-109_1x09_P5.00mm_45Degree -Terminal Block WAGO 804-109, 45Degree (cable under 45degree), 9 pins, pitch 5mm, size 46.5x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 804-109 45Degree pitch 5mm size 46.5x15mm^2 drill 1.2mm pad 3mm -0 -18 -9 -TerminalBlock_WAGO -TerminalBlock_WAGO_804-110_1x10_P5.00mm_45Degree -Terminal Block WAGO 804-110, 45Degree (cable under 45degree), 10 pins, pitch 5mm, size 51.5x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 804-110 45Degree pitch 5mm size 51.5x15mm^2 drill 1.2mm pad 3mm -0 -20 -10 -TerminalBlock_WAGO -TerminalBlock_WAGO_804-111_1x11_P5.00mm_45Degree -Terminal Block WAGO 804-111, 45Degree (cable under 45degree), 11 pins, pitch 5mm, size 56.5x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 804-111 45Degree pitch 5mm size 56.5x15mm^2 drill 1.2mm pad 3mm -0 -22 -11 -TerminalBlock_WAGO -TerminalBlock_WAGO_804-112_1x12_P5.00mm_45Degree -Terminal Block WAGO 804-112, 45Degree (cable under 45degree), 12 pins, pitch 5mm, size 61.5x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 804-112 45Degree pitch 5mm size 61.5x15mm^2 drill 1.2mm pad 3mm -0 -24 -12 -TerminalBlock_WAGO -TerminalBlock_WAGO_804-113_1x13_P5.00mm_45Degree -Terminal Block WAGO 804-113, 45Degree (cable under 45degree), 13 pins, pitch 5mm, size 66.5x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 804-113 45Degree pitch 5mm size 66.5x15mm^2 drill 1.2mm pad 3mm -0 -26 -13 -TerminalBlock_WAGO -TerminalBlock_WAGO_804-114_1x14_P5.00mm_45Degree -Terminal Block WAGO 804-114, 45Degree (cable under 45degree), 14 pins, pitch 5mm, size 71.5x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 804-114 45Degree pitch 5mm size 71.5x15mm^2 drill 1.2mm pad 3mm -0 -28 -14 -TerminalBlock_WAGO -TerminalBlock_WAGO_804-115_1x15_P5.00mm_45Degree -Terminal Block WAGO 804-115, 45Degree (cable under 45degree), 15 pins, pitch 5mm, size 76.5x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 804-115 45Degree pitch 5mm size 76.5x15mm^2 drill 1.2mm pad 3mm -0 -30 -15 -TerminalBlock_WAGO -TerminalBlock_WAGO_804-116_1x16_P5.00mm_45Degree -Terminal Block WAGO 804-116, 45Degree (cable under 45degree), 16 pins, pitch 5mm, size 81.5x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 804-116 45Degree pitch 5mm size 81.5x15mm^2 drill 1.2mm pad 3mm -0 -32 -16 -TerminalBlock_WAGO -TerminalBlock_WAGO_804-124_1x24_P5.00mm_45Degree -Terminal Block WAGO 804-124, 45Degree (cable under 45degree), 24 pins, pitch 5mm, size 122x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 804-124 45Degree pitch 5mm size 122x15mm^2 drill 1.2mm pad 3mm -0 -48 -24 -TerminalBlock_WAGO -TerminalBlock_WAGO_804-301_1x01_P7.50mm_45Degree -Terminal Block WAGO 804-301, 45Degree (cable under 45degree), 1 pins, pitch 7.5mm, size 6.5x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 804-301 45Degree pitch 7.5mm size 6.5x15mm^2 drill 1.2mm pad 3mm -0 -2 -1 -TerminalBlock_WAGO -TerminalBlock_WAGO_804-302_1x02_P7.50mm_45Degree -Terminal Block WAGO 804-302, 45Degree (cable under 45degree), 2 pins, pitch 7.5mm, size 14x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 804-302 45Degree pitch 7.5mm size 14x15mm^2 drill 1.2mm pad 3mm -0 -4 -2 -TerminalBlock_WAGO -TerminalBlock_WAGO_804-303_1x03_P7.50mm_45Degree -Terminal Block WAGO 804-303, 45Degree (cable under 45degree), 3 pins, pitch 7.5mm, size 21.5x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 804-303 45Degree pitch 7.5mm size 21.5x15mm^2 drill 1.2mm pad 3mm -0 -6 -3 -TerminalBlock_WAGO -TerminalBlock_WAGO_804-304_1x04_P7.50mm_45Degree -Terminal Block WAGO 804-304, 45Degree (cable under 45degree), 4 pins, pitch 7.5mm, size 29x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 804-304 45Degree pitch 7.5mm size 29x15mm^2 drill 1.2mm pad 3mm -0 -8 -4 -TerminalBlock_WAGO -TerminalBlock_WAGO_804-305_1x05_P7.50mm_45Degree -Terminal Block WAGO 804-305, 45Degree (cable under 45degree), 5 pins, pitch 7.5mm, size 36.5x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 804-305 45Degree pitch 7.5mm size 36.5x15mm^2 drill 1.2mm pad 3mm -0 -10 -5 -TerminalBlock_WAGO -TerminalBlock_WAGO_804-306_1x06_P7.50mm_45Degree -Terminal Block WAGO 804-306, 45Degree (cable under 45degree), 6 pins, pitch 7.5mm, size 44x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 804-306 45Degree pitch 7.5mm size 44x15mm^2 drill 1.2mm pad 3mm -0 -12 -6 -TerminalBlock_WAGO -TerminalBlock_WAGO_804-307_1x07_P7.50mm_45Degree -Terminal Block WAGO 804-307, 45Degree (cable under 45degree), 7 pins, pitch 7.5mm, size 51.5x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 804-307 45Degree pitch 7.5mm size 51.5x15mm^2 drill 1.2mm pad 3mm -0 -14 -7 -TerminalBlock_WAGO -TerminalBlock_WAGO_804-308_1x08_P7.50mm_45Degree -Terminal Block WAGO 804-308, 45Degree (cable under 45degree), 8 pins, pitch 7.5mm, size 59x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 804-308 45Degree pitch 7.5mm size 59x15mm^2 drill 1.2mm pad 3mm -0 -16 -8 -TerminalBlock_WAGO -TerminalBlock_WAGO_804-309_1x09_P7.50mm_45Degree -Terminal Block WAGO 804-309, 45Degree (cable under 45degree), 9 pins, pitch 7.5mm, size 66.5x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 804-309 45Degree pitch 7.5mm size 66.5x15mm^2 drill 1.2mm pad 3mm -0 -18 -9 -TerminalBlock_WAGO -TerminalBlock_WAGO_804-310_1x10_P7.50mm_45Degree -Terminal Block WAGO 804-310, 45Degree (cable under 45degree), 10 pins, pitch 7.5mm, size 74x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 804-310 45Degree pitch 7.5mm size 74x15mm^2 drill 1.2mm pad 3mm -0 -20 -10 -TerminalBlock_WAGO -TerminalBlock_WAGO_804-311_1x11_P7.50mm_45Degree -Terminal Block WAGO 804-311, 45Degree (cable under 45degree), 11 pins, pitch 7.5mm, size 81.5x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 804-311 45Degree pitch 7.5mm size 81.5x15mm^2 drill 1.2mm pad 3mm -0 -22 -11 -TerminalBlock_WAGO -TerminalBlock_WAGO_804-312_1x12_P7.50mm_45Degree -Terminal Block WAGO 804-312, 45Degree (cable under 45degree), 12 pins, pitch 7.5mm, size 89x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 804-312 45Degree pitch 7.5mm size 89x15mm^2 drill 1.2mm pad 3mm -0 -24 -12 -TerminalBlock_WAGO -TerminalBlock_WAGO_804-316_1x16_P7.50mm_45Degree -Terminal Block WAGO 804-316, 45Degree (cable under 45degree), 16 pins, pitch 7.5mm, size 119x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 804-316 45Degree pitch 7.5mm size 119x15mm^2 drill 1.2mm pad 3mm -0 -32 -16 -TerminalBlock_WAGO -TerminalBlock_WAGO_804-324_1x24_P7.50mm_45Degree -Terminal Block WAGO 804-324, 45Degree (cable under 45degree), 24 pins, pitch 7.5mm, size 179x15mm^2, drill diamater 1.2mm, pad diameter 3mm, see , script-generated with , script-generated using https://github.com/pointhi/kicad-footprint-generator/scripts/TerminalBlock_WAGO -THT Terminal Block WAGO 804-324 45Degree pitch 7.5mm size 179x15mm^2 drill 1.2mm pad 3mm -0 -48 -24 -TerminalBlock_Wuerth -Wuerth_REDCUBE-THR_WP-THRBU_74650073_THR -REDCUBE THR with internal through-hole thread WP-THRBU (https://www.we-online.de/katalog/datasheet/74650073.pdf) -screw terminal thread redcube thr power connector -0 -8 -1 -TerminalBlock_Wuerth -Wuerth_REDCUBE-THR_WP-THRBU_74650074_THR -REDCUBE THR with internal through-hole thread WP-THRBU (https://www.we-online.de/katalog/datasheet/74650074.pdf) -screw terminal thread redcube thr power connector -0 -8 -1 -TerminalBlock_Wuerth -Wuerth_REDCUBE-THR_WP-THRBU_74650094_THR -REDCUBE THR with internal through-hole thread WP-THRBU (https://www.we-online.de/katalog/datasheet/74650094.pdf) -screw terminal thread redcube thr power connector -0 -16 -1 -TerminalBlock_Wuerth -Wuerth_REDCUBE-THR_WP-THRBU_74650173_THR -REDCUBE THR with internal through-hole thread WP-THRBU (https://www.we-online.de/katalog/datasheet/74650173.pdf) -screw terminal thread redcube thr power connector -0 -8 -1 -TerminalBlock_Wuerth -Wuerth_REDCUBE-THR_WP-THRBU_74650174_THR -REDCUBE THR with internal through-hole thread WP-THRBU (https://www.we-online.de/katalog/datasheet/74650174.pdf) -screw terminal thread redcube thr power connector -0 -8 -1 -TerminalBlock_Wuerth -Wuerth_REDCUBE-THR_WP-THRBU_74650194_THR -REDCUBE THR with internal through-hole thread WP-THRBU (https://www.we-online.de/katalog/datasheet/74650194.pdf) -screw terminal thread redcube thr power connector -0 -18 -1 -TerminalBlock_Wuerth -Wuerth_REDCUBE-THR_WP-THRBU_74650195_THR -REDCUBE THR with internal through-hole thread WP-THRBU (https://www.we-online.de/katalog/datasheet/74650195.pdf) -screw terminal thread redcube thr power connector -0 -18 -1 -TerminalBlock_Wuerth -Wuerth_REDCUBE-THR_WP-THRBU_74655095_THR -REDCUBE THR with internal through-hole thread WP-THRBU (https://www.we-online.de/katalog/datasheet/74655095.pdf) -screw terminal thread redcube thr power connector -0 -16 -1 -TerminalBlock_Wuerth -Wuerth_REDCUBE-THR_WP-THRSH_74651173_THR -REDCUBE THR with internal through-hole thread WP-THRSH (https://www.we-online.de/katalog/datasheet/74651173.pdf) -screw terminal thread redcube thr power connector -0 -8 -1 -TerminalBlock_Wuerth -Wuerth_REDCUBE-THR_WP-THRSH_74651174_THR -REDCUBE THR with internal through-hole thread WP-THRSH (https://www.we-online.de/katalog/datasheet/74651174.pdf) -screw terminal thread redcube thr power connector -0 -8 -1 -TerminalBlock_Wuerth -Wuerth_REDCUBE-THR_WP-THRSH_74651175_THR -REDCUBE THR with internal through-hole thread WP-THRSH (https://www.we-online.de/katalog/datasheet/74651175.pdf) -screw terminal thread redcube thr power connector -0 -8 -1 -TerminalBlock_Wuerth -Wuerth_REDCUBE-THR_WP-THRSH_74651194_THR -REDCUBE THR with internal through-hole thread WP-THRSH (https://www.we-online.de/katalog/datasheet/74651194.pdf) -screw terminal thread redcube thr power connector -0 -18 -1 -TerminalBlock_Wuerth -Wuerth_REDCUBE-THR_WP-THRSH_74651195_THR -REDCUBE THR with internal through-hole thread WP-THRSH (https://www.we-online.de/katalog/datasheet/74651195.pdf) -screw terminal thread redcube thr power connector -0 -18 -1 -TestPoint -TestPoint_2Pads_Pitch2.54mm_Drill0.8mm -Test point with 2 pins, pitch 2.54mm, drill diameter 0.8mm -CONN DEV -0 -2 -2 -TestPoint -TestPoint_2Pads_Pitch5.08mm_Drill1.3mm -Test point with 2 pads, pitch 5.08mm, hole diameter 1.3mm, wire diameter 1.0mm -CONN DEV -0 -2 -2 -TestPoint -TestPoint_Bridge_Pitch2.0mm_Drill0.7mm -wire loop as test point, pitch 2.0mm, hole diameter 0.7mm, wire diameter 0.5mm -test point wire loop -0 -2 -1 -TestPoint -TestPoint_Bridge_Pitch2.54mm_Drill0.7mm -wire loop as test point, pitch 2.0mm, hole diameter 0.7mm, wire diameter 0.5mm -test point wire loop -0 -2 -1 -TestPoint -TestPoint_Bridge_Pitch2.54mm_Drill1.0mm -wire loop as test point, pitch 2.54mm, hole diameter 1.0mm, wire diameter 0.8mm -test point wire loop -0 -2 -1 -TestPoint -TestPoint_Bridge_Pitch2.54mm_Drill1.3mm -wire loop as test point, pitch 2.54mm, hole diameter 1.3mm, wire diameter 1.0mm -test point wire loop -0 -2 -1 -TestPoint -TestPoint_Bridge_Pitch3.81mm_Drill1.3mm -wire loop as test point, pitch 3.81mm, hole diameter 1.3mm, wire diameter 1.0mm -test point wire loop -0 -2 -1 -TestPoint -TestPoint_Bridge_Pitch5.08mm_Drill0.7mm -wire loop as test point, pitch 5.08mm, hole diameter 0.7mm, wire diameter 1.0mm -test point wire loop -0 -2 -1 -TestPoint -TestPoint_Bridge_Pitch5.08mm_Drill1.3mm -wire loop as test point, pitch 5.08mm, hole diameter 1.3mm, wire diameter 1.0mm -test point wire loop -0 -2 -1 -TestPoint -TestPoint_Bridge_Pitch6.35mm_Drill1.3mm -wire loop as test point, pitch 6.35mm, hole diameter 1.3mm, wire diameter 1.0mm -test point wire loop -0 -2 -1 -TestPoint -TestPoint_Bridge_Pitch7.62mm_Drill1.3mm -wire loop as test point, pitch 7.62mm, hole diameter 1.3mm, wire diameter 1.0mm -test point wire loop -0 -2 -1 -TestPoint -TestPoint_Keystone_5000-5004_Miniature -Keystone Miniature THM Test Point 5000-5004, http://www.keyelco.com/product-pdf.cfm?p=1309 -Through Hole Mount Test Points -0 -1 -1 -TestPoint -TestPoint_Keystone_5005-5009_Compact -Keystone Miniature THM Test Point 5005-5009, http://www.keyelco.com/product-pdf.cfm?p=1314 -Through Hole Mount Test Points -0 -1 -1 -TestPoint -TestPoint_Keystone_5010-5014_Multipurpose -Keystone Miniature THM Test Point 5010-5014, http://www.keyelco.com/product-pdf.cfm?p=1319 -Through Hole Mount Test Points -0 -1 -1 -TestPoint -TestPoint_Keystone_5015_Micro-Minature -SMT Test Point- Micro Miniature 5015, http://www.keyelco.com/product-pdf.cfm?p=1353 -Test Point -0 -1 -1 -TestPoint -TestPoint_Keystone_5019_Minature -SMT Test Point- Micro Miniature 5019, http://www.keyelco.com/product-pdf.cfm?p=1357 -Test Point -0 -1 -1 -TestPoint -TestPoint_Loop_D1.80mm_Drill1.0mm_Beaded -wire loop with bead as test point, loop diameter 1.8mm, hole diameter 1.0mm -test point wire loop bead -0 -1 -1 -TestPoint -TestPoint_Loop_D2.50mm_Drill1.0mm -wire loop as test point, loop diameter 2.5mm, hole diameter 1.0mm -test point wire loop bead -0 -1 -1 -TestPoint -TestPoint_Loop_D2.50mm_Drill1.0mm_LowProfile -low profile wire loop as test point, loop diameter 2.5mm, hole diameter 1.0mm -test point wire loop bead -0 -1 -1 -TestPoint -TestPoint_Loop_D2.50mm_Drill1.85mm -wire loop as test point, loop diameter 2.5mm, hole diameter 1.85mm -test point wire loop bead -0 -1 -1 -TestPoint -TestPoint_Loop_D2.54mm_Drill1.5mm_Beaded -wire loop with bead as test point, loop diameter2.548mm, hole diameter 1.5mm -test point wire loop bead -0 -1 -1 -TestPoint -TestPoint_Loop_D2.60mm_Drill0.9mm_Beaded -wire loop with bead as test point, loop diameter2.6mm, hole diameter 0.9mm -test point wire loop bead -0 -1 -1 -TestPoint -TestPoint_Loop_D2.60mm_Drill1.4mm_Beaded -wire loop with bead as test point, loop diameter2.6mm, hole diameter 1.4mm -test point wire loop bead -0 -1 -1 -TestPoint -TestPoint_Loop_D2.60mm_Drill1.6mm_Beaded -wire loop with bead as test point, loop diameter2.6mm, hole diameter 1.6mm -test point wire loop bead -0 -1 -1 -TestPoint -TestPoint_Loop_D3.50mm_Drill0.9mm_Beaded -wire loop with bead as test point, loop diameter2.6mm, hole diameter 0.9mm -test point wire loop bead -0 -1 -1 -TestPoint -TestPoint_Loop_D3.50mm_Drill1.4mm_Beaded -wire loop with bead as test point, loop diameter 3.5mm, hole diameter 1.4mm -test point wire loop bead -0 -1 -1 -TestPoint -TestPoint_Loop_D3.80mm_Drill2.0mm -wire loop as test point, loop diameter 3.8mm, hole diameter 2.0mm -test point wire loop bead -0 -1 -1 -TestPoint -TestPoint_Loop_D3.80mm_Drill2.5mm -wire loop as test point, loop diameter 3.8mm, hole diameter 2.5mm -test point wire loop bead -0 -1 -1 -TestPoint -TestPoint_Loop_D3.80mm_Drill2.8mm -wire loop as test point, loop diameter 3.8mm, hole diameter 2.8mm -test point wire loop bead -0 -1 -1 -TestPoint -TestPoint_Pad_1.0x1.0mm -SMD rectangular pad as test Point, square 1.0mm side length -test point SMD pad rectangle square -0 -1 -1 -TestPoint -TestPoint_Pad_1.5x1.5mm -SMD rectangular pad as test Point, square 1.5mm side length -test point SMD pad rectangle square -0 -1 -1 -TestPoint -TestPoint_Pad_2.0x2.0mm -SMD rectangular pad as test Point, square 2.0mm side length -test point SMD pad rectangle square -0 -1 -1 -TestPoint -TestPoint_Pad_2.5x2.5mm -SMD rectangular pad as test Point, square 2.5mm side length -test point SMD pad rectangle square -0 -1 -1 -TestPoint -TestPoint_Pad_3.0x3.0mm -SMD rectangular pad as test Point, square 3.0mm side length -test point SMD pad rectangle square -0 -1 -1 -TestPoint -TestPoint_Pad_4.0x4.0mm -SMD rectangular pad as test Point, square 4.0mm side length -test point SMD pad rectangle square -0 -1 -1 -TestPoint -TestPoint_Pad_D1.0mm -SMD pad as test Point, diameter 1.0mm -test point SMD pad -0 -1 -1 -TestPoint -TestPoint_Pad_D1.5mm -SMD pad as test Point, diameter 1.5mm -test point SMD pad -0 -1 -1 -TestPoint -TestPoint_Pad_D2.0mm -SMD pad as test Point, diameter 2.0mm -test point SMD pad -0 -1 -1 -TestPoint -TestPoint_Pad_D2.5mm -SMD pad as test Point, diameter 2.5mm -test point SMD pad -0 -1 -1 -TestPoint -TestPoint_Pad_D3.0mm -SMD pad as test Point, diameter 3.0mm -test point SMD pad -0 -1 -1 -TestPoint -TestPoint_Pad_D4.0mm -SMD pad as test Point, diameter 4.0mm -test point SMD pad -0 -1 -1 -TestPoint -TestPoint_Plated_Hole_D2.0mm -Plated Hole as test Point, diameter 2.0mm -test point plated hole -0 -1 -1 -TestPoint -TestPoint_Plated_Hole_D3.0mm -Plated Hole as test Point, diameter 3.0mm -test point plated hole -0 -1 -1 -TestPoint -TestPoint_Plated_Hole_D4.0mm -Plated Hole as test Point, diameter 4.0mm -test point plated hole -0 -1 -1 -TestPoint -TestPoint_Plated_Hole_D5.0mm -Plated Hole as test Point, diameter 5.0mm -test point plated hole -0 -1 -1 -TestPoint -TestPoint_THTPad_1.0x1.0mm_Drill0.5mm -THT rectangular pad as test Point, square 1.0mm side length, hole diameter 0.5mm -test point THT pad rectangle square -0 -1 -1 -TestPoint -TestPoint_THTPad_1.5x1.5mm_Drill0.7mm -THT rectangular pad as test Point, square 1.5mm side length, hole diameter 0.7mm -test point THT pad rectangle square -0 -1 -1 -TestPoint -TestPoint_THTPad_2.0x2.0mm_Drill1.0mm -THT rectangular pad as test Point, square 2.0mm_Drill1.0mm side length, hole diameter 1.0mm -test point THT pad rectangle square -0 -1 -1 -TestPoint -TestPoint_THTPad_2.5x2.5mm_Drill1.2mm -THT rectangular pad as test Point, square 2.5mm side length, hole diameter 1.2mm -test point THT pad rectangle square -0 -1 -1 -TestPoint -TestPoint_THTPad_3.0x3.0mm_Drill1.5mm -THT rectangular pad as test Point, square 3.0mm side length, hole diameter 1.5mm -test point THT pad rectangle square -0 -1 -1 -TestPoint -TestPoint_THTPad_4.0x4.0mm_Drill2.0mm -THT rectangular pad as test Point, square 4.0mm side length, hole diameter 2.0mm -test point THT pad rectangle square -0 -1 -1 -TestPoint -TestPoint_THTPad_D1.0mm_Drill0.5mm -THT pad as test Point, diameter 1.0mm, hole diameter 0.5mm -test point THT pad -0 -1 -1 -TestPoint -TestPoint_THTPad_D1.5mm_Drill0.7mm -THT pad as test Point, diameter 1.5mm, hole diameter 0.7mm -test point THT pad -0 -1 -1 -TestPoint -TestPoint_THTPad_D2.0mm_Drill1.0mm -THT pad as test Point, diameter 2.0mm, hole diameter 1.0mm -test point THT pad -0 -1 -1 -TestPoint -TestPoint_THTPad_D2.5mm_Drill1.2mm -THT pad as test Point, diameter 2.5mm, hole diameter 1.2mm -test point THT pad -0 -1 -1 -TestPoint -TestPoint_THTPad_D3.0mm_Drill1.5mm -THT pad as test Point, diameter 3.0mm, hole diameter 1.5mm -test point THT pad -0 -1 -1 -TestPoint -TestPoint_THTPad_D4.0mm_Drill2.0mm -THT pad as test Point, diameter 4.0mm, hole diameter 2.0mm -test point THT pad -0 -1 -1 -Transformer_SMD -Pulse_P0926NL -SMT Gate Drive Transformer, 1:1:1, 8.0x6.3x5.3mm (https://productfinder.pulseeng.com/products/datasheets/SPM2007_61.pdf) -pulse pa0926nl -0 -6 -6 -Transformer_SMD -Pulse_PA1323NL -SMT Gate Drive Transformer, 1:1, 9.5x7.1x5.3mm (https://productfinder.pulseeng.com/products/datasheets/SPM2007_61.pdf) -pulse pa1323nl -0 -6 -6 -Transformer_SMD -Pulse_PA2001NL -SMT Gate Drive Transformer, 1:1, 8.6x6.7x2.5mm (https://productfinder.pulseeng.com/products/datasheets/P663.pdf) -pulse pa2001nl pe-68386nl -0 -4 -4 -Transformer_SMD -Pulse_PA2002NL-PA2008NL-PA2009NL -SMT Gate Drive Transformer, 1:1:1 or 2:1:1 or 2.5:1:1 or 1:1, 9.0x8.6x7.6mm (https://productfinder.pulseeng.com/products/datasheets/P663.pdf) -pulse pa2002nl pa2008nl pa2009nl p0544nl pa0184nl pa0297nl pa0510nl -0 -6 -6 -Transformer_SMD -Pulse_PA2004NL -SMT Gate Drive Transformer, 1:1:1, 8.6x6.7x3.6mm (https://productfinder.pulseeng.com/products/datasheets/P663.pdf) -pulse pa2004nl pa0264nl -0 -6 -6 -Transformer_SMD -Pulse_PA2005NL -SMT Gate Drive Transformer, 1:1:1, 11.8x8.8x4.0mm (https://productfinder.pulseeng.com/products/datasheets/P663.pdf) -pulse pa2005nl pa0173nl -0 -6 -6 -Transformer_SMD -Pulse_PA2006NL -SMT Gate Drive Transformer, 1:1, 11.8x8.8x4.0mm (https://productfinder.pulseeng.com/products/datasheets/P663.pdf) -pulse pa2006nl pa0186nl -0 -4 -4 -Transformer_SMD -Pulse_PA2007NL -SMT Gate Drive Transformer, 1:1, 9.0x8.6x7.6mm (https://productfinder.pulseeng.com/products/datasheets/P663.pdf) -pulse pa2007nl -0 -4 -4 -Transformer_SMD -Pulse_PA2777NL -SMT Gate Drive Transformer, 1:1, 7.1x6.1x5.5mm (https://productfinder.pulseeng.com/products/datasheets/SPM2007_61.pdf) -pulse pa2777nl -0 -8 -8 -Transformer_SMD -Pulse_PA3493NL -SMT Gate Drive Transformer, 1.25:1, 10.9x9.7x2.7mm (https://productfinder.pulseeng.com/products/datasheets/SPM2007_61.pdf) -pulse pa3493nl -0 -4 -4 -Transformer_SMD -Transformer_Coilcraft_CST1 -Current sense transformer, SMD, 8.0x8.13x5.3mm (https://www.coilcraft.com/pdfs/cst.pdf) -Transformer current sense SMD -0 -8 -8 -Transformer_SMD -Transformer_Coilcraft_CST2 -Current sense transformer, SMD, 8.0x8.13x5.3mm (https://www.coilcraft.com/pdfs/cst.pdf) -Transformer current sense SMD -0 -8 -8 -Transformer_SMD -Transformer_Coilcraft_CST2010 -Current sense transformer, SMD, 14.55x19.91x10.50mm (https://www.coilcraft.com/pdfs/cst2010.pdf) -Transformer current sense SMD -0 -12 -12 -Transformer_SMD -Transformer_CurrentSense_8.4x7.2mm -Transformer current sense SMD 8.4x7.2mm -Transformer current sense SMD -0 -8 -8 -Transformer_SMD -Transformer_Ethernet_Bel_S558-5999-T7-F -Ethernet Transformer, Bel S558-5999-T7-F, https://www.belfuse.com/resources/ICMs/lan-/S558-5999-T7-F.pdf -Ethernet Transformer -0 -16 -16 -Transformer_SMD -Transformer_Ethernet_Bourns_PT61017PEL -https://www.bourns.com/docs/Product-Datasheets/PT61017PEL.pdf -Transformer Ethernet Single Center-Tap -0 -16 -16 -Transformer_SMD -Transformer_Ethernet_Bourns_PT61020EL -10/100/1000 Base-T Transformer Module, PT61020EL (https://www.bourns.com/pdfs/PT61020.pdf) -Gigabit PoE Ethernet Transformer Single -0 -24 -24 -Transformer_SMD -Transformer_Ethernet_HALO_TG111-MSC13 -Transformer Ethernet SMD, https://www.haloelectronics.com/pdf/discrete-genesus.pdf -Transformer Ethernet SMD -0 -24 -24 -Transformer_SMD -Transformer_Ethernet_Halo_N2_SO-16_7.11x12.7mm -Halo N2 SO, 16 Pin (https://www.haloelectronics.com/pdf/discrete-ultra-100baset.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -Halo SO Transformer_SMD -0 -16 -16 -Transformer_SMD -Transformer_Ethernet_Halo_N5_SO-16_7.11x12.7mm -Halo N5 SO, 16 Pin (https://www.haloelectronics.com/pdf/discrete-ultra-100baset.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -Halo SO Transformer_SMD -0 -16 -16 -Transformer_SMD -Transformer_Ethernet_Halo_N6_SO-16_7.11x14.73mm -Halo N6 SO, 16 Pin (https://www.haloelectronics.com/pdf/discrete-ultra-100baset.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -Halo SO Transformer_SMD -0 -16 -16 -Transformer_SMD -Transformer_Ethernet_Wuerth_749013011A -Ethernet Transformer, Wuerth 749013011A, https://www.we-online.com/katalog/datasheet/749013011A.pdf -Ethernet Transformer -0 -16 -16 -Transformer_SMD -Transformer_Ethernet_YDS_30F-51NL_SO-24_7.1x15.1mm -YDS 30F-51NL SO, 24 Pin (https://datasheet.lcsc.com/lcsc/1811051610_Shanghai-YDS-Tech-30F-51NL_C123168.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py -YDS SO Transformer_SMD -0 -24 -24 -Transformer_SMD -Transformer_MACOM_SM-22 -https://cdn.macom.com/datasheets/ETC1-1-13.pdf -RF Transformer -0 -5 -5 -Transformer_SMD -Transformer_Murata_78250JC -Murata 78250JC https://www.murata-ps.com/datasheet?/data/magnetics/kmp_78250j.pdf -Murata transformer -0 -6 -6 -Transformer_SMD -Transformer_NF_ETAL_P2781 -NF-Transformer, ETAL, P2781, SMD, -NF-Transformer ETAL P2781 SMD -0 -8 -7 -Transformer_SMD -Transformer_NF_ETAL_P2781_HandSoldering -NF-Transformer, ETAL, P2781, SMD, Handsoldering -NF-Transformer ETAL P2781 SMD Handsoldering -0 -8 -7 -Transformer_SMD -Transformer_NF_ETAL_P3000 -NF-Reansformer, ETAL, P3000, SMD, -NF-Reansformer ETAL P3000 SMD -0 -15 -13 -Transformer_SMD -Transformer_NF_ETAL_P3000_HandSoldering -NF-Reansformer, ETAL, P3000, SMD, Handsoldering, -NF-Reansformer ETAL P3000 SMD Handsoldering -0 -15 -13 -Transformer_SMD -Transformer_NF_ETAL_P3181 -NF-Transformer, ETAL, P3181, SMD, -NF-Transformer ETAL P3181 SMD -0 -7 -6 -Transformer_SMD -Transformer_NF_ETAL_P3181_HandSoldering -NF-Transformer, ETAL, P3181, SMD, Hand Soldering, -NF-Transformer ETAL P3181 SMD Hand Soldering -0 -7 -6 -Transformer_SMD -Transformer_NF_ETAL_P3188 -NF-Transformer, ETAL, P3188, SMD, -NF-Transformer ETAL P3188 SMD -0 -8 -6 -Transformer_SMD -Transformer_NF_ETAL_P3188_HandSoldering -NF-Transformer, ETAL, P3188, SMD, Handsoldering, -NF-Transformer ETAL P3188 SMD Handsoldering -0 -8 -6 -Transformer_SMD -Transformer_NF_ETAL_P3191 -NF-Transformer, ETAL, P3191, SMD, -NF-Transformer ETAL P3191 SMD -0 -8 -6 -Transformer_SMD -Transformer_NF_ETAL_P3191_HandSoldering -NF-Transformer, ETAL, P3191, SMD, Handsoldering, -NF-Transformer ETAL P3191 SMD Handsoldering -0 -8 -6 -Transformer_SMD -Transformer_Pulse_H1100NL -For H1100NL, H1101NL, H1102NL, H1121NL, H1183NL, H1199NL, HX1188NL, HX1198NL and H1302NL. https://productfinder.pulseeng.com/doc_type/WEB301/doc_num/H1102NL/doc_part/H1102NL.pdf -H1100NL H1101NL H1102NL H1121NL H1183NL H1199NL HX1188NL HX1198NL H1302N -0 -16 -16 -Transformer_SMD -Transformer_Wuerth_750315371 -Power Transformer, horizontal core with bobbin, 6 pin, 2.54mm pitch, 11.24mm row spacing, 12.6x8.3x4.1mm -transformer flyback -0 -6 -6 -Transformer_SMD -Transformer_Wurth_WE-AGDT-EP7 -WE-AGDT Auxiliary Gate Drive Transformer EP7, https://www.we-online.com/components/products/datasheet/750319177.pdf -auxiliary gate drive transformer -0 -8 -8 -Transformer_THT -Autotransformer_Toroid_1Tap_Horizontal_D9.0mm_Amidon-T30 -Autotransformer, Toroid, horizontal, laying, 1 Tap, Diameter 9mm, Amidon T30, -Autotransformer Toroid horizontal laying 1 Tap Diameter 9mm Amidon T30 -0 -3 -3 -Transformer_THT -Autotransformer_Toroid_1Tap_Horizontal_D10.5mm_Amidon-T37 -Autotransformer, Toroid, horizontal, laying, 1 Tap, Diameter 10,5mm, Amidon T37, -Autotransformer Toroid horizontal laying 1 Tap Diameter 10 5mm Amidon T37 -0 -3 -3 -Transformer_THT -Autotransformer_Toroid_1Tap_Horizontal_D12.5mm_Amidon-T44 -Autotransformer, Toroid, horizontal, laying, 1 Tap, Diameter 12,5mm, Amidon T44, -Autotransformer Toroid horizontal laying 1 Tap Diameter 12 5mm Amidon T44 -0 -3 -3 -Transformer_THT -Autotransformer_Toroid_1Tap_Horizontal_D14.0mm_Amidon-T50 -Choke, Inductance, Autotransformer, Toroid, horizontal, laying, 1 Tap, Diameter 14mm, Amidon T50, -Choke Inductance Autotransformer Toroid horizontal laying 1 Tap Diameter 14mm Amidon T50 -0 -3 -3 -Transformer_THT -Autotransformer_ZS1052-AC -Ignition coil for xenon flash, http://www.excelitas.com/downloads/ZS1052ACH.pdf -ignition coil autotransformer -0 -3 -3 -Transformer_THT -Transformer_37x44 -transformer 37x44mm² -transformer 37x44mm² -0 -12 -4 -Transformer_THT -Transformer_Breve_TEZ-22x24 -http://www.breve.pl/pdf/ANG/TEZ_ang.pdf -TEZ PCB Transformer -0 -7 -7 -Transformer_THT -Transformer_Breve_TEZ-28x33 -http://www.breve.pl/pdf/ANG/TEZ_ang.pdf -TEZ PCB Transformer -0 -9 -9 -Transformer_THT -Transformer_Breve_TEZ-35x42 -http://www.breve.pl/pdf/ANG/TEZ_ang.pdf -TEZ PCB Transformer -0 -9 -9 -Transformer_THT -Transformer_Breve_TEZ-38x45 -http://www.breve.pl/pdf/ANG/TEZ_ang.pdf -TEZ PCB Transformer -0 -9 -9 -Transformer_THT -Transformer_Breve_TEZ-44x52 -http://www.breve.pl/pdf/ANG/TEZ_ang.pdf -TEZ PCB Transformer -0 -10 -10 -Transformer_THT -Transformer_Breve_TEZ-47x57 -http://www.breve.pl/pdf/ANG/TEZ_ang.pdf -TEZ PCB Transformer -0 -13 -13 -Transformer_THT -Transformer_CHK_EI30-2VA_1xSec -Trafo, Printtrafo, CHK, EI30, 2VA, 1x Sec,http://www.eratransformers.com/downloads/030-7585.0.pdf -Trafo Printtrafo CHK EI30 2VA 1x Sec -0 -10 -10 -Transformer_THT -Transformer_CHK_EI30-2VA_2xSec -Trafo, Printtrafo, CHK, EI30, 2VA, 2x Sec, -Trafo Printtrafo CHK EI30 2VA 2x Sec -0 -10 -10 -Transformer_THT -Transformer_CHK_EI30-2VA_Neutral -Trafo, Printtrafo, CHK, EI30, 2VA, neutral, -Trafo Printtrafo CHK EI30 2VA neutral -0 -10 -10 -Transformer_THT -Transformer_CHK_EI38-3VA_1xSec -Trafo, Printtrafo, CHK, EI38, 3VA, 1x Sec, http://www.eratransformers.com/product-detail/20 -Trafo Printtrafo CHK EI38 3VA 1x Sec -0 -10 -10 -Transformer_THT -Transformer_CHK_EI38-3VA_2xSec -Trafo, Printtrafo, CHK, EI38, 3VA, 2x Sec, http://www.eratransformers.com/product-detail/20 -Trafo Printtrafo CHK EI38 3VA 2x Sec -0 -10 -10 -Transformer_THT -Transformer_CHK_EI38-3VA_Neutral -Trafo, Printtrafo, CHK, EI38, 3VA, neutral, http://www.eratransformers.com/product-detail/20 -Trafo Printtrafo CHK EI42 3VA neutral -0 -10 -10 -Transformer_THT -Transformer_CHK_EI42-5VA_1xSec -Trafo, Printtrafo, CHK, EI42, 5VA, 1x Sec, -Trafo Printtrafo CHK EI42 5VA 1x Sec -0 -10 -10 -Transformer_THT -Transformer_CHK_EI42-5VA_2xSec -Trafo, Printtrafo, CHK, EI42, 5VA, 2x Sec, -Trafo Printtrafo CHK EI42 5VA 2x Sec -0 -10 -10 -Transformer_THT -Transformer_CHK_EI42-5VA_Neutral -Trafo, Printtrafo, CHK, EI42, 5VA, neutral, -Trafo Printtrafo CHK EI42 5VA neutral -0 -10 -10 -Transformer_THT -Transformer_CHK_EI48-8VA_1xSec -Trafo, Printtrafo, CHK, EI48, 8VA, 1x Sec, http://www.eratransformers.com/product-detail/18 -Trafo Printtrafo CHK EI48 8VA 1x Sec -0 -12 -12 -Transformer_THT -Transformer_CHK_EI48-8VA_2xSec -Trafo, Printtrafo, CHK, EI48, 8VA, 2x Sec, http://www.eratransformers.com/product-detail/18 -Trafo Printtrafo CHK EI48 8VA 2x Sec -0 -12 -12 -Transformer_THT -Transformer_CHK_EI48-8VA_Neutral -Trafo, Printtrafo, CHK, EI48, 8VA, neutral, http://www.eratransformers.com/product-detail/18 -Trafo Printtrafo CHK EI48 8VA neutral -0 -12 -12 -Transformer_THT -Transformer_CHK_EI48-10VA_1xSec -Trafo, Printtrafo, CHK, EI48, 10VA, 1x Sec, -Trafo Printtrafo CHK EI48 10VA 1x Sec -0 -12 -12 -Transformer_THT -Transformer_CHK_EI48-10VA_2xSec -Trafo, Printtrafo, CHK, EI48, 10VA, 2x Sec, http://www.eratransformers.com/product-detail/18 -Trafo Printtrafo CHK EI48 10VA 2x Sec -0 -12 -12 -Transformer_THT -Transformer_CHK_EI48-10VA_Neutral -Trafo, Printtrafo, CHK, EI48, 10VA, neutral, http://www.eratransformers.com/product-detail/18 -Trafo Printtrafo CHK EI48 10VA neutral -0 -12 -12 -Transformer_THT -Transformer_CHK_EI54-12VA_1xSec -Trafo, Printtrafo, CHK, EI54, 12VA, 1x Sec,http://www.eratransformers.com/product-detail/19 -Trafo Printtrafo CHK EI54 12VA 1x Sec -0 -14 -14 -Transformer_THT -Transformer_CHK_EI54-12VA_2xSec -Trafo, Printtrafo, CHK, EI54, 12VA, 2x Sec,http://www.eratransformers.com/product-detail/19 -Trafo Printtrafo CHK EI54 12VA 2x Sec -0 -14 -14 -Transformer_THT -Transformer_CHK_EI54-12VA_Neutral -Trafo, Printtrafo, CHK, EI54, 12VA, neutral,http://www.eratransformers.com/product-detail/19 -Trafo Printtrafo CHK EI54 12VA neutral -0 -14 -14 -Transformer_THT -Transformer_CHK_EI54-16VA_1xSec -Trafo, Printtrafo, CHK, EI54, 16VA, 1x Sec,http://www.eratransformers.com/product-detail/19 -Trafo Printtrafo CHK EI54 16VA 1x Sec -0 -14 -14 -Transformer_THT -Transformer_CHK_EI54-16VA_2xSec -Trafo, Printtrafo, CHK, EI54, 16VA, 2x Sec,http://www.eratransformers.com/product-detail/19 -Trafo Printtrafo CHK EI54 16VA 2x Sec -0 -14 -14 -Transformer_THT -Transformer_CHK_EI54-16VA_Neutral -Trafo, Printtrafo, CHK, EI54, 16VA, neutral,http://www.eratransformers.com/product-detail/19 -Trafo Printtrafo CHK EI54 16VA neutral -0 -14 -14 -Transformer_THT -Transformer_CHK_UI30-4VA_Flat -Trafo, Flattrafo, CHK, UI30, 4VA, -Trafo Flattrafo CHK UI30 4VA -0 -16 -16 -Transformer_THT -Transformer_CHK_UI39-10VA_Flat -Trafo, Flattrafo, CHK, UI39, 10VA, -Trafo Flattrafo CHK UI39 10VA -0 -20 -20 -Transformer_THT -Transformer_Coilcraft_Q4434-B_Rhombus-T1311 -Transformator, Transformer, Flyback, Coilcraft Q4434-B, Rgombus T1311, -Transformator Transformer Flyback Coilcraft Q4434-B Rgombus T1311 -0 -8 -8 -Transformer_THT -Transformer_EPCOS_B66359A1013T_Horizontal -Transformer, Transformator, ETD29, 13 Pin, Horizontal, EPCOS-B66359A1013T, -Transformer Transformator ETD29 13 Pin Horizontal EPCOS-B66359A1013T -0 -13 -13 -Transformer_THT -Transformer_EPCOS_B66359J1014T_Vertical -Transformer, Transformator, ETD29, 14 Pin, Vertical, EPCOS-B66359J1014T, -Transformer Transformator ETD29 14 Pin Vertical EPCOS-B66359J1014T -0 -14 -14 -Transformer_THT -Transformer_Microphone_Lundahl_LL1538 -AUDIO TRAFO LUNDAHL, https://www.lundahltransformers.com/wp-content/uploads/datasheets/1538_8xl.pdf -AUDIO TRAFO LUNDAHL -0 -7 -7 -Transformer_THT -Transformer_Microphone_Lundahl_LL1587 -AUDIO TRAFO LUNDAHL, https://www.lundahltransformers.com/wp-content/uploads/datasheets/1587.pdf -AUDIO TRAFO LUNDAHL -0 -7 -7 -Transformer_THT -Transformer_Myrra_74040_Horizontal -Transformer, Transformator, ETD29, 13 Pin, Horizontal, Myrra-74040, -Transformer Transformator ETD29 13 Pin Horizontal Myrra-74040 -0 -13 -13 -Transformer_THT -Transformer_Myrra_EF20_7408x -EF20 flyback transformer,http://myrra.com/wp-content/uploads/2017/09/Datasheet-74087-74088-74089-rev-A.pdf -transformer flyback SMPS -0 -9 -9 -Transformer_THT -Transformer_NF_ETAL_1-1_P1200 -NF-Transformer, 1:1, ETAL P1200,http://www.etalgroup.com/sites/default/files/products/P1200_April_2005.pdf -NF-Transformer 1to1 ETAL P1200 -0 -4 -4 -Transformer_THT -Transformer_NF_ETAL_P1165 -NF-Transformer, ETAL, P1165,http://www.etalgroup.com/sites/default/files/products/P1165_February_2006.pdf -NF-Transformer ETAL P1165 -0 -4 -4 -Transformer_THT -Transformer_NF_ETAL_P3324 -NF-Transformer, ETAL P3324,http://www.etalgroup.com/sites/default/files/products/P3324_April_2005.pdf -NF-Transformer ETAL P3324 -0 -4 -4 -Transformer_THT -Transformer_NF_ETAL_P3356 -NF-Transformer, ETAL P3356, http://www.etalgroup.com/sites/default/files/products/P3356_December_2005.pdf -NF-Transformer ETAL P3356 -0 -4 -4 -Transformer_THT -Transformer_Toroid_Horizontal_D9.0mm_Amidon-T30 -Transformer, Toroid, horizontal, laying, Diameter 9mm, Amidon, T30, -Transformer Toroid horizontal laying Diameter 9mm Amidon T30 -0 -4 -4 -Transformer_THT -Transformer_Toroid_Horizontal_D10.5mm_Amidon-T37 -Transformer, Toroid, horizontal, laying, Diameter 10,5mm, Amidon T37, -Transformer Toroid horizontal laying Diameter 10 5mm Amidon T37 -0 -4 -4 -Transformer_THT -Transformer_Toroid_Horizontal_D12.5mm_Amidon-T44 -Transformer, Toroid, horizontal, laying, Diameter 12,5mm, Amidon T44, -Transformer Toroid horizontal laying Diameter 12 5mm Amidon T44 -0 -4 -4 -Transformer_THT -Transformer_Toroid_Horizontal_D14.0mm_Amidon-T50 -Transformer, Toroid, horizontal, laying, Diameter 14mm, Amidon T50, -Transformer Toroid horizontal laying Diameter 14mm Amidon T50 -0 -4 -4 -Transformer_THT -Transformer_Toroid_Horizontal_D18.0mm -Transformer, Toroid, tapped, horizontal, laying, Diameter 18mm, -Transformer Toroid tapped horizontal laying Diameter 18mm -0 -5 -4 -Transformer_THT -Transformer_Toroid_Tapped_Horizontal_D9.0mm_Amidon-T30 -Transformer, Toroid, tapped, horizontal, laying, Diameter 9mm, Amidon, T30, -Transformer Toroid tapped horizontal laying Diameter 9mm Amidon T30 -0 -6 -6 -Transformer_THT -Transformer_Toroid_Tapped_Horizontal_D10.5mm_Amidon-T37 -Transformer, Toroid, tapped, horizontal, laying, Diameter 10,5mm, Amidon, T37, -Transformer Toroid tapped horizontal laying Diameter 10 5mm Amidon T37 +175217259078468 +Resistor_THT +R_Array_SIP4 +4-pin Resistor SIP pack +R 0 -6 -6 -Transformer_THT -Transformer_Toroid_Tapped_Horizontal_D12.5mm_Amidon-T44 -Transformer, Toroid, tapped, horizontal, laying, Diameter 12,5mm, Amidon, T44, -Transformer Toroid tapped horizontal laying Diameter 12 5mm Amidon T44 +4 +4 +Resistor_THT +R_Array_SIP5 +5-pin Resistor SIP pack +R 0 -6 -6 -Transformer_THT -Transformer_Toroid_Tapped_Horizontal_D14.0mm_Amidon-T50 -Transformer, Toroid, tapped, horizontal, laying, Diameter 14mm, Amidon T50, -Transformer Toroid tapped horizontal laying Diameter 14mm Amidon T50 +5 +5 +Resistor_THT +R_Array_SIP6 +6-pin Resistor SIP pack +R 0 6 6 -Transformer_THT -Transformer_Wuerth_750343373 -Transformer, horizontal core with bobbin, 10 pin, 3.81mm pitch, 15.24mm row spacing, 22x23x17.53mm (https://katalog.we-online.com/ctm/datasheet/750343373.pdf) -transformer flyback -0 -10 -10 -Transformer_THT -Transformer_Wuerth_760871131 -Transformer, horizontal core with bobbin, 14 pin, 2.49 mm pitch, 20 mm row spacing, 25x22.2x16mm https://www.we-online.com/catalog/datasheet/760871131.pdf -transformer flyback -0 -14 -14 -Transistor_Power_Module -Infineon_AG-ECONO2 -28-lead TH, EconoPACK 2, same as Littelfuse_Package_H_XN2MM, https://www.infineon.com/dgdl/Infineon-FS75R07N2E4-DS-v02_00-en_de.pdf?fileId=db3a30432f5008fe012f52f916333979 -igbt diode module -0 -28 -28 -Transistor_Power_Module -Infineon_EasyPIM-1B -35-lead TH, EasyPIM 1B, https://www.infineon.com/dgdl/Infineon-FP10R06W1E3-DS-v02_01-en_de.pdf?fileId=db3a304412b407950112b43312285a63 -brifge rectifier igbt diode module -0 -23 -23 -Transistor_Power_Module -Infineon_EasyPIM-2B -35-lead TH, EasyPIM 2B, same as ST_ACEPACK-2-CIB, https://www.infineon.com/dgdl/Infineon-FP50R06W2E3-DS-v02_02-EN.pdf?fileId=db3a30431b3e89eb011b455c99987d24 -brifge rectifier igbt diode module -0 -35 -23 -Transistor_Power_Module -Littelfuse_Package_H_XBN2MM -24-lead TH, Package H, https://www.littelfuse.com/~/media/electronics/datasheets/power_semiconductors/littelfuse_power_semiconductor_igbt_module_mg1215h_xbn2mm_datasheet.pdf.pdf -brifge rectifier igbt diode module -0 -24 -24 -Transistor_Power_Module -Littelfuse_Package_H_XN2MM -28-lead TH, Package H, same as Infineon_AG-ECONO2, https://www.littelfuse.com/~/media/electronics/datasheets/power_semiconductors/littelfuse_power_semiconductor_igbt_module_mg1225h_xn2mm_datasheet.pdf.pdf -igbt diode module -0 -28 -28 -Transistor_Power_Module -Littelfuse_Package_W_XBN2MM -24-lead TH, Package W, https://www.littelfuse.com/~/media/electronics/datasheets/power_semiconductors/littelfuse_power_semiconductor_igbt_module_mg1250w_xbn2mm_datasheet.pdf.pdf -brifge rectifier igbt diode module -0 -35 -24 -Transistor_Power_Module -Littelfuse_Package_W_XN2MM -35-lead TH, Package W, https://www.littelfuse.com/~/media/electronics/datasheets/power_semiconductors/littelfuse_power_semiconductor_igbt_module_mg1275w_xn2mm_datasheet.pdf.pdf -igbt diode module -0 -35 -35 -Transistor_Power_Module -ST_ACEPACK-2-CIB -35-lead TH, ACEPACK 2 CIB, same as Infineon_EasyPIM-2B, https://www.st.com/resource/en/datasheet/a2c25s12m3.pdf -brifge rectifier igbt diode module -0 -35 -23 -Transistor_Power_Module -ST_ACEPACK-2-CIB_PressFIT -35-lead TH, ACEPACK 2 CIB, PressFIT, https://www.st.com/resource/en/datasheet/a2c50s65m2-f.pdf -brifge rectifier igbt diode module -0 -35 -23 -Transistor_Power_Module -ST_SDIP-25L -25-lead TH, SDIP-25L, https://www.st.com/resource/en/datasheet/stgips20k60.pdf -igbt diode module -0 -25 -25 -Valve -Valve_ECC-83-1 -Valve ECC-83-1 round pins -Valve ECC-83-1 round pins -0 -9 -9 -Valve -Valve_ECC-83-2 -Valve ECC-83-2 flat pins -Valve ECC-83-2 flat pins -0 -10 -9 -Valve -Valve_EURO -Valve Euro -Valve Euro -0 -7 -5 -Valve -Valve_Glimm -Valve Glimm -Valve Glimm -0 -2 -2 -Valve -Valve_Mini_G -Valve mini G -Valve mini G -0 -9 -7 -Valve -Valve_Mini_P -Valve mini P -Valve mini P +Resistor_THT +R_Array_SIP7 +7-pin Resistor SIP pack +R 0 7 7 -Valve -Valve_Mini_Pentode_Linear -Mini-Pentode, 5-pin, e.g. JAN6418 -Valve Mini-Pentode 5-pin JAN6418 -0 -5 -5 -Valve -Valve_Noval_G -Valve NOVAL G -Valve NOVAL G +Resistor_THT +R_Array_SIP8 +8-pin Resistor SIP pack +R 0 -11 -9 -Valve -Valve_Noval_P -Valve NOVAL P -Valve NOVAL P +8 +8 +Resistor_THT +R_Array_SIP9 +9-pin Resistor SIP pack +R 0 9 9 -Valve -Valve_Octal -8-pin round valve -valve -0 -9 -8 -Varistor -RV_Disc_D7mm_W3.4mm_P5mm -Varistor, diameter 7mm, width 3.4mm, pitch 5mm -varistor SIOV -0 -2 -2 -Varistor -RV_Disc_D7mm_W3.5mm_P5mm -Varistor, diameter 7mm, width 3.5mm, pitch 5mm -varistor SIOV -0 -2 -2 -Varistor -RV_Disc_D7mm_W3.6mm_P5mm -Varistor, diameter 7mm, width 3.6mm, pitch 5mm -varistor SIOV -0 -2 -2 -Varistor -RV_Disc_D7mm_W3.7mm_P5mm -Varistor, diameter 7mm, width 3.7mm, pitch 5mm -varistor SIOV +Resistor_THT +R_Array_SIP10 +10-pin Resistor SIP pack +R 0 -2 -2 -Varistor -RV_Disc_D7mm_W3.8mm_P5mm -Varistor, diameter 7mm, width 3.8mm, pitch 5mm -varistor SIOV +10 +10 +Resistor_THT +R_Array_SIP11 +11-pin Resistor SIP pack +R 0 -2 -2 -Varistor -RV_Disc_D7mm_W3.9mm_P5mm -Varistor, diameter 7mm, width 3.9mm, pitch 5mm -varistor SIOV +11 +11 +Resistor_THT +R_Array_SIP12 +12-pin Resistor SIP pack +R 0 -2 -2 -Varistor -RV_Disc_D7mm_W4.2mm_P5mm -Varistor, diameter 7mm, width 4.2mm, pitch 5mm -varistor SIOV +12 +12 +Resistor_THT +R_Array_SIP13 +13-pin Resistor SIP pack +R 0 -2 -2 -Varistor -RV_Disc_D7mm_W4.3mm_P5mm -Varistor, diameter 7mm, width 4.3mm, pitch 5mm -varistor SIOV +13 +13 +Resistor_THT +R_Array_SIP14 +14-pin Resistor SIP pack +R 0 -2 -2 -Varistor -RV_Disc_D7mm_W4.5mm_P5mm -Varistor, diameter 7mm, width 4.5mm, pitch 5mm -varistor SIOV +14 +14 +Resistor_THT +R_Axial_DIN0204_L3.6mm_D1.6mm_P1.90mm_Vertical +Resistor, Axial_DIN0204 series, Axial, Vertical, pin pitch=1.9mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0204 series Axial Vertical pin pitch 1.9mm 0.167W length 3.6mm diameter 1.6mm 0 2 2 -Varistor -RV_Disc_D7mm_W4.8mm_P5mm -Varistor, diameter 7mm, width 4.8mm, pitch 5mm -varistor SIOV +Resistor_THT +R_Axial_DIN0204_L3.6mm_D1.6mm_P2.54mm_Vertical +Resistor, Axial_DIN0204 series, Axial, Vertical, pin pitch=2.54mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0204 series Axial Vertical pin pitch 2.54mm 0.167W length 3.6mm diameter 1.6mm 0 2 2 -Varistor -RV_Disc_D7mm_W4.9mm_P5mm -Varistor, diameter 7mm, width 4.9mm, pitch 5mm -varistor SIOV +Resistor_THT +R_Axial_DIN0204_L3.6mm_D1.6mm_P5.08mm_Horizontal +Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=5.08mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0204 series Axial Horizontal pin pitch 5.08mm 0.167W length 3.6mm diameter 1.6mm 0 2 2 -Varistor -RV_Disc_D7mm_W4mm_P5mm -Varistor, diameter 7mm, width 4mm, pitch 5mm -varistor SIOV +Resistor_THT +R_Axial_DIN0204_L3.6mm_D1.6mm_P5.08mm_Vertical +Resistor, Axial_DIN0204 series, Axial, Vertical, pin pitch=5.08mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0204 series Axial Vertical pin pitch 5.08mm 0.167W length 3.6mm diameter 1.6mm 0 2 2 -Varistor -RV_Disc_D7mm_W5.1mm_P5mm -Varistor, diameter 7mm, width 5.1mm, pitch 5mm -varistor SIOV +Resistor_THT +R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal +Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0204 series Axial Horizontal pin pitch 7.62mm 0.167W length 3.6mm diameter 1.6mm 0 2 2 -Varistor -RV_Disc_D7mm_W5.4mm_P5mm -Varistor, diameter 7mm, width 5.4mm, pitch 5mm -varistor SIOV +Resistor_THT +R_Axial_DIN0207_L6.3mm_D2.5mm_P2.54mm_Vertical +Resistor, Axial_DIN0207 series, Axial, Vertical, pin pitch=2.54mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0207 series Axial Vertical pin pitch 2.54mm 0.25W = 1/4W length 6.3mm diameter 2.5mm 0 2 2 -Varistor -RV_Disc_D7mm_W5.5mm_P5mm -Varistor, diameter 7mm, width 5.5mm, pitch 5mm -varistor SIOV +Resistor_THT +R_Axial_DIN0207_L6.3mm_D2.5mm_P5.08mm_Vertical +Resistor, Axial_DIN0207 series, Axial, Vertical, pin pitch=5.08mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0207 series Axial Vertical pin pitch 5.08mm 0.25W = 1/4W length 6.3mm diameter 2.5mm 0 2 2 -Varistor -RV_Disc_D7mm_W5.7mm_P5mm -Varistor, diameter 7mm, width 5.7mm, pitch 5mm -varistor SIOV +Resistor_THT +R_Axial_DIN0207_L6.3mm_D2.5mm_P7.62mm_Horizontal +Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=7.62mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0207 series Axial Horizontal pin pitch 7.62mm 0.25W = 1/4W length 6.3mm diameter 2.5mm 0 2 2 -Varistor -RV_Disc_D9mm_W3.3mm_P5mm -Varistor, diameter 9mm, width 3.3mm, pitch 5mm -varistor SIOV +Resistor_THT +R_Axial_DIN0207_L6.3mm_D2.5mm_P10.16mm_Horizontal +Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=10.16mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0207 series Axial Horizontal pin pitch 10.16mm 0.25W = 1/4W length 6.3mm diameter 2.5mm 0 2 2 -Varistor -RV_Disc_D9mm_W3.4mm_P5mm -Varistor, diameter 9mm, width 3.4mm, pitch 5mm -varistor SIOV +Resistor_THT +R_Axial_DIN0207_L6.3mm_D2.5mm_P15.24mm_Horizontal +Resistor, Axial_DIN0207 series, Axial, Horizontal, pin pitch=15.24mm, 0.25W = 1/4W, length*diameter=6.3*2.5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0207 series Axial Horizontal pin pitch 15.24mm 0.25W = 1/4W length 6.3mm diameter 2.5mm 0 2 2 -Varistor -RV_Disc_D9mm_W3.5mm_P5mm -Varistor, diameter 9mm, width 3.5mm, pitch 5mm -varistor SIOV +Resistor_THT +R_Axial_DIN0309_L9.0mm_D3.2mm_P2.54mm_Vertical +Resistor, Axial_DIN0309 series, Axial, Vertical, pin pitch=2.54mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0309 series Axial Vertical pin pitch 2.54mm 0.5W = 1/2W length 9mm diameter 3.2mm 0 2 2 -Varistor -RV_Disc_D9mm_W3.6mm_P5mm -Varistor, diameter 9mm, width 3.6mm, pitch 5mm -varistor SIOV +Resistor_THT +R_Axial_DIN0309_L9.0mm_D3.2mm_P5.08mm_Vertical +Resistor, Axial_DIN0309 series, Axial, Vertical, pin pitch=5.08mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0309 series Axial Vertical pin pitch 5.08mm 0.5W = 1/2W length 9mm diameter 3.2mm 0 2 2 -Varistor -RV_Disc_D9mm_W3.7mm_P5mm -Varistor, diameter 9mm, width 3.7mm, pitch 5mm -varistor SIOV +Resistor_THT +R_Axial_DIN0309_L9.0mm_D3.2mm_P12.70mm_Horizontal +Resistor, Axial_DIN0309 series, Axial, Horizontal, pin pitch=12.7mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0309 series Axial Horizontal pin pitch 12.7mm 0.5W = 1/2W length 9mm diameter 3.2mm 0 2 2 -Varistor -RV_Disc_D9mm_W3.8mm_P5mm -Varistor, diameter 9mm, width 3.8mm, pitch 5mm -varistor SIOV +Resistor_THT +R_Axial_DIN0309_L9.0mm_D3.2mm_P15.24mm_Horizontal +Resistor, Axial_DIN0309 series, Axial, Horizontal, pin pitch=15.24mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0309 series Axial Horizontal pin pitch 15.24mm 0.5W = 1/2W length 9mm diameter 3.2mm 0 2 2 -Varistor -RV_Disc_D9mm_W3.9mm_P5mm -Varistor, diameter 9mm, width 3.9mm, pitch 5mm -varistor SIOV +Resistor_THT +R_Axial_DIN0309_L9.0mm_D3.2mm_P20.32mm_Horizontal +Resistor, Axial_DIN0309 series, Axial, Horizontal, pin pitch=20.32mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0309 series Axial Horizontal pin pitch 20.32mm 0.5W = 1/2W length 9mm diameter 3.2mm 0 2 2 -Varistor -RV_Disc_D9mm_W4.1mm_P5mm -Varistor, diameter 9mm, width 4.1mm, pitch 5mm -varistor SIOV +Resistor_THT +R_Axial_DIN0309_L9.0mm_D3.2mm_P25.40mm_Horizontal +Resistor, Axial_DIN0309 series, Axial, Horizontal, pin pitch=25.4mm, 0.5W = 1/2W, length*diameter=9*3.2mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0309 series Axial Horizontal pin pitch 25.4mm 0.5W = 1/2W length 9mm diameter 3.2mm 0 2 2 -Varistor -RV_Disc_D9mm_W4.2mm_P5mm -Varistor, diameter 9mm, width 4.2mm, pitch 5mm -varistor SIOV +Resistor_THT +R_Axial_DIN0411_L9.9mm_D3.6mm_P5.08mm_Vertical +Resistor, Axial_DIN0411 series, Axial, Vertical, pin pitch=5.08mm, 1W, length*diameter=9.9*3.6mm^2 +Resistor Axial_DIN0411 series Axial Vertical pin pitch 5.08mm 1W length 9.9mm diameter 3.6mm 0 2 2 -Varistor -RV_Disc_D9mm_W4.4mm_P5mm -Varistor, diameter 9mm, width 4.4mm, pitch 5mm -varistor SIOV +Resistor_THT +R_Axial_DIN0411_L9.9mm_D3.6mm_P7.62mm_Vertical +Resistor, Axial_DIN0411 series, Axial, Vertical, pin pitch=7.62mm, 1W, length*diameter=9.9*3.6mm^2 +Resistor Axial_DIN0411 series Axial Vertical pin pitch 7.62mm 1W length 9.9mm diameter 3.6mm 0 2 2 -Varistor -RV_Disc_D9mm_W4.5mm_P5mm -Varistor, diameter 9mm, width 4.5mm, pitch 5mm -varistor SIOV +Resistor_THT +R_Axial_DIN0411_L9.9mm_D3.6mm_P12.70mm_Horizontal +Resistor, Axial_DIN0411 series, Axial, Horizontal, pin pitch=12.7mm, 1W, length*diameter=9.9*3.6mm^2 +Resistor Axial_DIN0411 series Axial Horizontal pin pitch 12.7mm 1W length 9.9mm diameter 3.6mm 0 2 2 -Varistor -RV_Disc_D9mm_W4.8mm_P5mm -Varistor, diameter 9mm, width 4.8mm, pitch 5mm -varistor SIOV +Resistor_THT +R_Axial_DIN0411_L9.9mm_D3.6mm_P15.24mm_Horizontal +Resistor, Axial_DIN0411 series, Axial, Horizontal, pin pitch=15.24mm, 1W, length*diameter=9.9*3.6mm^2 +Resistor Axial_DIN0411 series Axial Horizontal pin pitch 15.24mm 1W length 9.9mm diameter 3.6mm 0 2 2 -Varistor -RV_Disc_D9mm_W4mm_P5mm -Varistor, diameter 9mm, width 4mm, pitch 5mm -varistor SIOV +Resistor_THT +R_Axial_DIN0411_L9.9mm_D3.6mm_P20.32mm_Horizontal +Resistor, Axial_DIN0411 series, Axial, Horizontal, pin pitch=20.32mm, 1W, length*diameter=9.9*3.6mm^2 +Resistor Axial_DIN0411 series Axial Horizontal pin pitch 20.32mm 1W length 9.9mm diameter 3.6mm 0 2 2 -Varistor -RV_Disc_D9mm_W5.2mm_P5mm -Varistor, diameter 9mm, width 5.2mm, pitch 5mm -varistor SIOV +Resistor_THT +R_Axial_DIN0411_L9.9mm_D3.6mm_P25.40mm_Horizontal +Resistor, Axial_DIN0411 series, Axial, Horizontal, pin pitch=25.4mm, 1W, length*diameter=9.9*3.6mm^2 +Resistor Axial_DIN0411 series Axial Horizontal pin pitch 25.4mm 1W length 9.9mm diameter 3.6mm 0 2 2 -Varistor -RV_Disc_D9mm_W5.4mm_P5mm -Varistor, diameter 9mm, width 5.4mm, pitch 5mm -varistor SIOV +Resistor_THT +R_Axial_DIN0414_L11.9mm_D4.5mm_P5.08mm_Vertical +Resistor, Axial_DIN0414 series, Axial, Vertical, pin pitch=5.08mm, 2W, length*diameter=11.9*4.5mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf +Resistor Axial_DIN0414 series Axial Vertical pin pitch 5.08mm 2W length 11.9mm diameter 4.5mm 0 2 2 -Varistor -RV_Disc_D9mm_W5.5mm_P5mm -Varistor, diameter 9mm, width 5.5mm, pitch 5mm -varistor SIOV +Resistor_THT +R_Axial_DIN0414_L11.9mm_D4.5mm_P7.62mm_Vertical +Resistor, Axial_DIN0414 series, Axial, Vertical, pin pitch=7.62mm, 2W, length*diameter=11.9*4.5mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf +Resistor Axial_DIN0414 series Axial Vertical pin pitch 7.62mm 2W length 11.9mm diameter 4.5mm 0 2 2 -Varistor -RV_Disc_D9mm_W5.7mm_P5mm -Varistor, diameter 9mm, width 5.7mm, pitch 5mm -varistor SIOV +Resistor_THT +R_Axial_DIN0414_L11.9mm_D4.5mm_P15.24mm_Horizontal +Resistor, Axial_DIN0414 series, Axial, Horizontal, pin pitch=15.24mm, 2W, length*diameter=11.9*4.5mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf +Resistor Axial_DIN0414 series Axial Horizontal pin pitch 15.24mm 2W length 11.9mm diameter 4.5mm 0 2 2 -Varistor -RV_Disc_D9mm_W6.1mm_P5mm -Varistor, diameter 9mm, width 6.1mm, pitch 5mm -varistor SIOV +Resistor_THT +R_Axial_DIN0414_L11.9mm_D4.5mm_P20.32mm_Horizontal +Resistor, Axial_DIN0414 series, Axial, Horizontal, pin pitch=20.32mm, 2W, length*diameter=11.9*4.5mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf +Resistor Axial_DIN0414 series Axial Horizontal pin pitch 20.32mm 2W length 11.9mm diameter 4.5mm 0 2 2 -Varistor -RV_Disc_D12mm_W3.9mm_P7.5mm -Varistor, diameter 12mm, width 3.9mm, pitch 7.5mm -varistor SIOV +Resistor_THT +R_Axial_DIN0414_L11.9mm_D4.5mm_P25.40mm_Horizontal +Resistor, Axial_DIN0414 series, Axial, Horizontal, pin pitch=25.4mm, 2W, length*diameter=11.9*4.5mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf +Resistor Axial_DIN0414 series Axial Horizontal pin pitch 25.4mm 2W length 11.9mm diameter 4.5mm 0 2 2 -Varistor -RV_Disc_D12mm_W4.2mm_P7.5mm -Varistor, diameter 12mm, width 4.2mm, pitch 7.5mm -varistor SIOV +Resistor_THT +R_Axial_DIN0516_L15.5mm_D5.0mm_P5.08mm_Vertical +Resistor, Axial_DIN0516 series, Axial, Vertical, pin pitch=5.08mm, 2W, length*diameter=15.5*5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0516 series Axial Vertical pin pitch 5.08mm 2W length 15.5mm diameter 5mm 0 2 2 -Varistor -RV_Disc_D12mm_W4.3mm_P7.5mm -Varistor, diameter 12mm, width 4.3mm, pitch 7.5mm -varistor SIOV +Resistor_THT +R_Axial_DIN0516_L15.5mm_D5.0mm_P7.62mm_Vertical +Resistor, Axial_DIN0516 series, Axial, Vertical, pin pitch=7.62mm, 2W, length*diameter=15.5*5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0516 series Axial Vertical pin pitch 7.62mm 2W length 15.5mm diameter 5mm 0 2 2 -Varistor -RV_Disc_D12mm_W4.4mm_P7.5mm -Varistor, diameter 12mm, width 4.4mm, pitch 7.5mm -varistor SIOV +Resistor_THT +R_Axial_DIN0516_L15.5mm_D5.0mm_P20.32mm_Horizontal +Resistor, Axial_DIN0516 series, Axial, Horizontal, pin pitch=20.32mm, 2W, length*diameter=15.5*5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0516 series Axial Horizontal pin pitch 20.32mm 2W length 15.5mm diameter 5mm 0 2 2 -Varistor -RV_Disc_D12mm_W4.5mm_P7.5mm -Varistor, diameter 12mm, width 4.5mm, pitch 7.5mm -varistor SIOV +Resistor_THT +R_Axial_DIN0516_L15.5mm_D5.0mm_P25.40mm_Horizontal +Resistor, Axial_DIN0516 series, Axial, Horizontal, pin pitch=25.4mm, 2W, length*diameter=15.5*5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0516 series Axial Horizontal pin pitch 25.4mm 2W length 15.5mm diameter 5mm 0 2 2 -Varistor -RV_Disc_D12mm_W4.6mm_P7.5mm -Varistor, diameter 12mm, width 4.6mm, pitch 7.5mm -varistor SIOV +Resistor_THT +R_Axial_DIN0516_L15.5mm_D5.0mm_P30.48mm_Horizontal +Resistor, Axial_DIN0516 series, Axial, Horizontal, pin pitch=30.48mm, 2W, length*diameter=15.5*5mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf +Resistor Axial_DIN0516 series Axial Horizontal pin pitch 30.48mm 2W length 15.5mm diameter 5mm 0 2 2 -Varistor -RV_Disc_D12mm_W4.7mm_P7.5mm -Varistor, diameter 12mm, width 4.7mm, pitch 7.5mm -varistor SIOV +Resistor_THT +R_Axial_DIN0614_L14.3mm_D5.7mm_P5.08mm_Vertical +Resistor, Axial_DIN0614 series, Axial, Vertical, pin pitch=5.08mm, 1.5W, length*diameter=14.3*5.7mm^2 +Resistor Axial_DIN0614 series Axial Vertical pin pitch 5.08mm 1.5W length 14.3mm diameter 5.7mm 0 2 2 -Varistor -RV_Disc_D12mm_W4.8mm_P7.5mm -Varistor, diameter 12mm, width 4.8mm, pitch 7.5mm -varistor SIOV +Resistor_THT +R_Axial_DIN0614_L14.3mm_D5.7mm_P7.62mm_Vertical +Resistor, Axial_DIN0614 series, Axial, Vertical, pin pitch=7.62mm, 1.5W, length*diameter=14.3*5.7mm^2 +Resistor Axial_DIN0614 series Axial Vertical pin pitch 7.62mm 1.5W length 14.3mm diameter 5.7mm 0 2 2 -Varistor -RV_Disc_D12mm_W4mm_P7.5mm -Varistor, diameter 12mm, width 4mm, pitch 7.5mm -varistor SIOV +Resistor_THT +R_Axial_DIN0614_L14.3mm_D5.7mm_P15.24mm_Horizontal +Resistor, Axial_DIN0614 series, Axial, Horizontal, pin pitch=15.24mm, 1.5W, length*diameter=14.3*5.7mm^2 +Resistor Axial_DIN0614 series Axial Horizontal pin pitch 15.24mm 1.5W length 14.3mm diameter 5.7mm 0 2 2 -Varistor -RV_Disc_D12mm_W5.1mm_P7.5mm -Varistor, diameter 12mm, width 5.1mm, pitch 7.5mm -varistor SIOV +Resistor_THT +R_Axial_DIN0614_L14.3mm_D5.7mm_P20.32mm_Horizontal +Resistor, Axial_DIN0614 series, Axial, Horizontal, pin pitch=20.32mm, 1.5W, length*diameter=14.3*5.7mm^2 +Resistor Axial_DIN0614 series Axial Horizontal pin pitch 20.32mm 1.5W length 14.3mm diameter 5.7mm 0 2 2 -Varistor -RV_Disc_D12mm_W5.4mm_P7.5mm -Varistor, diameter 12mm, width 5.4mm, pitch 7.5mm -varistor SIOV +Resistor_THT +R_Axial_DIN0614_L14.3mm_D5.7mm_P25.40mm_Horizontal +Resistor, Axial_DIN0614 series, Axial, Horizontal, pin pitch=25.4mm, 1.5W, length*diameter=14.3*5.7mm^2 +Resistor Axial_DIN0614 series Axial Horizontal pin pitch 25.4mm 1.5W length 14.3mm diameter 5.7mm 0 2 2 -Varistor -RV_Disc_D12mm_W5.8mm_P7.5mm -Varistor, diameter 12mm, width 5.8mm, pitch 7.5mm -varistor SIOV +Resistor_THT +R_Axial_DIN0617_L17.0mm_D6.0mm_P5.08mm_Vertical +Resistor, Axial_DIN0617 series, Axial, Vertical, pin pitch=5.08mm, 2W, length*diameter=17*6mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf +Resistor Axial_DIN0617 series Axial Vertical pin pitch 5.08mm 2W length 17mm diameter 6mm 0 2 2 -Varistor -RV_Disc_D12mm_W5mm_P7.5mm -Varistor, diameter 12mm, width 5mm, pitch 7.5mm -varistor SIOV +Resistor_THT +R_Axial_DIN0617_L17.0mm_D6.0mm_P7.62mm_Vertical +Resistor, Axial_DIN0617 series, Axial, Vertical, pin pitch=7.62mm, 2W, length*diameter=17*6mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf +Resistor Axial_DIN0617 series Axial Vertical pin pitch 7.62mm 2W length 17mm diameter 6mm 0 2 2 -Varistor -RV_Disc_D12mm_W6.1mm_P7.5mm -Varistor, diameter 12mm, width 6.1mm, pitch 7.5mm -varistor SIOV +Resistor_THT +R_Axial_DIN0617_L17.0mm_D6.0mm_P20.32mm_Horizontal +Resistor, Axial_DIN0617 series, Axial, Horizontal, pin pitch=20.32mm, 2W, length*diameter=17*6mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf +Resistor Axial_DIN0617 series Axial Horizontal pin pitch 20.32mm 2W length 17mm diameter 6mm 0 2 2 -Varistor -RV_Disc_D12mm_W6.2mm_P7.5mm -Varistor, diameter 12mm, width 6.2mm, pitch 7.5mm -varistor SIOV +Resistor_THT +R_Axial_DIN0617_L17.0mm_D6.0mm_P25.40mm_Horizontal +Resistor, Axial_DIN0617 series, Axial, Horizontal, pin pitch=25.4mm, 2W, length*diameter=17*6mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf +Resistor Axial_DIN0617 series Axial Horizontal pin pitch 25.4mm 2W length 17mm diameter 6mm 0 2 2 -Varistor -RV_Disc_D12mm_W6.3mm_P7.5mm -Varistor, diameter 12mm, width 6.3mm, pitch 7.5mm -varistor SIOV +Resistor_THT +R_Axial_DIN0617_L17.0mm_D6.0mm_P30.48mm_Horizontal +Resistor, Axial_DIN0617 series, Axial, Horizontal, pin pitch=30.48mm, 2W, length*diameter=17*6mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf +Resistor Axial_DIN0617 series Axial Horizontal pin pitch 30.48mm 2W length 17mm diameter 6mm 0 2 2 -Varistor -RV_Disc_D12mm_W6.7mm_P7.5mm -Varistor, diameter 12mm, width 6.7mm, pitch 7.5mm -varistor SIOV +Resistor_THT +R_Axial_DIN0918_L18.0mm_D9.0mm_P7.62mm_Vertical +Resistor, Axial_DIN0918 series, Axial, Vertical, pin pitch=7.62mm, 4W, length*diameter=18*9mm^2 +Resistor Axial_DIN0918 series Axial Vertical pin pitch 7.62mm 4W length 18mm diameter 9mm 0 2 2 -Varistor -RV_Disc_D12mm_W7.1mm_P7.5mm -Varistor, diameter 12mm, width 7.1mm, pitch 7.5mm -varistor SIOV +Resistor_THT +R_Axial_DIN0918_L18.0mm_D9.0mm_P22.86mm_Horizontal +Resistor, Axial_DIN0918 series, Axial, Horizontal, pin pitch=22.86mm, 4W, length*diameter=18*9mm^2 +Resistor Axial_DIN0918 series Axial Horizontal pin pitch 22.86mm 4W length 18mm diameter 9mm 0 2 2 -Varistor -RV_Disc_D12mm_W7.5mm_P7.5mm -Varistor, diameter 12mm, width 7.5mm, pitch 7.5mm -varistor SIOV +Resistor_THT +R_Axial_DIN0918_L18.0mm_D9.0mm_P25.40mm_Horizontal +Resistor, Axial_DIN0918 series, Axial, Horizontal, pin pitch=25.4mm, 4W, length*diameter=18*9mm^2 +Resistor Axial_DIN0918 series Axial Horizontal pin pitch 25.4mm 4W length 18mm diameter 9mm 0 2 2 -Varistor -RV_Disc_D12mm_W7.9mm_P7.5mm -Varistor, diameter 12mm, width 7.9mm, pitch 7.5mm -varistor SIOV +Resistor_THT +R_Axial_DIN0918_L18.0mm_D9.0mm_P30.48mm_Horizontal +Resistor, Axial_DIN0918 series, Axial, Horizontal, pin pitch=30.48mm, 4W, length*diameter=18*9mm^2 +Resistor Axial_DIN0918 series Axial Horizontal pin pitch 30.48mm 4W length 18mm diameter 9mm 0 2 2 -Varistor -RV_Disc_D15.5mm_W3.9mm_P7.5mm -Varistor, diameter 15.5mm, width 3.9mm, pitch 7.5mm -varistor SIOV +Resistor_THT +R_Axial_DIN0922_L20.0mm_D9.0mm_P7.62mm_Vertical +Resistor, Axial_DIN0922 series, Axial, Vertical, pin pitch=7.62mm, 5W, length*diameter=20*9mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf +Resistor Axial_DIN0922 series Axial Vertical pin pitch 7.62mm 5W length 20mm diameter 9mm 0 2 2 -Varistor -RV_Disc_D15.5mm_W4.2mm_P7.5mm -Varistor, diameter 15.5mm, width 4.2mm, pitch 7.5mm -varistor SIOV +Resistor_THT +R_Axial_DIN0922_L20.0mm_D9.0mm_P25.40mm_Horizontal +Resistor, Axial_DIN0922 series, Axial, Horizontal, pin pitch=25.4mm, 5W, length*diameter=20*9mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf +Resistor Axial_DIN0922 series Axial Horizontal pin pitch 25.4mm 5W length 20mm diameter 9mm 0 2 2 -Varistor -RV_Disc_D15.5mm_W4.3mm_P7.5mm -Varistor, diameter 15.5mm, width 4.3mm, pitch 7.5mm -varistor SIOV +Resistor_THT +R_Axial_DIN0922_L20.0mm_D9.0mm_P30.48mm_Horizontal +Resistor, Axial_DIN0922 series, Axial, Horizontal, pin pitch=30.48mm, 5W, length*diameter=20*9mm^2, http://www.vishay.com/docs/20128/wkxwrx.pdf +Resistor Axial_DIN0922 series Axial Horizontal pin pitch 30.48mm 5W length 20mm diameter 9mm 0 2 2 -Varistor -RV_Disc_D15.5mm_W4.4mm_P7.5mm -Varistor, diameter 15.5mm, width 4.4mm, pitch 7.5mm -varistor SIOV +Resistor_THT +R_Axial_Power_L20.0mm_W6.4mm_P5.08mm_Vertical +Resistor, Axial_Power series, Axial, Vertical, pin pitch=5.08mm, 4W, length*width*height=20*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Axial Vertical pin pitch 5.08mm 4W length 20mm width 6.4mm height 6.4mm 0 2 2 -Varistor -RV_Disc_D15.5mm_W4.5mm_P7.5mm -Varistor, diameter 15.5mm, width 4.5mm, pitch 7.5mm -varistor SIOV +Resistor_THT +R_Axial_Power_L20.0mm_W6.4mm_P7.62mm_Vertical +Resistor, Axial_Power series, Axial, Vertical, pin pitch=7.62mm, 4W, length*width*height=20*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Axial Vertical pin pitch 7.62mm 4W length 20mm width 6.4mm height 6.4mm 0 2 2 -Varistor -RV_Disc_D15.5mm_W4.6mm_P7.5mm -Varistor, diameter 15.5mm, width 4.6mm, pitch 7.5mm -varistor SIOV +Resistor_THT +R_Axial_Power_L20.0mm_W6.4mm_P22.40mm +Resistor, Axial_Power series, Box, pin pitch=22.4mm, 4W, length*width*height=20*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 22.4mm 4W length 20mm width 6.4mm height 6.4mm 0 2 2 -Varistor -RV_Disc_D15.5mm_W4.7mm_P7.5mm -Varistor, diameter 15.5mm, width 4.7mm, pitch 7.5mm -varistor SIOV +Resistor_THT +R_Axial_Power_L20.0mm_W6.4mm_P25.40mm +Resistor, Axial_Power series, Box, pin pitch=25.4mm, 4W, length*width*height=20*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 25.4mm 4W length 20mm width 6.4mm height 6.4mm 0 2 2 -Varistor -RV_Disc_D15.5mm_W4.8mm_P7.5mm -Varistor, diameter 15.5mm, width 4.8mm, pitch 7.5mm -varistor SIOV +Resistor_THT +R_Axial_Power_L20.0mm_W6.4mm_P30.48mm +Resistor, Axial_Power series, Box, pin pitch=30.48mm, 4W, length*width*height=20*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 30.48mm 4W length 20mm width 6.4mm height 6.4mm 0 2 2 -Varistor -RV_Disc_D15.5mm_W4.9mm_P7.5mm -Varistor, diameter 15.5mm, width 4.9mm, pitch 7.5mm -varistor SIOV +Resistor_THT +R_Axial_Power_L25.0mm_W6.4mm_P27.94mm +Resistor, Axial_Power series, Box, pin pitch=27.94mm, 5W, length*width*height=25*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 27.94mm 5W length 25mm width 6.4mm height 6.4mm 0 2 2 -Varistor -RV_Disc_D15.5mm_W4mm_P7.5mm -Varistor, diameter 15.5mm, width 4mm, pitch 7.5mm -varistor SIOV +Resistor_THT +R_Axial_Power_L25.0mm_W6.4mm_P30.48mm +Resistor, Axial_Power series, Box, pin pitch=30.48mm, 5W, length*width*height=25*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 30.48mm 5W length 25mm width 6.4mm height 6.4mm 0 2 2 -Varistor -RV_Disc_D15.5mm_W5.2mm_P7.5mm -Varistor, diameter 15.5mm, width 5.2mm, pitch 7.5mm -varistor SIOV +Resistor_THT +R_Axial_Power_L25.0mm_W9.0mm_P7.62mm_Vertical +Resistor, Axial_Power series, Axial, Vertical, pin pitch=7.62mm, 7W, length*width*height=25*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Axial Vertical pin pitch 7.62mm 7W length 25mm width 9mm height 9mm 0 2 2 -Varistor -RV_Disc_D15.5mm_W5.4mm_P7.5mm -Varistor, diameter 15.5mm, width 5.4mm, pitch 7.5mm -varistor SIOV +Resistor_THT +R_Axial_Power_L25.0mm_W9.0mm_P10.16mm_Vertical +Resistor, Axial_Power series, Axial, Vertical, pin pitch=10.16mm, 7W, length*width*height=25*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Axial Vertical pin pitch 10.16mm 7W length 25mm width 9mm height 9mm 0 2 2 -Varistor -RV_Disc_D15.5mm_W5.9mm_P7.5mm -Varistor, diameter 15.5mm, width 5.9mm, pitch 7.5mm -varistor SIOV +Resistor_THT +R_Axial_Power_L25.0mm_W9.0mm_P27.94mm +Resistor, Axial_Power series, Box, pin pitch=27.94mm, 7W, length*width*height=25*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 27.94mm 7W length 25mm width 9mm height 9mm 0 2 2 -Varistor -RV_Disc_D15.5mm_W5mm_P7.5mm -Varistor, diameter 15.5mm, width 5mm, pitch 7.5mm -varistor SIOV +Resistor_THT +R_Axial_Power_L25.0mm_W9.0mm_P30.48mm +Resistor, Axial_Power series, Box, pin pitch=30.48mm, 7W, length*width*height=25*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 30.48mm 7W length 25mm width 9mm height 9mm 0 2 2 -Varistor -RV_Disc_D15.5mm_W6.1mm_P7.5mm -Varistor, diameter 15.5mm, width 6.1mm, pitch 7.5mm -varistor SIOV +Resistor_THT +R_Axial_Power_L38.0mm_W6.4mm_P40.64mm +Resistor, Axial_Power series, Box, pin pitch=40.64mm, 7W, length*width*height=38*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 40.64mm 7W length 38mm width 6.4mm height 6.4mm 0 2 2 -Varistor -RV_Disc_D15.5mm_W6.3mm_P7.5mm -Varistor, diameter 15.5mm, width 6.3mm, pitch 7.5mm -varistor SIOV +Resistor_THT +R_Axial_Power_L38.0mm_W6.4mm_P45.72mm +Resistor, Axial_Power series, Box, pin pitch=45.72mm, 7W, length*width*height=38*6.4*6.4mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 45.72mm 7W length 38mm width 6.4mm height 6.4mm 0 2 2 -Varistor -RV_Disc_D15.5mm_W6.4mm_P7.5mm -Varistor, diameter 15.5mm, width 6.4mm, pitch 7.5mm -varistor SIOV +Resistor_THT +R_Axial_Power_L38.0mm_W9.0mm_P40.64mm +Resistor, Axial_Power series, Box, pin pitch=40.64mm, 9W, length*width*height=38*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 40.64mm 9W length 38mm width 9mm height 9mm 0 2 2 -Varistor -RV_Disc_D15.5mm_W6.8mm_P7.5mm -Varistor, diameter 15.5mm, width 6.8mm, pitch 7.5mm -varistor SIOV +Resistor_THT +R_Axial_Power_L38.0mm_W9.0mm_P45.72mm +Resistor, Axial_Power series, Box, pin pitch=45.72mm, 9W, length*width*height=38*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 45.72mm 9W length 38mm width 9mm height 9mm 0 2 2 -Varistor -RV_Disc_D15.5mm_W7.2mm_P7.5mm -Varistor, diameter 15.5mm, width 7.2mm, pitch 7.5mm -varistor SIOV +Resistor_THT +R_Axial_Power_L48.0mm_W12.5mm_P7.62mm_Vertical +Resistor, Axial_Power series, Axial, Vertical, pin pitch=7.62mm, 15W, length*width*height=48*12.5*12.5mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Axial Vertical pin pitch 7.62mm 15W length 48mm width 12.5mm height 12.5mm 0 2 2 -Varistor -RV_Disc_D15.5mm_W7.5mm_P7.5mm -Varistor, diameter 15.5mm, width 7.5mm, pitch 7.5mm -varistor SIOV +Resistor_THT +R_Axial_Power_L48.0mm_W12.5mm_P10.16mm_Vertical +Resistor, Axial_Power series, Axial, Vertical, pin pitch=10.16mm, 15W, length*width*height=48*12.5*12.5mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Axial Vertical pin pitch 10.16mm 15W length 48mm width 12.5mm height 12.5mm 0 2 2 -Varistor -RV_Disc_D15.5mm_W8mm_P7.5mm -Varistor, diameter 15.5mm, width 8mm, pitch 7.5mm -varistor SIOV +Resistor_THT +R_Axial_Power_L48.0mm_W12.5mm_P55.88mm +Resistor, Axial_Power series, Box, pin pitch=55.88mm, 15W, length*width*height=48*12.5*12.5mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 55.88mm 15W length 48mm width 12.5mm height 12.5mm 0 2 2 -Varistor -RV_Disc_D15.5mm_W11mm_P7.5mm -Varistor, diameter 15.5mm, width 11mm, pitch 7.5mm -varistor SIOV +Resistor_THT +R_Axial_Power_L48.0mm_W12.5mm_P60.96mm +Resistor, Axial_Power series, Box, pin pitch=60.96mm, 15W, length*width*height=48*12.5*12.5mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 60.96mm 15W length 48mm width 12.5mm height 12.5mm 0 2 2 -Varistor -RV_Disc_D16.5mm_W6.7mm_P7.5mm -Varistor, diameter 16.5mm, width 6.7mm, pitch 5mm, https://katalog.we-online.de/pbs/datasheet/820542711.pdf -varistor SIOV +Resistor_THT +R_Axial_Power_L50.0mm_W9.0mm_P55.88mm +Resistor, Axial_Power series, Box, pin pitch=55.88mm, 11W, length*width*height=50*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 55.88mm 11W length 50mm width 9mm height 9mm 0 2 2 -Varistor -RV_Disc_D21.5mm_W4.3mm_P10mm -Varistor, diameter 21.5mm, width 4.3mm, pitch 10mm -varistor SIOV +Resistor_THT +R_Axial_Power_L50.0mm_W9.0mm_P60.96mm +Resistor, Axial_Power series, Box, pin pitch=60.96mm, 11W, length*width*height=50*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 60.96mm 11W length 50mm width 9mm height 9mm 0 2 2 -Varistor -RV_Disc_D21.5mm_W4.4mm_P10mm -Varistor, diameter 21.5mm, width 4.4mm, pitch 10mm -varistor SIOV +Resistor_THT +R_Axial_Power_L60.0mm_W14.0mm_P10.16mm_Vertical +Resistor, Axial_Power series, Axial, Vertical, pin pitch=10.16mm, 25W, length*width*height=60*14*14mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Axial Vertical pin pitch 10.16mm 25W length 60mm width 14mm height 14mm 0 2 2 -Varistor -RV_Disc_D21.5mm_W4.5mm_P10mm -Varistor, diameter 21.5mm, width 4.5mm, pitch 10mm -varistor SIOV +Resistor_THT +R_Axial_Power_L60.0mm_W14.0mm_P66.04mm +Resistor, Axial_Power series, Box, pin pitch=66.04mm, 25W, length*width*height=60*14*14mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 66.04mm 25W length 60mm width 14mm height 14mm 0 2 2 -Varistor -RV_Disc_D21.5mm_W4.6mm_P10mm -Varistor, diameter 21.5mm, width 4.6mm, pitch 10mm -varistor SIOV +Resistor_THT +R_Axial_Power_L60.0mm_W14.0mm_P71.12mm +Resistor, Axial_Power series, Box, pin pitch=71.12mm, 25W, length*width*height=60*14*14mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 71.12mm 25W length 60mm width 14mm height 14mm 0 2 2 -Varistor -RV_Disc_D21.5mm_W4.7mm_P10mm -Varistor, diameter 21.5mm, width 4.7mm, pitch 10mm -varistor SIOV +Resistor_THT +R_Axial_Power_L75.0mm_W9.0mm_P81.28mm +Resistor, Axial_Power series, Box, pin pitch=81.28mm, 17W, length*width*height=75*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 81.28mm 17W length 75mm width 9mm height 9mm 0 2 2 -Varistor -RV_Disc_D21.5mm_W4.8mm_P10mm -Varistor, diameter 21.5mm, width 4.8mm, pitch 10mm -varistor SIOV +Resistor_THT +R_Axial_Power_L75.0mm_W9.0mm_P86.36mm +Resistor, Axial_Power series, Box, pin pitch=86.36mm, 17W, length*width*height=75*9*9mm^3, http://cdn-reichelt.de/documents/datenblatt/B400/5WAXIAL_9WAXIAL_11WAXIAL_17WAXIAL%23YAG.pdf +Resistor Axial_Power series Box pin pitch 86.36mm 17W length 75mm width 9mm height 9mm 0 2 2 -Varistor -RV_Disc_D21.5mm_W4.9mm_P10mm -Varistor, diameter 21.5mm, width 4.9mm, pitch 10mm -varistor SIOV +Resistor_THT +R_Axial_Shunt_L22.2mm_W8.0mm_PS14.30mm_P25.40mm +Resistor, Axial_Shunt series, Box, pin pitch=25.4mm, 3W, length*width*height=22.2*8*8mm^3, shunt pin pitch = 14.30mm, http://www.vishay.com/docs/30217/cpsl.pdf +Resistor Axial_Shunt series Box pin pitch 25.4mm 3W length 22.2mm width 8mm height 8mm shunt pin pitch 14.30mm 0 -2 -2 -Varistor -RV_Disc_D21.5mm_W5.1mm_P10mm -Varistor, diameter 21.5mm, width 5.1mm, pitch 10mm -varistor SIOV +4 +4 +Resistor_THT +R_Axial_Shunt_L22.2mm_W9.5mm_PS14.30mm_P25.40mm +Resistor, Axial_Shunt series, Box, pin pitch=25.4mm, 5W, length*width*height=22.2*9.5*9.5mm^3, shunt pin pitch = 14.30mm, http://www.vishay.com/docs/30217/cpsl.pdf +Resistor Axial_Shunt series Box pin pitch 25.4mm 5W length 22.2mm width 9.5mm height 9.5mm shunt pin pitch 14.30mm 0 -2 -2 -Varistor -RV_Disc_D21.5mm_W5.3mm_P10mm -Varistor, diameter 21.5mm, width 5.3mm, pitch 10mm -varistor SIOV +4 +4 +Resistor_THT +R_Axial_Shunt_L35.3mm_W9.5mm_PS25.40mm_P38.10mm +Resistor, Axial_Shunt series, Box, pin pitch=38.1mm, 7W, length*width*height=35.3*9.5*9.5mm^3, shunt pin pitch = 25.40mm, http://www.vishay.com/docs/30217/cpsl.pdf +Resistor Axial_Shunt series Box pin pitch 38.1mm 7W length 35.3mm width 9.5mm height 9.5mm shunt pin pitch 25.40mm 0 -2 -2 -Varistor -RV_Disc_D21.5mm_W5.4mm_P10mm -Varistor, diameter 21.5mm, width 5.4mm, pitch 10mm -varistor SIOV +4 +4 +Resistor_THT +R_Axial_Shunt_L47.6mm_W9.5mm_PS34.93mm_P50.80mm +Resistor, Axial_Shunt series, Box, pin pitch=50.8mm, 10W, length*width*height=47.6*9.5*9.5mm^3, shunt pin pitch = 34.93mm, http://www.vishay.com/docs/30217/cpsl.pdf +Resistor Axial_Shunt series Box pin pitch 50.8mm 10W length 47.6mm width 9.5mm height 9.5mm shunt pin pitch 34.93mm 0 -2 -2 -Varistor -RV_Disc_D21.5mm_W5.6mm_P10mm -Varistor, diameter 21.5mm, width 5.6mm, pitch 10mm -varistor SIOV +4 +4 +Resistor_THT +R_Axial_Shunt_L47.6mm_W12.7mm_PS34.93mm_P50.80mm +Resistor, Axial_Shunt series, Box, pin pitch=50.8mm, 15W, length*width*height=47.6*12.7*12.7mm^3, shunt pin pitch = 34.93mm, http://www.vishay.com/docs/30217/cpsl.pdf +Resistor Axial_Shunt series Box pin pitch 50.8mm 15W length 47.6mm width 12.7mm height 12.7mm shunt pin pitch 34.93mm 0 -2 -2 -Varistor -RV_Disc_D21.5mm_W5.8mm_P10mm -Varistor, diameter 21.5mm, width 5.8mm, pitch 10mm -varistor SIOV +4 +4 +Resistor_THT +R_Bare_Metal_Element_L12.4mm_W4.8mm_P11.40mm +Resistor, Bare_Metal_Element series, Bare Metal Strip/Wire, Horizontal, pin pitch=11.4mm, 1W, length*width=12.4*4.8mm^2, https://www.bourns.com/pdfs/PWR4412-2S.pdf +Resistor Bare_Metal_Element series Bare Metal Strip Wire Horizontal pin pitch 11.4mm 1W length 12.4mm width 4.8mm 0 2 2 -Varistor -RV_Disc_D21.5mm_W5mm_P10mm -Varistor, diameter 21.5mm, width 5mm, pitch 10mm -varistor SIOV +Resistor_THT +R_Bare_Metal_Element_L16.3mm_W4.8mm_P15.30mm +Resistor, Bare_Metal_Element series, Bare Metal Strip/Wire, Horizontal, pin pitch=15.3mm, 3W, length*width=16.3*4.8mm^2, https://www.bourns.com/pdfs/PWR4412-2S.pdf +Resistor Bare_Metal_Element series Bare Metal Strip Wire Horizontal pin pitch 15.3mm 3W length 16.3mm width 4.8mm 0 2 2 -Varistor -RV_Disc_D21.5mm_W6.1mm_P7.5mm -varistor -varistor SIOV +Resistor_THT +R_Bare_Metal_Element_L21.3mm_W4.8mm_P20.30mm +Resistor, Bare_Metal_Element series, Bare Metal Strip/Wire, Horizontal, pin pitch=20.3mm, 5W, length*width=21.3*4.8mm^2, https://www.bourns.com/pdfs/PWR4412-2S.pdf +Resistor Bare_Metal_Element series Bare Metal Strip Wire Horizontal pin pitch 20.3mm 5W length 21.3mm width 4.8mm 0 2 2 -Varistor -RV_Disc_D21.5mm_W6.3mm_P10mm -Varistor, diameter 21.5mm, width 6.3mm, pitch 10mm -varistor SIOV +Resistor_THT +R_Box_L8.4mm_W2.5mm_P5.08mm +Resistor, Box series, Radial, pin pitch=5.08mm, 0.5W = 1/2W, length*width=8.38*2.54mm^2, http://www.vishay.com/docs/60051/cns020.pdf +Resistor Box series Radial pin pitch 5.08mm 0.5W = 1/2W length 8.38mm width 2.54mm 0 2 2 -Varistor -RV_Disc_D21.5mm_W6.5mm_P10mm -Varistor, diameter 21.5mm, width 6.5mm, pitch 10mm -varistor SIOV +Resistor_THT +R_Box_L13.0mm_W4.0mm_P9.00mm +Resistor, Box series, Radial, pin pitch=9.00mm, 2W, length*width=13.0*4.0mm^2, http://www.produktinfo.conrad.com/datenblaetter/425000-449999/443860-da-01-de-METALLBAND_WIDERSTAND_0_1_OHM_5W_5Pr.pdf +Resistor Box series Radial pin pitch 9.00mm 2W length 13.0mm width 4.0mm 0 2 2 -Varistor -RV_Disc_D21.5mm_W6.7mm_P10mm -Varistor, diameter 21.5mm, width 6.7mm, pitch 10mm -varistor SIOV +Resistor_THT +R_Box_L14.0mm_W5.0mm_P9.00mm +Resistor, Box series, Radial, pin pitch=9.00mm, 5W, length*width=14.0*5.0mm^2, http://www.produktinfo.conrad.com/datenblaetter/425000-449999/443860-da-01-de-METALLBAND_WIDERSTAND_0_1_OHM_5W_5Pr.pdf +Resistor Box series Radial pin pitch 9.00mm 5W length 14.0mm width 5.0mm 0 2 2 -Varistor -RV_Disc_D21.5mm_W6.8mm_P10mm -Varistor, diameter 21.5mm, width 6.8mm, pitch 10mm -varistor SIOV +Resistor_THT +R_Box_L26.0mm_W5.0mm_P20.00mm +Resistor, Box series, Radial, pin pitch=20.00mm, 10W, length*width=26.0*5.0mm^2, http://www.produktinfo.conrad.com/datenblaetter/425000-449999/443860-da-01-de-METALLBAND_WIDERSTAND_0_1_OHM_5W_5Pr.pdf +Resistor Box series Radial pin pitch 20.00mm 10W length 26.0mm width 5.0mm 0 2 2 -Varistor -RV_Disc_D21.5mm_W7.1mm_P10mm -Varistor, diameter 21.5mm, width 7.1mm, pitch 10mm -varistor SIOV +Resistor_THT +R_Radial_Power_L7.0mm_W8.0mm_Px2.40mm_Py2.30mm +Resistor, Radial_Power series, Radial, pin pitch=2.40*2.30mm^2, 7W, length*width=7*8mm^2, http://www.vitrohm.com/content/files/vitrohm_series_kv_-_201601.pdf +Resistor Radial_Power series Radial pin pitch 2.40*2.30mm^2 7W length 7mm width 8mm 0 2 2 -Varistor -RV_Disc_D21.5mm_W7.5mm_P10mm -Varistor, diameter 21.5mm, width 7.5mm, pitch 10mm -varistor SIOV +Resistor_THT +R_Radial_Power_L9.0mm_W10.0mm_Px2.70mm_Py2.30mm +Resistor, Radial_Power series, Radial, pin pitch=2.70*2.30mm^2, 17W, length*width=9*10mm^2, http://www.vitrohm.com/content/files/vitrohm_series_kv_-_201601.pdf +Resistor Radial_Power series Radial pin pitch 2.70*2.30mm^2 17W length 9mm width 10mm 0 2 2 -Varistor -RV_Disc_D21.5mm_W7.9mm_P10mm -Varistor, diameter 21.5mm, width 7.9mm, pitch 10mm -varistor SIOV +Resistor_THT +R_Radial_Power_L11.0mm_W7.0mm_P5.00mm +Resistor, Radial_Power series, Radial, pin pitch=5.00mm, 2W, length*width=11.0*7.0mm^2, http://www.vishay.com/docs/30218/cpcx.pdf +Resistor Radial_Power series Radial pin pitch 5.00mm 2W length 11.0mm width 7.0mm 0 2 2 -Varistor -RV_Disc_D21.5mm_W8.4mm_P10mm -Varistor, diameter 21.5mm, width 8.4mm, pitch 10mm -varistor SIOV +Resistor_THT +R_Radial_Power_L12.0mm_W8.0mm_P5.00mm +Resistor, Radial_Power series, Radial, pin pitch=5.00mm, 3W, length*width=12.0*8.0mm^2, http://www.vishay.com/docs/30218/cpcx.pdf +Resistor Radial_Power series Radial pin pitch 5.00mm 3W length 12.0mm width 8.0mm 0 2 2 -Varistor -RV_Disc_D21.5mm_W11.4mm_P10mm -Varistor, diameter 21.5mm, width 11.4mm, pitch 10mm -varistor SIOV +Resistor_THT +R_Radial_Power_L13.0mm_W9.0mm_P5.00mm +Resistor, Radial_Power series, Radial, pin pitch=5.00mm, 7W, length*width=13.0*9.0mm^2, http://www.vishay.com/docs/30218/cpcx.pdf +Resistor Radial_Power series Radial pin pitch 5.00mm 7W length 13.0mm width 9.0mm 0 2 2 -Varistor -RV_Rect_V25S440P_L26.5mm_W8.2mm_P12.7mm -Varistor, V25S440P, https://www.littelfuse.com/media?resourcetype=datasheets&itemid=b410c42c-51d1-460e-b1d9-d105d93c9679&filename=littelfuse-varistor-ultramov25s-datasheet -varistor +Resistor_THT +R_Radial_Power_L16.1mm_W9.0mm_P7.37mm +Resistor, Radial_Power series, Radial, pin pitch=7.37mm, 10W, length*width=16.1*9mm^2, http://www.vishay.com/docs/30218/cpcx.pdf +Resistor Radial_Power series Radial pin pitch 7.37mm 10W length 16.1mm width 9mm 0 2 2 diff --git a/PCB/megaPCB/megaPCB.kicad_pcb b/PCB/megaPCB/megaPCB.kicad_pcb index d878315..f19b782 100644 --- a/PCB/megaPCB/megaPCB.kicad_pcb +++ b/PCB/megaPCB/megaPCB.kicad_pcb @@ -52,7 +52,7 @@ (dielectric_constraints no) ) (pad_to_mask_clearance 0) - (aux_axis_origin 150 0) + (aux_axis_origin 80 160) (pcbplotparams (layerselection 0x00010fc_ffffffff) (plot_on_all_layers_selection 0x0000000_00000000) @@ -181,93 +181,93 @@ (footprint "ScitechKorea:Holder485" (layer "F.Cu") (tstamp 06b8186a-43b5-4999-bcb3-036088a6535b) - (at 125.91 133.8055 90) + (at 125.9 135 90) (property "Sheetfile" "megaPCB.kicad_sch") (property "Sheetname" "") (property "ki_description" "Half duplex RS-485/RS-422, 2.5 Mbps, ±15kV electro-static discharge (ESD) protection, no slew-rate, no low-power shutdown, with receiver/driver enable, 32 receiver drive kapacitity, DIP-8 and SOIC-8") (property "ki_keywords" "Half duplex RS-485/RS-422, 2.5 Mbps, ±15kV electro-static discharge (ESD) protection, no slew-rate, no low-power shutdown, with receiver/driver enable, 32 receiver drive kapacitity, DIP-8 and SOIC-8") (path "/2ac173ec-7ef0-4468-8119-008ccf594b03") (attr through_hole) - (fp_text reference "RS485_1" (at 4.3 -19.8 180 unlocked) (layer "F.SilkS") hide - (effects (font (size 1 1) (thickness 0.2) bold)) - (tstamp 293baad5-3465-42a6-bdbc-48b71aaaa1ec) + (fp_text reference "RS485_1" (at 10.72 2.32 90 unlocked) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15)) (justify right)) + (tstamp 6ac6e89e-8fd4-407f-b57c-c8693b7032ea) ) (fp_text value "MAX485E" (at 2.667 2.31 90 unlocked) (layer "F.Fab") hide (effects (font (size 1 1) (thickness 0.15))) - (tstamp 82aa89c8-4890-4aed-8328-ff212bf761ee) - ) - (fp_text user "DI DE RE RO" (at 3.8 -3.3 270 unlocked) (layer "F.SilkS") - (effects (font (size 1 1.02) (thickness 0.15)) (justify bottom)) - (tstamp 0e5c0ef7-b981-42ff-b8ab-c6972e9bc593) + (tstamp d87a0d92-f2c1-4f44-9187-e14c54e5342e) ) (fp_text user "GND" (at 8.88 -37.636 90 unlocked) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15)) (justify right bottom)) - (tstamp 11e38237-0507-4537-965e-a9c0c655dcfc) - ) - (fp_text user "A" (at 5.07 -41.7 90 unlocked) (layer "F.SilkS") - (effects (font (size 2 2) (thickness 0.2)) (justify bottom)) - (tstamp 3d1d4345-93d5-46eb-b749-85875aab7f73) + (tstamp 10797fae-3c42-48a1-9f54-6130c92696b9) ) (fp_text user "VCC" (at -1.28 -37.636 90 unlocked) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15)) (justify left bottom)) - (tstamp 7d78ac58-7d0d-4ff9-b1b8-8f95801a6c8d) + (tstamp 37d08540-917e-40cc-8471-0a7bada10167) + ) + (fp_text user "A" (at 5.07 -44.23 270 unlocked) (layer "F.SilkS") + (effects (font (size 2 2) (thickness 0.2)) (justify bottom)) + (tstamp 6d846d95-a598-471b-9333-77998a4400a7) + ) + (fp_text user "DI DE RE RO" (at 3.8 -3.3 270 unlocked) (layer "F.SilkS") + (effects (font (size 1 1.02) (thickness 0.15)) (justify bottom)) + (tstamp 94464fcf-3c3b-454c-bb8b-f2ebf1823a87) ) - (fp_text user "B" (at 2.53 -41.7 90 unlocked) (layer "F.SilkS") + (fp_text user "B" (at 2.53 -44.23 270 unlocked) (layer "F.SilkS") (effects (font (size 2 2) (thickness 0.2)) (justify bottom)) - (tstamp b9e0f77d-0c7a-4505-8c7d-2f69b9b4b430) + (tstamp e584c628-8ab6-41cb-8798-70e06a43cb88) ) (fp_text user "${REFERENCE}" (at 2.794 3.81 90 unlocked) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) - (tstamp 08813d7f-29e2-48ef-be7a-a3c75503518e) + (tstamp ca61e22e-8a30-417d-88a7-87c0eebf9b47) ) (fp_line (start -3.054 -41.73) (end 10.653 -41.73) - (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 068da2bf-d900-44a4-a867-88fe8beb8441)) - (fp_line (start -3.048 1.27) (end -3.054 -41.73) - (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp f180a109-c0c7-4d6c-8fdb-f442a0d57d7f)) + (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 69cb5632-13c5-4e4f-89e3-3b3c3c819f27)) + (fp_line (start -3.05 1.27) (end -3.05 -41.73) + (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 863ad973-4dd0-45c5-8852-436476c6e669)) (fp_line (start -1.28 -39.16) (end -1.28 -41.73) - (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp d986e1dc-fb2f-432c-8b55-215c32905618)) + (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp cd54798c-79f5-4b54-928f-729ac18584d0)) (fp_line (start -1.27 1.27) (end -1.27 -1.27) - (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 1784e480-d4c5-4f5b-97a1-80bdf0f03204)) + (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp b0d08911-8c2a-49ef-8a19-8e40e3cdfb75)) (fp_line (start 1.26 -44.24) (end 6.34 -44.24) - (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 55a9ca7e-3601-4119-8ed8-8db6484fcdc6)) + (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 067a1e34-ccb8-4930-a745-5bca7ba9d1cc)) (fp_line (start 1.26 -41.72) (end 1.26 -44.24) - (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 68c41845-e095-42bb-b786-13e8b9679693)) + (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp ea4c6478-0444-4160-b342-97529769ce95)) (fp_line (start 3.7955 -41.72) (end 3.8 -44.24) - (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp f42fbe88-7c4c-44e2-9d9f-ce82d3de4cc6)) + (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 728e21f7-0bd5-4b68-8254-7e9ba20f3585)) (fp_line (start 6.34 -44.24) (end 6.34 -41.72) - (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 01a74c31-aad1-481a-a3b0-2bcb88551322)) + (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp af17f460-aea8-4ecb-8c45-73f46f4ca200)) (fp_line (start 8.88 -39.16) (end -1.28 -39.16) - (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 988e4d9d-7207-4085-8468-3d02ec1f7a1a)) + (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 29458f88-1425-46a8-aba0-197439664db6)) (fp_line (start 8.88 -39.16) (end 8.88 -41.73) - (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 4cd06ac8-4f2a-4d4f-a2c1-77b8f7fa1d1a)) + (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp d2b80e76-8537-4ddb-a993-e89bd501685f)) (fp_line (start 8.89 -1.27) (end -1.27 -1.27) - (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 491a4d9a-11d7-4b04-9bf9-a55dfd25f93f)) + (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 9377a710-6b02-43be-b46b-92adda1edc9d)) (fp_line (start 8.89 1.27) (end 8.89 -1.27) - (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp f59d259b-f90d-47d9-a77b-fff4b92b4f81)) - (fp_line (start 10.653 -41.73) (end 10.659 1.27) - (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 55ea67af-cb6c-4427-a5fb-e6f9fc1aac81)) + (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 98f20bea-15d7-4d1e-93d3-e0dd04c79a92)) + (fp_line (start 10.65 -41.73) (end 10.65 1.27) + (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp e7852b5b-f429-4668-bc09-d86e65029436)) (fp_line (start 10.659 1.27) (end -3.048 1.27) - (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp a73d6e0b-53d0-4d15-a17c-bcc0f1c85855)) + (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 34116a68-a10c-45fa-a67b-0bbd105b2b05)) (fp_rect (start -1.28 -41.7) (end 8.88 -39.16) - (stroke (width 0.05) (type default)) (fill none) (layer "F.CrtYd") (tstamp 9a3b4e8b-5047-433c-8ccd-92bab2a60c69)) + (stroke (width 0.05) (type default)) (fill none) (layer "F.CrtYd") (tstamp e3165849-2dcb-4951-84d2-a4f5c63d3b78)) (fp_rect (start -1.27 -1.27) (end 8.89 1.27) - (stroke (width 0.05) (type default)) (fill none) (layer "F.CrtYd") (tstamp ff358255-2f4b-4428-8795-091109b7a046)) + (stroke (width 0.05) (type default)) (fill none) (layer "F.CrtYd") (tstamp a2a78811-89c8-4633-88f5-ba7188de4149)) (pad "1" thru_hole circle (at 0 0 90) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 3 "RX1") (pinfunction "RO") (pintype "output") (tstamp 31028ae8-2a35-4682-a4a4-342a7aa5604e)) + (net 3 "RX1") (pinfunction "RO") (pintype "output") (tstamp d4f2e541-bf92-449b-94c0-aef6491a63b5)) (pad "2" thru_hole circle (at 2.54 0 90) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 2 "EN_485_1") (pinfunction "~{RE}") (pintype "input") (tstamp 5cec6865-c236-43f3-bfc6-1f11f821e571)) + (net 2 "EN_485_1") (pinfunction "~{RE}") (pintype "input") (tstamp 6e7e9765-1c2d-4c99-be1a-b18a2a9bded5)) (pad "3" thru_hole circle (at 5.08 0 90) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 2 "EN_485_1") (pinfunction "DE") (pintype "input") (tstamp fddeb5c6-9457-4be5-b56f-cd10237a3b26)) + (net 2 "EN_485_1") (pinfunction "DE") (pintype "input") (tstamp f7805eb8-bcf4-42a9-bda6-d90e80c3085b)) (pad "4" thru_hole circle (at 7.62 0 90) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 1 "TX1") (pinfunction "DI") (pintype "input") (tstamp b764d94d-1f63-46d1-a9da-54789956e38f)) + (net 1 "TX1") (pinfunction "DI") (pintype "input") (tstamp aef38226-8995-4f72-9487-e1567ba3b77a)) (pad "5" thru_hole rect (at 7.62 -40.4 90) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 23 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 9cd7980c-9936-4e0f-a963-2dcbbefff73b)) + (net 23 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 96fbceee-83aa-4083-ac32-5c2138e45f74)) (pad "6" thru_hole circle (at 5.08 -40.4 90) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 55 "unconnected-(RS485_1-A-Pad6)") (pinfunction "A") (pintype "bidirectional") (tstamp 4be39e82-fefd-4425-b8de-45f0b0e7d30b)) + (net 55 "unconnected-(RS485_1-A-Pad6)") (pinfunction "A") (pintype "bidirectional") (tstamp 62d91d45-8dfb-44c7-8e45-0b245b823980)) (pad "7" thru_hole circle (at 2.54 -40.4 90) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 56 "unconnected-(RS485_1-B-Pad7)") (pinfunction "B") (pintype "bidirectional") (tstamp 79fcb5a8-b7d9-454f-8371-a4d074a5b1d3)) + (net 56 "unconnected-(RS485_1-B-Pad7)") (pinfunction "B") (pintype "bidirectional") (tstamp e127ec28-dfb9-493f-ab5f-98e88ddc4be5)) (pad "8" thru_hole circle (at 0 -40.4 90) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 48 "5V") (pinfunction "VCC") (pintype "power_in") (tstamp b50bd672-7064-4083-9ea5-7374c0596589)) + (net 48 "5V") (pinfunction "VCC") (pintype "power_in") (tstamp 2013d12c-ebae-49cd-aa4c-a5e85302fe17)) ) (footprint "TestPoint:TestPoint_THTPad_D1.5mm_Drill0.7mm" (layer "F.Cu") @@ -300,7 +300,7 @@ (net 22 "AREF") (pinfunction "1") (pintype "passive") (tstamp 4f3888bd-f415-4b7e-921d-b598e52dfd07)) ) - (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (layer "F.Cu") + (footprint "ScitechKorea:R250" (layer "F.Cu") (tstamp 3a7b85e2-c4d8-4de3-aaa6-0cfd9de10154) (at 109.98571 117.51 90) (descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf") @@ -311,54 +311,54 @@ (property "ki_keywords" "R res resistor") (path "/d117fd85-afa4-42d5-8b45-c1a5c1e46c1d") (attr through_hole) - (fp_text reference "R13" (at -2.72 -0.02 90) (layer "F.SilkS") + (fp_text reference "R13" (at 3.8 0 90) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) - (tstamp 2b1e2ac2-ead8-4235-8b0f-5a68741b2fae) + (tstamp d7f8f8ad-e1b4-4697-bba9-08cb36989c98) ) - (fp_text value "R" (at 3.81 1.92 90) (layer "F.Fab") hide + (fp_text value "R" (at 3.81 1.92 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) - (tstamp 5e7e4ae7-c69e-465b-8061-a6834d83aa25) + (tstamp 73c1a9c4-4ed9-4cff-b9a8-25588893f1c4) ) (fp_text user "${REFERENCE}" (at 3.81 0 90) (layer "F.Fab") (effects (font (size 0.72 0.72) (thickness 0.108))) - (tstamp 4aeb2b24-f79d-46dd-8cf7-9184ab357083) + (tstamp 39dc4371-04a6-4747-9cd8-f74928a6f487) ) (fp_line (start 0.94 0) (end 1.89 0) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7fea5f04-f16d-4fb7-bc0e-8f8a25f9a1ab)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3aa41966-eb44-4dd7-abe9-c9540eb16b49)) (fp_line (start 1.89 -0.92) (end 1.89 0.92) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e5d4ed64-a96a-4e16-bb71-86a41a9948c7)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 84c838e3-ab90-4f2a-8f28-3cec5650e9cd)) (fp_line (start 1.89 0.92) (end 5.73 0.92) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 94db0aed-d119-42af-857b-a8d3edb9b1b0)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 86a26d42-1f29-4603-a35d-de6826644aa7)) (fp_line (start 5.73 -0.92) (end 1.89 -0.92) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1023d048-7439-4b26-b7dd-09d985f23c03)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 30d9f688-505d-4295-bd10-c29ebaf672b6)) (fp_line (start 5.73 0.92) (end 5.73 -0.92) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b363f109-8c47-49b3-9b67-808d70b5a001)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 00d4ff4a-2f40-447e-a42e-e72a5013bf9f)) (fp_line (start 6.68 0) (end 5.73 0) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f06d14fe-e6ea-4f5a-b73b-4ef22100287f)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 739a0c16-cd29-4e9d-a8a2-2d9cad755e76)) (fp_line (start -0.95 -1.05) (end -0.95 1.05) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a77a8b96-38fc-4327-a197-363c0cfebfb7)) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8ce97f04-5085-42a0-ac6e-dbd3379f2a9e)) (fp_line (start -0.95 1.05) (end 8.57 1.05) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c5beeff1-51fa-4e52-b9e8-6796e5296b11)) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 66c62652-f660-4cac-9dab-2e722fe7c3c9)) (fp_line (start 8.57 -1.05) (end -0.95 -1.05) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp dc91a47a-993e-44fa-a6dd-ce5405e10c0e)) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 506a2eff-1119-4181-bff7-b31009a40b4e)) (fp_line (start 8.57 1.05) (end 8.57 -1.05) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 856761db-f869-42a0-baf8-28234308e512)) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e2891ed7-175d-4a76-ba41-8cb155b741b0)) (fp_line (start 0 0) (end 2.01 0) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a972bcfd-f445-4d04-b234-38d4cf2c98a3)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5beaddd4-fa64-4202-8207-6f673c8e6ff4)) (fp_line (start 2.01 -0.8) (end 2.01 0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 57b753b2-6d5a-4621-ada1-96602107bdbc)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cb857a20-859a-4665-bed1-59169e283375)) (fp_line (start 2.01 0.8) (end 5.61 0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4fe4c656-b9f6-45a5-8447-7b3c3cd670db)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp af3027e7-6e7a-4ff8-97a5-46c8e7033f5f)) (fp_line (start 5.61 -0.8) (end 2.01 -0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b98bfc54-e785-4e82-a7e5-363733a11c21)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c1daf26e-4900-4396-b969-62f1fc18a467)) (fp_line (start 5.61 0.8) (end 5.61 -0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ffe81ff6-8468-4587-ac7e-a6ed265db2b3)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 14119e7e-0032-403d-afcf-b40706c94cb0)) (fp_line (start 7.62 0) (end 5.61 0) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b4e6c054-b0dc-48da-a985-765575d5c6cc)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c688d733-c0a4-4b76-99bc-89e2c7145705)) (pad "1" thru_hole circle (at 0 0 90) (size 1.4 1.4) (drill 0.7) (layers "*.Cu" "*.Mask") - (net 18 "A13") (pintype "passive") (tstamp 212ea12d-594d-42d5-92e6-4f041f335aeb)) + (net 18 "A13") (pintype "passive") (tstamp 0c536dd5-82dc-4f34-a751-7958e682ba99)) (pad "2" thru_hole rect (at 7.62 0 90) (size 1.4 1.4) (drill 0.7) (layers "*.Cu" "*.Mask") - (net 23 "GND") (pintype "passive") (tstamp e30ac257-f7bf-4497-85a3-1da8621bee0b)) + (net 23 "GND") (pintype "passive") (tstamp 42131f8a-d2d2-4977-837b-ce042ed2690c)) (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) @@ -366,7 +366,7 @@ ) ) - (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (layer "F.Cu") + (footprint "ScitechKorea:R250" (layer "F.Cu") (tstamp 3f2fe4b7-a33a-4732-8a06-d61eaee57756) (at 106.868568 117.51 90) (descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf") @@ -377,54 +377,54 @@ (property "ki_keywords" "R res resistor") (path "/5e817548-f6a3-4e3a-ad3e-0f7dcb93feda") (attr through_hole) - (fp_text reference "R12" (at -2.72 -0.02 90) (layer "F.SilkS") + (fp_text reference "R12" (at 3.8 0 90) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) - (tstamp b4341af9-44f0-46c8-bc96-a19636f8b8e3) + (tstamp a43bead1-2944-4980-a1b7-17a9d12dc959) ) - (fp_text value "R" (at 3.81 1.92 90) (layer "F.Fab") hide + (fp_text value "R" (at 3.81 1.92 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) - (tstamp bd13903c-9202-462d-9cc7-850066f0bf5e) + (tstamp d02c2f33-d3d1-4748-aef1-84fa9cfe1530) ) (fp_text user "${REFERENCE}" (at 3.81 0 90) (layer "F.Fab") (effects (font (size 0.72 0.72) (thickness 0.108))) - (tstamp ca716c0f-000d-432c-b59a-2aa957bf7389) + (tstamp db86c0ae-c341-46ac-b79b-7b4fda982257) ) (fp_line (start 0.94 0) (end 1.89 0) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7acf2cdc-a100-4f5f-aceb-b95ad81b0196)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8dc64abe-1011-4d13-b855-7d2e048d7991)) (fp_line (start 1.89 -0.92) (end 1.89 0.92) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a34c4e8f-1530-406a-bbdb-beafad26a1a7)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp aa2f0431-e3ad-4184-b6ae-20f0451c779a)) (fp_line (start 1.89 0.92) (end 5.73 0.92) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e7a859df-3003-4f5b-80fb-04b6afa58d34)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 35284f20-e148-42ba-bdb9-956e1c44d0c5)) (fp_line (start 5.73 -0.92) (end 1.89 -0.92) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6ab464a5-617f-4e43-8252-7b49ba594b7b)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a02bbcdf-c71b-4b89-bb27-65050131fcac)) (fp_line (start 5.73 0.92) (end 5.73 -0.92) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 226c2f29-e432-45bd-9012-61de2211f4aa)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d62af57b-b9f9-4e53-b635-9577545c8dd1)) (fp_line (start 6.68 0) (end 5.73 0) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp eaba9c97-4fd4-45ca-8635-58c29bda36e2)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0134e8b0-22f0-42d6-b513-9ff57cf4cbf0)) (fp_line (start -0.95 -1.05) (end -0.95 1.05) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1a21d946-97b1-47d3-8ec6-0f0eb524c42c)) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7dceb3f7-47e0-404e-86e2-387f34b24d05)) (fp_line (start -0.95 1.05) (end 8.57 1.05) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp dce6102c-9f2c-4c96-bdd6-8c6e5607a35e)) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 004cf4dd-1745-49a8-ac47-aa3d744ef0cf)) (fp_line (start 8.57 -1.05) (end -0.95 -1.05) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 38ec9bfc-0cce-4142-94bf-570f8da06f08)) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0be5615d-b245-4fe6-a91f-87f1c1bf2d09)) (fp_line (start 8.57 1.05) (end 8.57 -1.05) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 242b433b-eb39-4b45-ae97-d4e52bbd1c81)) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5bd8720d-8c5a-4f6d-9f52-851c6ec93a78)) (fp_line (start 0 0) (end 2.01 0) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d41da8c6-866c-4397-8269-cfdf9ea0ca74)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6d323178-4afb-4e40-b5e5-b5ca37d86053)) (fp_line (start 2.01 -0.8) (end 2.01 0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 38ad9bbd-eff8-44f7-84b8-803e2774062a)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 18993b01-a7c2-4aa6-bf17-e141b46d3493)) (fp_line (start 2.01 0.8) (end 5.61 0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3cb5e420-090b-4b4c-bba0-0babc235c83d)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 19c75edb-344e-4329-a809-6eb4324771cb)) (fp_line (start 5.61 -0.8) (end 2.01 -0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b3e0738f-d48f-4c0a-bb0c-44a59b696e7e)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2cded02c-5b68-4f15-9259-a3fbbb81bba5)) (fp_line (start 5.61 0.8) (end 5.61 -0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4fddff01-8f43-450a-87c3-e008fdb4b998)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 72851418-7f6f-463d-beb8-773b2f2c640f)) (fp_line (start 7.62 0) (end 5.61 0) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp caf20746-0d93-468c-97e3-c4da301c0c50)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 59750590-15bc-4d3f-b1ae-b2e2c3f87924)) (pad "1" thru_hole circle (at 0 0 90) (size 1.4 1.4) (drill 0.7) (layers "*.Cu" "*.Mask") - (net 17 "A12") (pintype "passive") (tstamp a75855b6-f462-4589-a968-6d5025d0b248)) + (net 17 "A12") (pintype "passive") (tstamp a6fce617-2f97-48f0-a7ac-0a646cc0578e)) (pad "2" thru_hole rect (at 7.62 0 90) (size 1.4 1.4) (drill 0.7) (layers "*.Cu" "*.Mask") - (net 23 "GND") (pintype "passive") (tstamp d329e5e2-f4b3-441a-8991-947452abc779)) + (net 23 "GND") (pintype "passive") (tstamp 9b23c2e3-af42-41d6-9a6c-6b9ee8fb265d)) (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) @@ -461,132 +461,132 @@ (footprint "ScitechKorea:Terminal_02" (layer "F.Cu") (tstamp 51a1b6b6-63ff-4a55-a85b-0440fbe43341) - (at 83.73 101.49 -90) + (at 83.71 101.08 -90) (property "Sheetfile" "megaPCB.kicad_sch") (property "Sheetname" "") (property "ki_description" "Generic screw terminal, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)") (property "ki_keywords" "screw terminal") (path "/7f5af52b-bfa3-4e99-94d4-de783a90acaa") (attr through_hole) - (fp_text reference "RS232_1" (at 1.75 -7.08 -90 unlocked) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.2) bold)) - (tstamp 64d4e490-3d3f-47ba-8cd7-669a9f6599cc) + (fp_text reference "RS232_1" (at -1.8 -7.1 -90 unlocked) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15)) (justify left)) + (tstamp 14831a3e-e4b4-4ebc-a307-6f6f5587a645) ) (fp_text value "Screw_Terminal_01x02" (at -6.8 2.7 -90 unlocked) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) - (tstamp 1796e84b-e718-4a0d-8538-52eb6cfa55e2) + (tstamp 4f2962dc-3cbc-4c02-8733-9b871198862c) ) (fp_text user "${REFERENCE}" (at 3.1 6.5 -90 unlocked) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) - (tstamp 3e096219-af7d-4c21-ae9d-a99fa4a57c38) + (tstamp 38302783-e356-4f0f-929d-89bbe140414f) ) - (fp_text user "${REFERENCE}" (at 3.3 4.7 90) (layer "F.Fab") + (fp_text user "${REFERENCE}" (at 3.3 4.7 -90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) - (tstamp 83987a34-c678-43ca-9353-5a99d326cd88) + (tstamp 94c5365b-7d06-485a-b546-f481c916ddac) ) (fp_line (start -1.85 -6.125) (end 5.15 -6.125) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2c6e9942-46c6-4263-bc2d-5c40d19cfd35)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9781347c-7afa-4b83-96c4-dc933f5f773b)) (fp_line (start -1.85 -3.5) (end -1.85 -6.125) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3dbee624-7845-4082-b16b-a5c83b2b50dc)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3cd207f3-e4fe-4b7a-8dca-f788060efe07)) (fp_line (start -1.85 -3.5) (end -1.85 3.5) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0e2c76f6-33c2-4540-96c8-ee4e492fb023)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e525bcf8-6842-40f2-addd-42ece66c3b0c)) (fp_line (start -1.85 -3.5) (end 5.15 -3.5) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6c269400-2d34-424a-a5e0-79958eeb822c)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e1573b7f-163f-47a6-a58f-e5e0ce407543)) (fp_line (start -1.85 3.5) (end 5.15 3.5) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ff40b230-6523-42f6-b3c7-741c75e4cb7c)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp da55bec6-9288-43a1-9480-cfacd8639c90)) (fp_line (start -0.975 2.625) (end 0.775 2.625) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5a68b35f-9e0f-4386-80cb-005994af4d3e)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4e4ca717-436b-400a-bca8-68af651e5c39)) (fp_line (start -0.975 3.5) (end -0.975 2.625) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7693ebd7-76a7-4a9f-bd75-1b7e6e688a03)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b4552df9-d825-44ec-a870-c8a241539b27)) (fp_line (start 0.775 2.625) (end 0.775 3.5) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c663f4f0-86a0-4bc5-ab0f-9a4d71bd44e2)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f47b2070-1217-44de-a478-e193447f990c)) (fp_line (start 1.65 -6.125) (end 1.65 3.5) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fddefc5f-a0cc-4201-85e1-89ed11931380)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3f4ad1fd-6569-41ce-a83b-17c30b72017d)) (fp_line (start 2.525 2.625) (end 4.275 2.625) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 09285279-e8df-4f70-b4a3-8eabc60abb98)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d2fa3348-2a7b-44a6-a855-e93503257c89)) (fp_line (start 2.525 3.5) (end 2.525 2.625) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b8b14c22-7cf2-4317-9852-01f5e6f249d6)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp aa649f98-8715-40e1-b2d6-9cfe56a2bea5)) (fp_line (start 4.275 2.625) (end 4.275 3.5) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1d14e4ac-e68e-4c09-ae51-baf611bcfeb1)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f17db96e-e042-4c55-8705-32f6dd38857c)) (fp_line (start 5.15 -6.125) (end 5.15 3.5) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3798b6ad-0646-43ff-b14e-562e816f6ee0)) - (fp_circle (center -0.1016 -0.0056) (end 1.4534 -0.0056) - (stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp 8f652861-b031-4262-b49e-7a4a4ca49ad5)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2f5cc02b-b3ba-4d72-87b2-e91bc62e4070)) + (fp_circle (center -0.100727 -0.00014) (end 1.454273 -0.00014) + (stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp cf339392-b2c6-4dec-a039-795b01561a94)) (fp_circle (center 3.4 0) (end 4.955 0) - (stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp 0e7fee7d-0cb6-4e75-a1a5-9b6e6190c67d)) + (stroke (width 0.12) (type solid)) (fill none) (layer "F.SilkS") (tstamp 9ae07d3b-61af-4273-a02c-e5da59bb6b0f)) (fp_line (start -1.95 -3.6) (end -1.95 3.6) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e58520bc-3b92-49f5-a96b-2b9ae53aab23)) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a1281e0b-70bb-4145-b852-838118bbe330)) (fp_line (start -1.95 3.6) (end 5.25 3.6) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b081c691-6fd7-4096-8efc-51abceaf912c)) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b7c971e4-0c82-4796-a13f-b82804b82c29)) (fp_line (start 5.25 -3.6) (end -1.95 -3.6) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c1bc2804-19ca-4ab8-9a73-896b89b68146)) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b1aa588f-9fcf-48cf-b6fa-9ee31412aad5)) (fp_line (start 5.25 3.6) (end 5.25 -3.6) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3f7989c2-db97-409a-b7e8-88fa8529aea0)) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 92ca1441-b1a6-4fe8-9616-c0a623111748)) (fp_line (start -1.8 -3.4) (end 5.1 -3.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 115bae70-5bbf-4fed-a96e-1c1bbce9ff14)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5f398871-f719-423f-a8a1-cb57e6131e50)) (fp_line (start -1.8 3.4) (end -1.8 -3.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a4d6046a-b06e-4505-9e3e-bb217fc51a49)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 38fe3a78-0e9b-49cd-9ca1-0bd6ad07568b)) (fp_line (start -1.8 3.4) (end 5.1 3.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7b2adf23-961e-430f-ae89-b7e4755d4beb)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a3d57758-ef73-416b-8b1b-f7a9e9368161)) (fp_line (start -1.2 -0.069) (end -0.169 -0.069) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 79c8bea6-d278-4e03-80b4-4540b2dd7aa8)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8d99b24f-d687-45eb-b332-474cc2a37544)) (fp_line (start -1.2 0.069) (end -1.2 -0.069) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9c9613e6-c828-4022-a522-9b310615bc10)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 25e17a9a-d8fa-4587-b0dc-5909cb6140ee)) (fp_line (start -0.169 -1.1) (end -0.031 -1.1) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 47caf6a0-74a6-4470-873a-2aae924302d6)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 162924e2-fc61-4618-8048-3e40b8ec8ed2)) (fp_line (start -0.169 -0.069) (end -0.169 -1.1) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 87a901a9-6dbd-4185-93ea-2a192bf2833c)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b791e91b-ad55-495a-8094-0927406fae62)) (fp_line (start -0.169 0.069) (end -1.2 0.069) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3609447d-8592-4649-9794-5990e7e8f063)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f3f6ad00-10e2-4021-aa67-6b5b9dc0264b)) (fp_line (start -0.169 1.1) (end -0.169 0.069) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8f1fde72-b2d6-45f4-8784-eeacd0569033)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c4fa715e-122c-4133-b3fa-f4020f616bed)) (fp_line (start -0.031 -1.1) (end -0.031 -0.069) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cf64b5ec-f57f-4018-a6ac-2830c65852c1)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ff949fc8-f576-41ad-a7b3-7e09e0498149)) (fp_line (start -0.031 -0.069) (end 1 -0.069) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 44772077-ddf7-4662-b50d-840b27e92aee)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c6208c4e-3917-4db6-98c4-4aa0ca70c3b6)) (fp_line (start -0.031 0.069) (end -0.031 1.1) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cef42df7-dc5f-4521-99ca-75902dbb76ee)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d7e7fe20-4197-4517-9b89-7fbaf5cc8bf2)) (fp_line (start -0.031 1.1) (end -0.169 1.1) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f18c78ed-9668-4169-b938-e1c68972a74c)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f52ce11f-aaa3-4f42-bdf6-515f574909cc)) (fp_line (start 1 -0.069) (end 1 0.069) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5105bd32-d6b9-4030-bf2b-c037f4f7328e)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 162a2be9-f869-4d5c-b773-6d9eacd48e80)) (fp_line (start 1 0.069) (end -0.031 0.069) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9590567b-30d6-4840-b26b-9bfd7db468c3)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e104f85b-e272-41dc-b88d-e9507f6e1bf6)) (fp_line (start 2.3 -0.069) (end 3.331 -0.069) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ee7e7b3c-a918-4a87-a5a2-95d9e5f7fa97)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6b3d75a9-396e-44cb-95e0-acb13a4698e6)) (fp_line (start 2.3 0.069) (end 2.3 -0.069) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3f1c7fb9-4f48-4d16-918b-c2a32d4df3a9)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 16874f70-492d-4705-a4ca-1056e0c22943)) (fp_line (start 3.331 -1.1) (end 3.469 -1.1) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d6d820aa-c5e6-4d8c-aa81-ff67f263941a)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 758b48f0-25cd-4163-b5d9-76829adecf6f)) (fp_line (start 3.331 -0.069) (end 3.331 -1.1) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7ba8c6f5-3d1e-48cf-8d19-0ea3496eceb3)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 13adef80-ec32-4593-91b2-d6b9f1f31842)) (fp_line (start 3.331 0.069) (end 2.3 0.069) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a31b4115-f46d-4451-9f66-8cd436400c03)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a83c6494-4d49-4b58-b659-ef5ab99c3ff5)) (fp_line (start 3.331 1.1) (end 3.331 0.069) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 942ce2ba-b091-47b8-9404-1f5cec0f11a7)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f6bad18b-7aee-4748-a2c0-6d9fb6412254)) (fp_line (start 3.469 -1.1) (end 3.469 -0.069) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 43a6d603-2754-40eb-82ab-9026ac9cdc3b)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 59e8b8d7-9384-403a-a501-a08940d45418)) (fp_line (start 3.469 -0.069) (end 4.5 -0.069) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f0ef9e95-1c34-4c82-88d2-b455c81599ef)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 70e9cde8-0e7a-40ef-a0d4-4f43cb50af6e)) (fp_line (start 3.469 0.069) (end 3.469 1.1) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f15a597a-95e5-4b25-9cb7-f74ceda2c366)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 302b2db6-daa8-48aa-96c9-05d5dda1486d)) (fp_line (start 3.469 1.1) (end 3.331 1.1) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 05be22df-15d0-4d25-b970-afb94960cc3c)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b3b98781-f1e6-4aaa-be70-6f5787896b2e)) (fp_line (start 4.5 -0.069) (end 4.5 0.069) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e05f108f-fcd4-48e5-9b30-4b754494e5c8)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c28bdc4a-a9cf-4e8a-ab56-8ed8a8fa69e6)) (fp_line (start 4.5 0.069) (end 3.469 0.069) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c48fd036-67be-456a-a7c6-76cd33299ca3)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4369ea1c-0c3c-42ea-ba4a-1b5d99c7a791)) (fp_circle (center -0.1 0) (end 1.275 0) - (stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp df164713-9a0c-491f-a588-db81ca09b17b)) + (stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 48c9dbad-641e-4fa8-b463-a95d2e240148)) (fp_circle (center 3.4 0) (end 4.775 0) - (stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 86fef2d6-d511-44fe-a47b-177f3a64b3e6)) + (stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 9ea8b849-eb65-4bb4-abdf-4f6802ae2673)) (pad "1" thru_hole circle (at -0.1 0 270) (size 2.4 2.4) (drill 1.2) (layers "*.Cu" "*.Mask") - (net 53 "RX3") (pinfunction "Pin_1") (pintype "passive") (tstamp b645936a-ecc2-49e1-b1dd-99114f93bf3a)) + (net 53 "RX3") (pinfunction "Pin_1") (pintype "passive") (tstamp 1413b0ef-6d82-4093-beaa-66620f59e7ea)) (pad "2" thru_hole circle (at 3.4 0 270) (size 2.4 2.4) (drill 1.2) (layers "*.Cu" "*.Mask") - (net 54 "TX3") (pinfunction "Pin_2") (pintype "passive") (tstamp ed5c196a-4a6b-4efe-838c-d63db5ed11ed)) + (net 54 "TX3") (pinfunction "Pin_2") (pintype "passive") (tstamp ac2fa784-17ad-4316-af8d-29670133a8e2)) ) - (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (layer "F.Cu") + (footprint "ScitechKorea:R250" (layer "F.Cu") (tstamp 5bd3a618-62db-4018-b12f-9828aa6d6366) (at 113.102852 117.51 90) (descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf") @@ -597,54 +597,54 @@ (property "ki_keywords" "R res resistor") (path "/36e13af8-3002-4975-beeb-95d3da35ac4b") (attr through_hole) - (fp_text reference "R14" (at -2.72 -0.02 90) (layer "F.SilkS") + (fp_text reference "R14" (at 3.8 0 90) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) - (tstamp 33ec5a34-8dd0-4011-a65a-7bb26a5adc43) + (tstamp 3d3fe252-5758-46b4-80c1-656701e8fb60) ) - (fp_text value "R" (at 3.81 1.92 90) (layer "F.Fab") hide + (fp_text value "R" (at 3.81 1.92 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) - (tstamp 9f357e54-11b8-4dfb-904b-bbb08a5999a7) + (tstamp c7b3e0de-13b7-4101-b0e5-b21c66ec4691) ) (fp_text user "${REFERENCE}" (at 3.81 0 90) (layer "F.Fab") (effects (font (size 0.72 0.72) (thickness 0.108))) - (tstamp f050dd86-f8d6-4e80-9582-4edb2e1e28e1) + (tstamp 695ca529-4675-4c12-9804-f48200e9b2f3) ) (fp_line (start 0.94 0) (end 1.89 0) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c45feb59-46ac-48f6-ad28-8c3e01b342eb)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8b53b4f2-75dd-4c8f-b6bc-6444f506dbfe)) (fp_line (start 1.89 -0.92) (end 1.89 0.92) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dd350101-c833-4732-a35c-4a2972f77bbe)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 107165ea-494f-4e24-9a54-cc6bfe0c1d26)) (fp_line (start 1.89 0.92) (end 5.73 0.92) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e21f7461-3423-4ecb-9b56-b529caa4859c)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 090d3c4d-f1c8-4542-90db-3a7b56a452ba)) (fp_line (start 5.73 -0.92) (end 1.89 -0.92) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bfae784a-9a61-4b3d-86b8-f8145bfd5fba)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e6f01095-f318-445f-a15d-689d2eaec0b2)) (fp_line (start 5.73 0.92) (end 5.73 -0.92) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b5e44fb3-8af4-4eed-bc1d-b0641faf0160)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 73df74e2-d1a7-4cd5-8e9e-3be56b1f8e9d)) (fp_line (start 6.68 0) (end 5.73 0) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 65c12622-32f6-4aef-aab6-a927c8accbad)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0a8ba6e1-b457-42e0-9e50-57be5763b9bb)) (fp_line (start -0.95 -1.05) (end -0.95 1.05) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 25bfbd8b-1976-444b-a406-8d01ff32cd16)) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a997e23f-2143-4596-bb1f-319cd65a3721)) (fp_line (start -0.95 1.05) (end 8.57 1.05) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d514203f-8250-4dc8-ac2d-52091006b75f)) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 58adea84-a25b-4d25-b7c4-0e33abb513fe)) (fp_line (start 8.57 -1.05) (end -0.95 -1.05) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8d8f9236-6ef3-480b-a31d-2a21dbba7a13)) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 01c78483-c810-4dd6-9e18-d9a54bff7090)) (fp_line (start 8.57 1.05) (end 8.57 -1.05) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e31cef22-991e-44df-af79-1a501964fa4e)) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fb0c0f52-8912-4aef-bb69-51577d5c8b00)) (fp_line (start 0 0) (end 2.01 0) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 66469c2e-27a4-412d-a405-7841d5f1789b)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0ee11c37-c38f-4182-8ef4-1e964e0fd3f2)) (fp_line (start 2.01 -0.8) (end 2.01 0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 899cebea-39fe-4f0e-b521-07d94da9ef6e)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bd5b38bf-75dc-46ac-ab11-5ea3c8d3136d)) (fp_line (start 2.01 0.8) (end 5.61 0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 88575761-d7dc-4df3-9bd5-ff71cad1d715)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b37aa7c3-5aa3-4807-83a0-0f6853fdbffd)) (fp_line (start 5.61 -0.8) (end 2.01 -0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b3b3285b-78ed-4561-8da8-ee349be83b1d)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 36435381-db6c-4df5-bf37-3693bbde71b3)) (fp_line (start 5.61 0.8) (end 5.61 -0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp aeaa3a45-075c-486f-8e3c-ed34ab9b7077)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp faf67847-54d6-4da0-a481-1d481fa7e855)) (fp_line (start 7.62 0) (end 5.61 0) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 05e906f2-1418-4060-b4f3-7375498d1e29)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp eebd324b-bd52-4df2-a8c7-86826821d8a3)) (pad "1" thru_hole circle (at 0 0 90) (size 1.4 1.4) (drill 0.7) (layers "*.Cu" "*.Mask") - (net 19 "A14") (pintype "passive") (tstamp 7bf4519f-82f7-4760-9492-07cce25f8632)) + (net 19 "A14") (pintype "passive") (tstamp d80fcf27-b51d-4143-bddb-6ccb2501d900)) (pad "2" thru_hole rect (at 7.62 0 90) (size 1.4 1.4) (drill 0.7) (layers "*.Cu" "*.Mask") - (net 23 "GND") (pintype "passive") (tstamp 72f00321-f62b-4b1f-b3c1-471a0e8638fb)) + (net 23 "GND") (pintype "passive") (tstamp 0e4abade-957c-4298-9a7e-ce2deb9f3c7d)) (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) @@ -654,96 +654,96 @@ (footprint "ScitechKorea:Holder485" (layer "F.Cu") (tstamp 6114c3a3-a7cd-4d15-a5a7-948cb0dbf118) - (at 125.91 118.8055 90) + (at 125.91 117.62 90) (property "Sheetfile" "megaPCB.kicad_sch") (property "Sheetname" "") (property "ki_description" "Half duplex RS-485/RS-422, 2.5 Mbps, ±15kV electro-static discharge (ESD) protection, no slew-rate, no low-power shutdown, with receiver/driver enable, 32 receiver drive kapacitity, DIP-8 and SOIC-8") (property "ki_keywords" "Half duplex RS-485/RS-422, 2.5 Mbps, ±15kV electro-static discharge (ESD) protection, no slew-rate, no low-power shutdown, with receiver/driver enable, 32 receiver drive kapacitity, DIP-8 and SOIC-8") (path "/7585fd5d-92bc-4ac2-9442-cf0c2875a877") (attr through_hole) - (fp_text reference "RS485_2" (at 4.3 -19.8 180 unlocked) (layer "F.SilkS") hide - (effects (font (size 1 1) (thickness 0.2) bold)) - (tstamp 6781e333-a078-439b-97c3-262a2801506c) + (fp_text reference "RS485_2" (at 10.72 2.32 90 unlocked) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15)) (justify right)) + (tstamp 19679de1-3024-4238-aea0-aafc33a9b7cf) ) (fp_text value "MAX485E" (at 2.667 2.31 90 unlocked) (layer "F.Fab") hide (effects (font (size 1 1) (thickness 0.15))) - (tstamp 6dfeacec-3b45-41ee-a1de-4a4bfed1cb76) + (tstamp dd87c6bc-1faf-4f56-9af2-98f8029091cd) ) (fp_text user "VCC" (at -1.28 -37.636 90 unlocked) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15)) (justify left bottom)) - (tstamp 1a79d730-7225-4a2e-b15f-5045baa8750c) + (tstamp 2836fa1e-f96a-4736-a1c2-d29716a058de) ) - (fp_text user "GND" (at 8.88 -37.636 90 unlocked) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15)) (justify right bottom)) - (tstamp 79dd4ece-729c-41fc-9f8b-d12d8c06dcc0) + (fp_text user "DI DE RE RO" (at 3.8 -3.3 270 unlocked) (layer "F.SilkS") + (effects (font (size 1 1.02) (thickness 0.15)) (justify bottom)) + (tstamp af06a787-191f-463e-9ba1-7754f2e70a85) ) - (fp_text user "B" (at 2.53 -41.7 90 unlocked) (layer "F.SilkS") + (fp_text user "A" (at 5.07 -44.23 270 unlocked) (layer "F.SilkS") (effects (font (size 2 2) (thickness 0.2)) (justify bottom)) - (tstamp a3dea8ea-baaa-4fef-ad91-a41346bbc7be) + (tstamp b1f86041-021e-469d-80f2-d74c972fc145) ) - (fp_text user "A" (at 5.07 -41.7 90 unlocked) (layer "F.SilkS") + (fp_text user "B" (at 2.53 -44.23 270 unlocked) (layer "F.SilkS") (effects (font (size 2 2) (thickness 0.2)) (justify bottom)) - (tstamp efe7a693-3b45-41e9-98bf-efea6d43571c) + (tstamp cae3ca3e-b12b-4450-a3fc-580ada87ed71) ) - (fp_text user "DI DE RE RO" (at 3.8 -3.3 270 unlocked) (layer "F.SilkS") - (effects (font (size 1 1.02) (thickness 0.15)) (justify bottom)) - (tstamp fe01d3c6-35a5-41f4-a8e2-1e1905ee4ca8) + (fp_text user "GND" (at 8.88 -37.636 90 unlocked) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15)) (justify right bottom)) + (tstamp f9ca39c6-06ee-4eb2-96f7-e578231c7b27) ) (fp_text user "${REFERENCE}" (at 2.794 3.81 90 unlocked) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) - (tstamp 58948118-6fb1-4a46-9fdd-6a35cd00e1ef) + (tstamp 48985b62-ae44-4ac2-8f8f-ff1854aa845c) ) (fp_line (start -3.054 -41.73) (end 10.653 -41.73) - (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp e41dad05-4a65-4031-ae19-3e140d805ff1)) - (fp_line (start -3.048 1.27) (end -3.054 -41.73) - (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 95ffac7f-9455-4107-8e34-a3ef8cc5665d)) + (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 90c23600-f239-464a-96f4-87ac9ad12c47)) + (fp_line (start -3.05 1.27) (end -3.05 -41.73) + (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 61267d50-ddba-4198-8691-058b1816b36e)) (fp_line (start -1.28 -39.16) (end -1.28 -41.73) - (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 47197db8-eabb-4db9-a4d8-8efc28dbb48e)) + (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 39e424f9-390f-435c-91b8-b21711ef3d1e)) (fp_line (start -1.27 1.27) (end -1.27 -1.27) - (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 4ecb7403-87fb-4225-a7b8-b015fc641c4f)) + (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 299d20a1-2c8e-4f47-ae34-6edc2e442ee1)) (fp_line (start 1.26 -44.24) (end 6.34 -44.24) - (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 04b278a1-e297-411b-a604-5f98a7e150e8)) + (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 28af99c3-c142-49fb-bc0b-d66693f5ece2)) (fp_line (start 1.26 -41.72) (end 1.26 -44.24) - (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp cebbdaf6-464a-46e6-b26e-8f58570d1cb7)) + (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp ab35c3a6-fa90-458b-b525-1b55e3526e3e)) (fp_line (start 3.7955 -41.72) (end 3.8 -44.24) - (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp dfc02c4c-4063-440f-8b64-46c4b5fd4d31)) + (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 55153039-b4ec-445a-9e25-73f4d3d51806)) (fp_line (start 6.34 -44.24) (end 6.34 -41.72) - (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 6e21c9f1-ae6a-48df-8f46-1290bb3ad639)) + (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 9f3469b0-608c-4ecf-8dcc-d54dcbf193f8)) (fp_line (start 8.88 -39.16) (end -1.28 -39.16) - (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp d4b05b4a-0609-4213-8297-9f8204df266e)) + (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 3ee6f81a-b8c3-4fb6-9a0c-98b7597a231f)) (fp_line (start 8.88 -39.16) (end 8.88 -41.73) - (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp bbc595fb-28a2-442a-92b2-0aa5fece77cf)) + (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 65315b97-19e3-4c61-a346-15acfa8901d1)) (fp_line (start 8.89 -1.27) (end -1.27 -1.27) - (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 3dad83ae-671b-4f05-8527-4eb8ed878e0d)) + (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp c1704ae2-a478-4f07-b3a7-a5412a65e675)) (fp_line (start 8.89 1.27) (end 8.89 -1.27) - (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 4a7d9464-7a52-48be-8071-86b8cef38a84)) - (fp_line (start 10.653 -41.73) (end 10.659 1.27) - (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp aa84acdf-caf7-4499-9ea2-d1d6be7dee82)) + (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 3bd032fe-c672-4a06-a030-7c98b1f870e5)) + (fp_line (start 10.65 -41.73) (end 10.65 1.27) + (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp aca1aeeb-c36d-46ec-a9f9-826d466fddb9)) (fp_line (start 10.659 1.27) (end -3.048 1.27) - (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp caa2c8f3-ba77-445d-b68f-446ce243b1cc)) + (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp e6cff5fc-7f4f-4d07-a2cc-fd48af4d2dae)) (fp_rect (start -1.28 -41.7) (end 8.88 -39.16) - (stroke (width 0.05) (type default)) (fill none) (layer "F.CrtYd") (tstamp e61343fa-1407-487e-8991-b748bd4a6529)) + (stroke (width 0.05) (type default)) (fill none) (layer "F.CrtYd") (tstamp fe475cc2-b427-4148-b754-3b866c7a2892)) (fp_rect (start -1.27 -1.27) (end 8.89 1.27) - (stroke (width 0.05) (type default)) (fill none) (layer "F.CrtYd") (tstamp 4d6c1ede-0f40-41c8-94e4-59f410de33a1)) + (stroke (width 0.05) (type default)) (fill none) (layer "F.CrtYd") (tstamp 8e683f77-5a60-4e7c-bcc3-d13f85fee122)) (pad "1" thru_hole circle (at 0 0 90) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 52 "RX2") (pinfunction "RO") (pintype "output") (tstamp 2e5c4fb4-8289-41aa-a6dd-64209b478d18)) + (net 52 "RX2") (pinfunction "RO") (pintype "output") (tstamp dc8c1e27-2bb1-451b-b226-8854b53a2203)) (pad "2" thru_hole circle (at 2.54 0 90) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 51 "EN_485_2") (pinfunction "~{RE}") (pintype "input") (tstamp 496e1ac7-b91c-4924-8562-2ac3fdb1a9ad)) + (net 51 "EN_485_2") (pinfunction "~{RE}") (pintype "input") (tstamp e4d10df1-81cc-4dc7-ba25-4fc9a327afb1)) (pad "3" thru_hole circle (at 5.08 0 90) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 51 "EN_485_2") (pinfunction "DE") (pintype "input") (tstamp 33c4080c-65ca-4943-a83e-3fe204b6d334)) + (net 51 "EN_485_2") (pinfunction "DE") (pintype "input") (tstamp 7e4ad07a-dbb5-4473-b429-5a86384c5a84)) (pad "4" thru_hole circle (at 7.62 0 90) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 4 "TX2") (pinfunction "DI") (pintype "input") (tstamp 92239092-841f-4090-8ca0-3df8b99aec71)) + (net 4 "TX2") (pinfunction "DI") (pintype "input") (tstamp 2e9b9350-7e0e-49fa-9dea-0a1ee999b6ee)) (pad "5" thru_hole rect (at 7.62 -40.4 90) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 23 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 8d77c935-43ca-42ee-b7a6-cfa3497eb9a5)) + (net 23 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 9b9c53d0-31af-400f-b08d-b3233edcf6ba)) (pad "6" thru_hole circle (at 5.08 -40.4 90) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 57 "unconnected-(RS485_2-A-Pad6)") (pinfunction "A") (pintype "bidirectional") (tstamp 77d4f73d-71d2-4af8-84e1-f1af5fe28d2c)) + (net 57 "unconnected-(RS485_2-A-Pad6)") (pinfunction "A") (pintype "bidirectional") (tstamp 70da5ce0-ce49-4472-88f9-0bbbebfe0092)) (pad "7" thru_hole circle (at 2.54 -40.4 90) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 58 "unconnected-(RS485_2-B-Pad7)") (pinfunction "B") (pintype "bidirectional") (tstamp 64acbef4-165a-4260-809b-ca85d31dfebb)) + (net 58 "unconnected-(RS485_2-B-Pad7)") (pinfunction "B") (pintype "bidirectional") (tstamp 87f18d4b-9512-4943-84f1-4efe79beedcd)) (pad "8" thru_hole circle (at 0 -40.4 90) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 48 "5V") (pinfunction "VCC") (pintype "power_in") (tstamp 59919d31-f803-4cb4-9f57-dd5a89e3deb9)) + (net 48 "5V") (pinfunction "VCC") (pintype "power_in") (tstamp 4b7278bb-8627-4227-b8fe-018a664d0fda)) ) - (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (layer "F.Cu") + (footprint "ScitechKorea:R250" (layer "F.Cu") (tstamp 6cb797a8-b9d8-4737-b88e-bf07a9db5621) (at 109.815715 134.91 90) (descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf") @@ -754,54 +754,54 @@ (property "ki_keywords" "R res resistor") (path "/6385b131-5900-4342-b4a6-3a93df8d6b87") (attr through_hole) - (fp_text reference "R5" (at 10.11 0 90) (layer "F.SilkS") + (fp_text reference "R5" (at 3.8 0 90) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) - (tstamp ff447258-31d3-4448-826a-203b99c6d96b) + (tstamp 9e932dba-796a-46b0-a667-b414ba48e424) ) - (fp_text value "R" (at 3.81 1.92 90) (layer "F.Fab") hide + (fp_text value "R" (at 3.81 1.92 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) - (tstamp f16efb2f-8ef6-4e26-b76d-e9da44d35baa) + (tstamp c90a31db-1198-4ef8-9dbf-912ed507c9e2) ) (fp_text user "${REFERENCE}" (at 3.81 0 90) (layer "F.Fab") (effects (font (size 0.72 0.72) (thickness 0.108))) - (tstamp 4f995912-d7d8-4f57-a32f-9ab479e4e518) + (tstamp 26a9f390-600c-4ee2-876e-24d17643cd80) ) (fp_line (start 0.94 0) (end 1.89 0) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ec6549a9-bcac-43df-a160-80a3c1d2aeb3)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 15b70858-76ff-4e4d-9363-f47d0e849b3b)) (fp_line (start 1.89 -0.92) (end 1.89 0.92) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f0f6360d-0140-46be-b814-8a032d0bd794)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8cc5d336-922e-4e67-b1d3-644ee77f1e9d)) (fp_line (start 1.89 0.92) (end 5.73 0.92) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cda9d872-3d4c-4121-9781-07203c10654a)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a86b096c-8670-439c-a424-f0a184f953be)) (fp_line (start 5.73 -0.92) (end 1.89 -0.92) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3ee781aa-e7e0-40be-813f-a1cb785b3fac)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5e0877b2-6a33-4bea-8b4d-fe696f9cb29b)) (fp_line (start 5.73 0.92) (end 5.73 -0.92) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp dc0ebf11-8bfc-4fa1-b1d2-c8f966de9777)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp daa25509-4611-4438-a14e-d46a159be7cc)) (fp_line (start 6.68 0) (end 5.73 0) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0161d9c6-d686-49a0-839d-42fba177afb3)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0f504f88-e1b5-40ca-9e25-5206554b5d01)) (fp_line (start -0.95 -1.05) (end -0.95 1.05) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 378ce4a8-cfef-49ed-956c-65406c7558aa)) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b91305ce-a905-436e-a509-8e513158665e)) (fp_line (start -0.95 1.05) (end 8.57 1.05) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp dadbc7e8-1b0b-41a3-bd31-abdd3c30771e)) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1da999ce-69bf-496a-97a4-b6d860a34600)) (fp_line (start 8.57 -1.05) (end -0.95 -1.05) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp da710ec9-db9c-486e-b1b4-7ff07b9e153a)) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fc47d360-ab7d-4782-8d15-223049a29e2c)) (fp_line (start 8.57 1.05) (end 8.57 -1.05) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2fdc5a75-93ec-41a7-b7fe-d8f43dca4fb4)) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 21c04878-5444-4656-bafb-2043633da876)) (fp_line (start 0 0) (end 2.01 0) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0a5404c3-523f-4480-a8f8-ac1f75f50447)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a6acb455-e03b-4c9d-bc10-0f06377ff67d)) (fp_line (start 2.01 -0.8) (end 2.01 0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ddf4f56d-0645-4f90-911d-d334bb4d0aad)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ceada188-8f67-46f3-9930-e4985234443e)) (fp_line (start 2.01 0.8) (end 5.61 0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d55d819c-916d-4d84-a5d9-5b03ccb12118)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 80635f2f-8070-4d59-a605-631e9706a1dd)) (fp_line (start 5.61 -0.8) (end 2.01 -0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0707dcf1-04c6-486c-a6ef-51b3f42a6bc2)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ae9d3188-3bff-4bd4-9169-a0485fd46947)) (fp_line (start 5.61 0.8) (end 5.61 -0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c6154503-1d56-41a0-a8a2-4916597fb1ec)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5d7df858-91b9-42fd-9a57-20319591861e)) (fp_line (start 7.62 0) (end 5.61 0) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp adb23322-1338-4d16-a641-0be7b6de6fe9)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2adcd7c7-b414-42cc-8376-8081138cdf0e)) (pad "1" thru_hole circle (at 0 0 90) (size 1.4 1.4) (drill 0.7) (layers "*.Cu" "*.Mask") - (net 10 "A05") (pintype "passive") (tstamp 5eea3043-3507-481c-8c68-b564724d8a1c)) + (net 10 "A05") (pintype "passive") (tstamp 32e8ae92-2463-4ad1-b78c-faea2bd943e8)) (pad "2" thru_hole rect (at 7.62 0 90) (size 1.4 1.4) (drill 0.7) (layers "*.Cu" "*.Mask") - (net 23 "GND") (pintype "passive") (tstamp 1249724d-7a89-4a99-8e79-45ff57612283)) + (net 23 "GND") (pintype "passive") (tstamp fd64304e-8ec8-4865-986b-dfc93c6f9094)) (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) @@ -811,7 +811,7 @@ (footprint "ScitechKorea:HolderEth_1" (layer "F.Cu") (tstamp 6f4b9a96-a45c-46f8-b783-73ad025c0fcf) - (at 131.9955 90.7) + (at 132.0254 90.5) (property "Sheetfile" "megaPCB.kicad_sch") (property "Sheetname" "") (property "ki_description" "Generic connector, single row, 01x10, script generated") @@ -820,125 +820,145 @@ (attr through_hole) (fp_text reference "ENC28J60" (at -32.06 2.48 unlocked) (layer "B.SilkS") (effects (font (size 1 1) (thickness 0.1)) (justify mirror)) - (tstamp 3353f0d8-c86f-4d45-99cf-4ee66dba2c5c) + (tstamp 5d5d1702-86d7-4df8-898a-51dcbcd63e54) ) (fp_text value "Conn_01x10_Pin" (at -32.0254 4.3 unlocked) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) - (tstamp b34fc421-f224-4919-9afc-acc8123acd89) + (tstamp 39fce8a7-9a12-48e1-8a48-60e07bdaaf3c) ) - (fp_text user "WOL SO" (at -4.38 -10.66 unlocked) (layer "B.SilkS") + (fp_text user "CLKOUT INT" (at -2.41 -8.15 unlocked) (layer "B.SilkS") (effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror)) - (tstamp 342bc5bb-b627-45a9-850a-eff89fd2e11a) + (tstamp 8325b374-bb43-4052-bbb7-c178cbf4c22c) ) - (fp_text user "CS RESET" (at -4.38 -15.68 unlocked) (layer "B.SilkS") + (fp_text user "WOL SO" (at -4.38 -10.66 unlocked) (layer "B.SilkS") (effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror)) - (tstamp 4c6bfd11-37f0-4c13-bf09-4a1705806506) + (tstamp d9a84bf0-9057-4972-a088-5c2e9f887a36) ) (fp_text user "SI SCK" (at -4.38 -13.17 unlocked) (layer "B.SilkS") (effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror)) - (tstamp 5f41a3cb-c0f6-47c9-ba33-3a603629618d) + (tstamp e43ed5fb-7de5-4aaa-a8b3-d6469b1a351a) ) (fp_text user "VCC GND" (at -4.38 -18.19 unlocked) (layer "B.SilkS") (effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror)) - (tstamp bc48e979-9533-410a-b82a-cc719c0566de) + (tstamp e5c2f08f-20eb-499e-9569-f25dff0e2edd) ) - (fp_text user "CLKOUT INT" (at -2.41 -8.15 unlocked) (layer "B.SilkS") + (fp_text user "CS RESET" (at -4.38 -15.68 unlocked) (layer "B.SilkS") (effects (font (size 1 1) (thickness 0.1)) (justify left bottom mirror)) - (tstamp dc748583-dae1-4c3b-a5a8-a3489deab209) + (tstamp f335bd85-0e3d-42ae-9234-7f8f79ed57dc) + ) + (fp_text user "Ethernet" (at -38.17 -24.71 unlocked) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.1)) (justify left bottom)) + (tstamp f1eb5212-98fa-4253-9db2-91bc63abba86) ) (fp_text user "${REFERENCE}" (at -32.0254 5.8 unlocked) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) - (tstamp 0e363818-45c4-42ea-94f8-fe6213e31373) + (tstamp 5892fe66-304a-4e3b-ba2b-1da8e4c1b9aa) ) (fp_line (start -51.816 1.302) (end -51.816 3.302) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 0cd50167-f16d-4ad1-b4dc-df7c7d803e31)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 4a9f9d9e-7e57-466c-a081-d13fb42564a8)) (fp_line (start -51.816 3.302) (end 4.064 3.302) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 0e019234-a0b7-45b6-b7fd-ff41ac30b68a)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 7dece14b-c5a6-41fe-b07d-80da1a74d08d)) (fp_line (start -34 -24.1) (end -31 -24.1) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp faaceb12-b5e7-42f2-9463-e86151567a58)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 444d884a-5ec9-40b4-b77f-e1ad8ed0601a)) (fp_line (start -31 -24.1) (end -31 -3.318) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 52aa8283-18a1-492c-b804-cee90cfab6f1)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 1de32487-9a6f-4c84-b754-916c20cffbf0)) (fp_line (start -31 -3.318) (end -34.004 -3.318) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 60202926-4236-490f-86ed-73b5c96b7ec6)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp b43f3942-f318-4985-9ea7-5634c97ab32e)) + (fp_line (start -13.2 -16.4) (end -8.6 -16.4) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 7d1d5a6d-69ef-4298-a45c-9eb346e647bd)) + (fp_line (start -13.2 -16.2) (end -8.6 -16.2) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp c87869c5-eb6c-4705-ad9f-2c1f1591c4c8)) + (fp_line (start -11.3 -8.9) (end -8.8 -8.9) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp b5346490-2fe7-40dd-a3c9-60ec23cf414e)) + (fp_line (start -11.3 -8.7) (end -8.8 -8.7) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp df68f960-c7e6-40b3-bf86-5ca417fec11d)) + (fp_line (start -8.2 -8.9) (end -2.4 -8.9) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 41cdca9e-0a91-4279-817f-ab17d557ebfb)) + (fp_line (start -8.2 -8.7) (end -2.4 -8.7) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp d963fd79-5ada-43ad-b0f4-5f9e2244841d)) + (fp_line (start -7.5 -11.4) (end -4.3 -11.4) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 69745c1e-b35d-437e-b8ea-4eb7264fde0a)) + (fp_line (start -7.5 -11.2) (end -4.3 -11.2) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp e7dd9d72-8797-4049-95ee-e0dacaed13b0)) (fp_line (start -1.524 -20.32) (end -1.524 -7.112) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 6bf068ec-a956-4fa8-8573-2be0c950920d)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp b98b0407-8544-4778-a12f-06696da4ba3c)) (fp_line (start -1.524 -7.112) (end 4.064 -7.112) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp e58d0e3e-63ae-4310-ae9f-57c19a4b0c3d)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 9d106982-a76e-4172-974e-0c51aea6ad5f)) (fp_line (start 4.064 -20.32) (end -1.524 -20.32) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp aba95485-7a4c-48c2-ae51-c240bb0e5158)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 8835c7aa-481a-430a-ae37-31c737cf9a17)) (fp_line (start 4.064 3.302) (end 4.064 -30) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 24f3a832-cb09-4cc3-8925-054a95e0df1a)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 9b6b7dd5-793d-4ec8-b610-f5d1a852ea4c)) (fp_rect (start -55.88 -23.114) (end -32.004 -4.318) - (stroke (width 0.05) (type default)) (fill none) (layer "F.CrtYd") (tstamp 2978ba9b-5841-4729-a1e0-3d6c45d3b7c2)) + (stroke (width 0.05) (type default)) (fill none) (layer "F.CrtYd") (tstamp e4d05630-646a-4ad9-9c9f-77f71799b955)) (fp_circle (center -48.4 -27.5) (end -45.9 -27.5) - (stroke (width 0.15) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 1b79a394-a287-4a13-97a5-a0fd6ffc4954)) + (stroke (width 0.15) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 9e8b9ee4-d0cb-49c3-8bc4-c25306cc9753)) (fp_circle (center -48.4 0) (end -45.9 0) - (stroke (width 0.15) (type solid)) (fill none) (layer "F.CrtYd") (tstamp d41a9c30-3130-4d10-a198-f0ab7825afaf)) + (stroke (width 0.15) (type solid)) (fill none) (layer "F.CrtYd") (tstamp f6e7df85-2e18-4744-b12d-3f36134c0160)) (fp_circle (center -0.0254 -27.5) (end 2.4746 -27.5) - (stroke (width 0.15) (type solid)) (fill none) (layer "F.CrtYd") (tstamp b82d3e9d-cdea-48a3-bb73-f07d3297ffca)) + (stroke (width 0.15) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 2599bd9f-1a45-4e1b-acc3-33665d66342f)) (fp_circle (center -0.0254 0) (end 2.4746 0) - (stroke (width 0.15) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 36d332c8-6db2-4ca9-a74d-29963766287f)) + (stroke (width 0.15) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 9a52a181-e9e8-47b6-953f-881b8ccb80e9)) (fp_circle (center -48.4 -27.5) (end -45.2 -27.5) - (stroke (width 0.15) (type solid)) (fill none) (layer "B.Fab") (tstamp 6ae6e3e2-fefa-49ac-929a-4b2c67f3d183)) + (stroke (width 0.15) (type solid)) (fill none) (layer "B.Fab") (tstamp 08f57b0a-b09a-404f-bed6-ba4f532574c9)) (fp_circle (center -48.4 0) (end -45.2 0) - (stroke (width 0.15) (type solid)) (fill none) (layer "B.Fab") (tstamp fb824b6d-324f-4977-a3e2-ccb123c54c6b)) + (stroke (width 0.15) (type solid)) (fill none) (layer "B.Fab") (tstamp c43d2043-edf4-4ab8-86fd-c2bedef2f97a)) (fp_circle (center -0.0254 -27.5) (end 3.1746 -27.5) - (stroke (width 0.15) (type solid)) (fill none) (layer "B.Fab") (tstamp 42ce95a0-49a9-49dd-9c2a-0d545afce9a2)) + (stroke (width 0.15) (type solid)) (fill none) (layer "B.Fab") (tstamp 13b78149-1dd6-45a5-a1bb-0eaaf6660d0e)) (fp_circle (center -0.0254 0) (end 3.1746 0) - (stroke (width 0.15) (type solid)) (fill none) (layer "B.Fab") (tstamp dad9b181-a01a-42a4-9732-4a5313548235)) + (stroke (width 0.15) (type solid)) (fill none) (layer "B.Fab") (tstamp 0cc2c939-76f4-4974-9506-ba1aa47837ad)) (fp_circle (center -48.4 -27.5) (end -45.2 -27.5) - (stroke (width 0.15) (type solid)) (fill none) (layer "F.Fab") (tstamp 7f6b8f02-0c79-4020-aa23-f8124f68daab)) + (stroke (width 0.15) (type solid)) (fill none) (layer "F.Fab") (tstamp a08f2906-f578-4264-9298-ab44e1db42f5)) (fp_circle (center -48.4 0) (end -45.2 0) - (stroke (width 0.15) (type solid)) (fill none) (layer "F.Fab") (tstamp 8ce3acc8-9f58-4816-92b2-f0fd3624bb84)) + (stroke (width 0.15) (type solid)) (fill none) (layer "F.Fab") (tstamp b7f7cd9d-8606-4908-be78-1262aff75fb0)) (fp_circle (center -0.0254 -27.5) (end 3.1746 -27.5) - (stroke (width 0.15) (type solid)) (fill none) (layer "F.Fab") (tstamp ad85e75f-a2c0-4a1a-95a3-e5eb1fa394bf)) + (stroke (width 0.15) (type solid)) (fill none) (layer "F.Fab") (tstamp 62ae3460-c396-47bb-8a02-60b3e605508a)) (fp_circle (center -0.0254 0) (end 3.1746 0) - (stroke (width 0.15) (type solid)) (fill none) (layer "F.Fab") (tstamp f8a6c514-f3fd-4657-a47a-7edd01feca3e)) + (stroke (width 0.15) (type solid)) (fill none) (layer "F.Fab") (tstamp 050f5263-c01f-4c93-ba5a-b053c5e8f3bb)) (pad "" np_thru_hole circle (at -48.4 -27.5) (size 3.2 3.2) (drill 3.2) (layers "F&B.Cu" "*.Mask") - (clearance 1) (tstamp 3a529c36-3732-4ea2-8d99-636fbbb195ae)) + (clearance 1) (tstamp ead9d7af-5769-420b-a44c-42e6993f60f9)) (pad "" np_thru_hole circle (at -48.4 0) (size 3.2 3.2) (drill 3.2) (layers "F&B.Cu" "*.Mask") - (clearance 1) (tstamp f711005f-3b8f-4083-9fc5-a7d6cbd66444)) + (clearance 1) (tstamp 29ed81b9-1d35-40fc-ad5b-edae83de39a5)) (pad "" np_thru_hole circle (at -0.0254 -27.5) (size 3.2 3.2) (drill 3.2) (layers "F&B.Cu" "*.Mask") - (clearance 1) (tstamp ab7f1298-0659-4443-b3a6-96d192c08d2b)) + (clearance 1) (tstamp 9c0ed621-1cf2-42fc-b1f5-fc7bfe066f0a)) (pad "" np_thru_hole circle (at -0.0254 0) (size 3.2 3.2) (drill 3.2) (layers "F&B.Cu" "*.Mask") - (clearance 1) (tstamp 362ee437-69c4-4246-b96e-d1c51a8fd305)) + (clearance 1) (tstamp 15ca9de1-1ff6-4640-a4d6-74afd7ed86a9)) (pad "1" thru_hole circle (at 2.54 -8.67 90) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 85 "unconnected-(ENC28J60-Pin_1-Pad1)") (pinfunction "Pin_1") (pintype "passive") (tstamp 765f8735-cfe1-4c04-a80e-3a49b604407b)) + (net 85 "unconnected-(ENC28J60-Pin_1-Pad1)") (pinfunction "Pin_1") (pintype "passive") (tstamp 34ea31b1-4115-43ad-876e-c194a04d7f86)) (pad "2" thru_hole circle (at 0 -8.67 90) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 86 "unconnected-(ENC28J60-Pin_2-Pad2)") (pinfunction "Pin_2") (pintype "passive") (tstamp 863da726-fd04-40d4-8054-9f0901eefe12)) + (net 86 "unconnected-(ENC28J60-Pin_2-Pad2)") (pinfunction "Pin_2") (pintype "passive") (tstamp a157150e-2b8d-4189-9dea-4a70e8a96c2f)) (pad "3" thru_hole circle (at 2.54 -11.21 90) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 87 "unconnected-(ENC28J60-Pin_3-Pad3)") (pinfunction "Pin_3") (pintype "passive") (tstamp ace0a0c5-28bf-4c76-947e-e3c6407c9a7c)) + (net 87 "unconnected-(ENC28J60-Pin_3-Pad3)") (pinfunction "Pin_3") (pintype "passive") (tstamp 74c89c50-ec33-4568-9749-9e09cc6dd9eb)) (pad "4" thru_hole circle (at 0 -11.21 90) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 63 "MISO") (pinfunction "Pin_4") (pintype "passive") (tstamp 896cd004-5dd0-455a-a95a-5a1d99a7603e)) + (net 63 "MISO") (pinfunction "Pin_4") (pintype "passive") (tstamp 5fdd48ce-d908-4539-89e6-a805f7d584d3)) (pad "5" thru_hole circle (at 2.54 -13.75 90) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 64 "MOSI") (pinfunction "Pin_5") (pintype "passive") (tstamp 152aa849-9ceb-4b08-ba6c-592d4bc99d89)) + (net 64 "MOSI") (pinfunction "Pin_5") (pintype "passive") (tstamp 867afd0f-2591-489d-9935-3856b6ee8d40)) (pad "6" thru_hole circle (at 0 -13.75 90) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 65 "SCK") (pinfunction "Pin_6") (pintype "passive") (tstamp 876569e9-b176-40b2-8621-8a0a0a9a6612)) + (net 65 "SCK") (pinfunction "Pin_6") (pintype "passive") (tstamp f146be80-7d0b-4ec0-8079-dc8690e99561)) (pad "7" thru_hole circle (at 2.54 -16.29 90) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 66 "CS") (pinfunction "Pin_7") (pintype "passive") (tstamp 24dcc1b5-bf01-44b5-94f1-47cbb2820fa8)) + (net 66 "CS") (pinfunction "Pin_7") (pintype "passive") (tstamp f2f2f2e7-b559-48fb-a9a8-4539bbac0622)) (pad "8" thru_hole circle (at 0 -16.29 90) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 88 "unconnected-(ENC28J60-Pin_8-Pad8)") (pinfunction "Pin_8") (pintype "passive") (tstamp bb72e9b3-175c-405d-bc14-ef822eeeec2d)) + (net 88 "unconnected-(ENC28J60-Pin_8-Pad8)") (pinfunction "Pin_8") (pintype "passive") (tstamp 05606cc1-85e9-4226-a5ec-2d713efc97da)) (pad "9" thru_hole circle (at 2.54 -18.83 90) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 48 "5V") (pinfunction "Pin_9") (pintype "passive") (tstamp 2718b0bc-0034-4f0d-9b58-a38b0a059596)) + (net 48 "5V") (pinfunction "Pin_9") (pintype "passive") (tstamp 853ee45a-2481-4843-b17a-872678408329)) (pad "10" thru_hole rect (at 0 -18.83 90) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 23 "GND") (pinfunction "Pin_10") (pintype "passive") (tstamp 774d50d2-a97e-48a5-b079-153054ce40b1)) - (group "" (id d043db2c-14d2-4efd-bcbd-30ec3ba27009) + (net 23 "GND") (pinfunction "Pin_10") (pintype "passive") (tstamp a7dc8819-19fa-4741-a928-6a2c6f553e24)) + (group "" (id 639dae5e-763c-492a-851d-4c57d5684e1b) (members - 152aa849-9ceb-4b08-ba6c-592d4bc99d89 - 24dcc1b5-bf01-44b5-94f1-47cbb2820fa8 - 2718b0bc-0034-4f0d-9b58-a38b0a059596 - 765f8735-cfe1-4c04-a80e-3a49b604407b - 774d50d2-a97e-48a5-b079-153054ce40b1 - 863da726-fd04-40d4-8054-9f0901eefe12 - 876569e9-b176-40b2-8621-8a0a0a9a6612 - 896cd004-5dd0-455a-a95a-5a1d99a7603e - ace0a0c5-28bf-4c76-947e-e3c6407c9a7c - bb72e9b3-175c-405d-bc14-ef822eeeec2d + 05606cc1-85e9-4226-a5ec-2d713efc97da + 34ea31b1-4115-43ad-876e-c194a04d7f86 + 5fdd48ce-d908-4539-89e6-a805f7d584d3 + 74c89c50-ec33-4568-9749-9e09cc6dd9eb + 853ee45a-2481-4843-b17a-872678408329 + 867afd0f-2591-489d-9935-3856b6ee8d40 + a157150e-2b8d-4189-9dea-4a70e8a96c2f + a7dc8819-19fa-4741-a928-6a2c6f553e24 + f146be80-7d0b-4ec0-8079-dc8690e99561 + f2f2f2e7-b559-48fb-a9a8-4539bbac0622 ) ) ) - (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (layer "F.Cu") + (footprint "ScitechKorea:R250" (layer "F.Cu") (tstamp 74398da0-0a24-48d6-9a4e-3a3ebeabc6b9) (at 97.517142 117.51 90) (descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf") @@ -949,54 +969,54 @@ (property "ki_keywords" "R res resistor") (path "/3f6e635a-7f03-436c-97f4-3706e6252bce") (attr through_hole) - (fp_text reference "R9" (at -2.24381 -0.135716 90) (layer "F.SilkS") + (fp_text reference "R9" (at 3.8 0 90) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) - (tstamp 58b302f6-5ae4-4a0d-8693-374cff2cb961) + (tstamp 8e46d468-6858-4056-a087-3d9a8840cbe2) ) - (fp_text value "R" (at 3.81 1.92 90) (layer "F.Fab") hide + (fp_text value "R" (at 3.81 1.92 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) - (tstamp 2bc1d9ec-d0f9-4826-8de0-cbe4e2656639) + (tstamp 02d9b4db-538f-4daa-8ebe-098b68315832) ) (fp_text user "${REFERENCE}" (at 3.81 0 90) (layer "F.Fab") (effects (font (size 0.72 0.72) (thickness 0.108))) - (tstamp 945f86c6-ffff-437a-bfd9-e804f45186a3) + (tstamp 441e5d1d-9a05-4af8-8a16-5481fa4490c7) ) (fp_line (start 0.94 0) (end 1.89 0) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 01300502-2b2e-435e-b7e0-1b91f460977c)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f50d61ed-7b26-4e38-9b19-b6eaa74d301b)) (fp_line (start 1.89 -0.92) (end 1.89 0.92) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6f35047d-ec89-4a73-bd1e-fa61afe8bfb9)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5587f944-3f70-4230-938f-5b2b87f5469f)) (fp_line (start 1.89 0.92) (end 5.73 0.92) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e1e059a2-c5cd-4634-ae78-24441c7d02bf)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 75d1420f-bd72-498a-9a27-42685a7cd614)) (fp_line (start 5.73 -0.92) (end 1.89 -0.92) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2a381185-3b4e-45ed-91e4-bbeea4aded83)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ab8b4943-3a70-4a89-abf3-5d596e41e079)) (fp_line (start 5.73 0.92) (end 5.73 -0.92) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a2f72982-b87b-41f5-9469-c0a5b164a583)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f4f7b094-9dde-4328-af19-3e23986f8701)) (fp_line (start 6.68 0) (end 5.73 0) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bc4bf6fb-df26-4e2e-a359-0990da48f1b9)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp bc8f0b8f-9cdb-44cb-aa30-b5182d4a12e8)) (fp_line (start -0.95 -1.05) (end -0.95 1.05) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f79ada77-dee3-4613-be4d-625cd1b5505e)) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fb7fd6fe-e3d9-4467-8b72-2ffb1cee1442)) (fp_line (start -0.95 1.05) (end 8.57 1.05) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6ee693c7-b4bb-4223-a0fe-4c5f21b5e899)) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7ff59e1b-0f73-4f57-9760-8d55b06a1aac)) (fp_line (start 8.57 -1.05) (end -0.95 -1.05) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6d16a071-318d-4f5a-b88c-2e47d17abedf)) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2ecad370-d126-4473-96d1-e30b2dedde29)) (fp_line (start 8.57 1.05) (end 8.57 -1.05) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b9aa3dec-bcd2-4a6e-b7a5-064e43cd7199)) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0ea96b20-54b6-445f-8a04-3ea34e41b429)) (fp_line (start 0 0) (end 2.01 0) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 531135e1-469f-4ffe-8490-686e673cb9a2)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f5e99c13-6299-43c5-aa75-569fd9909e6a)) (fp_line (start 2.01 -0.8) (end 2.01 0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a88aeb8e-fa5f-4b71-aed6-50e0e051220c)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c4004c5b-67f5-4e63-bc9e-dcae893b28bc)) (fp_line (start 2.01 0.8) (end 5.61 0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ddd91003-6cb8-4566-befc-59625cc8a2c7)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 36cc1646-87fe-47ee-bfba-7528b3b13f7d)) (fp_line (start 5.61 -0.8) (end 2.01 -0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b77ff9d6-4714-4e65-b9f9-202cc58e2810)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f2fbbb49-d24f-43f2-a178-7644d4fd1617)) (fp_line (start 5.61 0.8) (end 5.61 -0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a6d6b39f-3005-42af-9b29-5920c9f11cff)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5640e3c5-28de-4b2e-81d0-81001255f76b)) (fp_line (start 7.62 0) (end 5.61 0) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7b97a5d3-f939-4ba8-9184-5aab04ba4170)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 41067189-ffd2-4152-a2b6-5ab2883f97fd)) (pad "1" thru_hole circle (at 0 0 90) (size 1.4 1.4) (drill 0.7) (layers "*.Cu" "*.Mask") - (net 14 "A09") (pintype "passive") (tstamp 1421d5e2-308e-4c14-aee4-e74d493c4438)) + (net 14 "A09") (pintype "passive") (tstamp 7bb1a1a7-fc39-4d89-a2fc-e86fdd6f2296)) (pad "2" thru_hole rect (at 7.62 0 90) (size 1.4 1.4) (drill 0.7) (layers "*.Cu" "*.Mask") - (net 23 "GND") (pintype "passive") (tstamp 9755822c-afa2-42f2-b347-8bdd77dc2656)) + (net 23 "GND") (pintype "passive") (tstamp d6db4a47-aa4a-4c8d-b952-aa01395c0d58)) (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) @@ -1006,7 +1026,7 @@ (footprint "ScitechKorea:I2C_Socket" (layer "F.Cu") (tstamp 774f9ec7-d3cc-43ea-adcc-7bbd907f027b) - (at 144.58 88.57) + (at 145.96 88.57) (property "Sheetfile" "megaPCB.kicad_sch") (property "Sheetname" "") (property "ki_description" "Generic connector, single row, 01x04, script generated") @@ -1107,9 +1127,35 @@ (net 48 "5V") (pinfunction "Pin_4") (pintype "passive") (tstamp 09d340d9-8e04-4384-a2f8-b0dd149995fa)) ) + (footprint "ScitechKorea:ScrewHole" (layer "F.Cu") + (tstamp 78cf47ed-1d4f-4ad4-93c0-8b425cb44704) + (at 177 157) + (attr through_hole) + (fp_text reference "REF**" (at -0.2175 -0.54 unlocked) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.1))) + (tstamp 42f69a84-15bb-433e-8d0f-3d5c8322c54a) + ) + (fp_text value "ScrewHole" (at -0.2175 0.96 unlocked) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 88e2d8c8-2b14-4d9a-a789-2d42d6e91ebf) + ) + (fp_text user "${REFERENCE}" (at -0.2175 2.46 unlocked) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp d37ab941-15d0-484b-8231-c66a81c0d86b) + ) + (fp_circle (center 0 0) (end 2.5 0) + (stroke (width 0.15) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 317199b8-36ee-4309-9942-929be5612378)) + (fp_circle (center 0 0) (end 3.2 0) + (stroke (width 0.15) (type solid)) (fill none) (layer "B.Fab") (tstamp 84eff8d8-04ce-47bc-8925-7a5ae43a7fe4)) + (fp_circle (center 0 0) (end 3.2 0) + (stroke (width 0.15) (type solid)) (fill none) (layer "F.Fab") (tstamp 94aeedcb-0dd2-4174-9432-1d1e593b32d4)) + (pad "" np_thru_hole circle (at 0 0) (size 3.2 3.2) (drill 3.2) (layers "F&B.Cu" "*.Mask") + (clearance 1) (tstamp ff4ae23c-bf6c-47cf-956c-7541b13d154b)) + ) + (footprint "ScitechKorea:Terminal_24" (layer "F.Cu") (tstamp 7c3e6923-87e6-4bae-8c5b-d9798e1fd438) - (at 94.6 156.4) + (at 89.74 156.2875) (property "Sheetfile" "megaPCB.kicad_sch") (property "Sheetname" "") (path "/f7eff169-c173-4f95-a30a-53d832efbbae") @@ -2076,7 +2122,7 @@ (net 20 "A15") (pinfunction "Pin_24") (pintype "passive") (tstamp b5c32ce1-a8ab-46d6-9aca-e1c1b0105eb8)) ) - (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (layer "F.Cu") + (footprint "ScitechKorea:R250" (layer "F.Cu") (tstamp 7d8aa0c7-a02c-4a88-9158-2ffc00b89cdd) (at 115.98429 134.91 90) (descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf") @@ -2087,54 +2133,54 @@ (property "ki_keywords" "R res resistor") (path "/7a466c36-1bbc-4534-8ab4-f6886a6a9702") (attr through_hole) - (fp_text reference "R7" (at 10.11 0 90) (layer "F.SilkS") + (fp_text reference "R7" (at 3.8 0 90) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) - (tstamp a9e3c347-49e2-4372-b560-91b989b67deb) + (tstamp 7bff1134-7998-4aef-ab7f-35e351c2f861) ) - (fp_text value "R" (at 3.81 1.92 90) (layer "F.Fab") hide + (fp_text value "R" (at 3.81 1.92 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) - (tstamp 4b4e83a4-6dfc-471d-8638-589470c1f42c) + (tstamp b285dec6-5183-4743-aa90-df4bd8456d89) ) (fp_text user "${REFERENCE}" (at 3.81 0 90) (layer "F.Fab") (effects (font (size 0.72 0.72) (thickness 0.108))) - (tstamp b6412541-8557-487c-936f-326a9efaf86b) + (tstamp fbb84a05-d2b9-48b2-80a0-ba8769dfe353) ) (fp_line (start 0.94 0) (end 1.89 0) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c16f6dc4-7b6e-48b3-ab63-7bddfb24c9e0)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 600f9a10-9e0f-4d5c-88f6-17857a43e9c2)) (fp_line (start 1.89 -0.92) (end 1.89 0.92) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0e6d8772-001a-465e-8dc5-38f83fee292b)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6ac00336-1237-49c2-813a-03d3e1ef810e)) (fp_line (start 1.89 0.92) (end 5.73 0.92) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 639d7749-5c00-4eb9-bb4d-6f90861c8826)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7e09084b-e947-4e6c-97ed-20c3280da6db)) (fp_line (start 5.73 -0.92) (end 1.89 -0.92) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d9d2225c-13cb-465e-9891-f742669b4128)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c43ef900-08ca-4c7b-8951-9086a77dd680)) (fp_line (start 5.73 0.92) (end 5.73 -0.92) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c0b96e63-f580-49eb-ac73-342d1e6ba03a)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 90283b2e-8a61-4839-8096-c07a626a50e2)) (fp_line (start 6.68 0) (end 5.73 0) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 89551b32-2238-46f6-8598-f2d01babe180)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0114e171-350a-473a-bcd4-19f30bd16aad)) (fp_line (start -0.95 -1.05) (end -0.95 1.05) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6007ef44-3bc6-4b1a-9fa9-1512d321e48b)) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bd3f26c3-4f6e-4ecf-bf9d-9324c30bfb9f)) (fp_line (start -0.95 1.05) (end 8.57 1.05) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6ddee17d-deaf-418f-a689-b2b29939178f)) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7d786b42-892e-4f7d-9c48-ef01ca07a907)) (fp_line (start 8.57 -1.05) (end -0.95 -1.05) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 55dfedc7-8d0e-40e1-8c65-8918f182884e)) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9ac8adbe-86a2-40e0-ab4e-ffaa2fde5fdb)) (fp_line (start 8.57 1.05) (end 8.57 -1.05) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 144c18b8-e55e-41ab-823e-193b38fae6b7)) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9a2febae-a1a9-4ddd-8729-d96494ccab79)) (fp_line (start 0 0) (end 2.01 0) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6d03162b-921d-477a-b7ba-e8395cd5fb0e)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3bbf5370-e8d2-4ded-b087-5178af5587d0)) (fp_line (start 2.01 -0.8) (end 2.01 0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e3431c2e-7929-4b5f-a185-b6494d7321a7)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e5282159-ca24-4f65-83b7-6bf3cb771dd0)) (fp_line (start 2.01 0.8) (end 5.61 0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ea31438c-55cb-43da-9a87-7fe61e73cb02)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 76f22062-8a4a-485e-84d9-f394c36caf9e)) (fp_line (start 5.61 -0.8) (end 2.01 -0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3997cb46-16a6-4664-bdeb-f1b3ef5d6995)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 55d1277d-ae85-4d3b-9db0-d2789dd82c18)) (fp_line (start 5.61 0.8) (end 5.61 -0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c2101c53-fff4-449c-9421-fa3e4495ff1c)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3ef5a7fc-7086-427f-b632-172ccf203a4a)) (fp_line (start 7.62 0) (end 5.61 0) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c9af8e28-245a-46b7-a97e-f85c943f81ed)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9277b8c7-057a-42fd-9abb-29e4a995af2f)) (pad "1" thru_hole circle (at 0 0 90) (size 1.4 1.4) (drill 0.7) (layers "*.Cu" "*.Mask") - (net 12 "A07") (pintype "passive") (tstamp d83f3139-470c-42f8-b129-40420c74199d)) + (net 12 "A07") (pintype "passive") (tstamp 1adbd1e1-a71a-4c0a-91c6-f17834956d77)) (pad "2" thru_hole rect (at 7.62 0 90) (size 1.4 1.4) (drill 0.7) (layers "*.Cu" "*.Mask") - (net 23 "GND") (pintype "passive") (tstamp 4e4321f3-4fc7-4be9-ba61-0ecbdf792c34)) + (net 23 "GND") (pintype "passive") (tstamp fb148661-05e0-4660-aef7-026aaf4c7ed7)) (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) @@ -2142,7 +2188,7 @@ ) ) - (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (layer "F.Cu") + (footprint "ScitechKorea:R250" (layer "F.Cu") (tstamp 81e65c2d-bd7c-4859-a45b-1c69a3ef10cf) (at 94.4 117.51 90) (descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf") @@ -2153,54 +2199,54 @@ (property "ki_keywords" "R res resistor") (path "/8b8e1af5-c04c-4ddf-ba38-d934047aec6d") (attr through_hole) - (fp_text reference "R8" (at -2.24381 -0.135716 90) (layer "F.SilkS") + (fp_text reference "R8" (at 3.8 0 90) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) - (tstamp acf33ff5-12d9-4f3f-a5e8-4b2bc90d6295) + (tstamp b6dd06a1-09e5-4d99-88f8-54c3dbef93fe) ) - (fp_text value "R" (at 3.81 1.92 90) (layer "F.Fab") hide + (fp_text value "R" (at 3.81 1.92 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) - (tstamp cb215754-64c7-4c7d-8ced-6c3e76b74e76) + (tstamp b7fb691d-2c03-4744-9e15-8c82bfd6d170) ) (fp_text user "${REFERENCE}" (at 3.81 0 90) (layer "F.Fab") (effects (font (size 0.72 0.72) (thickness 0.108))) - (tstamp 08984a9c-016b-4572-8242-a0e88c678fd3) + (tstamp a3e2dd93-34a1-4c6a-aaad-e19ffae2bdbe) ) (fp_line (start 0.94 0) (end 1.89 0) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp aa71c7a7-528f-4f53-afaf-e711d47de64c)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9103d142-28f2-4b91-bf60-9ef911682405)) (fp_line (start 1.89 -0.92) (end 1.89 0.92) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 26acd28b-28af-4fd1-91e0-fbc5426452e9)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d4853c47-e037-4f15-b204-3a98e9d0d0e0)) (fp_line (start 1.89 0.92) (end 5.73 0.92) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ebbd0ccd-2730-4c54-aced-99ba87a0e0ea)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 64cdf8f5-522d-4fec-8512-1ff01850ab57)) (fp_line (start 5.73 -0.92) (end 1.89 -0.92) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9b9e12b6-19f5-4c2c-a2c4-bcc9aedb6bac)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9421df9b-d95d-4e83-9e7e-018b547b2721)) (fp_line (start 5.73 0.92) (end 5.73 -0.92) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a5d36353-fa9f-41e2-ac46-f796d75a27e6)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6bbc2eb1-7a99-4061-aa89-ce664191f05a)) (fp_line (start 6.68 0) (end 5.73 0) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4682dfed-94ef-4b8a-81da-1fb9e3d6e9a7)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8079889c-11ea-468a-8d54-e6ebdd6e281f)) (fp_line (start -0.95 -1.05) (end -0.95 1.05) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a6b493a1-2aca-4d09-a0ef-6d187a5edd70)) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 19f99221-e0d5-43c8-8951-d5cc1f86412c)) (fp_line (start -0.95 1.05) (end 8.57 1.05) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 1cec0fd0-8f80-492d-92a4-6be709fadaeb)) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d8234328-0013-4bac-b2d6-4f7d7a33478d)) (fp_line (start 8.57 -1.05) (end -0.95 -1.05) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ee84bacb-4147-406f-8121-42d1f348a898)) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5a7cf25f-29a7-4f39-b14e-c0268b2e7167)) (fp_line (start 8.57 1.05) (end 8.57 -1.05) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 49043489-dca5-492d-9cd6-8020782b52f1)) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 29be1033-0d3e-49af-96b9-25095c6c23e3)) (fp_line (start 0 0) (end 2.01 0) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 143c1019-ddee-4e14-9390-af08f9dbea1e)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fbee6ec5-42e0-43f4-8b54-4a71beb0365d)) (fp_line (start 2.01 -0.8) (end 2.01 0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 46c4b9ae-19da-4395-977c-7ff968ebdb5d)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0aebdf24-ee8a-4134-b417-ca52c898f552)) (fp_line (start 2.01 0.8) (end 5.61 0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 32c63e16-a0ea-4ec9-8478-443f1c30c98d)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 195c6a7d-5350-47f7-9160-3da6c4b5bcbc)) (fp_line (start 5.61 -0.8) (end 2.01 -0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 209c1ea8-dfb8-411f-bda3-726670a55564)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f56adf39-19ed-43f3-a22d-5e6ecd7a8493)) (fp_line (start 5.61 0.8) (end 5.61 -0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 72767ebc-11a8-4e60-862f-cc53eaa1c888)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 47b1dfb5-e83f-437d-ad08-11ffdb615e73)) (fp_line (start 7.62 0) (end 5.61 0) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 90e260f8-64b8-4299-b280-9d84feeef919)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bd1abb11-8a44-42ea-b9f3-1b53bf95c00c)) (pad "1" thru_hole circle (at 0 0 90) (size 1.4 1.4) (drill 0.7) (layers "*.Cu" "*.Mask") - (net 13 "A08") (pintype "passive") (tstamp f62955c6-405e-4eb4-a6d6-ad2e22a6497f)) + (net 13 "A08") (pintype "passive") (tstamp 1bfff87b-c2ac-4340-a264-d5cc6521be86)) (pad "2" thru_hole rect (at 7.62 0 90) (size 1.4 1.4) (drill 0.7) (layers "*.Cu" "*.Mask") - (net 23 "GND") (pintype "passive") (tstamp d65b6542-ac0a-4066-92e9-80f927e3f54e)) + (net 23 "GND") (pintype "passive") (tstamp bd80fcd8-7588-45a5-97f4-86054cc7b750)) (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) @@ -2871,7 +2917,7 @@ (footprint "ScitechKorea:I2C_Socket" (layer "F.Cu") (tstamp 896e4ae6-bd2d-43dd-bd4c-9d4a96b34c98) - (at 157.59 72.87) + (at 158.69 72.87) (property "Sheetfile" "megaPCB.kicad_sch") (property "Sheetname" "") (property "ki_description" "Generic connector, single row, 01x04, script generated") @@ -2972,7 +3018,7 @@ (net 48 "5V") (pinfunction "Pin_4") (pintype "passive") (tstamp aa26400e-16f8-4322-b550-6aa0ae5664f1)) ) - (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (layer "F.Cu") + (footprint "ScitechKorea:R250" (layer "F.Cu") (tstamp 8a218f92-2181-4fbf-94c7-23e4a7424acc) (at 100.56286 134.91 90) (descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf") @@ -2983,54 +3029,54 @@ (property "ki_keywords" "R res resistor") (path "/2f5d2b3a-0c58-4f9b-a9ec-8445f8e63686") (attr through_hole) - (fp_text reference "R2" (at 10.11 0 90) (layer "F.SilkS") + (fp_text reference "R2" (at 3.8 0 90) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) - (tstamp bb8ea4ce-111f-4ff2-8402-0677990c9ee8) + (tstamp e884d308-2872-4840-afe8-3c5c90f52b7d) ) - (fp_text value "R" (at 3.81 1.92 90) (layer "F.Fab") hide + (fp_text value "R" (at 3.81 1.92 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) - (tstamp 9fa8bac6-8a3e-48d9-98d9-6356bde9e381) + (tstamp 83dc6512-cb90-4ac9-8e84-5d84273bbf60) ) (fp_text user "${REFERENCE}" (at 3.81 0 90) (layer "F.Fab") (effects (font (size 0.72 0.72) (thickness 0.108))) - (tstamp 627c5df3-2fda-4da3-8b2b-20a8720f018b) + (tstamp 03276001-0fac-4c16-8835-fd6f83e714ee) ) (fp_line (start 0.94 0) (end 1.89 0) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7c76095a-18a3-4462-b5ce-a9baffae834d)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp db5b6302-394d-43b8-a6c5-1aff7364da91)) (fp_line (start 1.89 -0.92) (end 1.89 0.92) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 25434cd5-b3da-4501-a550-c33dbd14208d)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9d7047af-c568-4aa7-9dbf-cec7a0208acb)) (fp_line (start 1.89 0.92) (end 5.73 0.92) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 42889c4d-0783-4aa9-93c0-4b9f4bf1bd0a)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 31ffe442-7b7e-411e-8990-450493d096c6)) (fp_line (start 5.73 -0.92) (end 1.89 -0.92) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp de6594c7-73bf-4f1a-b578-ced03fd28126)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e4b98735-483d-4ac7-8a37-522a3604a9b1)) (fp_line (start 5.73 0.92) (end 5.73 -0.92) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp acc8a4e5-0fe7-48ca-b2f9-833b380b1b5e)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b13a8c3f-49c5-4826-94ed-4555248292ad)) (fp_line (start 6.68 0) (end 5.73 0) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 713d3e8a-870b-487d-b5a1-221bddd7b8cf)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 26fd4ef3-9e3e-43e9-a769-069aa167a744)) (fp_line (start -0.95 -1.05) (end -0.95 1.05) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp cae59342-e38e-41be-9a8d-ccd7341e1395)) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3e89486c-2537-43eb-a099-c7032d901f99)) (fp_line (start -0.95 1.05) (end 8.57 1.05) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8552aeb0-ab07-45c8-97a7-1ddc14f951ef)) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 70de2c20-7b0e-4c05-8213-acc09cdb5da0)) (fp_line (start 8.57 -1.05) (end -0.95 -1.05) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ca2ddb1a-b6b5-4da5-ac71-d00f947d7543)) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c0c665b3-7191-4647-ab81-1e5cc3e96027)) (fp_line (start 8.57 1.05) (end 8.57 -1.05) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a9d6f473-6d55-4638-a377-cee762711cf0)) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp cacf7c20-d8ba-4a78-85e2-cbba0d5ee7f2)) (fp_line (start 0 0) (end 2.01 0) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 81a4771b-69d2-4a70-a193-ae2840ae207d)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 679cd7dc-356e-4661-908e-d6a5fd468b05)) (fp_line (start 2.01 -0.8) (end 2.01 0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 15242071-1852-4b9f-9352-f9b41bc3c679)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2519d9e8-e58f-4478-926d-9c6f9f621c80)) (fp_line (start 2.01 0.8) (end 5.61 0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4e8e6859-1dc1-4136-a6d4-1241bf785f76)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e512e28c-a919-406a-9fe5-f1d965dc8713)) (fp_line (start 5.61 -0.8) (end 2.01 -0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3e8d2667-e142-4267-a16d-caf9549d36f8)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7e991053-184f-41b8-acb1-83a8aed2fed1)) (fp_line (start 5.61 0.8) (end 5.61 -0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2b6d9778-d9b0-40ad-b3ba-0016cd984540)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5b543413-0054-4262-9373-01d6cfad6129)) (fp_line (start 7.62 0) (end 5.61 0) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ba338c0f-98ce-43da-8376-a5fce53f0cb7)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 21f6422e-cc0e-417a-ad8c-9a7d5e1bbd22)) (pad "1" thru_hole circle (at 0 0 90) (size 1.4 1.4) (drill 0.7) (layers "*.Cu" "*.Mask") - (net 7 "A02") (pintype "passive") (tstamp 9f13e478-9c9b-49b6-9a65-5020c10b54cf)) + (net 7 "A02") (pintype "passive") (tstamp af36925d-62b0-4f79-af07-fe4b1c18357e)) (pad "2" thru_hole rect (at 7.62 0 90) (size 1.4 1.4) (drill 0.7) (layers "*.Cu" "*.Mask") - (net 23 "GND") (pintype "passive") (tstamp 3c575af7-de78-46bc-9f15-333b2aba80c5)) + (net 23 "GND") (pintype "passive") (tstamp 51a19c52-13bf-4f0d-bac3-6cac3a344a74)) (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) @@ -3040,7 +3086,7 @@ (footprint "ScitechKorea:I2C_Socket" (layer "F.Cu") (tstamp 8bf531e8-98b3-48f4-bdff-53526d6e8662) - (at 144.58 80.72) + (at 145.96 80.72) (property "Sheetfile" "megaPCB.kicad_sch") (property "Sheetname" "") (property "ki_description" "Generic connector, single row, 01x04, script generated") @@ -3141,7 +3187,7 @@ (net 48 "5V") (pinfunction "Pin_4") (pintype "passive") (tstamp 11529516-6c7a-4f30-97af-189dae471b47)) ) - (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (layer "F.Cu") + (footprint "ScitechKorea:R250" (layer "F.Cu") (tstamp 8d0af42e-5643-45cc-9f63-6d73df6da0db) (at 116.22 117.51 90) (descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf") @@ -3152,54 +3198,54 @@ (property "ki_keywords" "R res resistor") (path "/9008c625-c46d-4aff-9f73-832f86e1d2cd") (attr through_hole) - (fp_text reference "R15" (at -2.72 -0.02 90) (layer "F.SilkS") + (fp_text reference "R15" (at 3.8 0 90) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) - (tstamp 9689811d-e153-4116-b883-22a9a094b7d1) + (tstamp b2488e27-1ca8-4dd2-ac3b-7eb42cfb2e2a) ) - (fp_text value "R" (at 3.81 1.92 90) (layer "F.Fab") hide + (fp_text value "R" (at 3.81 1.92 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) - (tstamp abbff4a3-3f1c-4ad3-9d55-a81e25f76ad8) + (tstamp 44a66c36-00eb-46aa-a0b7-1b3a497c301b) ) (fp_text user "${REFERENCE}" (at 3.81 0 90) (layer "F.Fab") (effects (font (size 0.72 0.72) (thickness 0.108))) - (tstamp ca1f6f49-4da7-4538-8fee-24b7b78bacf3) + (tstamp cac472c0-bf83-4a13-8449-ad93820ab4d7) ) (fp_line (start 0.94 0) (end 1.89 0) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 732dd009-c470-4628-9979-1edc3d947efc)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d96ea59d-f719-4ba9-96ca-f3a4a812e505)) (fp_line (start 1.89 -0.92) (end 1.89 0.92) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e1be2d38-66e1-4197-ac1d-0b52026326e6)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp df531dae-3e84-41b8-ab21-55ef1c78be6c)) (fp_line (start 1.89 0.92) (end 5.73 0.92) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8d1eb2c1-34f0-4048-8b95-fbd4cd69ae50)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b00b5604-8e76-498d-bd33-c1e9ff64fb80)) (fp_line (start 5.73 -0.92) (end 1.89 -0.92) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6c0d252e-a55d-4a87-a4f5-688b6cb0f0c2)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d3e36a3b-4f52-4660-887e-2b4f0b1f7b75)) (fp_line (start 5.73 0.92) (end 5.73 -0.92) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c7f65974-a22c-4d8e-9cfc-a95a15ef109b)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9a91c686-a690-4f7c-81ce-7558d90e7008)) (fp_line (start 6.68 0) (end 5.73 0) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f051446b-7492-49fc-97e1-20b66900b04f)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f0abbb70-f19f-4efa-868a-f49225aa4db4)) (fp_line (start -0.95 -1.05) (end -0.95 1.05) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 93066642-58b8-4f1a-9cbc-fdc4f23f4be3)) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 76726963-60b3-4995-abd7-2e348c68159b)) (fp_line (start -0.95 1.05) (end 8.57 1.05) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 65e9010a-ca23-495d-96bf-4d151da6fc22)) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 455f32d2-ac9e-4a91-9e07-a235b47797ca)) (fp_line (start 8.57 -1.05) (end -0.95 -1.05) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2bcee91b-2645-458c-b840-05cbb0f683db)) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp caea6181-d077-47aa-a7e5-d658f0cf6065)) (fp_line (start 8.57 1.05) (end 8.57 -1.05) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp eb8dbf2d-1f45-46a0-9037-4bbe907792d0)) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 08c1dc32-77c5-4536-8419-edfa657f3531)) (fp_line (start 0 0) (end 2.01 0) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1e74f30d-31ae-4ab1-ab68-96009c86a3c9)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fbaf2fc7-aa81-4a4e-b5ee-982d0be40af1)) (fp_line (start 2.01 -0.8) (end 2.01 0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c7fd440b-3c22-4000-a7f0-b28aa2dca98f)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c5977b47-69a0-4c79-8ad2-a18cd46d295b)) (fp_line (start 2.01 0.8) (end 5.61 0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0c3e98ce-f685-46c3-b211-baa09f5de905)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cfbbae16-e5c7-4f85-8aef-d5a47c07ab9d)) (fp_line (start 5.61 -0.8) (end 2.01 -0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0a2c6659-4ee3-41cb-85ef-88c9531838f3)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d3c70af2-428d-4880-ba24-551060cd2c95)) (fp_line (start 5.61 0.8) (end 5.61 -0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 314eb083-169c-4c09-a5a7-9039b202230e)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 33aeefa6-a4d8-4168-aa37-4743101f2129)) (fp_line (start 7.62 0) (end 5.61 0) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9aa76f4b-7e25-4164-9671-9c532088934e)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fa18e6d0-fcc6-470b-bee1-936c695c311c)) (pad "1" thru_hole circle (at 0 0 90) (size 1.4 1.4) (drill 0.7) (layers "*.Cu" "*.Mask") - (net 20 "A15") (pintype "passive") (tstamp 114506b1-058a-41c9-bb05-2e6aada4475e)) + (net 20 "A15") (pintype "passive") (tstamp a2da0920-70c1-4f98-b9ee-4a7ebbcb4d8d)) (pad "2" thru_hole rect (at 7.62 0 90) (size 1.4 1.4) (drill 0.7) (layers "*.Cu" "*.Mask") - (net 23 "GND") (pintype "passive") (tstamp c85c02a3-0c7e-44b1-9abe-27ec18526bc3)) + (net 23 "GND") (pintype "passive") (tstamp f50f345b-6513-4bf2-9ad2-f331aadd6bcc)) (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) @@ -3217,101 +3263,101 @@ (path "/114114d0-2df9-40ab-aa29-b92059ff0cc9") (attr smd) (fp_text reference "LM2596" (at 6.57 -12.86 90 unlocked) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.1))) - (tstamp ae8249f4-b0c2-413f-8d39-2301bfdad240) + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 91549f1b-2caf-4624-8a0a-d36cd925088c) ) (fp_text value "Conn_01x04_Pin" (at -6.148 -29.3 unlocked) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) - (tstamp ba262913-b76b-4896-b7ff-5215d19e97c0) + (tstamp 571d81c0-e59b-41e3-b255-556a5a1c8da9) ) (fp_text user "OUT+" (at 3.79 -40.996 90 unlocked) (layer "F.SilkS") (effects (font (size 1.5 1.5) (thickness 0.1)) (justify right bottom)) - (tstamp 35dc154b-7131-4149-959d-47f1007706dd) + (tstamp 4bfabdb6-a62d-45a6-b150-2e2b407072a6) ) (fp_text user "IN+" (at 3.81 -1.27 90 unlocked) (layer "F.SilkS") (effects (font (size 1.5 1.5) (thickness 0.1)) (justify bottom)) - (tstamp 4c2781b7-c867-4870-a7f1-8b50b182b918) - ) - (fp_text user "OUT-" (at 15.982 -40.996 90 unlocked) (layer "F.SilkS") - (effects (font (size 1.5 1.5) (thickness 0.1)) (justify right bottom)) - (tstamp 8c1bfa91-32be-43cf-b369-b4669eaa126c) + (tstamp 4e17ea68-13ce-4301-b747-82659a19d71b) ) (fp_text user "IN-" (at 16.002 -1.27 90 unlocked) (layer "F.SilkS") (effects (font (size 1.5 1.5) (thickness 0.1)) (justify bottom)) - (tstamp c162cf0f-927d-4b84-9c7c-e21c7c68008a) + (tstamp b96a5b24-57a5-469f-9555-a8dfad738e0c) + ) + (fp_text user "OUT-" (at 15.982 -40.996 90 unlocked) (layer "F.SilkS") + (effects (font (size 1.5 1.5) (thickness 0.1)) (justify right bottom)) + (tstamp cf8d167b-8d71-4caa-b8b5-c8abbbf6579d) ) (fp_text user "${REFERENCE}" (at -5 -27.8 unlocked) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) - (tstamp 1efdfd59-60ba-4f9b-8841-9cd5fc882b13) + (tstamp 04bdc4f9-cf11-4ced-a720-85ca7b3fc514) ) (fp_text user "${REFERENCE}" (at 2.794 3.81 unlocked) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) - (tstamp 3e672e5c-febb-4152-8203-634d888a9011) + (tstamp b1d83448-73f1-408c-b49e-49d9d8575b41) ) (fp_line (start -1.29 -40.996) (end -1.036 -41.25) - (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp a4344b4b-e7e7-4e28-a699-4c73f11c781b)) + (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 6a7343ad-f228-4dc1-94d7-b0a17ee7e3e2)) (fp_line (start -1.27 1.016) (end -1.29 -40.996) - (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 1ee17773-555e-4c42-aab4-89c1d1ecc487)) + (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 93e1bb92-f7f7-43e0-8646-13723b359cfe)) (fp_line (start -1.036 -38.71) (end -1.29 -38.964) - (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 4886b4e1-7156-4da4-8d59-1cee8117a5f7)) + (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 333b9a0b-75f3-4abd-8b65-076cdc413101)) (fp_line (start -1.016 -1.27) (end -1.27 -1.016) - (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 17dcf189-cd9c-4846-b390-c87a77d5ef19)) + (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 434ad0d2-ba5b-4079-b270-c4b0b771a89a)) (fp_line (start -1.016 1.27) (end -1.27 1.016) - (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 43f23fbc-d3d7-4e03-b254-54515c80e2c7)) + (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp f46b0530-3aeb-4847-a2b5-2fe8773ed44b)) (fp_line (start 0.996 -41.25) (end 1.25 -40.996) - (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 09156760-d925-4cba-bb7b-4cb491242c15)) + (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 6f9e0759-6952-4ac6-8e8d-be3cb5efa618)) (fp_line (start 0.996 -38.71) (end -1.036 -38.71) - (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp ea31c75e-2b49-4789-a97b-f77c9228b071)) + (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 93423fc8-f78b-4998-b7b4-c6ee2a46b045)) (fp_line (start 1.016 -1.27) (end -1.016 -1.27) - (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp f0b68707-ab6a-49cd-9c4b-303df78b6293)) + (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp ef22f3c1-f5b9-4c42-8bed-2f586f0a1f98)) (fp_line (start 1.016 -1.27) (end 1.27 -1.016) - (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 78a36e85-75a8-444e-8050-89c077c835d4)) + (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 9b448521-8465-406a-b22a-34d59726deca)) (fp_line (start 1.25 -38.964) (end 0.996 -38.71) - (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp b1c67dcf-003d-4b22-a66b-b23787d17db2)) + (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 05db1b37-eed6-4325-92e5-c8f20c8f9a6f)) (fp_line (start 1.25 -38.964) (end 1.25 -40.996) - (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 41755e5a-a8f0-46cd-a863-157a1e6c0e90)) + (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp f429a7bb-4936-49b2-9067-8a877d732ce8)) (fp_line (start 1.27 1.016) (end 1.016 1.27) - (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp dbf97932-c455-418e-b21a-3c67ca2483e0)) + (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp e108a08a-5085-4608-a31f-35d5dbe1bfe1)) (fp_line (start 1.27 1.016) (end 1.27 -1.016) - (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 9a860edd-1f70-428c-8963-5518611d4e63)) + (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 204fa6c0-30ee-4505-a1c8-7c5b5d92221a)) (fp_line (start 16.49 -40.996) (end 16.744 -41.25) - (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 67ea76c3-341b-4a3b-a59e-405946f674e8)) + (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp e5184dfb-f584-4171-8c4b-340572d35740)) (fp_line (start 16.49 -38.964) (end 16.49 -40.996) - (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp d35da09a-1810-4338-b524-f768c36bb5a4)) + (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp f80b8d66-d0b2-416c-accd-d86596848fde)) (fp_line (start 16.51 -1.016) (end 16.51 1.016) - (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 435bf3ae-532f-4301-aeb2-b322fc2aba54)) + (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 40c33a59-9758-4ffe-81c4-ac942d87d883)) (fp_line (start 16.51 -1.016) (end 16.764 -1.27) - (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp bb17a537-6f82-4e32-8ddc-f1d06b24b54b)) + (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 04c205c8-3cf5-41d0-bda3-0a8908210d7a)) (fp_line (start 16.744 -38.71) (end 16.49 -38.964) - (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 4da09293-b989-44e7-bb5c-f0ebdf316e08)) + (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp e8238aa4-3af5-418b-a369-468efd9d3b1b)) (fp_line (start 16.744 -38.71) (end 18.776 -38.71) - (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 1fd10682-8831-4635-a7b7-0bc60b858f6c)) + (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 76bf723f-a921-4804-9c40-0f7538492f20)) (fp_line (start 16.764 -1.27) (end 18.796 -1.27) - (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 8782bcfb-0d6c-488b-9e3b-4db64b5f048d)) + (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 24dca458-cf2c-497d-a4c4-416f9d8cd7c7)) (fp_line (start 16.764 1.27) (end 16.51 1.016) - (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 48d4f09f-c257-4286-97cf-09d13d9544fc)) + (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 3ded075b-052a-4471-b406-3f373095d07c)) (fp_line (start 18.776 -41.25) (end -1.036 -41.25) - (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 56f0e6fb-9aa5-451a-9fbb-03e748b3fa79)) + (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp e346eaf2-8874-473d-ab34-83fcc2f96643)) (fp_line (start 18.776 -41.25) (end 19.03 -40.996) - (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 978a1bd3-3892-4b64-b316-de9b174d3824)) + (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp c7e2f365-4693-4a44-bf9d-1f2a363ec64d)) (fp_line (start 18.776 -38.71) (end 19.03 -38.964) - (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 7804b76d-e04a-4b9e-b273-3824fb389495)) + (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 7d7fb88c-ddc8-4790-bf0f-3e0847795f92)) (fp_line (start 18.796 -1.27) (end 19.05 -1.016) - (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp bd229215-1464-4b9d-81eb-44cf4e324c87)) + (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp bc52a7bb-dd29-4330-ad1f-c575b828ee05)) (fp_line (start 18.796 1.27) (end -1.016 1.27) - (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp fddef42c-98cf-42e8-8b18-5196081feea1)) + (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 2bb43567-d5d9-4e70-9bec-b2a946cd448a)) (fp_line (start 18.796 1.27) (end 19.05 1.016) - (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 988dfdde-3af4-45b8-a0a0-27030adf6ae3)) + (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 3e5853cd-03e3-4ae9-a6a1-b8f8ddbeb561)) (fp_line (start 19.05 1.016) (end 19.03 -40.996) - (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp d1814524-81cc-49f3-86c7-d6289c3d3c48)) + (stroke (width 0.1) (type default)) (layer "F.SilkS") (tstamp 9ff37684-c661-44ba-8eeb-f982162f8422)) (fp_circle (center 0.254 -22.86) (end 1.016 -23.114) - (stroke (width 0.1) (type default)) (fill none) (layer "F.SilkS") (tstamp 04c5942a-a51a-445c-8863-518ce0e5e978)) + (stroke (width 0.1) (type default)) (fill none) (layer "F.SilkS") (tstamp 1b7baf2e-a861-47dd-9f3a-239a22beabc8)) (fp_circle (center 8.255 -36.894) (end 12.255 -36.894) - (stroke (width 0.1) (type default)) (fill none) (layer "F.SilkS") (tstamp 0fe83c8e-8ca4-4a3b-b8d3-9e86e0a15a07)) + (stroke (width 0.1) (type default)) (fill none) (layer "F.SilkS") (tstamp 1dd053f4-953f-40c3-8753-9954b1744643)) (fp_circle (center 8.255 -3.175) (end 12.255 -3.175) - (stroke (width 0.1) (type default)) (fill none) (layer "F.SilkS") (tstamp 74516c12-3a88-43db-9b3d-8f23e1af7441)) + (stroke (width 0.1) (type default)) (fill none) (layer "F.SilkS") (tstamp 61c8a4a6-170d-4fbb-b981-9c00924577d7)) (fp_circle (center 11.684 -26.797) (end 15.684 -26.797) - (stroke (width 0.1) (type default)) (fill none) (layer "F.SilkS") (tstamp ad1a8403-d863-460e-8c81-5a3bb41cf2f4)) + (stroke (width 0.1) (type default)) (fill none) (layer "F.SilkS") (tstamp 56625c39-8916-4d61-b751-b764a6018423)) (fp_poly (pts (xy -0.762 -21.717) @@ -3320,7 +3366,7 @@ (xy -0.762 -31.75) ) - (stroke (width 0.1) (type solid)) (fill none) (layer "F.SilkS") (tstamp 78afd955-2e0a-48ad-b1fc-3aa8d574a500)) + (stroke (width 0.1) (type solid)) (fill none) (layer "F.SilkS") (tstamp d17d2adb-fcd8-48be-b68d-8ee8514da8ee)) (fp_poly (pts (xy 0.127 -7.874) @@ -3329,7 +3375,7 @@ (xy 0.127 -17.907) ) - (stroke (width 0.1) (type solid)) (fill none) (layer "F.SilkS") (tstamp ca768d24-00ee-4add-99b8-cc2160aed329)) + (stroke (width 0.1) (type solid)) (fill none) (layer "F.SilkS") (tstamp 5edcc38e-dc12-42c3-ae32-1a79d6579d8d)) (fp_poly (pts (xy 6.096 -21.717) @@ -3338,7 +3384,7 @@ (xy 6.096 -31.75) ) - (stroke (width 0.1) (type solid)) (fill none) (layer "F.SilkS") (tstamp 8534d2fd-b5c1-4d7b-9aa1-1ed6ea8a0f0e)) + (stroke (width 0.1) (type solid)) (fill none) (layer "F.SilkS") (tstamp 60b1a3d6-8537-4701-8754-cbb81b9145fd)) (fp_poly (pts (xy 12.573 -15.875) @@ -3347,7 +3393,7 @@ (xy 12.573 -16.891) ) - (stroke (width 0.1) (type solid)) (fill none) (layer "F.SilkS") (tstamp d022d9f0-0b3f-4c6a-8409-a5b016aa1d21)) + (stroke (width 0.1) (type solid)) (fill none) (layer "F.SilkS") (tstamp 1e2ef891-9a98-439b-ba30-5c6fa3ef597b)) (fp_poly (pts (xy 12.573 -14.12875) @@ -3356,7 +3402,7 @@ (xy 12.573 -15.14475) ) - (stroke (width 0.1) (type solid)) (fill none) (layer "F.SilkS") (tstamp 9c9e57dc-7368-4ef2-a150-7acf082e48cc)) + (stroke (width 0.1) (type solid)) (fill none) (layer "F.SilkS") (tstamp 0d27367e-111f-44ba-a96b-401e03124d64)) (fp_poly (pts (xy 12.573 -12.3825) @@ -3365,7 +3411,7 @@ (xy 12.573 -13.3985) ) - (stroke (width 0.1) (type solid)) (fill none) (layer "F.SilkS") (tstamp 61ebed4e-321b-4f1b-b56c-81c3cb556148)) + (stroke (width 0.1) (type solid)) (fill none) (layer "F.SilkS") (tstamp d71ff8ed-64b1-4505-8116-455fa9fa057c)) (fp_poly (pts (xy 12.573 -10.63625) @@ -3374,7 +3420,7 @@ (xy 12.573 -11.65225) ) - (stroke (width 0.1) (type solid)) (fill none) (layer "F.SilkS") (tstamp b0a43b1a-29e1-481d-87a9-0a38ac577df2)) + (stroke (width 0.1) (type solid)) (fill none) (layer "F.SilkS") (tstamp 50323a38-7562-4cf5-93e6-8048d2e84a58)) (fp_poly (pts (xy 12.573 -8.89) @@ -3383,42 +3429,42 @@ (xy 12.573 -9.906) ) - (stroke (width 0.1) (type solid)) (fill none) (layer "F.SilkS") (tstamp e3e61538-99dc-422f-b671-34102eb5998b)) + (stroke (width 0.1) (type solid)) (fill none) (layer "F.SilkS") (tstamp 3495a318-532a-4ebd-8b2b-31ac9f874490)) (fp_line (start -1.42 -41.34) (end 19.18 -41.34) - (stroke (width 0.05) (type default)) (layer "F.CrtYd") (tstamp 1941841f-fd8f-4bfd-bd10-1e0e7adb537d)) + (stroke (width 0.05) (type default)) (layer "F.CrtYd") (tstamp 5474a09b-6d0a-4fd8-8507-31eaeee489a2)) (fp_line (start -1.4 -6.4) (end -1.42 -41.34) - (stroke (width 0.05) (type default)) (layer "F.CrtYd") (tstamp d2d5d5c9-64e1-4205-8c97-fe31a85d51fd)) + (stroke (width 0.05) (type default)) (layer "F.CrtYd") (tstamp 7a44768f-e5e3-4665-94db-61b3d07955ec)) (fp_line (start -1.4 -3.6) (end 2.54 -3.6) - (stroke (width 0.05) (type default)) (layer "F.CrtYd") (tstamp d271cd83-2d24-4092-8f61-7ec36b4962ec)) + (stroke (width 0.05) (type default)) (layer "F.CrtYd") (tstamp 0de3cc53-db02-4e10-a612-2657b636916e)) (fp_line (start -1.4 1.4) (end -1.4 -3.6) - (stroke (width 0.05) (type default)) (layer "F.CrtYd") (tstamp 6e6a5442-c044-43a2-a052-339404c35184)) + (stroke (width 0.05) (type default)) (layer "F.CrtYd") (tstamp fd914360-4edc-4ecd-83fe-9e6a0e8df417)) (fp_line (start 2.54 -6.4008) (end -1.4 -6.4) - (stroke (width 0.05) (type default)) (layer "F.CrtYd") (tstamp 20b11910-ab41-4e8f-a692-8796d4998dc9)) + (stroke (width 0.05) (type default)) (layer "F.CrtYd") (tstamp 8071a1f8-34e6-4702-8c5c-49b585ef295d)) (fp_line (start 2.54 -3.6) (end 2.54 -6.4008) - (stroke (width 0.05) (type default)) (layer "F.CrtYd") (tstamp 655accec-b19b-4c5c-a077-4bdef8a41b53)) + (stroke (width 0.05) (type default)) (layer "F.CrtYd") (tstamp 895e1e7a-4e79-474b-9c76-c1fa4a835db0)) (fp_line (start 15.24 -37) (end 15.24 -34.2) - (stroke (width 0.05) (type default)) (layer "F.CrtYd") (tstamp a6d2979e-a814-47bd-a198-0546000e5881)) + (stroke (width 0.05) (type default)) (layer "F.CrtYd") (tstamp 576709ae-f8d1-46d7-89c5-7ff6cd3f6b45)) (fp_line (start 15.24 -34.2) (end 19.2 -34.2) - (stroke (width 0.05) (type default)) (layer "F.CrtYd") (tstamp 64082b0c-9ab6-46f0-8ef1-13466a2874a4)) + (stroke (width 0.05) (type default)) (layer "F.CrtYd") (tstamp f5488047-7172-4ee7-85a2-083c906777c6)) (fp_line (start 19.18 -41.34) (end 19.2 -37) - (stroke (width 0.05) (type default)) (layer "F.CrtYd") (tstamp 258d5381-cdef-4b0e-ae71-d5e2a5bc1614)) + (stroke (width 0.05) (type default)) (layer "F.CrtYd") (tstamp 63bace14-6cef-4489-9d92-a40519182f6b)) (fp_line (start 19.2 -37) (end 15.24 -37) - (stroke (width 0.05) (type default)) (layer "F.CrtYd") (tstamp 493e387c-9b3d-4d47-b62f-e2f90d2e3c19)) + (stroke (width 0.05) (type default)) (layer "F.CrtYd") (tstamp dab16767-9813-4eb3-90f9-9dd48fff3c81)) (fp_line (start 19.2 -34.2) (end 19.2 1.4) - (stroke (width 0.05) (type default)) (layer "F.CrtYd") (tstamp f1d1878f-aa5f-4c64-98ab-efe813291dd4)) + (stroke (width 0.05) (type default)) (layer "F.CrtYd") (tstamp 5e3f485f-f708-4ce6-ba32-b80ea16707e5)) (fp_line (start 19.2 1.4) (end -1.4 1.4) - (stroke (width 0.05) (type default)) (layer "F.CrtYd") (tstamp d56ee351-9522-49fe-a998-dbb1472cf8fd)) + (stroke (width 0.05) (type default)) (layer "F.CrtYd") (tstamp faa797da-62fa-451f-979c-f590b75e642e)) (pad "1" thru_hole circle (at 0 0) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 21 "VIN") (pinfunction "Pin_1") (pintype "passive") (tstamp b9e7b218-4100-4379-81ce-0e4d48649f9c)) + (net 21 "VIN") (pinfunction "Pin_1") (pintype "passive") (tstamp 5b0d93b4-2297-40a9-92ca-2d1631240913)) (pad "2" thru_hole circle (at 17.78 0) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 23 "GND") (pinfunction "Pin_2") (pintype "passive") (tstamp c1a1887a-7b60-4414-81ef-452a566dc5d4)) + (net 23 "GND") (pinfunction "Pin_2") (pintype "passive") (tstamp d9f00066-cac5-45b1-95ab-c72dba678651)) (pad "3" thru_hole circle (at 17.78 -40) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 23 "GND") (pinfunction "Pin_3") (pintype "passive") (tstamp 167f99a3-3546-443d-93ea-046f9940820a)) + (net 23 "GND") (pinfunction "Pin_3") (pintype "passive") (tstamp 9b279c34-60b8-4733-bc7e-5b2b05882156)) (pad "4" thru_hole circle (at 0 -40) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 22 "AREF") (pinfunction "Pin_4") (pintype "passive") (tstamp 79dc86e1-be82-4230-b923-7d4f4d47ffb0)) + (net 22 "AREF") (pinfunction "Pin_4") (pintype "passive") (tstamp 0aa4368a-9129-480e-9eb4-0bcc661d7657)) ) - (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (layer "F.Cu") + (footprint "ScitechKorea:R250" (layer "F.Cu") (tstamp a114bbf2-b661-4816-8714-3cd6f9a73258) (at 103.647145 134.91 90) (descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf") @@ -3429,54 +3475,54 @@ (property "ki_keywords" "R res resistor") (path "/a4c33461-2f68-4cc1-b6d0-98338bd62d1b") (attr through_hole) - (fp_text reference "R3" (at 10.11 0 90) (layer "F.SilkS") + (fp_text reference "R3" (at 3.8 0 90) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) - (tstamp 54ba7744-27b9-4edd-a848-a49c3022d69a) + (tstamp b2354201-05e3-4556-8f7f-69a73cc016ff) ) - (fp_text value "R" (at 3.81 1.92 90) (layer "F.Fab") hide + (fp_text value "R" (at 3.81 1.92 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) - (tstamp b756169f-5b92-457f-a851-cfbdae4e8004) + (tstamp 8f0aea87-6740-47bb-bed4-f208459c7821) ) (fp_text user "${REFERENCE}" (at 3.81 0 90) (layer "F.Fab") (effects (font (size 0.72 0.72) (thickness 0.108))) - (tstamp 9f114f84-04ce-427f-9034-bf4283e5681d) + (tstamp fa25f000-5c93-4b69-83c8-762e2aea101b) ) (fp_line (start 0.94 0) (end 1.89 0) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 72b817b2-9c4f-4c74-bf69-e75d662f8fe4)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ac14b11e-94a9-47a5-9378-cc2e60630df5)) (fp_line (start 1.89 -0.92) (end 1.89 0.92) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 84c40e6c-e2a4-4809-899d-1e2d5dc452be)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0696e798-2c6d-4b49-b12f-ad164acf8cc8)) (fp_line (start 1.89 0.92) (end 5.73 0.92) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 37318e58-27ed-4c43-9bff-f94fcdf61abf)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d807cc91-1655-401e-a1bf-01b505a26edf)) (fp_line (start 5.73 -0.92) (end 1.89 -0.92) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7cc299d7-98d5-4c5c-b8c0-46b6d8b94d81)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6f1e8b14-c50b-416a-a193-d92b45e5342b)) (fp_line (start 5.73 0.92) (end 5.73 -0.92) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5e6b0e76-b774-4c51-a435-d91513a9fa5e)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp efab7267-5729-40ec-b4fe-a99203e02fd3)) (fp_line (start 6.68 0) (end 5.73 0) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 1fc4348e-3506-4c96-847f-620ba5ca825a)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e57bdcaa-c9d4-417d-858f-54359668b17f)) (fp_line (start -0.95 -1.05) (end -0.95 1.05) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 597a1e8d-2c1f-4581-8d12-a0ba9febef63)) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 39b17f45-a23a-412e-904f-af99671c4b62)) (fp_line (start -0.95 1.05) (end 8.57 1.05) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 344b312c-384f-44ce-ae08-112734ce1f5b)) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 47e45fbd-347e-43b9-9bd4-ce851e1c39d0)) (fp_line (start 8.57 -1.05) (end -0.95 -1.05) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 68033bb5-f650-4c09-882d-9ee766b0a9ea)) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6ca74e5e-bb6e-48be-a0e3-068d3689d596)) (fp_line (start 8.57 1.05) (end 8.57 -1.05) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 92479d8e-2c5f-42e1-8ed2-b258c83d041f)) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5aba9bc7-b555-494d-be9b-283cd59536e5)) (fp_line (start 0 0) (end 2.01 0) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e18316e6-ccce-4777-82b9-0129d0bb1f2d)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 076870a0-861e-4882-8906-e13a5488dcf9)) (fp_line (start 2.01 -0.8) (end 2.01 0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 67588aef-8b64-4062-85f8-7e096030c354)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 785a0679-bc06-4dc4-a31e-87378abb3b0c)) (fp_line (start 2.01 0.8) (end 5.61 0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6f608fc3-1a58-4add-a022-ea4d5caf75a0)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 849bc7b4-4c1f-4783-99d4-8726a0bfc9cd)) (fp_line (start 5.61 -0.8) (end 2.01 -0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ddffcaeb-2a6d-4726-a397-7aca0e625a28)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp de3ed90a-b4f8-450e-b32a-576d10a70c9c)) (fp_line (start 5.61 0.8) (end 5.61 -0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 590db5e7-747b-4482-a45f-8c55d77ad74e)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 39d4868f-a721-40d7-bda0-16f396f2a978)) (fp_line (start 7.62 0) (end 5.61 0) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f9dcd62e-a570-4a17-8983-f034610cc026)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8e1352c4-82bf-467d-abbc-48adb329860c)) (pad "1" thru_hole circle (at 0 0 90) (size 1.4 1.4) (drill 0.7) (layers "*.Cu" "*.Mask") - (net 8 "A03") (pintype "passive") (tstamp c25d0e95-54a9-4a77-889c-102a5bad592d)) + (net 8 "A03") (pintype "passive") (tstamp 5f5a8e9f-56e2-44a6-828d-6ffb166ab893)) (pad "2" thru_hole rect (at 7.62 0 90) (size 1.4 1.4) (drill 0.7) (layers "*.Cu" "*.Mask") - (net 23 "GND") (pintype "passive") (tstamp 5592c638-76ff-40da-93c8-d30dbfb3f9c8)) + (net 23 "GND") (pintype "passive") (tstamp 23034b0d-b150-45f5-9f09-9c24bacdde5e)) (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) @@ -3486,7 +3532,7 @@ (footprint "ScitechKorea:I2C_Socket" (layer "F.Cu") (tstamp a8632d81-18a9-4ec9-8073-82b7eb1cfd36) - (at 144.58 65.02) + (at 145.96 65.02) (property "Sheetfile" "megaPCB.kicad_sch") (property "Sheetname" "") (property "ki_description" "Generic connector, single row, 01x04, script generated") @@ -3589,7 +3635,7 @@ (footprint "ScitechKorea:I2C_Socket" (layer "F.Cu") (tstamp aa9ec532-0696-403a-b0c9-d616535f403c) - (at 157.59 88.57) + (at 158.69 88.57) (property "Sheetfile" "megaPCB.kicad_sch") (property "Sheetname" "") (property "ki_description" "Generic connector, single row, 01x04, script generated") @@ -3690,7 +3736,7 @@ (net 48 "5V") (pinfunction "Pin_4") (pintype "passive") (tstamp 620e752a-66f1-4ca0-ae4d-8c146c63806f)) ) - (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (layer "F.Cu") + (footprint "ScitechKorea:R250" (layer "F.Cu") (tstamp aac9218e-319a-456a-bbc9-a0711ade3a72) (at 97.478575 134.91 90) (descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf") @@ -3701,54 +3747,54 @@ (property "ki_keywords" "R res resistor") (path "/d5779539-37d5-47e4-a09d-b9a552e5ecad") (attr through_hole) - (fp_text reference "R1" (at 10.11 0 90) (layer "F.SilkS") + (fp_text reference "R1" (at 3.8 0 90) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) - (tstamp 4fa7e26d-efff-449c-a9c7-4c8645cc13cf) + (tstamp d0d24e0a-ed56-4d8c-ab7e-07ef87178753) ) - (fp_text value "R" (at 3.81 1.92 90) (layer "F.Fab") hide + (fp_text value "R" (at 3.81 1.92 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) - (tstamp 82659580-7be3-4150-9175-56e364247eab) + (tstamp 735a7a67-eb72-4008-bdf5-86cbdc4796f0) ) (fp_text user "${REFERENCE}" (at 3.81 0 90) (layer "F.Fab") (effects (font (size 0.72 0.72) (thickness 0.108))) - (tstamp 4f3baa78-fd30-4167-be1f-4c96d1b95f6e) + (tstamp d35c7653-d4ce-443f-b9b4-3a52a274d6c5) ) (fp_line (start 0.94 0) (end 1.89 0) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8847243c-d3cc-48a0-a0ce-ae8451edef23)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp da6e7fa1-7a00-497f-8341-5e96c932d71d)) (fp_line (start 1.89 -0.92) (end 1.89 0.92) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c69df68d-2d2a-409a-9f83-6fa4eaff420b)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp be38ad21-85f7-4153-9f90-15a757432733)) (fp_line (start 1.89 0.92) (end 5.73 0.92) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b5238cb6-181d-4a7e-951c-d2e9e02207fd)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp a5fc1a6e-d6d2-4ba9-a88d-f6ccfac601b2)) (fp_line (start 5.73 -0.92) (end 1.89 -0.92) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c9fcb5d0-ea49-44af-9b92-69e6faefa2af)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 61145857-6e12-4ebf-a706-22ed94e8169d)) (fp_line (start 5.73 0.92) (end 5.73 -0.92) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d6689667-1b43-49ff-a81d-896d4c995e7b)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3a6d01e1-d91a-4f11-94c1-267717a6640f)) (fp_line (start 6.68 0) (end 5.73 0) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 725488d0-d5e0-49d7-bd5c-eab53d490bb7)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f15c82f3-df98-48a6-835e-8ddaabd04f13)) (fp_line (start -0.95 -1.05) (end -0.95 1.05) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d250e567-d31d-4154-b351-128093dbd97d)) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2ec27348-ee8e-4df7-8c7b-ad4479c03754)) (fp_line (start -0.95 1.05) (end 8.57 1.05) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7cd4af4d-6e04-4381-a10e-fd5ad1907560)) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7dad74af-f776-4ed1-a57d-ed6cf090c949)) (fp_line (start 8.57 -1.05) (end -0.95 -1.05) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8211b468-c8c8-4833-aa75-e79aff91d86e)) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp cd501548-1e77-43cd-b364-d1ed2c07a1c4)) (fp_line (start 8.57 1.05) (end 8.57 -1.05) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 767e3953-b3b6-4c6b-a71c-6c6f3e7af96e)) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a6ad9d72-4b01-4739-9110-c46787daa753)) (fp_line (start 0 0) (end 2.01 0) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9ac79ded-d5f1-4e5d-8312-09d18a43c323)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ce0af962-79be-4a21-a404-583691e67787)) (fp_line (start 2.01 -0.8) (end 2.01 0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3aeeb9b0-83f0-467e-81cc-3b4bae058499)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 720ce8ae-d1ae-4c59-bc66-afa22d57468c)) (fp_line (start 2.01 0.8) (end 5.61 0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 78079612-121e-4afc-932e-9884df76e105)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 900169c1-918b-4594-9f11-863d6dd99637)) (fp_line (start 5.61 -0.8) (end 2.01 -0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5bb9e2ab-6092-4374-98c3-090b6d210c89)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8c888d4f-2eee-4c1f-bc1d-6676ab91b4e5)) (fp_line (start 5.61 0.8) (end 5.61 -0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp bcd1c738-8319-496c-8586-1826f62fb8c7)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b3b54a7f-f5a1-4037-8ec4-89bbdf9ec519)) (fp_line (start 7.62 0) (end 5.61 0) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 6842fea0-c090-4035-b7fc-3aab946f0c9f)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fcffeb2e-2dd5-4607-b3d7-b2e6abec3c1b)) (pad "1" thru_hole circle (at 0 0 90) (size 1.4 1.4) (drill 0.7) (layers "*.Cu" "*.Mask") - (net 6 "A01") (pintype "passive") (tstamp b2eea35d-b898-44e0-b3d6-8f2ff4cafcd1)) + (net 6 "A01") (pintype "passive") (tstamp 08d18c35-deb1-4deb-92dc-1b7939ce63f5)) (pad "2" thru_hole rect (at 7.62 0 90) (size 1.4 1.4) (drill 0.7) (layers "*.Cu" "*.Mask") - (net 23 "GND") (pintype "passive") (tstamp ddb4b514-2a63-4e83-bfe1-956a83dd97b2)) + (net 23 "GND") (pintype "passive") (tstamp cc946ff5-9bca-41c5-b1df-823b7c9ca803)) (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) @@ -3756,7 +3802,33 @@ ) ) - (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (layer "F.Cu") + (footprint "ScitechKorea:ScrewHole" (layer "F.Cu") + (tstamp b27fb931-a6b4-460e-a651-b493e5891159) + (at 140 63) + (attr through_hole) + (fp_text reference "REF**" (at -0.2175 -0.54 unlocked) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.1))) + (tstamp 78d3a4ee-122d-4c71-ad53-3f006abfe012) + ) + (fp_text value "ScrewHole" (at -0.2175 0.96 unlocked) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp bdb42714-5190-4307-a683-5042c29b3318) + ) + (fp_text user "${REFERENCE}" (at -0.2175 2.46 unlocked) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 17abde2d-fb5d-4c5e-8e41-6bc2c7f89ad2) + ) + (fp_circle (center 0 0) (end 2.5 0) + (stroke (width 0.15) (type solid)) (fill none) (layer "F.CrtYd") (tstamp d061e6dc-49a3-4e46-99b9-469ee63abd93)) + (fp_circle (center 0 0) (end 3.2 0) + (stroke (width 0.15) (type solid)) (fill none) (layer "B.Fab") (tstamp 96b16a85-6781-4fff-be44-d9dc701d7cb9)) + (fp_circle (center 0 0) (end 3.2 0) + (stroke (width 0.15) (type solid)) (fill none) (layer "F.Fab") (tstamp 92e92e1a-451a-4425-8ab9-0cac41108e63)) + (pad "" np_thru_hole circle (at 0 0) (size 3.2 3.2) (drill 3.2) (layers "F&B.Cu" "*.Mask") + (clearance 1) (tstamp 6b780fc2-2d3c-43e1-b293-a98c5e7dcf3c)) + ) + + (footprint "ScitechKorea:R250" (layer "F.Cu") (tstamp b5e43be0-72c1-4b90-812a-09739801c9fd) (at 94.39429 134.91 90) (descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf") @@ -3767,54 +3839,54 @@ (property "ki_keywords" "R res resistor") (path "/d9bc24c7-9207-4bb0-aa33-4856380c9538") (attr through_hole) - (fp_text reference "R0" (at 10.11 0 90) (layer "F.SilkS") + (fp_text reference "R0" (at 3.8 0 90) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) - (tstamp afbdff04-f008-44fa-8df0-df897f00c73b) + (tstamp 7926e153-85a1-462b-bc9d-b9defffd3d3f) ) - (fp_text value "R" (at 3.81 1.92 90) (layer "F.Fab") hide + (fp_text value "R" (at 3.81 1.92 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) - (tstamp 31566148-cff3-4e73-9eca-c86b4a815d0b) + (tstamp e4e18ff2-2a1b-4696-8b78-e8d3dc41d343) ) (fp_text user "${REFERENCE}" (at 3.81 0 90) (layer "F.Fab") (effects (font (size 0.72 0.72) (thickness 0.108))) - (tstamp 6840f844-387f-4d56-a6d1-58dec8336ad5) + (tstamp b1857e1b-7a8e-4ef4-bc7f-aebe1485f1e2) ) (fp_line (start 0.94 0) (end 1.89 0) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5273f560-4c61-4db1-ab32-956998ad1463)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 61efb47e-c104-4f84-b94a-4f31d233171b)) (fp_line (start 1.89 -0.92) (end 1.89 0.92) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 910a3f16-4285-4715-8c81-bf75a2677f14)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e1631a66-f886-45ec-b627-eb9e16195892)) (fp_line (start 1.89 0.92) (end 5.73 0.92) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 6c3ad08e-24d5-4bbe-a971-ccc164fc36ed)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e43c62db-3a56-4282-9f6e-ee600563509c)) (fp_line (start 5.73 -0.92) (end 1.89 -0.92) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d24bcb59-7bf1-4b1e-ba3b-7c3ada9f80db)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 460acc13-f6fe-4a41-abd2-b5c7874189a3)) (fp_line (start 5.73 0.92) (end 5.73 -0.92) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b4eea7a2-ef55-42f1-992b-68a65ad156c1)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp abf2113c-8a74-4254-98f8-30ee41052743)) (fp_line (start 6.68 0) (end 5.73 0) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8237cc2d-c2eb-4657-a016-60535e1d7295)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp f48c78f7-82d2-4fc7-b94f-14315615be9b)) (fp_line (start -0.95 -1.05) (end -0.95 1.05) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 8ee53d73-2588-4941-bfda-e028ce4950c6)) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 08f1d95a-89b5-4308-b68e-7a62c89e96cb)) (fp_line (start -0.95 1.05) (end 8.57 1.05) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5439eed4-314d-43a1-9152-30e13c1be51b)) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp f6753411-0b58-48f1-9e6f-b825acea9d4c)) (fp_line (start 8.57 -1.05) (end -0.95 -1.05) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 544b2edd-3539-4e4f-be5a-5ac6f619b04c)) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 59891082-bc81-4a7f-8cf8-6824334b7fba)) (fp_line (start 8.57 1.05) (end 8.57 -1.05) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 15bc5feb-c991-4a80-8a4e-7112e8f9a0a4)) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7abcf15a-b81f-4428-a5d2-1523bf7d5cf0)) (fp_line (start 0 0) (end 2.01 0) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e046a945-e840-4c76-af73-430d5c7b7cb8)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9c4cdad7-367c-4fd5-8b62-c137804e9b6a)) (fp_line (start 2.01 -0.8) (end 2.01 0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp dbf72cb4-f608-4c54-8e73-58330abfe9cc)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fee873db-9b6a-4145-a897-bb469d6c4a69)) (fp_line (start 2.01 0.8) (end 5.61 0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ecd3309a-fe01-4ca0-b06d-c284c56a73c3)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c3abbc5a-2efb-4eda-9a16-ee17086cd908)) (fp_line (start 5.61 -0.8) (end 2.01 -0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ae12bd62-2819-44a4-82d2-9646601641f0)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 53f41bdc-892c-476b-be7b-762de86882c1)) (fp_line (start 5.61 0.8) (end 5.61 -0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 96d4c436-0623-4b7e-b706-34ae39b98da8)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c0dff42b-203a-460c-87d5-6119e76093ae)) (fp_line (start 7.62 0) (end 5.61 0) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1cf075f4-1770-4761-8728-0390703d8bf6)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a3dbf53e-791b-4aab-a851-536b50ea641c)) (pad "1" thru_hole circle (at 0 0 90) (size 1.4 1.4) (drill 0.7) (layers "*.Cu" "*.Mask") - (net 5 "A00") (pintype "passive") (tstamp 409bbf00-1e3a-42e8-829e-356d67104f55)) + (net 5 "A00") (pintype "passive") (tstamp 28e34a36-4919-4f27-9044-e18fb5d73314)) (pad "2" thru_hole rect (at 7.62 0 90) (size 1.4 1.4) (drill 0.7) (layers "*.Cu" "*.Mask") - (net 23 "GND") (pintype "passive") (tstamp d4b7640d-790e-4647-a5b6-f4ee0fd76c57)) + (net 23 "GND") (pintype "passive") (tstamp bd54a794-748f-444c-9615-633d42c53f2c)) (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) @@ -3822,7 +3894,7 @@ ) ) - (footprint "ScitechKorea:mega_socket_no_center" (layer "F.Cu") + (footprint "ScitechKorea:mega_socket_simplest" (layer "F.Cu") (tstamp b62f7572-c76a-4fef-8133-d2fe1d755575) (at 81.25 147.9) (property "Sheetfile" "megaPCB.kicad_sch") @@ -3833,898 +3905,904 @@ (attr through_hole) (fp_text reference "MEGA2560" (at 10.3 -1.4 unlocked) (layer "B.SilkS") (effects (font (size 1 1) (thickness 0.1)) (justify mirror)) - (tstamp ec19b8b6-41d6-4bef-9e0b-9f33c0782883) + (tstamp a12640a3-0932-48d0-bbf9-23f342d04cad) ) (fp_text value "Arduino_Mega2560_Shield" (at 5.08 7.62 unlocked) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) - (tstamp dc5045f1-8c48-491e-bfa1-8764190211e6) + (tstamp 56de4266-ae77-47b8-81b6-1ef3ea22df5e) ) (fp_text user "${REFERENCE}" (at 6.35 5.08 unlocked) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) - (tstamp 9fb15d22-4e46-45d2-a02b-1767ca3810ad) + (tstamp b5575867-94ce-4dab-bf7f-d68773471ff9) ) (fp_line (start 2.54 0) (end 87.63 0) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp e71a9380-cd07-4592-881a-14b1f785efa4)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 52f941c6-4b76-4e65-95ea-599cd6035e14)) (fp_line (start 6.096 -51.816) (end 6.096 -49.784) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 2609a66d-256b-424d-a60d-2032bc461803)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp b9075cf5-95cb-440e-b6cf-0a7f14bfd75f)) (fp_line (start 6.096 -51.816) (end 6.35 -52.07) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp aaa65f69-70d0-4d49-b29e-42396cd65961)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp b890e73f-9e11-49e7-bfbc-e2840d82b56e)) (fp_line (start 6.096 -49.784) (end 6.35 -49.53) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 4e501390-a60f-43e5-8e61-3a17600ab53d)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp fc4d7b25-f40a-4ca9-a24f-936364173db2)) (fp_line (start 6.35 -52.07) (end 8.382 -52.07) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp d15bf91f-25af-472a-85ad-05e08d7fb236)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 79f5e8e4-b082-4128-9e97-5d43c60d87f4)) (fp_line (start 6.35 -49.53) (end 8.382 -49.53) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp fe640b2c-6b10-4bf8-922e-b70d0c474715)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 272a7c8d-f04b-4f56-b965-848fb78e07de)) (fp_line (start 8.382 -52.07) (end 8.636 -51.816) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 0d460f5b-ebda-44a4-b999-19874fffbe53)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp c4db3521-b492-4987-b58a-189c3b46290e)) (fp_line (start 8.382 -49.53) (end 8.636 -49.784) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp e21d2058-1dd0-4bb0-ae24-e5142e472a78)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp c1a528fa-6cfd-4a23-b29e-76bd48dc01e5)) (fp_line (start 8.636 -51.816) (end 8.89 -52.07) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 5dca2e4c-0b93-4c0f-9c43-dd5053ad7194)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 95920f0d-0df0-4878-96af-225703de69e0)) (fp_line (start 8.636 -49.784) (end 8.89 -49.53) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 8a0435be-c527-4284-bc64-0086e3c4b837)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp c1628f67-3fe9-4e41-95f9-a21f4d60b7a3)) (fp_line (start 8.89 -52.07) (end 10.922 -52.07) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp f68bd884-790e-45a2-b138-7e95a3f56b9e)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp b781c6e7-2316-4ade-910b-033d750c7ccd)) (fp_line (start 8.89 -49.53) (end 10.922 -49.53) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 0a7a845b-c9b5-42ef-a7e8-828c1e8c8f67)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp ed43789f-a8d5-421c-bf89-ad59889eba7a)) (fp_line (start 10.922 -52.07) (end 11.176 -51.816) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 8f63f2f9-c29a-43aa-8e1e-038f80623785)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 78d7ab91-29fe-40c5-879d-4b5b11178371)) (fp_line (start 10.922 -49.53) (end 11.176 -49.784) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 610e15d2-a97f-4ceb-a629-9e6bbe5c4d83)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 6913e02d-5579-4054-91a0-552496d4cd2a)) (fp_line (start 11.176 -51.816) (end 11.43 -52.07) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 96ae65b8-644d-4323-84f3-9d4f54624810)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 35565218-36b4-477a-9a51-146b5cd6be9e)) (fp_line (start 11.176 -49.784) (end 11.43 -49.53) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 09162560-7c2c-4133-9868-eada09dece0d)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp dde4734b-97a0-4731-9f56-381c46094488)) (fp_line (start 11.43 -52.07) (end 13.462 -52.07) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 804b4f94-64c4-4a1d-9821-6f3954977977)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 78d5d117-25c8-4589-ac07-4c6cae147a61)) (fp_line (start 11.43 -49.53) (end 13.462 -49.53) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp eeb9f234-05bd-4f74-9764-fa1ce4b5186b)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 579f25bf-4572-45d4-80e1-021bd42670fe)) (fp_line (start 13.462 -52.07) (end 13.716 -51.816) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp b11631d4-a04b-41b1-90ff-c588b124235d)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 419f04a5-4edc-4f6b-9925-24467b2c59de)) (fp_line (start 13.462 -49.53) (end 13.716 -49.784) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp a9c12994-cf66-46d1-816e-ece1bc36a3a8)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp dfad0344-0cc3-4eff-b86e-a27edfbf2db6)) (fp_line (start 13.716 -51.816) (end 13.97 -52.07) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp da4806b9-ef07-4676-899d-39149b019b7f)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 293646ad-9a21-4761-a789-fdc0e335ea03)) (fp_line (start 13.716 -49.784) (end 13.97 -49.53) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp ebe01104-6515-49eb-9047-4ecc943b91f1)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 1e0655e0-bb93-4bee-a0e1-76524a95f7db)) (fp_line (start 13.97 -52.07) (end 16.002 -52.07) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp f232ae0b-c3e0-4374-88db-1e8be56d4770)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 7f47b24a-f17c-4286-8036-d680e205f62a)) (fp_line (start 13.97 -49.53) (end 16.002 -49.53) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 0eda92cf-5c4d-4c73-828e-57fa47f54afc)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 69be3850-b5bf-4587-96e8-4e5cb16d65a0)) (fp_line (start 15.24 -3.556) (end 15.24 -1.524) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 864aea96-e942-44e4-b834-d8463361d1ad)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 5679ee0d-7075-4cca-afa6-2f2fbf8879b8)) (fp_line (start 15.24 -3.556) (end 15.494 -3.81) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp eb7d236a-5376-415c-b769-9f9cd1577b8a)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp c77dfa1c-4539-42e8-84b7-7b6401953384)) (fp_line (start 15.24 -1.524) (end 15.494 -1.27) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp c76945db-36bb-4e74-acb6-85266462bf7b)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp b4776620-ad81-448e-8e73-dd1d21ad9308)) (fp_line (start 15.494 -3.81) (end 17.526 -3.81) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 10f9baa8-2f7e-4cf7-a265-002f238917d0)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 5a0362b2-8b92-44f8-a676-c30ce12c84ec)) (fp_line (start 15.494 -1.27) (end 17.526 -1.27) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp b9f346d2-2a76-4679-931e-efb1570fea53)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 0f3d1765-745f-4df3-9845-0af4a463259a)) (fp_line (start 16.002 -52.07) (end 16.256 -51.816) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp ce663f3c-704b-4e1d-9acf-e9adb97ee5ac)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp d32c63df-1965-448a-9dbb-4da0d4865f44)) (fp_line (start 16.002 -49.53) (end 16.256 -49.784) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 22fe4789-6912-41a3-adfc-9d8b0afc7f7e)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 9db20535-507a-420c-bb0c-98196ea1924c)) (fp_line (start 16.256 -51.816) (end 16.51 -52.07) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 9f3c3bba-cc31-4c51-be5e-4f6174b79f82)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 6d3ed508-5125-42fa-8e5f-09ab542dc860)) (fp_line (start 16.256 -49.784) (end 16.51 -49.53) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 7130447f-c69e-4758-acf3-c4f5a1d2e32b)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp de29108d-69d8-491d-b3ea-6deb256c8591)) (fp_line (start 16.51 -52.07) (end 18.542 -52.07) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 1e7a5410-9790-4d61-b280-8e81442a16ce)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 99ebbf58-bd19-4d50-a7d8-96a62245e45a)) (fp_line (start 16.51 -49.53) (end 18.542 -49.53) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp c54e5c9a-5fca-4808-9b9f-5df602f72f92)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 43bb44d7-925b-4fdf-a917-26ad823ba940)) (fp_line (start 17.526 -3.81) (end 17.78 -3.556) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 6e2cbc76-aa27-46b6-875f-ee9e6e3dd09d)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp e3dd6f2c-0cb6-40ec-a2b3-0ab34fa543a2)) (fp_line (start 17.526 -1.27) (end 17.78 -1.524) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 00646086-1de5-4837-8c1a-8e5b6c4299c1)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 4dfa3640-0f25-4e9e-b66b-53979b4dee2c)) (fp_line (start 17.78 -3.556) (end 18.034 -3.81) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 4e12c766-4102-42e7-b5f5-62b7d99eaec9)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp ac683a8d-21fe-4d6a-9b1f-278291cde10f)) (fp_line (start 17.78 -1.524) (end 18.034 -1.27) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp af912b9b-a9c0-48d4-ad57-adc8a0ebb9bb)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 803dda5d-780f-4f1b-a28d-a613c14769b9)) (fp_line (start 18.034 -3.81) (end 20.066 -3.81) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 1b31ed56-19c5-4796-ad89-9d0ba474a73d)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp f8e9641e-0f71-4bec-89ae-89fb219d8e78)) (fp_line (start 18.034 -1.27) (end 20.066 -1.27) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 69dc9c6a-d265-4988-8a92-60a4f7c39492)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp c96304ae-fbf6-4d28-8e3a-93a103db3e9e)) (fp_line (start 18.542 -52.07) (end 18.796 -51.816) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp b1241aa7-b2af-41d5-97c6-f319822fe5f8)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 58766eb3-f8d7-4fc6-bef0-1a29f9944e02)) (fp_line (start 18.542 -49.53) (end 18.796 -49.784) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 17c74c1a-981c-4854-99bd-73448040c025)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp f0d6243e-0c93-4427-a7f9-30526a2ec51f)) (fp_line (start 18.796 -51.816) (end 19.05 -52.07) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 72ef7ec4-f926-4299-a3af-8219dccc7f1e)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 81c32331-0821-499e-9a76-006e2260e3c2)) (fp_line (start 18.796 -49.784) (end 19.05 -49.53) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp b725fa96-5768-4d4f-89ff-eb733259669c)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 96e284c6-70ab-40a0-b300-4f3f3db1355b)) (fp_line (start 19.05 -52.07) (end 21.082 -52.07) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp af60b861-3964-4257-be7b-8a5fc650243d)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 3e8da346-8130-4b54-a25e-bef4ffe0557b)) (fp_line (start 19.05 -49.53) (end 21.082 -49.53) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 6e054f1b-6cdb-4b15-923e-de3b04ae2ef0)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp d8451706-c88a-458f-a3bb-61c6cc24f356)) (fp_line (start 20.066 -3.81) (end 20.32 -3.556) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 1c085375-3eef-4c32-8f28-a6684a9a9fbd)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 9f25859d-8e42-4538-afbf-4762141b94d8)) (fp_line (start 20.066 -1.27) (end 20.32 -1.524) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 6dc1d561-0674-42bd-be14-7c6b79df6788)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 28bc349c-502c-449c-975a-fc736cf395df)) (fp_line (start 20.32 -3.556) (end 20.574 -3.81) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp fb870d5e-ac37-4a57-8c4f-1e236113644f)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 91806d38-f5ba-4494-8e40-6ee7f5e9c868)) (fp_line (start 20.32 -1.524) (end 20.574 -1.27) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 5db59ece-70c2-42a8-adda-902e438ff2d1)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp f2fb4039-553a-473a-82dd-ae613d4bc260)) (fp_line (start 20.574 -3.81) (end 22.606 -3.81) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp b652620d-349a-4ae3-a17b-21ca11e2f48e)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp cafa1275-b575-4f67-9796-84f84173a7f8)) (fp_line (start 20.574 -1.27) (end 22.606 -1.27) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 54eb52c2-df81-4955-ba49-ddec2b3ade6e)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp a34e8c69-097f-4d3a-bf61-e53352df38a1)) (fp_line (start 21.082 -52.07) (end 21.336 -51.816) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 5640819b-0588-49cd-9abb-a6354017bd2d)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 021a7134-1b29-4446-903f-639590c14996)) (fp_line (start 21.082 -49.53) (end 21.336 -49.784) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp a1664b81-3419-4e60-ae92-ec084e080397)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 6dec810a-09b2-495f-b62b-ea1846188f06)) (fp_line (start 21.336 -51.816) (end 21.59 -52.07) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp a770409c-3e40-4e56-a053-2eaea366ff1a)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 45790fa1-dfb7-4693-93ab-d598ee5dbeec)) (fp_line (start 21.336 -49.784) (end 21.59 -49.53) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp d446acc3-6ac5-4ffa-b47c-d37ee358d9c6)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 9b151b94-d46c-4c92-ba02-c8ddeb2ef977)) (fp_line (start 21.59 -52.07) (end 23.622 -52.07) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 07db0a3f-c12a-4d0a-8751-def0240bff5e)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 8e68ef88-20ba-4537-ad08-5b5181113854)) (fp_line (start 21.59 -49.53) (end 23.622 -49.53) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 2694a639-9e5a-4ed0-aede-d700b2e40edb)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 05989f3c-93e5-4412-91a6-0651b441ce59)) (fp_line (start 22.606 -3.81) (end 22.86 -3.556) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp a8e3d597-0220-4267-91c6-fbf9b8275638)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp bb2cadb5-710f-4ff6-85f7-6a7634b59c69)) (fp_line (start 22.606 -1.27) (end 22.86 -1.524) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 11457e54-e510-446c-8b9b-c6a379a59293)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 71ccf3c5-83e1-4274-aeb3-57c8f6ea68b4)) (fp_line (start 22.86 -3.556) (end 23.114 -3.81) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 3edf87c8-70f6-4887-b679-449fe6172c6f)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp f3a86893-3002-495b-8b6e-8ca2304c4dd5)) (fp_line (start 22.86 -1.524) (end 23.114 -1.27) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 969c46c3-11f7-4012-8b17-5794c0c94997)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp a7143cde-5c79-47a2-a775-c7d251c9ee91)) (fp_line (start 23.114 -3.81) (end 25.146 -3.81) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 4447c554-419c-477e-a783-ec6ad4f7e80c)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp e8119006-64c9-4488-a3c3-5be12b362395)) (fp_line (start 23.114 -1.27) (end 25.146 -1.27) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp a10c4496-4459-4f76-ab83-42145f08c3df)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp e7ffc59c-f00b-44f5-be46-a4370f2d1e73)) (fp_line (start 23.622 -52.07) (end 23.876 -51.816) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 72b11ab6-2772-450d-b614-cfd65766feb0)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 0119804d-2530-42b0-8f9d-8b23251621f4)) (fp_line (start 23.622 -49.53) (end 23.876 -49.784) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 92cde2f1-54f1-497d-9de2-0f1003d2b37e)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp d983ecfb-7c17-4f20-9346-184b7e242f51)) (fp_line (start 23.876 -51.816) (end 24.13 -52.07) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 08ec3e3a-a736-41f0-a31a-36715519f7d3)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 734636e0-a23d-4749-a10b-2cc9a6699bbd)) (fp_line (start 23.876 -49.784) (end 24.13 -49.53) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 0925ebc7-18a7-4f99-b606-9d47de2c696a)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp ad880a96-0321-4f4d-a335-970f87a8c15a)) (fp_line (start 24.13 -52.07) (end 26.162 -52.07) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp f32072cf-4e4b-4feb-96fa-f94c52bcd73f)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp a6d2bcd8-7204-4321-ac19-21e9f220f5be)) (fp_line (start 24.13 -49.53) (end 26.162 -49.53) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 500cc53b-177c-41a6-90e2-6d96035e68b4)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp f5e4a141-5f01-432d-9398-5f05d614f84f)) (fp_line (start 25.146 -3.81) (end 25.4 -3.556) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 76ed5c7a-6da2-41cb-88dd-16a31f417f77)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 19d09e04-eab6-47dc-8204-773e2b90c8be)) (fp_line (start 25.146 -1.27) (end 25.4 -1.524) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 37be1a34-ec56-4f2d-b47e-3ef42a7c9372)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 58bca30f-54a8-45e7-92c6-f44b480a4f5a)) (fp_line (start 25.4 -3.556) (end 25.654 -3.81) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 3b629fc8-6a1b-4635-adff-2e2eb668666b)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 9746a134-9426-443f-bcf2-815ee1a0d41f)) (fp_line (start 25.4 -1.524) (end 25.654 -1.27) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp cabb68f1-95ae-448e-bb00-9e7c908feb3f)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 8e7698a5-cc81-4251-a6bc-52e350e9b14c)) (fp_line (start 25.654 -3.81) (end 27.686 -3.81) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 3435d02e-5916-4de7-96b5-a4f978a50b44)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 67b6d626-7d1f-4aba-ad53-67294444b9c8)) (fp_line (start 25.654 -1.27) (end 27.686 -1.27) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 0e174002-e0d8-4cbb-a0b4-0c03d4a93677)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 9756c15c-83fd-4d9d-a377-d10395ba3d89)) (fp_line (start 26.162 -52.07) (end 26.416 -51.816) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 2e510402-fb98-42cd-a8d9-ab1423b2ea68)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp bcf2ee51-372e-45f1-93c5-1814b4f8e59c)) (fp_line (start 26.162 -49.53) (end 26.416 -49.784) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp b4cc2036-f23b-4f80-9821-4f2a55942f05)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 6c6d3311-335d-4fab-b7c0-9abbf87ef69a)) (fp_line (start 26.42 -51.802) (end 26.674 -52.056) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 81ab92f6-7ef3-4835-bc8c-1c8ea0a3da05)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 9d7bfb3e-03ae-4d05-9a57-2c5e8ee6403b)) (fp_line (start 26.42 -49.77) (end 26.674 -49.516) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp c1c29842-2e5d-41d6-8ec4-b3deed97678e)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp f3e8d5ef-c578-4116-b851-4717183eb3c8)) (fp_line (start 26.674 -52.056) (end 28.706 -52.056) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 97ad91de-e484-4e3e-bce5-00b581fb6e12)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 64ae127f-1c73-4fc1-9c6c-c4842693557a)) (fp_line (start 26.674 -49.516) (end 28.706 -49.516) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 87d2ab7a-f357-48c3-a225-0bc92d786837)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 4652adae-1a62-42a9-9293-4470dbe50c88)) (fp_line (start 27.686 -3.81) (end 27.94 -3.556) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp dbc2deeb-1e38-48fa-92e0-d3088d5bb9d8)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp b41d2873-89fa-4cc3-b71e-7f6d511b8499)) (fp_line (start 27.686 -1.27) (end 27.94 -1.524) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 1d4f23da-d806-459f-8493-032e967494ca)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp abab3468-08fa-40f1-a55d-281078a421fd)) (fp_line (start 27.94 -3.556) (end 28.194 -3.81) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 28b362ed-fc2f-4907-a22c-895a87bbfebb)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 42cb5a49-b625-4f24-a0e2-a404103da680)) (fp_line (start 27.94 -1.524) (end 28.194 -1.27) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp f7aa7934-75a2-46a5-9488-20f2a1bc0bf4)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp ff433b87-b358-4461-b29a-9fb659cd4bf4)) (fp_line (start 28.194 -3.81) (end 30.226 -3.81) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 317db13f-c011-401c-8525-2016667d7daf)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 1d6d7f0a-5da3-474a-8e78-078644d55a9e)) (fp_line (start 28.194 -1.27) (end 30.226 -1.27) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp f473ebbb-32f5-46d1-a081-8d4df2215666)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp f21e61f0-7fbd-4c5e-9dfd-4380c57a4078)) (fp_line (start 28.706 -52.056) (end 28.96 -51.802) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 2dad1317-9774-4d9b-aac7-0a019e8d0951)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 05d28d21-941e-401f-b719-2ccb930ca7a3)) (fp_line (start 28.706 -49.516) (end 28.96 -49.77) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp ee322ea4-0843-43c3-8789-e7af51542afd)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 4ae41bf4-c0eb-45fd-8263-44d82c11374b)) (fp_line (start 28.96 -51.802) (end 29.214 -52.056) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 24d2f1fe-8d4c-480a-9625-62e197084877)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 7dc8a977-164b-42ed-8741-2b1a4c6b1764)) (fp_line (start 28.96 -49.77) (end 29.214 -49.516) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 3a2bf14d-fd9b-4441-a646-7ad621bea6c1)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 2dc37be6-e6ed-4211-aba8-b4fed86b0aa8)) (fp_line (start 29.214 -52.056) (end 31.246 -52.056) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 027e81d7-57ca-4836-9b48-46730961f5b9)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 401f42a7-69a1-4e1c-ba40-695fcaf19751)) (fp_line (start 29.214 -49.516) (end 31.246 -49.516) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp d47b9529-4a78-4cc4-9e0b-6cb6e948c2db)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 1e13d481-f03c-4acc-8598-75a3173a5b21)) (fp_line (start 30.226 -3.81) (end 30.48 -3.556) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 5fb5c71a-7ab6-4d3d-a5dd-281aa3b8233c)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 085fc418-c0d0-4728-8504-f26255fb5ad3)) (fp_line (start 30.226 -1.27) (end 30.48 -1.524) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 3f4456a8-0174-471a-97ea-d7ef5d6eaf8e)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 4c3cbc7c-e248-47ff-98d5-d4854ad3ac38)) (fp_line (start 30.48 -3.556) (end 30.734 -3.81) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 2280193b-9dc6-4351-bbec-a181603b4483)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp d72fee6b-5098-4f1e-86b8-1da57e89e0dc)) (fp_line (start 30.48 -1.524) (end 30.734 -1.27) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 46bb244c-90e1-4422-a157-cb28a696ea63)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp dd235e1d-e9b8-426a-bb1d-e7e551214dfe)) (fp_line (start 30.734 -3.81) (end 32.766 -3.81) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 8c998906-9dd4-47c0-b3b7-a5371da72531)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 94d4ff93-db7b-4b46-a3eb-0831a092697d)) (fp_line (start 30.734 -1.27) (end 32.766 -1.27) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 4bb78cfc-14fb-46d3-a6db-5a34ce70a29e)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 1d155287-2331-4108-8083-f08e1c2f49c0)) (fp_line (start 31.246 -52.056) (end 31.5 -51.802) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp de96548e-dcef-4968-a195-d82366d1b47e)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp b9cb8854-a85a-4211-baf7-ddd169a3eb19)) (fp_line (start 31.246 -49.516) (end 31.5 -49.77) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 19b42532-891a-4638-8152-7100cbc0534e)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 2b7aa6e8-73a9-4b25-80d3-4731b22cdc6a)) (fp_line (start 31.5 -51.7385) (end 31.5 -49.77) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp db4839b4-6448-48a8-995b-0e3f88444f98)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp eddd5d62-b2e7-4c9f-a429-28ee318b19a4)) (fp_line (start 32.766 -3.81) (end 33.02 -3.556) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 01b6a5ea-2fef-4c76-8a5e-42477a316e89)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 4ccf2442-e94d-4b89-a83e-d5ad64878bf0)) (fp_line (start 32.766 -1.27) (end 33.02 -1.524) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 354972cc-17ef-4950-ba9e-3a76fb180022)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 5bfa7e46-f1f9-4482-9489-dac20c7b158a)) (fp_line (start 33.02 -51.816) (end 33.02 -49.784) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp f9146d58-01e8-49c6-bd9b-f51c15891d20)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 7bd16054-f608-42ec-9927-4c0b6a14b9d6)) (fp_line (start 33.02 -51.816) (end 33.274 -52.07) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 81a5f63a-a738-4b92-adc8-c8fe99e1846b)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp e1f37114-b6eb-4924-9dbf-dff200ca3c14)) (fp_line (start 33.02 -49.784) (end 33.274 -49.53) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 660c1255-2ea6-45de-bdaf-102960d836aa)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 4a6bda15-43e9-4a06-b8c3-2ffe11f9c55c)) (fp_line (start 33.02 -3.556) (end 33.274 -3.81) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 6bf37c0d-a670-4b8d-9226-d9a3699a093f)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 204ec0e3-127d-45a2-99bd-a82a03ff447c)) (fp_line (start 33.02 -1.524) (end 33.274 -1.27) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 5b64db21-4ce5-4a44-8ee3-92f45d122c4b)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 475d1805-6120-4302-8302-1129e61bcd32)) (fp_line (start 33.274 -52.07) (end 35.306 -52.07) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 2ee6db4f-a1c2-42a8-924c-dbb7c96e8f74)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp a231270a-112c-474a-9e72-84c7d26d3b6a)) (fp_line (start 33.274 -49.53) (end 35.306 -49.53) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp bcfeff6a-9f9a-4ed6-baeb-0383103d22e4)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp d006b1f5-49c0-4574-9a03-4e91c721fdc3)) (fp_line (start 33.274 -3.81) (end 35.306 -3.81) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 430e6b97-e762-48e3-99c4-ef66ed43f23e)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp b5094c7a-2bf7-493f-94c5-65f9e0b21bd1)) (fp_line (start 33.274 -1.27) (end 35.306 -1.27) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp e481c8b5-4b4e-44b8-b5fe-11a94d1e153d)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp b22cc61b-9eb6-4a9c-ba7b-da9b840ecaf3)) (fp_line (start 35.306 -52.07) (end 35.56 -51.816) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp fc4e50fb-aeb6-412b-8834-8b9891dfe525)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 7f69bc48-b9c9-49db-ab33-5d71381b3508)) (fp_line (start 35.306 -49.53) (end 35.56 -49.784) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp cca5b637-23b3-4ac5-9d7b-3e2089a2b667)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp deda6d48-9107-469f-900c-d0fa4f4fc1b6)) (fp_line (start 35.306 -3.81) (end 35.56 -3.556) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 1774be61-1a1f-4f67-b6a6-f0656e57c408)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp fdf65885-ea30-48e7-a8ff-553b1611ba6c)) (fp_line (start 35.306 -1.27) (end 35.56 -1.524) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 5c7f15d8-005c-4ba5-9c59-d28b8858ebd9)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp fb465c73-c6cd-4ff4-b9e6-fca707db3e78)) (fp_line (start 35.56 -51.816) (end 35.814 -52.07) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp baef14d2-4cdf-4ea1-99d5-bada002817ad)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 0083b4f5-cdec-4fca-9063-a25bd5364ba8)) (fp_line (start 35.56 -49.784) (end 35.814 -49.53) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp deb8f337-491e-451e-ab4d-17f8395ea062)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 26e420d0-b3c8-4b68-a71e-e270a06439e5)) (fp_line (start 35.56 -3.4925) (end 35.56 -1.524) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 01ca0a5a-b53d-4d90-8e13-b26690e42a0c)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 98d2535b-4878-4741-85b2-d88b374bb107)) (fp_line (start 35.814 -52.07) (end 37.846 -52.07) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp abd7bc40-b6f8-4009-8e18-41a359d4ef15)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 39fb039b-53c4-4b2b-ac8c-4eb91d35d55c)) (fp_line (start 35.814 -49.53) (end 37.846 -49.53) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp a76c5cc1-4873-4e3d-95d5-0e3226ea6fd5)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 19bae95e-ccc5-4ff3-83e5-4cf87903b9e8)) (fp_line (start 37.846 -52.07) (end 38.1 -51.816) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 5df7a088-7e77-4e4d-8a55-3553c0f6a4ba)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp c4daf221-b961-4395-a5b5-840b97a1daaa)) (fp_line (start 37.846 -49.53) (end 38.1 -49.784) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp a20562c6-cf01-4053-be6d-f0692d48ab91)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp b9a589da-ccd7-430b-b998-4a9caa504d4d)) (fp_line (start 38.1 -51.816) (end 38.354 -52.07) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 602e9666-6f58-47f7-bc8f-2032d02a9f1c)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 053cede6-d1ba-42e9-ba54-5c1bcfa82433)) (fp_line (start 38.1 -49.784) (end 38.354 -49.53) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 9e6c340f-002a-46f4-88fd-867d2cf62f16)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 5f8f13db-cf32-4fa5-8183-a86183ac6783)) (fp_line (start 38.1 -3.556) (end 38.1 -1.524) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp f49c8d9f-117f-44be-abda-c8de9aea1931)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 052197fc-3779-4962-bf8f-f39c4295a7d3)) (fp_line (start 38.1 -3.556) (end 38.354 -3.81) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 4810036e-9e6f-4c97-b32d-e2e81dbdfe8c)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp fc810035-2c8a-4f5b-b18c-faba933b7c02)) (fp_line (start 38.1 -1.524) (end 38.354 -1.27) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 1d8967bc-61c1-48cc-9625-9e221013bb3a)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 09f566e1-b6c5-4ac8-961e-41ef0045ccb3)) (fp_line (start 38.354 -52.07) (end 40.386 -52.07) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 4d92fa6c-3020-4cd8-a1fb-8da9899289d4)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp c18c2a28-307e-4050-88c8-f98870e706a4)) (fp_line (start 38.354 -49.53) (end 40.386 -49.53) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 4721e618-8340-43ac-b8c7-e4538d6ae678)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 6c356d26-fa3e-405a-9964-c1e0cde74dec)) (fp_line (start 38.354 -3.81) (end 40.386 -3.81) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 43d70ffb-1d1d-462c-aeac-fc68114b669d)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 39946907-0ca0-4988-939d-9b1d3f24d6ac)) (fp_line (start 38.354 -1.27) (end 40.386 -1.27) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 49d8c00a-62bd-4607-ac74-97a5d3c438be)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp a5317be6-a2c8-42cb-b927-6c6339dbc56c)) (fp_line (start 40.386 -52.07) (end 40.64 -51.816) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 95429bec-f4d1-497e-b167-5ba26275d7e9)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp f6919059-a395-41b3-8d0c-94bd11667b98)) (fp_line (start 40.386 -49.53) (end 40.64 -49.784) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp a1c7c1fa-9206-4320-881a-0dca3010c756)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp d3a3060f-4df1-4339-872e-a6223117e757)) (fp_line (start 40.386 -3.81) (end 40.64 -3.556) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp c77a2c30-08b8-4c9f-b0fb-a2384703d391)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 1bbd5807-b4e5-408f-81d3-ffbdc9ddc7eb)) (fp_line (start 40.386 -1.27) (end 40.64 -1.524) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 8e6f6c8f-a159-4ec2-98eb-60a5ec38c51d)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp b6685012-9ee7-4177-9d21-f3b7eeba7d13)) (fp_line (start 40.64 -51.816) (end 40.894 -52.07) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 84e181b3-4b1b-470b-a3f7-c8af8aca12ca)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 1e766977-8f3f-43dc-80b5-730cff77c7eb)) (fp_line (start 40.64 -49.784) (end 40.894 -49.53) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 86562283-12b7-4b17-990b-f00fb480c4bb)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp cbcc5b87-cb87-4e17-9e5a-4b956756d162)) (fp_line (start 40.64 -3.556) (end 40.894 -3.81) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 241da752-fcf2-444d-bbd8-704193af1caa)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 47bc40c1-7f5d-4935-89e9-f710954c44c8)) (fp_line (start 40.64 -1.524) (end 40.894 -1.27) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 776feaec-324a-410d-9c7c-85a4ec1392eb)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp f97cddd0-a309-4741-9aa5-30524016a765)) (fp_line (start 40.894 -52.07) (end 42.926 -52.07) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 363a92b1-5bf0-44af-8493-da557c090a47)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp c5b13955-b505-48b8-9b98-bd260a9d5768)) (fp_line (start 40.894 -49.53) (end 42.926 -49.53) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp a58da212-6407-4a74-8a79-1b4710ecc3ab)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 5b5b93ce-12e8-41c5-b44b-9129f10bc15b)) (fp_line (start 40.894 -3.81) (end 42.926 -3.81) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 6207bea0-753e-4749-980a-520790b18884)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp ec756db9-9bc0-445f-aed8-524056ce75eb)) (fp_line (start 40.894 -1.27) (end 42.926 -1.27) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 6da5784d-42d1-40f0-80ae-a40f8f4270dc)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 2f7e9167-f4c9-4448-803c-d2acdc40abfb)) (fp_line (start 42.926 -52.07) (end 43.18 -51.816) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp ec4c9eaa-d07d-42e0-95c6-54fab5c4a422)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 21f1c616-069b-4c6e-9fc0-05083d8ed1ef)) (fp_line (start 42.926 -49.53) (end 43.18 -49.784) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 7625f3b3-e440-4699-8eb1-80ccfd5c36e9)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp e42c68ca-cfed-42e6-a22e-e7a5613d0951)) (fp_line (start 42.926 -3.81) (end 43.18 -3.556) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 12fc6282-20b4-456e-b0bf-ae6b91d7b524)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 44b2ebc5-2a7f-4f2c-9669-e892e8553526)) (fp_line (start 42.926 -1.27) (end 43.18 -1.524) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp fa57f19a-35f5-429d-9db1-f2d6e1d1bd40)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 9e278286-fe5a-46e9-a85d-513abd2dbe0a)) (fp_line (start 43.18 -51.816) (end 43.434 -52.07) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 81892268-00d4-49a2-bc40-01fea76dedc7)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 221e90b8-a957-4eaf-a484-01f2d07c2205)) (fp_line (start 43.18 -49.784) (end 43.434 -49.53) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 5fe954ff-dcf2-43ab-9d22-a06b56ccf9d1)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp fad7ed7a-5c43-454b-969a-4c3673f002e6)) (fp_line (start 43.18 -3.556) (end 43.434 -3.81) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 8c09a945-aaea-49ea-be46-67d693b477e5)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 24782728-5112-448d-81e2-51c1c5ebc526)) (fp_line (start 43.18 -1.524) (end 43.434 -1.27) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 01015a5c-99a8-47fe-b597-b47fc11c28a0)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp db678650-729e-4109-a184-982d7bd927dd)) (fp_line (start 43.434 -52.07) (end 45.466 -52.07) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp c6a8a4e0-d9ef-41ca-b12c-8c7c29cabd2b)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 79479dbb-3012-4e65-a12b-c24403c502d3)) (fp_line (start 43.434 -49.53) (end 45.466 -49.53) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 54e4ff44-ddad-4635-ac9e-5e1e406a193e)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp f4c58831-fdae-412a-8f6b-718273f410c4)) (fp_line (start 43.434 -3.81) (end 45.466 -3.81) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 24da7566-6740-44e8-8759-72c4a869747f)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp a574c98e-d411-4fc7-b4e9-28e9e7b6560b)) (fp_line (start 43.434 -1.27) (end 45.466 -1.27) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 53d534e0-4e0c-4611-8f06-668c4818f429)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 882d8e9c-b7c3-477c-ab27-a39a6df1fbee)) (fp_line (start 45.466 -52.07) (end 45.72 -51.816) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 4a7ac165-6056-4499-91d7-07ca8f0711c3)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp bd457281-4728-4776-b628-3f3aa55fdc65)) (fp_line (start 45.466 -49.53) (end 45.72 -49.784) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 7c1ae57a-731a-4ac2-82af-0125d5400f1a)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 40ccd8f0-059f-4eb9-aa00-bb8f9e999c7b)) (fp_line (start 45.466 -3.81) (end 45.72 -3.556) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp fe77728c-1652-490e-9fb4-40cd65128b93)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 4f019191-110c-43f8-aadd-f88b7f4efc30)) (fp_line (start 45.466 -1.27) (end 45.72 -1.524) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 71e34774-597c-4939-bc05-5d23147d0f0a)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp b07d5da3-3199-482b-9c9d-35ab45d80e85)) (fp_line (start 45.72 -51.816) (end 45.974 -52.07) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp f61bfb46-1d9c-4d03-8a04-0cd57e7181d8)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp b3356340-be0c-4e21-8295-091930aabcd3)) (fp_line (start 45.72 -49.784) (end 45.974 -49.53) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 256ff11d-71f5-4992-82cb-5043f7f45b66)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 2abd5605-41eb-4141-8822-2ce9f27658e2)) (fp_line (start 45.72 -3.556) (end 45.974 -3.81) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 897816a9-a631-4279-99d7-c983ba7c9df2)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp b0c5be03-3b58-4e4d-9f60-bc0bc12bc842)) (fp_line (start 45.72 -1.524) (end 45.974 -1.27) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 96c639d8-d883-4abc-914d-9875aeabfcf1)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp ab083932-f82a-4d2e-ab9e-b0a5e052e040)) (fp_line (start 45.974 -52.07) (end 48.006 -52.07) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp e97413de-27fb-4887-b396-6e04d695dc48)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 5443569b-19ad-407f-9a7c-718b23b106fc)) (fp_line (start 45.974 -49.53) (end 48.006 -49.53) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 3826fa3c-69bf-49c6-a795-ad5a8245ce17)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp e0eea67b-3c1f-41a5-bdb0-64fb8fc4c808)) (fp_line (start 45.974 -3.81) (end 48.006 -3.81) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 30218ab1-237d-4329-a370-1098361387b1)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 60dd5a0d-fa73-40d1-aa38-27eacf3be5b2)) (fp_line (start 45.974 -1.27) (end 48.006 -1.27) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp fc8cc540-4fd9-4626-bd89-18ca0cd04fbb)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 4006c988-aa85-40fb-bb8d-90bf36ccd7f4)) (fp_line (start 48.006 -52.07) (end 48.26 -51.816) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 9629f783-af3c-49e9-b637-0c52c3e989a9)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp cdade43f-7a0d-4af3-9ea8-28bf03a65550)) (fp_line (start 48.006 -49.53) (end 48.26 -49.784) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 0d7ab6fc-5e22-4108-81ef-94268cdd136d)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 662845d8-a63d-4446-acd5-a18d0edc35f1)) (fp_line (start 48.006 -3.81) (end 48.26 -3.556) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 19472577-b40a-4b83-8d51-c781449d8bb6)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp f5c17448-3ecc-4ee1-a522-fb73979bf25c)) (fp_line (start 48.006 -1.27) (end 48.26 -1.524) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp ae21b1e3-183f-48d9-9da4-f9d15eb4591e)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp a9d6aed6-2526-44b3-a3d5-b52d095a0d7b)) (fp_line (start 48.26 -51.816) (end 48.514 -52.07) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 339c27f7-27aa-4fcd-b9d3-0558a8dd6bc4)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 18569c70-e088-49ac-a302-056cf7da99d8)) (fp_line (start 48.26 -49.784) (end 48.514 -49.53) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 6724a06e-410a-4511-aa87-45dabf39aa96)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 382457dd-08ed-4200-8366-2212d18acfc1)) (fp_line (start 48.26 -3.556) (end 48.514 -3.81) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp e0d3e744-1180-4f31-927a-cb58731fd6ab)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 0137a057-9ec5-4bd5-9a22-98dbd88ef6d2)) (fp_line (start 48.26 -1.524) (end 48.514 -1.27) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp e38c92dd-1021-46da-8b33-ac479ecbbf01)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 531d28be-807f-41f2-9dd9-82d391ad6c72)) (fp_line (start 48.514 -52.07) (end 50.546 -52.07) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 6848293f-f2cd-4f03-bf63-fadc431fb6e4)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 432da2f7-415b-4589-8fd7-cffefc4602a9)) (fp_line (start 48.514 -49.53) (end 50.546 -49.53) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 741387ae-d794-4bfa-83b3-53b436f6eef5)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp c67b1f96-309f-4f39-8a07-12c24acc39ff)) (fp_line (start 48.514 -3.81) (end 50.546 -3.81) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 45bdc644-1ac6-4451-9a24-50ded6dd9f0f)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 3e1ff79c-7eb3-488b-9793-e5d94ff90973)) (fp_line (start 48.514 -1.27) (end 50.546 -1.27) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 55881cdd-8422-467b-8d31-19db17133603)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 7d7e5ba8-3f3d-4012-94dd-bfa0b89eb9a4)) (fp_line (start 50.546 -52.07) (end 50.8 -51.816) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 310c34f5-7758-4dc4-9766-e826008f387a)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp ad369862-f07b-4f0f-9d0b-c904681058ad)) (fp_line (start 50.546 -49.53) (end 50.8 -49.784) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 4ad7b573-cfb5-4e0d-ad80-71dd91adbf9d)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 050116db-16a5-43d9-bfb2-eb82f421631f)) (fp_line (start 50.546 -3.81) (end 50.8 -3.556) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp b7b907ce-8422-4454-8c08-4390cc3ad1da)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp b306c297-67d6-4bce-b6f7-d762f720951a)) (fp_line (start 50.546 -1.27) (end 50.8 -1.524) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 8c2a11a2-d52f-494a-93d2-cbb45bd9791d)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp cf041e93-2b9c-493a-9c4a-d5e37e4b0a30)) (fp_line (start 50.8 -51.816) (end 51.054 -52.07) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp dd9637de-8b4f-4734-99a3-38841703f583)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 34a4b81c-7702-4be5-96ec-7e4f33b8d47c)) (fp_line (start 50.8 -49.784) (end 51.054 -49.53) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 4f23a2d2-5293-4880-9eb6-4173b6e41125)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 1cd766e9-b1fc-48cd-889d-48ce1197f5e2)) (fp_line (start 50.8 -3.556) (end 51.054 -3.81) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 6078c1ef-426b-4864-a9ca-d0dfb4d57772)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 56396aac-9498-4526-af46-d48b61070a90)) (fp_line (start 50.8 -1.524) (end 51.054 -1.27) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 94b8a79e-858e-4cf7-b4f8-e1f474b2b680)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 09ef2bd8-2bba-4a1b-b2df-b0b477f5c0a8)) (fp_line (start 51.054 -52.07) (end 53.086 -52.07) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp ec7c8cf3-28bb-4889-b5da-96e05c188f9c)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp efd27d8c-cc39-4bc5-af56-23171232a617)) (fp_line (start 51.054 -49.53) (end 53.086 -49.53) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp aeae6e35-0151-4786-80c3-4bd43f284524)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 4bb222b9-825c-48d7-b67c-a4df7dd479a4)) (fp_line (start 51.054 -31.75) (end 56.1594 -24.13) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp d9594c3b-3692-48ab-a965-c66810399fe1)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 0e14e0d3-b5eb-4bdb-9f31-aae44a64d594)) (fp_line (start 51.054 -24.13) (end 56.1594 -31.75) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 08aae81f-70d3-4ac1-8998-76334fcd2aed)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 701b4c60-6cef-4e9d-b435-058b6cdfdfa5)) (fp_line (start 51.054 -3.81) (end 53.086 -3.81) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 2267063c-fabf-4bf5-bc31-3ade4e6711b6)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 96a0553b-8bc8-4f51-848d-d2c8508ae603)) (fp_line (start 51.054 -1.27) (end 53.086 -1.27) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 8515d81a-5fe7-4ec8-aee3-24f0eb2278bf)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp f3f9bac8-b512-42d5-9c39-53ad19f216ca)) (fp_line (start 53.086 -52.07) (end 53.34 -51.816) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp b3b1ae8f-e83e-462e-82a9-4d5b6d128868)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 4d7c61f6-00f0-47ef-8fd9-8143b4957c25)) (fp_line (start 53.086 -49.53) (end 53.34 -49.784) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 426f8dff-d7e8-4d48-b606-4d3b88e9e9fb)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 3a0b342c-823f-4aa5-bba5-c82cb13d495e)) (fp_line (start 53.086 -3.81) (end 53.34 -3.556) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp e7481d12-93bd-49e7-9474-d0744b0d77ed)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp d5567ce6-cee1-460b-aa87-3a117b4a89ff)) (fp_line (start 53.086 -1.27) (end 53.34 -1.524) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp b91bec67-f9c4-4ca8-b9f5-6cbe1057d39d)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 69cc26a8-80a0-476f-bdcf-4eca31bc15fc)) (fp_line (start 53.34 -51.7525) (end 53.34 -49.784) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 55781f3a-1c62-4964-8377-b528d00b2bf5)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp a8169553-a93c-4f75-92e1-192f0d0e745e)) (fp_line (start 53.34 -3.556) (end 53.594 -3.81) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 913c17a9-f508-4c89-802c-f1066d84cef6)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 31569cf6-2ee4-4301-bde6-1f0c931db94f)) (fp_line (start 53.34 -1.524) (end 53.594 -1.27) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp dad86200-b5a0-4e76-a837-919215e14abf)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 03ab9b2c-c296-44bd-931b-f77f79efeffc)) (fp_line (start 53.594 -3.81) (end 55.626 -3.81) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp c9eabf39-401a-4761-a57b-254682d9d110)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 441123e5-7cc0-4b25-8d76-0384160793af)) (fp_line (start 53.594 -1.27) (end 55.626 -1.27) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 027be274-b631-4095-8048-b00a65576e85)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 5d192dbe-aaa9-48ca-a1de-a32b2d890b61)) (fp_line (start 55.626 -3.81) (end 55.88 -3.556) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 76c4773b-2077-497d-a109-2cc85918a1e1)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp c119875b-539a-4860-9418-dd31e7ea5daf)) (fp_line (start 55.626 -1.27) (end 55.88 -1.524) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp f66adc00-ad5b-400d-a9d4-c67125791688)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp bf022973-74d0-4b7c-9728-e0b3d7d1e1bb)) (fp_line (start 55.88 -51.816) (end 55.88 -49.784) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 81d6daf5-0329-41ee-9d3f-3f5801ac66c4)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 9b41a7e3-ad4d-484b-b459-8b6ac4e80feb)) (fp_line (start 55.88 -51.816) (end 56.134 -52.07) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp afbc3e42-6167-4762-a26f-74c04d5b6fa5)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 4c44d1b4-dc20-47ea-8be9-c11dba44e317)) (fp_line (start 55.88 -49.784) (end 56.134 -49.53) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 695025c5-24c2-43e7-8a4f-0dd6e39398da)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 87bf0116-ba55-40d5-a0ea-be218d86d071)) (fp_line (start 55.88 -3.556) (end 56.134 -3.81) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 043ebe5f-7793-497f-9973-559f916aa0e7)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp cb6b358e-b2c8-4eb5-a2e7-c0a81ddf35ae)) (fp_line (start 55.88 -1.524) (end 56.134 -1.27) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 6496faeb-61ee-4d73-b7e1-49d7b38aeb13)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 0b0edf72-b2be-492d-b129-e3925c784067)) (fp_line (start 56.134 -52.07) (end 58.166 -52.07) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 83eb8d4b-4a2c-40aa-abdb-80d20ba35571)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 82cce8e8-80e2-4aae-abe9-6dbddff966b7)) (fp_line (start 56.134 -49.53) (end 58.166 -49.53) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp c65a285a-27a7-4791-b6cb-c8f54c32f325)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp afdbeb5f-b750-40ee-af12-df24762af305)) (fp_line (start 56.134 -3.81) (end 58.166 -3.81) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 9cb2973a-d127-4748-bc58-7c5e9ab3b8b1)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp f365f042-9ca2-46db-aae6-433e8103bfb3)) (fp_line (start 56.134 -1.27) (end 58.166 -1.27) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp b3e2e6fc-e3ff-48fd-922c-5d79d8be49a5)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 314aa815-bcb2-40a2-9e5c-e9029b5ec157)) (fp_line (start 58.166 -52.07) (end 58.42 -51.816) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp f6d6849c-a5af-40be-a243-8aa8a7f6bd43)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp eef698b4-89f5-4220-baa5-efcd1c698f56)) (fp_line (start 58.166 -49.53) (end 58.42 -49.784) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 196fac28-6719-4e8b-9ae0-5191525e20d1)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp d0efb485-82e3-41f3-ab78-f911847614eb)) (fp_line (start 58.166 -3.81) (end 58.42 -3.556) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp b306dc44-441e-4429-ac2a-325ba57ed7b1)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp c9a0c1df-a8e1-484c-8afb-d0993d23d128)) (fp_line (start 58.166 -1.27) (end 58.42 -1.524) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 81038ab7-a26c-49ca-abb7-8b9bfb1c631f)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 60c1432f-2ccf-4c70-b73b-14602e8a842c)) (fp_line (start 58.42 -51.816) (end 58.674 -52.07) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp f61883a4-df1c-4e9b-baed-bef7b24b2f64)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 75ea0bd8-ad67-4725-a6bf-533646d32200)) (fp_line (start 58.42 -49.784) (end 58.674 -49.53) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 3d21c6a4-4807-435b-a12e-8851a483ff0e)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp f2bc7f33-5965-4de0-b56d-55d909e96a6b)) (fp_line (start 58.42 -3.4925) (end 58.42 -1.524) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp fdc6b6ef-b07a-42c3-868e-2ac9783395cf)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 7f122385-6522-4b50-b53f-12eefc65a8fc)) (fp_line (start 58.674 -52.07) (end 60.706 -52.07) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp d7766f71-a35e-4c58-97dc-7613f57292ee)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp f80cd7dc-9bf4-4bc3-9385-8eb075a5e09d)) (fp_line (start 58.674 -49.53) (end 60.706 -49.53) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 0d8274b0-e22b-4b50-b513-7b5b7c64dfd5)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 1a5ad0ca-eb91-42cb-8cf0-7e541f399f60)) (fp_line (start 60.706 -52.07) (end 60.96 -51.816) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp da7414f3-31e8-4ef5-b653-b7c42f646c30)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 4d3c0529-a9b8-43dc-889e-8e5ef12e73be)) (fp_line (start 60.706 -49.53) (end 60.96 -49.784) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp f93c1e90-dd63-455b-859d-cda20ccad98f)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 00cb88c4-e1ad-43e9-a0da-bdc10620abc7)) (fp_line (start 60.96 -51.816) (end 61.214 -52.07) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp e4ee090c-937c-4fca-80be-bee7b7db64ce)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 53b07c35-2dd2-4b5a-9e05-94b61e14fddc)) (fp_line (start 60.96 -49.784) (end 61.214 -49.53) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp de271f85-c950-4dc0-a5f1-69dcfb478deb)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 84a162d4-7d8b-4bbf-9b0c-6dbf3aa99ab4)) (fp_line (start 60.96 -3.556) (end 60.96 -1.524) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp dbfb6019-7dd4-48aa-98af-094a16e37441)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 103299c3-0363-468e-9cbd-0212c32a84df)) (fp_line (start 60.96 -3.556) (end 61.214 -3.81) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 042c8b3d-2b76-4bae-996b-b07969da7257)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp e2415418-d22b-4913-bfc4-018ce1721212)) (fp_line (start 60.96 -1.524) (end 61.214 -1.27) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp e1328fb0-9987-4342-8374-d3cd2e4ddb4f)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp cca74e00-01e6-4085-aa34-5983be93e6dc)) (fp_line (start 61.214 -52.07) (end 63.246 -52.07) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 8e0de75e-0c96-4d33-af89-fec0f7e5c22a)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp ada6ce19-0f31-4bd8-8d2a-a6f8bf1d3c5a)) (fp_line (start 61.214 -49.53) (end 63.246 -49.53) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp c0568318-046e-4188-a2b9-ac0fa30bfd1c)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 2f0785f4-0a50-4b5f-aa59-91afedaa952b)) (fp_line (start 61.214 -3.81) (end 63.246 -3.81) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 0c99e3a3-ca02-4c6f-b9af-8f03bcfd93fe)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp e70bb36c-3d18-4793-89cb-b36d887ba659)) (fp_line (start 61.214 -1.27) (end 63.246 -1.27) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 90ab0f88-e4c5-43c3-b226-bf4aa0c9b142)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 0e58b5de-f175-443d-bf0e-43f23ea1996b)) (fp_line (start 63.246 -52.07) (end 63.5 -51.816) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp dbbdae8b-be00-4bc8-8bf4-2f136c693829)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 63be6a98-e8ab-4419-8a51-5da27f1c0d52)) (fp_line (start 63.246 -49.53) (end 63.5 -49.784) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 0e4d9a73-a9e4-4d90-b16a-c91ad6d34867)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 47b9cb51-ee6c-42ef-8d3e-9465f6268abe)) (fp_line (start 63.246 -3.81) (end 63.5 -3.556) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 2ae489a9-9631-4e6f-a337-873c7c2e0dcf)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 898ddb53-e3fd-475c-bd1f-eabc40ce4411)) (fp_line (start 63.246 -1.27) (end 63.5 -1.524) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp f0573d58-53a9-42ee-b477-a9f0b5a4aadc)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 38398fe8-ffbf-4914-b37c-714e4b2804d8)) (fp_line (start 63.5 -51.816) (end 63.754 -52.07) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 2324c814-1003-4765-9578-7bc620f6ac8b)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 4afe3cad-e945-460e-9b5b-ae7c41674c30)) (fp_line (start 63.5 -49.784) (end 63.754 -49.53) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp f9c5cf9e-8fb6-4182-ae80-1c101980fcb8)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 66d5e9a1-6caf-42ac-a1c6-58a197165cd2)) (fp_line (start 63.5 -3.556) (end 63.754 -3.81) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 55fa67a0-d91a-4d44-8b95-6ce4916719a7)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 4cde21d5-2bbb-4513-ad00-e3291302f023)) (fp_line (start 63.5 -1.524) (end 63.754 -1.27) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 68464576-fb76-46f7-b6f4-9a9ed5133e75)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp e0969973-fca3-4b5b-b07f-56a8eceb4c9d)) (fp_line (start 63.754 -52.07) (end 65.786 -52.07) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 33e919f8-a583-4c4a-bc79-82b711dcea79)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 946fa996-5e3c-4e7e-ab2c-ea37b37e4310)) (fp_line (start 63.754 -49.53) (end 65.786 -49.53) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp ad930cb4-9d12-4e0c-afa5-2cf4e9d14625)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp f24c4fdf-dff5-45a8-9dd9-398e6077a205)) (fp_line (start 63.754 -3.81) (end 65.786 -3.81) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 93ad2b60-cf59-4498-bbe9-030321cd3702)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 558ffe78-fd34-44d2-9daf-dcb2cc2996a6)) (fp_line (start 63.754 -1.27) (end 65.786 -1.27) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp fc6cff34-af99-4ffa-8abe-610ff742ccf1)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 0f2c29e7-c279-48c3-a9b2-d810c4ab3f22)) (fp_line (start 65.786 -52.07) (end 66.04 -51.816) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp ed6217b7-97f2-403b-bccf-a050bea2b204)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp cc15b7dc-8174-4f64-ac4f-632655795ae3)) (fp_line (start 65.786 -49.53) (end 66.04 -49.784) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp fe0b36de-82b8-4602-a9f0-6ffe113052f6)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 5d654b68-faeb-4c7d-a5ec-e81099bbbfb5)) (fp_line (start 65.786 -3.81) (end 66.04 -3.556) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp af9c4158-c34e-46ee-ae47-fb8a4b4ef767)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 84e7913b-bdd5-45d6-b0cf-a87bc824ccda)) (fp_line (start 65.786 -1.27) (end 66.04 -1.524) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 7cc4270b-a56c-4e3e-99a6-a1dfd0db47da)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 4b125143-4012-4e2c-bfa5-9ae554435b39)) (fp_line (start 66.04 -51.816) (end 66.294 -52.07) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp f60bd2aa-2a17-426b-925a-fc588eedc768)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 2f8486f7-dd66-4224-bca3-0db79f5e3eb6)) (fp_line (start 66.04 -49.784) (end 66.294 -49.53) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp c6dfc0a8-ad97-419e-974a-da4170513d44)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 367fc923-ec67-4a30-aedc-b7a808c92b27)) (fp_line (start 66.04 -3.556) (end 66.294 -3.81) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp b925c634-18df-41b9-a3ac-cbbbe4f3e6db)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 0ea3a9d2-8e7e-4b3a-9859-3c701f97e29c)) (fp_line (start 66.04 -1.524) (end 66.294 -1.27) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 52558bdf-66ec-4e9c-9873-f7de8a3db656)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 8a126233-cd36-48f5-a590-eeaf0e66abfa)) (fp_line (start 66.294 -52.07) (end 68.326 -52.07) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp c56f082d-3ad1-4f40-99c6-44515ea013bb)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 7e8f55a9-eab2-4eea-ba07-1cc84b0e1eb2)) (fp_line (start 66.294 -49.53) (end 68.326 -49.53) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 5a914c51-80ca-40ed-8eb5-ef7fb1c43ed7)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 3ed67b3a-f742-4c4f-921f-03f234145953)) (fp_line (start 66.294 -3.81) (end 68.326 -3.81) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 9119214e-7b22-4ac7-baee-82dc1e2e2262)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp d247afae-5f34-4d92-ba2d-57298d5d0d59)) (fp_line (start 66.294 -1.27) (end 68.326 -1.27) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 8c1ef6ba-7aa9-49f1-8ebd-6548df3e9369)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp e4b195ac-62ed-4819-9f9e-de5f27cb00ca)) (fp_line (start 68.326 -52.07) (end 68.58 -51.816) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 00a65cf3-519c-4a7d-8431-1a34a2daa415)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 4ae69a4b-ddab-4374-b038-3cb7b86a7d1a)) (fp_line (start 68.326 -49.53) (end 68.58 -49.784) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp a18d23c1-f66f-4f78-b6df-04b4dde4a3db)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 02272334-11a6-4500-ba84-f9865a1235b8)) (fp_line (start 68.326 -3.81) (end 68.58 -3.556) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp d5d2c777-4efd-4ab6-b4e2-c2d9d9e70071)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp ca6135ef-cca5-4a20-bfe2-2096bd195bf7)) (fp_line (start 68.326 -1.27) (end 68.58 -1.524) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 6aedaad6-163d-4d3a-b12c-9c5d976bce80)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 30bc086d-30d2-4910-9307-b11f824763c6)) (fp_line (start 68.58 -51.816) (end 68.834 -52.07) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 39e3d195-365d-4f7e-a725-aae80cfecf60)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 564d2595-6999-4ca1-b46a-ce64ed6f5723)) (fp_line (start 68.58 -49.784) (end 68.834 -49.53) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp b9290bd7-9726-47fa-9088-132b9fea4c15)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp ab6f3496-fe69-4a88-8c92-90b54cae5dc1)) (fp_line (start 68.58 -3.556) (end 68.834 -3.81) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 5189342a-0bae-4135-919f-a0b862c221e5)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 5dc8ed6f-3084-416a-8379-50372eabda4e)) (fp_line (start 68.58 -1.524) (end 68.834 -1.27) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 7f620684-77f0-4af6-ba71-3d922c5ee98c)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp d9762ba2-6998-4f9a-91c5-50816f952742)) (fp_line (start 68.834 -52.07) (end 70.866 -52.07) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 10fb8217-e760-4c0a-8a56-8b7d4a66a1e6)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 4d86a00b-7f6b-45bf-b656-8321c3054e0f)) (fp_line (start 68.834 -49.53) (end 70.866 -49.53) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 14fca90c-d4c5-4ba6-af65-d74912ac0f14)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp c41a3ca9-728d-4390-803d-d1e07b4d3cf7)) (fp_line (start 68.834 -3.81) (end 70.866 -3.81) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 29551057-607b-4572-86d3-09ef96dafe6b)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 32dd02f5-b917-498d-aff3-fee758afd5bc)) (fp_line (start 68.834 -1.27) (end 70.866 -1.27) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 42b6049a-67d0-405f-9878-5fd8b32b3025)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 984e423e-0cd8-4247-9747-3d47b5afcb5a)) (fp_line (start 70.866 -52.07) (end 71.12 -51.816) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 875b5b10-33cd-4817-bceb-668ddb02808f)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 88e31be0-2119-49d7-9f80-855d55dc2d8e)) (fp_line (start 70.866 -49.53) (end 71.12 -49.784) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 9174cc5e-48e3-462b-b688-39c2dd78c176)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 21d96677-78ac-4a30-b149-285c5c975dfe)) (fp_line (start 70.866 -3.81) (end 71.12 -3.556) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 17da379a-83ff-495e-9a5b-ad5088465259)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp f4c9bbf1-84e4-436d-96de-d23606eea062)) (fp_line (start 70.866 -1.27) (end 71.12 -1.524) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp eccf249c-2f14-47b5-b445-b3c2d9bccaa5)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp f9f383d0-6ed4-4cb6-b7f2-2630acc1ccb5)) (fp_line (start 71.12 -51.816) (end 71.374 -52.07) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp a5a2b877-7290-48f3-acea-2dce0ff04b59)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 87a77fe2-e869-4cf9-86e2-b51fe29b8381)) (fp_line (start 71.12 -49.784) (end 71.374 -49.53) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp fab7cb75-6254-43a7-8c3b-b77389e7d1a2)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 6291e166-cf1d-4e9a-a4ad-dfca6e334975)) (fp_line (start 71.12 -3.556) (end 71.374 -3.81) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 9e112e5b-3ac7-4f04-b2ca-78377635542b)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 85d12166-9b9c-4a6d-a034-61b8fc665e42)) (fp_line (start 71.12 -1.524) (end 71.374 -1.27) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp ad63b5ee-9db2-4e6b-9057-e50f9bb40d77)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 94bcc7d7-4d1e-4900-b7ba-e062d56870ac)) (fp_line (start 71.374 -52.07) (end 73.406 -52.07) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp fcfdda2d-b2a4-469d-93c2-843197d896f0)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 135a03f7-9f89-499c-81b4-e57b0590d35f)) (fp_line (start 71.374 -49.53) (end 73.406 -49.53) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp aefcf550-80cf-41cc-817a-e0d7c42bc882)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 20cc46a8-13e1-4953-a05f-6cb4fd5bd582)) (fp_line (start 71.374 -3.81) (end 73.406 -3.81) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 1684f1fa-9404-4c3c-8dfc-aa90de9caff1)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp cd86a5d7-5661-47e2-89ca-26644eb8d640)) (fp_line (start 71.374 -1.27) (end 73.406 -1.27) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 5f71f614-35b9-4fb9-ace1-c76cee09b247)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 58a4295c-8f3e-4602-97bc-b8d4a8d8eb3b)) (fp_line (start 73.406 -52.07) (end 73.66 -51.816) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 7293c571-cf1b-400a-8188-f99ed63e12fc)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp e7f368d6-f888-47d6-9546-c8e4af946fca)) (fp_line (start 73.406 -49.53) (end 73.66 -49.784) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 2225dc24-8968-4fc5-8eae-27c22c1b7c2e)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 448ecee4-ecd9-4c24-a5ea-021b40624ccc)) (fp_line (start 73.406 -3.81) (end 73.66 -3.556) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp b1e1b7d6-d41c-4f67-805d-78d6f8b6a23b)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 309546c3-a7b9-4637-9073-29d58de6058b)) (fp_line (start 73.406 -1.27) (end 73.66 -1.524) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp f86ece68-4f43-4abf-84e5-acf4e2b382e7)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 12ca11c7-dd84-4cc2-b859-ec856ed525d7)) (fp_line (start 73.66 -51.816) (end 73.914 -52.07) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 1b67efb9-5921-4966-8078-f2006f4a9185)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp b2f436a8-cc09-4c22-91cd-4fbbe6edb2c2)) (fp_line (start 73.66 -49.784) (end 73.914 -49.53) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 0cff48fd-994d-47a9-97ef-f901d96aa77d)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 0ea3cf53-c36c-4aff-810b-f1d62ffc86d0)) (fp_line (start 73.66 -3.556) (end 73.914 -3.81) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp a095b7b8-c493-4d89-8d07-4e703bde3a89)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 87c359a0-8ec0-4439-9729-6120755cdc60)) (fp_line (start 73.66 -1.524) (end 73.914 -1.27) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 937a9140-2bfc-440b-a0e7-c7ca154da76e)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp f3b76577-b8c6-4932-bec3-ed7ec137125d)) (fp_line (start 73.914 -52.07) (end 75.946 -52.07) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 5e355808-4501-422f-b43b-8476b17788ba)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 49e7e3ce-00cb-4369-99d2-510c6c9010da)) (fp_line (start 73.914 -49.53) (end 75.946 -49.53) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 3680396f-45a6-471d-93bb-fd0aec21fe6b)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 79592f61-8c34-4198-a911-12fd6c94cba3)) (fp_line (start 73.914 -3.81) (end 75.946 -3.81) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 30343567-45dd-4cf8-836a-25221fdac1fb)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp fd150768-6a2f-474c-bfd5-b2ee6bfe4e86)) (fp_line (start 73.914 -1.27) (end 75.946 -1.27) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp b9f26ae2-852b-4478-8481-43bca44f527a)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 034dd3fe-d606-4bf4-ae67-5a7be8bdc721)) (fp_line (start 75.946 -52.07) (end 76.2 -51.816) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 054d56cc-7d25-424f-b58e-8168ba1134af)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 4010dc8f-7820-4204-a7c3-9a5882ada6e0)) (fp_line (start 75.946 -49.53) (end 76.2 -49.784) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 1dd4eccd-b65c-4b1c-985f-782851cfcaca)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 049f3794-ad44-4b35-878c-0521963b3d50)) (fp_line (start 75.946 -3.81) (end 76.2 -3.556) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 1e59af58-bbe5-4d38-9a9c-8e4fe9e48d4d)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 811d1776-6582-4431-af81-8214f2a500c8)) (fp_line (start 75.946 -1.27) (end 76.2 -1.524) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp d802a766-c6f7-45af-bb8f-70687d1d8981)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 53de6d37-f2ef-4f47-8311-9583c94d509f)) (fp_line (start 76.2 -51.7525) (end 76.2 -49.784) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp cc147c62-3851-4f8f-a699-b19958a1d106)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 01423761-5af2-4eaa-bdf0-394c1d881984)) (fp_line (start 76.2 -3.556) (end 76.454 -3.81) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 746c8938-b293-4d31-a57d-3951454b1c8d)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp cfd5d44f-2674-468f-863e-de8e0337a849)) (fp_line (start 76.2 -1.524) (end 76.454 -1.27) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 7099d529-abe4-4c03-9268-b4197aacbfa3)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 336ee0a2-6d1b-4654-9012-d5efb6a38d81)) (fp_line (start 76.454 -3.81) (end 78.486 -3.81) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp be81e470-2654-4d40-9a27-9f8129ec9b59)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 4e962342-398e-4c7c-a8d5-40a7b85fae4c)) (fp_line (start 76.454 -1.27) (end 78.486 -1.27) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 51f7c04a-a199-4a8a-bc94-99a0ea6aa166)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 9b3a51f6-a43b-401f-b00f-26edf21a33da)) (fp_line (start 78.486 -3.81) (end 78.74 -3.556) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 0a78b211-9e8a-49ed-b2eb-3a309e23a759)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp ae840333-b181-4e0c-96fa-54f45e594afe)) (fp_line (start 78.486 -1.27) (end 78.74 -1.524) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 9079585d-5c04-4027-87b1-b31e12dda371)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp b606ce07-f1cc-44d2-98fa-88db5fad5a16)) (fp_line (start 78.74 -3.556) (end 78.994 -3.81) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 2e4c1610-676a-44b8-aca2-3905e65e80b6)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 9c109350-97dd-4fd9-a8f1-8c3ad77a5cf5)) (fp_line (start 78.74 -1.524) (end 78.994 -1.27) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 7ea59299-1688-44f3-81a0-b8bf031a2a56)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp a96c7181-7653-474d-9540-93d11719b6c3)) (fp_line (start 78.994 -3.81) (end 81.026 -3.81) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp e27ddf9f-6ddd-4752-b4d7-bba977b4db40)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 9177531e-5255-4d60-b143-c47a53a26013)) (fp_line (start 78.994 -1.27) (end 81.026 -1.27) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp a5f9b428-7e01-4858-986d-35a4eba75934)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 6cfb21c6-3521-4fed-bde2-7a28279d222f)) (fp_line (start 81.026 -3.81) (end 81.28 -3.556) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp bf414043-446a-4537-b0f4-1c9ce92332e6)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp fc8ca37a-8294-42c2-9174-103889e543d6)) (fp_line (start 81.026 -1.27) (end 81.28 -1.524) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp ed0248c1-066e-482a-9f14-09eaddb7f294)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 53b89e08-0085-476a-aafc-7b9eec4f6fc8)) (fp_line (start 81.28 -51.816) (end 81.534 -52.07) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp abf7974d-6156-4d5a-bfb4-fc78448167b0)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 2db549bf-37da-4dfd-8af5-bd98e05ae5f6)) (fp_line (start 81.28 -49.784) (end 81.28 -51.816) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 73ef372f-a9f8-4707-8ec4-712f4b5de544)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 298bf3d1-206d-4fd3-bd38-dbbc81e729ec)) (fp_line (start 81.28 -49.276) (end 81.534 -49.53) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 87c4de0d-a1d5-4da8-839c-f872cb0a2fa0)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp e51bd22c-cf19-4c6e-a38c-60b4bb999ab1)) (fp_line (start 81.28 -47.244) (end 81.28 -49.276) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp b9741c81-9d88-4457-97b0-bf38945fcd89)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp e3960a57-e58f-4df1-b215-f123801b7df1)) (fp_line (start 81.28 -46.736) (end 81.534 -46.99) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 6f09966e-20f3-4e04-bbd1-cb84f807d4bc)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 549db3da-fd72-4d35-88b3-96de0d046d85)) (fp_line (start 81.28 -44.704) (end 81.28 -46.736) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 82783c8b-3991-4aae-b707-b68c68aba6c5)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp a59b5f8a-f314-4da2-bd9f-33b08eccfe80)) (fp_line (start 81.28 -44.196) (end 81.534 -44.45) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 4e9a69bf-0a17-423b-a6a7-181d68191f32)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 641781b9-2fd1-44aa-8209-6c4ffd5fa5ea)) (fp_line (start 81.28 -42.164) (end 81.28 -44.196) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 7969cff2-87a4-4033-a51f-1a135fdd5e48)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 8bb47d58-5b0e-438d-9be8-c6a8a92ab7f2)) (fp_line (start 81.28 -41.656) (end 81.534 -41.91) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 6d3ca470-323d-435e-b42e-aa09813f14b9)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 2cabb9ac-71a5-40e6-9675-0b1cc3cab09c)) (fp_line (start 81.28 -39.624) (end 81.28 -41.656) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 2c8aeec9-0f7d-4ba5-9a38-bd663dc48a4b)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 9cdd6c0c-75c1-4cd5-8915-2b47296209f2)) (fp_line (start 81.28 -39.116) (end 81.534 -39.37) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 418cc8b7-2a0e-47bf-80ce-4aa5f8d79a4f)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 6f16843b-d7c2-4e36-802b-3ca394347121)) (fp_line (start 81.28 -37.084) (end 81.28 -39.116) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 17333fc6-d59e-4b70-829b-fd30ee3ee37c)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 0efc6706-9e8b-4c49-b590-875a92d61f27)) (fp_line (start 81.28 -36.576) (end 81.534 -36.83) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 73366b03-a99a-465e-bb9f-d9a807f5178c)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 1eaac0db-da12-4e61-a0a8-c5da85bc7415)) (fp_line (start 81.28 -34.544) (end 81.28 -36.576) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 8b64174f-1ff2-4bb1-b719-db64cb3ddb5e)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp e3c15f45-8606-4057-8f46-e4fcba88e83d)) (fp_line (start 81.28 -34.036) (end 81.534 -34.29) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 3305aadc-aa89-422f-9cfc-60eac512b86d)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 3c2289a0-151f-4fbf-a98f-b06b62497866)) (fp_line (start 81.28 -32.004) (end 81.28 -34.036) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 4d7136c9-f77d-4e4c-8902-3352ee5a5e30)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp fba714b5-9e3c-4952-8cea-7876a2c6b4b0)) (fp_line (start 81.28 -31.496) (end 81.534 -31.75) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 406e75af-4cc9-4511-b081-bc25d32114ef)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 10d6937f-fe5b-4c08-a5b9-5c073cfa6fd8)) (fp_line (start 81.28 -29.464) (end 81.28 -31.496) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp b06c0e72-47ce-48b4-9647-adb5904e93a5)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 32d6b82d-5e72-47f4-8eb5-90a98c2d81a3)) (fp_line (start 81.28 -28.956) (end 81.534 -29.21) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp a2623402-10db-4383-b06e-985515fe54da)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 6ff4d5c0-4921-4cd8-b6cb-0276f1c47328)) (fp_line (start 81.28 -26.924) (end 81.28 -28.956) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 1de20333-1be3-4ca3-9ec8-d89b08502598)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 432b194b-f910-4072-8071-93b2a589476e)) (fp_line (start 81.28 -26.416) (end 81.534 -26.67) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 3c2b7d41-2bca-4368-8998-9549b889a0f4)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp aeb2d432-0131-44a8-9c49-4afe799bd84c)) (fp_line (start 81.28 -24.384) (end 81.28 -26.416) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp f0da0392-f33a-4a5d-9ac0-4316a3435562)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 6ace1332-0cb4-40dc-bb0e-67ed067aacb5)) (fp_line (start 81.28 -23.876) (end 81.534 -24.13) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 7e395c78-2025-4ee0-a9df-97842614711c)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp fd1ce58d-157d-49f6-b500-54ef91cff1bd)) (fp_line (start 81.28 -21.844) (end 81.28 -23.876) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 4acaedcb-e1e2-4bad-9b52-6ce0232ca553)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp f40e1de1-aadf-4cce-b6ee-e57a1dceeeec)) (fp_line (start 81.28 -21.336) (end 81.534 -21.59) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 5694eee3-6f07-402b-8f40-6633358e628c)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 7726c112-9cc3-41a9-a0cf-4d8d22f45897)) (fp_line (start 81.28 -19.304) (end 81.28 -21.336) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp fd03cc4b-c63e-473c-beea-1a7409c4e71f)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 37bd3221-b4e3-4376-9830-3e6c4d2001b7)) (fp_line (start 81.28 -18.796) (end 81.534 -19.05) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 9459c6b1-f47f-4e40-a370-a7a0d36a8d0d)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 0906504a-78cb-4d57-bacc-79aef5da1823)) (fp_line (start 81.28 -16.764) (end 81.28 -18.796) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp bdd68d69-4b57-41fa-898f-dc367627c5a5)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 9a858a40-982a-4111-825d-e53120e267d1)) (fp_line (start 81.28 -16.256) (end 81.534 -16.51) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp dd331062-ce34-46f3-9f09-1a4da5b3636c)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 2f6aab59-1926-4df7-b7c2-f7698582fe83)) (fp_line (start 81.28 -14.224) (end 81.28 -16.256) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 1a056a25-d1cf-4654-bbda-f68deeb607c3)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp dde50c56-e8e2-47c5-ad8a-d071385dc9a9)) (fp_line (start 81.28 -13.716) (end 81.534 -13.97) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp d9d3352c-974e-4c1d-b001-64cc419a0aad)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp a9a808af-4d3e-4bae-af85-f3ab353b3236)) (fp_line (start 81.28 -11.684) (end 81.28 -13.716) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp ea637e99-3737-4cc5-bed3-8403fede03d5)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 991cae20-9659-42de-867c-67818e5fc135)) (fp_line (start 81.28 -11.176) (end 81.534 -11.43) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp eed4ddd5-f8fa-4b47-94ef-e9b3c60e5868)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 17bb4d80-975d-4d9e-a906-2643382af564)) (fp_line (start 81.28 -9.144) (end 81.28 -11.176) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 146b3c57-a27c-490c-80a2-3fd6ba6d123f)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 341e86e2-a81f-4ed3-9d84-b92d9eba3aff)) (fp_line (start 81.28 -8.636) (end 81.534 -8.89) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 2d185ad7-7cd5-4f44-9ad6-c69b07f4f083)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 8a9346f7-9d7c-4434-bd0d-1d6b6990e05e)) (fp_line (start 81.28 -6.604) (end 81.28 -8.636) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp f595a709-b198-429b-864c-22cbe1ef659e)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp b6bbf8ce-942b-48ed-b5c3-3dfb658d9583)) (fp_line (start 81.28 -3.4925) (end 81.28 -1.524) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp c00a23f5-179d-4584-90fc-23aad5acf0af)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp e352dd58-8af6-4150-a149-13c200576892)) (fp_line (start 81.534 -52.07) (end 83.566 -52.07) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp de40a326-de8d-4caf-9390-94f8276f0d9e)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 862806d0-c205-4de2-a4c8-bae58fdd52de)) (fp_line (start 81.534 -49.53) (end 81.28 -49.784) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp c5fc6fa4-0e6e-4c2a-8361-fdedcbbd11ab)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 768d11bf-7f94-44d9-aa68-579f04524101)) (fp_line (start 81.534 -46.99) (end 81.28 -47.244) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 1464e3dd-46d5-4c55-8645-458428c3a074)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp f3bd1efe-d1ef-496c-a2dc-3bfca4e304a2)) (fp_line (start 81.534 -44.45) (end 81.28 -44.704) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp b82ee804-4605-4471-8d49-2b4484946f62)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 3be2a8b5-7ab2-4cc0-a2d7-47a838fc5384)) (fp_line (start 81.534 -41.91) (end 81.28 -42.164) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp dc6e8d5d-d426-4a3d-ab80-2bdb7e888e0e)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 335b941e-d842-46af-a6d1-cd005b66bc35)) (fp_line (start 81.534 -39.37) (end 81.28 -39.624) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp b960c646-dadf-4ad6-a9bc-62fd6540d306)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 8b0ba4a5-6f6a-49b0-a10e-2757af9c21a8)) (fp_line (start 81.534 -36.83) (end 81.28 -37.084) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 1c0d8bb0-2046-4111-8451-7f1a0762dd15)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp d9157d1a-69d6-46dd-aeec-cbee80171e76)) (fp_line (start 81.534 -34.29) (end 81.28 -34.544) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 1d4ff614-257d-4666-b745-f66485eced1d)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp b1341e3f-7c42-4a3c-9108-d26dced1bfef)) (fp_line (start 81.534 -31.75) (end 81.28 -32.004) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp ff5eab19-73be-487f-b93d-628d088d5c42)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp bb9a7110-7399-44ff-ad19-b0445f1f6d66)) (fp_line (start 81.534 -29.21) (end 81.28 -29.464) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 6e791be1-c8ee-4571-84cb-0f662459deb9)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 6f9359e4-dac2-4546-8028-b20753e1df70)) (fp_line (start 81.534 -26.67) (end 81.28 -26.924) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 614755c6-7239-448a-8212-6e2d5c19a144)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp e5ab5eed-fed7-4e93-bc02-45a9372d87c3)) (fp_line (start 81.534 -24.13) (end 81.28 -24.384) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 640f8177-70f6-4dff-af22-f2e0bf49e643)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 2eabbfdd-ec41-4788-a261-36d0f61a8883)) (fp_line (start 81.534 -21.59) (end 81.28 -21.844) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 4785a636-6ba5-4f8b-8681-a113e7426a10)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp b702e8d8-2b2f-4a98-8309-46b1a20c5cfa)) (fp_line (start 81.534 -19.05) (end 81.28 -19.304) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 6847d368-7465-4a8e-bbd3-3662bdd23c47)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp b5b4cb4a-b53e-405a-a9b6-ab0cbde7e52e)) (fp_line (start 81.534 -16.51) (end 81.28 -16.764) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 3fa1ccae-02d6-4c1e-990f-75558e4b10c0)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp f1918148-38f1-4d02-9268-ea2874900a81)) (fp_line (start 81.534 -13.97) (end 81.28 -14.224) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp e421b667-e4ce-4ba7-92e1-c063b6dd7d7b)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 9eaf64d8-1336-45cb-9045-58f50e3e85bb)) (fp_line (start 81.534 -11.43) (end 81.28 -11.684) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 942d28ad-527a-4830-9029-9036cc5e002b)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp ee441798-bf4d-4ac9-b090-e9f74460fb3b)) (fp_line (start 81.534 -8.89) (end 81.28 -9.144) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 9dfd32fc-c996-4805-b28e-89191c3b2b6e)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 457c8172-adc0-4e6f-81df-a361fef1dbd3)) (fp_line (start 81.534 -6.35) (end 81.28 -6.604) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 51b062c5-1ff5-4685-b7bb-f7afe4f3d08c)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 1073039d-078a-4abd-b662-963041985b90)) (fp_line (start 81.534 -6.35) (end 83.566 -6.35) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 021da1e3-a69a-432e-985d-85794a31629f)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 0ad71063-3c0f-4237-a7b5-5476c4df7039)) (fp_line (start 83.82 -51.816) (end 83.566 -52.07) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp a7a4e61a-3fdc-4867-8eab-a4d1b60811dc)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 57b4e789-009f-4505-be61-6674e0f46163)) (fp_line (start 83.82 -51.816) (end 84.074 -52.07) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 5ebe72b8-2388-4968-b3ca-11b76bc2c1a2)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp b42044d5-b4bf-443e-b2e0-14d3901b945a)) (fp_line (start 83.82 -6.604) (end 83.566 -6.35) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp bc939921-1a38-4867-94f4-c1d760311e6e)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 6e281b42-d278-478b-a6c9-b569e00658ea)) (fp_line (start 83.82 -6.604) (end 84.074 -6.35) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 00fac16a-0aab-418f-8489-9c417872c129)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 7b098a23-4876-45d6-8017-fd98bd2c6782)) (fp_line (start 84.074 -52.07) (end 86.106 -52.07) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 6a37daed-6317-4fd2-81ab-9379f6612b51)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 55cb8ee1-708a-49b4-b911-88579ab9e772)) (fp_line (start 84.074 -6.35) (end 86.106 -6.35) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp ad02d148-224c-4416-8dba-524166854223)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 53f4ec50-d5c7-45e5-a93a-5a88e5e96b0c)) (fp_line (start 86.106 -49.53) (end 86.36 -49.784) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp a8cc7540-fc29-4d07-9e80-b4c0877c2fb1)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp fc883791-26f9-495a-a279-45911e6573db)) (fp_line (start 86.106 -46.99) (end 86.36 -47.244) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 6181a756-e338-443a-b02c-d51fd2ce5e05)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 4e2cb4b8-850d-4ee8-b4ed-410f8abf6a7a)) (fp_line (start 86.106 -44.45) (end 86.36 -44.704) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 0c136832-71a2-4353-b4a7-fbcc43ed6d50)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 76155999-8750-4ef3-a6fe-8b2d4a12ac01)) (fp_line (start 86.106 -41.91) (end 86.36 -42.164) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp d46377cf-2d98-4382-a697-4547ccffdc35)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp d018c0fe-6515-4aa5-9f25-c86d94ef10fe)) (fp_line (start 86.106 -39.37) (end 86.36 -39.624) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 9a1c830f-4e02-473d-b43c-bdc16939fae8)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 9fd932aa-1de3-480e-bace-babbaa71ec58)) (fp_line (start 86.106 -36.83) (end 86.36 -37.084) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 5d532bdb-e405-429c-bc23-c2eef2129356)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 86f808ee-6f71-4dba-8c06-bf832c3a6918)) (fp_line (start 86.106 -34.29) (end 86.36 -34.544) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 804999cc-0e15-421c-bebb-22c329e25068)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp e563e4ce-6a9c-478f-8680-877782c7c222)) (fp_line (start 86.106 -31.75) (end 86.36 -32.004) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 3265be51-c5dd-4a89-8c5b-9a32b797898a)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp e4dfedb8-b594-4f80-b375-8e2e9b772d4b)) (fp_line (start 86.106 -29.21) (end 86.36 -29.464) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp d5297199-5539-49c7-9110-ffd9b672dc3e)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp b70af5d6-ca43-4e9f-9429-98f902fe3a74)) (fp_line (start 86.106 -26.67) (end 86.36 -26.924) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 70e833e1-f060-46e7-bd42-8476f2b971d1)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 89cfb5e8-85ed-46cf-bf68-a345904e5bb0)) (fp_line (start 86.106 -24.13) (end 86.36 -24.384) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp f62a8731-132e-4ed1-820c-3af17cc3bb32)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 38524810-edc1-468a-8014-703fcb02c533)) (fp_line (start 86.106 -21.59) (end 86.36 -21.844) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp a5597164-e466-4edd-8200-4fa6fc160705)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 3abc90f7-14fc-46c7-8fbc-a4fe8e82ef8c)) (fp_line (start 86.106 -19.05) (end 86.36 -19.304) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 45370354-ce41-418b-ba1e-4114bbb97d49)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp c42a8e2c-d2e7-48cb-8355-fc1d68708f00)) (fp_line (start 86.106 -16.51) (end 86.36 -16.764) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 73b3900b-4349-4bbf-b80a-fb291fb219b2)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 57db1027-c3d8-42b6-9b7f-adf765116ddf)) (fp_line (start 86.106 -13.97) (end 86.36 -14.224) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp a55095d0-22db-4b5f-8b77-5d98278c5d9c)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp f28440f2-dea5-4ac8-bf1d-26b8ddcaac89)) (fp_line (start 86.106 -11.43) (end 86.36 -11.684) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 4044c028-4a8f-4e83-9101-a18b56f8ba27)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp d053e763-505a-40eb-9ef2-7e324fb3f9a7)) (fp_line (start 86.106 -8.89) (end 86.36 -9.144) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp d1ae1b0a-0020-40d8-8476-bd70c9751723)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 20475d54-3ff3-45c5-a17a-c88f146ad0c8)) (fp_line (start 86.106 -6.35) (end 86.36 -6.604) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp a6197877-9d3d-4510-8454-322321ab8797)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 6bbca4c9-5083-4fa2-a959-b3a0a059447d)) (fp_line (start 86.36 -53.34) (end 3.81 -53.34) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp c12a7918-a2dc-47b3-be93-14a058cea789)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 5f1501c1-eae4-4987-a54c-4327b287360b)) (fp_line (start 86.36 -51.816) (end 86.106 -52.07) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp b3a3c87e-9dd2-4e42-a2cf-7702c221be83)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp a4dfe6d7-3deb-45b9-96ed-deaacaef7097)) (fp_line (start 86.36 -49.784) (end 86.36 -51.816) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 19f83bba-b74f-471b-9502-034493ce85da)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 2ac7d68a-5035-4565-82a5-605ba431497e)) (fp_line (start 86.36 -49.276) (end 86.106 -49.53) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 13a475a8-1c2f-4d08-a278-d8a1b7270586)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 067ff80f-e524-463e-8535-d69da9019f70)) (fp_line (start 86.36 -47.244) (end 86.36 -49.276) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 1208cc84-3173-42af-bc03-a8e6a1d476a5)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 58ae544f-2a56-493a-9489-65dc1bc43c96)) (fp_line (start 86.36 -46.736) (end 86.106 -46.99) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 7766e527-6dfa-4ff8-b98f-6ea8e7bc83de)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp c08fec68-f7f6-42cc-9b20-38f098ec9448)) (fp_line (start 86.36 -44.704) (end 86.36 -46.736) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 3084d172-eb2c-40c6-b3ee-17186a0423dc)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 66b27ac9-3fe8-42cc-90ba-e1e7ee2314df)) (fp_line (start 86.36 -44.196) (end 86.106 -44.45) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 056f7324-af50-4e0d-8755-b1ae8458449e)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp a8ed2e63-935e-42fb-9872-886c697145bc)) (fp_line (start 86.36 -42.164) (end 86.36 -44.196) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 059efbe9-70a7-4924-b688-c04eba4a2404)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp e878c37b-31cd-475c-96ff-b9877bf73329)) (fp_line (start 86.36 -41.656) (end 86.106 -41.91) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 5df30f59-fc36-49ec-a791-48e15127dcc1)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 63953e3b-d433-479c-acec-4276c435bd4a)) (fp_line (start 86.36 -39.624) (end 86.36 -41.656) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp aeac488c-45fc-4112-8305-e2c57d9d62a0)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 659558ee-805f-468e-911b-22a704bb89a0)) (fp_line (start 86.36 -39.116) (end 86.106 -39.37) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp e10d7078-0dd2-4b5e-83af-e78046e8445d)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 2c701a5b-1048-41c5-b2b1-00fe032eb84c)) (fp_line (start 86.36 -37.084) (end 86.36 -39.116) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp c2ce8643-8eda-4dbd-896b-eeabc5aea526)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 76ddc44a-0647-4b48-b35f-5267565e5c4c)) (fp_line (start 86.36 -36.576) (end 86.106 -36.83) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp b8e4a3ce-3c23-4825-8920-13ed624e513b)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp d67e51db-94bd-49d9-9134-2de115930173)) (fp_line (start 86.36 -34.544) (end 86.36 -36.576) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 251b6e23-4650-4094-95c2-30dbe46bceff)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 3ffb87fa-cbb4-4e47-ac37-c261605edb5b)) (fp_line (start 86.36 -34.036) (end 86.106 -34.29) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 5f154884-8390-45d1-af9a-6432e4d5ae6d)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 1fa45f52-c1fd-4701-bece-ce01d68c72d0)) (fp_line (start 86.36 -32.004) (end 86.36 -34.036) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 68414bb6-b161-4da7-9d81-312930007bc6)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp f6f88a6f-d179-435b-8999-dbd68770e3de)) (fp_line (start 86.36 -31.496) (end 86.106 -31.75) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 62e45425-8500-49f7-8d9c-0eab05543b5a)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp a71c0cf2-8f3c-4202-b6cc-428b688a7e4b)) (fp_line (start 86.36 -29.464) (end 86.36 -31.496) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp af6f0d14-45fb-40c7-bd91-84cd7d191d6a)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 740954cd-b783-43a9-8874-00ddca2955ae)) (fp_line (start 86.36 -28.956) (end 86.106 -29.21) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 8cb916b9-62a6-4fe7-a271-b7ce10d7f0f1)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 17b795ce-54f1-415b-8696-c293f98fcffb)) (fp_line (start 86.36 -26.924) (end 86.36 -28.956) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp f134b777-bba0-4604-9b33-9ece1c7b445f)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 9ff28d3a-5a04-4721-9225-526c67bfa6a6)) (fp_line (start 86.36 -26.416) (end 86.106 -26.67) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp e8e4634a-cd62-486d-9c19-796b3d3cfa96)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 6253f574-aa13-4d5e-b6c2-a19046218234)) (fp_line (start 86.36 -24.384) (end 86.36 -26.416) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp b1277a90-9a3a-478f-8fb5-c1a23f3ed96c)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 5527f1e8-838b-4642-b3b5-350b38e11ac5)) (fp_line (start 86.36 -23.876) (end 86.106 -24.13) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp c921e53b-ae9d-4616-b518-4a05a0b7d92e)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 10e92a75-4789-4008-8d81-c2df9b2e66f8)) (fp_line (start 86.36 -21.844) (end 86.36 -23.876) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp db78aed5-9745-4a12-b89e-efad92d17114)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 13b54283-eab9-4c9d-9c9a-f529b4290048)) (fp_line (start 86.36 -21.336) (end 86.106 -21.59) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp c482af02-0102-4729-aaf8-319efe84122f)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp acdf2bc0-134c-4c45-ba72-2eaa0d11169b)) (fp_line (start 86.36 -19.304) (end 86.36 -21.336) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 6f2c425b-8e89-48b2-8033-b6b9162a9f49)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 5901efe1-4124-42b1-82dc-4d69de5157af)) (fp_line (start 86.36 -18.796) (end 86.106 -19.05) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp bb49cd72-b820-4e2c-afb9-2a4727e526f2)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 6e9236e8-b266-48ce-a1bc-4dc8e03fd398)) (fp_line (start 86.36 -16.764) (end 86.36 -18.796) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp fc70cfca-1931-4be6-b780-088f1e5efe93)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp cecd83a9-826c-4d6e-90a6-e96cb1fccc16)) (fp_line (start 86.36 -16.256) (end 86.106 -16.51) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 208f345a-4228-4438-8dae-2b06f68d7d30)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 525fe57c-b28b-4897-ab36-aedba10258a5)) (fp_line (start 86.36 -14.224) (end 86.36 -16.256) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 13485cbb-7da9-4121-a1eb-197028e6de01)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp ca709da1-61ae-4a5a-9229-6ffbaa79fdd5)) (fp_line (start 86.36 -13.716) (end 86.106 -13.97) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 26d402fe-d970-48bf-827b-696e1a2d18c7)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp a9f2db2e-198b-4368-9b7a-7f182c806d8d)) (fp_line (start 86.36 -11.684) (end 86.36 -13.716) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp f58cca9c-f94b-4de3-a967-3da694d8ac88)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 946e88ca-3d04-4aa3-a617-23fd9321c109)) (fp_line (start 86.36 -11.176) (end 86.106 -11.43) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 5ae4682a-1cfd-47c4-b435-e41b305be983)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 2498c64a-f21d-43ef-a886-6809c0a88ac5)) (fp_line (start 86.36 -9.144) (end 86.36 -11.176) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp fec1cfbf-cba0-49eb-bd7e-caf6cc213859)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp bf373e14-4665-4bdf-a9a8-cdbedf5f2ce5)) (fp_line (start 86.36 -8.636) (end 86.106 -8.89) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 19328c89-2a38-4b66-8ccd-77b2fa101caa)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp baf865fd-2ff4-4793-9eec-34521e690c8e)) (fp_line (start 86.36 -6.604) (end 86.36 -8.636) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp ae912d55-a8bb-4b71-9763-c518b4834cdf)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp e8ec9683-1b0f-44bf-80bb-e9c00c6c5ba2)) (fp_line (start 87.63 -52.07) (end 86.36 -53.34) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 05cc2bbb-fcaf-4107-8694-99da233a7f17)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 0280211f-91aa-4366-9bc8-5e397b5e7dd6)) (fp_line (start 87.63 -40.64) (end 87.63 -52.07) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 9c3fde31-412a-4f14-8a68-4a8e1dfe950a)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp ff8acb7d-fe9b-40a5-a06b-78f3b4bc86d6)) (fp_line (start 87.63 -1.27) (end 90.17 -3.81) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 1a2a3514-f278-470e-a621-f7ba671c32ac)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 8d6cda4b-610d-4bb8-aae6-d8bfc4f187db)) (fp_line (start 87.63 0) (end 87.63 -1.27) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp d4ea5b7f-091d-48f1-b186-9678b26cb729)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 46fb9408-85a0-40eb-8484-85993e7696b6)) (fp_line (start 90.17 -38.1) (end 87.63 -40.64) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 07cf57f0-def8-462d-a9b1-5274da3a5ac4)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp da2f1b94-8396-420d-8082-33d0a4c8b523)) (fp_line (start 90.17 -3.81) (end 90.17 -38.1) - (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 6a5bff9e-1efb-41db-9846-ccfe98f1af79)) + (stroke (width 0.1) (type default)) (layer "B.SilkS") (tstamp 2ac3cda4-3619-4b6f-99bb-e287a681b5b7)) + (fp_circle (center 2.54 -2.53) (end 4.14 -2.53) + (stroke (width 0.1) (type default)) (fill none) (layer "B.SilkS") (tstamp be8d2a6f-5b01-4f07-90a5-94beaa69f3e8)) (fp_circle (center 3.81 -50.7998) (end 5.41 -50.7998) - (stroke (width 0.1) (type default)) (fill none) (layer "B.SilkS") (tstamp e315c67f-db8d-443c-9a7e-d9962c609e94)) + (stroke (width 0.1) (type default)) (fill none) (layer "B.SilkS") (tstamp 574cb6df-24d3-4be4-9a94-6357d0ec94c6)) + (fp_circle (center 54.61 -35.56) (end 56.21 -35.56) + (stroke (width 0.1) (type default)) (fill none) (layer "B.SilkS") (tstamp b16b807f-c067-4add-85f6-5c4f9ca9f418)) (fp_circle (center 54.61 -7.6198) (end 56.21 -7.6198) - (stroke (width 0.1) (type default)) (fill none) (layer "B.SilkS") (tstamp 34764f63-4060-4cf5-bec6-c9713592ad7d)) + (stroke (width 0.1) (type default)) (fill none) (layer "B.SilkS") (tstamp a43cb38f-e501-4927-8b4d-208f281c6715)) (fp_circle (center 78.7148 -50.8) (end 80.3148 -50.8) - (stroke (width 0.1) (type default)) (fill none) (layer "B.SilkS") (tstamp ad87d92a-2d5b-46e0-820c-dcb6b91bb163)) + (stroke (width 0.1) (type default)) (fill none) (layer "B.SilkS") (tstamp a83d3084-4e73-4aef-b3b1-58395f1e09d0)) + (fp_circle (center 85.09 -2.55) (end 86.69 -2.55) + (stroke (width 0.1) (type default)) (fill none) (layer "B.SilkS") (tstamp 6cb0dc96-e0f2-4bf2-9a8a-e86de0cb8756)) (fp_poly (pts (xy 51.054 -31.75) @@ -4733,252 +4811,231 @@ (xy 56.1594 -31.75) ) - (stroke (width 0.1) (type solid)) (fill none) (layer "B.SilkS") (tstamp b4926865-1ff9-49d3-8d28-e3f0edf39f69)) + (stroke (width 0.1) (type solid)) (fill none) (layer "B.SilkS") (tstamp 35742702-c02d-4469-aae2-0e57ba10cb9a)) (fp_line (start 7.62 -52.07) (end 74.93 -52.07) - (stroke (width 0.05) (type default)) (layer "F.CrtYd") (tstamp e9e655cc-0ae4-4ff2-97a9-19168519dd9a)) + (stroke (width 0.05) (type default)) (layer "F.CrtYd") (tstamp c8612e00-d524-4bd8-af61-dbadce547b9b)) (fp_line (start 7.62 -49.53) (end 7.62 -52.07) - (stroke (width 0.05) (type default)) (layer "F.CrtYd") (tstamp 015052c8-4878-4f19-890e-993b9ae287ef)) + (stroke (width 0.05) (type default)) (layer "F.CrtYd") (tstamp 529cf016-8a33-445a-adf0-a0c39360220e)) (fp_line (start 15.24 -3.81) (end 15.24 -1.27) - (stroke (width 0.05) (type default)) (layer "F.CrtYd") (tstamp 990dfc93-d8be-48ba-9960-0ffe0c991494)) + (stroke (width 0.05) (type default)) (layer "F.CrtYd") (tstamp 5392a672-4668-43f8-a7e7-c49a53619012)) (fp_line (start 15.24 -1.27) (end 81.28 -1.27) - (stroke (width 0.05) (type default)) (layer "F.CrtYd") (tstamp 7f149a44-65ee-4e4e-99dd-857ff0844d19)) + (stroke (width 0.05) (type default)) (layer "F.CrtYd") (tstamp 3184f7bc-64c9-4357-95d7-84bb7d619524)) (fp_line (start 74.93 -52.07) (end 74.93 -49.53) - (stroke (width 0.05) (type default)) (layer "F.CrtYd") (tstamp 8748a8c0-159f-4fec-9081-95a6edccd7d2)) + (stroke (width 0.05) (type default)) (layer "F.CrtYd") (tstamp 112bb289-9853-4f93-933c-7e63eb9b1697)) (fp_line (start 74.93 -49.53) (end 7.62 -49.53) - (stroke (width 0.05) (type default)) (layer "F.CrtYd") (tstamp de3dae68-2f9e-4c8c-abc4-23679d383dc7)) + (stroke (width 0.05) (type default)) (layer "F.CrtYd") (tstamp 9b9ebba7-b1b5-45dd-b97d-7d2dfa651844)) (fp_line (start 81.28 -48.26) (end 81.28 -6.35) - (stroke (width 0.05) (type default)) (layer "F.CrtYd") (tstamp c8474972-f204-4dfa-aaed-345743c97b67)) + (stroke (width 0.05) (type default)) (layer "F.CrtYd") (tstamp d114b743-2d23-4444-989f-727d4d63029e)) (fp_line (start 81.28 -6.35) (end 86.36 -6.35) - (stroke (width 0.05) (type default)) (layer "F.CrtYd") (tstamp 419b11d7-82f2-4189-9d9a-b08dcf3d9181)) + (stroke (width 0.05) (type default)) (layer "F.CrtYd") (tstamp 41c4f1e7-55f6-47d8-8bec-c689f17afa47)) (fp_line (start 81.28 -3.81) (end 15.24 -3.81) - (stroke (width 0.05) (type default)) (layer "F.CrtYd") (tstamp c890d379-a522-47a0-a6e4-a9d659195a0f)) + (stroke (width 0.05) (type default)) (layer "F.CrtYd") (tstamp 62aff19e-e319-4c44-b9fd-ebd7060a774b)) (fp_line (start 81.28 -1.27) (end 81.28 -3.81) - (stroke (width 0.05) (type default)) (layer "F.CrtYd") (tstamp e307eb5d-530b-4f0c-9490-a983cb8131d6)) + (stroke (width 0.05) (type default)) (layer "F.CrtYd") (tstamp f9fc0683-99ac-44a4-8a2d-e615a4c17af1)) (fp_line (start 82.55 -52.07) (end 82.55 -48.26) - (stroke (width 0.05) (type default)) (layer "F.CrtYd") (tstamp 2d96c962-b5bf-458f-8356-8d2c16837d10)) + (stroke (width 0.05) (type default)) (layer "F.CrtYd") (tstamp 339e6098-a09d-49a4-a9fa-5c14731ceaa0)) (fp_line (start 82.55 -48.26) (end 81.28 -48.26) - (stroke (width 0.05) (type default)) (layer "F.CrtYd") (tstamp e73119d2-d9d7-4588-8805-7b9225382347)) + (stroke (width 0.05) (type default)) (layer "F.CrtYd") (tstamp f88b9904-c540-4efc-903f-0c6dcac27bf9)) (fp_line (start 86.36 -52.07) (end 82.55 -52.07) - (stroke (width 0.05) (type default)) (layer "F.CrtYd") (tstamp 459c3577-e38f-418a-8fdd-320c7d58a572)) + (stroke (width 0.05) (type default)) (layer "F.CrtYd") (tstamp d1726c69-5253-4f5e-8946-e622f03f7314)) (fp_line (start 86.36 -6.35) (end 86.36 -52.07) - (stroke (width 0.05) (type default)) (layer "F.CrtYd") (tstamp 42aa657a-a0ae-46c3-bd75-1cf69bfe0999)) - (fp_circle (center 2.54 -2.54) (end 5.99 -2.54) - (stroke (width 0.15) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 257f08c5-bf21-49e2-8a24-e58b28b41af0)) - (fp_circle (center 54.61 -35.56) (end 56.5 -35.5) - (stroke (width 0.15) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 0e6e7d3b-bcc3-4bb0-8d44-f29a9f12c0ba)) - (fp_circle (center 85.09 -2.54) (end 88.54 -2.54) - (stroke (width 0.15) (type solid)) (fill none) (layer "F.CrtYd") (tstamp 729fd476-9136-4908-b2dd-603e31fea8c3)) + (stroke (width 0.05) (type default)) (layer "F.CrtYd") (tstamp d0b1f967-3a0c-4fa2-8782-47a4c335b1d9)) (fp_rect (start 6.096 -52.07) (end 26.416 -49.53) - (stroke (width 0.1) (type solid)) (fill none) (layer "B.Fab") (tstamp b41e8999-3f96-4b5d-989f-1e9e8a87cab3)) + (stroke (width 0.1) (type solid)) (fill none) (layer "B.Fab") (tstamp 46681e48-18ba-4179-b1da-8e41956f9cb8)) (fp_rect (start 6.096 -52.07) (end 31.496 -49.53) - (stroke (width 0.1) (type solid)) (fill none) (layer "B.Fab") (tstamp 0dc3f1ed-b27b-4ab8-9698-0a7cdd26e8f0)) + (stroke (width 0.1) (type solid)) (fill none) (layer "B.Fab") (tstamp db05672e-af9b-4fde-b437-0df5b8544fb5)) (fp_rect (start 15.24 -3.81) (end 35.56 -1.27) - (stroke (width 0.1) (type solid)) (fill none) (layer "B.Fab") (tstamp 0e713480-57dd-4d88-8b7d-543f9def28bf)) + (stroke (width 0.1) (type solid)) (fill none) (layer "B.Fab") (tstamp aadc1a6c-5f2e-4af0-a05f-f499e697adc7)) (fp_rect (start 15.24 -3.81) (end 35.56 -1.27) - (stroke (width 0.1) (type solid)) (fill none) (layer "B.Fab") (tstamp 3fc2bcab-4e4b-4a23-b2fe-d400b347d5eb)) + (stroke (width 0.1) (type solid)) (fill none) (layer "B.Fab") (tstamp ec16c10c-42e2-4fda-81b2-058cd30c6c63)) (fp_rect (start 33.02 -52.07) (end 53.34 -49.53) - (stroke (width 0.1) (type solid)) (fill none) (layer "B.Fab") (tstamp a9d0177f-8537-4d6b-a0dc-bc4f7cdb8625)) + (stroke (width 0.1) (type solid)) (fill none) (layer "B.Fab") (tstamp 2cfde287-fd59-4e03-b52f-d2858dc3d6c2)) (fp_rect (start 33.02 -52.07) (end 53.34 -49.53) - (stroke (width 0.1) (type solid)) (fill none) (layer "B.Fab") (tstamp c162e757-f049-4e56-b275-61d8e5f54f9c)) + (stroke (width 0.1) (type solid)) (fill none) (layer "B.Fab") (tstamp 6626a0e8-2f3f-453b-8c69-1741bb97a68d)) (fp_rect (start 38.1 -3.81) (end 58.42 -1.27) - (stroke (width 0.1) (type solid)) (fill none) (layer "B.Fab") (tstamp 09846de6-d532-4c5e-a7c5-715cd94a9110)) + (stroke (width 0.1) (type solid)) (fill none) (layer "B.Fab") (tstamp 2164af4b-7082-4598-b7e7-b4a569634c3e)) (fp_rect (start 38.1 -3.81) (end 58.42 -1.27) - (stroke (width 0.1) (type solid)) (fill none) (layer "B.Fab") (tstamp 90d479d4-fc89-444b-b195-1b8de1e88540)) + (stroke (width 0.1) (type solid)) (fill none) (layer "B.Fab") (tstamp 70e619d0-5656-4725-a3ff-2c631543277f)) (fp_rect (start 55.88 -52.07) (end 76.2 -49.53) - (stroke (width 0.1) (type solid)) (fill none) (layer "B.Fab") (tstamp 90144efa-4e2b-4b2b-923a-8df12502a2fe)) + (stroke (width 0.1) (type solid)) (fill none) (layer "B.Fab") (tstamp e95a32eb-3692-49c0-b7cd-2a9ea1197e9a)) (fp_rect (start 60.96 -3.81) (end 81.28 -1.27) - (stroke (width 0.1) (type solid)) (fill none) (layer "B.Fab") (tstamp 1da62653-f240-4568-a20a-f93c63310a76)) + (stroke (width 0.1) (type solid)) (fill none) (layer "B.Fab") (tstamp 05cbc89b-40b1-4417-a8a7-6eb049a67b4c)) (fp_rect (start 81.28 -52.07) (end 86.36 -6.35) - (stroke (width 0.1) (type solid)) (fill none) (layer "B.Fab") (tstamp a0ff7a17-e503-455e-a5cf-5d26266e9048)) - (fp_circle (center 2.54 -2.54) (end 5.74 -2.54) - (stroke (width 0.15) (type solid)) (fill none) (layer "B.Fab") (tstamp 03b029dc-6801-474d-9e7b-0e3b6a9ad71c)) - (fp_circle (center 54.61 -35.56) (end 57.81 -35.56) - (stroke (width 0.15) (type solid)) (fill none) (layer "B.Fab") (tstamp 19374b04-fadc-41b6-a046-d45f5335dc0e)) - (fp_circle (center 85.09 -2.54) (end 88.29 -2.54) - (stroke (width 0.15) (type solid)) (fill none) (layer "B.Fab") (tstamp 94fa6954-1745-47a0-b911-7426c31b17bc)) - (fp_circle (center 2.54 -2.54) (end 5.74 -2.54) - (stroke (width 0.15) (type solid)) (fill none) (layer "F.Fab") (tstamp e68bd3d6-5024-4f84-abd6-6fa0d6ff5643)) - (fp_circle (center 54.61 -35.56) (end 57.81 -35.56) - (stroke (width 0.15) (type solid)) (fill none) (layer "F.Fab") (tstamp 3365dd82-9881-4bc7-8b0d-90b7883a7827)) - (fp_circle (center 85.09 -2.54) (end 88.29 -2.54) - (stroke (width 0.15) (type solid)) (fill none) (layer "F.Fab") (tstamp ef2c92e0-9f1c-454d-b8f2-b88e7bfa0720)) - (pad "" np_thru_hole circle (at 2.54 -2.54) (size 3.2 3.2) (drill 3.2) (layers "*.Cu" "*.Mask") (tstamp ab7f9fd7-6838-401a-9fb9-2d1241ae988d)) - (pad "" thru_hole oval (at 16.51 -2.54) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") (tstamp fa61db9e-407f-4df1-8bca-663424532da0)) - (pad "" np_thru_hole circle (at 54.61 -35.56) (size 3.2 3.2) (drill 3.2) (layers "*.Cu" "*.Mask") (tstamp 2416c3d0-2b95-4685-b9d4-86207d5fde42)) - (pad "" np_thru_hole circle (at 85.09 -2.54) (size 3.2 3.2) (drill 3.2) (layers "*.Cu" "*.Mask") (tstamp 0eee842b-21ce-44a8-a341-5288af71da99)) + (stroke (width 0.1) (type solid)) (fill none) (layer "B.Fab") (tstamp 0378647b-ae54-4829-a34c-bedf31ccbf9a)) + (pad "" thru_hole oval (at 16.51 -2.54) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") (tstamp de0550fa-11bb-4453-a1e9-d09fec665317)) (pad "3V3" thru_hole oval (at 24.13 -2.54) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 82 "unconnected-(MEGA2560-3.3V-Pad3V3)") (pinfunction "3.3V") (pintype "power_out") (tstamp ac95e09e-c5fe-482a-9659-43f7ab72d417)) + (net 82 "unconnected-(MEGA2560-3.3V-Pad3V3)") (pinfunction "3.3V") (pintype "power_out") (tstamp 1a31d79a-96ce-4fde-9d02-64b7054b571f)) (pad "5V1" thru_hole oval (at 26.67 -2.54) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 48 "5V") (pinfunction "5V") (pintype "power_in") (tstamp 1c2f8ee4-cc8e-4b4c-b237-d17fdae33339)) + (net 48 "5V") (pinfunction "5V") (pintype "power_in") (tstamp 4e513b57-21d6-4ee0-b277-abaaf638bf96)) (pad "5V3" thru_hole oval (at 82.55 -50.8) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 81 "unconnected-(MEGA2560-5V-Pad5V3)") (pinfunction "5V") (pintype "power_in") (tstamp 0311435e-e209-47bd-b4d4-7123f5069265)) + (net 81 "unconnected-(MEGA2560-5V-Pad5V3)") (pinfunction "5V") (pintype "power_in") (tstamp 2a086a0c-e20d-41ca-b8fd-ac799ce1fe11)) (pad "5V4" thru_hole oval (at 85.09 -50.8) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 48 "5V") (pinfunction "5V") (pintype "power_in") (tstamp cdef9725-2f23-499f-b801-420f829f21a1)) + (net 48 "5V") (pinfunction "5V") (pintype "power_in") (tstamp 3b341c70-265e-4c77-92c7-91746fcedbd2)) (pad "A0" thru_hole oval (at 39.37 -2.54) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 5 "A00") (pinfunction "A0") (pintype "bidirectional") (tstamp 29f1069b-2a87-4347-871f-de454f5584b0)) + (net 5 "A00") (pinfunction "A0") (pintype "bidirectional") (tstamp c0c21f13-c59d-4612-80cd-202737b80fe5)) (pad "A1" thru_hole oval (at 41.91 -2.54) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 6 "A01") (pinfunction "A1") (pintype "bidirectional") (tstamp 8562e054-79d8-4228-b82e-bf07434c3df9)) + (net 6 "A01") (pinfunction "A1") (pintype "bidirectional") (tstamp e4fe7278-c659-4bce-86ef-6d168fa4f0e0)) (pad "A2" thru_hole oval (at 44.45 -2.54) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 7 "A02") (pinfunction "A2") (pintype "bidirectional") (tstamp 95de989a-92ba-4803-81e5-e65d3faf0abd)) + (net 7 "A02") (pinfunction "A2") (pintype "bidirectional") (tstamp 0381a595-e925-47dc-919d-0827010a1f0e)) (pad "A3" thru_hole oval (at 46.99 -2.54) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 8 "A03") (pinfunction "A3") (pintype "bidirectional") (tstamp cd3e2365-8b8c-4f47-92bc-01e2bb7358bf)) + (net 8 "A03") (pinfunction "A3") (pintype "bidirectional") (tstamp 7d8be18a-1aab-4b74-857e-a847c41f3a7d)) (pad "A4" thru_hole oval (at 49.53 -2.54) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 9 "A04") (pinfunction "A4") (pintype "bidirectional") (tstamp ae274397-a292-4e9e-a0ba-bf35596cf1b6)) + (net 9 "A04") (pinfunction "A4") (pintype "bidirectional") (tstamp b32eb430-891e-4d97-8791-9392ff31cc22)) (pad "A5" thru_hole oval (at 52.07 -2.54) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 10 "A05") (pinfunction "A5") (pintype "bidirectional") (tstamp f3fcf5d7-1c37-40ca-9b99-96b1beafcaea)) + (net 10 "A05") (pinfunction "A5") (pintype "bidirectional") (tstamp dbb9dec3-5235-4c74-bf07-77149cae4966)) (pad "A6" thru_hole oval (at 54.61 -2.54) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 11 "A06") (pinfunction "A6") (pintype "bidirectional") (tstamp 75e17bb0-00a7-4e8f-94e1-56e9aeed00b3)) + (net 11 "A06") (pinfunction "A6") (pintype "bidirectional") (tstamp e9126cbe-caef-4afd-9e73-f4b08c3e73fe)) (pad "A7" thru_hole oval (at 57.15 -2.54) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 12 "A07") (pinfunction "A7") (pintype "bidirectional") (tstamp 91f60720-53ac-45d3-b94b-c2f22dab6d51)) + (net 12 "A07") (pinfunction "A7") (pintype "bidirectional") (tstamp f24802f7-7843-409c-8a29-b7983732f038)) (pad "A8" thru_hole oval (at 62.23 -2.54) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 13 "A08") (pinfunction "A8") (pintype "bidirectional") (tstamp 0d80b0ab-612a-43c9-b21d-a21fb71fe94f)) + (net 13 "A08") (pinfunction "A8") (pintype "bidirectional") (tstamp f7f1c2d9-713b-49f5-a503-17fa962367f2)) (pad "A9" thru_hole oval (at 64.77 -2.54) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 14 "A09") (pinfunction "A9") (pintype "bidirectional") (tstamp 83694dfb-7f1d-44c1-b79a-3c686160a65e)) + (net 14 "A09") (pinfunction "A9") (pintype "bidirectional") (tstamp 4de1d20e-4152-4c54-8a96-becb3cb6d2a3)) (pad "A10" thru_hole oval (at 67.31 -2.54) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 15 "A10") (pinfunction "A10") (pintype "bidirectional") (tstamp 5553bfdd-189f-4ea8-912d-fc833deea993)) + (net 15 "A10") (pinfunction "A10") (pintype "bidirectional") (tstamp 69bc7922-6964-4f97-9326-b9ea513875b0)) (pad "A11" thru_hole oval (at 69.85 -2.54) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 16 "A11") (pinfunction "A11") (pintype "bidirectional") (tstamp 12cedcd0-eb72-47e7-8e45-2a7f91bd2a5b)) + (net 16 "A11") (pinfunction "A11") (pintype "bidirectional") (tstamp 1a67f001-fb14-4ac6-9437-67ddc40337be)) (pad "A12" thru_hole oval (at 72.39 -2.54) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 17 "A12") (pinfunction "A12") (pintype "bidirectional") (tstamp c7a59c18-ae52-46b0-9259-ead9159cb71a)) + (net 17 "A12") (pinfunction "A12") (pintype "bidirectional") (tstamp a8517b31-3257-4697-b478-f8539590e20e)) (pad "A13" thru_hole oval (at 74.93 -2.54) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 18 "A13") (pinfunction "A13") (pintype "bidirectional") (tstamp 38082b00-34e7-409e-8c02-4565631104b5)) + (net 18 "A13") (pinfunction "A13") (pintype "bidirectional") (tstamp 42e5fd29-33a2-47d8-9f12-181c3c00db5e)) (pad "A14" thru_hole oval (at 77.47 -2.54) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 19 "A14") (pinfunction "A14") (pintype "bidirectional") (tstamp 711884e4-33a8-49ec-a6e4-c22a93348736)) + (net 19 "A14") (pinfunction "A14") (pintype "bidirectional") (tstamp d50e0567-57a0-4feb-b788-dfda97114e25)) (pad "A15" thru_hole oval (at 80.01 -2.54) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 20 "A15") (pinfunction "A15") (pintype "bidirectional") (tstamp e76ea20b-b227-41b9-8478-fbe3f68d5608)) + (net 20 "A15") (pinfunction "A15") (pintype "bidirectional") (tstamp c81e5a25-568d-4b95-8b90-ab487eb33e34)) (pad "AREF" thru_hole oval (at 12.446 -50.8) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 22 "AREF") (pinfunction "AREF") (pintype "input") (tstamp a9971d2c-bad0-4c72-ad8b-9018a8c05d35)) + (net 22 "AREF") (pinfunction "AREF") (pintype "input") (tstamp a8188a02-ac44-471f-8c97-67f7d70f182d)) (pad "D0" thru_hole oval (at 52.07 -50.8) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 80 "unconnected-(MEGA2560-D0{slash}RX0-PadD0)") (pinfunction "D0/RX0") (pintype "bidirectional") (tstamp a58497a2-8f09-46cd-947d-4d9898365da4)) + (net 80 "unconnected-(MEGA2560-D0{slash}RX0-PadD0)") (pinfunction "D0/RX0") (pintype "bidirectional") (tstamp 559d865c-2ae2-4423-8650-a5412307a0f9)) (pad "D1" thru_hole oval (at 49.53 -50.8) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 79 "unconnected-(MEGA2560-D1{slash}TX0-PadD1)") (pinfunction "D1/TX0") (pintype "bidirectional") (tstamp fed2dc6d-dfb5-42a2-93b4-a285582f7678)) + (net 79 "unconnected-(MEGA2560-D1{slash}TX0-PadD1)") (pinfunction "D1/TX0") (pintype "bidirectional") (tstamp 735e4598-7eed-4005-bcd0-cd55144fd500)) (pad "D2" thru_hole oval (at 46.99 -50.8) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 78 "unconnected-(MEGA2560-D2_INT0-PadD2)") (pinfunction "D2_INT0") (pintype "bidirectional") (tstamp 6d3f7a6f-c5cf-4f03-a509-6313b2c7ca2a)) + (net 78 "unconnected-(MEGA2560-D2_INT0-PadD2)") (pinfunction "D2_INT0") (pintype "bidirectional") (tstamp e0c35739-2912-4b64-9905-2cddacacf9b2)) (pad "D3" thru_hole oval (at 44.45 -50.8) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 77 "unconnected-(MEGA2560-D3_INT1-PadD3)") (pinfunction "D3_INT1") (pintype "bidirectional") (tstamp c3ec1937-6999-4296-be4c-7d786aa31712)) + (net 77 "unconnected-(MEGA2560-D3_INT1-PadD3)") (pinfunction "D3_INT1") (pintype "bidirectional") (tstamp 268bf37a-b3a6-4cce-a15b-4d2285969c69)) (pad "D4" thru_hole oval (at 41.91 -50.8) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 76 "unconnected-(MEGA2560-PadD4)") (pinfunction "D4") (pintype "bidirectional") (tstamp dee39f26-b430-415a-b684-ec577a29e6d6)) + (net 76 "unconnected-(MEGA2560-PadD4)") (pinfunction "D4") (pintype "bidirectional") (tstamp 8a3990ef-e204-487e-830e-7c0c917850c5)) (pad "D5" thru_hole oval (at 39.37 -50.8) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 75 "unconnected-(MEGA2560-PadD5)") (pinfunction "D5") (pintype "bidirectional") (tstamp 82a7532a-5aab-4930-9706-0b7d3717e829)) + (net 75 "unconnected-(MEGA2560-PadD5)") (pinfunction "D5") (pintype "bidirectional") (tstamp 2dd5e95f-23c1-4729-b747-724ea69fa9e1)) (pad "D6" thru_hole oval (at 36.83 -50.8) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 74 "unconnected-(MEGA2560-PadD6)") (pinfunction "D6") (pintype "bidirectional") (tstamp aa156bef-5cd1-4ae3-b8a8-93ed5ea73d4d)) + (net 74 "unconnected-(MEGA2560-PadD6)") (pinfunction "D6") (pintype "bidirectional") (tstamp 8eff3e7f-a112-4cea-a34e-ea5ff1e6aed3)) (pad "D7" thru_hole oval (at 34.29 -50.8) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 73 "unconnected-(MEGA2560-PadD7)") (pinfunction "D7") (pintype "bidirectional") (tstamp 58a91d97-be04-4d8f-86de-2cbfc04944e2)) + (net 73 "unconnected-(MEGA2560-PadD7)") (pinfunction "D7") (pintype "bidirectional") (tstamp dad70ef1-bfeb-43be-b074-07d8f087c8b4)) (pad "D8" thru_hole oval (at 30.226 -50.8) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 72 "unconnected-(MEGA2560-PadD8)") (pinfunction "D8") (pintype "bidirectional") (tstamp da0ae3bb-69b6-43d6-bef0-94a27ca0a5b0)) + (net 72 "unconnected-(MEGA2560-PadD8)") (pinfunction "D8") (pintype "bidirectional") (tstamp caf7be82-112d-4f06-83c4-d668844ac1b5)) (pad "D9" thru_hole oval (at 27.686 -50.8) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 71 "unconnected-(MEGA2560-PadD9)") (pinfunction "D9") (pintype "bidirectional") (tstamp 31750e99-eb3b-4ae0-b0fa-12b06aeb7b06)) + (net 71 "unconnected-(MEGA2560-PadD9)") (pinfunction "D9") (pintype "bidirectional") (tstamp a321165b-1195-48e8-9188-0af0f71aa2ea)) (pad "D10" thru_hole oval (at 25.146 -50.8) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 70 "unconnected-(MEGA2560-PadD10)") (pinfunction "D10") (pintype "bidirectional") (tstamp 007d7ae3-a2e5-45ae-b385-4bcf867ab699)) + (net 70 "unconnected-(MEGA2560-PadD10)") (pinfunction "D10") (pintype "bidirectional") (tstamp cc51b44e-e5df-4a7e-a590-f66aa52c7877)) (pad "D11" thru_hole oval (at 22.606 -50.8) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 69 "unconnected-(MEGA2560-PadD11)") (pinfunction "D11") (pintype "bidirectional") (tstamp d8463383-081a-448a-9a96-e3759fadec92)) + (net 69 "unconnected-(MEGA2560-PadD11)") (pinfunction "D11") (pintype "bidirectional") (tstamp 06523080-869c-4955-b274-cb4e2f7e2d95)) (pad "D12" thru_hole oval (at 20.066 -50.8) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 68 "unconnected-(MEGA2560-PadD12)") (pinfunction "D12") (pintype "bidirectional") (tstamp a017dcdd-aa50-4c7c-8e1b-62518f4a955c)) + (net 68 "unconnected-(MEGA2560-PadD12)") (pinfunction "D12") (pintype "bidirectional") (tstamp a4e51de8-a10e-4a36-a790-a81860f83f1b)) (pad "D13" thru_hole oval (at 17.526 -50.8) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 67 "unconnected-(MEGA2560-PadD13)") (pinfunction "D13") (pintype "bidirectional") (tstamp fbe439ed-ae31-4dd7-bf5f-a07db995594f)) + (net 67 "unconnected-(MEGA2560-PadD13)") (pinfunction "D13") (pintype "bidirectional") (tstamp 4c5632f5-aa34-464d-bf4c-35971c2e5957)) (pad "D14" thru_hole oval (at 57.15 -50.8) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 54 "TX3") (pinfunction "D14/TX3") (pintype "bidirectional") (tstamp cc00fbb6-1ca1-4ea0-a7a9-34635e6ede0f)) + (net 54 "TX3") (pinfunction "D14/TX3") (pintype "bidirectional") (tstamp 3186dc97-96a4-4ebf-8dd2-1534e10093ca)) (pad "D15" thru_hole oval (at 59.69 -50.8) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 53 "RX3") (pinfunction "D15/RX3") (pintype "bidirectional") (tstamp 1fe52e16-66d7-4eda-9c89-97b3fe2c3bb2)) + (net 53 "RX3") (pinfunction "D15/RX3") (pintype "bidirectional") (tstamp 5f086795-6c92-4a99-84b3-0a17502866bb)) (pad "D16" thru_hole oval (at 62.23 -50.8) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 4 "TX2") (pinfunction "D16/TX2") (pintype "bidirectional") (tstamp c2e24e16-70fe-4400-86cf-7ff458376038)) + (net 4 "TX2") (pinfunction "D16/TX2") (pintype "bidirectional") (tstamp 24f3a5e5-f362-4a92-bf6c-9d044f8f4eb8)) (pad "D17" thru_hole oval (at 64.77 -50.8) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 52 "RX2") (pinfunction "D17/RX2") (pintype "bidirectional") (tstamp bdad0826-3983-4190-9f4f-6bf1dacb8bc3)) + (net 52 "RX2") (pinfunction "D17/RX2") (pintype "bidirectional") (tstamp ac60bcc0-7f5e-4861-b5f5-e5739da4af74)) (pad "D18" thru_hole oval (at 67.31 -50.8) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 1 "TX1") (pinfunction "D18/TX1") (pintype "bidirectional") (tstamp f8b6c3b8-92d7-421e-9590-dc8d1363c19b)) + (net 1 "TX1") (pinfunction "D18/TX1") (pintype "bidirectional") (tstamp 03d34495-4351-4cb6-8d54-579ece17097e)) (pad "D19" thru_hole oval (at 69.85 -50.8) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 3 "RX1") (pinfunction "D19/RX1") (pintype "bidirectional") (tstamp fa104a31-6ec6-4fc9-b4c4-73eee98b8f3f)) + (net 3 "RX1") (pinfunction "D19/RX1") (pintype "bidirectional") (tstamp 668cb425-ea93-49a9-9a2a-c039201ee292)) (pad "D20" thru_hole oval (at 72.39 -50.8) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 50 "SDA") (pinfunction "D20/SDA") (pintype "bidirectional") (tstamp 3218ad5b-8f9a-41e2-a9e5-cb5bfba9ba6c)) + (net 50 "SDA") (pinfunction "D20/SDA") (pintype "bidirectional") (tstamp 8c6bf500-c4d8-45f7-a011-6d9198c0ff36)) (pad "D21" thru_hole oval (at 74.93 -50.8) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 49 "SCL") (pinfunction "D21/SCL") (pintype "bidirectional") (tstamp 269e763c-0ee9-4d02-8c75-cb02fa8bdbf8)) + (net 49 "SCL") (pinfunction "D21/SCL") (pintype "bidirectional") (tstamp 5f5be5b9-bd89-4aa6-985a-f98ac5241b31)) (pad "D22" thru_hole oval (at 82.55 -48.26) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 2 "EN_485_1") (pinfunction "D22") (pintype "bidirectional") (tstamp e169beba-d1e9-45c4-a17a-e1ad23957cb7)) + (net 2 "EN_485_1") (pinfunction "D22") (pintype "bidirectional") (tstamp ba098b21-6266-4425-80e8-4b68d7c6d2b7)) (pad "D23" thru_hole oval (at 85.09 -48.26) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 51 "EN_485_2") (pinfunction "D23") (pintype "bidirectional") (tstamp 4096a1dd-8cf5-4311-a0ef-99754e13242e)) + (net 51 "EN_485_2") (pinfunction "D23") (pintype "bidirectional") (tstamp 077ec858-b0a2-41af-a9c5-f27cb9f1b18a)) (pad "D24" thru_hole oval (at 82.55 -45.72) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 84 "LED_1") (pinfunction "D24") (pintype "bidirectional") (tstamp f3ecf5e5-760d-4466-bf98-90d34609c54b)) + (net 84 "LED_1") (pinfunction "D24") (pintype "bidirectional") (tstamp 4a1e8f11-996c-43ab-8cdc-23bd9528888f)) (pad "D25" thru_hole oval (at 85.09 -45.72) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 83 "LED_2") (pinfunction "D25") (pintype "bidirectional") (tstamp 4307a05e-443e-4095-aecd-ec4cad3e4ec7)) + (net 83 "LED_2") (pinfunction "D25") (pintype "bidirectional") (tstamp 0c0057cf-a67f-4720-8c03-8b110244f8bf)) (pad "D26" thru_hole oval (at 82.55 -43.18) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 40 "DI_00") (pinfunction "D26") (pintype "bidirectional") (tstamp 7b8ebfca-7d51-407b-9bdd-75d067a12239)) + (net 40 "DI_00") (pinfunction "D26") (pintype "bidirectional") (tstamp 97a8841b-e37d-484c-bbf6-913750e5ce63)) (pad "D27" thru_hole oval (at 85.09 -43.18) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 41 "DI_01") (pinfunction "D27") (pintype "bidirectional") (tstamp c354401d-ed75-4d2d-af68-f974d9d148fd)) + (net 41 "DI_01") (pinfunction "D27") (pintype "bidirectional") (tstamp 7a986115-8049-40b9-9ec1-f8dcc0ab6014)) (pad "D28" thru_hole oval (at 82.55 -40.64) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 42 "DI_02") (pinfunction "D28") (pintype "bidirectional") (tstamp 76db3c30-b08a-4dea-b8aa-2b62f8188514)) + (net 42 "DI_02") (pinfunction "D28") (pintype "bidirectional") (tstamp 669cd64c-4e34-44e0-960f-b9a779d93c67)) (pad "D29" thru_hole oval (at 85.09 -40.64) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 43 "DI_03") (pinfunction "D29") (pintype "bidirectional") (tstamp 36e11343-dffd-4566-8f99-df022a57ab66)) + (net 43 "DI_03") (pinfunction "D29") (pintype "bidirectional") (tstamp 63479bd9-c4c6-41e2-add6-30565e449e78)) (pad "D30" thru_hole oval (at 82.55 -38.1) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 44 "DI_04") (pinfunction "D30") (pintype "bidirectional") (tstamp 9ccc7cc9-602b-4ce3-a273-ecbbcc8b5aa1)) + (net 44 "DI_04") (pinfunction "D30") (pintype "bidirectional") (tstamp a36606dd-03d7-4842-9b14-334c6f6d6356)) (pad "D31" thru_hole oval (at 85.09 -38.1) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 45 "DI_05") (pinfunction "D31") (pintype "bidirectional") (tstamp 20e5b969-039d-4969-a3b7-f1af901bbbfd)) + (net 45 "DI_05") (pinfunction "D31") (pintype "bidirectional") (tstamp d545cb76-c017-48bf-974f-17efb9f63a52)) (pad "D32" thru_hole oval (at 82.55 -35.56) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 46 "DI_06") (pinfunction "D32") (pintype "bidirectional") (tstamp dda236ad-ff84-490e-98e4-8fa4615805ae)) + (net 46 "DI_06") (pinfunction "D32") (pintype "bidirectional") (tstamp 1b283972-d697-4d0a-9ee6-e29183e9277f)) (pad "D33" thru_hole oval (at 85.09 -35.56) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 47 "DI_07") (pinfunction "D33") (pintype "bidirectional") (tstamp 7dea6f20-e546-452c-9401-2eba6e92890e)) + (net 47 "DI_07") (pinfunction "D33") (pintype "bidirectional") (tstamp 4d7331dc-de68-4a0a-b3e1-3faadf2f5f31)) (pad "D34" thru_hole oval (at 82.55 -33.02) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 24 "DO_00") (pinfunction "D34") (pintype "bidirectional") (tstamp af6e223a-8c83-4f63-8ca7-cf4d6a3bd767)) + (net 24 "DO_00") (pinfunction "D34") (pintype "bidirectional") (tstamp ba529a52-20c8-44ca-bf8e-e007beea1ac4)) (pad "D35" thru_hole oval (at 85.09 -33.02) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 25 "DO_01") (pinfunction "D35") (pintype "bidirectional") (tstamp 6396ca00-8cd2-46bb-b086-3797df8bab6f)) + (net 25 "DO_01") (pinfunction "D35") (pintype "bidirectional") (tstamp 453e9702-53e9-4747-beae-7cc9aaecf35d)) (pad "D36" thru_hole oval (at 82.55 -30.48) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 26 "DO_02") (pinfunction "D36") (pintype "bidirectional") (tstamp c93c92c3-5da7-462b-a78d-49de2d8b7aef)) + (net 26 "DO_02") (pinfunction "D36") (pintype "bidirectional") (tstamp f9cf735b-b799-4634-95d6-faa0de0a67c1)) (pad "D37" thru_hole oval (at 85.09 -30.48) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 27 "DO_03") (pinfunction "D37") (pintype "bidirectional") (tstamp 8a355352-e9d5-4663-9e64-713983d2c3a4)) + (net 27 "DO_03") (pinfunction "D37") (pintype "bidirectional") (tstamp 60f6a6b0-113a-4057-a471-42fa84688bfc)) (pad "D38" thru_hole oval (at 82.55 -27.94) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 28 "DO_04") (pinfunction "D38") (pintype "bidirectional") (tstamp acc6de13-9220-49f2-a888-1d09df5656e7)) + (net 28 "DO_04") (pinfunction "D38") (pintype "bidirectional") (tstamp d39792c1-89e5-4555-bc68-f6e6bf7a5f5a)) (pad "D39" thru_hole oval (at 85.09 -27.94) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 29 "DO_05") (pinfunction "D39") (pintype "bidirectional") (tstamp 60e43e84-f980-46c0-922f-8fc12d7d0dee)) + (net 29 "DO_05") (pinfunction "D39") (pintype "bidirectional") (tstamp 1fafaf7b-ab25-4adf-aa38-413e51d59e87)) (pad "D40" thru_hole oval (at 82.55 -25.4) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 30 "DO_06") (pinfunction "D40") (pintype "bidirectional") (tstamp 233cf98b-c2c1-468a-b7e8-46a761a4c0ba)) + (net 30 "DO_06") (pinfunction "D40") (pintype "bidirectional") (tstamp 4988b573-47a4-492a-9f56-04284dbe29db)) (pad "D41" thru_hole oval (at 85.09 -25.4) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 31 "DO_07") (pinfunction "D41") (pintype "bidirectional") (tstamp 4dbb6d88-c786-4191-8cf0-f80fba4f34e9)) + (net 31 "DO_07") (pinfunction "D41") (pintype "bidirectional") (tstamp 7984b59e-cd57-4d38-9c9f-2bf368f1f517)) (pad "D42" thru_hole oval (at 82.55 -22.86) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 32 "DO_08") (pinfunction "D42") (pintype "bidirectional") (tstamp 49d872d2-f419-4c34-bc12-a05f59626f37)) + (net 32 "DO_08") (pinfunction "D42") (pintype "bidirectional") (tstamp bdae763b-1138-4ed4-b058-896e7bdc92cc)) (pad "D43" thru_hole oval (at 85.09 -22.86) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 33 "DO_09") (pinfunction "D43") (pintype "bidirectional") (tstamp 02183203-bbbf-4a9f-bf9a-360b7cfa388d)) + (net 33 "DO_09") (pinfunction "D43") (pintype "bidirectional") (tstamp 82c42af6-93da-405f-a24d-3d81b5bdad5d)) (pad "D44" thru_hole oval (at 82.55 -20.32) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 34 "DO_10") (pinfunction "D44") (pintype "bidirectional") (tstamp 778ad0fc-94a9-465f-995b-62edc509929c)) + (net 34 "DO_10") (pinfunction "D44") (pintype "bidirectional") (tstamp 2444d1f9-1584-41f8-919f-db2041e068fa)) (pad "D45" thru_hole oval (at 85.09 -20.32) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 35 "DO_11") (pinfunction "D45") (pintype "bidirectional") (tstamp 47a18986-5a98-46de-a764-7379a6b273fe)) + (net 35 "DO_11") (pinfunction "D45") (pintype "bidirectional") (tstamp 927f28ff-2162-40b8-8e10-90d4b98b2e13)) (pad "D46" thru_hole oval (at 82.55 -17.78) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 36 "DO_12") (pinfunction "D46") (pintype "bidirectional") (tstamp 637ab9dc-793a-4bdf-8e9b-7d83c3b121e0)) + (net 36 "DO_12") (pinfunction "D46") (pintype "bidirectional") (tstamp 6c008c2b-6921-434a-aa9e-e3cfc3dc1055)) (pad "D47" thru_hole oval (at 85.09 -17.78) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 37 "DO_13") (pinfunction "D47") (pintype "bidirectional") (tstamp b952e1a0-afe5-4468-8f41-84e9d2c5d11f)) + (net 37 "DO_13") (pinfunction "D47") (pintype "bidirectional") (tstamp a66b15f6-a996-4a66-aea9-e1b30d8fe8f6)) (pad "D48" thru_hole oval (at 82.55 -15.24) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 38 "DO_14") (pinfunction "D48") (pintype "bidirectional") (tstamp 70120a9a-14a4-4f25-b887-996dc4c623de)) + (net 38 "DO_14") (pinfunction "D48") (pintype "bidirectional") (tstamp c253e911-399b-4f57-85cb-7c1eea548edd)) (pad "D49" thru_hole oval (at 85.09 -15.24) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 39 "DO_15") (pinfunction "D49") (pintype "bidirectional") (tstamp 5c702dc4-4672-4189-ae13-e54d35e1e4a4)) + (net 39 "DO_15") (pinfunction "D49") (pintype "bidirectional") (tstamp 79ad2d98-aba6-44cc-ba29-2bfccd2ad25c)) (pad "D50" thru_hole oval (at 82.55 -12.7) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 63 "MISO") (pinfunction "D50_MISO") (pintype "bidirectional") (tstamp 827a8b14-d89d-4f5e-a55f-959f4af28dfd)) + (net 63 "MISO") (pinfunction "D50_MISO") (pintype "bidirectional") (tstamp db77886c-f84c-4e8e-a490-8087c1276fa5)) (pad "D51" thru_hole oval (at 85.09 -12.7) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 64 "MOSI") (pinfunction "D51_MOSI") (pintype "bidirectional") (tstamp dc381f84-ba1f-44a2-9533-6976d27c67f7)) + (net 64 "MOSI") (pinfunction "D51_MOSI") (pintype "bidirectional") (tstamp 36ec59cc-6119-4e2b-a9d1-f9bcd0c17046)) (pad "D52" thru_hole oval (at 82.55 -10.16) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 65 "SCK") (pinfunction "D52_SCK") (pintype "bidirectional") (tstamp 7811a43a-7c1f-4811-82a2-9ebbbfb776a2)) + (net 65 "SCK") (pinfunction "D52_SCK") (pintype "bidirectional") (tstamp 4bb0a747-bd63-4487-a7e1-a2c651b9f58a)) (pad "D53" thru_hole oval (at 85.09 -10.16) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 66 "CS") (pinfunction "D53_CS") (pintype "bidirectional") (tstamp 0873739d-ec74-4d0b-aae1-369be03628e8)) + (net 66 "CS") (pinfunction "D53_CS") (pintype "bidirectional") (tstamp be915ae8-e825-4bd2-9dc9-fd605689023f)) (pad "GND1" thru_hole rect (at 14.986 -50.8) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 23 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 9eca0f5f-f9c5-47ee-9463-8f172a73f6ff)) + (net 23 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 534d5de8-a757-4ab5-91e1-5776b8fe9f35)) (pad "GND2" thru_hole rect (at 29.21 -2.54) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 23 "GND") (pinfunction "GND") (pintype "power_in") (tstamp d49d88d9-c929-4dc9-8c4f-26e5c481be62)) + (net 23 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 3779ffb9-defd-44cc-bf8f-f1beacf5c460)) (pad "GND3" thru_hole rect (at 31.75 -2.54) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 23 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 30d93d53-4668-4bcf-89a9-7a9951c8d45b)) + (net 23 "GND") (pinfunction "GND") (pintype "power_in") (tstamp e3395b36-aad6-461c-a3fc-d05ebffa4c85)) (pad "GND5" thru_hole rect (at 82.55 -7.62) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 23 "GND") (pinfunction "GND") (pintype "power_in") (tstamp d1bf2d7d-13b0-42fa-8847-9a8a6a7ebc64)) + (net 23 "GND") (pinfunction "GND") (pintype "power_in") (tstamp da949e3b-c6af-47c2-bacc-b6ab010796fa)) (pad "GND6" thru_hole rect (at 85.09 -7.62) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 23 "GND") (pinfunction "GND") (pintype "power_in") (tstamp b5002fb3-9f88-4a11-9708-9c884a7ab2f9)) + (net 23 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 8c12b594-b637-4546-bb1c-f566581cd2d8)) (pad "IORF" thru_hole oval (at 19.05 -2.54) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 62 "unconnected-(MEGA2560-IOREF-PadIORF)") (pinfunction "IOREF") (pintype "output") (tstamp db0dd47b-f76c-45ca-aa4a-73f1e70b78bd)) + (net 62 "unconnected-(MEGA2560-IOREF-PadIORF)") (pinfunction "IOREF") (pintype "output") (tstamp 39844e83-711c-4513-a112-987b86bccc82)) (pad "RST1" thru_hole oval (at 21.59 -2.54) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 61 "unconnected-(MEGA2560-RESET-PadRST1)") (pinfunction "RESET") (pintype "open_collector") (tstamp 149baf01-1265-4d00-b442-e2f95f78566a)) + (net 61 "unconnected-(MEGA2560-RESET-PadRST1)") (pinfunction "RESET") (pintype "open_collector") (tstamp 5fb8fb6a-16f9-4796-885c-b1defcc49248)) (pad "SCL" thru_hole oval (at 7.366 -50.8) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 60 "unconnected-(MEGA2560-PadSCL)") (pinfunction "SCL") (pintype "bidirectional") (tstamp 385273fd-c99f-4383-954e-a8ca50bcfa69)) + (net 60 "unconnected-(MEGA2560-PadSCL)") (pinfunction "SCL") (pintype "bidirectional") (tstamp 18656835-dff9-4376-8b54-2193535d7ebb)) (pad "SDA" thru_hole oval (at 9.906 -50.8) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 59 "unconnected-(MEGA2560-PadSDA)") (pinfunction "SDA") (pintype "bidirectional") (tstamp 521d59cd-579b-4e37-be61-ee8455ff93c7)) + (net 59 "unconnected-(MEGA2560-PadSDA)") (pinfunction "SDA") (pintype "bidirectional") (tstamp d83baa75-5b11-4a86-b1bc-09b8e97b49da)) (pad "VIN" thru_hole oval (at 34.29 -2.54) (size 1.7272 1.7272) (drill 1.016) (layers "*.Cu" "*.Mask") - (net 21 "VIN") (pinfunction "VIN") (pintype "power_in") (tstamp 1a6b7591-2d5d-45db-b166-7e8f99742de9)) + (net 21 "VIN") (pinfunction "VIN") (pintype "power_in") (tstamp e3fe4f21-fb7d-4752-a0e6-1512075c10fa)) ) - (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (layer "F.Cu") + (footprint "ScitechKorea:R250" (layer "F.Cu") (tstamp b833764e-3eba-4c17-8f86-f8f2e2dcbac6) (at 112.9 134.91 90) (descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf") @@ -4989,54 +5046,54 @@ (property "ki_keywords" "R res resistor") (path "/9c3dbbb3-e9ac-41c5-811a-58701cec814c") (attr through_hole) - (fp_text reference "R6" (at 10.11 0 90) (layer "F.SilkS") + (fp_text reference "R6" (at 3.8 0 90) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) - (tstamp 2b1daf3e-b1af-4674-8d6f-595c4bede1a0) + (tstamp 43b46e5a-be57-4c57-a21e-49910ab475df) ) - (fp_text value "R" (at 3.81 1.92 90) (layer "F.Fab") hide + (fp_text value "R" (at 3.81 1.92 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) - (tstamp 02bb8716-5e28-4672-8d37-c5c06948421c) + (tstamp e451eaae-701e-4c37-8068-a719d1c41bca) ) (fp_text user "${REFERENCE}" (at 3.81 0 90) (layer "F.Fab") (effects (font (size 0.72 0.72) (thickness 0.108))) - (tstamp 04602d9d-c81f-4949-baed-03263f6a725f) + (tstamp ee42448f-c8ee-407c-919e-64f01052b9c6) ) (fp_line (start 0.94 0) (end 1.89 0) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 22a62f29-211a-4acf-a778-20793771c157)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b54571d0-2480-41f3-9640-cfda10d54214)) (fp_line (start 1.89 -0.92) (end 1.89 0.92) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7793078d-1a26-4103-920f-5f44f1c73e6c)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4ec9a06f-39bf-48e2-88cd-def5874476f8)) (fp_line (start 1.89 0.92) (end 5.73 0.92) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b42548e4-6da6-4686-93ca-c13179554adf)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d9d433e2-dc7f-4dee-9ba0-e86c22e4692f)) (fp_line (start 5.73 -0.92) (end 1.89 -0.92) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e4ee272b-81bd-4cb9-8030-32680a43820d)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 552ca1db-8aaf-450e-ae31-aa445f87be78)) (fp_line (start 5.73 0.92) (end 5.73 -0.92) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 28db437e-c072-472c-818f-cdcf34eaeb2a)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 66579b61-d4ac-45b5-8512-66f9a07daec0)) (fp_line (start 6.68 0) (end 5.73 0) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d399b1a1-37c2-4f58-bb79-7436e5db28f0)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 710b6f49-a2b0-45a5-80c1-ea923da15aac)) (fp_line (start -0.95 -1.05) (end -0.95 1.05) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp eac784b6-0c26-4557-8bdf-688087ef8c37)) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c93b598e-e7f3-4026-92b3-4defd465b7fc)) (fp_line (start -0.95 1.05) (end 8.57 1.05) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3653b79f-32ce-4e9a-863f-98a1b3405847)) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c86487fb-d9f9-4d12-9547-9d95576acd27)) (fp_line (start 8.57 -1.05) (end -0.95 -1.05) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 715c630d-1c68-4b3b-ad94-aa211369dc28)) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d5a6eae0-257f-4e2c-9f62-7f0a1657cdb3)) (fp_line (start 8.57 1.05) (end 8.57 -1.05) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d292741f-07bb-4388-9d6f-fb72b749da89)) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp b5324d94-e631-4bed-8df5-2730cb366460)) (fp_line (start 0 0) (end 2.01 0) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp d74fd474-7213-4350-bf36-f02ae99ac244)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9e19a3f2-c2da-4f4b-a8d4-fb1476eb3938)) (fp_line (start 2.01 -0.8) (end 2.01 0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 76a806de-512f-4c05-878e-2e420f6b1a17)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 087992ad-bc94-4092-a9fd-02aac902b519)) (fp_line (start 2.01 0.8) (end 5.61 0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9659654c-4f16-409b-b4f7-74493112c21b)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5d1cb1e9-a73b-4a3d-9ad6-729df8d6f95f)) (fp_line (start 5.61 -0.8) (end 2.01 -0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5546fb92-d562-4255-993b-ba1600f52ae3)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 92a96a3c-7b3a-45a4-94b8-684277b314fa)) (fp_line (start 5.61 0.8) (end 5.61 -0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e2e8f87d-45cf-490d-957b-8fab0e7cdb1f)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f02e02d5-caf2-48bf-8cec-77f4e52fc426)) (fp_line (start 7.62 0) (end 5.61 0) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cc15ebb0-0746-49b0-a0c0-899026e0d46b)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp cea51a1e-fb86-459f-89d0-fea75b13bbd5)) (pad "1" thru_hole circle (at 0 0 90) (size 1.4 1.4) (drill 0.7) (layers "*.Cu" "*.Mask") - (net 11 "A06") (pintype "passive") (tstamp 292b3132-74f6-443a-9297-8743b21cc635)) + (net 11 "A06") (pintype "passive") (tstamp c590ab47-27b4-41c9-a3e6-c46f55e461a0)) (pad "2" thru_hole rect (at 7.62 0 90) (size 1.4 1.4) (drill 0.7) (layers "*.Cu" "*.Mask") - (net 23 "GND") (pintype "passive") (tstamp 1029563d-be85-4562-ad09-809d495b1929)) + (net 23 "GND") (pintype "passive") (tstamp d5cb14ad-8348-4daf-ac5f-7f373cf808b0)) (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) @@ -5044,6 +5101,32 @@ ) ) + (footprint "ScitechKorea:ScrewHole" (layer "F.Cu") + (tstamp ba7c3527-9cbe-4cd5-82a7-d4f829067d10) + (at 140 90.5) + (attr through_hole) + (fp_text reference "REF**" (at -0.2175 -0.54 unlocked) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.1))) + (tstamp 6d8c47b0-f6d3-41de-b581-9a68411013ac) + ) + (fp_text value "ScrewHole" (at -0.2175 0.96 unlocked) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp be312ac5-3ef6-4c5b-8dfc-3f2e2ce2c27b) + ) + (fp_text user "${REFERENCE}" (at -0.2175 2.46 unlocked) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 02a24b67-a5cd-4c74-9f2b-df42c87c6c41) + ) + (fp_circle (center 0 0) (end 2.5 0) + (stroke (width 0.15) (type solid)) (fill none) (layer "F.CrtYd") (tstamp df45eb52-7125-40a7-9994-20fb575e4e1a)) + (fp_circle (center 0 0) (end 3.2 0) + (stroke (width 0.15) (type solid)) (fill none) (layer "B.Fab") (tstamp e050cfc4-01f7-4573-8b77-60f95b0cb512)) + (fp_circle (center 0 0) (end 3.2 0) + (stroke (width 0.15) (type solid)) (fill none) (layer "F.Fab") (tstamp 2e4c516b-b3b2-4695-9936-5c319fe802ea)) + (pad "" np_thru_hole circle (at 0 0) (size 3.2 3.2) (drill 3.2) (layers "F&B.Cu" "*.Mask") + (clearance 1) (tstamp a45fa47d-4f8f-4941-9fdf-0eb71ccce33f)) + ) + (footprint "ScitechKorea:Terminal_08" (layer "F.Cu") (tstamp bb3e3067-836f-4a57-bd41-9b1d3df97f58) (at 176.425 87.9 90) @@ -5397,7 +5480,7 @@ (net 40 "DI_00") (pinfunction "Pin_8") (pintype "passive") (tstamp 7403b0f9-dcd5-467a-9249-aeb68468a78d)) ) - (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (layer "F.Cu") + (footprint "ScitechKorea:R250" (layer "F.Cu") (tstamp d3a2764b-4abd-4f85-8cca-d767f043a8f7) (at 100.634284 117.51 90) (descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf") @@ -5408,54 +5491,54 @@ (property "ki_keywords" "R res resistor") (path "/c826d549-db4d-42cc-803e-13cc2f41860c") (attr through_hole) - (fp_text reference "R10" (at -2.72 -0.02 90) (layer "F.SilkS") + (fp_text reference "R10" (at 3.8 0 90) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) - (tstamp 087bc06f-91fc-4969-8994-856a711aca66) + (tstamp 219e1848-a15d-4ca1-9248-48607e43b189) ) - (fp_text value "R" (at 3.81 1.92 90) (layer "F.Fab") hide + (fp_text value "R" (at 3.81 1.92 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) - (tstamp afeaa1a3-c7d6-4bc7-98ba-b8d023c74f05) + (tstamp 40dcab5b-71b4-468b-90c9-8059e592917f) ) (fp_text user "${REFERENCE}" (at 3.81 0 90) (layer "F.Fab") (effects (font (size 0.72 0.72) (thickness 0.108))) - (tstamp b0865c49-ee61-41aa-961a-973080b07762) + (tstamp 44fb5c5b-ab3b-4999-8eb4-b9820e523e49) ) (fp_line (start 0.94 0) (end 1.89 0) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2613d769-1eae-44bc-a339-1bccd75d0169)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ef044b88-22b0-4f74-a8d3-9c70ba9ce062)) (fp_line (start 1.89 -0.92) (end 1.89 0.92) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 761877d5-b520-4da2-aaa8-efb42ff216cd)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b1844ee9-3561-4f26-9f45-f9f35776aa2e)) (fp_line (start 1.89 0.92) (end 5.73 0.92) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 918cc1a2-d792-4427-8e8c-971caa8a44e3)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cedb4dcc-020d-4b87-9953-534d378de376)) (fp_line (start 5.73 -0.92) (end 1.89 -0.92) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4d927b41-36ed-4017-b431-935aad9c2383)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d7c5fa81-c4ad-4714-a91e-ad4db5698737)) (fp_line (start 5.73 0.92) (end 5.73 -0.92) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4c50706d-eb98-4564-ba15-863b473cf7e1)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fd291d84-5806-4f3c-b62e-1cbab3b1a139)) (fp_line (start 6.68 0) (end 5.73 0) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4039bc44-76e8-4bb2-b342-2d30567b1d17)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e939d870-9f70-4e73-9f6a-d83e017f1cff)) (fp_line (start -0.95 -1.05) (end -0.95 1.05) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp edda3145-b44f-4bc4-8442-eb3bea994d95)) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 74d938a7-b1b9-4e6b-860e-2aae339a6c95)) (fp_line (start -0.95 1.05) (end 8.57 1.05) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp e0afde02-a001-4fcf-88c6-7baaaa3550eb)) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a1f80d1b-9694-4a91-9ae8-c163f946a250)) (fp_line (start 8.57 -1.05) (end -0.95 -1.05) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp a591546b-cd45-459e-96ed-83fa30f1479c)) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2bc43b26-6902-419c-b12d-c50d675b69ee)) (fp_line (start 8.57 1.05) (end 8.57 -1.05) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 5befb812-8e61-44ba-a214-6c54f51d4aed)) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp bd23ed35-4209-444e-ac09-765655333702)) (fp_line (start 0 0) (end 2.01 0) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 08b9ff64-ecc5-4da2-b680-150aba7c17df)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 310f9112-aa8a-499b-8111-9912aab6f81f)) (fp_line (start 2.01 -0.8) (end 2.01 0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7ef18519-92ef-4405-a7c8-a5185541ae76)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1b844e72-4924-4f66-acb4-ec02364dcd7f)) (fp_line (start 2.01 0.8) (end 5.61 0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8551e6e2-e164-4188-ad6e-5a07031af761)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 665612b0-3e3d-47c5-989c-3488493c6fc8)) (fp_line (start 5.61 -0.8) (end 2.01 -0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 71ab3434-c394-44de-a276-02fc942c386d)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp f0542d9b-ebd0-4e8e-93bd-a776bf690cea)) (fp_line (start 5.61 0.8) (end 5.61 -0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a9598be5-df97-45ff-bdd6-baeb9ac6d823)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8793d1b6-7431-47b4-8c12-a76bb928c138)) (fp_line (start 7.62 0) (end 5.61 0) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2c31a950-4c96-48ea-85d1-7c14b07ac72e)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 012416f2-3ca0-411d-b249-ad25dd3f19e6)) (pad "1" thru_hole circle (at 0 0 90) (size 1.4 1.4) (drill 0.7) (layers "*.Cu" "*.Mask") - (net 15 "A10") (pintype "passive") (tstamp 21c407b2-2349-43b3-9627-4aa244300753)) + (net 15 "A10") (pintype "passive") (tstamp c699e50b-bc11-4875-be6b-250d7551e47a)) (pad "2" thru_hole rect (at 7.62 0 90) (size 1.4 1.4) (drill 0.7) (layers "*.Cu" "*.Mask") - (net 23 "GND") (pintype "passive") (tstamp 3846a0f7-90d3-4d82-b6ac-4c21a16bf63a)) + (net 23 "GND") (pintype "passive") (tstamp f20a6afe-a423-4cfd-ac8d-38e60a363947)) (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) @@ -5463,7 +5546,7 @@ ) ) - (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (layer "F.Cu") + (footprint "ScitechKorea:R250" (layer "F.Cu") (tstamp e566deb5-8571-479f-9057-b99b1973b923) (at 103.751426 117.51 90) (descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf") @@ -5474,54 +5557,54 @@ (property "ki_keywords" "R res resistor") (path "/cda3d885-e0d5-4da7-b650-5ec4c5b0ed66") (attr through_hole) - (fp_text reference "R11" (at -2.72 -0.02 90) (layer "F.SilkS") + (fp_text reference "R11" (at 3.8 0 90) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) - (tstamp 8631d580-a05d-4f97-85bf-fb5767471ac7) + (tstamp d2640f7a-af21-43b6-8db5-082d46499f68) ) - (fp_text value "R" (at 3.81 1.92 90) (layer "F.Fab") hide + (fp_text value "R" (at 3.81 1.92 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) - (tstamp 8292af56-2f13-47dc-ad70-aac282cca3d5) + (tstamp 90edaed2-6a74-4416-a8f3-ded3194fb336) ) (fp_text user "${REFERENCE}" (at 3.81 0 90) (layer "F.Fab") (effects (font (size 0.72 0.72) (thickness 0.108))) - (tstamp 11f91ab3-f126-4c0a-a591-666d29e51309) + (tstamp 83c24faf-e68d-40c0-b2c8-17ea99928f06) ) (fp_line (start 0.94 0) (end 1.89 0) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5d644edf-244e-426e-a217-8696913a4d85)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 302de12f-2314-4b90-b0fc-f740a7684464)) (fp_line (start 1.89 -0.92) (end 1.89 0.92) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5d40273d-8f1e-464d-bd88-3af7c17d8831)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9d937098-b188-486a-83e8-21beef4655b5)) (fp_line (start 1.89 0.92) (end 5.73 0.92) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 2c4a9c76-8548-40a1-b8a3-c24b0bd2ec15)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 18dc9e74-9d1c-430d-bf6c-4334bced967f)) (fp_line (start 5.73 -0.92) (end 1.89 -0.92) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp e347f7ac-8a1a-4e0b-8edb-1d37d0e1ea77)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ee5c914e-1482-436a-b3da-234c28192a4c)) (fp_line (start 5.73 0.92) (end 5.73 -0.92) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 34c43851-a2d9-448c-84e0-4c94684e9d5c)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 97d4162a-52d3-4392-a8b3-e3347e46dd39)) (fp_line (start 6.68 0) (end 5.73 0) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c9129354-6f15-4a1d-9628-fdd7c926779d)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 8f9ab882-2266-4ba2-80a4-62bbffe1bb63)) (fp_line (start -0.95 -1.05) (end -0.95 1.05) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 01c9ef11-c4db-43b8-bb51-92a88c7370eb)) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 6783f1eb-57f2-4a18-99a9-cf861ef2beb2)) (fp_line (start -0.95 1.05) (end 8.57 1.05) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 3d0efa5d-406c-445d-a25f-9274a5c447e1)) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp d66549b9-816c-4c1f-be6a-159737f30283)) (fp_line (start 8.57 -1.05) (end -0.95 -1.05) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp ca7af781-6006-4b0a-b80c-2bc3b4df1b1b)) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 05982689-0272-4a03-84c7-4cbe0e8e0e2d)) (fp_line (start 8.57 1.05) (end 8.57 -1.05) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2760d324-5995-4daa-905f-8efd8dc68a37)) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 66ac8f06-f653-48e1-b3ce-52fcfa823575)) (fp_line (start 0 0) (end 2.01 0) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a6256992-5e0e-442e-9d47-4fa9a5e33bfe)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e2f8b016-d0c6-4af1-8c93-3044bab39520)) (fp_line (start 2.01 -0.8) (end 2.01 0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7f897cca-35c2-4dee-bb2a-4fa1a56bf080)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 20d6aef1-7e0b-4fe1-a682-7b2361380d20)) (fp_line (start 2.01 0.8) (end 5.61 0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4371fe20-6868-4a13-9768-4dd54a8182b5)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c1829d52-e678-4984-b3d8-1cca4a6943f7)) (fp_line (start 5.61 -0.8) (end 2.01 -0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 856122ba-12df-4fd3-a761-3a8c9f2b801f)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c773b9e3-1bd2-4fbb-81ff-83b3c7d3caab)) (fp_line (start 5.61 0.8) (end 5.61 -0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ac55b28e-8b7d-4f79-a9e5-17e3ac87b883)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 8252691c-f7ce-40cc-8281-2961494c0e33)) (fp_line (start 7.62 0) (end 5.61 0) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1aaf31df-a540-4d78-9999-286d81fa9b3f)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 7989795e-b8eb-4d87-96c7-a281a14864c3)) (pad "1" thru_hole circle (at 0 0 90) (size 1.4 1.4) (drill 0.7) (layers "*.Cu" "*.Mask") - (net 16 "A11") (pintype "passive") (tstamp f529ce70-ee8f-44f7-b758-c3459d8e558f)) + (net 16 "A11") (pintype "passive") (tstamp b8cd4fd1-edaa-4375-aa97-598b564cce21)) (pad "2" thru_hole rect (at 7.62 0 90) (size 1.4 1.4) (drill 0.7) (layers "*.Cu" "*.Mask") - (net 23 "GND") (pintype "passive") (tstamp 97b33dd0-2b73-4bc6-ad39-f2672dc7e554)) + (net 23 "GND") (pintype "passive") (tstamp cd3d9877-fc6a-47cb-97c4-2d99f9154ac6)) (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) @@ -5529,7 +5612,7 @@ ) ) - (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (layer "F.Cu") + (footprint "ScitechKorea:R250" (layer "F.Cu") (tstamp e5fae6b0-4053-4ffc-a443-8c12077ac951) (at 106.73143 134.91 90) (descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf") @@ -5540,54 +5623,54 @@ (property "ki_keywords" "R res resistor") (path "/c7d80b78-61ab-4360-9fa3-aaf4292aebaf") (attr through_hole) - (fp_text reference "R4" (at 10.11 0 90) (layer "F.SilkS") + (fp_text reference "R4" (at 3.8 0 90) (layer "F.SilkS") (effects (font (size 1 1) (thickness 0.15))) - (tstamp 94d6293e-446d-41a1-809c-7ec3f2163250) + (tstamp afb1f1c7-392b-44f9-90ee-f9dd938ed0ef) ) - (fp_text value "R" (at 3.81 1.92 90) (layer "F.Fab") hide + (fp_text value "R" (at 3.81 1.92 90) (layer "F.Fab") (effects (font (size 1 1) (thickness 0.15))) - (tstamp 4fb9a7ce-fa42-448d-95e3-c8b3b2df620f) + (tstamp a7cc447a-7331-473a-8282-e042ca7b797a) ) (fp_text user "${REFERENCE}" (at 3.81 0 90) (layer "F.Fab") (effects (font (size 0.72 0.72) (thickness 0.108))) - (tstamp 6a4ca8ee-f511-41b2-bf74-70e7ca7cb97a) + (tstamp c5aa9109-b332-4aad-8634-cf71c6171041) ) (fp_line (start 0.94 0) (end 1.89 0) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9557b5be-f6dd-4d89-977c-2e43cddf480d)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 51b1d5b9-1d40-43f0-9682-d52816889302)) (fp_line (start 1.89 -0.92) (end 1.89 0.92) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 73f27a46-4c49-4b32-9951-951b12c6d801)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ae8ad36c-3714-47be-9c4b-91ba3d5e2ef7)) (fp_line (start 1.89 0.92) (end 5.73 0.92) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9b4e1cbe-1e6e-4f2f-9132-31f354e61315)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3734c042-64aa-4856-adfc-f5c0f98244d7)) (fp_line (start 5.73 -0.92) (end 1.89 -0.92) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 66f89912-d1ac-4d9c-b3e5-06899b7506df)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 0822560f-180a-412e-a1b8-6e254dbc2833)) (fp_line (start 5.73 0.92) (end 5.73 -0.92) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 58720228-0175-4dfe-a985-8978defca99a)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 79783aaa-7afb-4437-b33d-9f585bcdf162)) (fp_line (start 6.68 0) (end 5.73 0) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp d0cccbe7-3d0c-4605-bf70-3b26b092947e)) + (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 21676bdb-8186-42fc-819b-d2c7ae44a1af)) (fp_line (start -0.95 -1.05) (end -0.95 1.05) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9959457b-16ad-4748-a6f4-b353e62877c5)) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp c9da1c84-8ae4-40a2-b292-fb7ce470c8f9)) (fp_line (start -0.95 1.05) (end 8.57 1.05) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 9bd27a12-13a5-4e68-aa8c-54e861a0003e)) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 2534a60b-456c-4b11-baef-00fea40d389d)) (fp_line (start 8.57 -1.05) (end -0.95 -1.05) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 80c4a69a-1a9f-4aa1-a8a4-56a3c4e702aa)) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 29734957-baba-41de-8b51-694bab24de7a)) (fp_line (start 8.57 1.05) (end 8.57 -1.05) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp fc94e816-424a-48c8-bc49-4dbbcddc63f5)) + (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 7419aca2-dfa0-4de4-88ce-c4762833d25a)) (fp_line (start 0 0) (end 2.01 0) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 16b8d49d-712d-4ded-8efc-f5031133f506)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 71e775f0-a6be-44b8-8a52-073e738325e5)) (fp_line (start 2.01 -0.8) (end 2.01 0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 89479027-6538-4758-be09-71c7bc228f67)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2c9e6ec9-86cc-482d-962e-91ac1bbf39b8)) (fp_line (start 2.01 0.8) (end 5.61 0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9eabe22f-0bf5-48fa-b2ee-71249e62c7a0)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 50e9a43e-ab0b-4312-81e4-73313fb6e92a)) (fp_line (start 5.61 -0.8) (end 2.01 -0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0737be46-b15a-47f2-b2b3-be0d6849f20c)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0e146c87-7d21-4f30-a0ba-56095ed2d3a6)) (fp_line (start 5.61 0.8) (end 5.61 -0.8) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 2107ac56-c096-4527-89de-670c0e7515cd)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp dd72bcde-a913-4f95-a2f2-fd90f8022074)) (fp_line (start 7.62 0) (end 5.61 0) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 0fecc2dd-a6d4-4ad5-9862-b5997141b371)) + (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 1a0f0311-5a7d-4750-8cd3-97cc06f48d1b)) (pad "1" thru_hole circle (at 0 0 90) (size 1.4 1.4) (drill 0.7) (layers "*.Cu" "*.Mask") - (net 9 "A04") (pintype "passive") (tstamp 21690402-a6f4-4b99-a336-650b9447ec36)) + (net 9 "A04") (pintype "passive") (tstamp e1b06228-2914-4a7a-a2e0-d6bac344a0bc)) (pad "2" thru_hole rect (at 7.62 0 90) (size 1.4 1.4) (drill 0.7) (layers "*.Cu" "*.Mask") - (net 23 "GND") (pintype "passive") (tstamp 3c62805a-a23e-4b9d-b195-4d183e556153)) + (net 23 "GND") (pintype "passive") (tstamp b8376b37-cb0c-423f-a340-6c147a6d7dd0)) (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl" (offset (xyz 0 0 0)) (scale (xyz 1 1 1)) @@ -5595,152 +5678,9 @@ ) ) - (footprint "ScitechKorea:Terminal_02" (layer "F.Cu") - (tstamp e667a649-730a-406e-956d-2cc4e447f2cc) - (at 84.2 156.4) - (property "Sheetfile" "megaPCB.kicad_sch") - (property "Sheetname" "") - (property "ki_description" "Generic screw terminal, single row, 01x02, script generated (kicad-library-utils/schlib/autogen/connector/)") - (property "ki_keywords" "screw terminal") - (path "/bf432b4f-8aab-4257-96d7-f2fb4ce78f5d") - (attr through_hole) - (fp_text reference "GND_0" (at 0.2 -7.1 unlocked) (layer "F.SilkS") hide - (effects (font (size 1 1) (thickness 0.1))) - (tstamp bc85aa6a-5b24-4a95-ba0e-96174a127a51) - ) - (fp_text value "Screw_Terminal_01x02" (at -6.8 2.7 unlocked) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 3e0566af-9199-4e1c-894c-3c71e314ea3b) - ) - (fp_text user "${REFERENCE}" (at 3.1 6.5 unlocked) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 61474104-d8a1-4167-b830-101aa3528c10) - ) - (fp_text user "${REFERENCE}" (at 3.3 4.7) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp ba3c0e54-a1dc-4367-ba71-0da38c2fbd6f) - ) - (fp_line (start -1.85 -6.125) (end 5.15 -6.125) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 74c05875-a7d1-4ea2-990f-763036edc668)) - (fp_line (start -1.85 -3.5) (end -1.85 -6.125) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cb75cb9a-4e58-45b8-969b-2dc560a58524)) - (fp_line (start -1.85 -3.5) (end -1.85 3.5) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5bff7b98-ed6f-49a9-8432-cde6796f46ae)) - (fp_line (start -1.85 -3.5) (end 5.15 -3.5) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 3cdb4d64-8dd6-44fd-97b1-bb3aa83e05b1)) - (fp_line (start -1.85 3.5) (end 5.15 3.5) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 4c66a8f2-cb91-4b2d-80fc-49c6bb608a3f)) - (fp_line (start -0.975 2.625) (end 0.775 2.625) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c0409518-0e85-4492-b441-f088e315108d)) - (fp_line (start -0.975 3.5) (end -0.975 2.625) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 155d3c42-abac-4420-ae86-fa8f42dbdaf8)) - (fp_line (start 0.775 2.625) (end 0.775 3.5) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 694aaae0-1f8a-40a8-a23e-ad3914f7a6fe)) - (fp_line (start 1.65 -6.125) (end 1.65 3.5) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 5cd8eaa8-d620-47a0-a95c-5fcaae8a4f17)) - (fp_line (start 2.525 2.625) (end 4.275 2.625) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9a5d44ef-789a-407e-a654-59be82fd9fd0)) - (fp_line (start 2.525 3.5) (end 2.525 2.625) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp ab71816c-8a52-465e-81ed-19fb38ab8c91)) - (fp_line (start 4.275 2.625) (end 4.275 3.5) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fb23fa91-b6f0-4677-9587-05b701478c92)) - (fp_line (start 5.15 -6.125) (end 5.15 3.5) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 821fd7db-473e-47bd-85ea-02777cd2eb3d)) - (fp_arc (start -1.532109 0.607742) (mid -1.655727 -0.00014) (end -1.532 -0.608) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp c3434fa2-8916-4918-ae66-0c1ee71b5e5e)) - (fp_arc (start -0.707742 -1.432109) (mid -0.09986 -1.555727) (end 0.508 -1.432) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp b27155de-db69-41e1-879c-8c066c0d890e)) - (fp_arc (start -0.072989 1.555493) (mid -0.396984 1.527118) (end -0.708 1.432) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 874f3830-ba5f-409a-89ac-7efb4f6ea1bc)) - (fp_arc (start 0.507587 1.431385) (mid 0.210017 1.523783) (end -0.1 1.555) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 9066cc94-5f5b-4e67-bfd1-d6e14a9ab15e)) - (fp_arc (start 1.332109 -0.607742) (mid 1.455727 0.00014) (end 1.332 0.608) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp fb9c0e12-5bfd-4481-8697-337841acec05)) - (fp_arc (start 1.961891 0.609342) (mid 1.838273 0.00146) (end 1.962 -0.6064) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 7cc0eb9a-8d3b-4d54-b6e8-10d60d0d568e)) - (fp_arc (start 2.786258 -1.430509) (mid 3.39414 -1.554127) (end 4.002 -1.4304) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 150a3558-713e-447c-9364-7ab5cc9bbdb7)) - (fp_arc (start 3.421011 1.557093) (mid 3.097016 1.528718) (end 2.786 1.4336) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 22171ade-c2fc-4662-847e-567af11b3eeb)) - (fp_arc (start 4.001587 1.432985) (mid 3.704017 1.525383) (end 3.394 1.5566) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp 381c2b42-f96f-4db2-b53f-b88a521cd2f2)) - (fp_arc (start 4.826109 -0.606142) (mid 4.949727 0.00174) (end 4.826 0.6096) - (stroke (width 0.12) (type solid)) (layer "F.SilkS") (tstamp cca14011-3aad-498a-b0b1-ae2ed9118b40)) - (fp_line (start -1.95 -3.6) (end -1.95 3.6) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0eed9877-7233-487e-b729-edc547369027)) - (fp_line (start -1.95 3.6) (end 5.25 3.6) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 214dbea2-c60e-465f-8f40-8d473f8610b5)) - (fp_line (start 5.25 -3.6) (end -1.95 -3.6) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 0570f19e-d24f-458f-b9e0-ba5f79f3522f)) - (fp_line (start 5.25 3.6) (end 5.25 -3.6) - (stroke (width 0.05) (type solid)) (layer "F.CrtYd") (tstamp 978fcbb4-c57e-4516-8070-d94e42e154e9)) - (fp_line (start -1.8 -3.4) (end 5.1 -3.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 01c3c89b-f655-4e6a-8c09-197f816c4ec2)) - (fp_line (start -1.8 3.4) (end -1.8 -3.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp a22a9980-fcb5-4638-9bad-fb8d41049648)) - (fp_line (start -1.8 3.4) (end 5.1 3.4) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fa3637da-013e-49cf-a18c-1d31bd588a24)) - (fp_line (start -1.2 -0.069) (end -0.169 -0.069) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 77e0b888-a475-457f-ae70-d22040309d52)) - (fp_line (start -1.2 0.069) (end -1.2 -0.069) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 718daac4-ea2a-49a3-827e-fbe244f037fd)) - (fp_line (start -0.169 -1.1) (end -0.031 -1.1) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ac9b708a-7500-4961-88d0-6706b1c3cf32)) - (fp_line (start -0.169 -0.069) (end -0.169 -1.1) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 39af021f-6272-4bfb-a18b-92073c157207)) - (fp_line (start -0.169 0.069) (end -1.2 0.069) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 16e55e57-2ac9-4db5-9c2c-3d931cc9c60c)) - (fp_line (start -0.169 1.1) (end -0.169 0.069) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp af3437bd-d0a0-4008-8117-0b616fa84e3c)) - (fp_line (start -0.031 -1.1) (end -0.031 -0.069) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b4781e09-0e43-4457-9d79-d7289b0ee691)) - (fp_line (start -0.031 -0.069) (end 1 -0.069) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 9cb5f594-4300-4e3d-b2e9-b0903a881dd4)) - (fp_line (start -0.031 0.069) (end -0.031 1.1) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp b1f514ae-424d-43cf-ae1a-52772eca3927)) - (fp_line (start -0.031 1.1) (end -0.169 1.1) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp e0fb96df-6c4b-4918-b75e-6d24c3d70352)) - (fp_line (start 1 -0.069) (end 1 0.069) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 53c7bc97-6c8e-44b9-bd00-6c9653e08115)) - (fp_line (start 1 0.069) (end -0.031 0.069) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 23a00cd5-3ee7-407d-984b-f313b4183823)) - (fp_line (start 2.3 -0.069) (end 3.331 -0.069) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3f1118d8-0bd9-4d96-850c-5539f09a59b3)) - (fp_line (start 2.3 0.069) (end 2.3 -0.069) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp ffb69c4d-5363-43ff-aeec-f555c8f80b2a)) - (fp_line (start 3.331 -1.1) (end 3.469 -1.1) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 015562ae-bcdf-4d14-a833-409c03efe353)) - (fp_line (start 3.331 -0.069) (end 3.331 -1.1) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 4c1c89d2-e10e-4ff1-a815-63a39b951abb)) - (fp_line (start 3.331 0.069) (end 2.3 0.069) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 29516d7e-3aa0-4543-8672-657a00dd27a4)) - (fp_line (start 3.331 1.1) (end 3.331 0.069) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp fbec5bd7-e765-4d12-8be4-cb293e403ed0)) - (fp_line (start 3.469 -1.1) (end 3.469 -0.069) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp c34f57c7-31c6-4ca4-9c87-780a9ad752d0)) - (fp_line (start 3.469 -0.069) (end 4.5 -0.069) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 502a770d-8c14-4f50-9a49-d0b5d00a22b2)) - (fp_line (start 3.469 0.069) (end 3.469 1.1) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 3bef482c-8684-40e3-98ef-37604b00467f)) - (fp_line (start 3.469 1.1) (end 3.331 1.1) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 71fe886c-eebb-4eae-bd50-96c748736684)) - (fp_line (start 4.5 -0.069) (end 4.5 0.069) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 205049eb-b0e0-4a25-8d29-cd420854d856)) - (fp_line (start 4.5 0.069) (end 3.469 0.069) - (stroke (width 0.1) (type solid)) (layer "F.Fab") (tstamp 5bd8919f-fd37-4a21-abee-25bc4fbdd3e6)) - (fp_circle (center -0.1 0) (end 1.275 0) - (stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 9d128952-c59a-4255-96f4-97529e1028eb)) - (fp_circle (center 3.4 0) (end 4.775 0) - (stroke (width 0.1) (type solid)) (fill none) (layer "F.Fab") (tstamp 9d490bc0-2183-4aa3-a811-b681d7fef97f)) - (pad "1" thru_hole circle (at -0.1 0) (size 2.4 2.4) (drill 1.2) (layers "*.Cu" "*.Mask") - (net 23 "GND") (pinfunction "Pin_1") (pintype "passive") (tstamp 1c41a19e-bcbc-4f96-9c03-5176b10a4e3e)) - (pad "2" thru_hole circle (at 3.4 0) (size 2.4 2.4) (drill 1.2) (layers "*.Cu" "*.Mask") - (net 23 "GND") (pinfunction "Pin_2") (pintype "passive") (tstamp a237ffc6-dd88-475b-a6a4-4a2f582efc5b)) - ) - (footprint "ScitechKorea:I2C_Socket" (layer "F.Cu") (tstamp e878af2d-39bc-428c-8cd3-7b32422e67ad) - (at 157.59 65.02) + (at 158.69 65.02) (property "Sheetfile" "megaPCB.kicad_sch") (property "Sheetname" "") (property "ki_description" "Generic connector, single row, 01x04, script generated") @@ -5841,9 +5781,35 @@ (net 48 "5V") (pinfunction "Pin_4") (pintype "passive") (tstamp 76d412f8-10a2-4b0b-ab2c-471c066652c1)) ) + (footprint "ScitechKorea:ScrewHole" (layer "F.Cu") + (tstamp f25070a4-5708-47b7-9488-b63067f41fe1) + (at 83 157) + (attr through_hole) + (fp_text reference "REF**" (at -0.2175 -0.54 unlocked) (layer "F.SilkS") hide + (effects (font (size 1 1) (thickness 0.1))) + (tstamp 1bca0dc9-6b30-45ed-a991-f331b2152439) + ) + (fp_text value "ScrewHole" (at -0.2175 0.96 unlocked) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 00e9d0ec-c388-4795-aa50-d8dc6c70e7ca) + ) + (fp_text user "${REFERENCE}" (at -0.2175 2.46 unlocked) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 6ec22886-d240-4264-9349-cafe143938bc) + ) + (fp_circle (center 0 0) (end 2.5 0) + (stroke (width 0.15) (type solid)) (fill none) (layer "F.CrtYd") (tstamp d86931c5-9850-42bb-9f7f-5e89705acb58)) + (fp_circle (center 0 0) (end 3.2 0) + (stroke (width 0.15) (type solid)) (fill none) (layer "B.Fab") (tstamp 84225c37-3594-4cff-acc8-53e36d841402)) + (fp_circle (center 0 0) (end 3.2 0) + (stroke (width 0.15) (type solid)) (fill none) (layer "F.Fab") (tstamp aa55192c-64cd-4bde-8b4a-8ae2c97720b7)) + (pad "" np_thru_hole circle (at 0 0) (size 3.2 3.2) (drill 3.2) (layers "F&B.Cu" "*.Mask") + (clearance 1) (tstamp e9a06f66-1324-4238-8f2e-fd9eeadc11cb)) + ) + (footprint "ScitechKorea:I2C_Socket" (layer "F.Cu") (tstamp f37ebfb3-c9fe-41ae-b0ac-a418e593ef11) - (at 157.59 80.72) + (at 158.69 80.72) (property "Sheetfile" "megaPCB.kicad_sch") (property "Sheetname" "") (property "ki_description" "Generic connector, single row, 01x04, script generated") @@ -5946,7 +5912,7 @@ (footprint "ScitechKorea:I2C_Socket" (layer "F.Cu") (tstamp fdc797fc-18f1-4829-97f3-f30440964f46) - (at 144.58 72.87) + (at 145.96 72.87) (property "Sheetfile" "megaPCB.kicad_sch") (property "Sheetname" "") (property "ki_description" "Generic connector, single row, 01x04, script generated") @@ -6047,108 +6013,108 @@ (net 48 "5V") (pinfunction "Pin_4") (pintype "passive") (tstamp 1158e0d2-aea0-4e82-9045-e77888e7028c)) ) - (gr_line (start 178.48934 160.03934) (end 82 160) + (gr_line (start 178.5 160) (end 82 160) (stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 05b87f36-5ed9-4323-9a69-684eb9699945)) (gr_arc (start 82 160) (mid 80.585786 159.414214) (end 80 158) (stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 0a0d8cbf-557b-4aac-8ed3-a1fb3c81c7f9)) - (gr_line (start 82 67.5) (end 98 67.5) + (gr_line (start 82 67.26) (end 98 67.26) (stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 2054ae83-2573-4d5d-9a5e-70a97f1739b1)) - (gr_line (start 100 84.5) (end 100 69.5) + (gr_line (start 100 84.26) (end 100 69.26) (stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 31c6e43d-e86e-489b-b748-a84ff067c116)) - (gr_arc (start 98 67.5) (mid 99.414214 68.085786) (end 100 69.5) + (gr_arc (start 98 67.26) (mid 99.414214 67.845786) (end 100 69.26) (stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 4c6740f6-5dac-49fc-8459-32ab5f2d0be4)) (gr_arc (start 80 62) (mid 80.585786 60.585786) (end 82 60) (stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 6ba0d475-4ac4-4eef-815e-151bcf72389e)) - (gr_line (start 82 86.5) (end 98 86.5) + (gr_line (start 82 86.26) (end 98 86.26) (stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp 96c91110-ca24-4cda-9193-9f7a1f8a10ac)) - (gr_line (start 80 158) (end 80 88.5) + (gr_line (start 80 158) (end 80 88.26) (stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp a57e064b-5b68-4d65-8fbb-f29a7b6dba83)) - (gr_arc (start 179.98934 158.53934) (mid 179.55 159.6) (end 178.48934 160.03934) + (gr_arc (start 180 158.5) (mid 179.560648 159.560648) (end 178.5 160) (stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp a61419c0-b816-490f-bf37-9bd1bffe9a6c)) - (gr_line (start 80 62) (end 80 65.5) + (gr_line (start 80 62) (end 80 65.26) (stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp c0c3eeb1-6ebd-4cae-8f06-e3785380cf31)) - (gr_arc (start 82 67.5) (mid 80.585786 66.914214) (end 80 65.5) + (gr_arc (start 82 67.26) (mid 80.585786 66.674214) (end 80 65.26) (stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp cd26bbb2-4245-424c-9648-3635474d91e9)) (gr_arc (start 178.5 60) (mid 179.56066 60.43934) (end 180 61.5) (stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp cda9a016-f20e-4caa-a9bf-726b6cffec0e)) - (gr_arc (start 80 88.5) (mid 80.585786 87.085786) (end 82 86.5) + (gr_arc (start 80 88.26) (mid 80.585786 86.845786) (end 82 86.26) (stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp df9e7fa2-7250-4e52-bf2a-4d1a25330398)) - (gr_arc (start 100 84.5) (mid 99.414214 85.914214) (end 98 86.5) + (gr_arc (start 100 84.26) (mid 99.414214 85.674214) (end 98 86.26) (stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp e8f34ce8-7e89-4e2e-9b82-df4b9cc79707)) (gr_line (start 82 60) (end 178.5 60) (stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp f423b1bb-bf46-490c-821d-ee59bb2c6bab)) - (gr_line (start 180 61.5) (end 179.98934 158.53934) + (gr_line (start 180 61.5) (end 180 158.5) (stroke (width 0.1) (type default)) (layer "Edge.Cuts") (tstamp ff52e9a0-13de-423f-8ea7-601ac3d1b1bd)) (gr_text "RX TX" (at 87.45 103.05 -90) (layer "F.SilkS") (tstamp 03ad635e-b99c-4124-85d8-e2f2e3ec17e0) (effects (font (size 1.5 1) (thickness 0.2) bold) (justify bottom)) ) - (gr_text "GND" (at 168.1 152.3) (layer "F.SilkS" knockout) (tstamp 0870fd2b-7d78-4d34-ab65-e5996bd75b2c) + (gr_text "GND" (at 163.24 152.1875) (layer "F.SilkS" knockout) (tstamp 0870fd2b-7d78-4d34-ab65-e5996bd75b2c) (effects (font (size 1 0.7) (thickness 0.175) bold) (justify bottom)) ) - (gr_text "[1 0 0]\n" (at 158 76.8 180) (layer "F.SilkS") (tstamp 0ecb6a3a-986e-4fea-a17e-b51f14232073) + (gr_text "[1 0 0]\n" (at 159.1 76.8 180) (layer "F.SilkS") (tstamp 0ecb6a3a-986e-4fea-a17e-b51f14232073) (effects (font (size 0.7 0.7) (thickness 0.15))) ) - (gr_text "GND" (at 157.6 152.3) (layer "F.SilkS" knockout) (tstamp 134d5239-39aa-4972-934c-2f8d2885b137) + (gr_text "GND" (at 152.74 152.1875) (layer "F.SilkS" knockout) (tstamp 134d5239-39aa-4972-934c-2f8d2885b137) (effects (font (size 1 0.7) (thickness 0.175) bold) (justify bottom)) ) (gr_text "15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 0" (at 172.5 119.4 90) (layer "F.SilkS") (tstamp 1e121dde-22b6-4d8c-8999-e590e6a6f045) (effects (font (size 1.5 0.88) (thickness 0.2) bold) (justify bottom)) ) - (gr_text "GND" (at 84.1 152.3) (layer "F.SilkS" knockout) (tstamp 1e5a884a-4371-4ace-bd61-8238cfe2862d) - (effects (font (size 1 0.7) (thickness 0.175) bold) (justify bottom)) - ) - (gr_text "[0 0 0]\n" (at 158 61.1 180) (layer "F.SilkS") (tstamp 24c28f06-5745-4c57-a512-7ff51faf02b7) + (gr_text "[0 0 0]\n" (at 159.1 61.1 180) (layer "F.SilkS") (tstamp 24c28f06-5745-4c57-a512-7ff51faf02b7) (effects (font (size 0.7 0.7) (thickness 0.15))) ) - (gr_text "VCC GND SCL SDA" (at 148.5 92.3 180) (layer "F.SilkS") (tstamp 2a34b138-d78c-4f1d-b28e-c5d5b4a6081a) + (gr_text "VCC GND SCL SDA" (at 149.88 92.3 180) (layer "F.SilkS") (tstamp 2a34b138-d78c-4f1d-b28e-c5d5b4a6081a) (effects (font (size 1 0.7) (thickness 0.15)) (justify bottom)) ) - (gr_text "[1 0 1]\n" (at 145.1 76.8 180) (layer "F.SilkS") (tstamp 2ca83dae-485d-4edb-951b-57fd1248b34c) + (gr_text "[1 0 1]\n" (at 146.48 76.8 180) (layer "F.SilkS") (tstamp 2ca83dae-485d-4edb-951b-57fd1248b34c) (effects (font (size 0.7 0.7) (thickness 0.15))) ) - (gr_text "GND" (at 126.1 152.3) (layer "F.SilkS" knockout) (tstamp 34d0c624-3ae2-4fae-b155-b5aec7b1893d) + (gr_text "GND" (at 121.24 152.1875) (layer "F.SilkS" knockout) (tstamp 34d0c624-3ae2-4fae-b155-b5aec7b1893d) (effects (font (size 1 0.7) (thickness 0.175) bold) (justify bottom)) ) (gr_text "SCITECH KOREA INC.,\nINTERFACE BOARD V2.0" (at 116.4 78.9) (layer "F.SilkS") (tstamp 35084dc0-641c-4c73-b79a-2148571c2558) (effects (font (size 1.3 1.3) (thickness 0.2)) (justify bottom)) ) - (gr_text "4, 5" (at 165.152381 69 180) (layer "F.SilkS") (tstamp 3a36fb74-d56d-41ec-9d0f-a8791201b7d2) + (gr_text "▼" (at 82 154.5) (layer "F.SilkS") (tstamp 39525423-3967-42da-b25c-d8615f736c07) + (effects (font (size 1.5 1.5) (thickness 0.2)) (justify left bottom)) + ) + (gr_text "4, 5" (at 166.252381 69 180) (layer "F.SilkS") (tstamp 3a36fb74-d56d-41ec-9d0f-a8791201b7d2) (effects (font (size 1 1) (thickness 0.2) bold)) ) - (gr_text "GND" (at 115.6 152.3) (layer "F.SilkS" knockout) (tstamp 43c34fc8-0a5a-4c68-91a4-001d94a80186) + (gr_text "▼" (at 139 88) (layer "F.SilkS") (tstamp 3d10e790-22f0-4c4a-bb85-32e9e54173b2) + (effects (font (size 1.5 1.5) (thickness 0.2)) (justify left bottom)) + ) + (gr_text "GND" (at 110.74 152.1875) (layer "F.SilkS" knockout) (tstamp 43c34fc8-0a5a-4c68-91a4-001d94a80186) (effects (font (size 1 0.7) (thickness 0.175) bold) (justify bottom)) ) - (gr_text "12, 13" (at 164.2 84.7 180) (layer "F.SilkS") (tstamp 45c7d966-c487-44ea-94b8-1a7ab3d3f474) + (gr_text "12, 13" (at 165.3 84.7 180) (layer "F.SilkS") (tstamp 45c7d966-c487-44ea-94b8-1a7ab3d3f474) (effects (font (size 1 1) (thickness 0.2) bold)) ) - (gr_text " 0 1 2 3 4 5 6 7 8 9" (at 119.2 152.58125) (layer "F.SilkS") (tstamp 4af7cc07-30f8-4d3b-9710-4d98bafc5f11) + (gr_text " 0 1 2 3 4 5 6 7 8 9" (at 114.34 152.46875) (layer "F.SilkS") (tstamp 4af7cc07-30f8-4d3b-9710-4d98bafc5f11) (effects (font (size 1.5 0.88) (thickness 0.2) bold) (justify bottom)) ) (gr_text "7 6 5 4 3 2 1 0" (at 172.5 75.65 90) (layer "F.SilkS") (tstamp 53de20ba-e98d-4d74-9eed-8daebddb3441) (effects (font (size 1.5 0.88) (thickness 0.2)) (justify bottom)) ) - (gr_text "GND" (at 136.6 152.3) (layer "F.SilkS" knockout) (tstamp 5413e94c-31de-41e2-a0fe-5a5bc69fae51) + (gr_text "GND" (at 131.74 152.1875) (layer "F.SilkS" knockout) (tstamp 5413e94c-31de-41e2-a0fe-5a5bc69fae51) (effects (font (size 1 0.7) (thickness 0.175) bold) (justify bottom)) ) - (gr_text "8, 9" (at 165.152381 76.8 180) (layer "F.SilkS") (tstamp 5b1cca67-430a-4e47-ac51-45d40fe57b7b) + (gr_text "8, 9" (at 166.252381 76.8 180) (layer "F.SilkS") (tstamp 5b1cca67-430a-4e47-ac51-45d40fe57b7b) (effects (font (size 1 1) (thickness 0.2) bold)) ) - (gr_text "GND" (at 87.6 152.3) (layer "F.SilkS" knockout) (tstamp 6529f46f-36c5-44b2-822a-eb2474aaf2ab) - (effects (font (size 1 0.7) (thickness 0.175) bold) (justify bottom)) - ) - (gr_text "GND" (at 147.1 152.3) (layer "F.SilkS" knockout) (tstamp 692cb429-4dfb-4f9b-a0c8-eec1a0367bd2) + (gr_text "GND" (at 142.24 152.1875) (layer "F.SilkS" knockout) (tstamp 692cb429-4dfb-4f9b-a0c8-eec1a0367bd2) (effects (font (size 1 0.7) (thickness 0.175) bold) (justify bottom)) ) - (gr_text "ANALOG IN" (at 119.4 149.9) (layer "F.SilkS") (tstamp 75ad50d7-334e-4d1b-ac3b-403db2bfbc42) + (gr_text "ANALOG IN" (at 131.57 149.83) (layer "F.SilkS") (tstamp 75ad50d7-334e-4d1b-ac3b-403db2bfbc42) (effects (font (size 1.5 1.5) (thickness 0.3) bold) (justify bottom)) ) - (gr_text "[0 1 0]" (at 158 69 180) (layer "F.SilkS") (tstamp 7ada76a5-9a94-49bc-8ecb-bccf381be8e4) + (gr_text "[0 1 0]" (at 159.1 69 180) (layer "F.SilkS") (tstamp 7ada76a5-9a94-49bc-8ecb-bccf381be8e4) (effects (font (size 0.7 0.7) (thickness 0.15))) ) - (gr_text "250R" (at 119.55 131.05 90) (layer "F.SilkS") (tstamp a34231ae-433d-4624-a999-7422da833e35) - (effects (font (size 1.3 1.3) (thickness 0.2)) (justify bottom)) + (gr_text "250R" (at 92.82 130.85 90) (layer "F.SilkS") (tstamp a34231ae-433d-4624-a999-7422da833e35) + (effects (font (size 0.8 0.8) (thickness 0.1)) (justify bottom)) ) - (gr_text "GND" (at 94.6 152.3) (layer "F.SilkS" knockout) (tstamp a3bf52cb-1de1-43be-acde-35e1f0b92f3d) + (gr_text "GND" (at 89.74 152.1875) (layer "F.SilkS" knockout) (tstamp a3bf52cb-1de1-43be-acde-35e1f0b92f3d) (effects (font (size 1 0.7) (thickness 0.175) bold) (justify bottom)) ) (gr_text "DIGITAL IN" (at 170 76.721429 90) (layer "F.SilkS") (tstamp a4df2bc3-cecc-4f97-856b-65a32de38d37) @@ -6157,217 +6123,228 @@ (gr_text "IORF" (at 100.26 143.16) (layer "F.SilkS") (tstamp a8b2c5dc-00a8-4294-81c9-5f298c3eb6a4) (effects (font (size 0.8 0.8) (thickness 0.15))) ) - (gr_text "[0 1 1]\n" (at 145.1 69 180) (layer "F.SilkS") (tstamp addbd1f1-1884-42cc-83ef-238ae208df1a) + (gr_text "[0 1 1]\n" (at 146.48 69 180) (layer "F.SilkS") (tstamp addbd1f1-1884-42cc-83ef-238ae208df1a) (effects (font (size 0.7 0.7) (thickness 0.15))) ) - (gr_text "VCC GND SCL SDA" (at 161.6 92.3 180) (layer "F.SilkS") (tstamp b917d6e8-7c4a-4434-bfb4-58b61cf90031) + (gr_text "VCC GND SCL SDA" (at 162.98 92.3 180) (layer "F.SilkS") (tstamp b917d6e8-7c4a-4434-bfb4-58b61cf90031) (effects (font (size 1 0.7) (thickness 0.15)) (justify bottom)) ) - (gr_text "10 11 12 13 14 15" (at 162.825 152.58125) (layer "F.SilkS") (tstamp badb959f-7848-419f-9ae2-e186378bf2b6) + (gr_text "10 11 12 13 14 15" (at 157.965 152.46875) (layer "F.SilkS") (tstamp badb959f-7848-419f-9ae2-e186378bf2b6) (effects (font (size 1.5 0.88) (thickness 0.2) bold) (justify bottom)) ) + (gr_text "▲" (at 139 67) (layer "F.SilkS") (tstamp bb8b4b7f-0c18-4eac-b996-ab47cd3cd9bc) + (effects (font (size 1.5 1.5) (thickness 0.2)) (justify left bottom)) + ) (gr_text "DIGITAL OUT" (at 170 122.6 90) (layer "F.SilkS") (tstamp c0e2f77e-fd7d-41d2-8805-719f891a55dd) (effects (font (size 1.5 1.5) (thickness 0.3) bold) (justify bottom)) ) - (gr_text "GND" (at 105.1 152.3) (layer "F.SilkS" knockout) (tstamp c860844d-e23c-4888-909a-d2a725ce1348) + (gr_text "GND" (at 100.24 152.1875) (layer "F.SilkS" knockout) (tstamp c860844d-e23c-4888-909a-d2a725ce1348) (effects (font (size 1 0.7) (thickness 0.175) bold) (justify bottom)) ) - (gr_text "[1 1 0]" (at 158 84.7 180) (layer "F.SilkS") (tstamp c9b1e78a-054c-4f74-85b4-b58a02ae66d3) + (gr_text "[1 1 0]" (at 159.1 84.7 180) (layer "F.SilkS") (tstamp c9b1e78a-054c-4f74-85b4-b58a02ae66d3) (effects (font (size 0.7 0.7) (thickness 0.15))) ) - (gr_text "[1 1 1]\n" (at 145.1 84.7 180) (layer "F.SilkS") (tstamp ca1a2f2c-2788-444e-97d9-38f31600a7b2) + (gr_text "[1 1 1]\n" (at 146.48 84.7 180) (layer "F.SilkS") (tstamp ca1a2f2c-2788-444e-97d9-38f31600a7b2) (effects (font (size 0.7 0.7) (thickness 0.15))) ) - (gr_text "2, 3" (at 152.152381 61.1 180) (layer "F.SilkS") (tstamp d1b07ddb-4d7f-4121-a2c7-d6333494d345) + (gr_text "2, 3" (at 153.532381 61.1 180) (layer "F.SilkS") (tstamp d1b07ddb-4d7f-4121-a2c7-d6333494d345) (effects (font (size 1 1) (thickness 0.2) bold)) ) - (gr_text "10, 11" (at 151.2 76.8 180) (layer "F.SilkS") (tstamp d8b8c2d4-d9e2-4039-99eb-dddf68e9056e) + (gr_text "10, 11" (at 152.58 76.8 180) (layer "F.SilkS") (tstamp d8b8c2d4-d9e2-4039-99eb-dddf68e9056e) (effects (font (size 1 1) (thickness 0.2) bold)) ) - (gr_text "250R" (at 119.65 113.9 90) (layer "F.SilkS") (tstamp ddfb5853-5e71-4fac-91e9-fedfa1741793) - (effects (font (size 1.3 1.3) (thickness 0.2)) (justify bottom)) + (gr_text "▼" (at 176 154.5) (layer "F.SilkS") (tstamp ddd1bd37-5dcf-4078-99d2-1197180d463b) + (effects (font (size 1.5 1.5) (thickness 0.2)) (justify left bottom)) + ) + (gr_text "250R" (at 92.92 113.7 90) (layer "F.SilkS") (tstamp ddfb5853-5e71-4fac-91e9-fedfa1741793) + (effects (font (size 0.8 0.8) (thickness 0.1)) (justify bottom)) ) (gr_text "GND" (at 109.3 103.29) (layer "F.SilkS") (tstamp dfaca380-fd92-4548-be65-674343cdf9f4) (effects (font (size 0.8 0.8) (thickness 0.15))) ) - (gr_text "14, 15" (at 151.2 84.7 180) (layer "F.SilkS") (tstamp dff06a55-a983-4644-b8b8-a5c8326193dc) + (gr_text "14, 15" (at 152.58 84.7 180) (layer "F.SilkS") (tstamp dff06a55-a983-4644-b8b8-a5c8326193dc) (effects (font (size 1 1) (thickness 0.2) bold)) ) - (gr_text "6, 7" (at 152.152381 69 180) (layer "F.SilkS") (tstamp e47d29c7-b6b6-4401-ba3d-743a4cf3f074) + (gr_text "6, 7" (at 153.532381 69 180) (layer "F.SilkS") (tstamp e47d29c7-b6b6-4401-ba3d-743a4cf3f074) (effects (font (size 1 1) (thickness 0.2) bold)) ) - (gr_text "0, 1" (at 165.152381 61.1 180) (layer "F.SilkS") (tstamp e502b0b2-a102-48df-9c60-0e5fa32afe7f) + (gr_text "0, 1" (at 166.252381 61.1 180) (layer "F.SilkS") (tstamp e502b0b2-a102-48df-9c60-0e5fa32afe7f) (effects (font (size 1 1) (thickness 0.2) bold)) ) - (gr_text "ANALOG OUT" (at 142.5 76.5 90) (layer "F.SilkS") (tstamp eb8f313d-7362-4a39-886b-b121f79a4d85) + (gr_text "ANALOG OUT" (at 144 76.5 90) (layer "F.SilkS") (tstamp eb8f313d-7362-4a39-886b-b121f79a4d85) (effects (font (size 1.5 1.5) (thickness 0.3) bold) (justify bottom)) ) - (gr_text "[0 0 1]\n" (at 145.1 61.1 180) (layer "F.SilkS") (tstamp eeab71c7-139a-4a29-991e-47f6492d89e7) + (gr_text "[0 0 1]\n" (at 146.48 61.1 180) (layer "F.SilkS") (tstamp eeab71c7-139a-4a29-991e-47f6492d89e7) (effects (font (size 0.7 0.7) (thickness 0.15))) ) (gr_text "AREF" (at 93.89 99.24) (layer "F.SilkS") (tstamp fbbf3da5-53cd-44a7-88b1-aa6700472c28) (effects (font (size 0.8 0.8) (thickness 0.15))) ) - (segment (start 148.56 103.59) (end 125.9645 126.1855) (width 0.25) (layer "F.Cu") (net 1) (tstamp baa66d58-b26b-44bc-bd36-3d8857698cf1)) - (segment (start 148.56 97.1) (end 148.56 103.59) (width 0.25) (layer "F.Cu") (net 1) (tstamp c595e957-e665-420d-93a9-ef85f3540735)) - (segment (start 125.9645 126.1855) (end 125.91 126.1855) (width 0.25) (layer "F.Cu") (net 1) (tstamp dab503ff-9301-43e7-8546-61182debcc08)) - (segment (start 122.4 133) (end 122.4 130.35) (width 0.25) (layer "F.Cu") (net 2) (tstamp 0239fd9d-6335-4a59-a7d3-185f54fa6356)) - (segment (start 130 134.45) (end 128.35 136.1) (width 0.25) (layer "F.Cu") (net 2) (tstamp 0997442f-ed08-489d-9a9f-5f7cb952042a)) - (segment (start 125.91 131.2655) (end 124.1345 131.2655) (width 0.25) (layer "F.Cu") (net 2) (tstamp 0f55ba8a-8630-4878-b936-5f73d8222f7a)) - (segment (start 124.0245 128.7255) (end 125.91 128.7255) (width 0.25) (layer "F.Cu") (net 2) (tstamp 13d4f3c1-90cd-4155-80c3-f98d4991248c)) - (segment (start 163.8 99.64) (end 163.71 99.64) (width 0.25) (layer "F.Cu") (net 2) (tstamp 35f95e01-c6ae-4bb3-a042-7e83e6e6c222)) - (segment (start 150.422792 103) (end 130 123.422792) (width 0.25) (layer "F.Cu") (net 2) (tstamp 41c9a0cd-0050-4d85-80b9-cae50fc44496)) - (segment (start 124.4 136.1) (end 122.4 134.1) (width 0.25) (layer "F.Cu") (net 2) (tstamp 47342d50-89bd-48fb-bbe0-41d257637f76)) - (segment (start 163.71 99.64) (end 160.35 103) (width 0.25) (layer "F.Cu") (net 2) (tstamp 64e0c1cd-f683-48ed-b965-91c76d3ee77a)) - (segment (start 130 123.422792) (end 130 134.45) (width 0.25) (layer "F.Cu") (net 2) (tstamp 685bd609-f99a-4488-a7d6-0b26f0d2ff2a)) - (segment (start 122.4 134.1) (end 122.4 133) (width 0.25) (layer "F.Cu") (net 2) (tstamp a40713f8-aa3c-4232-aca7-1937db228949)) - (segment (start 128.35 136.1) (end 124.4 136.1) (width 0.25) (layer "F.Cu") (net 2) (tstamp addaa22f-b7b8-487b-afbe-0f2902984fda)) - (segment (start 160.35 103) (end 150.422792 103) (width 0.25) (layer "F.Cu") (net 2) (tstamp c03d8276-d012-4c75-8a08-ba2f8ef91a94)) - (segment (start 124.1345 131.2655) (end 122.4 133) (width 0.25) (layer "F.Cu") (net 2) (tstamp de4687fe-0ae2-4334-a8b3-6318a7aff432)) - (segment (start 122.4 130.35) (end 124.0245 128.7255) (width 0.25) (layer "F.Cu") (net 2) (tstamp f9a9fa24-1006-4e57-985b-326f2c3ff70f)) - (segment (start 151.1 101.686396) (end 129.55 123.236396) (width 0.25) (layer "F.Cu") (net 3) (tstamp 4b318a4c-5183-4276-a3ed-35644a993685)) - (segment (start 128.458104 133.8055) (end 125.91 133.8055) (width 0.25) (layer "F.Cu") (net 3) (tstamp 77838f34-1d32-4ac7-b973-c4c770f0aa74)) - (segment (start 151.1 97.1) (end 151.1 101.686396) (width 0.25) (layer "F.Cu") (net 3) (tstamp 9500416b-14e7-4c61-83c2-245f63b488fb)) - (segment (start 129.55 123.236396) (end 129.55 132.713604) (width 0.25) (layer "F.Cu") (net 3) (tstamp b3b8d0f8-29ae-4451-81ee-f36ee4eff7cb)) - (segment (start 129.55 132.713604) (end 128.458104 133.8055) (width 0.25) (layer "F.Cu") (net 3) (tstamp db318bcc-1e30-49a8-8131-07904f459d46)) - (segment (start 125.91 111.1855) (end 128.5645 111.1855) (width 0.25) (layer "B.Cu") (net 4) (tstamp 28391842-adda-4a58-9034-633980f309ea)) - (segment (start 128.5645 111.1855) (end 135.579 118.2) (width 0.25) (layer "B.Cu") (net 4) (tstamp 376d045f-8894-4692-bd99-a74a22a6e0cb)) - (segment (start 135.579 118.2) (end 143.877208 118.2) (width 0.25) (layer "B.Cu") (net 4) (tstamp 45fc9739-3aef-42cf-80b0-94b6928498d9)) - (segment (start 145.57 99.19) (end 143.48 97.1) (width 0.25) (layer "B.Cu") (net 4) (tstamp 63add0b1-887c-4f96-b629-3a6705d88c45)) - (segment (start 143.877208 118.2) (end 145.57 116.507208) (width 0.25) (layer "B.Cu") (net 4) (tstamp c8b913e6-2058-4fa6-b889-798b60a8fc5d)) - (segment (start 145.57 116.507208) (end 145.57 99.19) (width 0.25) (layer "B.Cu") (net 4) (tstamp cc11006e-fe4e-4383-be1f-3e75cb3f598f)) - (segment (start 105.950001 147.8) (end 98.1 155.65) (width 0.5) (layer "B.Cu") (net 5) (tstamp 1099e77b-ff7c-426a-863d-a62f61361ebd)) - (segment (start 102.465 142.965) (end 94.41 134.91) (width 0.25) (layer "B.Cu") (net 5) (tstamp 32f81259-5191-4bf5-b760-ea9309fc3da3)) - (segment (start 120.62 145.36) (end 118.225 142.965) (width 0.25) (layer "B.Cu") (net 5) (tstamp 5e2a98c0-c138-420a-ba60-ca7206bddd36)) - (segment (start 118.225 142.965) (end 102.465 142.965) (width 0.25) (layer "B.Cu") (net 5) (tstamp 6ea207d5-b0a7-4c22-a133-9e09047fdbcc)) - (segment (start 120.5525 147.0475) (end 119.8 147.8) (width 0.5) (layer "B.Cu") (net 5) (tstamp 82d16228-59ee-44f4-afa8-7fa96843d0a0)) - (segment (start 120.5525 145.13) (end 120.5525 147.0475) (width 0.5) (layer "B.Cu") (net 5) (tstamp b284e597-9ce1-4af0-a68b-e52eb3d86c86)) - (segment (start 119.8 147.8) (end 105.950001 147.8) (width 0.5) (layer "B.Cu") (net 5) (tstamp d3d9e699-d1a3-4185-8d45-b128f0f43906)) - (segment (start 98.1 155.65) (end 98.1 156.4) (width 0.5) (layer "B.Cu") (net 5) (tstamp eba6b775-5155-4f50-b712-0503a407b7c9)) - (segment (start 122.178604 142.515) (end 105.115 142.515) (width 0.25) (layer "B.Cu") (net 6) (tstamp 6ac15fa8-0999-443f-b650-dada63c676d5)) - (segment (start 123.16 145.36) (end 123.16 143.496396) (width 0.25) (layer "B.Cu") (net 6) (tstamp 6bcfaf27-6f6f-4642-9aad-f646b9014930)) - (segment (start 101.6 153.13995) (end 106.23995 148.5) (width 0.5) (layer "B.Cu") (net 6) (tstamp b9cb21aa-78c3-4513-b3e1-2815f62ae571)) - (segment (start 105.115 142.515) (end 97.51 134.91) (width 0.25) (layer "B.Cu") (net 6) (tstamp bb28f3cf-4320-4e79-9864-c67c18d18655)) - (segment (start 121.3 148.5) (end 123.0925 146.7075) (width 0.5) (layer "B.Cu") (net 6) (tstamp c95c8e1f-3413-4a6e-87df-5bd963b8a8d4)) - (segment (start 123.16 143.496396) (end 122.178604 142.515) (width 0.25) (layer "B.Cu") (net 6) (tstamp cde5e281-86ef-4586-b3d5-3fc210d19836)) - (segment (start 123.0925 146.7075) (end 123.0925 145.13) (width 0.5) (layer "B.Cu") (net 6) (tstamp dfdb3ecf-cd91-42b1-89b0-ee04521267cf)) - (segment (start 101.6 156.4) (end 101.6 153.13995) (width 0.5) (layer "B.Cu") (net 6) (tstamp e0d7a90d-76ed-4596-9672-4a73166ba30d)) - (segment (start 106.23995 148.5) (end 121.3 148.5) (width 0.5) (layer "B.Cu") (net 6) (tstamp e512fb34-564d-45cb-8b6a-e1b962e81797)) - (segment (start 107.765 142.065) (end 100.61 134.91) (width 0.25) (layer "B.Cu") (net 7) (tstamp 027ab981-3f5e-4d3e-a429-1379e74ab1e3)) - (segment (start 123.8 149.2) (end 115.060051 149.2) (width 0.5) (layer "B.Cu") (net 7) (tstamp 58510546-6695-4f0a-b002-bcc1360c36f1)) - (segment (start 125.7 145.36) (end 125.66 145.36) (width 0.25) (layer "B.Cu") (net 7) (tstamp 716d27e2-11df-4687-b913-95e632cf1475)) - (segment (start 125.6325 145.13) (end 125.6325 147.3675) (width 0.5) (layer "B.Cu") (net 7) (tstamp 99ab0d9b-4358-45de-bfa8-f4550267a40a)) - (segment (start 125.6325 147.3675) (end 123.8 149.2) (width 0.5) (layer "B.Cu") (net 7) (tstamp 9b71c543-6c31-4a92-8acd-5e9126f702bf)) - (segment (start 115.060051 149.2) (end 108.6 155.66005) (width 0.5) (layer "B.Cu") (net 7) (tstamp c5ab215b-775d-4c78-adf3-7c3d7faf079f)) - (segment (start 125.66 145.36) (end 122.365 142.065) (width 0.25) (layer "B.Cu") (net 7) (tstamp caf323b9-b5f7-49e3-a3d3-41f6ea38cf48)) - (segment (start 108.6 155.66005) (end 108.6 156.4) (width 0.5) (layer "B.Cu") (net 7) (tstamp cc85aa8b-d3d1-44fa-b94d-2bcbda742a25)) - (segment (start 122.365 142.065) (end 107.765 142.065) (width 0.25) (layer "B.Cu") (net 7) (tstamp d157e14e-e4c4-4093-8f2a-cb2326263082)) - (segment (start 110.315 141.615) (end 103.647145 134.947145) (width 0.25) (layer "B.Cu") (net 8) (tstamp 124de776-052f-4da3-9839-fffb37bffd88)) - (segment (start 128.24 143.456396) (end 126.398604 141.615) (width 0.25) (layer "B.Cu") (net 8) (tstamp 46417ac5-2e0b-4ee8-b7df-b31262868749)) - (segment (start 126.398604 141.615) (end 110.315 141.615) (width 0.25) (layer "B.Cu") (net 8) (tstamp 5f56ecf2-426d-4b71-881e-b5c103c912dc)) - (segment (start 125.9 149.9) (end 115.35 149.9) (width 0.5) (layer "B.Cu") (net 8) (tstamp 8f8cdfb6-0284-457d-9b75-adcbcab724d5)) - (segment (start 128.1725 145.13) (end 128.1725 147.6275) (width 0.5) (layer "B.Cu") (net 8) (tstamp 9b7b3f77-6eb4-4e47-91f9-ac14943a5bb2)) - (segment (start 112.1 153.15) (end 112.1 156.4) (width 0.5) (layer "B.Cu") (net 8) (tstamp ae842104-f48e-42d8-aadf-03ee063c8f1f)) - (segment (start 128.24 145.36) (end 128.24 143.456396) (width 0.25) (layer "B.Cu") (net 8) (tstamp c49127ff-a4a3-4f35-9f84-fb117cf2e119)) - (segment (start 115.35 149.9) (end 112.1 153.15) (width 0.5) (layer "B.Cu") (net 8) (tstamp cd378eec-58ed-41de-ab77-413a91466a74)) - (segment (start 128.1725 147.6275) (end 125.9 149.9) (width 0.5) (layer "B.Cu") (net 8) (tstamp d4a9bbb0-8a6b-4773-ac39-2ff07a134a87)) - (segment (start 130.7125 147.6875) (end 126.5 151.9) (width 0.5) (layer "B.Cu") (net 9) (tstamp 5ffdf6d6-e3fa-4fd2-8dd9-2951a35f3300)) - (segment (start 126.585 141.165) (end 112.965 141.165) (width 0.25) (layer "B.Cu") (net 9) (tstamp 610a4ad3-dc8a-459c-bab2-39fddc035aa8)) - (segment (start 130.78 145.36) (end 126.585 141.165) (width 0.25) (layer "B.Cu") (net 9) (tstamp 6c6e2ab2-853e-42ce-b997-91c526c3da43)) - (segment (start 123.600001 151.9) (end 119.1 156.4) (width 0.5) (layer "B.Cu") (net 9) (tstamp b04e503a-bc1b-406f-b48a-1a3ac84eb0cb)) - (segment (start 126.5 151.9) (end 123.600001 151.9) (width 0.5) (layer "B.Cu") (net 9) (tstamp cc2cca1c-3278-4773-ae55-3e38c76e9510)) - (segment (start 130.7125 145.13) (end 130.7125 147.6875) (width 0.5) (layer "B.Cu") (net 9) (tstamp e461af4f-ffde-4008-8a8f-a6f8bbc03398)) - (segment (start 112.965 141.165) (end 106.73143 134.93143) (width 0.25) (layer "B.Cu") (net 9) (tstamp ee994941-2f36-49dc-956c-84697e1447e9)) - (segment (start 128.5 152.6) (end 123.88995 152.6) (width 0.5) (layer "B.Cu") (net 10) (tstamp 4837bc64-6cc2-40a1-87ea-148d4210c9d6)) - (segment (start 122.6 153.88995) (end 122.6 156.4) (width 0.5) (layer "B.Cu") (net 10) (tstamp 6e0f3d52-c3a8-4b15-8047-f020c6311b22)) - (segment (start 132.482208 140.715) (end 115.615 140.715) (width 0.25) (layer "B.Cu") (net 10) (tstamp 8011a4c7-d603-42c6-866c-437037614ae0)) - (segment (start 115.615 140.715) (end 109.815715 134.915715) (width 0.25) (layer "B.Cu") (net 10) (tstamp 8ac58010-a320-4365-bbf5-99675f49a3bd)) - (segment (start 123.88995 152.6) (end 122.6 153.88995) (width 0.5) (layer "B.Cu") (net 10) (tstamp a62f6ca9-e530-404c-9893-5e997d804d21)) - (segment (start 133.32 145.36) (end 133.32 141.552792) (width 0.25) (layer "B.Cu") (net 10) (tstamp ac856b4a-e3eb-45d4-99d1-74b8d3e342cc)) - (segment (start 133.2525 147.8475) (end 128.5 152.6) (width 0.5) (layer "B.Cu") (net 10) (tstamp cc4f0c60-ffd8-4da7-be5c-ac5c10169b57)) - (segment (start 133.2525 145.13) (end 133.2525 147.8475) (width 0.5) (layer "B.Cu") (net 10) (tstamp de857b1a-f596-4e07-b0bd-82c3f610d41f)) - (segment (start 133.32 141.552792) (end 132.482208 140.715) (width 0.25) (layer "B.Cu") (net 10) (tstamp ea14f29c-fe69-46c4-aa5b-2d2683ba7ddd)) - (segment (start 135.7925 145.13) (end 135.7925 150.2075) (width 0.5) (layer "B.Cu") (net 11) (tstamp 0a2589fb-0c0b-4615-b913-82a06f416397)) + (segment (start 148.56 102.85) (end 125.9 125.51) (width 0.25) (layer "F.Cu") (net 1) (tstamp 6291101e-2844-4979-9dc1-692bb785bbea)) + (segment (start 125.9 125.51) (end 125.9 127.38) (width 0.25) (layer "F.Cu") (net 1) (tstamp 674ff531-9243-4698-8f0f-07d19cc06532)) + (segment (start 148.56 97.1) (end 148.56 102.85) (width 0.25) (layer "F.Cu") (net 1) (tstamp ff3387ce-c6a2-4d64-9018-2000142deceb)) + (segment (start 127.87 137.58) (end 124.99 137.58) (width 0.25) (layer "F.Cu") (net 2) (tstamp 12c2d967-cad1-4400-954a-e359bfd5dce3)) + (segment (start 149.682792 103) (end 130.77 121.912792) (width 0.25) (layer "F.Cu") (net 2) (tstamp 16985c4c-9aff-4bd3-9b24-49048e93dd2e)) + (segment (start 160.35 103) (end 149.682792 103) (width 0.25) (layer "F.Cu") (net 2) (tstamp 43edf4df-68a9-4ecb-b80c-5d1ad3635d6c)) + (segment (start 122.4 133.88) (end 122.4 134.1) (width 0.25) (layer "F.Cu") (net 2) (tstamp 59e19967-f1fa-400e-826b-517f6e2a0bbc)) + (segment (start 124.99 137.58) (end 122.4 134.99) (width 0.25) (layer "F.Cu") (net 2) (tstamp 5e88cc3a-63de-47f0-83be-f1687294684a)) + (segment (start 163.71 99.64) (end 160.35 103) (width 0.25) (layer "F.Cu") (net 2) (tstamp 6908e32b-bdd7-45f0-a60a-d114d7ced7f1)) + (segment (start 122.4 134.99) (end 122.4 134.1) (width 0.25) (layer "F.Cu") (net 2) (tstamp 6ae05792-1756-4d74-9a3d-f8fa2daebf59)) + (segment (start 163.8 99.64) (end 163.71 99.64) (width 0.25) (layer "F.Cu") (net 2) (tstamp 7eebded5-b368-4a63-9bb0-3be66ece0206)) + (segment (start 123.85 132.43) (end 122.4 133.88) (width 0.25) (layer "F.Cu") (net 2) (tstamp 8687f540-5231-4e5c-8866-a64bfc90b466)) + (segment (start 123.77 129.92) (end 125.9 129.92) (width 0.25) (layer "F.Cu") (net 2) (tstamp 931b61d5-7344-41c9-a489-6d325003adeb)) + (segment (start 122.4 131.29) (end 123.77 129.92) (width 0.25) (layer "F.Cu") (net 2) (tstamp aee0c680-ac69-4b11-9174-9f5ef986468c)) + (segment (start 125.87 132.43) (end 123.85 132.43) (width 0.25) (layer "F.Cu") (net 2) (tstamp b4f4ca72-68f3-4a9f-bdf8-58cdbfc87bf2)) + (segment (start 130.77 134.68) (end 127.87 137.58) (width 0.25) (layer "F.Cu") (net 2) (tstamp cc2bd70d-5b15-44ed-97ee-0e8af21e6016)) + (segment (start 122.4 133) (end 122.4 131.29) (width 0.25) (layer "F.Cu") (net 2) (tstamp d0b48559-ea04-4804-a50f-58faeb32b39a)) + (segment (start 130.77 121.912792) (end 130.77 134.68) (width 0.25) (layer "F.Cu") (net 2) (tstamp d2b04d3b-c935-4d87-af9b-032472feaaf0)) + (segment (start 122.4 134.1) (end 122.4 133) (width 0.25) (layer "F.Cu") (net 2) (tstamp f7f72045-7bc9-44c4-a6c5-b07001b19e6c)) + (segment (start 151.1 100.946396) (end 130.32 121.726396) (width 0.25) (layer "F.Cu") (net 3) (tstamp 779fa0f2-0e71-4996-bd3d-a0fbc797cb68)) + (segment (start 130.32 134.493604) (end 129.813604 135) (width 0.25) (layer "F.Cu") (net 3) (tstamp 8ae8e532-961d-4ab4-a521-4485c8cdc864)) + (segment (start 129.813604 135) (end 125.9 135) (width 0.25) (layer "F.Cu") (net 3) (tstamp 8b876436-9ca2-4410-81a0-3703fc7ef77d)) + (segment (start 130.32 121.726396) (end 130.32 134.493604) (width 0.25) (layer "F.Cu") (net 3) (tstamp e88c77a9-f752-4b4c-b930-98f23f16d326)) + (segment (start 151.1 97.1) (end 151.1 100.946396) (width 0.25) (layer "F.Cu") (net 3) (tstamp ff631d54-124a-4a8e-b302-4c4ebf486bca)) + (segment (start 145.57 116.507208) (end 145.57 99.19) (width 0.25) (layer "B.Cu") (net 4) (tstamp 2e7c7bb6-8efd-4d40-b5bc-0796c3df24fb)) + (segment (start 145.57 99.19) (end 143.48 97.1) (width 0.25) (layer "B.Cu") (net 4) (tstamp 3a5ae7a1-83cb-4b6d-abed-2f7056a1b38b)) + (segment (start 127.419 110.04) (end 134.589 117.21) (width 0.25) (layer "B.Cu") (net 4) (tstamp 3eaeeb72-9dde-4918-af76-9753b1ae9cf7)) + (segment (start 125.95 110.04) (end 127.419 110.04) (width 0.25) (layer "B.Cu") (net 4) (tstamp 938d5806-7e3a-4da9-acb2-eec9d9fd51ac)) + (segment (start 134.589 117.21) (end 144.867208 117.21) (width 0.25) (layer "B.Cu") (net 4) (tstamp c5305d30-ac6a-42f8-b526-24a567a8d865)) + (segment (start 144.867208 117.21) (end 145.57 116.507208) (width 0.25) (layer "B.Cu") (net 4) (tstamp d903cb28-dce1-4af9-8855-27fcefc43991)) + (segment (start 120.128604 142.965) (end 102.465 142.965) (width 0.25) (layer "B.Cu") (net 5) (tstamp 3142cbf9-3eca-41ce-bb5e-4eead65ba196)) + (segment (start 120.28 147.4) (end 102.1275 147.4) (width 0.5) (layer "B.Cu") (net 5) (tstamp 4997fb73-c5df-4928-825f-8cc4091eb98a)) + (segment (start 102.465 142.965) (end 94.41 134.91) (width 0.25) (layer "B.Cu") (net 5) (tstamp 58453a47-50a5-4eb9-9716-4fc65d63c581)) + (segment (start 120.62 145.36) (end 120.62 143.456396) (width 0.25) (layer "B.Cu") (net 5) (tstamp 86fa203b-e076-4cf1-971b-7a8834671af6)) + (segment (start 120.62 147.06) (end 120.28 147.4) (width 0.5) (layer "B.Cu") (net 5) (tstamp c00afcdf-d5d0-4fb9-a32f-03332745a970)) + (segment (start 102.1275 147.4) (end 93.24 156.2875) (width 0.5) (layer "B.Cu") (net 5) (tstamp c9d965a0-5946-4a1f-bf4e-b408c8f09594)) + (segment (start 120.62 145.36) (end 120.62 147.06) (width 0.5) (layer "B.Cu") (net 5) (tstamp e54f8b3d-4690-4b66-b55c-69b091baa2a1)) + (segment (start 120.62 143.456396) (end 120.128604 142.965) (width 0.25) (layer "B.Cu") (net 5) (tstamp f58efcf4-fb09-44ee-9eb0-aa6a4372377e)) + (segment (start 105.115 142.515) (end 97.51 134.91) (width 0.25) (layer "B.Cu") (net 6) (tstamp 0d23748b-a7f8-470b-88fc-0db14ad86d14)) + (segment (start 121.32 147.34995) (end 120.56995 148.1) (width 0.5) (layer "B.Cu") (net 6) (tstamp 15eb60e7-656d-44b3-a7b1-b3596e0e23dd)) + (segment (start 120.56995 148.1) (end 102.41745 148.1) (width 0.5) (layer "B.Cu") (net 6) (tstamp 5dcee808-c63c-4217-a6e1-99d1d71d8288)) + (segment (start 123.16 145.36) (end 123.16 145.49) (width 0.5) (layer "B.Cu") (net 6) (tstamp 5efb7b98-a34a-49ec-8e74-75797de53ddc)) + (segment (start 121.32 147.33) (end 121.32 147.34995) (width 0.5) (layer "B.Cu") (net 6) (tstamp 642e4c05-1613-4a75-aa50-d67a4887502a)) + (segment (start 102.41745 148.1) (end 96.74 153.77745) (width 0.5) (layer "B.Cu") (net 6) (tstamp 73761ab2-d2f2-43fc-a09b-b73e5612dcd7)) + (segment (start 120.315 142.515) (end 105.115 142.515) (width 0.25) (layer "B.Cu") (net 6) (tstamp 91ac5c2c-e205-4128-930d-2fbc3f8419fc)) + (segment (start 123.16 145.36) (end 120.315 142.515) (width 0.25) (layer "B.Cu") (net 6) (tstamp aa5180ca-9535-40c7-903e-8a26cef8ee43)) + (segment (start 96.74 153.77745) (end 96.74 156.2875) (width 0.5) (layer "B.Cu") (net 6) (tstamp baed48a9-13f2-4db3-9d82-4e80302e270a)) + (segment (start 123.16 145.49) (end 121.32 147.33) (width 0.5) (layer "B.Cu") (net 6) (tstamp fb5f2331-1f8c-42fa-97e7-d0ee6aba68de)) + (segment (start 125.7 143.466396) (end 124.298604 142.065) (width 0.25) (layer "B.Cu") (net 7) (tstamp 09b00f92-437a-411c-ad21-3b0b56290698)) + (segment (start 124.298604 142.065) (end 107.765 142.065) (width 0.25) (layer "B.Cu") (net 7) (tstamp 2c9cc051-45ba-47fe-8573-1d1b3aa6bed6)) + (segment (start 103.74 156.26) (end 103.74 156.2875) (width 0.5) (layer "B.Cu") (net 7) (tstamp 52716889-d0ae-42db-bf23-e1159871bb5a)) + (segment (start 125.7 145.36) (end 125.7 146.98) (width 0.5) (layer "B.Cu") (net 7) (tstamp 654a97ca-0889-422c-ac28-63510e4b2279)) + (segment (start 107.765 142.065) (end 100.61 134.91) (width 0.25) (layer "B.Cu") (net 7) (tstamp 682e0cef-af5a-4492-9cea-0028048cd791)) + (segment (start 123.88 148.8) (end 111.2 148.8) (width 0.5) (layer "B.Cu") (net 7) (tstamp 6f7b32f5-461a-4b07-a11f-e4fe80c448eb)) + (segment (start 125.7 146.98) (end 123.88 148.8) (width 0.5) (layer "B.Cu") (net 7) (tstamp 9ac9815a-30b0-46e9-8438-3969cacecf39)) + (segment (start 125.7 145.36) (end 125.7 143.466396) (width 0.25) (layer "B.Cu") (net 7) (tstamp dfb13971-d5b3-4f68-85a9-4b2c79c7728b)) + (segment (start 111.2 148.8) (end 103.74 156.26) (width 0.5) (layer "B.Cu") (net 7) (tstamp f07b23a1-aaf7-4deb-98fb-9385b61c6333)) + (segment (start 128.23 145.36) (end 124.485 141.615) (width 0.25) (layer "B.Cu") (net 8) (tstamp 18360d09-024d-4411-aec5-42994bb0952e)) + (segment (start 111.48995 149.5) (end 107.24 153.74995) (width 0.5) (layer "B.Cu") (net 8) (tstamp 3423eb64-d1c0-49ac-bbcb-d3664aa69790)) + (segment (start 128.24 145.42995) (end 124.16995 149.5) (width 0.5) (layer "B.Cu") (net 8) (tstamp 4a3b48df-09f4-426d-a654-24ea036b7bcf)) + (segment (start 107.24 153.74995) (end 107.24 156.2875) (width 0.5) (layer "B.Cu") (net 8) (tstamp 586e9ccf-33e1-487a-93e2-173d30631969)) + (segment (start 128.24 145.36) (end 128.24 145.42995) (width 0.5) (layer "B.Cu") (net 8) (tstamp a5f2a97c-c566-4fd5-b786-545b51beb50c)) + (segment (start 124.16995 149.5) (end 111.48995 149.5) (width 0.5) (layer "B.Cu") (net 8) (tstamp c0246862-a75a-4388-b478-66931d9980c3)) + (segment (start 128.24 145.36) (end 128.23 145.36) (width 0.25) (layer "B.Cu") (net 8) (tstamp c659fa97-d3a0-4e4a-a6a9-f9c1622063d1)) + (segment (start 110.315 141.615) (end 103.647145 134.947145) (width 0.25) (layer "B.Cu") (net 8) (tstamp d060f833-27e2-4700-949f-a3a865de8f9e)) + (segment (start 124.485 141.615) (end 110.315 141.615) (width 0.25) (layer "B.Cu") (net 8) (tstamp ef54570b-ece1-4f40-8337-bce0294907b1)) + (segment (start 128.468604 141.165) (end 112.965 141.165) (width 0.25) (layer "B.Cu") (net 9) (tstamp 21ebfeee-98fe-4519-b5e9-9b3fa1d956dd)) + (segment (start 130.78 143.476396) (end 128.468604 141.165) (width 0.25) (layer "B.Cu") (net 9) (tstamp 289fe981-f1bc-4f46-8036-c5638c408fe2)) + (segment (start 112.965 141.165) (end 106.73143 134.93143) (width 0.25) (layer "B.Cu") (net 9) (tstamp 78fd52ca-5e3f-4b86-9bd4-c9740ffdfe74)) + (segment (start 130.78 146.99005) (end 127.57005 150.2) (width 0.5) (layer "B.Cu") (net 9) (tstamp a4f5b9e3-6080-404d-b8ce-3cdd83581176)) + (segment (start 127.57005 150.2) (end 120.36 150.2) (width 0.5) (layer "B.Cu") (net 9) (tstamp a6dfaa1a-c29a-40ea-9567-9b8e3f2343db)) + (segment (start 114.2725 156.2875) (end 114.24 156.2875) (width 0.5) (layer "B.Cu") (net 9) (tstamp d8934800-37c6-45ae-852a-7ccb93fa40f5)) + (segment (start 120.36 150.2) (end 114.2725 156.2875) (width 0.5) (layer "B.Cu") (net 9) (tstamp d8bf6b2c-951d-48c3-9d52-568743c85670)) + (segment (start 130.78 145.36) (end 130.78 146.99005) (width 0.5) (layer "B.Cu") (net 9) (tstamp dd750fe0-927f-47c1-a479-6fef9084f0b7)) + (segment (start 130.78 145.36) (end 130.78 143.476396) (width 0.25) (layer "B.Cu") (net 9) (tstamp fa81cbc8-c38d-4451-8b5b-75cf48a9f531)) + (segment (start 117.74 153.80995) (end 117.74 156.2875) (width 0.5) (layer "B.Cu") (net 10) (tstamp 15a9c82e-6076-40f2-b291-d70e4bb58a3f)) + (segment (start 127.86 150.9) (end 120.64995 150.9) (width 0.5) (layer "B.Cu") (net 10) (tstamp 16b695f8-e30f-4127-840c-57315285c44a)) + (segment (start 120.64995 150.9) (end 117.74 153.80995) (width 0.5) (layer "B.Cu") (net 10) (tstamp 1c87eff3-85e9-4306-9cd7-0ea086ff778f)) + (segment (start 115.615 140.715) (end 109.815715 134.915715) (width 0.25) (layer "B.Cu") (net 10) (tstamp 305b033f-a295-436c-8f86-5c2f08262649)) + (segment (start 128.655 140.715) (end 115.615 140.715) (width 0.25) (layer "B.Cu") (net 10) (tstamp 7c0eb6dd-1db5-4f9a-bb71-a7c322f9c035)) + (segment (start 133.32 145.36) (end 133.32 145.44) (width 0.5) (layer "B.Cu") (net 10) (tstamp 90f43678-3de1-4efe-9cbc-f44cd03dfbfd)) + (segment (start 133.168 145.228) (end 128.655 140.715) (width 0.25) (layer "B.Cu") (net 10) (tstamp 9f097782-5ed3-4221-a85d-58caf41677f9)) + (segment (start 133.32 145.44) (end 127.86 150.9) (width 0.5) (layer "B.Cu") (net 10) (tstamp e82b479d-bb08-4f12-a506-b102a7278452)) + (segment (start 135.86 146.88005) (end 131.14005 151.6) (width 0.5) (layer "B.Cu") (net 11) (tstamp 01b63fa1-68fc-43fe-92df-26731e8c6fda)) + (segment (start 135.86 145.36) (end 135.86 146.88005) (width 0.5) (layer "B.Cu") (net 11) (tstamp 01eb826d-b043-43ef-967a-cf46cc85d8a0)) (segment (start 132.668604 140.265) (end 118.265 140.265) (width 0.25) (layer "B.Cu") (net 11) (tstamp 0b085f85-4d5d-479e-bf88-dd308f810e43)) + (segment (start 129.4275 151.6) (end 124.74 156.2875) (width 0.5) (layer "B.Cu") (net 11) (tstamp 607520e2-0308-4b4e-827a-b884fd21c091)) (segment (start 135.86 143.456396) (end 132.668604 140.265) (width 0.25) (layer "B.Cu") (net 11) (tstamp 6970f42b-9e09-4b1f-8399-edb30182a229)) - (segment (start 135.7925 150.2075) (end 129.6 156.4) (width 0.5) (layer "B.Cu") (net 11) (tstamp 963f4c7f-6065-4fd1-b49b-5cc25e20af73)) + (segment (start 131.14005 151.6) (end 129.4275 151.6) (width 0.5) (layer "B.Cu") (net 11) (tstamp 9ceb514b-3368-4ed9-8532-04707e991cb7)) (segment (start 118.265 140.265) (end 112.91 134.91) (width 0.25) (layer "B.Cu") (net 11) (tstamp a657056e-1bc5-4e43-90b2-4b3f752b3d45)) (segment (start 135.86 145.36) (end 135.86 143.456396) (width 0.25) (layer "B.Cu") (net 11) (tstamp c643d535-9e0d-4543-a205-f022d39b94e0)) (segment (start 120.865 139.815) (end 115.98429 134.93429) (width 0.25) (layer "B.Cu") (net 12) (tstamp 0af9c8c7-42e8-4924-9c2b-b066ede02715)) + (segment (start 131.43 152.3) (end 129.71745 152.3) (width 0.5) (layer "B.Cu") (net 12) (tstamp 20cca472-2278-43db-8eb4-7683f0f092d9)) + (segment (start 138.37 145.36) (end 131.43 152.3) (width 0.5) (layer "B.Cu") (net 12) (tstamp 372920a9-cf30-40cc-8688-6b5eb68a400c)) (segment (start 132.855 139.815) (end 120.865 139.815) (width 0.25) (layer "B.Cu") (net 12) (tstamp 379ab88f-733e-40f0-a17c-017161535e76)) - (segment (start 133.1 153.88995) (end 133.1 156.4) (width 0.5) (layer "B.Cu") (net 12) (tstamp bd55fa10-081b-41b5-a90e-c200b4e53d0f)) + (segment (start 128.24 153.77745) (end 128.24 156.2875) (width 0.5) (layer "B.Cu") (net 12) (tstamp 4b6c8f6e-a30f-4219-ab7f-2fff4e7c44b7)) + (segment (start 138.4 145.36) (end 138.37 145.36) (width 0.5) (layer "B.Cu") (net 12) (tstamp 4dcb789e-12aa-4960-ad11-d3f4cc555ea8)) + (segment (start 129.71745 152.3) (end 128.24 153.77745) (width 0.5) (layer "B.Cu") (net 12) (tstamp 7da6ff18-40f2-4d6a-a0d0-0a1401ceb72d)) (segment (start 138.4 145.36) (end 132.855 139.815) (width 0.25) (layer "B.Cu") (net 12) (tstamp c04f6b0c-8a11-4302-a7b3-410fa0a0b5dc)) - (segment (start 138.3325 145.13) (end 138.3325 148.65745) (width 0.5) (layer "B.Cu") (net 12) (tstamp cbc69d28-274a-4bc7-aeb1-8fcf8831dca8)) - (segment (start 138.3325 148.65745) (end 133.1 153.88995) (width 0.5) (layer "B.Cu") (net 12) (tstamp e74cfcf2-d009-4d7e-a980-e443b20f9973)) - (segment (start 133.3 137.3) (end 122.95 137.3) (width 0.25) (layer "B.Cu") (net 13) (tstamp 37481c66-d694-44e3-b738-1bb90f03cd27)) - (segment (start 141.36 145.36) (end 133.3 137.3) (width 0.25) (layer "B.Cu") (net 13) (tstamp 79e2daea-6317-4f8a-b726-bebb2430c5af)) - (segment (start 120.15 134.5) (end 120.15 126.286396) (width 0.25) (layer "B.Cu") (net 13) (tstamp 9125603f-5a16-4c48-8212-e1330e18b440)) - (segment (start 120.15 126.286396) (end 118.613604 124.75) (width 0.25) (layer "B.Cu") (net 13) (tstamp aaebc502-32cc-4db5-b350-f22860ce98a6)) - (segment (start 143.4125 145.13) (end 143.4125 149.3375) (width 0.5) (layer "B.Cu") (net 13) (tstamp bf20f098-5665-4169-98c0-9e1eb5b9e40a)) - (segment (start 143.48 145.36) (end 141.36 145.36) (width 0.25) (layer "B.Cu") (net 13) (tstamp c262b580-f07b-41a3-81b6-a607577cfc1e)) - (segment (start 118.613604 124.75) (end 101.64 124.75) (width 0.25) (layer "B.Cu") (net 13) (tstamp d14861ee-64e0-49d1-9364-6a0cea21b5b8)) - (segment (start 101.64 124.75) (end 94.4 117.51) (width 0.25) (layer "B.Cu") (net 13) (tstamp e8d083cf-c211-4ecc-b072-0ca07535d17d)) - (segment (start 143.4125 149.3375) (end 140.1 152.65) (width 0.5) (layer "B.Cu") (net 13) (tstamp f220b59d-c142-4bdc-9731-06c6b54c382c)) - (segment (start 122.95 137.3) (end 120.15 134.5) (width 0.25) (layer "B.Cu") (net 13) (tstamp f5dbe649-ce5a-4c3b-817d-6d1a9ea19234)) - (segment (start 140.1 152.65) (end 140.1 156.4) (width 0.5) (layer "B.Cu") (net 13) (tstamp fec80b67-6363-4073-b217-e620c3e4a032)) - (segment (start 144.26 143.6) (end 140.236396 143.6) (width 0.25) (layer "B.Cu") (net 14) (tstamp 27e703a7-7b92-4be1-a02d-978e0af8f210)) - (segment (start 140.236396 143.6) (end 133.486396 136.85) (width 0.25) (layer "B.Cu") (net 14) (tstamp 3357f816-a3a5-41df-a25c-e867b349b663)) - (segment (start 143.6 150.15) (end 143.6 156.4) (width 0.5) (layer "B.Cu") (net 14) (tstamp 34eeed7e-cfa3-4227-8360-645e42db0791)) - (segment (start 145.9525 145.13) (end 145.9525 147.7975) (width 0.5) (layer "B.Cu") (net 14) (tstamp 41ce0287-ebf5-4f6c-86cc-c3580a16dce9)) - (segment (start 118.8 124.3) (end 104.307142 124.3) (width 0.25) (layer "B.Cu") (net 14) (tstamp 58f4c877-a218-4c42-abd6-093923d356ee)) - (segment (start 120.6 134.313604) (end 120.6 126.1) (width 0.25) (layer "B.Cu") (net 14) (tstamp 5c44a714-31eb-4f46-a4bf-b7544cae6283)) - (segment (start 104.307142 124.3) (end 97.517142 117.51) (width 0.25) (layer "B.Cu") (net 14) (tstamp 625a7868-f715-4ac0-b8db-3b853473f512)) - (segment (start 133.486396 136.85) (end 123.136396 136.85) (width 0.25) (layer "B.Cu") (net 14) (tstamp 726fe34e-7218-45ed-943b-ee7330cdcb57)) - (segment (start 146.02 145.36) (end 144.26 143.6) (width 0.25) (layer "B.Cu") (net 14) (tstamp 8454a70e-ad88-43ee-a6bd-26288c843c34)) - (segment (start 120.6 126.1) (end 118.8 124.3) (width 0.25) (layer "B.Cu") (net 14) (tstamp a341859d-669a-4609-8ca7-b5790a21f6c5)) - (segment (start 145.9525 147.7975) (end 143.6 150.15) (width 0.5) (layer "B.Cu") (net 14) (tstamp a4890e4b-3b17-464e-b47c-709b5fcb0894)) - (segment (start 123.136396 136.85) (end 120.6 134.313604) (width 0.25) (layer "B.Cu") (net 14) (tstamp f0329c27-410f-49e0-9551-ea2707c61ab3)) - (segment (start 148.56 147.86) (end 148.56 145.36) (width 0.5) (layer "B.Cu") (net 15) (tstamp 121eca36-5ae9-4faf-91f1-648ae5cf3078)) - (segment (start 150.6 156.4) (end 150.6 149.9) (width 0.5) (layer "B.Cu") (net 15) (tstamp 2e8b447b-806b-4d2a-b142-b4ef632502f3)) - (segment (start 150.6 149.9) (end 148.56 147.86) (width 0.5) (layer "B.Cu") (net 15) (tstamp 6e8de7a1-004d-4afb-b118-698cdd2aefd8)) + (segment (start 134.01 138.01) (end 122.51 138.01) (width 0.25) (layer "B.Cu") (net 13) (tstamp 1532243e-1c44-4056-a30e-776d0db96e69)) + (segment (start 143.48 145.36) (end 143.48 148.0475) (width 0.5) (layer "B.Cu") (net 13) (tstamp 1fec643d-5c30-4cce-90be-292788eeaa31)) + (segment (start 101.64 124.75) (end 94.4 117.51) (width 0.25) (layer "B.Cu") (net 13) (tstamp 51e1fa0b-b084-467c-bf9b-822cbe72c0b8)) + (segment (start 120.15 126.286396) (end 118.613604 124.75) (width 0.25) (layer "B.Cu") (net 13) (tstamp 66fc0f3f-e971-4ad6-9ff6-862cb6d744a1)) + (segment (start 118.613604 124.75) (end 101.64 124.75) (width 0.25) (layer "B.Cu") (net 13) (tstamp adb203cb-36fc-4687-af64-fb22caa56733)) + (segment (start 122.51 138.01) (end 120.15 135.65) (width 0.25) (layer "B.Cu") (net 13) (tstamp b6f6ea62-10de-4b78-b310-0a3e7bf5c005)) + (segment (start 143.48 148.0475) (end 135.24 156.2875) (width 0.5) (layer "B.Cu") (net 13) (tstamp c6c5c195-718c-4096-8e61-280c8e4e407f)) + (segment (start 141.36 145.36) (end 134.01 138.01) (width 0.25) (layer "B.Cu") (net 13) (tstamp c938b101-d03d-4bc1-bc85-def082c8843c)) + (segment (start 143.48 145.36) (end 141.36 145.36) (width 0.25) (layer "B.Cu") (net 13) (tstamp cd61e185-c1c6-49c5-afc7-6b989e1db9e4)) + (segment (start 120.15 135.65) (end 120.15 126.286396) (width 0.25) (layer "B.Cu") (net 13) (tstamp f1ffb06d-b235-4519-b92f-8ef190eb40b7)) + (segment (start 104.307142 124.3) (end 97.517142 117.51) (width 0.25) (layer "B.Cu") (net 14) (tstamp 02a4f6e1-409b-495e-a146-e2b5d603c14c)) + (segment (start 138.74 153.77745) (end 138.74 156.2875) (width 0.5) (layer "B.Cu") (net 14) (tstamp 10f22121-c670-42f4-833f-021e048bb453)) + (segment (start 134.196396 137.56) (end 122.696396 137.56) (width 0.25) (layer "B.Cu") (net 14) (tstamp 29fc4d65-6fdc-4a33-af67-39dc2b4396f2)) + (segment (start 146.02 145.36) (end 146.02 146.49745) (width 0.5) (layer "B.Cu") (net 14) (tstamp 3946ad67-5c6a-4c5f-a603-8f84a19b865f)) + (segment (start 118.8 124.3) (end 104.307142 124.3) (width 0.25) (layer "B.Cu") (net 14) (tstamp 500d1371-e34a-49f5-baf1-036aac60a985)) + (segment (start 140.536396 143.9) (end 134.196396 137.56) (width 0.25) (layer "B.Cu") (net 14) (tstamp 8777644d-8689-4404-a2d8-1f3efbefbbd5)) + (segment (start 120.6 135.463604) (end 120.6 126.1) (width 0.25) (layer "B.Cu") (net 14) (tstamp 92c688c1-e753-4004-9f85-e25cedd303f9)) + (segment (start 144.56 143.9) (end 140.536396 143.9) (width 0.25) (layer "B.Cu") (net 14) (tstamp a75aac95-8bdb-4c73-88de-78ba0648872a)) + (segment (start 146.02 145.36) (end 144.56 143.9) (width 0.25) (layer "B.Cu") (net 14) (tstamp b6892a78-371e-495c-8af1-88bc99a6e3a7)) + (segment (start 120.6 126.1) (end 118.8 124.3) (width 0.25) (layer "B.Cu") (net 14) (tstamp cb89cd71-38ce-45d6-a8d3-bf556ceb86fd)) + (segment (start 122.696396 137.56) (end 120.6 135.463604) (width 0.25) (layer "B.Cu") (net 14) (tstamp d6660c06-7676-4406-b71b-d2e052cd9682)) + (segment (start 146.02 146.49745) (end 138.74 153.77745) (width 0.5) (layer "B.Cu") (net 14) (tstamp e9242a83-dc7a-488f-b9e4-ab2014aff0a3)) + (segment (start 148.56 145.36) (end 148.56 147.82) (width 0.5) (layer "B.Cu") (net 15) (tstamp 34d30221-4ce4-43f9-a760-085878a542f2)) + (segment (start 145.74 150.64) (end 145.74 156.2875) (width 0.5) (layer "B.Cu") (net 15) (tstamp a7bc8f88-19ec-41f7-8218-eb216e7e8396)) (segment (start 148.56 135.84198) (end 136.56802 123.85) (width 0.25) (layer "B.Cu") (net 15) (tstamp ac2e62f8-7112-4cca-ae62-82b0db661146)) (segment (start 136.56802 123.85) (end 106.974284 123.85) (width 0.25) (layer "B.Cu") (net 15) (tstamp b85699bb-77fc-426a-a6df-1ed146e9253a)) (segment (start 106.974284 123.85) (end 100.634284 117.51) (width 0.25) (layer "B.Cu") (net 15) (tstamp bc18d696-511e-4fdf-9fd3-4305b9e72221)) (segment (start 148.56 145.36) (end 148.56 135.84198) (width 0.25) (layer "B.Cu") (net 15) (tstamp e071db8b-b7d5-488f-a635-cb0954948bb7)) + (segment (start 148.56 147.82) (end 145.74 150.64) (width 0.5) (layer "B.Cu") (net 15) (tstamp e7c16292-98f0-4122-b156-21bf22922189)) (segment (start 109.641426 123.4) (end 103.751426 117.51) (width 0.25) (layer "B.Cu") (net 16) (tstamp 039d6982-4bee-4ce7-87ef-31fa22912ce2)) - (segment (start 151.1 149.4) (end 151.1 145.36) (width 0.5) (layer "B.Cu") (net 16) (tstamp 45f1db29-afde-4dcc-8a79-dc4a1652feaf)) + (segment (start 149.26 151.74) (end 149.26 153.757449) (width 0.5) (layer "B.Cu") (net 16) (tstamp 28b3ecbc-4e25-41f4-b748-285c33c020fd)) (segment (start 151.1 145.36) (end 151.1 137.745584) (width 0.25) (layer "B.Cu") (net 16) (tstamp 8fc7fa2a-3724-44ed-b426-c2d30c68ac67)) - (segment (start 154.1 152.4) (end 151.1 149.4) (width 0.5) (layer "B.Cu") (net 16) (tstamp 914371ac-6a3d-474e-8948-bd684e810189)) + (segment (start 149.26 153.757449) (end 149.24 153.777449) (width 0.5) (layer "B.Cu") (net 16) (tstamp a871988a-624a-45e1-8e57-aa7e07099c09)) (segment (start 151.1 137.745584) (end 136.754416 123.4) (width 0.25) (layer "B.Cu") (net 16) (tstamp c2170af5-3eef-42fa-839a-99710e237c54)) - (segment (start 154.1 156.4) (end 154.1 152.4) (width 0.5) (layer "B.Cu") (net 16) (tstamp f1c90c15-c382-414c-8168-082ab6c0668f)) + (segment (start 149.24 153.777449) (end 149.24 156.2875) (width 0.5) (layer "B.Cu") (net 16) (tstamp c7a4a11e-c1dc-477f-9b03-a4f92a361a10)) + (segment (start 151.1 149.9) (end 149.26 151.74) (width 0.5) (layer "B.Cu") (net 16) (tstamp f0c8dceb-7e1f-4f02-866a-1a1ae19ebfa1)) + (segment (start 151.1 145.36) (end 151.1 149.9) (width 0.5) (layer "B.Cu") (net 16) (tstamp f364b5f9-b8bd-44d6-8bca-ce3390a1a137)) (segment (start 136.754416 123.4) (end 109.641426 123.4) (width 0.25) (layer "B.Cu") (net 16) (tstamp fa7aaa64-fda8-41bf-b1e5-7081f00af8df)) - (segment (start 161.1 156.4) (end 161.1 155.1) (width 0.5) (layer "B.Cu") (net 17) (tstamp 3725ddc8-0aa7-4a65-8b46-a11c06a6c1f7)) (segment (start 112.308568 122.95) (end 136.940812 122.95) (width 0.25) (layer "B.Cu") (net 17) (tstamp 3c91116c-bfa8-4831-ad5b-a7645f0f63c9)) + (segment (start 153.64 149.89) (end 156.24 152.49) (width 0.5) (layer "B.Cu") (net 17) (tstamp 4497a61c-bf6a-42e8-a8ec-70e1a44d6a3e)) (segment (start 106.868568 117.51) (end 112.308568 122.95) (width 0.25) (layer "B.Cu") (net 17) (tstamp 453975d5-363c-4e2e-a97a-b32625850884)) - (segment (start 153.64 147.64) (end 153.64 145.36) (width 0.5) (layer "B.Cu") (net 17) (tstamp 5ecdd330-5624-49ea-9e34-61e34cfdb0ad)) (segment (start 136.940812 122.95) (end 153.64 139.649188) (width 0.25) (layer "B.Cu") (net 17) (tstamp 7e51d356-7c0a-4491-ac0a-7db2203e660f)) + (segment (start 156.24 152.49) (end 156.24 156.2875) (width 0.5) (layer "B.Cu") (net 17) (tstamp 96f88641-b2a8-49d0-8e1c-6a177ea6ae91)) (segment (start 153.64 139.649188) (end 153.64 145.36) (width 0.25) (layer "B.Cu") (net 17) (tstamp 9e8525dc-a287-4c97-9afd-32026f2244df)) - (segment (start 161.1 155.1) (end 153.64 147.64) (width 0.5) (layer "B.Cu") (net 17) (tstamp e6342ad0-0749-4df2-b1d9-b488edced5fd)) - (segment (start 164.6 156.4) (end 164.6 153.78) (width 0.5) (layer "B.Cu") (net 18) (tstamp 07ea92ec-8ac2-4629-b4cd-72acd1c77acf)) - (segment (start 164.6 153.78) (end 156.18 145.36) (width 0.5) (layer "B.Cu") (net 18) (tstamp 108b61d6-7912-4b74-bd7c-5df2fa0a7ad7)) + (segment (start 153.64 145.36) (end 153.64 149.89) (width 0.5) (layer "B.Cu") (net 17) (tstamp dde3bca5-3554-473b-b041-e740782141e0)) (segment (start 109.98571 117.51) (end 114.97571 122.5) (width 0.25) (layer "B.Cu") (net 18) (tstamp 2b812b27-8e93-4424-92fb-c52be5be085f)) (segment (start 156.18 141.552792) (end 156.18 145.36) (width 0.25) (layer "B.Cu") (net 18) (tstamp 2fa52011-b761-4f06-be36-887ec974c55b)) (segment (start 137.127208 122.5) (end 156.18 141.552792) (width 0.25) (layer "B.Cu") (net 18) (tstamp 67205f5f-f690-4941-a336-a386433c9958)) + (segment (start 159.74 151.43) (end 159.74 156.2875) (width 0.5) (layer "B.Cu") (net 18) (tstamp 6ad37fd4-ab9d-4ff4-9df7-affa8b21b3b8)) (segment (start 114.97571 122.5) (end 137.127208 122.5) (width 0.25) (layer "B.Cu") (net 18) (tstamp 738eddd6-7055-4c59-a7f4-054b0132c4cc)) - (segment (start 171.6 154.75) (end 170.34005 153.49005) (width 0.5) (layer "B.Cu") (net 19) (tstamp 04406670-d02c-47f0-954e-0f248506781c)) + (segment (start 156.18 147.87) (end 159.74 151.43) (width 0.5) (layer "B.Cu") (net 18) (tstamp 86817c0a-9594-4e05-a073-fc66443d2f2c)) + (segment (start 156.18 145.36) (end 156.18 147.87) (width 0.5) (layer "B.Cu") (net 18) (tstamp 8b454e00-1352-44a7-8ad7-41671b1680d8)) + (segment (start 166.74 153.77995) (end 166.74 156.2875) (width 0.5) (layer "B.Cu") (net 19) (tstamp 185728b4-cbfd-43de-a96e-0825a103229f)) (segment (start 117.642852 122.05) (end 137.313604 122.05) (width 0.25) (layer "B.Cu") (net 19) (tstamp 26efb041-3e55-4f04-a8c7-f0980ce92a7f)) (segment (start 158.72 143.456396) (end 158.72 145.36) (width 0.25) (layer "B.Cu") (net 19) (tstamp 43692355-1580-4ec1-9123-1cef94f4decf)) - (segment (start 165.3 153.49005) (end 158.72 146.91005) (width 0.5) (layer "B.Cu") (net 19) (tstamp 44a50d21-0072-4954-a1d0-a957079cc9df)) (segment (start 113.102852 117.51) (end 117.642852 122.05) (width 0.25) (layer "B.Cu") (net 19) (tstamp 579672db-ee00-40a4-bb8b-8e86854ddfdf)) - (segment (start 158.72 146.91005) (end 158.72 145.36) (width 0.5) (layer "B.Cu") (net 19) (tstamp 85370445-9baf-4452-b40e-22a79a98ae60)) - (segment (start 170.34005 153.49005) (end 165.3 153.49005) (width 0.5) (layer "B.Cu") (net 19) (tstamp 940f245b-aba3-413d-a77a-664c31eb719d)) - (segment (start 171.6 156.4) (end 171.6 154.75) (width 0.5) (layer "B.Cu") (net 19) (tstamp aac48d37-33a7-42e6-a6f7-4d4e69a575b2)) (segment (start 137.313604 122.05) (end 158.72 143.456396) (width 0.25) (layer "B.Cu") (net 19) (tstamp f79bd747-b071-4e31-bb53-3023008bbad2)) + (segment (start 158.72 145.36) (end 158.72 145.75995) (width 0.5) (layer "B.Cu") (net 19) (tstamp f8944fea-7db2-4267-854a-0d87238c918f)) + (segment (start 158.72 145.75995) (end 166.74 153.77995) (width 0.5) (layer "B.Cu") (net 19) (tstamp fc7b756b-b756-4c27-bf4d-5fae0e3189af)) + (segment (start 161.26 145.36) (end 161.26 147.31) (width 0.5) (layer "B.Cu") (net 20) (tstamp 08602ea0-52f9-45b0-b7a0-0716b36f80de)) (segment (start 116.22 117.51) (end 120.31 121.6) (width 0.25) (layer "B.Cu") (net 20) (tstamp 1fd25f1c-ae46-4226-b98e-77304c13156d)) - (segment (start 174.586928 153.786928) (end 173.59005 152.79005) (width 0.5) (layer "B.Cu") (net 20) (tstamp 4e2e7bd0-83b4-471b-97e0-272aec970b2b)) + (segment (start 170.2375 156.2875) (end 170.24 156.2875) (width 0.5) (layer "B.Cu") (net 20) (tstamp 2b6b8b7a-9285-4506-ae06-2656dc2af5c5)) (segment (start 137.5 121.6) (end 161.26 145.36) (width 0.25) (layer "B.Cu") (net 20) (tstamp 57001030-a9fd-431a-907f-81cf24463932)) (segment (start 120.31 121.6) (end 137.5 121.6) (width 0.25) (layer "B.Cu") (net 20) (tstamp 67c75316-9597-4553-be82-6a77309a2c09)) - (segment (start 175.1 156.4) (end 174.586928 156.4) (width 0.25) (layer "B.Cu") (net 20) (tstamp 75fac557-fc69-4af4-a298-361dd098a1a6)) - (segment (start 165.58995 152.79005) (end 161.26 148.4601) (width 0.5) (layer "B.Cu") (net 20) (tstamp 78aefd90-ebd4-4313-9f9c-b3c172b16533)) - (segment (start 173.59005 152.79005) (end 165.58995 152.79005) (width 0.5) (layer "B.Cu") (net 20) (tstamp 9651baf1-c186-4aa1-b332-a97aa555642e)) - (segment (start 161.26 148.4601) (end 161.26 145.36) (width 0.5) (layer "B.Cu") (net 20) (tstamp 9aaf0213-283f-482e-964f-ceba8fef18b7)) - (segment (start 174.586928 156.4) (end 174.586928 153.786928) (width 0.5) (layer "B.Cu") (net 20) (tstamp d79b99c8-9fc7-499f-a758-da0a9765c0d6)) + (segment (start 161.26 147.31) (end 170.2375 156.2875) (width 0.5) (layer "B.Cu") (net 20) (tstamp a587b002-435b-48ee-8266-c25c81dd3dd6)) (segment (start 119.76 141.14) (end 115.54 145.36) (width 0.75) (layer "F.Cu") (net 21) (tstamp c25a028d-f588-4626-aa47-f3f448ba14c2)) (segment (start 142.17 141.14) (end 119.76 141.14) (width 0.75) (layer "F.Cu") (net 21) (tstamp ebb3e8d9-469c-40c4-8596-54ddb74a3be6)) (segment (start 142.1373 101.1073) (end 142.17 101.14) (width 0.75) (layer "F.Cu") (net 22) (tstamp 8e2518bb-7e11-43c8-b69d-f53c5250eef1)) @@ -6377,89 +6354,83 @@ (segment (start 93.696 98.506) (end 94.36 99.17) (width 0.75) (layer "B.Cu") (net 22) (tstamp be040e54-1346-4c8a-b7d6-24fb3380b70c)) (segment (start 93.696 97.1) (end 93.696 98.506) (width 0.75) (layer "B.Cu") (net 22) (tstamp c7739e00-ccb2-4ca8-b4c9-5431f86a883c)) (via (at 145.1 125) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp 0140e8ca-bf09-40e3-a55b-0be0dca91086)) - (via (at 140 70) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp 02fd8e08-89e7-46be-9519-7005e98c7089)) + (via (at 123.45 143.1) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp 03b1a1c7-b5db-4336-853f-f4bfe8d2b484)) (via (at 96.52 112.3) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp 051b6f4e-116b-47a7-97a6-12a521059068)) - (via (at 154.95 142.3) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp 135388ac-87a2-4691-9252-13801e569f9a)) + (via (at 157.26 143.47) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp 0f64071c-5515-4a7f-a760-49b8d75484f8)) + (via (at 154.95 143.04) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp 135388ac-87a2-4691-9252-13801e569f9a)) (via (at 139 104) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp 1495fa23-222b-4706-a2e7-8f131952a4f7)) - (via (at 144.7 147.3) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp 18a8212a-2ed7-455c-ad66-559f1ba07f38)) - (via (at 173.8 84.6) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp 1abe2371-092b-47cd-9493-0a14748c4299)) + (via (at 133.41 147.27) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp 17be43f4-ee5c-4420-a11f-6b259819d67c)) + (via (at 174.21 83.4) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp 1abe2371-092b-47cd-9493-0a14748c4299)) + (via (at 119.22 105.15) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp 1cadfb2d-5418-41ef-aec3-40994298d69a)) + (via (at 155 149) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp 1da31af6-f86b-4c10-b0a6-3dbfe5a48d44)) (via (at 155 135) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp 2001ca46-a427-4020-89d8-565bef3adcc7)) (via (at 117.5 67.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp 206a2257-bb49-4afb-9768-faf9cd554c59)) (via (at 117.5 82.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp 211ab47a-c553-486e-9f09-0a9706af89c6)) - (via (at 157.55 149) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp 2b31283f-1c2c-4c29-8eb3-048ce7a72572)) - (via (at 173.8 98.6) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp 2f60b1bc-f24f-45b0-b3df-84fbe44f7e53)) - (via (at 131.15 143.3) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp 32d4598f-d8d0-4e22-9fb9-ab8fd37f6d73)) - (via (at 141.8 153.6) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp 365b2112-076a-48e1-92b1-09dacfeb5280)) - (via (at 162.6 75.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp 3ba9b075-e747-46c9-939f-3b978699e697)) - (via (at 125.85 143.4) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp 3f961a0b-24d5-4290-8174-6ac6ca6189a6)) + (via (at 128.28 143.1) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp 239cdf1f-b4c1-4465-b36b-6759e6822e8f)) + (via (at 174.21 98.59) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp 2f60b1bc-f24f-45b0-b3df-84fbe44f7e53)) + (via (at 163.7 75.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp 3ba9b075-e747-46c9-939f-3b978699e697)) (via (at 149.85 100.4) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp 407fd6ac-2470-45d3-b3a9-4d3a2ffe6392)) - (via (at 91.2 153.6) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp 492bc666-8d08-457b-9006-0ae36ba89d8d)) - (via (at 158.9 67.6) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp 4bcb07df-d47c-46ce-bf87-28b95c1b64fc)) + (via (at 160 67.6) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp 4bcb07df-d47c-46ce-bf87-28b95c1b64fc)) (via (at 145 140) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp 4c971330-40d4-4ce1-b85e-724ecc66e805)) (via (at 152.4 126.3) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp 4e2591e3-e885-4386-a4be-892e163bc9a1)) (via (at 106.68 112.3) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp 4e2a78cb-175b-486a-80ea-b8cf093c4ce3)) (via (at 155 115) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp 4f0e8840-a641-401c-a05f-2d8bf6ea6fd9)) - (via (at 172.75 154.05) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp 4f9244f3-1551-4f53-821a-7cebc37a7112)) - (via (at 154.6 75.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp 5867a304-1742-445e-a573-b89022e99239)) + (via (at 155.98 75.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp 5867a304-1742-445e-a573-b89022e99239)) (via (at 140 84.8) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp 5912b04c-4d50-4a90-a0cb-71c02c7df0d3)) (via (at 102.5 90) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp 5c0cb6cd-44f6-4230-8dbf-d81436adf618)) (via (at 130 116) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp 618770c0-595b-4499-9f02-61277089c3c8)) (via (at 122.5 90) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp 6447473b-4cc7-4055-af9f-35bb7cfc051a)) - (via (at 150 75.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp 65535e0b-01db-465a-9c53-bb84b96ad80a)) - (via (at 145.9 91) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp 66c35f7c-3ee9-4f89-924f-a74086f78424)) - (via (at 84.8 98.85) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp 6ab81229-f470-47b7-a99a-7c19c13dbf49)) - (via (at 162.6 67.6) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp 6fbf61aa-228b-4a5c-b390-7886233f7d4a)) - (via (at 158.9 83.3) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp 7520a7a8-1705-4f13-9f30-022720ae8313)) + (via (at 151.38 75.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp 65535e0b-01db-465a-9c53-bb84b96ad80a)) + (via (at 147.28 91) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp 66c35f7c-3ee9-4f89-924f-a74086f78424)) + (via (at 85.07 98.55) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp 6ab81229-f470-47b7-a99a-7c19c13dbf49)) + (via (at 163.7 67.6) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp 6fbf61aa-228b-4a5c-b390-7886233f7d4a)) + (via (at 160 83.3) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp 7520a7a8-1705-4f13-9f30-022720ae8313)) (via (at 122.5 72.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp 7761e50b-0830-4a11-949e-3849c5da1482)) (via (at 168 92.8) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp 79f3dee0-60d7-4973-b410-089f248ca11e)) - (via (at 118 152.3) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp 7d08077c-9a44-4d3a-b7cb-af1d9ad78f32)) - (via (at 130 120) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp 7dbc7ddb-aafc-44b7-a6b6-dad89293bded)) - (via (at 173.8 126.3) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp 7f27ad09-4be4-4fc8-be34-6f3d885b33dd)) - (via (at 145.9 75.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp 82384699-e3dd-463a-91f1-4aa31304a969)) + (via (at 129.99 119.2) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp 7dbc7ddb-aafc-44b7-a6b6-dad89293bded)) + (via (at 174.21 126.29) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp 7f27ad09-4be4-4fc8-be34-6f3d885b33dd)) + (via (at 147.28 75.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp 82384699-e3dd-463a-91f1-4aa31304a969)) + (via (at 99.22 105.15) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp 8307ecf1-b17b-4121-ab6e-11bc457ed62d)) (via (at 137.5 132.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp 8439b3bc-f8d8-4b29-b586-c11b14f0f543)) (via (at 160 120) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp 8476669a-1c2f-4603-b862-70b8dff5550b)) - (via (at 134.4 143.35) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp 850ac606-703c-4967-b360-1042ffb3ef18)) (via (at 127.5 67.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp 85308e93-de64-43d8-bbcd-e887b0ad2ca4)) - (via (at 126.9 147.1) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp 86045f83-09fa-423c-8a60-d87c9fd64478)) - (via (at 173.8 70.4) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp 88af28af-e107-4ea2-ab70-a750a7add43d)) - (via (at 173.8 77.2) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp 8d51c0bc-b2bf-4010-9318-f58152a38f4b)) + (via (at 174.21 69.55) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp 88af28af-e107-4ea2-ab70-a750a7add43d)) + (via (at 174.21 76.35) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp 8d51c0bc-b2bf-4010-9318-f58152a38f4b)) (via (at 127.5 82.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp 905f2108-31a8-49da-891c-19397afcdfc4)) - (via (at 124.3 147.1) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp 9762c4c3-e48e-41a2-9bec-073efea012b6)) - (via (at 137.1 147.3) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp 9c144242-ea23-4f7f-a79a-7bc309359993)) - (via (at 150 67.6) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp 9cb330f7-6496-4b43-9896-30cd57e1dc90)) + (via (at 151.38 67.6) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp 9cb330f7-6496-4b43-9896-30cd57e1dc90)) (via (at 170.7 129.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp 9ebcbd38-b642-4c4e-aa2f-df80d4a94b5b)) - (via (at 149.8 142.4) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp a3bb43ec-2177-4dbb-833b-5e1467dbcc4c)) + (via (at 149.8 143.04) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp a3bb43ec-2177-4dbb-833b-5e1467dbcc4c)) (via (at 168.6 65.2) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp a3bc326a-e8cc-45ba-9402-bb1941707c55)) - (via (at 121.05 143.45) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp a439454f-670d-4333-9df2-22c169fbce0c)) (via (at 139.062299 120) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp a550eb46-e915-4672-bd94-8f22efecb270)) - (via (at 128.2 129.2) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp a619b97d-bd65-4c60-8902-f39da2f5c316)) - (via (at 173.8 107.6) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp ad2c3cb0-d9b6-4c4e-a98a-bcfe18822bcd)) - (via (at 136.8 153.6) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp afefd906-73aa-4c65-808d-31f185132b0e)) - (via (at 150 83.3) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp b32f6b45-7758-4057-9b21-2a9ba4345780)) - (via (at 173.8 120.25) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp b4d4750c-1d17-46fb-a327-6e2da9b29b7e)) + (via (at 128.21 132.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp a619b97d-bd65-4c60-8902-f39da2f5c316)) + (via (at 123.45 147.28) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp a93666a6-fabb-4a4c-9685-490a9aea6833)) + (via (at 174.21 105.85) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp ad2c3cb0-d9b6-4c4e-a98a-bcfe18822bcd)) + (via (at 151.38 83.3) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp b32f6b45-7758-4057-9b21-2a9ba4345780)) + (via (at 174.21 119.8) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp b4d4750c-1d17-46fb-a327-6e2da9b29b7e)) (via (at 134 85) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp b66f8238-efca-49c9-972d-4d4f3feb0b02)) - (via (at 145.9 83.3) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp b8ad6691-8b84-412e-9877-5d95c86f3a91)) + (via (at 147.28 83.3) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp b8ad6691-8b84-412e-9877-5d95c86f3a91)) + (via (at 149.81 148.99) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp bdc7c418-f0d6-44ea-b9ac-e1d5e5fa6040)) (via (at 139 109) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp be5d85e5-af71-4d22-8dbb-9170a6f4257a)) - (via (at 162.6 83.3) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp c443acb2-67e1-4e9e-a8e7-c8a66fe5a7f9)) - (via (at 145.9 67.6) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp c7f22235-d0a3-46e4-8a80-3514ce9acecb)) - (via (at 152.35 142.35) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp ca97c577-cac1-4fe1-a709-8ef35411e0f4)) - (via (at 173.8 138.8) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp cab6f63f-bd9d-4f0e-8878-1c358d797137)) + (via (at 133.41 143.09) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp c3c4fae8-68cb-4299-afa1-37a2cd69bcc9)) + (via (at 163.7 83.3) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp c443acb2-67e1-4e9e-a8e7-c8a66fe5a7f9)) + (via (at 147.28 67.6) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp c7f22235-d0a3-46e4-8a80-3514ce9acecb)) + (via (at 152.35 143.04) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp ca97c577-cac1-4fe1-a709-8ef35411e0f4)) + (via (at 174.21 139.61) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp cab6f63f-bd9d-4f0e-8878-1c358d797137)) (via (at 107.5 67.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp cd104195-b149-470f-9ffd-a1931516fb9f)) - (via (at 131.9 147.2) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp cdc3b561-94a7-4f15-8def-50ac93c646cc)) - (via (at 128 134.85) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp ce10afb0-32e4-471b-aca3-a696d0a3eac4)) + (via (at 124.14 133.93) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp ce569c44-1b1d-47c4-b2a3-f4665b1d5937)) + (via (at 138.99 148.83) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp d242227c-ced4-40c9-a175-005e33397623)) (via (at 112.5 90) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp d7070683-9da3-4ce7-afdd-78f7a10f5489)) - (via (at 158.9 75.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp dd5982ea-db59-41b2-9301-2f558a496947)) - (via (at 152.35 153.6) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp e002fa6f-32b4-4ea8-af87-9c4ca176a7d0)) + (via (at 160 75.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp dd5982ea-db59-41b2-9301-2f558a496947)) (via (at 107.5 82.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp e3a2b971-e07b-485d-b34c-976315e41b97)) - (via (at 168 86.2) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp e6638636-8746-45b5-87fb-7c087f75a9f1)) - (via (at 173.8 114) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp ee2db9a2-9805-4b4e-b254-9d6e7ed168d2)) + (via (at 109.22 105.15) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp e525c0cc-13b1-4cad-9d68-316b88d144cf)) + (via (at 167.72 86.2) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp e6638636-8746-45b5-87fb-7c087f75a9f1)) + (via (at 174.21 112.87) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp ee2db9a2-9805-4b4e-b254-9d6e7ed168d2)) (via (at 154.8 94.9) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp f0f69ed6-93e6-4ae2-8061-7570037c6752)) - (via (at 133.5 149.9) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp f679933b-ffbe-4dea-beb2-0634512c6828)) - (via (at 162.6 92.8) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp fad3a55d-381d-455d-9599-2713a5d6e38a)) - (via (at 107.5 152.3) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp fbb31bc5-173c-4029-ab12-20efc5f2a82e)) - (via (at 122.5 126.1) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp fbc844b9-b233-4b28-a819-298d64545fee)) + (via (at 128.28 147.28) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp f1f49b5e-b29f-4365-8502-27b497d81f11)) + (via (at 163.98 92.8) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp fad3a55d-381d-455d-9599-2713a5d6e38a)) + (via (at 123.27 125.23) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp fbc844b9-b233-4b28-a819-298d64545fee)) (via (at 112.5 72.5) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (free) (net 23) (tstamp fccdabdc-25f2-421d-a301-1bcc17285eec)) - (segment (start 149.66 65.02) (end 149.66 64.096) (width 0.25) (layer "B.Cu") (net 23) (tstamp 530d6525-2f61-4f22-a0ae-ed9b71c86709)) + (segment (start 151.04 65.02) (end 151.04 64.096) (width 0.25) (layer "B.Cu") (net 23) (tstamp 530d6525-2f61-4f22-a0ae-ed9b71c86709)) (segment (start 168 101.425) (end 176.425 93) (width 0.25) (layer "F.Cu") (net 24) (tstamp 178c4dc3-2000-4dde-9c78-092c530ecfe2)) (segment (start 164.7825 113.6) (end 167.4 113.6) (width 0.25) (layer "F.Cu") (net 24) (tstamp 33ec9f5f-6d80-4e1d-8e74-a1651068f874)) (segment (start 167.4 113.6) (end 168 113) (width 0.25) (layer "F.Cu") (net 24) (tstamp cd96f9f0-4675-4a30-b0f3-b09aec90d2bb)) @@ -6570,85 +6541,85 @@ (segment (start 173.586396 87.9) (end 172.75 88.736396) (width 0.25) (layer "B.Cu") (net 47) (tstamp 69ca0546-1b08-4c78-81b5-545e7e30f16d)) (segment (start 172.75 88.736396) (end 172.75 107.5) (width 0.25) (layer "B.Cu") (net 47) (tstamp 72a82df4-ad27-4066-a0d5-7de35e15a425)) (segment (start 176.425 87.9) (end 173.586396 87.9) (width 0.25) (layer "B.Cu") (net 47) (tstamp 7e71805f-1e1e-4cb8-9c87-716a66046740)) - (segment (start 152.2 72.87) (end 152.2 65.02) (width 0.5) (layer "B.Cu") (net 48) (tstamp 179b8579-eb93-4441-abe7-79385dc2868c)) - (segment (start 106.1 143.54) (end 98.59 143.54) (width 0.5) (layer "B.Cu") (net 48) (tstamp 18244624-9170-4f60-ab8b-9ae40b1d4b19)) - (segment (start 152.2 63.334) (end 152.2 65.02) (width 0.5) (layer "B.Cu") (net 48) (tstamp 1a45b7b7-174f-4917-a9fc-64daed2429ed)) - (segment (start 166.2725 96.87) (end 166.2725 93.8725) (width 0.5) (layer "B.Cu") (net 48) (tstamp 1c46d358-cbe5-4d55-82e7-4d4d0cf5c3dd)) - (segment (start 165.21 88.57) (end 165.21 80.72) (width 0.5) (layer "B.Cu") (net 48) (tstamp 2626a9cb-44a1-4e98-b02c-cff659fe2606)) - (segment (start 85.51 133.8055) (end 88.77 133.8055) (width 0.5) (layer "B.Cu") (net 48) (tstamp 2d6009c8-12a1-4baa-a619-2abb41969b04)) - (segment (start 152.2 88.57) (end 152.2 80.72) (width 0.5) (layer "B.Cu") (net 48) (tstamp 3bb3c820-195e-4bf2-8891-8c27da6b5ba1)) - (segment (start 152.2 63.352) (end 152.2 65.02) (width 0.5) (layer "B.Cu") (net 48) (tstamp 494c83aa-f408-4339-8be6-87ed3b8c71ba)) - (segment (start 165.21 80.72) (end 165.21 72.87) (width 0.5) (layer "B.Cu") (net 48) (tstamp 54ce5497-8590-4443-9236-41794de0eaa8)) - (segment (start 141.1 62.2) (end 134.5355 68.7645) (width 0.5) (layer "B.Cu") (net 48) (tstamp 5a630faf-f053-4b8a-ba79-b871626fd7ee)) - (segment (start 165.08 63.133) (end 164.147 62.2) (width 0.5) (layer "B.Cu") (net 48) (tstamp 69139050-c881-4d10-8975-c2d2d3cfede1)) - (segment (start 165.08 65.02) (end 165.08 63.133) (width 0.5) (layer "B.Cu") (net 48) (tstamp 762588ce-b32c-4bbd-97f9-d7f3e6107ea5)) - (segment (start 165.21 92.79) (end 165.21 88.57) (width 0.5) (layer "B.Cu") (net 48) (tstamp 81c9a51f-24f4-4eae-b041-158c060b4ee1)) - (segment (start 165.21 72.87) (end 165.21 65.02) (width 0.5) (layer "B.Cu") (net 48) (tstamp 97dc8dad-76a8-4c18-a08c-4db528402405)) - (segment (start 152.2 80.72) (end 152.2 72.87) (width 0.5) (layer "B.Cu") (net 48) (tstamp 99677944-cbb0-4c07-b3be-bd45c9d39373)) - (segment (start 134.5355 68.7645) (end 134.5355 71.87) (width 0.5) (layer "B.Cu") (net 48) (tstamp 9b094125-5df7-423f-b356-4ef957e247b2)) - (segment (start 86.9855 118.8055) (end 85.51 118.8055) (width 0.5) (layer "B.Cu") (net 48) (tstamp a45b590c-8517-42fc-8903-9184bacea1f7)) - (segment (start 98.59 143.54) (end 88.77 133.72) (width 0.5) (layer "B.Cu") (net 48) (tstamp bd7fa7cc-cd8c-45e6-a586-dfb503f3500a)) - (segment (start 153.352 62.2) (end 152.2 63.352) (width 0.5) (layer "B.Cu") (net 48) (tstamp c565da2b-5b02-417d-9c1a-c59c943a32b0)) - (segment (start 107.92 145.36) (end 106.1 143.54) (width 0.5) (layer "B.Cu") (net 48) (tstamp c6d2b1b6-64a4-4be1-986c-f1c06403013b)) - (segment (start 88.77 120.59) (end 86.9855 118.8055) (width 0.5) (layer "B.Cu") (net 48) (tstamp d0c5c9a7-94aa-4599-b1a5-466d2ae87bdf)) - (segment (start 166.2725 93.8725) (end 165.2 92.8) (width 0.5) (layer "B.Cu") (net 48) (tstamp d591be2e-fd60-474f-83d3-4140381a3265)) - (segment (start 88.77 133.8055) (end 88.77 120.59) (width 0.5) (layer "B.Cu") (net 48) (tstamp eafb11e5-cc5f-47a2-b4e0-9995c6925c72)) - (segment (start 164.147 62.2) (end 153.352 62.2) (width 0.5) (layer "B.Cu") (net 48) (tstamp ee7fba85-7eac-45ab-939f-048acca4f274)) - (segment (start 153.352 62.2) (end 141.1 62.2) (width 0.5) (layer "B.Cu") (net 48) (tstamp efb2cad1-9fce-4300-a662-d01518e0541a)) - (segment (start 160.13 80.72) (end 160.13 72.87) (width 0.25) (layer "B.Cu") (net 49) (tstamp 0aa0869a-2486-456f-b131-9d7c64c8c102)) - (segment (start 160.13 88.57) (end 160.13 90.07) (width 0.25) (layer "B.Cu") (net 49) (tstamp 0ebb6b26-3c32-4029-b592-e89b4b1b8904)) - (segment (start 160.13 90.07) (end 156.1125 94.0875) (width 0.25) (layer "B.Cu") (net 49) (tstamp 32e77b08-dfea-4677-a9ee-f3a7d3ffda6d)) - (segment (start 147.12 88.57) (end 147.12 91.52) (width 0.25) (layer "B.Cu") (net 49) (tstamp 54319e9f-b7c4-4d0d-aa4e-74a09eac29c9)) - (segment (start 160.13 72.87) (end 160.13 65.02) (width 0.25) (layer "B.Cu") (net 49) (tstamp 72e2fa3c-f8f7-4577-bedf-eb402fc82191)) - (segment (start 156.1125 94.1) (end 156.1125 96.87) (width 0.25) (layer "B.Cu") (net 49) (tstamp 7678967a-a93f-46c0-adb8-100473f8d448)) - (segment (start 148.2 92.6) (end 154.6 92.6) (width 0.25) (layer "B.Cu") (net 49) (tstamp a9d0cff3-6ec1-4b73-b089-ed4a2af8705d)) - (segment (start 147.12 80.72) (end 147.12 72.87) (width 0.25) (layer "B.Cu") (net 49) (tstamp b225bb28-8848-4d63-b30a-28a0bfa5d3c8)) - (segment (start 160.13 88.57) (end 160.13 80.72) (width 0.25) (layer "B.Cu") (net 49) (tstamp bd92ff82-e38e-40cb-ba22-008d7b5ff2f5)) - (segment (start 147.12 72.87) (end 147.12 65.02) (width 0.25) (layer "B.Cu") (net 49) (tstamp bfb0a4b0-59db-4d6f-9fcf-a5ed5f1bf63e)) - (segment (start 147.12 88.57) (end 147.12 80.72) (width 0.25) (layer "B.Cu") (net 49) (tstamp dc1c09f0-dae9-432f-ad83-891681e112a2)) - (segment (start 147.12 91.52) (end 148.2 92.6) (width 0.25) (layer "B.Cu") (net 49) (tstamp e73d61fa-946e-442c-babf-1b3babcfc5a8)) - (segment (start 154.6 92.6) (end 156.1 94.1) (width 0.25) (layer "B.Cu") (net 49) (tstamp e77082e9-c843-45f9-bf3a-8f5ca3f88746)) - (segment (start 153.5725 95.6225) (end 153.5725 95.8) (width 0.25) (layer "F.Cu") (net 50) (tstamp 465d5e24-6491-4cb7-9904-d37364122cd5)) - (segment (start 153.5725 92.5875) (end 153.5725 94.5) (width 0.25) (layer "F.Cu") (net 50) (tstamp 7f5279ea-db7c-474f-96e0-7580935cd08b)) - (segment (start 153.5725 96.87) (end 153.5725 94.5) (width 0.25) (layer "F.Cu") (net 50) (tstamp 8958ab62-5554-488e-9051-21d246cb48b5)) - (segment (start 150.9 94.6) (end 152.55 94.6) (width 0.25) (layer "F.Cu") (net 50) (tstamp e8c95a58-0839-427f-bf7d-1511eff49a77)) - (segment (start 157.59 88.57) (end 153.5725 92.5875) (width 0.25) (layer "F.Cu") (net 50) (tstamp efbba3e0-da31-4323-923d-b1f907771db4)) - (segment (start 152.55 94.6) (end 153.5725 95.6225) (width 0.25) (layer "F.Cu") (net 50) (tstamp f36833ab-50df-40fc-aa7c-ca8ec414f40f)) - (via (at 150.9 94.6) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 50) (tstamp 87374830-e68d-4c4a-9c9d-7499a39fbfc2)) - (segment (start 150.9 94.6) (end 149.35 93.05) (width 0.25) (layer "B.Cu") (net 50) (tstamp 15c9eb8d-f4d5-4ee6-b0c2-4ac4109dda4a)) - (segment (start 144.58 91.68) (end 144.58 88.57) (width 0.25) (layer "B.Cu") (net 50) (tstamp 223d0f1a-43a8-4c74-b786-03aaf1e32a31)) - (segment (start 157.59 72.87) (end 157.59 65.02) (width 0.25) (layer "B.Cu") (net 50) (tstamp 41521469-caa9-495e-b96f-4ac7983ea9bb)) - (segment (start 144.58 80.72) (end 144.58 72.87) (width 0.25) (layer "B.Cu") (net 50) (tstamp 61135b38-f7cf-45c7-b43e-ed4955c687b3)) - (segment (start 157.59 80.72) (end 157.59 72.87) (width 0.25) (layer "B.Cu") (net 50) (tstamp 6831aff3-fe76-4a0f-aa7a-033ef5d71836)) - (segment (start 145.95 93.05) (end 144.58 91.68) (width 0.25) (layer "B.Cu") (net 50) (tstamp 85863794-556d-4ba8-a785-aa99e985b140)) - (segment (start 144.58 88.57) (end 144.58 80.72) (width 0.25) (layer "B.Cu") (net 50) (tstamp d3f8f27d-4d6b-4613-904e-40b21e1dce05)) - (segment (start 149.35 93.05) (end 145.95 93.05) (width 0.25) (layer "B.Cu") (net 50) (tstamp d6fdc2f7-9726-45b4-91b3-8949654b3bb3)) - (segment (start 144.58 72.87) (end 144.58 65.02) (width 0.25) (layer "B.Cu") (net 50) (tstamp dd4d5c3d-f1de-47b5-a1aa-1c31137219f8)) - (segment (start 157.59 88.57) (end 157.59 80.72) (width 0.25) (layer "B.Cu") (net 50) (tstamp fb5e02e7-8772-44ab-ba4e-0af37b5accc5)) - (segment (start 122.45 115.1) (end 123.8245 113.7255) (width 0.25) (layer "B.Cu") (net 51) (tstamp 0e95a460-d98c-4dc4-afb5-1854a2957e57)) + (segment (start 145.8 62.2) (end 136.13 71.87) (width 0.5) (layer "B.Cu") (net 48) (tstamp 0c616172-b549-442f-b30e-1bf6dd672bb2)) + (segment (start 153.58 72.87) (end 153.58 65.02) (width 0.5) (layer "B.Cu") (net 48) (tstamp 179b8579-eb93-4441-abe7-79385dc2868c)) + (segment (start 85.56 135.06) (end 88.77 135.06) (width 0.5) (layer "B.Cu") (net 48) (tstamp 18eccf98-1e64-4c6f-840e-f0cbc20769e2)) + (segment (start 153.58 63.334) (end 153.58 65.02) (width 0.5) (layer "B.Cu") (net 48) (tstamp 1a45b7b7-174f-4917-a9fc-64daed2429ed)) + (segment (start 86.9855 118.8055) (end 85.51 118.8055) (width 0.5) (layer "B.Cu") (net 48) (tstamp 2110ed0c-deea-4fc3-bd70-99a1f6dc4917)) + (segment (start 166.31 88.57) (end 166.31 80.72) (width 0.5) (layer "B.Cu") (net 48) (tstamp 2626a9cb-44a1-4e98-b02c-cff659fe2606)) + (segment (start 153.58 88.57) (end 153.58 80.72) (width 0.5) (layer "B.Cu") (net 48) (tstamp 3bb3c820-195e-4bf2-8891-8c27da6b5ba1)) + (segment (start 153.58 63.352) (end 153.58 65.02) (width 0.5) (layer "B.Cu") (net 48) (tstamp 494c83aa-f408-4339-8be6-87ed3b8c71ba)) + (segment (start 97.28 143.54) (end 88.77 135.03) (width 0.5) (layer "B.Cu") (net 48) (tstamp 4de0e470-be6a-4dcb-a3ef-c175e2b8814a)) + (segment (start 106.1 143.54) (end 97.28 143.54) (width 0.5) (layer "B.Cu") (net 48) (tstamp 546e6bfa-7b79-46b7-8b91-872ef4d22de5)) + (segment (start 166.31 80.72) (end 166.31 72.87) (width 0.5) (layer "B.Cu") (net 48) (tstamp 54ce5497-8590-4443-9236-41794de0eaa8)) + (segment (start 166.31 88.57) (end 166.31 97.07) (width 0.5) (layer "B.Cu") (net 48) (tstamp 62a63c2a-ec63-4532-99e8-e74e7fb9dbd6)) + (segment (start 166.18 63.133) (end 165.247 62.2) (width 0.5) (layer "B.Cu") (net 48) (tstamp 69139050-c881-4d10-8975-c2d2d3cfede1)) + (segment (start 166.18 65.02) (end 166.18 63.133) (width 0.5) (layer "B.Cu") (net 48) (tstamp 762588ce-b32c-4bbd-97f9-d7f3e6107ea5)) + (segment (start 107.92 145.36) (end 106.1 143.54) (width 0.5) (layer "B.Cu") (net 48) (tstamp 77d59bfe-e16d-4f5b-b79e-026546f8714d)) + (segment (start 85.5 135) (end 85.56 135.06) (width 0.5) (layer "B.Cu") (net 48) (tstamp 7ae19f83-07dd-4fe6-bd38-eaf3fe8cbc68)) + (segment (start 166.31 72.87) (end 166.31 65.02) (width 0.5) (layer "B.Cu") (net 48) (tstamp 97dc8dad-76a8-4c18-a08c-4db528402405)) + (segment (start 153.58 80.72) (end 153.58 72.87) (width 0.5) (layer "B.Cu") (net 48) (tstamp 99677944-cbb0-4c07-b3be-bd45c9d39373)) + (segment (start 88.77 120.59) (end 86.9855 118.8055) (width 0.5) (layer "B.Cu") (net 48) (tstamp abb0c873-0f6c-494b-becb-4ccc80fc6e1b)) + (segment (start 154.732 62.2) (end 153.58 63.352) (width 0.5) (layer "B.Cu") (net 48) (tstamp c565da2b-5b02-417d-9c1a-c59c943a32b0)) + (segment (start 136.13 71.87) (end 134.5355 71.87) (width 0.5) (layer "B.Cu") (net 48) (tstamp e4f25d64-48f1-4f7e-9e75-6b85b69bf2a4)) + (segment (start 154.732 62.2) (end 145.8 62.2) (width 0.5) (layer "B.Cu") (net 48) (tstamp e95cf9f1-3424-4f6a-839e-a2300b923ae2)) + (segment (start 165.527 62.2) (end 154.732 62.2) (width 0.5) (layer "B.Cu") (net 48) (tstamp ee7fba85-7eac-45ab-939f-048acca4f274)) + (segment (start 88.77 135.06) (end 88.77 120.59) (width 0.5) (layer "B.Cu") (net 48) (tstamp f81668d3-a0dd-4ef3-9d2a-237b1321242e)) + (segment (start 161.23 80.72) (end 161.23 72.87) (width 0.25) (layer "B.Cu") (net 49) (tstamp 0aa0869a-2486-456f-b131-9d7c64c8c102)) + (segment (start 161.23 90.35) (end 161.23 88.57) (width 0.25) (layer "B.Cu") (net 49) (tstamp 0c8273bf-3396-465a-ac93-885c2158667e)) + (segment (start 148.5 88.57) (end 148.5 91.52) (width 0.25) (layer "B.Cu") (net 49) (tstamp 2a0c8027-3ce7-4988-a31e-96872a06625b)) + (segment (start 149.58 92.6) (end 155.52 92.6) (width 0.25) (layer "B.Cu") (net 49) (tstamp 392ea8e6-ea41-42fd-bb8f-9572e211e181)) + (segment (start 161.23 72.87) (end 161.23 65.02) (width 0.25) (layer "B.Cu") (net 49) (tstamp 72e2fa3c-f8f7-4577-bedf-eb402fc82191)) + (segment (start 156.18 93.26) (end 156.18 97.1) (width 0.25) (layer "B.Cu") (net 49) (tstamp 7fc59550-8b3b-42a5-af01-e15623d38014)) + (segment (start 148.5 91.52) (end 149.58 92.6) (width 0.25) (layer "B.Cu") (net 49) (tstamp 874c12bc-995d-4484-82e1-1ccfcc9735ae)) + (segment (start 158.98 92.6) (end 161.23 90.35) (width 0.25) (layer "B.Cu") (net 49) (tstamp 87d32210-bda5-41c4-a1bc-c870e5d085b4)) + (segment (start 148.5 80.72) (end 148.5 72.87) (width 0.25) (layer "B.Cu") (net 49) (tstamp b225bb28-8848-4d63-b30a-28a0bfa5d3c8)) + (segment (start 161.23 88.57) (end 161.23 80.72) (width 0.25) (layer "B.Cu") (net 49) (tstamp bd92ff82-e38e-40cb-ba22-008d7b5ff2f5)) + (segment (start 148.5 72.87) (end 148.5 65.02) (width 0.25) (layer "B.Cu") (net 49) (tstamp bfb0a4b0-59db-4d6f-9fcf-a5ed5f1bf63e)) + (segment (start 156.84 92.6) (end 158.98 92.6) (width 0.25) (layer "B.Cu") (net 49) (tstamp c5f4ad26-2d0d-4d87-8916-d30ae73a037f)) + (segment (start 156.18 93.26) (end 156.84 92.6) (width 0.25) (layer "B.Cu") (net 49) (tstamp d9d8ba87-d470-4e06-879b-68474d54992a)) + (segment (start 148.5 88.57) (end 148.5 80.72) (width 0.25) (layer "B.Cu") (net 49) (tstamp dc1c09f0-dae9-432f-ad83-891681e112a2)) + (segment (start 155.52 92.6) (end 156.18 93.26) (width 0.25) (layer "B.Cu") (net 49) (tstamp efbd3663-3fd9-4c00-8b5a-2c9588b15caf)) + (segment (start 152.28 94.6) (end 153.48 95.8) (width 0.25) (layer "F.Cu") (net 50) (tstamp 1d6e8a9c-ab4b-4023-91e4-3a153e030be4)) + (segment (start 153.5725 93.9675) (end 154.9525 92.5875) (width 0.25) (layer "F.Cu") (net 50) (tstamp 693811bf-3a42-493a-bf29-8fa78633c137)) + (segment (start 153.48 95.8) (end 153.5725 95.8) (width 0.25) (layer "F.Cu") (net 50) (tstamp 7493493a-b0d1-4593-8003-a5fbf58e766f)) + (segment (start 158.97 88.57) (end 154.9525 92.5875) (width 0.25) (layer "F.Cu") (net 50) (tstamp efbba3e0-da31-4323-923d-b1f907771db4)) + (segment (start 153.5725 96.87) (end 153.5725 93.9675) (width 0.25) (layer "F.Cu") (net 50) (tstamp f2137ec8-78f3-4b5d-9490-943623eddee0)) + (via (at 152.28 94.6) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 50) (tstamp 87374830-e68d-4c4a-9c9d-7499a39fbfc2)) + (segment (start 152.28 94.6) (end 150.73 93.05) (width 0.25) (layer "B.Cu") (net 50) (tstamp 15c9eb8d-f4d5-4ee6-b0c2-4ac4109dda4a)) + (segment (start 145.96 91.68) (end 145.96 88.57) (width 0.25) (layer "B.Cu") (net 50) (tstamp 223d0f1a-43a8-4c74-b786-03aaf1e32a31)) + (segment (start 158.69 72.87) (end 158.69 65.02) (width 0.25) (layer "B.Cu") (net 50) (tstamp 41521469-caa9-495e-b96f-4ac7983ea9bb)) + (segment (start 145.96 80.72) (end 145.96 72.87) (width 0.25) (layer "B.Cu") (net 50) (tstamp 61135b38-f7cf-45c7-b43e-ed4955c687b3)) + (segment (start 158.69 80.72) (end 158.69 72.87) (width 0.25) (layer "B.Cu") (net 50) (tstamp 6831aff3-fe76-4a0f-aa7a-033ef5d71836)) + (segment (start 147.33 93.05) (end 145.96 91.68) (width 0.25) (layer "B.Cu") (net 50) (tstamp 85863794-556d-4ba8-a785-aa99e985b140)) + (segment (start 145.96 88.57) (end 145.96 80.72) (width 0.25) (layer "B.Cu") (net 50) (tstamp d3f8f27d-4d6b-4613-904e-40b21e1dce05)) + (segment (start 150.73 93.05) (end 147.33 93.05) (width 0.25) (layer "B.Cu") (net 50) (tstamp d6fdc2f7-9726-45b4-91b3-8949654b3bb3)) + (segment (start 145.96 72.87) (end 145.96 65.02) (width 0.25) (layer "B.Cu") (net 50) (tstamp dd4d5c3d-f1de-47b5-a1aa-1c31137219f8)) + (segment (start 158.69 88.57) (end 158.69 80.72) (width 0.25) (layer "B.Cu") (net 50) (tstamp fb5e02e7-8772-44ab-ba4e-0af37b5accc5)) + (segment (start 122.45 116.44) (end 122.45 117.7) (width 0.25) (layer "B.Cu") (net 51) (tstamp 03afeca2-dea8-49aa-87c7-d48590ebe205)) + (segment (start 123.74 112.54) (end 125.91 112.54) (width 0.25) (layer "B.Cu") (net 51) (tstamp 11aee2be-3363-4090-869d-64c49f55ddec)) (segment (start 142.2 121.15) (end 124.55 121.15) (width 0.25) (layer "B.Cu") (net 51) (tstamp 13d974d4-e780-45e9-a071-7deaa4e867fa)) (segment (start 122.45 119.05) (end 122.45 117.7) (width 0.25) (layer "B.Cu") (net 51) (tstamp 1e8d9dfb-eb26-4c7e-9461-257c9ff3fa9f)) (segment (start 162.45 100.9) (end 142.2 121.15) (width 0.25) (layer "B.Cu") (net 51) (tstamp 242d0676-b8a8-4003-8e03-92cb2c944d6d)) + (segment (start 122.45 113.83) (end 123.74 112.54) (width 0.25) (layer "B.Cu") (net 51) (tstamp 2eba36ad-47b3-4828-a5ee-41a18709de0d)) (segment (start 124.55 121.15) (end 122.45 119.05) (width 0.25) (layer "B.Cu") (net 51) (tstamp 67a53f2e-3012-43bf-b93d-5e7ede99c77b)) - (segment (start 123.8845 116.2655) (end 122.45 117.7) (width 0.25) (layer "B.Cu") (net 51) (tstamp 88ac2b09-5f91-4800-9993-efec87787e43)) + (segment (start 125.91 115.08) (end 123.81 115.08) (width 0.25) (layer "B.Cu") (net 51) (tstamp 936adda0-3928-443b-8010-2782815fe0de)) (segment (start 166.34 99.64) (end 165.08 100.9) (width 0.25) (layer "B.Cu") (net 51) (tstamp b68b3e09-0025-48b2-a11d-15c4a6501c41)) - (segment (start 123.8245 113.7255) (end 125.91 113.7255) (width 0.25) (layer "B.Cu") (net 51) (tstamp d2aeb96f-5adf-4ba6-98b3-bbd9eef8d615)) (segment (start 165.08 100.9) (end 162.45 100.9) (width 0.25) (layer "B.Cu") (net 51) (tstamp d84e7f3b-692f-4d0b-8794-9857b785cd73)) - (segment (start 125.91 116.2655) (end 123.8845 116.2655) (width 0.25) (layer "B.Cu") (net 51) (tstamp f278c39b-d1a0-4a97-b8a8-763a9296df90)) - (segment (start 122.45 117.7) (end 122.45 115.1) (width 0.25) (layer "B.Cu") (net 51) (tstamp f4ea666f-168c-4eae-8f01-d2c8b3b97a03)) - (segment (start 144.063604 118.65) (end 146.02 116.693604) (width 0.25) (layer "B.Cu") (net 52) (tstamp 1a3c6085-efa2-410f-a366-02b08a023de8)) - (segment (start 126.0655 118.65) (end 144.063604 118.65) (width 0.25) (layer "B.Cu") (net 52) (tstamp 7dce40be-7611-472d-a73d-e5f261e0325b)) - (segment (start 146.02 116.693604) (end 146.02 97.1) (width 0.25) (layer "B.Cu") (net 52) (tstamp 7e945326-d26d-4ac7-b287-3c7b60f5d614)) - (segment (start 125.91 118.8055) (end 126.0655 118.65) (width 0.25) (layer "B.Cu") (net 52) (tstamp b16b40ec-1c4e-484a-9b0e-825dd6758018)) + (segment (start 123.81 115.08) (end 122.45 116.44) (width 0.25) (layer "B.Cu") (net 51) (tstamp de08e699-17ed-442f-b4a8-04bbff34c6ce)) + (segment (start 122.45 117.7) (end 122.45 113.83) (width 0.25) (layer "B.Cu") (net 51) (tstamp f94d67ef-4752-4d77-b788-a7453ce6f99c)) + (segment (start 145.053604 117.66) (end 146.02 116.693604) (width 0.25) (layer "B.Cu") (net 52) (tstamp 0890f59a-d90d-48f9-a426-cd136c2014fb)) + (segment (start 146.02 116.693604) (end 146.02 97.1) (width 0.25) (layer "B.Cu") (net 52) (tstamp 6a8725d3-8286-43ba-82dd-fd92883e380d)) + (segment (start 125.95 117.66) (end 145.053604 117.66) (width 0.25) (layer "B.Cu") (net 52) (tstamp 9514476b-3b6b-49e0-aa90-6a236cdf8824)) (segment (start 138.09 94.25) (end 87.45 94.25) (width 0.25) (layer "F.Cu") (net 53) (tstamp 2bedbf7a-af8b-4b0d-b519-6aa33f33788b)) (segment (start 140.94 97.1) (end 138.09 94.25) (width 0.25) (layer "F.Cu") (net 53) (tstamp 784d9173-b6c6-4d63-af1d-ff41e0cbe42b)) (segment (start 83.72 97.98) (end 83.72 101.38) (width 0.25) (layer "F.Cu") (net 53) (tstamp cb5ba74a-a91a-4dd9-9b10-affc8af6fd7f)) (segment (start 87.45 94.25) (end 83.72 97.98) (width 0.25) (layer "F.Cu") (net 53) (tstamp df2b4ae0-3d52-4f0b-b26b-5165800202aa)) - (segment (start 87.636396 94.7) (end 86.2 96.136396) (width 0.25) (layer "F.Cu") (net 54) (tstamp 1ceea721-9077-427a-94e0-38931e0d0799)) - (segment (start 138.4 97.1) (end 136 94.7) (width 0.25) (layer "F.Cu") (net 54) (tstamp 3effd7ed-1996-4150-9c78-bb57342dbb24)) - (segment (start 86.2 96.136396) (end 86.2 102.45) (width 0.25) (layer "F.Cu") (net 54) (tstamp 49dea65d-dc17-43a4-9447-7b830f0ca45a)) - (segment (start 136 94.7) (end 87.636396 94.7) (width 0.25) (layer "F.Cu") (net 54) (tstamp 6984c443-c73f-4f5c-97e7-0e26ca073ad2)) - (segment (start 86.2 102.45) (end 83.76 104.89) (width 0.25) (layer "F.Cu") (net 54) (tstamp f895e7b6-f673-4fa3-b149-dfad2c07f404)) + (segment (start 86.2 101.99) (end 83.76 104.43) (width 0.25) (layer "F.Cu") (net 54) (tstamp 4065aeec-c127-49d5-a70a-ccccaac33782)) + (segment (start 136 94.7) (end 87.636396 94.7) (width 0.25) (layer "F.Cu") (net 54) (tstamp 812109c6-81aa-4a40-97d5-06f892f6bc7c)) + (segment (start 86.2 96.136396) (end 86.2 101.99) (width 0.25) (layer "F.Cu") (net 54) (tstamp 823cceba-1261-46fd-b86d-0aab19daea01)) + (segment (start 138.4 97.1) (end 136 94.7) (width 0.25) (layer "F.Cu") (net 54) (tstamp c5d7ab20-f7aa-4a1c-877e-11a9fe314758)) + (segment (start 87.636396 94.7) (end 86.2 96.136396) (width 0.25) (layer "F.Cu") (net 54) (tstamp da6edb8f-1769-4dab-a96c-cae359f09814)) (segment (start 163.25 135.2) (end 163.8 135.2) (width 0.25) (layer "F.Cu") (net 63) (tstamp 49748078-f881-4563-9141-e4f9744d7ec5)) (segment (start 141.4 114.2) (end 142.25 114.2) (width 0.25) (layer "F.Cu") (net 63) (tstamp 8551fee6-9f4f-4245-b1d3-c91658539dbb)) (segment (start 142.25 114.2) (end 163.25 135.2) (width 0.25) (layer "F.Cu") (net 63) (tstamp 8e4cc46c-ce11-4926-a537-5dc69da331d7)) @@ -6700,8 +6671,8 @@ (xy 81 159) (xy 81 87.5) (xy 101 87.5) - (xy 101 66.5) - (xy 81 66.5) + (xy 101 66) + (xy 81 66) ) ) (filled_polygon @@ -6721,11 +6692,90 @@ (xy 165.896804 140.03) ) ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 124.659568 133.075185) + (xy 124.696337 133.111678) + (xy 124.819842 133.300716) + (xy 124.81985 133.300727) + (xy 124.922848 133.412611) + (xy 124.972954 133.46704) + (xy 125.151351 133.605893) + (xy 125.179165 133.620945) + (xy 125.228755 133.670165) + (xy 125.243863 133.738382) + (xy 125.219692 133.803937) + (xy 125.179165 133.839055) + (xy 125.151352 133.854106) + (xy 124.972955 133.992959) + (xy 124.97295 133.992963) + (xy 124.81985 134.159272) + (xy 124.819842 134.159283) + (xy 124.696198 134.348533) + (xy 124.605388 134.55556) + (xy 124.549892 134.77471) + (xy 124.531225 134.999993) + (xy 124.531225 135.000006) + (xy 124.549892 135.225289) + (xy 124.605388 135.444439) + (xy 124.696198 135.651466) + (xy 124.819842 135.840716) + (xy 124.81985 135.840727) + (xy 124.956572 135.989245) + (xy 124.972954 136.00704) + (xy 125.151351 136.145893) + (xy 125.350169 136.253488) + (xy 125.350172 136.253489) + (xy 125.563982 136.32689) + (xy 125.563984 136.32689) + (xy 125.563986 136.326891) + (xy 125.786967 136.3641) + (xy 125.786968 136.3641) + (xy 126.013032 136.3641) + (xy 126.013033 136.3641) + (xy 126.236014 136.326891) + (xy 126.449831 136.253488) + (xy 126.648649 136.145893) + (xy 126.827046 136.00704) + (xy 126.951246 135.872124) + (xy 126.980149 135.840727) + (xy 126.98015 135.840725) + (xy 126.980156 135.840719) + (xy 127.084062 135.681678) + (xy 127.137209 135.636322) + (xy 127.187871 135.6255) + (xy 128.640547 135.6255) + (xy 128.707586 135.645185) + (xy 128.753341 135.697989) + (xy 128.763285 135.767147) + (xy 128.73426 135.830703) + (xy 128.728228 135.837181) + (xy 127.647228 136.918181) + (xy 127.585905 136.951666) + (xy 127.559547 136.9545) + (xy 125.300453 136.9545) + (xy 125.233414 136.934815) + (xy 125.212772 136.918181) + (xy 123.061819 134.767228) + (xy 123.028334 134.705905) + (xy 123.0255 134.679547) + (xy 123.0255 134.474461) + (xy 123.0255 134.190447) + (xy 123.045183 134.123412) + (xy 123.061813 134.102775) + (xy 124.07277 133.091819) + (xy 124.134094 133.058334) + (xy 124.160452 133.0555) + (xy 124.592529 133.0555) + ) + ) (filled_polygon (layer "F.Cu") (pts (xy 142.749222 115.600018) - (xy 142.79414 115.62873) + (xy 142.794139 115.628729) + (xy 152.616428 125.451019) (xy 162.405029 135.23962) (xy 162.438514 135.300943) (xy 162.440924 135.317061) @@ -6760,26107 +6810,7629 @@ (filled_polygon (layer "F.Cu") (pts - (xy 124.689168 131.910685) - (xy 124.725937 131.947178) - (xy 124.829842 132.106216) - (xy 124.82985 132.106227) - (xy 124.952897 132.23989) - (xy 124.982954 132.27254) - (xy 125.161351 132.411393) - (xy 125.189165 132.426445) - (xy 125.238755 132.475665) - (xy 125.253863 132.543882) - (xy 125.229692 132.609437) - (xy 125.189165 132.644555) - (xy 125.161352 132.659606) - (xy 124.982955 132.798459) - (xy 124.98295 132.798463) - (xy 124.82985 132.964772) - (xy 124.829842 132.964783) - (xy 124.706198 133.154033) - (xy 124.615388 133.36106) - (xy 124.559892 133.58021) - (xy 124.541225 133.805493) - (xy 124.541225 133.805506) - (xy 124.559892 134.030789) - (xy 124.559892 134.030792) - (xy 124.559893 134.030793) - (xy 124.560419 134.032872) - (xy 124.615388 134.249939) - (xy 124.706198 134.456966) - (xy 124.829842 134.646216) - (xy 124.82985 134.646227) - (xy 124.959217 134.786755) - (xy 124.982954 134.81254) - (xy 125.161351 134.951393) - (xy 125.360169 135.058988) - (xy 125.360172 135.058989) - (xy 125.573982 135.13239) - (xy 125.573984 135.13239) - (xy 125.573986 135.132391) - (xy 125.796967 135.1696) - (xy 125.796968 135.1696) - (xy 126.023032 135.1696) - (xy 126.023033 135.1696) - (xy 126.246014 135.132391) - (xy 126.248508 135.131535) - (xy 126.261874 135.126946) - (xy 126.459831 135.058988) - (xy 126.658649 134.951393) - (xy 126.837046 134.81254) - (xy 126.95713 134.682095) - (xy 126.990149 134.646227) - (xy 126.99015 134.646225) - (xy 126.990156 134.646219) - (xy 127.094062 134.487178) - (xy 127.147209 134.441822) - (xy 127.197871 134.431) - (xy 128.375361 134.431) - (xy 128.390981 134.432724) - (xy 128.391008 134.432439) - (xy 128.39877 134.433173) - (xy 128.39877 134.433172) - (xy 128.398771 134.433173) - (xy 128.402103 134.433068) - (xy 128.466951 134.431031) - (xy 128.468898 134.431) - (xy 128.497451 134.431) - (xy 128.497454 134.431) - (xy 128.504332 134.43013) - (xy 128.510145 134.429672) - (xy 128.556731 134.428209) - (xy 128.575973 134.422617) - (xy 128.595016 134.418674) - (xy 128.614896 134.416164) - (xy 128.658226 134.399007) - (xy 128.66375 134.397117) - (xy 128.6675 134.396027) - (xy 128.708494 134.384118) - (xy 128.725733 134.373922) - (xy 128.743207 134.365362) - (xy 128.761831 134.357988) - (xy 128.761831 134.357987) - (xy 128.761836 134.357986) - (xy 128.799553 134.330582) - (xy 128.804409 134.327392) - (xy 128.844524 134.30367) - (xy 128.858693 134.289499) - (xy 128.873483 134.276868) - (xy 128.889691 134.265094) - (xy 128.919403 134.229176) - (xy 128.923316 134.224876) - (xy 129.16282 133.985373) - (xy 129.224142 133.951889) - (xy 129.293834 133.956873) - (xy 129.349767 133.998745) - (xy 129.374184 134.064209) - (xy 129.3745 134.073055) - (xy 129.3745 134.139547) - (xy 129.354815 134.206586) - (xy 129.338181 134.227228) - (xy 128.127228 135.438181) - (xy 128.065905 135.471666) - (xy 128.039547 135.4745) - (xy 124.710453 135.4745) - (xy 124.643414 135.454815) - (xy 124.622772 135.438181) - (xy 123.061819 133.877228) - (xy 123.028334 133.815905) - (xy 123.0255 133.789547) - (xy 123.0255 133.310452) - (xy 123.045185 133.243413) - (xy 123.061819 133.222771) - (xy 124.357272 131.927319) - (xy 124.418595 131.893834) - (xy 124.444953 131.891) - (xy 124.622129 131.891) + (xy 129.613834 122.78327) + (xy 129.669767 122.825142) + (xy 129.694184 122.890606) + (xy 129.6945 122.899452) + (xy 129.6945 134.183151) + (xy 129.674815 134.25019) + (xy 129.658181 134.270832) + (xy 129.590832 134.338181) + (xy 129.529509 134.371666) + (xy 129.503151 134.3745) + (xy 127.187871 134.3745) + (xy 127.120832 134.354815) + (xy 127.084063 134.318322) + (xy 127.029308 134.234513) + (xy 126.980156 134.159281) + (xy 126.980153 134.159278) + (xy 126.980149 134.159272) + (xy 126.827049 133.992963) + (xy 126.827048 133.992962) + (xy 126.827046 133.99296) + (xy 126.648649 133.854107) + (xy 126.648647 133.854106) + (xy 126.648646 133.854105) + (xy 126.648639 133.8541) + (xy 126.620836 133.839055) + (xy 126.571244 133.789837) + (xy 126.556135 133.72162) + (xy 126.580306 133.656064) + (xy 126.620836 133.620945) + (xy 126.648639 133.605899) + (xy 126.648642 133.605896) + (xy 126.648649 133.605893) + (xy 126.827046 133.46704) + (xy 126.970264 133.311465) + (xy 126.980149 133.300727) + (xy 126.98015 133.300725) + (xy 126.980156 133.300719) + (xy 127.103802 133.111465) + (xy 127.194611 132.904441) + (xy 127.250107 132.685293) + (xy 127.268775 132.46) + (xy 127.250107 132.234707) + (xy 127.194611 132.015559) + (xy 127.103802 131.808535) + (xy 127.102031 131.805825) + (xy 127.041979 131.713908) + (xy 126.980156 131.619281) + (xy 126.980153 131.619278) + (xy 126.980149 131.619272) + (xy 126.827049 131.452963) + (xy 126.827048 131.452962) + (xy 126.827046 131.45296) + (xy 126.648649 131.314107) + (xy 126.648647 131.314106) + (xy 126.648646 131.314105) + (xy 126.648643 131.314103) + (xy 126.620833 131.299053) + (xy 126.571243 131.249833) + (xy 126.556136 131.181616) + (xy 126.580307 131.116061) + (xy 126.620835 131.080945) + (xy 126.648649 131.065893) + (xy 126.827046 130.92704) + (xy 126.953938 130.789199) + (xy 126.980149 130.760727) + (xy 126.98015 130.760725) + (xy 126.980156 130.760719) + (xy 127.103802 130.571465) + (xy 127.194611 130.364441) + (xy 127.250107 130.145293) + (xy 127.268775 129.92) + (xy 127.250107 129.694707) + (xy 127.194611 129.475559) + (xy 127.103802 129.268535) + (xy 126.980156 129.079281) + (xy 126.980153 129.079278) + (xy 126.980149 129.079272) + (xy 126.827049 128.912963) + (xy 126.827048 128.912962) + (xy 126.827046 128.91296) + (xy 126.648649 128.774107) + (xy 126.648647 128.774106) + (xy 126.648646 128.774105) + (xy 126.648643 128.774103) + (xy 126.620833 128.759053) + (xy 126.571243 128.709833) + (xy 126.556136 128.641616) + (xy 126.580307 128.576061) + (xy 126.620833 128.540946) + (xy 126.648649 128.525893) + (xy 126.827046 128.38704) + (xy 126.949377 128.254154) + (xy 126.980149 128.220727) + (xy 126.98015 128.220725) + (xy 126.980156 128.220719) + (xy 127.103802 128.031465) + (xy 127.194611 127.824441) + (xy 127.250107 127.605293) + (xy 127.268775 127.38) + (xy 127.250107 127.154707) + (xy 127.194611 126.935559) + (xy 127.103802 126.728535) + (xy 126.980156 126.539281) + (xy 126.980153 126.539278) + (xy 126.980149 126.539272) + (xy 126.827045 126.372959) + (xy 126.648646 126.234105) + (xy 126.648639 126.2341) + (xy 126.590481 126.202627) + (xy 126.540891 126.153408) + (xy 126.525499 126.093573) + (xy 126.525499 125.976805) + (xy 126.525499 125.820449) + (xy 126.545184 125.753413) + (xy 126.561813 125.732776) + (xy 129.482818 122.811771) + (xy 129.544142 122.778286) ) ) (filled_polygon (layer "F.Cu") (pts - (xy 128.843833 124.293269) - (xy 128.899766 124.335141) - (xy 128.924183 124.400605) - (xy 128.924499 124.409451) - (xy 128.924499 132.403151) - (xy 128.904814 132.47019) - (xy 128.88818 132.490832) - (xy 128.235332 133.143681) - (xy 128.174009 133.177166) - (xy 128.147651 133.18) - (xy 127.197871 133.18) - (xy 127.130832 133.160315) - (xy 127.094063 133.123822) - (xy 126.998014 132.976809) - (xy 126.990156 132.964781) - (xy 126.990153 132.964778) - (xy 126.990149 132.964772) - (xy 126.837049 132.798463) - (xy 126.837048 132.798462) - (xy 126.837046 132.79846) - (xy 126.658649 132.659607) - (xy 126.658647 132.659606) - (xy 126.658646 132.659605) - (xy 126.658639 132.6596) - (xy 126.630836 132.644555) - (xy 126.581244 132.595337) - (xy 126.566135 132.52712) - (xy 126.590306 132.461564) - (xy 126.630836 132.426445) - (xy 126.658639 132.411399) - (xy 126.658642 132.411396) - (xy 126.658649 132.411393) - (xy 126.837046 132.27254) - (xy 126.990156 132.106219) - (xy 127.113802 131.916965) - (xy 127.204611 131.709941) - (xy 127.260107 131.490793) - (xy 127.278775 131.2655) - (xy 127.260107 131.040207) - (xy 127.204611 130.821059) - (xy 127.113802 130.614035) - (xy 127.110571 130.60909) - (xy 126.990157 130.424783) - (xy 126.990149 130.424772) - (xy 126.837049 130.258463) - (xy 126.837048 130.258462) - (xy 126.837046 130.25846) - (xy 126.658649 130.119607) - (xy 126.658647 130.119606) - (xy 126.658646 130.119605) - (xy 126.658643 130.119603) - (xy 126.630833 130.104553) - (xy 126.581243 130.055333) - (xy 126.566136 129.987116) - (xy 126.590307 129.921561) - (xy 126.630833 129.886446) - (xy 126.658649 129.871393) - (xy 126.837046 129.73254) - (xy 126.970668 129.587389) - (xy 126.990149 129.566227) - (xy 126.99015 129.566225) - (xy 126.990156 129.566219) - (xy 127.113802 129.376965) - (xy 127.204611 129.169941) - (xy 127.260107 128.950793) - (xy 127.278775 128.7255) - (xy 127.260107 128.500207) - (xy 127.204611 128.281059) - (xy 127.113802 128.074035) - (xy 127.065432 128) - (xy 126.990157 127.884783) - (xy 126.990149 127.884772) - (xy 126.837049 127.718463) - (xy 126.837048 127.718462) - (xy 126.837046 127.71846) - (xy 126.658649 127.579607) - (xy 126.658647 127.579606) - (xy 126.658646 127.579605) - (xy 126.658639 127.5796) - (xy 126.630836 127.564555) - (xy 126.581244 127.515337) - (xy 126.566135 127.44712) - (xy 126.590306 127.381564) - (xy 126.630836 127.346445) - (xy 126.658639 127.331399) - (xy 126.658642 127.331396) - (xy 126.658649 127.331393) - (xy 126.837046 127.19254) - (xy 126.990156 127.026219) - (xy 127.113802 126.836965) - (xy 127.204611 126.629941) - (xy 127.260107 126.410793) - (xy 127.278775 126.1855) - (xy 127.261483 125.976808) - (xy 127.260108 125.960214) - (xy 127.260104 125.960194) - (xy 127.239875 125.880311) - (xy 127.242499 125.810491) - (xy 127.272397 125.762191) - (xy 128.71282 124.321768) - (xy 128.774141 124.288285) + (xy 174.826211 97.145185) + (xy 174.871966 97.197989) + (xy 174.874588 97.20417) + (xy 174.888607 97.239888) + (xy 175.016041 97.460612) + (xy 175.17495 97.659877) + (xy 175.361783 97.833232) + (xy 175.572366 97.976805) + (xy 175.572371 97.976807) + (xy 175.572372 97.976808) + (xy 175.572373 97.976809) + (xy 175.687526 98.032263) + (xy 175.801992 98.087387) + (xy 175.801993 98.087387) + (xy 175.801996 98.087389) + (xy 175.90836 98.120197) + (xy 175.945029 98.131509) + (xy 176.003288 98.17008) + (xy 176.031446 98.234024) + (xy 176.020562 98.303041) + (xy 175.974093 98.355218) + (xy 175.945029 98.368491) + (xy 175.801992 98.412612) + (xy 175.572373 98.52319) + (xy 175.572372 98.523191) + (xy 175.361782 98.666768) + (xy 175.174952 98.840121) + (xy 175.17495 98.840123) + (xy 175.016041 99.039388) + (xy 174.888608 99.260109) + (xy 174.795492 99.497362) + (xy 174.79549 99.497369) + (xy 174.738777 99.745845) + (xy 174.719732 99.999995) + (xy 174.719732 100.000004) + (xy 174.738777 100.254154) + (xy 174.792329 100.488779) + (xy 174.795492 100.502637) + (xy 174.795494 100.502642) + (xy 174.834118 100.601054) + (xy 174.840287 100.67065) + (xy 174.807849 100.732534) + (xy 174.806371 100.734037) + (xy 169.287181 106.253228) + (xy 169.225858 106.286713) + (xy 169.156166 106.281729) + (xy 169.100233 106.239857) + (xy 169.075816 106.174393) + (xy 169.0755 106.165547) + (xy 169.0755 101.921847) + (xy 169.095185 101.854808) + (xy 169.111814 101.834171) + (xy 173.784167 97.161819) + (xy 173.84549 97.128334) + (xy 173.871848 97.1255) + (xy 174.759172 97.1255) ) ) (filled_polygon (layer "F.Cu") (pts - (xy 162.357077 101.980025) - (xy 162.41301 102.021897) - (xy 162.437427 102.087361) - (xy 162.43732 102.106442) - (xy 162.432322 102.166768) - (xy 162.431225 102.180004) - (xy 162.431225 102.180006) - (xy 162.449892 102.405289) - (xy 162.505388 102.624439) - (xy 162.596198 102.831466) - (xy 162.719842 103.020716) - (xy 162.71985 103.020727) - (xy 162.814943 103.124024) - (xy 162.872954 103.18704) - (xy 163.051351 103.325893) - (xy 163.051353 103.325894) - (xy 163.051356 103.325896) - (xy 163.06062 103.330909) - (xy 163.079163 103.340944) - (xy 163.128754 103.390161) - (xy 163.143864 103.458378) - (xy 163.119694 103.523934) - (xy 163.079167 103.559052) - (xy 163.051361 103.5741) - (xy 163.051353 103.574105) - (xy 162.872955 103.712959) - (xy 162.87295 103.712963) - (xy 162.71985 103.879272) - (xy 162.719842 103.879283) - (xy 162.596198 104.068533) - (xy 162.505388 104.27556) - (xy 162.449892 104.49471) - (xy 162.431225 104.719993) - (xy 162.431225 104.720006) - (xy 162.449892 104.945289) - (xy 162.505388 105.164439) - (xy 162.596198 105.371466) - (xy 162.719842 105.560716) - (xy 162.71985 105.560727) - (xy 162.817469 105.666768) - (xy 162.872954 105.72704) - (xy 163.051351 105.865893) - (xy 163.079165 105.880945) - (xy 163.128755 105.930165) - (xy 163.143863 105.998382) - (xy 163.119692 106.063937) - (xy 163.079165 106.099055) - (xy 163.051352 106.114106) - (xy 162.872955 106.252959) - (xy 162.87295 106.252963) - (xy 162.71985 106.419272) - (xy 162.719842 106.419283) - (xy 162.596198 106.608533) - (xy 162.505388 106.81556) - (xy 162.449892 107.03471) - (xy 162.431225 107.259993) - (xy 162.431225 107.260006) - (xy 162.449892 107.485289) - (xy 162.505388 107.704439) - (xy 162.596198 107.911466) - (xy 162.719842 108.100716) - (xy 162.71985 108.100727) - (xy 162.87295 108.267036) - (xy 162.872954 108.26704) - (xy 163.051351 108.405893) - (xy 163.079165 108.420945) - (xy 163.128755 108.470165) - (xy 163.143863 108.538382) - (xy 163.119692 108.603937) - (xy 163.079165 108.639055) - (xy 163.051352 108.654106) - (xy 162.872955 108.792959) - (xy 162.87295 108.792963) - (xy 162.71985 108.959272) - (xy 162.719842 108.959283) - (xy 162.596198 109.148533) - (xy 162.505388 109.35556) - (xy 162.449892 109.57471) - (xy 162.431225 109.799993) - (xy 162.431225 109.800006) - (xy 162.449892 110.025289) - (xy 162.505388 110.244439) - (xy 162.596198 110.451466) - (xy 162.719842 110.640716) - (xy 162.71985 110.640727) - (xy 162.859621 110.792557) - (xy 162.872954 110.80704) - (xy 163.051351 110.945893) - (xy 163.079159 110.960942) - (xy 163.079165 110.960945) - (xy 163.128755 111.010165) - (xy 163.143863 111.078382) - (xy 163.119692 111.143937) - (xy 163.079165 111.179055) - (xy 163.051352 111.194106) - (xy 162.872955 111.332959) - (xy 162.87295 111.332963) - (xy 162.71985 111.499272) - (xy 162.719842 111.499283) - (xy 162.596198 111.688533) - (xy 162.505388 111.89556) - (xy 162.449892 112.11471) - (xy 162.431225 112.339993) - (xy 162.431225 112.340006) - (xy 162.449892 112.565289) - (xy 162.505388 112.784439) - (xy 162.596198 112.991466) - (xy 162.719842 113.180716) - (xy 162.71985 113.180727) - (xy 162.850306 113.322438) - (xy 162.872954 113.34704) - (xy 163.051351 113.485893) - (xy 163.079165 113.500945) - (xy 163.128755 113.550165) - (xy 163.143863 113.618382) - (xy 163.119692 113.683937) - (xy 163.079165 113.719055) - (xy 163.051352 113.734106) - (xy 162.872955 113.872959) - (xy 162.87295 113.872963) - (xy 162.71985 114.039272) - (xy 162.719842 114.039283) - (xy 162.596198 114.228533) - (xy 162.505388 114.43556) - (xy 162.449892 114.65471) - (xy 162.431225 114.879993) - (xy 162.431225 114.880006) - (xy 162.449892 115.105289) - (xy 162.505388 115.324439) - (xy 162.596198 115.531466) - (xy 162.719842 115.720716) - (xy 162.71985 115.720727) - (xy 162.855877 115.86849) - (xy 162.872954 115.88704) - (xy 163.051351 116.025893) - (xy 163.051353 116.025894) - (xy 163.051356 116.025896) - (xy 163.060803 116.031008) - (xy 163.079163 116.040944) - (xy 163.128754 116.090161) - (xy 163.143864 116.158378) - (xy 163.119694 116.223934) - (xy 163.079167 116.259052) - (xy 163.051361 116.2741) - (xy 163.051353 116.274105) - (xy 162.872955 116.412959) - (xy 162.87295 116.412963) - (xy 162.71985 116.579272) - (xy 162.719842 116.579283) - (xy 162.596198 116.768533) - (xy 162.505388 116.97556) - (xy 162.449892 117.19471) - (xy 162.431225 117.419993) - (xy 162.431225 117.420006) - (xy 162.449892 117.645289) - (xy 162.505388 117.864439) - (xy 162.596198 118.071466) - (xy 162.719842 118.260716) - (xy 162.71985 118.260727) - (xy 162.87295 118.427036) - (xy 162.872954 118.42704) - (xy 163.051351 118.565893) - (xy 163.079165 118.580945) - (xy 163.128755 118.630165) - (xy 163.143863 118.698382) - (xy 163.119692 118.763937) - (xy 163.079165 118.799055) - (xy 163.051352 118.814106) - (xy 162.872955 118.952959) - (xy 162.87295 118.952963) - (xy 162.71985 119.119272) - (xy 162.719842 119.119283) - (xy 162.596198 119.308533) - (xy 162.505388 119.51556) - (xy 162.449892 119.73471) - (xy 162.431225 119.959993) - (xy 162.431225 119.960006) - (xy 162.449892 120.185289) - (xy 162.505388 120.404439) - (xy 162.596198 120.611466) - (xy 162.719842 120.800716) - (xy 162.71985 120.800727) - (xy 162.87295 120.967036) - (xy 162.872954 120.96704) - (xy 163.051351 121.105893) - (xy 163.079165 121.120945) - (xy 163.128755 121.170165) - (xy 163.143863 121.238382) - (xy 163.119692 121.303937) - (xy 163.079165 121.339055) - (xy 163.051352 121.354106) - (xy 162.872955 121.492959) - (xy 162.87295 121.492963) - (xy 162.71985 121.659272) - (xy 162.719842 121.659283) - (xy 162.596198 121.848533) - (xy 162.505388 122.05556) - (xy 162.449892 122.27471) - (xy 162.431225 122.499993) - (xy 162.431225 122.500006) - (xy 162.449892 122.725289) - (xy 162.505388 122.944439) - (xy 162.596198 123.151466) - (xy 162.719842 123.340716) - (xy 162.71985 123.340727) - (xy 162.87295 123.507036) - (xy 162.872954 123.50704) - (xy 163.051351 123.645893) - (xy 163.079159 123.660942) - (xy 163.079165 123.660945) - (xy 163.128755 123.710165) - (xy 163.143863 123.778382) - (xy 163.119692 123.843937) - (xy 163.079165 123.879055) - (xy 163.051352 123.894106) - (xy 162.872955 124.032959) - (xy 162.87295 124.032963) - (xy 162.71985 124.199272) - (xy 162.719842 124.199283) - (xy 162.596198 124.388533) - (xy 162.505388 124.59556) - (xy 162.449892 124.81471) - (xy 162.431225 125.039993) - (xy 162.431225 125.040006) - (xy 162.449892 125.265289) - (xy 162.505388 125.484439) - (xy 162.596198 125.691466) - (xy 162.719842 125.880716) - (xy 162.71985 125.880727) - (xy 162.87295 126.047036) - (xy 162.872954 126.04704) - (xy 163.051351 126.185893) - (xy 163.079165 126.200945) - (xy 163.128755 126.250165) - (xy 163.143863 126.318382) - (xy 163.119692 126.383937) - (xy 163.079165 126.419055) - (xy 163.051352 126.434106) - (xy 162.872955 126.572959) - (xy 162.87295 126.572963) - (xy 162.71985 126.739272) - (xy 162.719842 126.739283) - (xy 162.596198 126.928533) - (xy 162.505388 127.13556) - (xy 162.449892 127.35471) - (xy 162.431225 127.579993) - (xy 162.431225 127.580006) - (xy 162.449892 127.805289) - (xy 162.505388 128.024439) - (xy 162.596198 128.231466) - (xy 162.719842 128.420716) - (xy 162.71985 128.420727) - (xy 162.87295 128.587036) - (xy 162.872954 128.58704) - (xy 163.051351 128.725893) - (xy 163.051353 128.725894) - (xy 163.051356 128.725896) - (xy 163.051362 128.725899) - (xy 163.079163 128.740944) - (xy 163.128754 128.790161) - (xy 163.143864 128.858378) - (xy 163.119694 128.923934) - (xy 163.079167 128.959052) - (xy 163.051361 128.9741) - (xy 163.051353 128.974105) - (xy 162.872955 129.112959) - (xy 162.87295 129.112963) - (xy 162.71985 129.279272) - (xy 162.719842 129.279283) - (xy 162.596198 129.468533) - (xy 162.505388 129.67556) - (xy 162.449892 129.89471) - (xy 162.431225 130.119993) - (xy 162.431225 130.120006) - (xy 162.449892 130.345289) - (xy 162.505388 130.564439) - (xy 162.596198 130.771466) - (xy 162.719842 130.960716) - (xy 162.71985 130.960727) - (xy 162.87295 131.127036) - (xy 162.872954 131.12704) - (xy 163.051351 131.265893) - (xy 163.079159 131.280942) - (xy 163.079165 131.280945) - (xy 163.128755 131.330165) - (xy 163.143863 131.398382) - (xy 163.119692 131.463937) - (xy 163.079165 131.499054) - (xy 163.077411 131.500004) - (xy 163.051352 131.514106) - (xy 162.872955 131.652959) - (xy 162.87295 131.652963) - (xy 162.71985 131.819272) - (xy 162.719842 131.819283) - (xy 162.596198 132.008533) - (xy 162.505388 132.21556) - (xy 162.449892 132.43471) - (xy 162.437993 132.578309) - (xy 162.41284 132.643494) - (xy 162.356438 132.684732) - (xy 162.286694 132.68893) - (xy 162.226736 132.65575) - (xy 152.722452 123.151466) - (xy 143.039248 113.468261) - (xy 143.005763 113.406938) - (xy 143.003608 113.367619) - (xy 143.00546 113.35) - (xy 142.985674 113.161744) - (xy 142.927179 112.981716) - (xy 142.832533 112.817784) - (xy 142.705871 112.677112) - (xy 142.705735 112.677013) - (xy 142.552734 112.565851) - (xy 142.552729 112.565848) - (xy 142.379807 112.488857) - (xy 142.379802 112.488855) - (xy 142.222874 112.4555) - (xy 142.194646 112.4495) - (xy 142.157243 112.4495) - (xy 142.090204 112.429815) - (xy 142.044449 112.377011) - (xy 142.034505 112.307853) - (xy 142.06353 112.244297) - (xy 142.069562 112.237819) - (xy 144.061537 110.245845) - (xy 150.645563 103.661819) - (xy 150.706887 103.628334) - (xy 150.733245 103.6255) - (xy 160.267257 103.6255) - (xy 160.282877 103.627224) - (xy 160.282904 103.626939) - (xy 160.290666 103.627673) - (xy 160.290666 103.627672) - (xy 160.290667 103.627673) - (xy 160.293999 103.627568) - (xy 160.358847 103.625531) - (xy 160.360794 103.6255) - (xy 160.389347 103.6255) - (xy 160.38935 103.6255) - (xy 160.396228 103.62463) - (xy 160.402041 103.624172) - (xy 160.448627 103.622709) - (xy 160.467869 103.617117) - (xy 160.486912 103.613174) - (xy 160.506792 103.610664) - (xy 160.550122 103.593507) - (xy 160.555646 103.591617) - (xy 160.559396 103.590527) - (xy 160.60039 103.578618) - (xy 160.617629 103.568422) - (xy 160.635103 103.559862) - (xy 160.653727 103.552488) - (xy 160.653727 103.552487) - (xy 160.653732 103.552486) - (xy 160.691449 103.525082) - (xy 160.696305 103.521892) - (xy 160.73642 103.49817) - (xy 160.750589 103.483999) - (xy 160.765379 103.471368) - (xy 160.781587 103.459594) - (xy 160.811299 103.423676) - (xy 160.815212 103.419376) - (xy 162.226064 102.008524) - (xy 162.287385 101.975041) - ) - ) - (filled_polygon - (layer "F.Cu") - (pts - (xy 174.826211 97.145185) - (xy 174.871966 97.197989) - (xy 174.874588 97.20417) - (xy 174.888607 97.239888) - (xy 175.016041 97.460612) - (xy 175.17495 97.659877) - (xy 175.361783 97.833232) - (xy 175.572366 97.976805) - (xy 175.572371 97.976807) - (xy 175.572372 97.976808) - (xy 175.572373 97.976809) - (xy 175.687526 98.032263) - (xy 175.801992 98.087387) - (xy 175.801993 98.087387) - (xy 175.801996 98.087389) - (xy 175.90836 98.120197) - (xy 175.945029 98.131509) - (xy 176.003288 98.17008) - (xy 176.031446 98.234024) - (xy 176.020562 98.303041) - (xy 175.974093 98.355218) - (xy 175.945029 98.368491) - (xy 175.801992 98.412612) - (xy 175.572373 98.52319) - (xy 175.572372 98.523191) - (xy 175.361782 98.666768) - (xy 175.174952 98.840121) - (xy 175.17495 98.840123) - (xy 175.016041 99.039388) - (xy 174.888608 99.260109) - (xy 174.795492 99.497362) - (xy 174.79549 99.497369) - (xy 174.738777 99.745845) - (xy 174.719732 99.999995) - (xy 174.719732 100.000004) - (xy 174.738777 100.254154) - (xy 174.792329 100.488779) - (xy 174.795492 100.502637) - (xy 174.795494 100.502642) - (xy 174.834118 100.601054) - (xy 174.840287 100.67065) - (xy 174.807849 100.732534) - (xy 174.806371 100.734037) - (xy 169.287181 106.253228) - (xy 169.225858 106.286713) - (xy 169.156166 106.281729) - (xy 169.100233 106.239857) - (xy 169.075816 106.174393) - (xy 169.0755 106.165547) - (xy 169.0755 101.921847) - (xy 169.095185 101.854808) - (xy 169.111814 101.834171) - (xy 173.784167 97.161819) - (xy 173.84549 97.128334) - (xy 173.871848 97.1255) - (xy 174.759172 97.1255) - ) - ) - (filled_polygon - (layer "F.Cu") - (pts - (xy 149.911905 97.783753) - (xy 149.933804 97.809025) - (xy 150.019844 97.940719) - (xy 150.019849 97.940724) - (xy 150.01985 97.940727) - (xy 150.17295 98.107036) - (xy 150.172954 98.10704) - (xy 150.351351 98.245893) - (xy 150.409517 98.27737) - (xy 150.459107 98.326588) - (xy 150.4745 98.386425) - (xy 150.4745 101.375943) - (xy 150.454815 101.442982) - (xy 150.438181 101.463624) - (xy 149.397181 102.504624) - (xy 149.335858 102.538109) - (xy 149.266166 102.533125) - (xy 149.210233 102.491253) - (xy 149.185816 102.425789) - (xy 149.1855 102.416943) - (xy 149.1855 98.386425) - (xy 149.205185 98.319386) - (xy 149.250481 98.277371) - (xy 149.308649 98.245893) - (xy 149.487046 98.10704) - (xy 149.640156 97.940719) - (xy 149.726193 97.809028) - (xy 149.779338 97.763675) - (xy 149.848569 97.754251) - ) - ) - (filled_polygon - (layer "F.Cu") - (pts - (xy 85.493834 97.19327) - (xy 85.549767 97.235142) - (xy 85.574184 97.300606) - (xy 85.5745 97.309452) - (xy 85.5745 100.779799) - (xy 85.554815 100.846838) - (xy 85.502011 100.892593) - (xy 85.432853 100.902537) - (xy 85.369297 100.873512) - (xy 85.335072 100.825102) - (xy 85.323347 100.795228) - (xy 85.266393 100.650112) - (xy 85.138959 100.429388) - (xy 84.98005 100.230123) - (xy 84.793217 100.056768) - (xy 84.582634 99.913195) - (xy 84.582631 99.913194) - (xy 84.582629 99.913192) - (xy 84.415698 99.832802) - (xy 84.363838 99.785979) - (xy 84.3455 99.721082) - (xy 84.3455 98.290452) - (xy 84.365185 98.223413) - (xy 84.381819 98.202771) - (xy 85.362819 97.221771) - (xy 85.424142 97.188286) - ) - ) - (filled_polygon - (layer "F.Cu") - (pts - (xy 112.533155 145.146799) - (xy 112.492 145.286961) - (xy 112.492 145.433039) - (xy 112.533155 145.573201) - (xy 112.556804 145.61) - (xy 110.903196 145.61) - (xy 110.926845 145.573201) - (xy 110.968 145.433039) - (xy 110.968 145.286961) - (xy 110.926845 145.146799) - (xy 110.903196 145.11) - (xy 112.556804 145.11) - ) - ) - (filled_polygon - (layer "F.Cu") - (pts - (xy 130.271168 61.019685) - (xy 130.316923 61.072489) - (xy 130.326867 61.141647) - (xy 130.297842 61.205203) - (xy 130.281867 61.220606) - (xy 130.214828 61.274551) - (xy 129.991513 61.504853) - (xy 129.798195 61.760847) - (xy 129.637801 62.03866) - (xy 129.512768 62.334062) - (xy 129.51276 62.334086) - (xy 129.424979 62.642602) - (xy 129.424978 62.642607) - (xy 129.375772 62.959592) - (xy 129.375771 62.959603) - (xy 129.365893 63.280236) - (xy 129.395491 63.599651) - (xy 129.395492 63.599657) - (xy 129.464118 63.913013) - (xy 129.570735 64.215566) - (xy 129.713721 64.502721) - (xy 129.866462 64.733232) - (xy 129.890912 64.77013) - (xy 130.099622 65.013737) - (xy 130.336686 65.229849) - (xy 130.336689 65.229851) - (xy 130.598505 65.415187) - (xy 130.598515 65.415193) - (xy 130.881116 65.566948) - (xy 130.881122 65.56695) - (xy 130.881129 65.566954) - (xy 131.04259 65.629504) - (xy 131.180244 65.682832) - (xy 131.180247 65.682832) - (xy 131.180253 65.682835) - (xy 131.491351 65.761079) - (xy 131.610734 65.775861) - (xy 131.809702 65.8005) - (xy 131.809707 65.8005) - (xy 132.050212 65.8005) - (xy 132.050226 65.8005) - (xy 132.290278 65.785694) - (xy 132.605603 65.72675) - (xy 132.911294 65.629502) - (xy 133.202718 65.495426) - (xy 133.475456 65.326554) - (xy 133.725375 65.125445) - (xy 133.827615 65.020006) - (xy 143.211225 65.020006) - (xy 143.229892 65.245289) - (xy 143.285388 65.464439) - (xy 143.376198 65.671466) - (xy 143.499842 65.860716) - (xy 143.49985 65.860727) - (xy 143.64418 66.017509) - (xy 143.652954 66.02704) - (xy 143.831351 66.165893) - (xy 144.030169 66.273488) - (xy 144.030172 66.273489) - (xy 144.243982 66.34689) - (xy 144.243984 66.34689) - (xy 144.243986 66.346891) - (xy 144.466967 66.3841) - (xy 144.466968 66.3841) - (xy 144.693032 66.3841) - (xy 144.693033 66.3841) - (xy 144.916014 66.346891) - (xy 145.129831 66.273488) - (xy 145.328649 66.165893) - (xy 145.507046 66.02704) - (xy 145.606832 65.918643) - (xy 145.660149 65.860727) - (xy 145.660149 65.860726) - (xy 145.660156 65.860719) - (xy 145.746193 65.729028) - (xy 145.799338 65.683675) - (xy 145.868569 65.674251) - (xy 145.931905 65.703753) - (xy 145.953804 65.729025) - (xy 146.039844 65.860719) - (xy 146.039849 65.860724) - (xy 146.03985 65.860727) - (xy 146.18418 66.017509) - (xy 146.192954 66.02704) - (xy 146.371351 66.165893) - (xy 146.570169 66.273488) - (xy 146.570172 66.273489) - (xy 146.783982 66.34689) - (xy 146.783984 66.34689) - (xy 146.783986 66.346891) - (xy 147.006967 66.3841) - (xy 147.006968 66.3841) - (xy 147.233032 66.3841) - (xy 147.233033 66.3841) - (xy 147.456014 66.346891) - (xy 147.669831 66.273488) - (xy 147.868649 66.165893) - (xy 148.047046 66.02704) - (xy 148.101815 65.967545) - (xy 148.161699 65.931557) - (xy 148.231537 65.933657) - (xy 148.289153 65.97318) - (xy 148.309224 66.008196) - (xy 148.353046 66.125688) - (xy 148.353049 66.125693) - (xy 148.439209 66.240787) - (xy 148.439212 66.24079) - (xy 148.554306 66.32695) - (xy 148.554313 66.326954) - (xy 148.68902 66.377196) - (xy 148.689027 66.377198) - (xy 148.748555 66.383599) - (xy 148.748572 66.3836) - (xy 149.41 66.3836) - (xy 149.41 65.464297) - (xy 149.515408 65.512435) - (xy 149.623666 65.528) - (xy 149.696334 65.528) - (xy 149.804592 65.512435) - (xy 149.91 65.464297) - (xy 149.91 66.3836) - (xy 150.571428 66.3836) - (xy 150.571444 66.383599) - (xy 150.630972 66.377198) - (xy 150.630979 66.377196) - (xy 150.765686 66.326954) - (xy 150.765693 66.32695) - (xy 150.880787 66.24079) - (xy 150.88079 66.240787) - (xy 150.96695 66.125693) - (xy 150.966954 66.125686) - (xy 151.010775 66.008197) - (xy 151.052646 65.952263) - (xy 151.11811 65.927846) - (xy 151.186383 65.942698) - (xy 151.218186 65.967547) - (xy 151.26418 66.017509) - (xy 151.272954 66.02704) - (xy 151.451351 66.165893) - (xy 151.650169 66.273488) - (xy 151.650172 66.273489) - (xy 151.863982 66.34689) - (xy 151.863984 66.34689) - (xy 151.863986 66.346891) - (xy 152.086967 66.3841) - (xy 152.086968 66.3841) - (xy 152.313032 66.3841) - (xy 152.313033 66.3841) - (xy 152.536014 66.346891) - (xy 152.749831 66.273488) - (xy 152.948649 66.165893) - (xy 153.127046 66.02704) - (xy 153.226832 65.918643) - (xy 153.280149 65.860727) - (xy 153.280151 65.860724) - (xy 153.280156 65.860719) - (xy 153.403802 65.671465) - (xy 153.494611 65.464441) - (xy 153.550107 65.245293) - (xy 153.559327 65.134024) - (xy 153.568775 65.020006) - (xy 156.221225 65.020006) - (xy 156.239892 65.245289) - (xy 156.295388 65.464439) - (xy 156.386198 65.671466) - (xy 156.509842 65.860716) - (xy 156.50985 65.860727) - (xy 156.65418 66.017509) - (xy 156.662954 66.02704) - (xy 156.841351 66.165893) - (xy 157.040169 66.273488) - (xy 157.040172 66.273489) - (xy 157.253982 66.34689) - (xy 157.253984 66.34689) - (xy 157.253986 66.346891) - (xy 157.476967 66.3841) - (xy 157.476968 66.3841) - (xy 157.703032 66.3841) - (xy 157.703033 66.3841) - (xy 157.926014 66.346891) - (xy 158.139831 66.273488) - (xy 158.338649 66.165893) - (xy 158.517046 66.02704) - (xy 158.616832 65.918643) - (xy 158.670149 65.860727) - (xy 158.670149 65.860726) - (xy 158.670156 65.860719) - (xy 158.756193 65.729028) - (xy 158.809338 65.683675) - (xy 158.878569 65.674251) - (xy 158.941905 65.703753) - (xy 158.963804 65.729025) - (xy 159.049844 65.860719) - (xy 159.049849 65.860724) - (xy 159.04985 65.860727) - (xy 159.19418 66.017509) - (xy 159.202954 66.02704) - (xy 159.381351 66.165893) - (xy 159.580169 66.273488) - (xy 159.580172 66.273489) - (xy 159.793982 66.34689) - (xy 159.793984 66.34689) - (xy 159.793986 66.346891) - (xy 160.016967 66.3841) - (xy 160.016968 66.3841) - (xy 160.243032 66.3841) - (xy 160.243033 66.3841) - (xy 160.466014 66.346891) - (xy 160.679831 66.273488) - (xy 160.878649 66.165893) - (xy 161.057046 66.02704) - (xy 161.111815 65.967545) - (xy 161.171699 65.931557) - (xy 161.241537 65.933657) - (xy 161.299153 65.97318) - (xy 161.319224 66.008196) - (xy 161.363046 66.125688) - (xy 161.363049 66.125693) - (xy 161.449209 66.240787) - (xy 161.449212 66.24079) - (xy 161.564306 66.32695) - (xy 161.564313 66.326954) - (xy 161.69902 66.377196) - (xy 161.699027 66.377198) - (xy 161.758555 66.383599) - (xy 161.758572 66.3836) - (xy 162.42 66.3836) - (xy 162.42 65.464297) - (xy 162.525408 65.512435) - (xy 162.633666 65.528) - (xy 162.706334 65.528) - (xy 162.814592 65.512435) - (xy 162.92 65.464297) - (xy 162.92 66.3836) - (xy 163.581428 66.3836) - (xy 163.581444 66.383599) - (xy 163.640972 66.377198) - (xy 163.640979 66.377196) - (xy 163.775686 66.326954) - (xy 163.775693 66.32695) - (xy 163.890787 66.24079) - (xy 163.89079 66.240787) - (xy 163.97695 66.125693) - (xy 163.976954 66.125686) - (xy 164.020775 66.008197) - (xy 164.062646 65.952263) - (xy 164.12811 65.927846) - (xy 164.196383 65.942698) - (xy 164.228186 65.967547) - (xy 164.27418 66.017509) - (xy 164.282954 66.02704) - (xy 164.461351 66.165893) - (xy 164.660169 66.273488) - (xy 164.660172 66.273489) - (xy 164.873982 66.34689) - (xy 164.873984 66.34689) - (xy 164.873986 66.346891) - (xy 165.096967 66.3841) - (xy 165.096968 66.3841) - (xy 165.323032 66.3841) - (xy 165.323033 66.3841) - (xy 165.546014 66.346891) - (xy 165.759831 66.273488) - (xy 165.958649 66.165893) - (xy 166.137046 66.02704) - (xy 166.236832 65.918643) - (xy 166.290149 65.860727) - (xy 166.290151 65.860724) - (xy 166.290156 65.860719) - (xy 166.413802 65.671465) - (xy 166.504611 65.464441) - (xy 166.560107 65.245293) - (xy 166.569327 65.134024) - (xy 166.578775 65.020006) - (xy 166.578775 65.019993) - (xy 166.560107 64.79471) - (xy 166.560107 64.794707) - (xy 166.504611 64.575559) - (xy 166.413802 64.368535) - (xy 166.290156 64.179281) - (xy 166.290153 64.179278) - (xy 166.290149 64.179272) - (xy 166.137049 64.012963) - (xy 166.137048 64.012962) - (xy 166.137046 64.01296) - (xy 165.958649 63.874107) - (xy 165.93239 63.859896) - (xy 165.759832 63.766512) - (xy 165.759827 63.76651) - (xy 165.546017 63.693109) - (xy 165.364388 63.662801) - (xy 165.323033 63.6559) - (xy 165.096967 63.6559) - (xy 165.055612 63.662801) - (xy 164.873982 63.693109) - (xy 164.660172 63.76651) - (xy 164.660167 63.766512) - (xy 164.461352 63.874106) - (xy 164.282955 64.012958) - (xy 164.228186 64.072453) - (xy 164.168298 64.108443) - (xy 164.09846 64.106342) - (xy 164.040845 64.066817) - (xy 164.020775 64.031802) - (xy 163.976954 63.914313) - (xy 163.97695 63.914306) - (xy 163.89079 63.799212) - (xy 163.890787 63.799209) - (xy 163.775693 63.713049) - (xy 163.775686 63.713045) - (xy 163.640979 63.662803) - (xy 163.640972 63.662801) - (xy 163.581444 63.6564) - (xy 162.92 63.6564) - (xy 162.92 64.575702) - (xy 162.814592 64.527565) - (xy 162.706334 64.512) - (xy 162.633666 64.512) - (xy 162.525408 64.527565) - (xy 162.42 64.575702) - (xy 162.42 63.6564) - (xy 161.758555 63.6564) - (xy 161.699027 63.662801) - (xy 161.69902 63.662803) - (xy 161.564313 63.713045) - (xy 161.564306 63.713049) - (xy 161.449212 63.799209) - (xy 161.449209 63.799212) - (xy 161.363049 63.914306) - (xy 161.363046 63.914312) - (xy 161.319224 64.031803) - (xy 161.277352 64.087736) - (xy 161.211887 64.112153) - (xy 161.143615 64.097301) - (xy 161.111813 64.072452) - (xy 161.057049 64.012963) - (xy 161.057048 64.012962) - (xy 161.057046 64.01296) - (xy 160.878649 63.874107) - (xy 160.85239 63.859896) - (xy 160.679832 63.766512) - (xy 160.679827 63.76651) - (xy 160.466017 63.693109) - (xy 160.284388 63.662801) - (xy 160.243033 63.6559) - (xy 160.016967 63.6559) - (xy 159.975612 63.662801) - (xy 159.793982 63.693109) - (xy 159.580172 63.76651) - (xy 159.580167 63.766512) - (xy 159.381352 63.874106) - (xy 159.202955 64.012959) - (xy 159.20295 64.012963) - (xy 159.04985 64.179272) - (xy 159.049842 64.179283) - (xy 158.963808 64.310968) - (xy 158.910662 64.356325) - (xy 158.84143 64.365748) - (xy 158.778095 64.336246) - (xy 158.756192 64.310968) - (xy 158.670157 64.179283) - (xy 158.670149 64.179272) - (xy 158.517049 64.012963) - (xy 158.517048 64.012962) - (xy 158.517046 64.01296) - (xy 158.338649 63.874107) - (xy 158.31239 63.859896) - (xy 158.139832 63.766512) - (xy 158.139827 63.76651) - (xy 157.926017 63.693109) - (xy 157.744388 63.662801) - (xy 157.703033 63.6559) - (xy 157.476967 63.6559) - (xy 157.435612 63.662801) - (xy 157.253982 63.693109) - (xy 157.040172 63.76651) - (xy 157.040167 63.766512) - (xy 156.841352 63.874106) - (xy 156.662955 64.012959) - (xy 156.66295 64.012963) - (xy 156.50985 64.179272) - (xy 156.509842 64.179283) - (xy 156.386198 64.368533) - (xy 156.295388 64.57556) - (xy 156.239892 64.79471) - (xy 156.221225 65.019993) - (xy 156.221225 65.020006) - (xy 153.568775 65.020006) - (xy 153.568775 65.019993) - (xy 153.550107 64.79471) - (xy 153.550107 64.794707) - (xy 153.494611 64.575559) - (xy 153.403802 64.368535) - (xy 153.280156 64.179281) - (xy 153.280153 64.179278) - (xy 153.280149 64.179272) - (xy 153.127049 64.012963) - (xy 153.127048 64.012962) - (xy 153.127046 64.01296) - (xy 152.948649 63.874107) - (xy 152.92239 63.859896) - (xy 152.749832 63.766512) - (xy 152.749827 63.76651) - (xy 152.536017 63.693109) - (xy 152.354388 63.662801) - (xy 152.313033 63.6559) - (xy 152.086967 63.6559) - (xy 152.045612 63.662801) - (xy 151.863982 63.693109) - (xy 151.650172 63.76651) - (xy 151.650167 63.766512) - (xy 151.451352 63.874106) - (xy 151.272955 64.012958) - (xy 151.218186 64.072453) - (xy 151.158298 64.108443) - (xy 151.08846 64.106342) - (xy 151.030845 64.066817) - (xy 151.010775 64.031802) - (xy 150.966954 63.914313) - (xy 150.96695 63.914306) - (xy 150.88079 63.799212) - (xy 150.880787 63.799209) - (xy 150.765693 63.713049) - (xy 150.765686 63.713045) - (xy 150.630979 63.662803) - (xy 150.630972 63.662801) - (xy 150.571444 63.6564) - (xy 149.91 63.6564) - (xy 149.91 64.575702) - (xy 149.804592 64.527565) - (xy 149.696334 64.512) - (xy 149.623666 64.512) - (xy 149.515408 64.527565) - (xy 149.41 64.575702) - (xy 149.41 63.6564) - (xy 148.748555 63.6564) - (xy 148.689027 63.662801) - (xy 148.68902 63.662803) - (xy 148.554313 63.713045) - (xy 148.554306 63.713049) - (xy 148.439212 63.799209) - (xy 148.439209 63.799212) - (xy 148.353049 63.914306) - (xy 148.353046 63.914312) - (xy 148.309224 64.031803) - (xy 148.267352 64.087736) - (xy 148.201887 64.112153) - (xy 148.133615 64.097301) - (xy 148.101813 64.072452) - (xy 148.047049 64.012963) - (xy 148.047048 64.012962) - (xy 148.047046 64.01296) - (xy 147.868649 63.874107) - (xy 147.84239 63.859896) - (xy 147.669832 63.766512) - (xy 147.669827 63.76651) - (xy 147.456017 63.693109) - (xy 147.274388 63.662801) - (xy 147.233033 63.6559) - (xy 147.006967 63.6559) - (xy 146.965612 63.662801) - (xy 146.783982 63.693109) - (xy 146.570172 63.76651) - (xy 146.570167 63.766512) - (xy 146.371352 63.874106) - (xy 146.192955 64.012959) - (xy 146.19295 64.012963) - (xy 146.03985 64.179272) - (xy 146.039846 64.179278) - (xy 145.953807 64.310969) - (xy 145.90066 64.356325) - (xy 145.831429 64.365748) - (xy 145.768093 64.336245) - (xy 145.746192 64.310969) - (xy 145.660156 64.179281) - (xy 145.660151 64.179276) - (xy 145.660149 64.179272) - (xy 145.507049 64.012963) - (xy 145.507048 64.012962) - (xy 145.507046 64.01296) - (xy 145.328649 63.874107) - (xy 145.30239 63.859896) - (xy 145.129832 63.766512) - (xy 145.129827 63.76651) - (xy 144.916017 63.693109) - (xy 144.734388 63.662801) - (xy 144.693033 63.6559) - (xy 144.466967 63.6559) - (xy 144.425612 63.662801) - (xy 144.243982 63.693109) - (xy 144.030172 63.76651) - (xy 144.030167 63.766512) - (xy 143.831352 63.874106) - (xy 143.652955 64.012959) - (xy 143.65295 64.012963) - (xy 143.49985 64.179272) - (xy 143.499842 64.179283) - (xy 143.376198 64.368533) - (xy 143.285388 64.57556) - (xy 143.229892 64.79471) - (xy 143.211225 65.019993) - (xy 143.211225 65.020006) - (xy 133.827615 65.020006) - (xy 133.948685 64.895148) - (xy 134.142003 64.639155) - (xy 134.302396 64.361345) - (xy 134.427434 64.065931) - (xy 134.515222 63.75739) - (xy 134.564428 63.4404) - (xy 134.574306 63.119765) - (xy 134.544708 62.800347) - (xy 134.513996 62.660112) - (xy 134.476081 62.486986) - (xy 134.447074 62.404671) - (xy 134.369466 62.184436) - (xy 134.226479 61.897279) - (xy 134.049288 61.62987) - (xy 133.840578 61.386263) - (xy 133.65341 61.215637) - (xy 133.617128 61.155926) - (xy 133.618889 61.086078) - (xy 133.658132 61.028271) - (xy 133.722399 61.000856) - (xy 133.736948 61) - (xy 178.876 61) - (xy 178.943039 61.019685) - (xy 178.988794 61.072489) - (xy 179 61.124) - (xy 179 158.876) - (xy 178.980315 158.943039) - (xy 178.927511 158.988794) - (xy 178.876 159) - (xy 81.124 159) - (xy 81.056961 158.980315) - (xy 81.011206 158.927511) - (xy 81 158.876) - (xy 81 156.400004) - (xy 82.395233 156.400004) - (xy 82.414273 156.654079) - (xy 82.470968 156.902477) - (xy 82.470973 156.902494) - (xy 82.564058 157.139671) - (xy 82.564057 157.139671) - (xy 82.691457 157.360332) - (xy 82.733452 157.412993) - (xy 82.733453 157.412993) - (xy 83.537226 156.609219) - (xy 83.575901 156.702588) - (xy 83.672075 156.827925) - (xy 83.797412 156.924099) - (xy 83.890779 156.962772) - (xy 83.086813 157.766737) - (xy 83.247623 157.876375) - (xy 83.247624 157.876376) - (xy 83.477176 157.986921) - (xy 83.477174 157.986921) - (xy 83.720652 158.062024) - (xy 83.720658 158.062026) - (xy 83.972595 158.099999) - (xy 83.972604 158.1) - (xy 84.227396 158.1) - (xy 84.227404 158.099999) - (xy 84.479341 158.062026) - (xy 84.479347 158.062024) - (xy 84.722824 157.986921) - (xy 84.952381 157.876373) - (xy 85.113185 157.766737) - (xy 84.30922 156.962772) - (xy 84.402588 156.924099) - (xy 84.527925 156.827925) - (xy 84.624099 156.702589) - (xy 84.662773 156.60922) - (xy 85.466545 157.412993) - (xy 85.508545 157.360327) - (xy 85.635941 157.139671) - (xy 85.729026 156.902494) - (xy 85.729032 156.902475) - (xy 85.729108 156.902145) - (xy 85.729167 156.902038) - (xy 85.7304 156.898044) - (xy 85.731254 156.898307) - (xy 85.763214 156.841165) - (xy 85.824874 156.808304) - (xy 85.894511 156.813996) - (xy 85.950017 156.856433) - (xy 85.96909 156.898201) - (xy 85.9696 156.898044) - (xy 85.970809 156.901965) - (xy 85.970892 156.902145) - (xy 85.970967 156.902475) - (xy 85.970973 156.902494) - (xy 86.064058 157.139671) - (xy 86.064057 157.139671) - (xy 86.191457 157.360332) - (xy 86.233452 157.412993) - (xy 86.233453 157.412993) - (xy 87.037226 156.609219) - (xy 87.075901 156.702588) - (xy 87.172075 156.827925) - (xy 87.297412 156.924099) - (xy 87.390779 156.962772) - (xy 86.586813 157.766737) - (xy 86.747623 157.876375) - (xy 86.747624 157.876376) - (xy 86.977176 157.986921) - (xy 86.977174 157.986921) - (xy 87.220652 158.062024) - (xy 87.220658 158.062026) - (xy 87.472595 158.099999) - (xy 87.472604 158.1) - (xy 87.727396 158.1) - (xy 87.727404 158.099999) - (xy 87.979341 158.062026) - (xy 87.979347 158.062024) - (xy 88.222824 157.986921) - (xy 88.452381 157.876373) - (xy 88.613185 157.766737) - (xy 87.80922 156.962772) - (xy 87.902588 156.924099) - (xy 88.027925 156.827925) - (xy 88.124099 156.702589) - (xy 88.162773 156.60922) - (xy 88.966545 157.412993) - (xy 89.008545 157.360327) - (xy 89.135941 157.139671) - (xy 89.229026 156.902494) - (xy 89.229031 156.902477) - (xy 89.285726 156.654079) - (xy 89.304767 156.400004) - (xy 92.895233 156.400004) - (xy 92.914273 156.654079) - (xy 92.970968 156.902477) - (xy 92.970973 156.902494) - (xy 93.064058 157.139671) - (xy 93.064057 157.139671) - (xy 93.191457 157.360332) - (xy 93.233452 157.412993) - (xy 93.233453 157.412993) - (xy 94.037226 156.609219) - (xy 94.075901 156.702588) - (xy 94.172075 156.827925) - (xy 94.297412 156.924099) - (xy 94.390779 156.962772) - (xy 93.586813 157.766737) - (xy 93.747623 157.876375) - (xy 93.747624 157.876376) - (xy 93.977176 157.986921) - (xy 93.977174 157.986921) - (xy 94.220652 158.062024) - (xy 94.220658 158.062026) - (xy 94.472595 158.099999) - (xy 94.472604 158.1) - (xy 94.727396 158.1) - (xy 94.727404 158.099999) - (xy 94.979341 158.062026) - (xy 94.979347 158.062024) - (xy 95.222824 157.986921) - (xy 95.452381 157.876373) - (xy 95.613185 157.766737) - (xy 94.80922 156.962772) - (xy 94.902588 156.924099) - (xy 95.027925 156.827925) - (xy 95.124099 156.702589) - (xy 95.162773 156.60922) - (xy 95.966545 157.412993) - (xy 96.008545 157.360327) - (xy 96.135941 157.139671) - (xy 96.229026 156.902494) - (xy 96.2304 156.898044) - (xy 96.231574 156.898406) - (xy 96.262945 156.8423) - (xy 96.324601 156.809432) - (xy 96.394239 156.815115) - (xy 96.44975 156.857545) - (xy 96.46842 156.898412) - (xy 96.469122 156.898196) - (xy 96.47049 156.90263) - (xy 96.470492 156.902637) - (xy 96.563607 157.139888) - (xy 96.691041 157.360612) - (xy 96.84995 157.559877) - (xy 97.036783 157.733232) - (xy 97.247366 157.876805) - (xy 97.247371 157.876807) - (xy 97.247372 157.876808) - (xy 97.247373 157.876809) - (xy 97.369328 157.935538) - (xy 97.476992 157.987387) - (xy 97.476993 157.987387) - (xy 97.476996 157.987389) - (xy 97.720542 158.062513) - (xy 97.972565 158.1005) - (xy 98.227435 158.1005) - (xy 98.479458 158.062513) - (xy 98.723004 157.987389) - (xy 98.952634 157.876805) - (xy 99.163217 157.733232) - (xy 99.35005 157.559877) - (xy 99.508959 157.360612) - (xy 99.636393 157.139888) - (xy 99.729508 156.902637) - (xy 99.72951 156.902624) - (xy 99.730878 156.898196) - (xy 99.732324 156.898642) - (xy 99.763213 156.843412) - (xy 99.824873 156.810552) - (xy 99.89451 156.816243) - (xy 99.950016 156.85868) - (xy 99.968192 156.898482) - (xy 99.969122 156.898196) - (xy 99.97049 156.90263) - (xy 99.970492 156.902637) - (xy 100.063607 157.139888) - (xy 100.191041 157.360612) - (xy 100.34995 157.559877) - (xy 100.536783 157.733232) - (xy 100.747366 157.876805) - (xy 100.747371 157.876807) - (xy 100.747372 157.876808) - (xy 100.747373 157.876809) - (xy 100.869328 157.935538) - (xy 100.976992 157.987387) - (xy 100.976993 157.987387) - (xy 100.976996 157.987389) - (xy 101.220542 158.062513) - (xy 101.472565 158.1005) - (xy 101.727435 158.1005) - (xy 101.979458 158.062513) - (xy 102.223004 157.987389) - (xy 102.452634 157.876805) - (xy 102.663217 157.733232) - (xy 102.85005 157.559877) - (xy 103.008959 157.360612) - (xy 103.136393 157.139888) - (xy 103.229508 156.902637) - (xy 103.22951 156.902624) - (xy 103.230878 156.898196) - (xy 103.232008 156.898544) - (xy 103.263464 156.842295) - (xy 103.325121 156.80943) - (xy 103.394759 156.815117) - (xy 103.450268 156.857551) - (xy 103.468868 156.898269) - (xy 103.4696 156.898044) - (xy 103.470973 156.902494) - (xy 103.564058 157.139671) - (xy 103.564057 157.139671) - (xy 103.691457 157.360332) - (xy 103.733452 157.412993) - (xy 103.733453 157.412993) - (xy 104.537226 156.609219) - (xy 104.575901 156.702588) - (xy 104.672075 156.827925) - (xy 104.797412 156.924099) - (xy 104.890779 156.962772) - (xy 104.086813 157.766737) - (xy 104.247623 157.876375) - (xy 104.247624 157.876376) - (xy 104.477176 157.986921) - (xy 104.477174 157.986921) - (xy 104.720652 158.062024) - (xy 104.720658 158.062026) - (xy 104.972595 158.099999) - (xy 104.972604 158.1) - (xy 105.227396 158.1) - (xy 105.227404 158.099999) - (xy 105.479341 158.062026) - (xy 105.479347 158.062024) - (xy 105.722824 157.986921) - (xy 105.952381 157.876373) - (xy 106.113185 157.766737) - (xy 105.30922 156.962772) - (xy 105.402588 156.924099) - (xy 105.527925 156.827925) - (xy 105.624099 156.702589) - (xy 105.662773 156.60922) - (xy 106.466545 157.412993) - (xy 106.508545 157.360327) - (xy 106.635941 157.139671) - (xy 106.729026 156.902494) - (xy 106.7304 156.898044) - (xy 106.731574 156.898406) - (xy 106.762945 156.8423) - (xy 106.824601 156.809432) - (xy 106.894239 156.815115) - (xy 106.94975 156.857545) - (xy 106.96842 156.898412) - (xy 106.969122 156.898196) - (xy 106.97049 156.90263) - (xy 106.970492 156.902637) - (xy 107.063607 157.139888) - (xy 107.191041 157.360612) - (xy 107.34995 157.559877) - (xy 107.536783 157.733232) - (xy 107.747366 157.876805) - (xy 107.747371 157.876807) - (xy 107.747372 157.876808) - (xy 107.747373 157.876809) - (xy 107.869328 157.935538) - (xy 107.976992 157.987387) - (xy 107.976993 157.987387) - (xy 107.976996 157.987389) - (xy 108.220542 158.062513) - (xy 108.472565 158.1005) - (xy 108.727435 158.1005) - (xy 108.979458 158.062513) - (xy 109.223004 157.987389) - (xy 109.452634 157.876805) - (xy 109.663217 157.733232) - (xy 109.85005 157.559877) - (xy 110.008959 157.360612) - (xy 110.136393 157.139888) - (xy 110.229508 156.902637) - (xy 110.22951 156.902624) - (xy 110.230878 156.898196) - (xy 110.232324 156.898642) - (xy 110.263213 156.843412) - (xy 110.324873 156.810552) - (xy 110.39451 156.816243) - (xy 110.450016 156.85868) - (xy 110.468192 156.898482) - (xy 110.469122 156.898196) - (xy 110.47049 156.90263) - (xy 110.470492 156.902637) - (xy 110.563607 157.139888) - (xy 110.691041 157.360612) - (xy 110.84995 157.559877) - (xy 111.036783 157.733232) - (xy 111.247366 157.876805) - (xy 111.247371 157.876807) - (xy 111.247372 157.876808) - (xy 111.247373 157.876809) - (xy 111.369328 157.935538) - (xy 111.476992 157.987387) - (xy 111.476993 157.987387) - (xy 111.476996 157.987389) - (xy 111.720542 158.062513) - (xy 111.972565 158.1005) - (xy 112.227435 158.1005) - (xy 112.479458 158.062513) - (xy 112.723004 157.987389) - (xy 112.952634 157.876805) - (xy 113.163217 157.733232) - (xy 113.35005 157.559877) - (xy 113.508959 157.360612) - (xy 113.636393 157.139888) - (xy 113.729508 156.902637) - (xy 113.72951 156.902624) - (xy 113.730878 156.898196) - (xy 113.732008 156.898544) - (xy 113.763464 156.842295) - (xy 113.825121 156.80943) - (xy 113.894759 156.815117) - (xy 113.950268 156.857551) - (xy 113.968868 156.898269) - (xy 113.9696 156.898044) - (xy 113.970973 156.902494) - (xy 114.064058 157.139671) - (xy 114.064057 157.139671) - (xy 114.191457 157.360332) - (xy 114.233452 157.412993) - (xy 114.233453 157.412993) - (xy 115.037226 156.609219) - (xy 115.075901 156.702588) - (xy 115.172075 156.827925) - (xy 115.297412 156.924099) - (xy 115.390779 156.962772) - (xy 114.586813 157.766737) - (xy 114.747623 157.876375) - (xy 114.747624 157.876376) - (xy 114.977176 157.986921) - (xy 114.977174 157.986921) - (xy 115.220652 158.062024) - (xy 115.220658 158.062026) - (xy 115.472595 158.099999) - (xy 115.472604 158.1) - (xy 115.727396 158.1) - (xy 115.727404 158.099999) - (xy 115.979341 158.062026) - (xy 115.979347 158.062024) - (xy 116.222824 157.986921) - (xy 116.452381 157.876373) - (xy 116.613185 157.766737) - (xy 115.80922 156.962772) - (xy 115.902588 156.924099) - (xy 116.027925 156.827925) - (xy 116.124099 156.702589) - (xy 116.162772 156.60922) - (xy 116.966545 157.412993) - (xy 117.008545 157.360327) - (xy 117.135941 157.139671) - (xy 117.229026 156.902494) - (xy 117.2304 156.898044) - (xy 117.231574 156.898406) - (xy 117.262945 156.8423) - (xy 117.324601 156.809432) - (xy 117.394239 156.815115) - (xy 117.44975 156.857545) - (xy 117.46842 156.898412) - (xy 117.469122 156.898196) - (xy 117.47049 156.90263) - (xy 117.470492 156.902637) - (xy 117.563607 157.139888) - (xy 117.691041 157.360612) - (xy 117.84995 157.559877) - (xy 118.036783 157.733232) - (xy 118.247366 157.876805) - (xy 118.247371 157.876807) - (xy 118.247372 157.876808) - (xy 118.247373 157.876809) - (xy 118.369328 157.935538) - (xy 118.476992 157.987387) - (xy 118.476993 157.987387) - (xy 118.476996 157.987389) - (xy 118.720542 158.062513) - (xy 118.972565 158.1005) - (xy 119.227435 158.1005) - (xy 119.479458 158.062513) - (xy 119.723004 157.987389) - (xy 119.952634 157.876805) - (xy 120.163217 157.733232) - (xy 120.35005 157.559877) - (xy 120.508959 157.360612) - (xy 120.636393 157.139888) - (xy 120.729508 156.902637) - (xy 120.72951 156.902624) - (xy 120.730878 156.898196) - (xy 120.732324 156.898642) - (xy 120.763213 156.843412) - (xy 120.824873 156.810552) - (xy 120.89451 156.816243) - (xy 120.950016 156.85868) - (xy 120.968192 156.898482) - (xy 120.969122 156.898196) - (xy 120.97049 156.90263) - (xy 120.970492 156.902637) - (xy 121.063607 157.139888) - (xy 121.191041 157.360612) - (xy 121.34995 157.559877) - (xy 121.536783 157.733232) - (xy 121.747366 157.876805) - (xy 121.747371 157.876807) - (xy 121.747372 157.876808) - (xy 121.747373 157.876809) - (xy 121.869328 157.935538) - (xy 121.976992 157.987387) - (xy 121.976993 157.987387) - (xy 121.976996 157.987389) - (xy 122.220542 158.062513) - (xy 122.472565 158.1005) - (xy 122.727435 158.1005) - (xy 122.979458 158.062513) - (xy 123.223004 157.987389) - (xy 123.452634 157.876805) - (xy 123.663217 157.733232) - (xy 123.85005 157.559877) - (xy 124.008959 157.360612) - (xy 124.136393 157.139888) - (xy 124.229508 156.902637) - (xy 124.22951 156.902624) - (xy 124.230878 156.898196) - (xy 124.232008 156.898544) - (xy 124.263464 156.842295) - (xy 124.325121 156.80943) - (xy 124.394759 156.815117) - (xy 124.450268 156.857551) - (xy 124.468868 156.898269) - (xy 124.4696 156.898044) - (xy 124.470973 156.902494) - (xy 124.564058 157.139671) - (xy 124.564057 157.139671) - (xy 124.691457 157.360332) - (xy 124.733452 157.412993) - (xy 125.537226 156.609219) - (xy 125.575901 156.702588) - (xy 125.672075 156.827925) - (xy 125.797412 156.924099) - (xy 125.890779 156.962772) - (xy 125.086813 157.766737) - (xy 125.247623 157.876375) - (xy 125.247624 157.876376) - (xy 125.477176 157.986921) - (xy 125.477174 157.986921) - (xy 125.720652 158.062024) - (xy 125.720658 158.062026) - (xy 125.972595 158.099999) - (xy 125.972604 158.1) - (xy 126.227396 158.1) - (xy 126.227404 158.099999) - (xy 126.479341 158.062026) - (xy 126.479347 158.062024) - (xy 126.722824 157.986921) - (xy 126.952381 157.876373) - (xy 127.113185 157.766737) - (xy 126.30922 156.962772) - (xy 126.402588 156.924099) - (xy 126.527925 156.827925) - (xy 126.624099 156.702589) - (xy 126.662773 156.60922) - (xy 127.466545 157.412993) - (xy 127.508545 157.360327) - (xy 127.635941 157.139671) - (xy 127.729026 156.902494) - (xy 127.7304 156.898044) - (xy 127.731574 156.898406) - (xy 127.762945 156.8423) - (xy 127.824601 156.809432) - (xy 127.894239 156.815115) - (xy 127.94975 156.857545) - (xy 127.96842 156.898412) - (xy 127.969122 156.898196) - (xy 127.97049 156.90263) - (xy 127.970492 156.902637) - (xy 128.063607 157.139888) - (xy 128.191041 157.360612) - (xy 128.34995 157.559877) - (xy 128.536783 157.733232) - (xy 128.747366 157.876805) - (xy 128.747371 157.876807) - (xy 128.747372 157.876808) - (xy 128.747373 157.876809) - (xy 128.869328 157.935538) - (xy 128.976992 157.987387) - (xy 128.976993 157.987387) - (xy 128.976996 157.987389) - (xy 129.220542 158.062513) - (xy 129.472565 158.1005) - (xy 129.727435 158.1005) - (xy 129.979458 158.062513) - (xy 130.223004 157.987389) - (xy 130.452634 157.876805) - (xy 130.663217 157.733232) - (xy 130.85005 157.559877) - (xy 131.008959 157.360612) - (xy 131.136393 157.139888) - (xy 131.229508 156.902637) - (xy 131.22951 156.902624) - (xy 131.230878 156.898196) - (xy 131.232324 156.898642) - (xy 131.263213 156.843412) - (xy 131.324873 156.810552) - (xy 131.39451 156.816243) - (xy 131.450016 156.85868) - (xy 131.468192 156.898482) - (xy 131.469122 156.898196) - (xy 131.47049 156.90263) - (xy 131.470492 156.902637) - (xy 131.563607 157.139888) - (xy 131.691041 157.360612) - (xy 131.84995 157.559877) - (xy 132.036783 157.733232) - (xy 132.247366 157.876805) - (xy 132.247371 157.876807) - (xy 132.247372 157.876808) - (xy 132.247373 157.876809) - (xy 132.369328 157.935538) - (xy 132.476992 157.987387) - (xy 132.476993 157.987387) - (xy 132.476996 157.987389) - (xy 132.720542 158.062513) - (xy 132.972565 158.1005) - (xy 133.227435 158.1005) - (xy 133.479458 158.062513) - (xy 133.723004 157.987389) - (xy 133.952634 157.876805) - (xy 134.163217 157.733232) - (xy 134.35005 157.559877) - (xy 134.508959 157.360612) - (xy 134.636393 157.139888) - (xy 134.729508 156.902637) - (xy 134.72951 156.902624) - (xy 134.730878 156.898196) - (xy 134.732008 156.898544) - (xy 134.763464 156.842295) - (xy 134.825121 156.80943) - (xy 134.894759 156.815117) - (xy 134.950268 156.857551) - (xy 134.968868 156.898269) - (xy 134.9696 156.898044) - (xy 134.970973 156.902494) - (xy 135.064058 157.139671) - (xy 135.064057 157.139671) - (xy 135.191457 157.360332) - (xy 135.233452 157.412993) - (xy 136.037226 156.609218) - (xy 136.075901 156.702588) - (xy 136.172075 156.827925) - (xy 136.297412 156.924099) - (xy 136.390779 156.962772) - (xy 135.586813 157.766737) - (xy 135.747623 157.876375) - (xy 135.747624 157.876376) - (xy 135.977176 157.986921) - (xy 135.977174 157.986921) - (xy 136.220652 158.062024) - (xy 136.220658 158.062026) - (xy 136.472595 158.099999) - (xy 136.472604 158.1) - (xy 136.727396 158.1) - (xy 136.727404 158.099999) - (xy 136.979341 158.062026) - (xy 136.979347 158.062024) - (xy 137.222824 157.986921) - (xy 137.452381 157.876373) - (xy 137.613185 157.766737) - (xy 136.80922 156.962772) - (xy 136.902588 156.924099) - (xy 137.027925 156.827925) - (xy 137.124099 156.702589) - (xy 137.162773 156.60922) - (xy 137.966545 157.412993) - (xy 138.008545 157.360327) - (xy 138.135941 157.139671) - (xy 138.229026 156.902494) - (xy 138.2304 156.898044) - (xy 138.231574 156.898406) - (xy 138.262945 156.8423) - (xy 138.324601 156.809432) - (xy 138.394239 156.815115) - (xy 138.44975 156.857545) - (xy 138.46842 156.898412) - (xy 138.469122 156.898196) - (xy 138.47049 156.90263) - (xy 138.470492 156.902637) - (xy 138.563607 157.139888) - (xy 138.691041 157.360612) - (xy 138.84995 157.559877) - (xy 139.036783 157.733232) - (xy 139.247366 157.876805) - (xy 139.247371 157.876807) - (xy 139.247372 157.876808) - (xy 139.247373 157.876809) - (xy 139.369328 157.935538) - (xy 139.476992 157.987387) - (xy 139.476993 157.987387) - (xy 139.476996 157.987389) - (xy 139.720542 158.062513) - (xy 139.972565 158.1005) - (xy 140.227435 158.1005) - (xy 140.479458 158.062513) - (xy 140.723004 157.987389) - (xy 140.952634 157.876805) - (xy 141.163217 157.733232) - (xy 141.35005 157.559877) - (xy 141.508959 157.360612) - (xy 141.636393 157.139888) - (xy 141.729508 156.902637) - (xy 141.72951 156.902624) - (xy 141.730878 156.898196) - (xy 141.732324 156.898642) - (xy 141.763213 156.843412) - (xy 141.824873 156.810552) - (xy 141.89451 156.816243) - (xy 141.950016 156.85868) - (xy 141.968192 156.898482) - (xy 141.969122 156.898196) - (xy 141.97049 156.90263) - (xy 141.970492 156.902637) - (xy 142.063607 157.139888) - (xy 142.191041 157.360612) - (xy 142.34995 157.559877) - (xy 142.536783 157.733232) - (xy 142.747366 157.876805) - (xy 142.747371 157.876807) - (xy 142.747372 157.876808) - (xy 142.747373 157.876809) - (xy 142.869328 157.935538) - (xy 142.976992 157.987387) - (xy 142.976993 157.987387) - (xy 142.976996 157.987389) - (xy 143.220542 158.062513) - (xy 143.472565 158.1005) - (xy 143.727435 158.1005) - (xy 143.979458 158.062513) - (xy 144.223004 157.987389) - (xy 144.452634 157.876805) - (xy 144.663217 157.733232) - (xy 144.85005 157.559877) - (xy 145.008959 157.360612) - (xy 145.136393 157.139888) - (xy 145.229508 156.902637) - (xy 145.22951 156.902624) - (xy 145.230878 156.898196) - (xy 145.232008 156.898544) - (xy 145.263464 156.842295) - (xy 145.325121 156.80943) - (xy 145.394759 156.815117) - (xy 145.450268 156.857551) - (xy 145.468868 156.898269) - (xy 145.4696 156.898044) - (xy 145.470973 156.902494) - (xy 145.564058 157.139671) - (xy 145.564057 157.139671) - (xy 145.691457 157.360332) - (xy 145.733452 157.412993) - (xy 146.537226 156.609219) - (xy 146.575901 156.702588) - (xy 146.672075 156.827925) - (xy 146.797412 156.924099) - (xy 146.890779 156.962772) - (xy 146.086813 157.766737) - (xy 146.247623 157.876375) - (xy 146.247624 157.876376) - (xy 146.477176 157.986921) - (xy 146.477174 157.986921) - (xy 146.720652 158.062024) - (xy 146.720658 158.062026) - (xy 146.972595 158.099999) - (xy 146.972604 158.1) - (xy 147.227396 158.1) - (xy 147.227404 158.099999) - (xy 147.479341 158.062026) - (xy 147.479347 158.062024) - (xy 147.722824 157.986921) - (xy 147.952381 157.876373) - (xy 148.113185 157.766737) - (xy 147.30922 156.962772) - (xy 147.402588 156.924099) - (xy 147.527925 156.827925) - (xy 147.624099 156.702589) - (xy 147.662772 156.60922) - (xy 148.466545 157.412993) - (xy 148.508545 157.360327) - (xy 148.635941 157.139671) - (xy 148.729026 156.902494) - (xy 148.7304 156.898044) - (xy 148.731574 156.898406) - (xy 148.762945 156.8423) - (xy 148.824601 156.809432) - (xy 148.894239 156.815115) - (xy 148.94975 156.857545) - (xy 148.96842 156.898412) - (xy 148.969122 156.898196) - (xy 148.97049 156.90263) - (xy 148.970492 156.902637) - (xy 149.063607 157.139888) - (xy 149.191041 157.360612) - (xy 149.34995 157.559877) - (xy 149.536783 157.733232) - (xy 149.747366 157.876805) - (xy 149.747371 157.876807) - (xy 149.747372 157.876808) - (xy 149.747373 157.876809) - (xy 149.869328 157.935538) - (xy 149.976992 157.987387) - (xy 149.976993 157.987387) - (xy 149.976996 157.987389) - (xy 150.220542 158.062513) - (xy 150.472565 158.1005) - (xy 150.727435 158.1005) - (xy 150.979458 158.062513) - (xy 151.223004 157.987389) - (xy 151.452634 157.876805) - (xy 151.663217 157.733232) - (xy 151.85005 157.559877) - (xy 152.008959 157.360612) - (xy 152.136393 157.139888) - (xy 152.229508 156.902637) - (xy 152.22951 156.902624) - (xy 152.230878 156.898196) - (xy 152.232324 156.898642) - (xy 152.263213 156.843412) - (xy 152.324873 156.810552) - (xy 152.39451 156.816243) - (xy 152.450016 156.85868) - (xy 152.468192 156.898482) - (xy 152.469122 156.898196) - (xy 152.47049 156.90263) - (xy 152.470492 156.902637) - (xy 152.563607 157.139888) - (xy 152.691041 157.360612) - (xy 152.84995 157.559877) - (xy 153.036783 157.733232) - (xy 153.247366 157.876805) - (xy 153.247371 157.876807) - (xy 153.247372 157.876808) - (xy 153.247373 157.876809) - (xy 153.369328 157.935538) - (xy 153.476992 157.987387) - (xy 153.476993 157.987387) - (xy 153.476996 157.987389) - (xy 153.720542 158.062513) - (xy 153.972565 158.1005) - (xy 154.227435 158.1005) - (xy 154.479458 158.062513) - (xy 154.723004 157.987389) - (xy 154.952634 157.876805) - (xy 155.163217 157.733232) - (xy 155.35005 157.559877) - (xy 155.508959 157.360612) - (xy 155.636393 157.139888) - (xy 155.729508 156.902637) - (xy 155.72951 156.902624) - (xy 155.730878 156.898196) - (xy 155.732008 156.898544) - (xy 155.763464 156.842295) - (xy 155.825121 156.80943) - (xy 155.894759 156.815117) - (xy 155.950268 156.857551) - (xy 155.968868 156.898269) - (xy 155.9696 156.898044) - (xy 155.970973 156.902494) - (xy 156.064058 157.139671) - (xy 156.064057 157.139671) - (xy 156.191457 157.360332) - (xy 156.233452 157.412993) - (xy 156.233453 157.412993) - (xy 157.037226 156.609219) - (xy 157.075901 156.702588) - (xy 157.172075 156.827925) - (xy 157.297412 156.924099) - (xy 157.390779 156.962772) - (xy 156.586813 157.766737) - (xy 156.747623 157.876375) - (xy 156.747624 157.876376) - (xy 156.977176 157.986921) - (xy 156.977174 157.986921) - (xy 157.220652 158.062024) - (xy 157.220658 158.062026) - (xy 157.472595 158.099999) - (xy 157.472604 158.1) - (xy 157.727396 158.1) - (xy 157.727404 158.099999) - (xy 157.979341 158.062026) - (xy 157.979347 158.062024) - (xy 158.222824 157.986921) - (xy 158.452381 157.876373) - (xy 158.613185 157.766737) - (xy 157.80922 156.962772) - (xy 157.902588 156.924099) - (xy 158.027925 156.827925) - (xy 158.124099 156.702589) - (xy 158.162772 156.60922) - (xy 158.966545 157.412993) - (xy 159.008545 157.360327) - (xy 159.135941 157.139671) - (xy 159.229026 156.902494) - (xy 159.2304 156.898044) - (xy 159.231574 156.898406) - (xy 159.262945 156.8423) - (xy 159.324601 156.809432) - (xy 159.394239 156.815115) - (xy 159.44975 156.857545) - (xy 159.46842 156.898412) - (xy 159.469122 156.898196) - (xy 159.47049 156.90263) - (xy 159.470492 156.902637) - (xy 159.563607 157.139888) - (xy 159.691041 157.360612) - (xy 159.84995 157.559877) - (xy 160.036783 157.733232) - (xy 160.247366 157.876805) - (xy 160.247371 157.876807) - (xy 160.247372 157.876808) - (xy 160.247373 157.876809) - (xy 160.369328 157.935538) - (xy 160.476992 157.987387) - (xy 160.476993 157.987387) - (xy 160.476996 157.987389) - (xy 160.720542 158.062513) - (xy 160.972565 158.1005) - (xy 161.227435 158.1005) - (xy 161.479458 158.062513) - (xy 161.723004 157.987389) - (xy 161.952634 157.876805) - (xy 162.163217 157.733232) - (xy 162.35005 157.559877) - (xy 162.508959 157.360612) - (xy 162.636393 157.139888) - (xy 162.729508 156.902637) - (xy 162.72951 156.902624) - (xy 162.730878 156.898196) - (xy 162.732324 156.898642) - (xy 162.763213 156.843412) - (xy 162.824873 156.810552) - (xy 162.89451 156.816243) - (xy 162.950016 156.85868) - (xy 162.968192 156.898482) - (xy 162.969122 156.898196) - (xy 162.97049 156.90263) - (xy 162.970492 156.902637) - (xy 163.063607 157.139888) - (xy 163.191041 157.360612) - (xy 163.34995 157.559877) - (xy 163.536783 157.733232) - (xy 163.747366 157.876805) - (xy 163.747371 157.876807) - (xy 163.747372 157.876808) - (xy 163.747373 157.876809) - (xy 163.869328 157.935538) - (xy 163.976992 157.987387) - (xy 163.976993 157.987387) - (xy 163.976996 157.987389) - (xy 164.220542 158.062513) - (xy 164.472565 158.1005) - (xy 164.727435 158.1005) - (xy 164.979458 158.062513) - (xy 165.223004 157.987389) - (xy 165.452634 157.876805) - (xy 165.663217 157.733232) - (xy 165.85005 157.559877) - (xy 166.008959 157.360612) - (xy 166.136393 157.139888) - (xy 166.229508 156.902637) - (xy 166.22951 156.902624) - (xy 166.230878 156.898196) - (xy 166.232008 156.898544) - (xy 166.263464 156.842295) - (xy 166.325121 156.80943) - (xy 166.394759 156.815117) - (xy 166.450268 156.857551) - (xy 166.468868 156.898269) - (xy 166.4696 156.898044) - (xy 166.470973 156.902494) - (xy 166.564058 157.139671) - (xy 166.564057 157.139671) - (xy 166.691457 157.360332) - (xy 166.733452 157.412993) - (xy 167.537226 156.609219) - (xy 167.575901 156.702588) - (xy 167.672075 156.827925) - (xy 167.797412 156.924099) - (xy 167.890779 156.962772) - (xy 167.086813 157.766737) - (xy 167.247623 157.876375) - (xy 167.247624 157.876376) - (xy 167.477176 157.986921) - (xy 167.477174 157.986921) - (xy 167.720652 158.062024) - (xy 167.720658 158.062026) - (xy 167.972595 158.099999) - (xy 167.972604 158.1) - (xy 168.227396 158.1) - (xy 168.227404 158.099999) - (xy 168.479341 158.062026) - (xy 168.479347 158.062024) - (xy 168.722824 157.986921) - (xy 168.952381 157.876373) - (xy 169.113185 157.766737) - (xy 168.30922 156.962772) - (xy 168.402588 156.924099) - (xy 168.527925 156.827925) - (xy 168.624099 156.702589) - (xy 168.662773 156.60922) - (xy 169.466545 157.412993) - (xy 169.508545 157.360327) - (xy 169.635941 157.139671) - (xy 169.729026 156.902494) - (xy 169.7304 156.898044) - (xy 169.731574 156.898406) - (xy 169.762945 156.8423) - (xy 169.824601 156.809432) - (xy 169.894239 156.815115) - (xy 169.94975 156.857545) - (xy 169.96842 156.898412) - (xy 169.969122 156.898196) - (xy 169.97049 156.90263) - (xy 169.970492 156.902637) - (xy 170.063607 157.139888) - (xy 170.191041 157.360612) - (xy 170.34995 157.559877) - (xy 170.536783 157.733232) - (xy 170.747366 157.876805) - (xy 170.747371 157.876807) - (xy 170.747372 157.876808) - (xy 170.747373 157.876809) - (xy 170.869328 157.935538) - (xy 170.976992 157.987387) - (xy 170.976993 157.987387) - (xy 170.976996 157.987389) - (xy 171.220542 158.062513) - (xy 171.472565 158.1005) - (xy 171.727435 158.1005) - (xy 171.979458 158.062513) - (xy 172.223004 157.987389) - (xy 172.452634 157.876805) - (xy 172.663217 157.733232) - (xy 172.85005 157.559877) - (xy 173.008959 157.360612) - (xy 173.136393 157.139888) - (xy 173.229508 156.902637) - (xy 173.22951 156.902624) - (xy 173.230878 156.898196) - (xy 173.232324 156.898642) - (xy 173.263213 156.843412) - (xy 173.324873 156.810552) - (xy 173.39451 156.816243) - (xy 173.450016 156.85868) - (xy 173.468192 156.898482) - (xy 173.469122 156.898196) - (xy 173.47049 156.90263) - (xy 173.470492 156.902637) - (xy 173.563607 157.139888) - (xy 173.691041 157.360612) - (xy 173.84995 157.559877) - (xy 174.036783 157.733232) - (xy 174.247366 157.876805) - (xy 174.247371 157.876807) - (xy 174.247372 157.876808) - (xy 174.247373 157.876809) - (xy 174.369328 157.935538) - (xy 174.476992 157.987387) - (xy 174.476993 157.987387) - (xy 174.476996 157.987389) - (xy 174.720542 158.062513) - (xy 174.972565 158.1005) - (xy 175.227435 158.1005) - (xy 175.479458 158.062513) - (xy 175.723004 157.987389) - (xy 175.952634 157.876805) - (xy 176.163217 157.733232) - (xy 176.35005 157.559877) - (xy 176.508959 157.360612) - (xy 176.636393 157.139888) - (xy 176.729508 156.902637) - (xy 176.786222 156.654157) - (xy 176.805268 156.4) - (xy 176.786222 156.145843) - (xy 176.729508 155.897363) - (xy 176.636393 155.660112) - (xy 176.508959 155.439388) - (xy 176.35005 155.240123) - (xy 176.163217 155.066768) - (xy 175.952634 154.923195) - (xy 175.95263 154.923193) - (xy 175.952627 154.923191) - (xy 175.952626 154.92319) - (xy 175.723006 154.812612) - (xy 175.723008 154.812612) - (xy 175.479466 154.737489) - (xy 175.479462 154.737488) - (xy 175.479458 154.737487) - (xy 175.358231 154.719214) - (xy 175.22744 154.6995) - (xy 175.227435 154.6995) - (xy 174.972565 154.6995) - (xy 174.972559 154.6995) - (xy 174.815609 154.723157) - (xy 174.720542 154.737487) - (xy 174.720538 154.737488) - (xy 174.720539 154.737488) - (xy 174.720533 154.737489) - (xy 174.476992 154.812612) - (xy 174.247373 154.92319) - (xy 174.247372 154.923191) - (xy 174.036782 155.066768) - (xy 173.849952 155.240121) - (xy 173.84995 155.240123) - (xy 173.691041 155.439388) - (xy 173.563608 155.660109) - (xy 173.470492 155.897362) - (xy 173.469122 155.901804) - (xy 173.467677 155.901358) - (xy 173.43678 155.956593) - (xy 173.375117 155.989449) - (xy 173.30548 155.983752) - (xy 173.249978 155.941311) - (xy 173.231805 155.901517) - (xy 173.230878 155.901804) - (xy 173.229509 155.897369) - (xy 173.229508 155.897363) - (xy 173.136393 155.660112) - (xy 173.008959 155.439388) - (xy 172.85005 155.240123) - (xy 172.663217 155.066768) - (xy 172.452634 154.923195) - (xy 172.45263 154.923193) - (xy 172.452627 154.923191) - (xy 172.452626 154.92319) - (xy 172.223006 154.812612) - (xy 172.223008 154.812612) - (xy 171.979466 154.737489) - (xy 171.979462 154.737488) - (xy 171.979458 154.737487) - (xy 171.858231 154.719214) - (xy 171.72744 154.6995) - (xy 171.727435 154.6995) - (xy 171.472565 154.6995) - (xy 171.472559 154.6995) - (xy 171.315609 154.723157) - (xy 171.220542 154.737487) - (xy 171.220538 154.737488) - (xy 171.220539 154.737488) - (xy 171.220533 154.737489) - (xy 170.976992 154.812612) - (xy 170.747373 154.92319) - (xy 170.747372 154.923191) - (xy 170.536782 155.066768) - (xy 170.349952 155.240121) - (xy 170.34995 155.240123) - (xy 170.191041 155.439388) - (xy 170.063608 155.660109) - (xy 169.970492 155.897362) - (xy 169.969122 155.901804) - (xy 169.967999 155.901457) - (xy 169.936509 155.95773) - (xy 169.874841 155.990576) - (xy 169.805205 155.984868) - (xy 169.749709 155.942418) - (xy 169.731134 155.901729) - (xy 169.7304 155.901956) - (xy 169.729026 155.897505) - (xy 169.635941 155.660328) - (xy 169.635942 155.660328) - (xy 169.508544 155.439671) - (xy 169.466546 155.387006) - (xy 168.662772 156.190779) - (xy 168.624099 156.097412) - (xy 168.527925 155.972075) - (xy 168.402588 155.875901) - (xy 168.30922 155.837227) - (xy 169.113185 155.033261) - (xy 168.952377 154.923624) - (xy 168.952376 154.923623) - (xy 168.722823 154.813078) - (xy 168.722825 154.813078) - (xy 168.479347 154.737975) - (xy 168.479341 154.737973) - (xy 168.227404 154.7) - (xy 167.972595 154.7) - (xy 167.720658 154.737973) - (xy 167.720652 154.737975) - (xy 167.477175 154.813078) - (xy 167.247624 154.923623) - (xy 167.247616 154.923628) - (xy 167.086813 155.033261) - (xy 167.890779 155.837227) - (xy 167.797412 155.875901) - (xy 167.672075 155.972075) - (xy 167.575901 156.097411) - (xy 167.537226 156.190779) - (xy 166.733453 155.387006) - (xy 166.691455 155.43967) - (xy 166.564058 155.660328) - (xy 166.470973 155.897505) - (xy 166.4696 155.901956) - (xy 166.468432 155.901595) - (xy 166.437026 155.957726) - (xy 166.37536 155.990575) - (xy 166.305724 155.984871) - (xy 166.250226 155.942423) - (xy 166.231581 155.901587) - (xy 166.230878 155.901804) - (xy 166.229509 155.897369) - (xy 166.229508 155.897363) - (xy 166.136393 155.660112) - (xy 166.008959 155.439388) - (xy 165.85005 155.240123) - (xy 165.663217 155.066768) - (xy 165.452634 154.923195) - (xy 165.45263 154.923193) - (xy 165.452627 154.923191) - (xy 165.452626 154.92319) - (xy 165.223006 154.812612) - (xy 165.223008 154.812612) - (xy 164.979466 154.737489) - (xy 164.979462 154.737488) - (xy 164.979458 154.737487) - (xy 164.858231 154.719214) - (xy 164.72744 154.6995) - (xy 164.727435 154.6995) - (xy 164.472565 154.6995) - (xy 164.472559 154.6995) - (xy 164.315609 154.723157) - (xy 164.220542 154.737487) - (xy 164.220538 154.737488) - (xy 164.220539 154.737488) - (xy 164.220533 154.737489) - (xy 163.976992 154.812612) - (xy 163.747373 154.92319) - (xy 163.747372 154.923191) - (xy 163.536782 155.066768) - (xy 163.349952 155.240121) - (xy 163.34995 155.240123) - (xy 163.191041 155.439388) - (xy 163.063608 155.660109) - (xy 162.970492 155.897362) - (xy 162.969122 155.901804) - (xy 162.967677 155.901358) - (xy 162.93678 155.956593) - (xy 162.875117 155.989449) - (xy 162.80548 155.983752) - (xy 162.749978 155.941311) - (xy 162.731805 155.901517) - (xy 162.730878 155.901804) - (xy 162.729509 155.897369) - (xy 162.729508 155.897363) - (xy 162.636393 155.660112) - (xy 162.508959 155.439388) - (xy 162.35005 155.240123) - (xy 162.163217 155.066768) - (xy 161.952634 154.923195) - (xy 161.95263 154.923193) - (xy 161.952627 154.923191) - (xy 161.952626 154.92319) - (xy 161.723006 154.812612) - (xy 161.723008 154.812612) - (xy 161.479466 154.737489) - (xy 161.479462 154.737488) - (xy 161.479458 154.737487) - (xy 161.358231 154.719214) - (xy 161.22744 154.6995) - (xy 161.227435 154.6995) - (xy 160.972565 154.6995) - (xy 160.972559 154.6995) - (xy 160.815609 154.723157) - (xy 160.720542 154.737487) - (xy 160.720538 154.737488) - (xy 160.720539 154.737488) - (xy 160.720533 154.737489) - (xy 160.476992 154.812612) - (xy 160.247373 154.92319) - (xy 160.247372 154.923191) - (xy 160.036782 155.066768) - (xy 159.849952 155.240121) - (xy 159.84995 155.240123) - (xy 159.691041 155.439388) - (xy 159.563608 155.660109) - (xy 159.470492 155.897362) - (xy 159.469122 155.901804) - (xy 159.467999 155.901457) - (xy 159.436509 155.95773) - (xy 159.374841 155.990576) - (xy 159.305205 155.984868) - (xy 159.249709 155.942418) - (xy 159.231134 155.901729) - (xy 159.2304 155.901956) - (xy 159.229026 155.897505) - (xy 159.135941 155.660328) - (xy 159.135942 155.660328) - (xy 159.008544 155.439671) - (xy 158.966546 155.387006) - (xy 158.162772 156.190779) - (xy 158.124099 156.097412) - (xy 158.027925 155.972075) - (xy 157.902588 155.875901) - (xy 157.80922 155.837227) - (xy 158.613185 155.033261) - (xy 158.452377 154.923624) - (xy 158.452376 154.923623) - (xy 158.222823 154.813078) - (xy 158.222825 154.813078) - (xy 157.979347 154.737975) - (xy 157.979341 154.737973) - (xy 157.727404 154.7) - (xy 157.472595 154.7) - (xy 157.220658 154.737973) - (xy 157.220652 154.737975) - (xy 156.977175 154.813078) - (xy 156.747624 154.923623) - (xy 156.747616 154.923628) - (xy 156.586813 155.033261) - (xy 157.390779 155.837227) - (xy 157.297412 155.875901) - (xy 157.172075 155.972075) - (xy 157.075901 156.097411) - (xy 157.037226 156.190779) - (xy 156.233453 155.387006) - (xy 156.191455 155.43967) - (xy 156.064058 155.660328) - (xy 155.970973 155.897505) - (xy 155.9696 155.901956) - (xy 155.968432 155.901595) - (xy 155.937026 155.957726) - (xy 155.87536 155.990575) - (xy 155.805724 155.984871) - (xy 155.750226 155.942423) - (xy 155.731581 155.901587) - (xy 155.730878 155.901804) - (xy 155.729509 155.897369) - (xy 155.729508 155.897363) - (xy 155.636393 155.660112) - (xy 155.508959 155.439388) - (xy 155.35005 155.240123) - (xy 155.163217 155.066768) - (xy 154.952634 154.923195) - (xy 154.95263 154.923193) - (xy 154.952627 154.923191) - (xy 154.952626 154.92319) - (xy 154.723006 154.812612) - (xy 154.723008 154.812612) - (xy 154.479466 154.737489) - (xy 154.479462 154.737488) - (xy 154.479458 154.737487) - (xy 154.358231 154.719214) - (xy 154.22744 154.6995) - (xy 154.227435 154.6995) - (xy 153.972565 154.6995) - (xy 153.972559 154.6995) - (xy 153.815609 154.723157) - (xy 153.720542 154.737487) - (xy 153.720538 154.737488) - (xy 153.720539 154.737488) - (xy 153.720533 154.737489) - (xy 153.476992 154.812612) - (xy 153.247373 154.92319) - (xy 153.247372 154.923191) - (xy 153.036782 155.066768) - (xy 152.849952 155.240121) - (xy 152.84995 155.240123) - (xy 152.691041 155.439388) - (xy 152.563608 155.660109) - (xy 152.470492 155.897362) - (xy 152.469122 155.901804) - (xy 152.467677 155.901358) - (xy 152.43678 155.956593) - (xy 152.375117 155.989449) - (xy 152.30548 155.983752) - (xy 152.249978 155.941311) - (xy 152.231805 155.901517) - (xy 152.230878 155.901804) - (xy 152.229509 155.897369) - (xy 152.229508 155.897363) - (xy 152.136393 155.660112) - (xy 152.008959 155.439388) - (xy 151.85005 155.240123) - (xy 151.663217 155.066768) - (xy 151.452634 154.923195) - (xy 151.45263 154.923193) - (xy 151.452627 154.923191) - (xy 151.452626 154.92319) - (xy 151.223006 154.812612) - (xy 151.223008 154.812612) - (xy 150.979466 154.737489) - (xy 150.979462 154.737488) - (xy 150.979458 154.737487) - (xy 150.858231 154.719214) - (xy 150.72744 154.6995) - (xy 150.727435 154.6995) - (xy 150.472565 154.6995) - (xy 150.472559 154.6995) - (xy 150.315609 154.723157) - (xy 150.220542 154.737487) - (xy 150.220538 154.737488) - (xy 150.220539 154.737488) - (xy 150.220533 154.737489) - (xy 149.976992 154.812612) - (xy 149.747373 154.92319) - (xy 149.747372 154.923191) - (xy 149.536782 155.066768) - (xy 149.349952 155.240121) - (xy 149.34995 155.240123) - (xy 149.191041 155.439388) - (xy 149.063608 155.660109) - (xy 148.970492 155.897362) - (xy 148.969122 155.901804) - (xy 148.967999 155.901457) - (xy 148.936509 155.95773) - (xy 148.874841 155.990576) - (xy 148.805205 155.984868) - (xy 148.749709 155.942418) - (xy 148.731134 155.901729) - (xy 148.7304 155.901956) - (xy 148.729026 155.897505) - (xy 148.635941 155.660328) - (xy 148.635942 155.660328) - (xy 148.508544 155.439671) - (xy 148.466546 155.387006) - (xy 147.662772 156.190779) - (xy 147.624099 156.097412) - (xy 147.527925 155.972075) - (xy 147.402588 155.875901) - (xy 147.30922 155.837227) - (xy 148.113185 155.033261) - (xy 147.952377 154.923624) - (xy 147.952376 154.923623) - (xy 147.722823 154.813078) - (xy 147.722825 154.813078) - (xy 147.479347 154.737975) - (xy 147.479341 154.737973) - (xy 147.227404 154.7) - (xy 146.972595 154.7) - (xy 146.720658 154.737973) - (xy 146.720652 154.737975) - (xy 146.477175 154.813078) - (xy 146.247624 154.923623) - (xy 146.247616 154.923628) - (xy 146.086813 155.033261) - (xy 146.890779 155.837227) - (xy 146.797412 155.875901) - (xy 146.672075 155.972075) - (xy 146.575901 156.097411) - (xy 146.537226 156.190779) - (xy 145.733453 155.387006) - (xy 145.691455 155.43967) - (xy 145.564058 155.660328) - (xy 145.470973 155.897505) - (xy 145.4696 155.901956) - (xy 145.468432 155.901595) - (xy 145.437026 155.957726) - (xy 145.37536 155.990575) - (xy 145.305724 155.984871) - (xy 145.250226 155.942423) - (xy 145.231581 155.901587) - (xy 145.230878 155.901804) - (xy 145.229509 155.897369) - (xy 145.229508 155.897363) - (xy 145.136393 155.660112) - (xy 145.008959 155.439388) - (xy 144.85005 155.240123) - (xy 144.663217 155.066768) - (xy 144.452634 154.923195) - (xy 144.45263 154.923193) - (xy 144.452627 154.923191) - (xy 144.452626 154.92319) - (xy 144.223006 154.812612) - (xy 144.223008 154.812612) - (xy 143.979466 154.737489) - (xy 143.979462 154.737488) - (xy 143.979458 154.737487) - (xy 143.858231 154.719214) - (xy 143.72744 154.6995) - (xy 143.727435 154.6995) - (xy 143.472565 154.6995) - (xy 143.472559 154.6995) - (xy 143.315609 154.723157) - (xy 143.220542 154.737487) - (xy 143.220538 154.737488) - (xy 143.220539 154.737488) - (xy 143.220533 154.737489) - (xy 142.976992 154.812612) - (xy 142.747373 154.92319) - (xy 142.747372 154.923191) - (xy 142.536782 155.066768) - (xy 142.349952 155.240121) - (xy 142.34995 155.240123) - (xy 142.191041 155.439388) - (xy 142.063608 155.660109) - (xy 141.970492 155.897362) - (xy 141.969122 155.901804) - (xy 141.967677 155.901358) - (xy 141.93678 155.956593) - (xy 141.875117 155.989449) - (xy 141.80548 155.983752) - (xy 141.749978 155.941311) - (xy 141.731805 155.901517) - (xy 141.730878 155.901804) - (xy 141.729509 155.897369) - (xy 141.729508 155.897363) - (xy 141.636393 155.660112) - (xy 141.508959 155.439388) - (xy 141.35005 155.240123) - (xy 141.163217 155.066768) - (xy 140.952634 154.923195) - (xy 140.95263 154.923193) - (xy 140.952627 154.923191) - (xy 140.952626 154.92319) - (xy 140.723006 154.812612) - (xy 140.723008 154.812612) - (xy 140.479466 154.737489) - (xy 140.479462 154.737488) - (xy 140.479458 154.737487) - (xy 140.358231 154.719214) - (xy 140.22744 154.6995) - (xy 140.227435 154.6995) - (xy 139.972565 154.6995) - (xy 139.972559 154.6995) - (xy 139.815609 154.723157) - (xy 139.720542 154.737487) - (xy 139.720538 154.737488) - (xy 139.720539 154.737488) - (xy 139.720533 154.737489) - (xy 139.476992 154.812612) - (xy 139.247373 154.92319) - (xy 139.247372 154.923191) - (xy 139.036782 155.066768) - (xy 138.849952 155.240121) - (xy 138.84995 155.240123) - (xy 138.691041 155.439388) - (xy 138.563608 155.660109) - (xy 138.470492 155.897362) - (xy 138.469122 155.901804) - (xy 138.467999 155.901457) - (xy 138.436509 155.95773) - (xy 138.374841 155.990576) - (xy 138.305205 155.984868) - (xy 138.249709 155.942418) - (xy 138.231134 155.901729) - (xy 138.2304 155.901956) - (xy 138.229026 155.897505) - (xy 138.135941 155.660328) - (xy 138.135942 155.660328) - (xy 138.008544 155.439671) - (xy 137.966546 155.387006) - (xy 137.162772 156.190779) - (xy 137.124099 156.097412) - (xy 137.027925 155.972075) - (xy 136.902588 155.875901) - (xy 136.80922 155.837227) - (xy 137.613185 155.033261) - (xy 137.452377 154.923624) - (xy 137.452376 154.923623) - (xy 137.222823 154.813078) - (xy 137.222825 154.813078) - (xy 136.979347 154.737975) - (xy 136.979341 154.737973) - (xy 136.727404 154.7) - (xy 136.472595 154.7) - (xy 136.220658 154.737973) - (xy 136.220652 154.737975) - (xy 135.977175 154.813078) - (xy 135.747624 154.923623) - (xy 135.747616 154.923628) - (xy 135.586813 155.033261) - (xy 136.390779 155.837227) - (xy 136.297412 155.875901) - (xy 136.172075 155.972075) - (xy 136.075901 156.097411) - (xy 136.037226 156.190779) - (xy 135.233453 155.387006) - (xy 135.191455 155.43967) - (xy 135.064058 155.660328) - (xy 134.970973 155.897505) - (xy 134.9696 155.901956) - (xy 134.968432 155.901595) - (xy 134.937026 155.957726) - (xy 134.87536 155.990575) - (xy 134.805724 155.984871) - (xy 134.750226 155.942423) - (xy 134.731581 155.901587) - (xy 134.730878 155.901804) - (xy 134.729509 155.897369) - (xy 134.729508 155.897363) - (xy 134.636393 155.660112) - (xy 134.508959 155.439388) - (xy 134.35005 155.240123) - (xy 134.163217 155.066768) - (xy 133.952634 154.923195) - (xy 133.95263 154.923193) - (xy 133.952627 154.923191) - (xy 133.952626 154.92319) - (xy 133.723006 154.812612) - (xy 133.723008 154.812612) - (xy 133.479466 154.737489) - (xy 133.479462 154.737488) - (xy 133.479458 154.737487) - (xy 133.358231 154.719214) - (xy 133.22744 154.6995) - (xy 133.227435 154.6995) - (xy 132.972565 154.6995) - (xy 132.972559 154.6995) - (xy 132.815609 154.723157) - (xy 132.720542 154.737487) - (xy 132.720538 154.737488) - (xy 132.720539 154.737488) - (xy 132.720533 154.737489) - (xy 132.476992 154.812612) - (xy 132.247373 154.92319) - (xy 132.247372 154.923191) - (xy 132.036782 155.066768) - (xy 131.849952 155.240121) - (xy 131.84995 155.240123) - (xy 131.691041 155.439388) - (xy 131.563608 155.660109) - (xy 131.470492 155.897362) - (xy 131.469122 155.901804) - (xy 131.467677 155.901358) - (xy 131.43678 155.956593) - (xy 131.375117 155.989449) - (xy 131.30548 155.983752) - (xy 131.249978 155.941311) - (xy 131.231805 155.901517) - (xy 131.230878 155.901804) - (xy 131.229509 155.897369) - (xy 131.229508 155.897363) - (xy 131.136393 155.660112) - (xy 131.008959 155.439388) - (xy 130.85005 155.240123) - (xy 130.663217 155.066768) - (xy 130.452634 154.923195) - (xy 130.45263 154.923193) - (xy 130.452627 154.923191) - (xy 130.452626 154.92319) - (xy 130.223006 154.812612) - (xy 130.223008 154.812612) - (xy 129.979466 154.737489) - (xy 129.979462 154.737488) - (xy 129.979458 154.737487) - (xy 129.858231 154.719214) - (xy 129.72744 154.6995) - (xy 129.727435 154.6995) - (xy 129.472565 154.6995) - (xy 129.472559 154.6995) - (xy 129.315609 154.723157) - (xy 129.220542 154.737487) - (xy 129.220538 154.737488) - (xy 129.220539 154.737488) - (xy 129.220533 154.737489) - (xy 128.976992 154.812612) - (xy 128.747373 154.92319) - (xy 128.747372 154.923191) - (xy 128.536782 155.066768) - (xy 128.349952 155.240121) - (xy 128.34995 155.240123) - (xy 128.191041 155.439388) - (xy 128.063608 155.660109) - (xy 127.970492 155.897362) - (xy 127.969122 155.901804) - (xy 127.967999 155.901457) - (xy 127.936509 155.95773) - (xy 127.874841 155.990576) - (xy 127.805205 155.984868) - (xy 127.749709 155.942418) - (xy 127.731134 155.901729) - (xy 127.7304 155.901956) - (xy 127.729026 155.897505) - (xy 127.635941 155.660328) - (xy 127.635942 155.660328) - (xy 127.508544 155.439671) - (xy 127.466546 155.387006) - (xy 126.662772 156.190779) - (xy 126.624099 156.097412) - (xy 126.527925 155.972075) - (xy 126.402588 155.875901) - (xy 126.309219 155.837226) - (xy 127.113185 155.033261) - (xy 126.952377 154.923624) - (xy 126.952376 154.923623) - (xy 126.722823 154.813078) - (xy 126.722825 154.813078) - (xy 126.479347 154.737975) - (xy 126.479341 154.737973) - (xy 126.227404 154.7) - (xy 125.972595 154.7) - (xy 125.720658 154.737973) - (xy 125.720652 154.737975) - (xy 125.477175 154.813078) - (xy 125.247624 154.923623) - (xy 125.247616 154.923628) - (xy 125.086813 155.033261) - (xy 125.890778 155.837227) - (xy 125.797412 155.875901) - (xy 125.672075 155.972075) - (xy 125.575901 156.097411) - (xy 125.537226 156.190779) - (xy 124.733453 155.387006) - (xy 124.691455 155.43967) - (xy 124.564058 155.660328) - (xy 124.470973 155.897505) - (xy 124.4696 155.901956) - (xy 124.468432 155.901595) - (xy 124.437026 155.957726) - (xy 124.37536 155.990575) - (xy 124.305724 155.984871) - (xy 124.250226 155.942423) - (xy 124.231581 155.901587) - (xy 124.230878 155.901804) - (xy 124.229509 155.897369) - (xy 124.229508 155.897363) - (xy 124.136393 155.660112) - (xy 124.008959 155.439388) - (xy 123.85005 155.240123) - (xy 123.663217 155.066768) - (xy 123.452634 154.923195) - (xy 123.45263 154.923193) - (xy 123.452627 154.923191) - (xy 123.452626 154.92319) - (xy 123.223006 154.812612) - (xy 123.223008 154.812612) - (xy 122.979466 154.737489) - (xy 122.979462 154.737488) - (xy 122.979458 154.737487) - (xy 122.858231 154.719214) - (xy 122.72744 154.6995) - (xy 122.727435 154.6995) - (xy 122.472565 154.6995) - (xy 122.472559 154.6995) - (xy 122.315609 154.723157) - (xy 122.220542 154.737487) - (xy 122.220538 154.737488) - (xy 122.220539 154.737488) - (xy 122.220533 154.737489) - (xy 121.976992 154.812612) - (xy 121.747373 154.92319) - (xy 121.747372 154.923191) - (xy 121.536782 155.066768) - (xy 121.349952 155.240121) - (xy 121.34995 155.240123) - (xy 121.191041 155.439388) - (xy 121.063608 155.660109) - (xy 120.970492 155.897362) - (xy 120.969122 155.901804) - (xy 120.967677 155.901358) - (xy 120.93678 155.956593) - (xy 120.875117 155.989449) - (xy 120.80548 155.983752) - (xy 120.749978 155.941311) - (xy 120.731805 155.901517) - (xy 120.730878 155.901804) - (xy 120.729509 155.897369) - (xy 120.729508 155.897363) - (xy 120.636393 155.660112) - (xy 120.508959 155.439388) - (xy 120.35005 155.240123) - (xy 120.163217 155.066768) - (xy 119.952634 154.923195) - (xy 119.95263 154.923193) - (xy 119.952627 154.923191) - (xy 119.952626 154.92319) - (xy 119.723006 154.812612) - (xy 119.723008 154.812612) - (xy 119.479466 154.737489) - (xy 119.479462 154.737488) - (xy 119.479458 154.737487) - (xy 119.358231 154.719214) - (xy 119.22744 154.6995) - (xy 119.227435 154.6995) - (xy 118.972565 154.6995) - (xy 118.972559 154.6995) - (xy 118.815609 154.723157) - (xy 118.720542 154.737487) - (xy 118.720538 154.737488) - (xy 118.720539 154.737488) - (xy 118.720533 154.737489) - (xy 118.476992 154.812612) - (xy 118.247373 154.92319) - (xy 118.247372 154.923191) - (xy 118.036782 155.066768) - (xy 117.849952 155.240121) - (xy 117.84995 155.240123) - (xy 117.691041 155.439388) - (xy 117.563608 155.660109) - (xy 117.470492 155.897362) - (xy 117.469122 155.901804) - (xy 117.467999 155.901457) - (xy 117.436509 155.95773) - (xy 117.374841 155.990576) - (xy 117.305205 155.984868) - (xy 117.249709 155.942418) - (xy 117.231134 155.901729) - (xy 117.2304 155.901956) - (xy 117.229026 155.897505) - (xy 117.135941 155.660328) - (xy 117.135942 155.660328) - (xy 117.008544 155.439671) - (xy 116.966546 155.387006) - (xy 116.162772 156.190779) - (xy 116.124099 156.097412) - (xy 116.027925 155.972075) - (xy 115.902588 155.875901) - (xy 115.80922 155.837227) - (xy 116.613185 155.033261) - (xy 116.452377 154.923624) - (xy 116.452376 154.923623) - (xy 116.222823 154.813078) - (xy 116.222825 154.813078) - (xy 115.979347 154.737975) - (xy 115.979341 154.737973) - (xy 115.727404 154.7) - (xy 115.472595 154.7) - (xy 115.220658 154.737973) - (xy 115.220652 154.737975) - (xy 114.977175 154.813078) - (xy 114.747624 154.923623) - (xy 114.747616 154.923628) - (xy 114.586813 155.033261) - (xy 115.390779 155.837227) - (xy 115.297412 155.875901) - (xy 115.172075 155.972075) - (xy 115.075901 156.097411) - (xy 115.037227 156.190779) - (xy 114.233453 155.387006) - (xy 114.191455 155.43967) - (xy 114.064058 155.660328) - (xy 113.970973 155.897505) - (xy 113.9696 155.901956) - (xy 113.968432 155.901595) - (xy 113.937026 155.957726) - (xy 113.87536 155.990575) - (xy 113.805724 155.984871) - (xy 113.750226 155.942423) - (xy 113.731581 155.901587) - (xy 113.730878 155.901804) - (xy 113.729509 155.897369) - (xy 113.729508 155.897363) - (xy 113.636393 155.660112) - (xy 113.508959 155.439388) - (xy 113.35005 155.240123) - (xy 113.163217 155.066768) - (xy 112.952634 154.923195) - (xy 112.95263 154.923193) - (xy 112.952627 154.923191) - (xy 112.952626 154.92319) - (xy 112.723006 154.812612) - (xy 112.723008 154.812612) - (xy 112.479466 154.737489) - (xy 112.479462 154.737488) - (xy 112.479458 154.737487) - (xy 112.358231 154.719214) - (xy 112.22744 154.6995) - (xy 112.227435 154.6995) - (xy 111.972565 154.6995) - (xy 111.972559 154.6995) - (xy 111.815609 154.723157) - (xy 111.720542 154.737487) - (xy 111.720538 154.737488) - (xy 111.720539 154.737488) - (xy 111.720533 154.737489) - (xy 111.476992 154.812612) - (xy 111.247373 154.92319) - (xy 111.247372 154.923191) - (xy 111.036782 155.066768) - (xy 110.849952 155.240121) - (xy 110.84995 155.240123) - (xy 110.691041 155.439388) - (xy 110.563608 155.660109) - (xy 110.470492 155.897362) - (xy 110.469122 155.901804) - (xy 110.467677 155.901358) - (xy 110.43678 155.956593) - (xy 110.375117 155.989449) - (xy 110.30548 155.983752) - (xy 110.249978 155.941311) - (xy 110.231805 155.901517) - (xy 110.230878 155.901804) - (xy 110.229509 155.897369) - (xy 110.229508 155.897363) - (xy 110.136393 155.660112) - (xy 110.008959 155.439388) - (xy 109.85005 155.240123) - (xy 109.663217 155.066768) - (xy 109.452634 154.923195) - (xy 109.45263 154.923193) - (xy 109.452627 154.923191) - (xy 109.452626 154.92319) - (xy 109.223006 154.812612) - (xy 109.223008 154.812612) - (xy 108.979466 154.737489) - (xy 108.979462 154.737488) - (xy 108.979458 154.737487) - (xy 108.858231 154.719214) - (xy 108.72744 154.6995) - (xy 108.727435 154.6995) - (xy 108.472565 154.6995) - (xy 108.472559 154.6995) - (xy 108.315609 154.723157) - (xy 108.220542 154.737487) - (xy 108.220538 154.737488) - (xy 108.220539 154.737488) - (xy 108.220533 154.737489) - (xy 107.976992 154.812612) - (xy 107.747373 154.92319) - (xy 107.747372 154.923191) - (xy 107.536782 155.066768) - (xy 107.349952 155.240121) - (xy 107.34995 155.240123) - (xy 107.191041 155.439388) - (xy 107.063608 155.660109) - (xy 106.970492 155.897362) - (xy 106.969122 155.901804) - (xy 106.967999 155.901457) - (xy 106.936509 155.95773) - (xy 106.874841 155.990576) - (xy 106.805205 155.984868) - (xy 106.749709 155.942418) - (xy 106.731134 155.901729) - (xy 106.7304 155.901956) - (xy 106.729026 155.897505) - (xy 106.635941 155.660328) - (xy 106.635942 155.660328) - (xy 106.508544 155.439671) - (xy 106.466546 155.387006) - (xy 105.662772 156.190779) - (xy 105.624099 156.097412) - (xy 105.527925 155.972075) - (xy 105.402588 155.875901) - (xy 105.30922 155.837227) - (xy 106.113185 155.033261) - (xy 105.952377 154.923624) - (xy 105.952376 154.923623) - (xy 105.722823 154.813078) - (xy 105.722825 154.813078) - (xy 105.479347 154.737975) - (xy 105.479341 154.737973) - (xy 105.227404 154.7) - (xy 104.972595 154.7) - (xy 104.720658 154.737973) - (xy 104.720652 154.737975) - (xy 104.477175 154.813078) - (xy 104.247624 154.923623) - (xy 104.247616 154.923628) - (xy 104.086813 155.033261) - (xy 104.890779 155.837227) - (xy 104.797412 155.875901) - (xy 104.672075 155.972075) - (xy 104.575901 156.097411) - (xy 104.537227 156.190779) - (xy 103.733453 155.387006) - (xy 103.691455 155.43967) - (xy 103.564058 155.660328) - (xy 103.470973 155.897505) - (xy 103.4696 155.901956) - (xy 103.468432 155.901595) - (xy 103.437026 155.957726) - (xy 103.37536 155.990575) - (xy 103.305724 155.984871) - (xy 103.250226 155.942423) - (xy 103.231581 155.901587) - (xy 103.230878 155.901804) - (xy 103.229509 155.897369) - (xy 103.229508 155.897363) - (xy 103.136393 155.660112) - (xy 103.008959 155.439388) - (xy 102.85005 155.240123) - (xy 102.663217 155.066768) - (xy 102.452634 154.923195) - (xy 102.45263 154.923193) - (xy 102.452627 154.923191) - (xy 102.452626 154.92319) - (xy 102.223006 154.812612) - (xy 102.223008 154.812612) - (xy 101.979466 154.737489) - (xy 101.979462 154.737488) - (xy 101.979458 154.737487) - (xy 101.858231 154.719214) - (xy 101.72744 154.6995) - (xy 101.727435 154.6995) - (xy 101.472565 154.6995) - (xy 101.472559 154.6995) - (xy 101.315609 154.723157) - (xy 101.220542 154.737487) - (xy 101.220538 154.737488) - (xy 101.220539 154.737488) - (xy 101.220533 154.737489) - (xy 100.976992 154.812612) - (xy 100.747373 154.92319) - (xy 100.747372 154.923191) - (xy 100.536782 155.066768) - (xy 100.349952 155.240121) - (xy 100.34995 155.240123) - (xy 100.191041 155.439388) - (xy 100.063608 155.660109) - (xy 99.970492 155.897362) - (xy 99.969122 155.901804) - (xy 99.967677 155.901358) - (xy 99.93678 155.956593) - (xy 99.875117 155.989449) - (xy 99.80548 155.983752) - (xy 99.749978 155.941311) - (xy 99.731805 155.901517) - (xy 99.730878 155.901804) - (xy 99.729509 155.897369) - (xy 99.729508 155.897363) - (xy 99.636393 155.660112) - (xy 99.508959 155.439388) - (xy 99.35005 155.240123) - (xy 99.163217 155.066768) - (xy 98.952634 154.923195) - (xy 98.95263 154.923193) - (xy 98.952627 154.923191) - (xy 98.952626 154.92319) - (xy 98.723006 154.812612) - (xy 98.723008 154.812612) - (xy 98.479466 154.737489) - (xy 98.479462 154.737488) - (xy 98.479458 154.737487) - (xy 98.358231 154.719214) - (xy 98.22744 154.6995) - (xy 98.227435 154.6995) - (xy 97.972565 154.6995) - (xy 97.972559 154.6995) - (xy 97.815609 154.723157) - (xy 97.720542 154.737487) - (xy 97.720538 154.737488) - (xy 97.720539 154.737488) - (xy 97.720533 154.737489) - (xy 97.476992 154.812612) - (xy 97.247373 154.92319) - (xy 97.247372 154.923191) - (xy 97.036782 155.066768) - (xy 96.849952 155.240121) - (xy 96.84995 155.240123) - (xy 96.691041 155.439388) - (xy 96.563608 155.660109) - (xy 96.470492 155.897362) - (xy 96.469122 155.901804) - (xy 96.467999 155.901457) - (xy 96.436509 155.95773) - (xy 96.374841 155.990576) - (xy 96.305205 155.984868) - (xy 96.249709 155.942418) - (xy 96.231134 155.901729) - (xy 96.2304 155.901956) - (xy 96.229026 155.897505) - (xy 96.135941 155.660328) - (xy 96.135942 155.660328) - (xy 96.008544 155.439671) - (xy 95.966546 155.387006) - (xy 95.162772 156.190779) - (xy 95.124099 156.097412) - (xy 95.027925 155.972075) - (xy 94.902588 155.875901) - (xy 94.80922 155.837227) - (xy 95.613185 155.033261) - (xy 95.452377 154.923624) - (xy 95.452376 154.923623) - (xy 95.222823 154.813078) - (xy 95.222825 154.813078) - (xy 94.979347 154.737975) - (xy 94.979341 154.737973) - (xy 94.727404 154.7) - (xy 94.472595 154.7) - (xy 94.220658 154.737973) - (xy 94.220652 154.737975) - (xy 93.977175 154.813078) - (xy 93.747624 154.923623) - (xy 93.747616 154.923628) - (xy 93.586813 155.033261) - (xy 94.390779 155.837227) - (xy 94.297412 155.875901) - (xy 94.172075 155.972075) - (xy 94.075901 156.097411) - (xy 94.037226 156.190779) - (xy 93.233453 155.387006) - (xy 93.191455 155.43967) - (xy 93.064058 155.660328) - (xy 92.970973 155.897505) - (xy 92.970968 155.897522) - (xy 92.914273 156.14592) - (xy 92.895233 156.399995) - (xy 92.895233 156.400004) - (xy 89.304767 156.400004) - (xy 89.304767 156.399995) - (xy 89.285726 156.14592) - (xy 89.229031 155.897522) - (xy 89.229026 155.897505) - (xy 89.135941 155.660328) - (xy 89.135942 155.660328) - (xy 89.008544 155.439671) - (xy 88.966546 155.387006) - (xy 88.162772 156.190779) - (xy 88.124099 156.097412) - (xy 88.027925 155.972075) - (xy 87.902588 155.875901) - (xy 87.809219 155.837226) - (xy 88.613185 155.033261) - (xy 88.452377 154.923624) - (xy 88.452376 154.923623) - (xy 88.222823 154.813078) - (xy 88.222825 154.813078) - (xy 87.979347 154.737975) - (xy 87.979341 154.737973) - (xy 87.727404 154.7) - (xy 87.472595 154.7) - (xy 87.220658 154.737973) - (xy 87.220652 154.737975) - (xy 86.977175 154.813078) - (xy 86.747624 154.923623) - (xy 86.747616 154.923628) - (xy 86.586813 155.033261) - (xy 87.390778 155.837227) - (xy 87.297412 155.875901) - (xy 87.172075 155.972075) - (xy 87.075901 156.097411) - (xy 87.037226 156.190779) - (xy 86.233453 155.387006) - (xy 86.191455 155.43967) - (xy 86.064058 155.660328) - (xy 85.970973 155.897505) - (xy 85.970968 155.897522) - (xy 85.970891 155.89786) - (xy 85.97083 155.897968) - (xy 85.9696 155.901956) - (xy 85.968747 155.901692) - (xy 85.936782 155.958838) - (xy 85.875121 155.991696) - (xy 85.805484 155.986001) - (xy 85.74998 155.943561) - (xy 85.730907 155.901799) - (xy 85.7304 155.901956) - (xy 85.729192 155.898043) - (xy 85.729109 155.89786) - (xy 85.729031 155.897522) - (xy 85.729026 155.897505) - (xy 85.635941 155.660328) - (xy 85.635942 155.660328) - (xy 85.508544 155.439671) - (xy 85.466546 155.387006) - (xy 84.662772 156.190779) - (xy 84.624099 156.097412) - (xy 84.527925 155.972075) - (xy 84.402588 155.875901) - (xy 84.30922 155.837227) - (xy 85.113185 155.033261) - (xy 84.952377 154.923624) - (xy 84.952376 154.923623) - (xy 84.722823 154.813078) - (xy 84.722825 154.813078) - (xy 84.479347 154.737975) - (xy 84.479341 154.737973) - (xy 84.227404 154.7) - (xy 83.972595 154.7) - (xy 83.720658 154.737973) - (xy 83.720652 154.737975) - (xy 83.477175 154.813078) - (xy 83.247624 154.923623) - (xy 83.247616 154.923628) - (xy 83.086813 155.033261) - (xy 83.890779 155.837227) - (xy 83.797412 155.875901) - (xy 83.672075 155.972075) - (xy 83.575901 156.097411) - (xy 83.537226 156.190779) - (xy 82.733453 155.387006) - (xy 82.691455 155.43967) - (xy 82.564058 155.660328) - (xy 82.470973 155.897505) - (xy 82.470968 155.897522) - (xy 82.414273 156.14592) - (xy 82.395233 156.399995) - (xy 82.395233 156.400004) - (xy 81 156.400004) - (xy 81 145.427763) - (xy 81.935787 145.427763) - (xy 81.965413 145.697013) - (xy 81.965415 145.697024) - (xy 82.033926 145.959082) - (xy 82.033928 145.959088) - (xy 82.13987 146.20839) - (xy 82.236691 146.367036) - (xy 82.280979 146.439605) - (xy 82.280986 146.439615) - (xy 82.454253 146.647819) - (xy 82.454259 146.647824) - (xy 82.538831 146.7236) - (xy 82.655998 146.828582) - (xy 82.88191 146.978044) - (xy 83.127176 147.09302) - (xy 83.127183 147.093022) - (xy 83.127185 147.093023) - (xy 83.386557 147.171057) - (xy 83.386564 147.171058) - (xy 83.386569 147.17106) - (xy 83.654561 147.2105) - (xy 83.654566 147.2105) - (xy 83.857629 147.2105) - (xy 83.857631 147.2105) - (xy 83.857636 147.210499) - (xy 83.857648 147.210499) - (xy 83.895191 147.20775) - (xy 84.060156 147.195677) - (xy 84.209043 147.162511) - (xy 84.324546 147.136782) - (xy 84.324548 147.136781) - (xy 84.324553 147.13678) - (xy 84.577558 147.040014) - (xy 84.813777 146.907441) - (xy 85.028177 146.741888) - (xy 85.216186 146.546881) - (xy 85.373799 146.326579) - (xy 85.447787 146.182669) - (xy 85.497649 146.08569) - (xy 85.497651 146.085684) - (xy 85.497656 146.085675) - (xy 85.585118 145.829305) - (xy 85.634319 145.562933) - (xy 85.641735 145.360006) - (xy 96.391225 145.360006) - (xy 96.409892 145.585289) - (xy 96.465388 145.804439) - (xy 96.556198 146.011466) - (xy 96.679842 146.200716) - (xy 96.67985 146.200727) - (xy 96.83295 146.367036) - (xy 96.832954 146.36704) - (xy 97.011351 146.505893) - (xy 97.210169 146.613488) - (xy 97.210172 146.613489) - (xy 97.423982 146.68689) - (xy 97.423984 146.68689) - (xy 97.423986 146.686891) - (xy 97.646967 146.7241) - (xy 97.646968 146.7241) - (xy 97.873032 146.7241) - (xy 97.873033 146.7241) - (xy 98.096014 146.686891) - (xy 98.309831 146.613488) - (xy 98.508649 146.505893) - (xy 98.687046 146.36704) - (xy 98.804098 146.239888) - (xy 98.840149 146.200727) - (xy 98.840149 146.200726) - (xy 98.840156 146.200719) - (xy 98.926193 146.069028) - (xy 98.979338 146.023675) - (xy 99.048569 146.014251) - (xy 99.111905 146.043753) - (xy 99.133804 146.069025) - (xy 99.219844 146.200719) - (xy 99.219849 146.200724) - (xy 99.21985 146.200727) - (xy 99.37295 146.367036) - (xy 99.372954 146.36704) - (xy 99.551351 146.505893) - (xy 99.750169 146.613488) - (xy 99.750172 146.613489) - (xy 99.963982 146.68689) - (xy 99.963984 146.68689) - (xy 99.963986 146.686891) - (xy 100.186967 146.7241) - (xy 100.186968 146.7241) - (xy 100.413032 146.7241) - (xy 100.413033 146.7241) - (xy 100.636014 146.686891) - (xy 100.849831 146.613488) - (xy 101.048649 146.505893) - (xy 101.227046 146.36704) - (xy 101.344098 146.239888) - (xy 101.380149 146.200727) - (xy 101.380149 146.200726) - (xy 101.380156 146.200719) - (xy 101.466193 146.069028) - (xy 101.519338 146.023675) - (xy 101.588569 146.014251) - (xy 101.651905 146.043753) - (xy 101.673804 146.069025) - (xy 101.759844 146.200719) - (xy 101.759849 146.200724) - (xy 101.75985 146.200727) - (xy 101.91295 146.367036) - (xy 101.912954 146.36704) - (xy 102.091351 146.505893) - (xy 102.290169 146.613488) - (xy 102.290172 146.613489) - (xy 102.503982 146.68689) - (xy 102.503984 146.68689) - (xy 102.503986 146.686891) - (xy 102.726967 146.7241) - (xy 102.726968 146.7241) - (xy 102.953032 146.7241) - (xy 102.953033 146.7241) - (xy 103.176014 146.686891) - (xy 103.389831 146.613488) - (xy 103.588649 146.505893) - (xy 103.767046 146.36704) - (xy 103.884098 146.239888) - (xy 103.920149 146.200727) - (xy 103.920149 146.200726) - (xy 103.920156 146.200719) - (xy 104.006193 146.069028) - (xy 104.059338 146.023675) - (xy 104.128569 146.014251) - (xy 104.191905 146.043753) - (xy 104.213804 146.069025) - (xy 104.299844 146.200719) - (xy 104.299849 146.200724) - (xy 104.29985 146.200727) - (xy 104.45295 146.367036) - (xy 104.452954 146.36704) - (xy 104.631351 146.505893) - (xy 104.830169 146.613488) - (xy 104.830172 146.613489) - (xy 105.043982 146.68689) - (xy 105.043984 146.68689) - (xy 105.043986 146.686891) - (xy 105.266967 146.7241) - (xy 105.266968 146.7241) - (xy 105.493032 146.7241) - (xy 105.493033 146.7241) - (xy 105.716014 146.686891) - (xy 105.929831 146.613488) - (xy 106.128649 146.505893) - (xy 106.307046 146.36704) - (xy 106.424098 146.239888) - (xy 106.460149 146.200727) - (xy 106.460151 146.200724) - (xy 106.460156 146.200719) - (xy 106.546193 146.069029) - (xy 106.599336 146.023675) - (xy 106.668567 146.014251) - (xy 106.731903 146.043753) - (xy 106.753807 146.069031) - (xy 106.839842 146.200716) - (xy 106.83985 146.200727) - (xy 106.99295 146.367036) - (xy 106.992954 146.36704) - (xy 107.171351 146.505893) - (xy 107.370169 146.613488) - (xy 107.370172 146.613489) - (xy 107.583982 146.68689) - (xy 107.583984 146.68689) - (xy 107.583986 146.686891) - (xy 107.806967 146.7241) - (xy 107.806968 146.7241) - (xy 108.033032 146.7241) - (xy 108.033033 146.7241) - (xy 108.256014 146.686891) - (xy 108.469831 146.613488) - (xy 108.668649 146.505893) - (xy 108.847046 146.36704) - (xy 108.901815 146.307545) - (xy 108.961699 146.271557) - (xy 109.031537 146.273657) - (xy 109.089153 146.31318) - (xy 109.109224 146.348196) - (xy 109.153046 146.465688) - (xy 109.153049 146.465693) - (xy 109.239209 146.580787) - (xy 109.239212 146.58079) - (xy 109.354306 146.66695) - (xy 109.354313 146.666954) - (xy 109.48902 146.717196) - (xy 109.489027 146.717198) - (xy 109.548555 146.723599) - (xy 109.548572 146.7236) - (xy 110.21 146.7236) - (xy 110.209999 145.804297) - (xy 110.315408 145.852435) - (xy 110.423666 145.868) - (xy 110.496334 145.868) - (xy 110.604592 145.852435) - (xy 110.71 145.804297) - (xy 110.71 146.7236) - (xy 111.371428 146.7236) - (xy 111.371444 146.723599) - (xy 111.430972 146.717198) - (xy 111.430979 146.717196) - (xy 111.565686 146.666954) - (xy 111.565689 146.666952) - (xy 111.655688 146.599579) - (xy 111.721152 146.575161) - (xy 111.789426 146.590012) - (xy 111.804312 146.599579) - (xy 111.89431 146.666952) - (xy 111.894313 146.666954) - (xy 112.02902 146.717196) - (xy 112.029027 146.717198) - (xy 112.088555 146.723599) - (xy 112.088572 146.7236) - (xy 112.75 146.7236) - (xy 112.75 145.804297) - (xy 112.855408 145.852435) - (xy 112.963666 145.868) - (xy 113.036334 145.868) - (xy 113.144592 145.852435) - (xy 113.249999 145.804297) - (xy 113.25 146.7236) - (xy 113.911428 146.7236) - (xy 113.911444 146.723599) - (xy 113.970972 146.717198) - (xy 113.970979 146.717196) - (xy 114.105686 146.666954) - (xy 114.105693 146.66695) - (xy 114.220787 146.58079) - (xy 114.22079 146.580787) - (xy 114.30695 146.465693) - (xy 114.306954 146.465686) - (xy 114.350775 146.348197) - (xy 114.392646 146.292263) - (xy 114.45811 146.267846) - (xy 114.526383 146.282698) - (xy 114.558186 146.307547) - (xy 114.61295 146.367036) - (xy 114.612954 146.36704) - (xy 114.791351 146.505893) - (xy 114.990169 146.613488) - (xy 114.990172 146.613489) - (xy 115.203982 146.68689) - (xy 115.203984 146.68689) - (xy 115.203986 146.686891) - (xy 115.426967 146.7241) - (xy 115.426968 146.7241) - (xy 115.653032 146.7241) - (xy 115.653033 146.7241) - (xy 115.876014 146.686891) - (xy 116.089831 146.613488) - (xy 116.288649 146.505893) - (xy 116.467046 146.36704) - (xy 116.584098 146.239888) - (xy 116.620149 146.200727) - (xy 116.620151 146.200724) - (xy 116.620156 146.200719) - (xy 116.743802 146.011465) - (xy 116.834611 145.804441) - (xy 116.890107 145.585293) - (xy 116.908775 145.360006) - (xy 119.251225 145.360006) - (xy 119.269892 145.585289) - (xy 119.325388 145.804439) - (xy 119.416198 146.011466) - (xy 119.539842 146.200716) - (xy 119.53985 146.200727) - (xy 119.69295 146.367036) - (xy 119.692954 146.36704) - (xy 119.871351 146.505893) - (xy 120.070169 146.613488) - (xy 120.070172 146.613489) - (xy 120.283982 146.68689) - (xy 120.283984 146.68689) - (xy 120.283986 146.686891) - (xy 120.506967 146.7241) - (xy 120.506968 146.7241) - (xy 120.733032 146.7241) - (xy 120.733033 146.7241) - (xy 120.956014 146.686891) - (xy 121.169831 146.613488) - (xy 121.368649 146.505893) - (xy 121.547046 146.36704) - (xy 121.664098 146.239888) - (xy 121.700149 146.200727) - (xy 121.700149 146.200726) - (xy 121.700156 146.200719) - (xy 121.786193 146.069028) - (xy 121.839338 146.023675) - (xy 121.908569 146.014251) - (xy 121.971905 146.043753) - (xy 121.993804 146.069025) - (xy 122.079844 146.200719) - (xy 122.079849 146.200724) - (xy 122.07985 146.200727) - (xy 122.23295 146.367036) - (xy 122.232954 146.36704) - (xy 122.411351 146.505893) - (xy 122.610169 146.613488) - (xy 122.610172 146.613489) - (xy 122.823982 146.68689) - (xy 122.823984 146.68689) - (xy 122.823986 146.686891) - (xy 123.046967 146.7241) - (xy 123.046968 146.7241) - (xy 123.273032 146.7241) - (xy 123.273033 146.7241) - (xy 123.496014 146.686891) - (xy 123.709831 146.613488) - (xy 123.908649 146.505893) - (xy 124.087046 146.36704) - (xy 124.204098 146.239888) - (xy 124.240149 146.200727) - (xy 124.240151 146.200724) - (xy 124.240156 146.200719) - (xy 124.326193 146.069029) - (xy 124.379336 146.023675) - (xy 124.448567 146.014251) - (xy 124.511903 146.043753) - (xy 124.533807 146.069031) - (xy 124.619842 146.200716) - (xy 124.61985 146.200727) - (xy 124.77295 146.367036) - (xy 124.772954 146.36704) - (xy 124.951351 146.505893) - (xy 125.150169 146.613488) - (xy 125.150172 146.613489) - (xy 125.363982 146.68689) - (xy 125.363984 146.68689) - (xy 125.363986 146.686891) - (xy 125.586967 146.7241) - (xy 125.586968 146.7241) - (xy 125.813032 146.7241) - (xy 125.813033 146.7241) - (xy 126.036014 146.686891) - (xy 126.249831 146.613488) - (xy 126.448649 146.505893) - (xy 126.627046 146.36704) - (xy 126.744098 146.239888) - (xy 126.780149 146.200727) - (xy 126.780149 146.200726) - (xy 126.780156 146.200719) - (xy 126.866193 146.069028) - (xy 126.919338 146.023675) - (xy 126.988569 146.014251) - (xy 127.051905 146.043753) - (xy 127.073804 146.069025) - (xy 127.159844 146.200719) - (xy 127.159849 146.200724) - (xy 127.15985 146.200727) - (xy 127.31295 146.367036) - (xy 127.312954 146.36704) - (xy 127.491351 146.505893) - (xy 127.690169 146.613488) - (xy 127.690172 146.613489) - (xy 127.903982 146.68689) - (xy 127.903984 146.68689) - (xy 127.903986 146.686891) - (xy 128.126967 146.7241) - (xy 128.126968 146.7241) - (xy 128.353032 146.7241) - (xy 128.353033 146.7241) - (xy 128.576014 146.686891) - (xy 128.789831 146.613488) - (xy 128.988649 146.505893) - (xy 129.167046 146.36704) - (xy 129.284098 146.239888) - (xy 129.320149 146.200727) - (xy 129.320149 146.200726) - (xy 129.320156 146.200719) - (xy 129.406193 146.069028) - (xy 129.459338 146.023675) - (xy 129.528569 146.014251) - (xy 129.591905 146.043753) - (xy 129.613804 146.069025) - (xy 129.699844 146.200719) - (xy 129.699849 146.200724) - (xy 129.69985 146.200727) - (xy 129.85295 146.367036) - (xy 129.852954 146.36704) - (xy 130.031351 146.505893) - (xy 130.230169 146.613488) - (xy 130.230172 146.613489) - (xy 130.443982 146.68689) - (xy 130.443984 146.68689) - (xy 130.443986 146.686891) - (xy 130.666967 146.7241) - (xy 130.666968 146.7241) - (xy 130.893032 146.7241) - (xy 130.893033 146.7241) - (xy 131.116014 146.686891) - (xy 131.329831 146.613488) - (xy 131.528649 146.505893) - (xy 131.707046 146.36704) - (xy 131.824098 146.239888) - (xy 131.860149 146.200727) - (xy 131.860149 146.200726) - (xy 131.860156 146.200719) - (xy 131.946193 146.069028) - (xy 131.999338 146.023675) - (xy 132.068569 146.014251) - (xy 132.131905 146.043753) - (xy 132.153804 146.069025) - (xy 132.239844 146.200719) - (xy 132.239849 146.200724) - (xy 132.23985 146.200727) - (xy 132.39295 146.367036) - (xy 132.392954 146.36704) - (xy 132.571351 146.505893) - (xy 132.770169 146.613488) - (xy 132.770172 146.613489) - (xy 132.983982 146.68689) - (xy 132.983984 146.68689) - (xy 132.983986 146.686891) - (xy 133.206967 146.7241) - (xy 133.206968 146.7241) - (xy 133.433032 146.7241) - (xy 133.433033 146.7241) - (xy 133.656014 146.686891) - (xy 133.869831 146.613488) - (xy 134.068649 146.505893) - (xy 134.247046 146.36704) - (xy 134.364098 146.239888) - (xy 134.400149 146.200727) - (xy 134.400149 146.200726) - (xy 134.400156 146.200719) - (xy 134.486193 146.069028) - (xy 134.539338 146.023675) - (xy 134.608569 146.014251) - (xy 134.671905 146.043753) - (xy 134.693804 146.069025) - (xy 134.779844 146.200719) - (xy 134.779849 146.200724) - (xy 134.77985 146.200727) - (xy 134.93295 146.367036) - (xy 134.932954 146.36704) - (xy 135.111351 146.505893) - (xy 135.310169 146.613488) - (xy 135.310172 146.613489) - (xy 135.523982 146.68689) - (xy 135.523984 146.68689) - (xy 135.523986 146.686891) - (xy 135.746967 146.7241) - (xy 135.746968 146.7241) - (xy 135.973032 146.7241) - (xy 135.973033 146.7241) - (xy 136.196014 146.686891) - (xy 136.409831 146.613488) - (xy 136.608649 146.505893) - (xy 136.787046 146.36704) - (xy 136.904098 146.239888) - (xy 136.940149 146.200727) - (xy 136.940149 146.200726) - (xy 136.940156 146.200719) - (xy 137.026193 146.069028) - (xy 137.079338 146.023675) - (xy 137.148569 146.014251) - (xy 137.211905 146.043753) - (xy 137.233804 146.069025) - (xy 137.319844 146.200719) - (xy 137.319849 146.200724) - (xy 137.31985 146.200727) - (xy 137.47295 146.367036) - (xy 137.472954 146.36704) - (xy 137.651351 146.505893) - (xy 137.850169 146.613488) - (xy 137.850172 146.613489) - (xy 138.063982 146.68689) - (xy 138.063984 146.68689) - (xy 138.063986 146.686891) - (xy 138.286967 146.7241) - (xy 138.286968 146.7241) - (xy 138.513032 146.7241) - (xy 138.513033 146.7241) - (xy 138.736014 146.686891) - (xy 138.949831 146.613488) - (xy 139.148649 146.505893) - (xy 139.327046 146.36704) - (xy 139.444098 146.239888) - (xy 139.480149 146.200727) - (xy 139.480151 146.200724) - (xy 139.480156 146.200719) - (xy 139.603802 146.011465) - (xy 139.694611 145.804441) - (xy 139.750107 145.585293) - (xy 139.768775 145.360006) - (xy 142.111225 145.360006) - (xy 142.129892 145.585289) - (xy 142.185388 145.804439) - (xy 142.276198 146.011466) - (xy 142.399842 146.200716) - (xy 142.39985 146.200727) - (xy 142.55295 146.367036) - (xy 142.552954 146.36704) - (xy 142.731351 146.505893) - (xy 142.930169 146.613488) - (xy 142.930172 146.613489) - (xy 143.143982 146.68689) - (xy 143.143984 146.68689) - (xy 143.143986 146.686891) - (xy 143.366967 146.7241) - (xy 143.366968 146.7241) - (xy 143.593032 146.7241) - (xy 143.593033 146.7241) - (xy 143.816014 146.686891) - (xy 144.029831 146.613488) - (xy 144.228649 146.505893) - (xy 144.407046 146.36704) - (xy 144.524098 146.239888) - (xy 144.560149 146.200727) - (xy 144.560149 146.200726) - (xy 144.560156 146.200719) - (xy 144.646193 146.069028) - (xy 144.699338 146.023675) - (xy 144.768569 146.014251) - (xy 144.831905 146.043753) - (xy 144.853804 146.069025) - (xy 144.939844 146.200719) - (xy 144.939849 146.200724) - (xy 144.93985 146.200727) - (xy 145.09295 146.367036) - (xy 145.092954 146.36704) - (xy 145.271351 146.505893) - (xy 145.470169 146.613488) - (xy 145.470172 146.613489) - (xy 145.683982 146.68689) - (xy 145.683984 146.68689) - (xy 145.683986 146.686891) - (xy 145.906967 146.7241) - (xy 145.906968 146.7241) - (xy 146.133032 146.7241) - (xy 146.133033 146.7241) - (xy 146.356014 146.686891) - (xy 146.569831 146.613488) - (xy 146.768649 146.505893) - (xy 146.947046 146.36704) - (xy 147.064098 146.239888) - (xy 147.100149 146.200727) - (xy 147.100149 146.200726) - (xy 147.100156 146.200719) - (xy 147.186193 146.069028) - (xy 147.239338 146.023675) - (xy 147.308569 146.014251) - (xy 147.371905 146.043753) - (xy 147.393804 146.069025) - (xy 147.479844 146.200719) - (xy 147.479849 146.200724) - (xy 147.47985 146.200727) - (xy 147.63295 146.367036) - (xy 147.632954 146.36704) - (xy 147.811351 146.505893) - (xy 148.010169 146.613488) - (xy 148.010172 146.613489) - (xy 148.223982 146.68689) - (xy 148.223984 146.68689) - (xy 148.223986 146.686891) - (xy 148.446967 146.7241) - (xy 148.446968 146.7241) - (xy 148.673032 146.7241) - (xy 148.673033 146.7241) - (xy 148.896014 146.686891) - (xy 149.109831 146.613488) - (xy 149.308649 146.505893) - (xy 149.487046 146.36704) - (xy 149.604098 146.239888) - (xy 149.640149 146.200727) - (xy 149.640149 146.200726) - (xy 149.640156 146.200719) - (xy 149.726193 146.069028) - (xy 149.779338 146.023675) - (xy 149.848569 146.014251) - (xy 149.911905 146.043753) - (xy 149.933804 146.069025) - (xy 150.019844 146.200719) - (xy 150.019849 146.200724) - (xy 150.01985 146.200727) - (xy 150.17295 146.367036) - (xy 150.172954 146.36704) - (xy 150.351351 146.505893) - (xy 150.550169 146.613488) - (xy 150.550172 146.613489) - (xy 150.763982 146.68689) - (xy 150.763984 146.68689) - (xy 150.763986 146.686891) - (xy 150.986967 146.7241) - (xy 150.986968 146.7241) - (xy 151.213032 146.7241) - (xy 151.213033 146.7241) - (xy 151.436014 146.686891) - (xy 151.649831 146.613488) - (xy 151.848649 146.505893) - (xy 152.027046 146.36704) - (xy 152.144098 146.239888) - (xy 152.180149 146.200727) - (xy 152.180149 146.200726) - (xy 152.180156 146.200719) - (xy 152.266193 146.069028) - (xy 152.319338 146.023675) - (xy 152.388569 146.014251) - (xy 152.451905 146.043753) - (xy 152.473804 146.069025) - (xy 152.559844 146.200719) - (xy 152.559849 146.200724) - (xy 152.55985 146.200727) - (xy 152.71295 146.367036) - (xy 152.712954 146.36704) - (xy 152.891351 146.505893) - (xy 153.090169 146.613488) - (xy 153.090172 146.613489) - (xy 153.303982 146.68689) - (xy 153.303984 146.68689) - (xy 153.303986 146.686891) - (xy 153.526967 146.7241) - (xy 153.526968 146.7241) - (xy 153.753032 146.7241) - (xy 153.753033 146.7241) - (xy 153.976014 146.686891) - (xy 154.189831 146.613488) - (xy 154.388649 146.505893) - (xy 154.567046 146.36704) - (xy 154.684098 146.239888) - (xy 154.720149 146.200727) - (xy 154.720149 146.200726) - (xy 154.720156 146.200719) - (xy 154.806193 146.069028) - (xy 154.859338 146.023675) - (xy 154.928569 146.014251) - (xy 154.991905 146.043753) - (xy 155.013804 146.069025) - (xy 155.099844 146.200719) - (xy 155.099849 146.200724) - (xy 155.09985 146.200727) - (xy 155.25295 146.367036) - (xy 155.252954 146.36704) - (xy 155.431351 146.505893) - (xy 155.630169 146.613488) - (xy 155.630172 146.613489) - (xy 155.843982 146.68689) - (xy 155.843984 146.68689) - (xy 155.843986 146.686891) - (xy 156.066967 146.7241) - (xy 156.066968 146.7241) - (xy 156.293032 146.7241) - (xy 156.293033 146.7241) - (xy 156.516014 146.686891) - (xy 156.729831 146.613488) - (xy 156.928649 146.505893) - (xy 157.107046 146.36704) - (xy 157.224098 146.239888) - (xy 157.260149 146.200727) - (xy 157.260149 146.200726) - (xy 157.260156 146.200719) - (xy 157.346193 146.069028) - (xy 157.399338 146.023675) - (xy 157.468569 146.014251) - (xy 157.531905 146.043753) - (xy 157.553804 146.069025) - (xy 157.639844 146.200719) - (xy 157.639849 146.200724) - (xy 157.63985 146.200727) - (xy 157.79295 146.367036) - (xy 157.792954 146.36704) - (xy 157.971351 146.505893) - (xy 158.170169 146.613488) - (xy 158.170172 146.613489) - (xy 158.383982 146.68689) - (xy 158.383984 146.68689) - (xy 158.383986 146.686891) - (xy 158.606967 146.7241) - (xy 158.606968 146.7241) - (xy 158.833032 146.7241) - (xy 158.833033 146.7241) - (xy 159.056014 146.686891) - (xy 159.269831 146.613488) - (xy 159.468649 146.505893) - (xy 159.647046 146.36704) - (xy 159.764098 146.239888) - (xy 159.800149 146.200727) - (xy 159.800149 146.200726) - (xy 159.800156 146.200719) - (xy 159.886193 146.069028) - (xy 159.939338 146.023675) - (xy 160.008569 146.014251) - (xy 160.071905 146.043753) - (xy 160.093804 146.069025) - (xy 160.179844 146.200719) - (xy 160.179849 146.200724) - (xy 160.17985 146.200727) - (xy 160.33295 146.367036) - (xy 160.332954 146.36704) - (xy 160.511351 146.505893) - (xy 160.710169 146.613488) - (xy 160.710172 146.613489) - (xy 160.923982 146.68689) - (xy 160.923984 146.68689) - (xy 160.923986 146.686891) - (xy 161.146967 146.7241) - (xy 161.146968 146.7241) - (xy 161.373032 146.7241) - (xy 161.373033 146.7241) - (xy 161.596014 146.686891) - (xy 161.809831 146.613488) - (xy 162.008649 146.505893) - (xy 162.187046 146.36704) - (xy 162.304098 146.239888) - (xy 162.340149 146.200727) - (xy 162.340151 146.200724) - (xy 162.340156 146.200719) - (xy 162.463802 146.011465) - (xy 162.554611 145.804441) - (xy 162.610107 145.585293) - (xy 162.62316 145.427763) - (xy 164.485787 145.427763) - (xy 164.515413 145.697013) - (xy 164.515415 145.697024) - (xy 164.583926 145.959082) - (xy 164.583928 145.959088) - (xy 164.68987 146.20839) - (xy 164.786691 146.367036) - (xy 164.830979 146.439605) - (xy 164.830986 146.439615) - (xy 165.004253 146.647819) - (xy 165.004259 146.647824) - (xy 165.088831 146.7236) - (xy 165.205998 146.828582) - (xy 165.43191 146.978044) - (xy 165.677176 147.09302) - (xy 165.677183 147.093022) - (xy 165.677185 147.093023) - (xy 165.936557 147.171057) - (xy 165.936564 147.171058) - (xy 165.936569 147.17106) - (xy 166.204561 147.2105) - (xy 166.204566 147.2105) - (xy 166.407629 147.2105) - (xy 166.407631 147.2105) - (xy 166.407636 147.210499) - (xy 166.407648 147.210499) - (xy 166.445191 147.20775) - (xy 166.610156 147.195677) - (xy 166.759043 147.162511) - (xy 166.874546 147.136782) - (xy 166.874548 147.136781) - (xy 166.874553 147.13678) - (xy 167.127558 147.040014) - (xy 167.363777 146.907441) - (xy 167.578177 146.741888) - (xy 167.766186 146.546881) - (xy 167.923799 146.326579) - (xy 167.997787 146.182669) - (xy 168.047649 146.08569) - (xy 168.047651 146.085684) - (xy 168.047656 146.085675) - (xy 168.135118 145.829305) - (xy 168.184319 145.562933) - (xy 168.194212 145.292235) - (xy 168.164586 145.022982) - (xy 168.096072 144.760912) - (xy 167.99013 144.51161) - (xy 167.849018 144.28039) - (xy 167.793857 144.214107) - (xy 167.675746 144.07218) - (xy 167.67574 144.072175) - (xy 167.474002 143.891418) - (xy 167.248092 143.741957) - (xy 167.24809 143.741956) - (xy 167.002824 143.62698) - (xy 167.002819 143.626978) - (xy 167.002814 143.626976) - (xy 166.743442 143.548942) - (xy 166.743428 143.548939) - (xy 166.627791 143.531921) - (xy 166.475439 143.5095) - (xy 166.272369 143.5095) - (xy 166.272351 143.5095) - (xy 166.069844 143.524323) - (xy 166.069831 143.524325) - (xy 165.805453 143.583217) - (xy 165.805446 143.58322) - (xy 165.552439 143.679987) - (xy 165.316226 143.812557) - (xy 165.316224 143.812558) - (xy 165.316223 143.812559) - (xy 165.28394 143.837487) - (xy 165.101822 143.978112) - (xy 164.913822 144.173109) - (xy 164.913816 144.173116) - (xy 164.756202 144.393419) - (xy 164.756199 144.393424) - (xy 164.63235 144.634309) - (xy 164.632343 144.634327) - (xy 164.544884 144.890685) - (xy 164.544881 144.890699) - (xy 164.495681 145.157068) - (xy 164.49568 145.157075) - (xy 164.485787 145.427763) - (xy 162.62316 145.427763) - (xy 162.628775 145.36) - (xy 162.628775 145.359995) - (xy 162.628775 145.359993) - (xy 162.610107 145.13471) - (xy 162.610107 145.134707) - (xy 162.554611 144.915559) - (xy 162.463802 144.708535) - (xy 162.340156 144.519281) - (xy 162.340153 144.519278) - (xy 162.340149 144.519272) - (xy 162.187049 144.352963) - (xy 162.187048 144.352962) - (xy 162.187046 144.35296) - (xy 162.008649 144.214107) - (xy 161.93291 144.173119) - (xy 161.809832 144.106512) - (xy 161.809827 144.10651) - (xy 161.596017 144.033109) - (xy 161.384107 143.997748) - (xy 161.373033 143.9959) - (xy 161.146967 143.9959) - (xy 161.135893 143.997748) - (xy 160.923982 144.033109) - (xy 160.710172 144.10651) - (xy 160.710167 144.106512) - (xy 160.511352 144.214106) - (xy 160.332955 144.352959) - (xy 160.33295 144.352963) - (xy 160.17985 144.519272) - (xy 160.179842 144.519283) - (xy 160.093808 144.650968) - (xy 160.040662 144.696325) - (xy 159.97143 144.705748) - (xy 159.908095 144.676246) - (xy 159.886192 144.650968) - (xy 159.834741 144.572217) - (xy 159.800156 144.519281) - (xy 159.800153 144.519278) - (xy 159.800149 144.519272) - (xy 159.647049 144.352963) - (xy 159.647048 144.352962) - (xy 159.647046 144.35296) - (xy 159.468649 144.214107) - (xy 159.39291 144.173119) - (xy 159.269832 144.106512) - (xy 159.269827 144.10651) - (xy 159.056017 144.033109) - (xy 158.844107 143.997748) - (xy 158.833033 143.9959) - (xy 158.606967 143.9959) - (xy 158.595893 143.997748) - (xy 158.383982 144.033109) - (xy 158.170172 144.10651) - (xy 158.170167 144.106512) - (xy 157.971352 144.214106) - (xy 157.792955 144.352959) - (xy 157.79295 144.352963) - (xy 157.63985 144.519272) - (xy 157.639842 144.519283) - (xy 157.553808 144.650968) - (xy 157.500662 144.696325) - (xy 157.43143 144.705748) - (xy 157.368095 144.676246) - (xy 157.346192 144.650968) - (xy 157.294741 144.572217) - (xy 157.260156 144.519281) - (xy 157.260153 144.519278) - (xy 157.260149 144.519272) - (xy 157.107049 144.352963) - (xy 157.107048 144.352962) - (xy 157.107046 144.35296) - (xy 156.928649 144.214107) - (xy 156.85291 144.173119) - (xy 156.729832 144.106512) - (xy 156.729827 144.10651) - (xy 156.516017 144.033109) - (xy 156.304107 143.997748) - (xy 156.293033 143.9959) - (xy 156.066967 143.9959) - (xy 156.055893 143.997748) - (xy 155.843982 144.033109) - (xy 155.630172 144.10651) - (xy 155.630167 144.106512) - (xy 155.431352 144.214106) - (xy 155.252955 144.352959) - (xy 155.25295 144.352963) - (xy 155.09985 144.519272) - (xy 155.099842 144.519283) - (xy 155.013808 144.650968) - (xy 154.960662 144.696325) - (xy 154.89143 144.705748) - (xy 154.828095 144.676246) - (xy 154.806192 144.650968) - (xy 154.754741 144.572217) - (xy 154.720156 144.519281) - (xy 154.720153 144.519278) - (xy 154.720149 144.519272) - (xy 154.567049 144.352963) - (xy 154.567048 144.352962) - (xy 154.567046 144.35296) - (xy 154.388649 144.214107) - (xy 154.31291 144.173119) - (xy 154.189832 144.106512) - (xy 154.189827 144.10651) - (xy 153.976017 144.033109) - (xy 153.764107 143.997748) - (xy 153.753033 143.9959) - (xy 153.526967 143.9959) - (xy 153.515893 143.997748) - (xy 153.303982 144.033109) - (xy 153.090172 144.10651) - (xy 153.090167 144.106512) - (xy 152.891352 144.214106) - (xy 152.712955 144.352959) - (xy 152.71295 144.352963) - (xy 152.55985 144.519272) - (xy 152.559842 144.519283) - (xy 152.473808 144.650968) - (xy 152.420662 144.696325) - (xy 152.35143 144.705748) - (xy 152.288095 144.676246) - (xy 152.266192 144.650968) - (xy 152.214741 144.572217) - (xy 152.180156 144.519281) - (xy 152.180153 144.519278) - (xy 152.180149 144.519272) - (xy 152.027049 144.352963) - (xy 152.027048 144.352962) - (xy 152.027046 144.35296) - (xy 151.848649 144.214107) - (xy 151.77291 144.173119) - (xy 151.649832 144.106512) - (xy 151.649827 144.10651) - (xy 151.436017 144.033109) - (xy 151.224107 143.997748) - (xy 151.213033 143.9959) - (xy 150.986967 143.9959) - (xy 150.975893 143.997748) - (xy 150.763982 144.033109) - (xy 150.550172 144.10651) - (xy 150.550167 144.106512) - (xy 150.351352 144.214106) - (xy 150.172955 144.352959) - (xy 150.17295 144.352963) - (xy 150.01985 144.519272) - (xy 150.019842 144.519283) - (xy 149.933808 144.650968) - (xy 149.880662 144.696325) - (xy 149.81143 144.705748) - (xy 149.748095 144.676246) - (xy 149.726192 144.650968) - (xy 149.674741 144.572217) - (xy 149.640156 144.519281) - (xy 149.640153 144.519278) - (xy 149.640149 144.519272) - (xy 149.487049 144.352963) - (xy 149.487048 144.352962) - (xy 149.487046 144.35296) - (xy 149.308649 144.214107) - (xy 149.23291 144.173119) - (xy 149.109832 144.106512) - (xy 149.109827 144.10651) - (xy 148.896017 144.033109) - (xy 148.684107 143.997748) - (xy 148.673033 143.9959) - (xy 148.446967 143.9959) - (xy 148.435893 143.997748) - (xy 148.223982 144.033109) - (xy 148.010172 144.10651) - (xy 148.010167 144.106512) - (xy 147.811352 144.214106) - (xy 147.632955 144.352959) - (xy 147.63295 144.352963) - (xy 147.47985 144.519272) - (xy 147.479842 144.519283) - (xy 147.393808 144.650968) - (xy 147.340662 144.696325) - (xy 147.27143 144.705748) - (xy 147.208095 144.676246) - (xy 147.186192 144.650968) - (xy 147.134741 144.572217) - (xy 147.100156 144.519281) - (xy 147.100153 144.519278) - (xy 147.100149 144.519272) - (xy 146.947049 144.352963) - (xy 146.947048 144.352962) - (xy 146.947046 144.35296) - (xy 146.768649 144.214107) - (xy 146.69291 144.173119) - (xy 146.569832 144.106512) - (xy 146.569827 144.10651) - (xy 146.356017 144.033109) - (xy 146.144107 143.997748) - (xy 146.133033 143.9959) - (xy 145.906967 143.9959) - (xy 145.895893 143.997748) - (xy 145.683982 144.033109) - (xy 145.470172 144.10651) - (xy 145.470167 144.106512) - (xy 145.271352 144.214106) - (xy 145.092955 144.352959) - (xy 145.09295 144.352963) - (xy 144.93985 144.519272) - (xy 144.939842 144.519283) - (xy 144.853808 144.650968) - (xy 144.800662 144.696325) - (xy 144.73143 144.705748) - (xy 144.668095 144.676246) - (xy 144.646192 144.650968) - (xy 144.594741 144.572217) - (xy 144.560156 144.519281) - (xy 144.560153 144.519278) - (xy 144.560149 144.519272) - (xy 144.407049 144.352963) - (xy 144.407048 144.352962) - (xy 144.407046 144.35296) - (xy 144.228649 144.214107) - (xy 144.15291 144.173119) - (xy 144.029832 144.106512) - (xy 144.029827 144.10651) - (xy 143.816017 144.033109) - (xy 143.604107 143.997748) - (xy 143.593033 143.9959) - (xy 143.366967 143.9959) - (xy 143.355893 143.997748) - (xy 143.143982 144.033109) - (xy 142.930172 144.10651) - (xy 142.930167 144.106512) - (xy 142.731352 144.214106) - (xy 142.552955 144.352959) - (xy 142.55295 144.352963) - (xy 142.39985 144.519272) - (xy 142.399842 144.519283) - (xy 142.276198 144.708533) - (xy 142.185388 144.91556) - (xy 142.129892 145.13471) - (xy 142.111225 145.359993) - (xy 142.111225 145.360006) - (xy 139.768775 145.360006) - (xy 139.768775 145.36) - (xy 139.768775 145.359995) - (xy 139.768775 145.359993) - (xy 139.750107 145.13471) - (xy 139.750107 145.134707) - (xy 139.694611 144.915559) - (xy 139.603802 144.708535) - (xy 139.480156 144.519281) - (xy 139.480153 144.519278) - (xy 139.480149 144.519272) - (xy 139.327049 144.352963) - (xy 139.327048 144.352962) - (xy 139.327046 144.35296) - (xy 139.148649 144.214107) - (xy 139.07291 144.173119) - (xy 138.949832 144.106512) - (xy 138.949827 144.10651) - (xy 138.736017 144.033109) - (xy 138.524107 143.997748) - (xy 138.513033 143.9959) - (xy 138.286967 143.9959) - (xy 138.275893 143.997748) - (xy 138.063982 144.033109) - (xy 137.850172 144.10651) - (xy 137.850167 144.106512) - (xy 137.651352 144.214106) - (xy 137.472955 144.352959) - (xy 137.47295 144.352963) - (xy 137.31985 144.519272) - (xy 137.319842 144.519283) - (xy 137.233808 144.650968) - (xy 137.180662 144.696325) - (xy 137.11143 144.705748) - (xy 137.048095 144.676246) - (xy 137.026192 144.650968) - (xy 136.974741 144.572217) - (xy 136.940156 144.519281) - (xy 136.940153 144.519278) - (xy 136.940149 144.519272) - (xy 136.787049 144.352963) - (xy 136.787048 144.352962) - (xy 136.787046 144.35296) - (xy 136.608649 144.214107) - (xy 136.53291 144.173119) - (xy 136.409832 144.106512) - (xy 136.409827 144.10651) - (xy 136.196017 144.033109) - (xy 135.984107 143.997748) - (xy 135.973033 143.9959) - (xy 135.746967 143.9959) - (xy 135.735893 143.997748) - (xy 135.523982 144.033109) - (xy 135.310172 144.10651) - (xy 135.310167 144.106512) - (xy 135.111352 144.214106) - (xy 134.932955 144.352959) - (xy 134.93295 144.352963) - (xy 134.77985 144.519272) - (xy 134.779842 144.519283) - (xy 134.693808 144.650968) - (xy 134.640662 144.696325) - (xy 134.57143 144.705748) - (xy 134.508095 144.676246) - (xy 134.486192 144.650968) - (xy 134.434741 144.572217) - (xy 134.400156 144.519281) - (xy 134.400153 144.519278) - (xy 134.400149 144.519272) - (xy 134.247049 144.352963) - (xy 134.247048 144.352962) - (xy 134.247046 144.35296) - (xy 134.068649 144.214107) - (xy 133.99291 144.173119) - (xy 133.869832 144.106512) - (xy 133.869827 144.10651) - (xy 133.656017 144.033109) - (xy 133.444107 143.997748) - (xy 133.433033 143.9959) - (xy 133.206967 143.9959) - (xy 133.195893 143.997748) - (xy 132.983982 144.033109) - (xy 132.770172 144.10651) - (xy 132.770167 144.106512) - (xy 132.571352 144.214106) - (xy 132.392955 144.352959) - (xy 132.39295 144.352963) - (xy 132.23985 144.519272) - (xy 132.239842 144.519283) - (xy 132.153808 144.650968) - (xy 132.100662 144.696325) - (xy 132.03143 144.705748) - (xy 131.968095 144.676246) - (xy 131.946192 144.650968) - (xy 131.894741 144.572217) - (xy 131.860156 144.519281) - (xy 131.860153 144.519278) - (xy 131.860149 144.519272) - (xy 131.707049 144.352963) - (xy 131.707048 144.352962) - (xy 131.707046 144.35296) - (xy 131.528649 144.214107) - (xy 131.45291 144.173119) - (xy 131.329832 144.106512) - (xy 131.329827 144.10651) - (xy 131.116017 144.033109) - (xy 130.904107 143.997748) - (xy 130.893033 143.9959) - (xy 130.666967 143.9959) - (xy 130.655893 143.997748) - (xy 130.443982 144.033109) - (xy 130.230172 144.10651) - (xy 130.230167 144.106512) - (xy 130.031352 144.214106) - (xy 129.852955 144.352959) - (xy 129.85295 144.352963) - (xy 129.69985 144.519272) - (xy 129.699846 144.519278) - (xy 129.613807 144.650969) - (xy 129.56066 144.696325) - (xy 129.491429 144.705748) - (xy 129.428093 144.676245) - (xy 129.406192 144.650969) - (xy 129.320156 144.519281) - (xy 129.320151 144.519276) - (xy 129.320149 144.519272) - (xy 129.167049 144.352963) - (xy 129.167048 144.352962) - (xy 129.167046 144.35296) - (xy 128.988649 144.214107) - (xy 128.91291 144.173119) - (xy 128.789832 144.106512) - (xy 128.789827 144.10651) - (xy 128.576017 144.033109) - (xy 128.364107 143.997748) - (xy 128.353033 143.9959) - (xy 128.126967 143.9959) - (xy 128.115893 143.997748) - (xy 127.903982 144.033109) - (xy 127.690172 144.10651) - (xy 127.690167 144.106512) - (xy 127.491352 144.214106) - (xy 127.312955 144.352959) - (xy 127.31295 144.352963) - (xy 127.15985 144.519272) - (xy 127.159842 144.519283) - (xy 127.073808 144.650968) - (xy 127.020662 144.696325) - (xy 126.95143 144.705748) - (xy 126.888095 144.676246) - (xy 126.866192 144.650968) - (xy 126.814741 144.572217) - (xy 126.780156 144.519281) - (xy 126.780153 144.519278) - (xy 126.780149 144.519272) - (xy 126.627049 144.352963) - (xy 126.627048 144.352962) - (xy 126.627046 144.35296) - (xy 126.448649 144.214107) - (xy 126.37291 144.173119) - (xy 126.249832 144.106512) - (xy 126.249827 144.10651) - (xy 126.036017 144.033109) - (xy 125.824107 143.997748) - (xy 125.813033 143.9959) - (xy 125.586967 143.9959) - (xy 125.575893 143.997748) - (xy 125.363982 144.033109) - (xy 125.150172 144.10651) - (xy 125.150167 144.106512) - (xy 124.951352 144.214106) - (xy 124.772955 144.352959) - (xy 124.77295 144.352963) - (xy 124.61985 144.519272) - (xy 124.619842 144.519283) - (xy 124.533808 144.650968) - (xy 124.480662 144.696325) - (xy 124.41143 144.705748) - (xy 124.348095 144.676246) - (xy 124.326192 144.650968) - (xy 124.274741 144.572217) - (xy 124.240156 144.519281) - (xy 124.240153 144.519278) - (xy 124.240149 144.519272) - (xy 124.087049 144.352963) - (xy 124.087048 144.352962) - (xy 124.087046 144.35296) - (xy 123.908649 144.214107) - (xy 123.83291 144.173119) - (xy 123.709832 144.106512) - (xy 123.709827 144.10651) - (xy 123.496017 144.033109) - (xy 123.284107 143.997748) - (xy 123.273033 143.9959) - (xy 123.046967 143.9959) - (xy 123.035893 143.997748) - (xy 122.823982 144.033109) - (xy 122.610172 144.10651) - (xy 122.610167 144.106512) - (xy 122.411352 144.214106) - (xy 122.232955 144.352959) - (xy 122.23295 144.352963) - (xy 122.07985 144.519272) - (xy 122.079842 144.519283) - (xy 121.993808 144.650968) - (xy 121.940662 144.696325) - (xy 121.87143 144.705748) - (xy 121.808095 144.676246) - (xy 121.786192 144.650968) - (xy 121.734741 144.572217) - (xy 121.700156 144.519281) - (xy 121.700153 144.519278) - (xy 121.700149 144.519272) - (xy 121.547049 144.352963) - (xy 121.547048 144.352962) - (xy 121.547046 144.35296) - (xy 121.368649 144.214107) - (xy 121.29291 144.173119) - (xy 121.169832 144.106512) - (xy 121.169827 144.10651) - (xy 120.956017 144.033109) - (xy 120.744107 143.997748) - (xy 120.733033 143.9959) - (xy 120.506967 143.9959) - (xy 120.495893 143.997748) - (xy 120.283982 144.033109) - (xy 120.070172 144.10651) - (xy 120.070167 144.106512) - (xy 119.871352 144.214106) - (xy 119.692955 144.352959) - (xy 119.69295 144.352963) - (xy 119.53985 144.519272) - (xy 119.539842 144.519283) - (xy 119.416198 144.708533) - (xy 119.325388 144.91556) - (xy 119.269892 145.13471) - (xy 119.251225 145.359993) - (xy 119.251225 145.360006) - (xy 116.908775 145.360006) - (xy 116.908775 145.36) - (xy 116.908774 145.359993) - (xy 116.903525 145.296644) - (xy 116.917605 145.228208) - (xy 116.939417 145.198725) - (xy 120.086324 142.051819) - (xy 120.147648 142.018334) - (xy 120.174006 142.0155) - (xy 141.067471 142.0155) - (xy 141.13451 142.035185) - (xy 141.1587 142.055517) - (xy 141.24295 142.147036) - (xy 141.242954 142.14704) - (xy 141.421351 142.285893) - (xy 141.620169 142.393488) - (xy 141.620172 142.393489) - (xy 141.833982 142.46689) - (xy 141.833984 142.46689) - (xy 141.833986 142.466891) - (xy 142.056967 142.5041) - (xy 142.056968 142.5041) - (xy 142.283032 142.5041) - (xy 142.283033 142.5041) - (xy 142.506014 142.466891) - (xy 142.719831 142.393488) - (xy 142.918649 142.285893) - (xy 143.097046 142.14704) - (xy 143.250156 141.980719) - (xy 143.373802 141.791465) - (xy 143.464611 141.584441) - (xy 143.520107 141.365293) - (xy 143.532723 141.213039) - (xy 143.538775 141.140006) - (xy 158.581727 141.140006) - (xy 158.600386 141.365202) - (xy 158.600388 141.365213) - (xy 158.655863 141.584278) - (xy 158.746639 141.791225) - (xy 158.825109 141.911334) - (xy 159.460477 141.275967) - (xy 159.483155 141.353201) - (xy 159.562131 141.47609) - (xy 159.67253 141.571752) - (xy 159.805408 141.632435) - (xy 159.810399 141.633152) - (xy 159.177139 142.266412) - (xy 159.17714 142.266413) - (xy 159.201622 142.285468) - (xy 159.201632 142.285475) - (xy 159.40036 142.393022) - (xy 159.400375 142.393029) - (xy 159.614106 142.466403) - (xy 159.83701 142.5036) - (xy 160.06299 142.5036) - (xy 160.285893 142.466403) - (xy 160.499624 142.393029) - (xy 160.499639 142.393022) - (xy 160.698366 142.285476) - (xy 160.698378 142.285468) - (xy 160.722859 142.266413) - (xy 160.722859 142.266412) - (xy 160.0896 141.633152) - (xy 160.094592 141.632435) - (xy 160.22747 141.571752) - (xy 160.337869 141.47609) - (xy 160.416845 141.353201) - (xy 160.439522 141.275969) - (xy 161.074888 141.911334) - (xy 161.153361 141.791222) - (xy 161.244136 141.584278) - (xy 161.299611 141.365213) - (xy 161.299613 141.365202) - (xy 161.318273 141.140006) - (xy 161.318273 141.139993) - (xy 161.299613 140.914797) - (xy 161.299611 140.914786) - (xy 161.244136 140.695721) - (xy 161.15336 140.488774) - (xy 161.074888 140.368663) - (xy 160.439522 141.00403) - (xy 160.416845 140.926799) - (xy 160.337869 140.80391) - (xy 160.22747 140.708248) - (xy 160.094592 140.647565) - (xy 160.089599 140.646847) - (xy 160.722859 140.013587) - (xy 160.722858 140.013585) - (xy 160.698378 139.994531) - (xy 160.698368 139.994524) - (xy 160.499639 139.886977) - (xy 160.499624 139.88697) - (xy 160.285893 139.813596) - (xy 160.06299 139.7764) - (xy 159.83701 139.7764) - (xy 159.614106 139.813596) - (xy 159.400375 139.88697) - (xy 159.400369 139.886972) - (xy 159.201623 139.994529) - (xy 159.201617 139.994533) - (xy 159.17714 140.013584) - (xy 159.17714 140.013586) - (xy 159.810401 140.646847) - (xy 159.805408 140.647565) - (xy 159.67253 140.708248) - (xy 159.562131 140.80391) - (xy 159.483155 140.926799) - (xy 159.460477 141.004031) - (xy 158.82511 140.368664) - (xy 158.746638 140.488777) - (xy 158.746637 140.488779) - (xy 158.655863 140.695721) - (xy 158.600388 140.914786) - (xy 158.600386 140.914797) - (xy 158.581727 141.139993) - (xy 158.581727 141.140006) - (xy 143.538775 141.140006) - (xy 143.538775 141.139993) - (xy 143.520114 140.914797) - (xy 143.520107 140.914707) - (xy 143.464611 140.695559) - (xy 143.373802 140.488535) - (xy 143.350978 140.453601) - (xy 143.295373 140.368491) - (xy 143.250156 140.299281) - (xy 143.250153 140.299278) - (xy 143.250149 140.299272) - (xy 143.097049 140.132963) - (xy 143.097048 140.132962) - (xy 143.097046 140.13296) - (xy 142.918649 139.994107) - (xy 142.886678 139.976805) - (xy 142.719832 139.886512) - (xy 142.719827 139.88651) - (xy 142.506017 139.813109) - (xy 142.338778 139.785202) - (xy 142.283033 139.7759) - (xy 142.056967 139.7759) - (xy 142.01237 139.783341) - (xy 141.833982 139.813109) - (xy 141.620172 139.88651) - (xy 141.620167 139.886512) - (xy 141.421352 139.994106) - (xy 141.242955 140.132959) - (xy 141.24295 140.132963) - (xy 141.1587 140.224483) - (xy 141.098813 140.260474) - (xy 141.067471 140.2645) - (xy 119.798099 140.2645) - (xy 119.793064 140.264295) - (xy 119.736154 140.25966) - (xy 119.736147 140.259661) - (xy 119.654381 140.270801) - (xy 119.652715 140.271005) - (xy 119.57068 140.279927) - (xy 119.57049 140.279992) - (xy 119.547665 140.285341) - (xy 119.547469 140.285367) - (xy 119.547463 140.285368) - (xy 119.547463 140.285369) - (xy 119.527966 140.292531) - (xy 119.469991 140.31383) - (xy 119.468409 140.314387) - (xy 119.390225 140.34073) - (xy 119.390217 140.340734) - (xy 119.39004 140.340841) - (xy 119.368911 140.350965) - (xy 119.368713 140.351037) - (xy 119.299185 140.395478) - (xy 119.29776 140.396362) - (xy 119.227046 140.43891) - (xy 119.227041 140.438914) - (xy 119.22689 140.439058) - (xy 119.208436 140.453485) - (xy 119.20826 140.453597) - (xy 119.208255 140.453601) - (xy 119.149901 140.511954) - (xy 119.148699 140.513124) - (xy 119.088792 140.569871) - (xy 119.088681 140.570036) - (xy 119.073737 140.588117) - (xy 115.702274 143.959581) - (xy 115.640951 143.993066) - (xy 115.614593 143.9959) - (xy 115.426967 143.9959) - (xy 115.415893 143.997748) - (xy 115.203982 144.033109) - (xy 114.990172 144.10651) - (xy 114.990167 144.106512) - (xy 114.791352 144.214106) - (xy 114.612955 144.352958) - (xy 114.558186 144.412453) - (xy 114.498298 144.448443) - (xy 114.42846 144.446342) - (xy 114.370845 144.406817) - (xy 114.350775 144.371802) - (xy 114.306954 144.254313) - (xy 114.30695 144.254306) - (xy 114.22079 144.139212) - (xy 114.220787 144.139209) - (xy 114.105693 144.053049) - (xy 114.105686 144.053045) - (xy 113.970979 144.002803) - (xy 113.970972 144.002801) - (xy 113.911444 143.9964) - (xy 113.25 143.9964) - (xy 113.249999 144.915702) - (xy 113.144592 144.867565) - (xy 113.036334 144.852) - (xy 112.963666 144.852) - (xy 112.855408 144.867565) - (xy 112.75 144.915702) - (xy 112.75 143.9964) - (xy 112.088555 143.9964) - (xy 112.029027 144.002801) - (xy 112.02902 144.002803) - (xy 111.894313 144.053045) - (xy 111.894307 144.053049) - (xy 111.804309 144.120421) - (xy 111.738845 144.144838) - (xy 111.670572 144.129986) - (xy 111.655688 144.12042) - (xy 111.565693 144.053049) - (xy 111.565686 144.053045) - (xy 111.430979 144.002803) - (xy 111.430972 144.002801) - (xy 111.371444 143.9964) - (xy 110.71 143.9964) - (xy 110.71 144.915702) - (xy 110.604592 144.867565) - (xy 110.496334 144.852) - (xy 110.423666 144.852) - (xy 110.315408 144.867565) - (xy 110.209999 144.915702) - (xy 110.21 143.9964) - (xy 109.548555 143.9964) - (xy 109.489027 144.002801) - (xy 109.48902 144.002803) - (xy 109.354313 144.053045) - (xy 109.354306 144.053049) - (xy 109.239212 144.139209) - (xy 109.239209 144.139212) - (xy 109.153049 144.254306) - (xy 109.153046 144.254312) - (xy 109.109224 144.371803) - (xy 109.067352 144.427736) - (xy 109.001887 144.452153) - (xy 108.933615 144.437301) - (xy 108.901813 144.412452) - (xy 108.847049 144.352963) - (xy 108.847048 144.352962) - (xy 108.847046 144.35296) - (xy 108.668649 144.214107) - (xy 108.59291 144.173119) - (xy 108.469832 144.106512) - (xy 108.469827 144.10651) - (xy 108.256017 144.033109) - (xy 108.044107 143.997748) - (xy 108.033033 143.9959) - (xy 107.806967 143.9959) - (xy 107.795893 143.997748) - (xy 107.583982 144.033109) - (xy 107.370172 144.10651) - (xy 107.370167 144.106512) - (xy 107.171352 144.214106) - (xy 106.992955 144.352959) - (xy 106.99295 144.352963) - (xy 106.83985 144.519272) - (xy 106.839842 144.519283) - (xy 106.753808 144.650968) - (xy 106.700662 144.696325) - (xy 106.63143 144.705748) - (xy 106.568095 144.676246) - (xy 106.546192 144.650968) - (xy 106.494741 144.572217) - (xy 106.460156 144.519281) - (xy 106.460153 144.519278) - (xy 106.460149 144.519272) - (xy 106.307049 144.352963) - (xy 106.307048 144.352962) - (xy 106.307046 144.35296) - (xy 106.128649 144.214107) - (xy 106.05291 144.173119) - (xy 105.929832 144.106512) - (xy 105.929827 144.10651) - (xy 105.716017 144.033109) - (xy 105.504107 143.997748) - (xy 105.493033 143.9959) - (xy 105.266967 143.9959) - (xy 105.255893 143.997748) - (xy 105.043982 144.033109) - (xy 104.830172 144.10651) - (xy 104.830167 144.106512) - (xy 104.631352 144.214106) - (xy 104.452955 144.352959) - (xy 104.45295 144.352963) - (xy 104.29985 144.519272) - (xy 104.299842 144.519283) - (xy 104.213808 144.650968) - (xy 104.160662 144.696325) - (xy 104.09143 144.705748) - (xy 104.028095 144.676246) - (xy 104.006192 144.650968) - (xy 103.954741 144.572217) - (xy 103.920156 144.519281) - (xy 103.920153 144.519278) - (xy 103.920149 144.519272) - (xy 103.767049 144.352963) - (xy 103.767048 144.352962) - (xy 103.767046 144.35296) - (xy 103.588649 144.214107) - (xy 103.51291 144.173119) - (xy 103.389832 144.106512) - (xy 103.389827 144.10651) - (xy 103.176017 144.033109) - (xy 102.964107 143.997748) - (xy 102.953033 143.9959) - (xy 102.726967 143.9959) - (xy 102.715893 143.997748) - (xy 102.503982 144.033109) - (xy 102.290172 144.10651) - (xy 102.290167 144.106512) - (xy 102.091352 144.214106) - (xy 101.912955 144.352959) - (xy 101.91295 144.352963) - (xy 101.75985 144.519272) - (xy 101.759846 144.519278) - (xy 101.673807 144.650969) - (xy 101.62066 144.696325) - (xy 101.551429 144.705748) - (xy 101.488093 144.676245) - (xy 101.466192 144.650969) - (xy 101.380156 144.519281) - (xy 101.380151 144.519276) - (xy 101.380149 144.519272) - (xy 101.227049 144.352963) - (xy 101.227048 144.352962) - (xy 101.227046 144.35296) - (xy 101.048649 144.214107) - (xy 100.97291 144.173119) - (xy 100.849832 144.106512) - (xy 100.849827 144.10651) - (xy 100.636017 144.033109) - (xy 100.424107 143.997748) - (xy 100.413033 143.9959) - (xy 100.186967 143.9959) - (xy 100.175893 143.997748) - (xy 99.963982 144.033109) - (xy 99.750172 144.10651) - (xy 99.750167 144.106512) - (xy 99.551352 144.214106) - (xy 99.372955 144.352959) - (xy 99.37295 144.352963) - (xy 99.21985 144.519272) - (xy 99.219842 144.519283) - (xy 99.133808 144.650968) - (xy 99.080662 144.696325) - (xy 99.01143 144.705748) - (xy 98.948095 144.676246) - (xy 98.926192 144.650968) - (xy 98.874741 144.572217) - (xy 98.840156 144.519281) - (xy 98.840153 144.519278) - (xy 98.840149 144.519272) - (xy 98.687049 144.352963) - (xy 98.687048 144.352962) - (xy 98.687046 144.35296) - (xy 98.508649 144.214107) - (xy 98.43291 144.173119) - (xy 98.309832 144.106512) - (xy 98.309827 144.10651) - (xy 98.096017 144.033109) - (xy 97.884107 143.997748) - (xy 97.873033 143.9959) - (xy 97.646967 143.9959) - (xy 97.635893 143.997748) - (xy 97.423982 144.033109) - (xy 97.210172 144.10651) - (xy 97.210167 144.106512) - (xy 97.011352 144.214106) - (xy 96.832955 144.352959) - (xy 96.83295 144.352963) - (xy 96.67985 144.519272) - (xy 96.679842 144.519283) - (xy 96.556198 144.708533) - (xy 96.465388 144.91556) - (xy 96.409892 145.13471) - (xy 96.391225 145.359993) - (xy 96.391225 145.360006) - (xy 85.641735 145.360006) - (xy 85.644212 145.292235) - (xy 85.614586 145.022982) - (xy 85.546072 144.760912) - (xy 85.44013 144.51161) - (xy 85.299018 144.28039) - (xy 85.243857 144.214107) - (xy 85.125746 144.07218) - (xy 85.12574 144.072175) - (xy 84.924002 143.891418) - (xy 84.698092 143.741957) - (xy 84.69809 143.741956) - (xy 84.452824 143.62698) - (xy 84.452819 143.626978) - (xy 84.452814 143.626976) - (xy 84.193442 143.548942) - (xy 84.193428 143.548939) - (xy 84.077791 143.531921) - (xy 83.925439 143.5095) - (xy 83.722369 143.5095) - (xy 83.722351 143.5095) - (xy 83.519844 143.524323) - (xy 83.519831 143.524325) - (xy 83.255453 143.583217) - (xy 83.255446 143.58322) - (xy 83.002439 143.679987) - (xy 82.766226 143.812557) - (xy 82.766224 143.812558) - (xy 82.766223 143.812559) - (xy 82.73394 143.837487) - (xy 82.551822 143.978112) - (xy 82.363822 144.173109) - (xy 82.363816 144.173116) - (xy 82.206202 144.393419) - (xy 82.206199 144.393424) - (xy 82.08235 144.634309) - (xy 82.082343 144.634327) - (xy 81.994884 144.890685) - (xy 81.994881 144.890699) - (xy 81.945681 145.157068) - (xy 81.94568 145.157075) - (xy 81.935787 145.427763) - (xy 81 145.427763) - (xy 81 133.805506) - (xy 84.141225 133.805506) - (xy 84.159892 134.030789) - (xy 84.159892 134.030792) - (xy 84.159893 134.030793) - (xy 84.160419 134.032872) - (xy 84.215388 134.249939) - (xy 84.306198 134.456966) - (xy 84.429842 134.646216) - (xy 84.42985 134.646227) - (xy 84.559217 134.786755) - (xy 84.582954 134.81254) - (xy 84.761351 134.951393) - (xy 84.960169 135.058988) - (xy 84.960172 135.058989) - (xy 85.173982 135.13239) - (xy 85.173984 135.13239) - (xy 85.173986 135.132391) - (xy 85.396967 135.1696) - (xy 85.396968 135.1696) - (xy 85.623032 135.1696) - (xy 85.623033 135.1696) - (xy 85.846014 135.132391) - (xy 85.848508 135.131535) - (xy 85.861874 135.126946) - (xy 86.059831 135.058988) - (xy 86.258649 134.951393) - (xy 86.31183 134.91) - (xy 93.188647 134.91) - (xy 93.209174 135.131535) - (xy 93.209175 135.131537) - (xy 93.270059 135.345523) - (xy 93.270065 135.345538) - (xy 93.369228 135.544683) - (xy 93.369233 135.544691) - (xy 93.50331 135.722238) - (xy 93.667727 135.872123) - (xy 93.667729 135.872125) - (xy 93.856885 135.989245) - (xy 93.856886 135.989245) - (xy 93.856889 135.989247) - (xy 94.06435 136.069618) - (xy 94.283047 136.1105) - (xy 94.283049 136.1105) - (xy 94.505531 136.1105) - (xy 94.505533 136.1105) - (xy 94.72423 136.069618) - (xy 94.931691 135.989247) - (xy 95.120852 135.872124) - (xy 95.285271 135.722236) - (xy 95.419348 135.544689) - (xy 95.518519 135.345528) - (xy 95.579405 135.131536) - (xy 95.599933 134.91) - (xy 96.272932 134.91) - (xy 96.293459 135.131535) - (xy 96.29346 135.131537) - (xy 96.354344 135.345523) - (xy 96.35435 135.345538) - (xy 96.453513 135.544683) - (xy 96.453518 135.544691) - (xy 96.587595 135.722238) - (xy 96.752012 135.872123) - (xy 96.752014 135.872125) - (xy 96.94117 135.989245) - (xy 96.941171 135.989245) - (xy 96.941174 135.989247) - (xy 97.148635 136.069618) - (xy 97.367332 136.1105) - (xy 97.367334 136.1105) - (xy 97.589816 136.1105) - (xy 97.589818 136.1105) - (xy 97.808515 136.069618) - (xy 98.015976 135.989247) - (xy 98.205137 135.872124) - (xy 98.369556 135.722236) - (xy 98.503633 135.544689) - (xy 98.602804 135.345528) - (xy 98.66369 135.131536) - (xy 98.684218 134.91) - (xy 99.357217 134.91) - (xy 99.377744 135.131535) - (xy 99.377745 135.131537) - (xy 99.438629 135.345523) - (xy 99.438635 135.345538) - (xy 99.537798 135.544683) - (xy 99.537803 135.544691) - (xy 99.67188 135.722238) - (xy 99.836297 135.872123) - (xy 99.836299 135.872125) - (xy 100.025455 135.989245) - (xy 100.025456 135.989245) - (xy 100.025459 135.989247) - (xy 100.23292 136.069618) - (xy 100.451617 136.1105) - (xy 100.451619 136.1105) - (xy 100.674101 136.1105) - (xy 100.674103 136.1105) - (xy 100.8928 136.069618) - (xy 101.100261 135.989247) - (xy 101.289422 135.872124) - (xy 101.453841 135.722236) - (xy 101.587918 135.544689) - (xy 101.687089 135.345528) - (xy 101.747975 135.131536) - (xy 101.768503 134.91) - (xy 102.441502 134.91) - (xy 102.462029 135.131535) - (xy 102.46203 135.131537) - (xy 102.522914 135.345523) - (xy 102.52292 135.345538) - (xy 102.622083 135.544683) - (xy 102.622088 135.544691) - (xy 102.756165 135.722238) - (xy 102.920582 135.872123) - (xy 102.920584 135.872125) - (xy 103.10974 135.989245) - (xy 103.109741 135.989245) - (xy 103.109744 135.989247) - (xy 103.317205 136.069618) - (xy 103.535902 136.1105) - (xy 103.535904 136.1105) - (xy 103.758386 136.1105) - (xy 103.758388 136.1105) - (xy 103.977085 136.069618) - (xy 104.184546 135.989247) - (xy 104.373707 135.872124) - (xy 104.538126 135.722236) - (xy 104.672203 135.544689) - (xy 104.771374 135.345528) - (xy 104.83226 135.131536) - (xy 104.852788 134.91) - (xy 105.525787 134.91) - (xy 105.546314 135.131535) - (xy 105.546315 135.131537) - (xy 105.607199 135.345523) - (xy 105.607205 135.345538) - (xy 105.706368 135.544683) - (xy 105.706373 135.544691) - (xy 105.84045 135.722238) - (xy 106.004867 135.872123) - (xy 106.004869 135.872125) - (xy 106.194025 135.989245) - (xy 106.194026 135.989245) - (xy 106.194029 135.989247) - (xy 106.40149 136.069618) - (xy 106.620187 136.1105) - (xy 106.620189 136.1105) - (xy 106.842671 136.1105) - (xy 106.842673 136.1105) - (xy 107.06137 136.069618) - (xy 107.268831 135.989247) - (xy 107.457992 135.872124) - (xy 107.622411 135.722236) - (xy 107.756488 135.544689) - (xy 107.855659 135.345528) - (xy 107.916545 135.131536) - (xy 107.937073 134.91) - (xy 108.610072 134.91) - (xy 108.630599 135.131535) - (xy 108.6306 135.131537) - (xy 108.691484 135.345523) - (xy 108.69149 135.345538) - (xy 108.790653 135.544683) - (xy 108.790658 135.544691) - (xy 108.924735 135.722238) - (xy 109.089152 135.872123) - (xy 109.089154 135.872125) - (xy 109.27831 135.989245) - (xy 109.278311 135.989245) - (xy 109.278314 135.989247) - (xy 109.485775 136.069618) - (xy 109.704472 136.1105) - (xy 109.704474 136.1105) - (xy 109.926956 136.1105) - (xy 109.926958 136.1105) - (xy 110.145655 136.069618) - (xy 110.353116 135.989247) - (xy 110.542277 135.872124) - (xy 110.706696 135.722236) - (xy 110.840773 135.544689) - (xy 110.939944 135.345528) - (xy 111.00083 135.131536) - (xy 111.021358 134.91) - (xy 111.694357 134.91) - (xy 111.714884 135.131535) - (xy 111.714885 135.131537) - (xy 111.775769 135.345523) - (xy 111.775775 135.345538) - (xy 111.874938 135.544683) - (xy 111.874943 135.544691) - (xy 112.00902 135.722238) - (xy 112.173437 135.872123) - (xy 112.173439 135.872125) - (xy 112.362595 135.989245) - (xy 112.362596 135.989245) - (xy 112.362599 135.989247) - (xy 112.57006 136.069618) - (xy 112.788757 136.1105) - (xy 112.788759 136.1105) - (xy 113.011241 136.1105) - (xy 113.011243 136.1105) - (xy 113.22994 136.069618) - (xy 113.437401 135.989247) - (xy 113.626562 135.872124) - (xy 113.790981 135.722236) - (xy 113.925058 135.544689) - (xy 114.024229 135.345528) - (xy 114.085115 135.131536) - (xy 114.105643 134.91) - (xy 114.778647 134.91) - (xy 114.799174 135.131535) - (xy 114.799175 135.131537) - (xy 114.860059 135.345523) - (xy 114.860065 135.345538) - (xy 114.959228 135.544683) - (xy 114.959233 135.544691) - (xy 115.09331 135.722238) - (xy 115.257727 135.872123) - (xy 115.257729 135.872125) - (xy 115.446885 135.989245) - (xy 115.446886 135.989245) - (xy 115.446889 135.989247) - (xy 115.65435 136.069618) - (xy 115.873047 136.1105) - (xy 115.873049 136.1105) - (xy 116.095531 136.1105) - (xy 116.095533 136.1105) - (xy 116.31423 136.069618) - (xy 116.521691 135.989247) - (xy 116.710852 135.872124) - (xy 116.875271 135.722236) - (xy 117.009348 135.544689) - (xy 117.108519 135.345528) - (xy 117.169405 135.131536) - (xy 117.189933 134.91) - (xy 117.172597 134.722917) - (xy 117.169405 134.688464) - (xy 117.169404 134.688462) - (xy 117.167592 134.682095) - (xy 117.108519 134.474472) - (xy 117.099802 134.456966) - (xy 117.009351 134.275316) - (xy 117.009346 134.275308) - (xy 116.875269 134.097761) - (xy 116.710852 133.947876) - (xy 116.71085 133.947874) - (xy 116.521694 133.830754) - (xy 116.521688 133.830752) - (xy 116.31423 133.750382) - (xy 116.095533 133.7095) - (xy 115.873047 133.7095) - (xy 115.65435 133.750382) - (xy 115.594175 133.773694) - (xy 115.446891 133.830752) - (xy 115.446885 133.830754) - (xy 115.257729 133.947874) - (xy 115.257727 133.947876) - (xy 115.09331 134.097761) - (xy 114.959233 134.275308) - (xy 114.959228 134.275316) - (xy 114.860065 134.474461) - (xy 114.860059 134.474476) - (xy 114.799175 134.688462) - (xy 114.799174 134.688464) - (xy 114.778647 134.909999) - (xy 114.778647 134.91) - (xy 114.105643 134.91) - (xy 114.088307 134.722917) - (xy 114.085115 134.688464) - (xy 114.085114 134.688462) - (xy 114.083302 134.682095) - (xy 114.024229 134.474472) - (xy 114.015512 134.456966) - (xy 113.925061 134.275316) - (xy 113.925056 134.275308) - (xy 113.790979 134.097761) - (xy 113.626562 133.947876) - (xy 113.62656 133.947874) - (xy 113.437404 133.830754) - (xy 113.437398 133.830752) - (xy 113.22994 133.750382) - (xy 113.011243 133.7095) - (xy 112.788757 133.7095) - (xy 112.57006 133.750382) - (xy 112.509885 133.773694) - (xy 112.362601 133.830752) - (xy 112.362595 133.830754) - (xy 112.173439 133.947874) - (xy 112.173437 133.947876) - (xy 112.00902 134.097761) - (xy 111.874943 134.275308) - (xy 111.874938 134.275316) - (xy 111.775775 134.474461) - (xy 111.775769 134.474476) - (xy 111.714885 134.688462) - (xy 111.714884 134.688464) - (xy 111.694357 134.909999) - (xy 111.694357 134.91) - (xy 111.021358 134.91) - (xy 111.004022 134.722917) - (xy 111.00083 134.688464) - (xy 111.000829 134.688462) - (xy 110.999017 134.682095) - (xy 110.939944 134.474472) - (xy 110.931227 134.456966) - (xy 110.840776 134.275316) - (xy 110.840771 134.275308) - (xy 110.706694 134.097761) - (xy 110.542277 133.947876) - (xy 110.542275 133.947874) - (xy 110.353119 133.830754) - (xy 110.353113 133.830752) - (xy 110.145655 133.750382) - (xy 109.926958 133.7095) - (xy 109.704472 133.7095) - (xy 109.485775 133.750382) - (xy 109.4256 133.773694) - (xy 109.278316 133.830752) - (xy 109.27831 133.830754) - (xy 109.089154 133.947874) - (xy 109.089152 133.947876) - (xy 108.924735 134.097761) - (xy 108.790658 134.275308) - (xy 108.790653 134.275316) - (xy 108.69149 134.474461) - (xy 108.691484 134.474476) - (xy 108.6306 134.688462) - (xy 108.630599 134.688464) - (xy 108.610072 134.909999) - (xy 108.610072 134.91) - (xy 107.937073 134.91) - (xy 107.919737 134.722917) - (xy 107.916545 134.688464) - (xy 107.916544 134.688462) - (xy 107.914732 134.682095) - (xy 107.855659 134.474472) - (xy 107.846942 134.456966) - (xy 107.756491 134.275316) - (xy 107.756486 134.275308) - (xy 107.622409 134.097761) - (xy 107.457992 133.947876) - (xy 107.45799 133.947874) - (xy 107.268834 133.830754) - (xy 107.268828 133.830752) - (xy 107.06137 133.750382) - (xy 106.842673 133.7095) - (xy 106.620187 133.7095) - (xy 106.40149 133.750382) - (xy 106.341315 133.773694) - (xy 106.194031 133.830752) - (xy 106.194025 133.830754) - (xy 106.004869 133.947874) - (xy 106.004867 133.947876) - (xy 105.84045 134.097761) - (xy 105.706373 134.275308) - (xy 105.706368 134.275316) - (xy 105.607205 134.474461) - (xy 105.607199 134.474476) - (xy 105.546315 134.688462) - (xy 105.546314 134.688464) - (xy 105.525787 134.909999) - (xy 105.525787 134.91) - (xy 104.852788 134.91) - (xy 104.835452 134.722917) - (xy 104.83226 134.688464) - (xy 104.832259 134.688462) - (xy 104.830447 134.682095) - (xy 104.771374 134.474472) - (xy 104.762657 134.456966) - (xy 104.672206 134.275316) - (xy 104.672201 134.275308) - (xy 104.538124 134.097761) - (xy 104.373707 133.947876) - (xy 104.373705 133.947874) - (xy 104.184549 133.830754) - (xy 104.184543 133.830752) - (xy 103.977085 133.750382) - (xy 103.758388 133.7095) - (xy 103.535902 133.7095) - (xy 103.317205 133.750382) - (xy 103.25703 133.773694) - (xy 103.109746 133.830752) - (xy 103.10974 133.830754) - (xy 102.920584 133.947874) - (xy 102.920582 133.947876) - (xy 102.756165 134.097761) - (xy 102.622088 134.275308) - (xy 102.622083 134.275316) - (xy 102.52292 134.474461) - (xy 102.522914 134.474476) - (xy 102.46203 134.688462) - (xy 102.462029 134.688464) - (xy 102.441502 134.909999) - (xy 102.441502 134.91) - (xy 101.768503 134.91) - (xy 101.751167 134.722917) - (xy 101.747975 134.688464) - (xy 101.747974 134.688462) - (xy 101.746162 134.682095) - (xy 101.687089 134.474472) - (xy 101.678372 134.456966) - (xy 101.587921 134.275316) - (xy 101.587916 134.275308) - (xy 101.453839 134.097761) - (xy 101.289422 133.947876) - (xy 101.28942 133.947874) - (xy 101.100264 133.830754) - (xy 101.100258 133.830752) - (xy 100.8928 133.750382) - (xy 100.674103 133.7095) - (xy 100.451617 133.7095) - (xy 100.23292 133.750382) - (xy 100.172745 133.773694) - (xy 100.025461 133.830752) - (xy 100.025455 133.830754) - (xy 99.836299 133.947874) - (xy 99.836297 133.947876) - (xy 99.67188 134.097761) - (xy 99.537803 134.275308) - (xy 99.537798 134.275316) - (xy 99.438635 134.474461) - (xy 99.438629 134.474476) - (xy 99.377745 134.688462) - (xy 99.377744 134.688464) - (xy 99.357217 134.909999) - (xy 99.357217 134.91) - (xy 98.684218 134.91) - (xy 98.666882 134.722917) - (xy 98.66369 134.688464) - (xy 98.663689 134.688462) - (xy 98.661877 134.682095) - (xy 98.602804 134.474472) - (xy 98.594087 134.456966) - (xy 98.503636 134.275316) - (xy 98.503631 134.275308) - (xy 98.369554 134.097761) - (xy 98.205137 133.947876) - (xy 98.205135 133.947874) - (xy 98.015979 133.830754) - (xy 98.015973 133.830752) - (xy 97.808515 133.750382) - (xy 97.589818 133.7095) - (xy 97.367332 133.7095) - (xy 97.148635 133.750382) - (xy 97.08846 133.773694) - (xy 96.941176 133.830752) - (xy 96.94117 133.830754) - (xy 96.752014 133.947874) - (xy 96.752012 133.947876) - (xy 96.587595 134.097761) - (xy 96.453518 134.275308) - (xy 96.453513 134.275316) - (xy 96.35435 134.474461) - (xy 96.354344 134.474476) - (xy 96.29346 134.688462) - (xy 96.293459 134.688464) - (xy 96.272932 134.909999) - (xy 96.272932 134.91) - (xy 95.599933 134.91) - (xy 95.582597 134.722917) - (xy 95.579405 134.688464) - (xy 95.579404 134.688462) - (xy 95.577592 134.682095) - (xy 95.518519 134.474472) - (xy 95.509802 134.456966) - (xy 95.419351 134.275316) - (xy 95.419346 134.275308) - (xy 95.285269 134.097761) - (xy 95.120852 133.947876) - (xy 95.12085 133.947874) - (xy 94.931694 133.830754) - (xy 94.931688 133.830752) - (xy 94.72423 133.750382) - (xy 94.505533 133.7095) - (xy 94.283047 133.7095) - (xy 94.06435 133.750382) - (xy 94.004175 133.773694) - (xy 93.856891 133.830752) - (xy 93.856885 133.830754) - (xy 93.667729 133.947874) - (xy 93.667727 133.947876) - (xy 93.50331 134.097761) - (xy 93.369233 134.275308) - (xy 93.369228 134.275316) - (xy 93.270065 134.474461) - (xy 93.270059 134.474476) - (xy 93.209175 134.688462) - (xy 93.209174 134.688464) - (xy 93.188647 134.909999) - (xy 93.188647 134.91) - (xy 86.31183 134.91) - (xy 86.437046 134.81254) - (xy 86.55713 134.682095) - (xy 86.590149 134.646227) - (xy 86.59015 134.646225) - (xy 86.590156 134.646219) - (xy 86.713802 134.456965) - (xy 86.804611 134.249941) - (xy 86.860107 134.030793) - (xy 86.872832 133.877228) - (xy 86.878775 133.805506) - (xy 86.878775 133.805493) - (xy 86.860107 133.58021) - (xy 86.860107 133.580207) - (xy 86.804611 133.361059) - (xy 86.713802 133.154035) - (xy 86.707037 133.143681) - (xy 86.598014 132.976809) - (xy 86.590156 132.964781) - (xy 86.590153 132.964778) - (xy 86.590149 132.964772) - (xy 86.437049 132.798463) - (xy 86.437048 132.798462) - (xy 86.437046 132.79846) - (xy 86.258649 132.659607) - (xy 86.258647 132.659606) - (xy 86.258646 132.659605) - (xy 86.258639 132.6596) - (xy 86.230836 132.644555) - (xy 86.181244 132.595337) - (xy 86.166135 132.52712) - (xy 86.190306 132.461564) - (xy 86.230836 132.426445) - (xy 86.258639 132.411399) - (xy 86.258642 132.411396) - (xy 86.258649 132.411393) - (xy 86.437046 132.27254) - (xy 86.590156 132.106219) - (xy 86.713802 131.916965) - (xy 86.804611 131.709941) - (xy 86.860107 131.490793) - (xy 86.873417 131.330165) - (xy 86.878775 131.265506) - (xy 86.878775 131.265493) - (xy 86.860107 131.04021) - (xy 86.860107 131.040207) - (xy 86.804611 130.821059) - (xy 86.713802 130.614035) - (xy 86.710571 130.60909) - (xy 86.590157 130.424783) - (xy 86.590149 130.424772) - (xy 86.437049 130.258463) - (xy 86.437048 130.258462) - (xy 86.437046 130.25846) - (xy 86.258649 130.119607) - (xy 86.258647 130.119606) - (xy 86.258646 130.119605) - (xy 86.258643 130.119603) - (xy 86.230833 130.104553) - (xy 86.181243 130.055333) - (xy 86.166136 129.987116) - (xy 86.190307 129.921561) - (xy 86.230833 129.886446) - (xy 86.258649 129.871393) - (xy 86.437046 129.73254) - (xy 86.570668 129.587389) - (xy 86.590149 129.566227) - (xy 86.59015 129.566225) - (xy 86.590156 129.566219) - (xy 86.713802 129.376965) - (xy 86.804611 129.169941) - (xy 86.860107 128.950793) - (xy 86.873417 128.790161) - (xy 86.878775 128.725506) - (xy 86.878775 128.725493) - (xy 86.860107 128.50021) - (xy 86.860107 128.500207) - (xy 86.804611 128.281059) - (xy 86.713802 128.074035) - (xy 86.690146 128.037827) - (xy 93.194289 128.037827) - (xy 93.19429 128.037844) - (xy 93.200691 128.097372) - (xy 93.200693 128.097379) - (xy 93.250935 128.232086) - (xy 93.250939 128.232093) - (xy 93.337099 128.347187) - (xy 93.337102 128.34719) - (xy 93.452196 128.43335) - (xy 93.452203 128.433354) - (xy 93.58691 128.483596) - (xy 93.586917 128.483598) - (xy 93.646445 128.489999) - (xy 93.646462 128.49) - (xy 94.14429 128.49) - (xy 94.14429 127.54) - (xy 93.19429 127.54) - (xy 93.194289 128.037827) - (xy 86.690146 128.037827) - (xy 86.665432 128) - (xy 86.590157 127.884783) - (xy 86.590149 127.884772) - (xy 86.452755 127.735524) - (xy 86.421832 127.67287) - (xy 86.429692 127.603444) - (xy 86.473839 127.549288) - (xy 86.500652 127.535359) - (xy 86.615684 127.492455) - (xy 86.615693 127.49245) - (xy 86.730787 127.40629) - (xy 86.73079 127.406287) - (xy 86.795907 127.319302) - (xy 94.040662 127.319302) - (xy 94.069337 127.432538) - (xy 94.133226 127.530327) - (xy 94.225405 127.602072) - (xy 94.335885 127.64) - (xy 94.423295 127.64) - (xy 94.509506 127.625614) - (xy 94.612237 127.570019) - (xy 94.639871 127.54) - (xy 94.64429 127.54) - (xy 94.64429 128.49) - (xy 95.142118 128.49) - (xy 95.142134 128.489999) - (xy 95.201662 128.483598) - (xy 95.201669 128.483596) - (xy 95.336376 128.433354) - (xy 95.336383 128.43335) - (xy 95.451477 128.34719) - (xy 95.45148 128.347187) - (xy 95.53764 128.232093) - (xy 95.537644 128.232086) - (xy 95.587886 128.097379) - (xy 95.587888 128.097372) - (xy 95.594289 128.037844) - (xy 95.594289 128.037827) - (xy 95.59429 127.54) - (xy 96.278575 127.54) - (xy 96.278575 128.037844) - (xy 96.284976 128.097372) - (xy 96.284978 128.097379) - (xy 96.33522 128.232086) - (xy 96.335224 128.232093) - (xy 96.421384 128.347187) - (xy 96.421387 128.34719) - (xy 96.536481 128.43335) - (xy 96.536488 128.433354) - (xy 96.671195 128.483596) - (xy 96.671202 128.483598) - (xy 96.73073 128.489999) - (xy 96.730747 128.49) - (xy 97.228575 128.49) - (xy 97.228575 127.54) - (xy 96.278575 127.54) - (xy 95.59429 127.54) - (xy 94.64429 127.54) - (xy 94.639871 127.54) - (xy 94.69135 127.484079) - (xy 94.738272 127.377108) - (xy 94.743062 127.319302) - (xy 97.124947 127.319302) - (xy 97.153622 127.432538) - (xy 97.217511 127.530327) - (xy 97.30969 127.602072) - (xy 97.42017 127.64) - (xy 97.50758 127.64) - (xy 97.593791 127.625614) - (xy 97.696522 127.570019) - (xy 97.724156 127.54) - (xy 97.728575 127.54) - (xy 97.728575 128.49) - (xy 98.226403 128.49) - (xy 98.226419 128.489999) - (xy 98.285947 128.483598) - (xy 98.285954 128.483596) - (xy 98.420661 128.433354) - (xy 98.420668 128.43335) - (xy 98.535762 128.34719) - (xy 98.535765 128.347187) - (xy 98.621925 128.232093) - (xy 98.621929 128.232086) - (xy 98.672171 128.097379) - (xy 98.672173 128.097372) - (xy 98.678574 128.037844) - (xy 98.678575 128.037827) - (xy 98.678575 127.54) - (xy 99.36286 127.54) - (xy 99.36286 128.037844) - (xy 99.369261 128.097372) - (xy 99.369263 128.097379) - (xy 99.419505 128.232086) - (xy 99.419509 128.232093) - (xy 99.505669 128.347187) - (xy 99.505672 128.34719) - (xy 99.620766 128.43335) - (xy 99.620773 128.433354) - (xy 99.75548 128.483596) - (xy 99.755487 128.483598) - (xy 99.815015 128.489999) - (xy 99.815032 128.49) - (xy 100.31286 128.49) - (xy 100.31286 127.54) - (xy 99.36286 127.54) - (xy 98.678575 127.54) - (xy 97.728575 127.54) - (xy 97.724156 127.54) - (xy 97.775635 127.484079) - (xy 97.822557 127.377108) - (xy 97.827347 127.319302) - (xy 100.209232 127.319302) - (xy 100.237907 127.432538) - (xy 100.301796 127.530327) - (xy 100.393975 127.602072) - (xy 100.504455 127.64) - (xy 100.591865 127.64) - (xy 100.678076 127.625614) - (xy 100.780807 127.570019) - (xy 100.808441 127.54) - (xy 100.81286 127.54) - (xy 100.81286 128.49) - (xy 101.310688 128.49) - (xy 101.310704 128.489999) - (xy 101.370232 128.483598) - (xy 101.370239 128.483596) - (xy 101.504946 128.433354) - (xy 101.504953 128.43335) - (xy 101.620047 128.34719) - (xy 101.62005 128.347187) - (xy 101.70621 128.232093) - (xy 101.706214 128.232086) - (xy 101.756456 128.097379) - (xy 101.756458 128.097372) - (xy 101.762859 128.037844) - (xy 101.76286 128.037827) - (xy 101.76286 127.54) - (xy 102.447145 127.54) - (xy 102.447145 128.037844) - (xy 102.453546 128.097372) - (xy 102.453548 128.097379) - (xy 102.50379 128.232086) - (xy 102.503794 128.232093) - (xy 102.589954 128.347187) - (xy 102.589957 128.34719) - (xy 102.705051 128.43335) - (xy 102.705058 128.433354) - (xy 102.839765 128.483596) - (xy 102.839772 128.483598) - (xy 102.8993 128.489999) - (xy 102.899317 128.49) - (xy 103.397145 128.49) - (xy 103.397145 127.54) - (xy 102.447145 127.54) - (xy 101.76286 127.54) - (xy 100.81286 127.54) - (xy 100.808441 127.54) - (xy 100.85992 127.484079) - (xy 100.906842 127.377108) - (xy 100.911632 127.319302) - (xy 103.293517 127.319302) - (xy 103.322192 127.432538) - (xy 103.386081 127.530327) - (xy 103.47826 127.602072) - (xy 103.58874 127.64) - (xy 103.67615 127.64) - (xy 103.762361 127.625614) - (xy 103.865092 127.570019) - (xy 103.892726 127.54) - (xy 103.897145 127.54) - (xy 103.897145 128.49) - (xy 104.394973 128.49) - (xy 104.394989 128.489999) - (xy 104.454517 128.483598) - (xy 104.454524 128.483596) - (xy 104.589231 128.433354) - (xy 104.589238 128.43335) - (xy 104.704332 128.34719) - (xy 104.704335 128.347187) - (xy 104.790495 128.232093) - (xy 104.790499 128.232086) - (xy 104.840741 128.097379) - (xy 104.840743 128.097372) - (xy 104.847144 128.037844) - (xy 104.847145 128.037827) - (xy 104.847145 127.54) - (xy 105.53143 127.54) - (xy 105.53143 128.037844) - (xy 105.537831 128.097372) - (xy 105.537833 128.097379) - (xy 105.588075 128.232086) - (xy 105.588079 128.232093) - (xy 105.674239 128.347187) - (xy 105.674242 128.34719) - (xy 105.789336 128.43335) - (xy 105.789343 128.433354) - (xy 105.92405 128.483596) - (xy 105.924057 128.483598) - (xy 105.983585 128.489999) - (xy 105.983602 128.49) - (xy 106.48143 128.49) - (xy 106.48143 127.54) - (xy 105.53143 127.54) - (xy 104.847145 127.54) - (xy 103.897145 127.54) - (xy 103.892726 127.54) - (xy 103.944205 127.484079) - (xy 103.991127 127.377108) - (xy 103.995917 127.319302) - (xy 106.377802 127.319302) - (xy 106.406477 127.432538) - (xy 106.470366 127.530327) - (xy 106.562545 127.602072) - (xy 106.673025 127.64) - (xy 106.760435 127.64) - (xy 106.846646 127.625614) - (xy 106.949377 127.570019) - (xy 106.977011 127.54) - (xy 106.98143 127.54) - (xy 106.98143 128.49) - (xy 107.479258 128.49) - (xy 107.479274 128.489999) - (xy 107.538802 128.483598) - (xy 107.538809 128.483596) - (xy 107.673516 128.433354) - (xy 107.673523 128.43335) - (xy 107.788617 128.34719) - (xy 107.78862 128.347187) - (xy 107.87478 128.232093) - (xy 107.874784 128.232086) - (xy 107.925026 128.097379) - (xy 107.925028 128.097372) - (xy 107.931429 128.037844) - (xy 107.93143 128.037827) - (xy 107.93143 127.54) - (xy 108.615715 127.54) - (xy 108.615715 128.037844) - (xy 108.622116 128.097372) - (xy 108.622118 128.097379) - (xy 108.67236 128.232086) - (xy 108.672364 128.232093) - (xy 108.758524 128.347187) - (xy 108.758527 128.34719) - (xy 108.873621 128.43335) - (xy 108.873628 128.433354) - (xy 109.008335 128.483596) - (xy 109.008342 128.483598) - (xy 109.06787 128.489999) - (xy 109.067887 128.49) - (xy 109.565715 128.49) - (xy 109.565715 127.54) - (xy 108.615715 127.54) - (xy 107.93143 127.54) - (xy 106.98143 127.54) - (xy 106.977011 127.54) - (xy 107.02849 127.484079) - (xy 107.075412 127.377108) - (xy 107.080202 127.319302) - (xy 109.462087 127.319302) - (xy 109.490762 127.432538) - (xy 109.554651 127.530327) - (xy 109.64683 127.602072) - (xy 109.75731 127.64) - (xy 109.84472 127.64) - (xy 109.930931 127.625614) - (xy 110.033662 127.570019) - (xy 110.061296 127.54) - (xy 110.065715 127.54) - (xy 110.065715 128.49) - (xy 110.563543 128.49) - (xy 110.563559 128.489999) - (xy 110.623087 128.483598) - (xy 110.623094 128.483596) - (xy 110.757801 128.433354) - (xy 110.757808 128.43335) - (xy 110.872902 128.34719) - (xy 110.872905 128.347187) - (xy 110.959065 128.232093) - (xy 110.959069 128.232086) - (xy 111.009311 128.097379) - (xy 111.009313 128.097372) - (xy 111.015714 128.037844) - (xy 111.015715 128.037827) - (xy 111.015715 127.54) - (xy 111.7 127.54) - (xy 111.7 128.037844) - (xy 111.706401 128.097372) - (xy 111.706403 128.097379) - (xy 111.756645 128.232086) - (xy 111.756649 128.232093) - (xy 111.842809 128.347187) - (xy 111.842812 128.34719) - (xy 111.957906 128.43335) - (xy 111.957913 128.433354) - (xy 112.09262 128.483596) - (xy 112.092627 128.483598) - (xy 112.152155 128.489999) - (xy 112.152172 128.49) - (xy 112.65 128.49) - (xy 112.65 127.54) - (xy 111.7 127.54) - (xy 111.015715 127.54) - (xy 110.065715 127.54) - (xy 110.061296 127.54) - (xy 110.112775 127.484079) - (xy 110.159697 127.377108) - (xy 110.164487 127.319302) - (xy 112.546372 127.319302) - (xy 112.575047 127.432538) - (xy 112.638936 127.530327) - (xy 112.731115 127.602072) - (xy 112.841595 127.64) - (xy 112.929005 127.64) - (xy 113.015216 127.625614) - (xy 113.117947 127.570019) - (xy 113.145581 127.54) - (xy 113.15 127.54) - (xy 113.15 128.49) - (xy 113.647828 128.49) - (xy 113.647844 128.489999) - (xy 113.707372 128.483598) - (xy 113.707379 128.483596) - (xy 113.842086 128.433354) - (xy 113.842093 128.43335) - (xy 113.957187 128.34719) - (xy 113.95719 128.347187) - (xy 114.04335 128.232093) - (xy 114.043354 128.232086) - (xy 114.093596 128.097379) - (xy 114.093598 128.097372) - (xy 114.099999 128.037844) - (xy 114.1 128.037827) - (xy 114.784289 128.037827) - (xy 114.78429 128.037844) - (xy 114.790691 128.097372) - (xy 114.790693 128.097379) - (xy 114.840935 128.232086) - (xy 114.840939 128.232093) - (xy 114.927099 128.347187) - (xy 114.927102 128.34719) - (xy 115.042196 128.43335) - (xy 115.042203 128.433354) - (xy 115.17691 128.483596) - (xy 115.176917 128.483598) - (xy 115.236445 128.489999) - (xy 115.236462 128.49) - (xy 115.73429 128.49) - (xy 115.73429 127.54) - (xy 114.78429 127.54) - (xy 114.784289 128.037827) - (xy 114.1 128.037827) - (xy 114.1 127.54) - (xy 113.15 127.54) - (xy 113.145581 127.54) - (xy 113.19706 127.484079) - (xy 113.243982 127.377108) - (xy 113.248772 127.319302) - (xy 115.630662 127.319302) - (xy 115.659337 127.432538) - (xy 115.723226 127.530327) - (xy 115.815405 127.602072) - (xy 115.925885 127.64) - (xy 116.013295 127.64) - (xy 116.099506 127.625614) - (xy 116.202237 127.570019) - (xy 116.229871 127.54) - (xy 116.23429 127.54) - (xy 116.23429 128.49) - (xy 116.732118 128.49) - (xy 116.732134 128.489999) - (xy 116.791662 128.483598) - (xy 116.791669 128.483596) - (xy 116.926376 128.433354) - (xy 116.926383 128.43335) - (xy 117.041477 128.34719) - (xy 117.04148 128.347187) - (xy 117.12764 128.232093) - (xy 117.127644 128.232086) - (xy 117.177886 128.097379) - (xy 117.177888 128.097372) - (xy 117.184289 128.037844) - (xy 117.184289 128.037827) - (xy 117.18429 127.54) - (xy 116.23429 127.54) - (xy 116.229871 127.54) - (xy 116.28135 127.484079) - (xy 116.328272 127.377108) - (xy 116.337918 127.260698) - (xy 116.309243 127.147462) - (xy 116.245354 127.049673) - (xy 116.153175 126.977928) - (xy 116.042695 126.94) - (xy 115.955285 126.94) - (xy 115.869074 126.954386) - (xy 115.766343 127.009981) - (xy 115.68723 127.095921) - (xy 115.640308 127.202892) - (xy 115.630662 127.319302) - (xy 113.248772 127.319302) - (xy 113.253628 127.260698) - (xy 113.224953 127.147462) - (xy 113.161064 127.049673) - (xy 113.068885 126.977928) - (xy 112.958405 126.94) - (xy 112.870995 126.94) - (xy 112.784784 126.954386) - (xy 112.682053 127.009981) - (xy 112.60294 127.095921) - (xy 112.556018 127.202892) - (xy 112.546372 127.319302) - (xy 110.164487 127.319302) - (xy 110.169343 127.260698) - (xy 110.140668 127.147462) - (xy 110.076779 127.049673) - (xy 109.9846 126.977928) - (xy 109.87412 126.94) - (xy 109.78671 126.94) - (xy 109.700499 126.954386) - (xy 109.597768 127.009981) - (xy 109.518655 127.095921) - (xy 109.471733 127.202892) - (xy 109.462087 127.319302) - (xy 107.080202 127.319302) - (xy 107.085058 127.260698) - (xy 107.056383 127.147462) - (xy 106.992494 127.049673) - (xy 106.900315 126.977928) - (xy 106.789835 126.94) - (xy 106.702425 126.94) - (xy 106.616214 126.954386) - (xy 106.513483 127.009981) - (xy 106.43437 127.095921) - (xy 106.387448 127.202892) - (xy 106.377802 127.319302) - (xy 103.995917 127.319302) - (xy 104.000773 127.260698) - (xy 103.972098 127.147462) - (xy 103.908209 127.049673) - (xy 103.81603 126.977928) - (xy 103.70555 126.94) - (xy 103.61814 126.94) - (xy 103.531929 126.954386) - (xy 103.429198 127.009981) - (xy 103.350085 127.095921) - (xy 103.303163 127.202892) - (xy 103.293517 127.319302) - (xy 100.911632 127.319302) - (xy 100.916488 127.260698) - (xy 100.887813 127.147462) - (xy 100.823924 127.049673) - (xy 100.731745 126.977928) - (xy 100.621265 126.94) - (xy 100.533855 126.94) - (xy 100.447644 126.954386) - (xy 100.344913 127.009981) - (xy 100.2658 127.095921) - (xy 100.218878 127.202892) - (xy 100.209232 127.319302) - (xy 97.827347 127.319302) - (xy 97.832203 127.260698) - (xy 97.803528 127.147462) - (xy 97.739639 127.049673) - (xy 97.64746 126.977928) - (xy 97.53698 126.94) - (xy 97.44957 126.94) - (xy 97.363359 126.954386) - (xy 97.260628 127.009981) - (xy 97.181515 127.095921) - (xy 97.134593 127.202892) - (xy 97.124947 127.319302) - (xy 94.743062 127.319302) - (xy 94.747918 127.260698) - (xy 94.719243 127.147462) - (xy 94.655354 127.049673) - (xy 94.563175 126.977928) - (xy 94.452695 126.94) - (xy 94.365285 126.94) - (xy 94.279074 126.954386) - (xy 94.176343 127.009981) - (xy 94.09723 127.095921) - (xy 94.050308 127.202892) - (xy 94.040662 127.319302) - (xy 86.795907 127.319302) - (xy 86.81695 127.291193) - (xy 86.816954 127.291186) - (xy 86.867196 127.156479) - (xy 86.867198 127.156472) - (xy 86.873599 127.096944) - (xy 86.8736 127.096927) - (xy 86.8736 126.542172) - (xy 93.194289 126.542172) - (xy 93.19429 127.04) - (xy 94.14429 127.04) - (xy 94.14429 126.09) - (xy 94.64429 126.09) - (xy 94.64429 127.04) - (xy 95.59429 127.04) - (xy 96.278575 127.04) - (xy 97.228575 127.04) - (xy 97.228575 126.09) - (xy 97.728575 126.09) - (xy 97.728575 127.04) - (xy 98.678575 127.04) - (xy 99.36286 127.04) - (xy 100.31286 127.04) - (xy 100.31286 126.09) - (xy 100.81286 126.09) - (xy 100.81286 127.04) - (xy 101.76286 127.04) - (xy 102.447145 127.04) - (xy 103.397145 127.04) - (xy 103.397145 126.09) - (xy 103.897145 126.09) - (xy 103.897145 127.04) - (xy 104.847145 127.04) - (xy 105.53143 127.04) - (xy 106.48143 127.04) - (xy 106.48143 126.09) - (xy 106.98143 126.09) - (xy 106.98143 127.04) - (xy 107.93143 127.04) - (xy 108.615715 127.04) - (xy 109.565715 127.04) - (xy 109.565715 126.09) - (xy 110.065715 126.09) - (xy 110.065715 127.04) - (xy 111.015715 127.04) - (xy 111.7 127.04) - (xy 112.65 127.04) - (xy 112.65 126.09) - (xy 113.15 126.09) - (xy 113.15 127.04) - (xy 114.1 127.04) - (xy 114.1 126.542172) - (xy 114.784289 126.542172) - (xy 114.78429 127.04) - (xy 115.73429 127.04) - (xy 115.73429 126.09) - (xy 116.23429 126.09) - (xy 116.23429 127.04) - (xy 117.184289 127.04) - (xy 117.184289 126.542155) - (xy 117.177888 126.482627) - (xy 117.177886 126.48262) - (xy 117.127644 126.347913) - (xy 117.12764 126.347906) - (xy 117.04148 126.232812) - (xy 117.041477 126.232809) - (xy 116.926383 126.146649) - (xy 116.926376 126.146645) - (xy 116.791669 126.096403) - (xy 116.791662 126.096401) - (xy 116.732134 126.09) - (xy 116.23429 126.09) - (xy 115.73429 126.09) - (xy 115.236445 126.09) - (xy 115.176917 126.096401) - (xy 115.17691 126.096403) - (xy 115.042203 126.146645) - (xy 115.042196 126.146649) - (xy 114.927102 126.232809) - (xy 114.927099 126.232812) - (xy 114.840939 126.347906) - (xy 114.840935 126.347913) - (xy 114.790693 126.48262) - (xy 114.790691 126.482627) - (xy 114.78429 126.542155) - (xy 114.784289 126.542172) - (xy 114.1 126.542172) - (xy 114.099999 126.542155) - (xy 114.093598 126.482627) - (xy 114.093596 126.48262) - (xy 114.043354 126.347913) - (xy 114.04335 126.347906) - (xy 113.95719 126.232812) - (xy 113.957187 126.232809) - (xy 113.842093 126.146649) - (xy 113.842086 126.146645) - (xy 113.707379 126.096403) - (xy 113.707372 126.096401) - (xy 113.647844 126.09) - (xy 113.15 126.09) - (xy 112.65 126.09) - (xy 112.152155 126.09) - (xy 112.092627 126.096401) - (xy 112.09262 126.096403) - (xy 111.957913 126.146645) - (xy 111.957906 126.146649) - (xy 111.842812 126.232809) - (xy 111.842809 126.232812) - (xy 111.756649 126.347906) - (xy 111.756645 126.347913) - (xy 111.706403 126.48262) - (xy 111.706401 126.482627) - (xy 111.7 126.542155) - (xy 111.7 127.04) - (xy 111.015715 127.04) - (xy 111.015715 126.542172) - (xy 111.015714 126.542155) - (xy 111.009313 126.482627) - (xy 111.009311 126.48262) - (xy 110.959069 126.347913) - (xy 110.959065 126.347906) - (xy 110.872905 126.232812) - (xy 110.872902 126.232809) - (xy 110.757808 126.146649) - (xy 110.757801 126.146645) - (xy 110.623094 126.096403) - (xy 110.623087 126.096401) - (xy 110.563559 126.09) - (xy 110.065715 126.09) - (xy 109.565715 126.09) - (xy 109.06787 126.09) - (xy 109.008342 126.096401) - (xy 109.008335 126.096403) - (xy 108.873628 126.146645) - (xy 108.873621 126.146649) - (xy 108.758527 126.232809) - (xy 108.758524 126.232812) - (xy 108.672364 126.347906) - (xy 108.67236 126.347913) - (xy 108.622118 126.48262) - (xy 108.622116 126.482627) - (xy 108.615715 126.542155) - (xy 108.615715 127.04) - (xy 107.93143 127.04) - (xy 107.93143 126.542172) - (xy 107.931429 126.542155) - (xy 107.925028 126.482627) - (xy 107.925026 126.48262) - (xy 107.874784 126.347913) - (xy 107.87478 126.347906) - (xy 107.78862 126.232812) - (xy 107.788617 126.232809) - (xy 107.673523 126.146649) - (xy 107.673516 126.146645) - (xy 107.538809 126.096403) - (xy 107.538802 126.096401) - (xy 107.479274 126.09) - (xy 106.98143 126.09) - (xy 106.48143 126.09) - (xy 105.983585 126.09) - (xy 105.924057 126.096401) - (xy 105.92405 126.096403) - (xy 105.789343 126.146645) - (xy 105.789336 126.146649) - (xy 105.674242 126.232809) - (xy 105.674239 126.232812) - (xy 105.588079 126.347906) - (xy 105.588075 126.347913) - (xy 105.537833 126.48262) - (xy 105.537831 126.482627) - (xy 105.53143 126.542155) - (xy 105.53143 127.04) - (xy 104.847145 127.04) - (xy 104.847145 126.542172) - (xy 104.847144 126.542155) - (xy 104.840743 126.482627) - (xy 104.840741 126.48262) - (xy 104.790499 126.347913) - (xy 104.790495 126.347906) - (xy 104.704335 126.232812) - (xy 104.704332 126.232809) - (xy 104.589238 126.146649) - (xy 104.589231 126.146645) - (xy 104.454524 126.096403) - (xy 104.454517 126.096401) - (xy 104.394989 126.09) - (xy 103.897145 126.09) - (xy 103.397145 126.09) - (xy 102.8993 126.09) - (xy 102.839772 126.096401) - (xy 102.839765 126.096403) - (xy 102.705058 126.146645) - (xy 102.705051 126.146649) - (xy 102.589957 126.232809) - (xy 102.589954 126.232812) - (xy 102.503794 126.347906) - (xy 102.50379 126.347913) - (xy 102.453548 126.48262) - (xy 102.453546 126.482627) - (xy 102.447145 126.542155) - (xy 102.447145 127.04) - (xy 101.76286 127.04) - (xy 101.76286 126.542172) - (xy 101.762859 126.542155) - (xy 101.756458 126.482627) - (xy 101.756456 126.48262) - (xy 101.706214 126.347913) - (xy 101.70621 126.347906) - (xy 101.62005 126.232812) - (xy 101.620047 126.232809) - (xy 101.504953 126.146649) - (xy 101.504946 126.146645) - (xy 101.370239 126.096403) - (xy 101.370232 126.096401) - (xy 101.310704 126.09) - (xy 100.81286 126.09) - (xy 100.31286 126.09) - (xy 99.815015 126.09) - (xy 99.755487 126.096401) - (xy 99.75548 126.096403) - (xy 99.620773 126.146645) - (xy 99.620766 126.146649) - (xy 99.505672 126.232809) - (xy 99.505669 126.232812) - (xy 99.419509 126.347906) - (xy 99.419505 126.347913) - (xy 99.369263 126.48262) - (xy 99.369261 126.482627) - (xy 99.36286 126.542155) - (xy 99.36286 127.04) - (xy 98.678575 127.04) - (xy 98.678575 126.542172) - (xy 98.678574 126.542155) - (xy 98.672173 126.482627) - (xy 98.672171 126.48262) - (xy 98.621929 126.347913) - (xy 98.621925 126.347906) - (xy 98.535765 126.232812) - (xy 98.535762 126.232809) - (xy 98.420668 126.146649) - (xy 98.420661 126.146645) - (xy 98.285954 126.096403) - (xy 98.285947 126.096401) - (xy 98.226419 126.09) - (xy 97.728575 126.09) - (xy 97.228575 126.09) - (xy 96.73073 126.09) - (xy 96.671202 126.096401) - (xy 96.671195 126.096403) - (xy 96.536488 126.146645) - (xy 96.536481 126.146649) - (xy 96.421387 126.232809) - (xy 96.421384 126.232812) - (xy 96.335224 126.347906) - (xy 96.33522 126.347913) - (xy 96.284978 126.48262) - (xy 96.284976 126.482627) - (xy 96.278575 126.542155) - (xy 96.278575 127.04) - (xy 95.59429 127.04) - (xy 95.59429 127.039999) - (xy 95.594289 126.542172) - (xy 95.594289 126.542155) - (xy 95.587888 126.482627) - (xy 95.587886 126.48262) - (xy 95.537644 126.347913) - (xy 95.53764 126.347906) - (xy 95.45148 126.232812) - (xy 95.451477 126.232809) - (xy 95.336383 126.146649) - (xy 95.336376 126.146645) - (xy 95.201669 126.096403) - (xy 95.201662 126.096401) - (xy 95.142134 126.09) - (xy 94.64429 126.09) - (xy 94.14429 126.09) - (xy 93.646445 126.09) - (xy 93.586917 126.096401) - (xy 93.58691 126.096403) - (xy 93.452203 126.146645) - (xy 93.452196 126.146649) - (xy 93.337102 126.232809) - (xy 93.337099 126.232812) - (xy 93.250939 126.347906) - (xy 93.250935 126.347913) - (xy 93.200693 126.48262) - (xy 93.200691 126.482627) - (xy 93.19429 126.542155) - (xy 93.194289 126.542172) - (xy 86.8736 126.542172) - (xy 86.8736 126.4355) - (xy 85.953196 126.4355) - (xy 85.976845 126.398701) - (xy 86.018 126.258539) - (xy 86.018 126.112461) - (xy 85.976845 125.972299) - (xy 85.953196 125.9355) - (xy 86.8736 125.9355) - (xy 86.8736 125.274072) - (xy 86.873599 125.274055) - (xy 86.867198 125.214527) - (xy 86.867196 125.21452) - (xy 86.816954 125.079813) - (xy 86.81695 125.079806) - (xy 86.73079 124.964712) - (xy 86.730787 124.964709) - (xy 86.615693 124.878549) - (xy 86.615686 124.878545) - (xy 86.480979 124.828303) - (xy 86.480972 124.828301) - (xy 86.421444 124.8219) - (xy 85.76 124.8219) - (xy 85.76 125.741202) - (xy 85.654592 125.693065) - (xy 85.546334 125.6775) - (xy 85.473666 125.6775) - (xy 85.365408 125.693065) - (xy 85.26 125.741202) - (xy 85.26 124.8219) - (xy 84.598555 124.8219) - (xy 84.539027 124.828301) - (xy 84.53902 124.828303) - (xy 84.404313 124.878545) - (xy 84.404306 124.878549) - (xy 84.289212 124.964709) - (xy 84.289209 124.964712) - (xy 84.203049 125.079806) - (xy 84.203045 125.079813) - (xy 84.152803 125.21452) - (xy 84.152801 125.214527) - (xy 84.1464 125.274055) - (xy 84.1464 125.9355) - (xy 85.066804 125.9355) - (xy 85.043155 125.972299) - (xy 85.002 126.112461) - (xy 85.002 126.258539) - (xy 85.043155 126.398701) - (xy 85.066804 126.4355) - (xy 84.1464 126.4355) - (xy 84.1464 127.096944) - (xy 84.152801 127.156472) - (xy 84.152803 127.156479) - (xy 84.203045 127.291186) - (xy 84.203049 127.291193) - (xy 84.289209 127.406287) - (xy 84.289212 127.40629) - (xy 84.404306 127.49245) - (xy 84.404313 127.492454) - (xy 84.519348 127.535359) - (xy 84.575282 127.57723) - (xy 84.599699 127.642694) - (xy 84.584848 127.710967) - (xy 84.567245 127.735524) - (xy 84.429845 127.884779) - (xy 84.429842 127.884783) - (xy 84.306198 128.074033) - (xy 84.215388 128.28106) - (xy 84.159892 128.50021) - (xy 84.141225 128.725493) - (xy 84.141225 128.725506) - (xy 84.159892 128.950789) - (xy 84.215388 129.169939) - (xy 84.306198 129.376966) - (xy 84.429842 129.566216) - (xy 84.42985 129.566227) - (xy 84.58295 129.732536) - (xy 84.582954 129.73254) - (xy 84.761351 129.871393) - (xy 84.761353 129.871394) - (xy 84.761356 129.871396) - (xy 84.770803 129.876508) - (xy 84.789163 129.886444) - (xy 84.838754 129.935661) - (xy 84.853864 130.003878) - (xy 84.829694 130.069434) - (xy 84.789167 130.104552) - (xy 84.761361 130.1196) - (xy 84.761353 130.119605) - (xy 84.582955 130.258459) - (xy 84.58295 130.258463) - (xy 84.42985 130.424772) - (xy 84.429842 130.424783) - (xy 84.306198 130.614033) - (xy 84.215388 130.82106) - (xy 84.159892 131.04021) - (xy 84.141225 131.265493) - (xy 84.141225 131.265506) - (xy 84.159892 131.490789) - (xy 84.215388 131.709939) - (xy 84.306198 131.916966) - (xy 84.429842 132.106216) - (xy 84.42985 132.106227) - (xy 84.552897 132.23989) - (xy 84.582954 132.27254) - (xy 84.761351 132.411393) - (xy 84.789165 132.426445) - (xy 84.838755 132.475665) - (xy 84.853863 132.543882) - (xy 84.829692 132.609437) - (xy 84.789165 132.644555) - (xy 84.761352 132.659606) - (xy 84.582955 132.798459) - (xy 84.58295 132.798463) - (xy 84.42985 132.964772) - (xy 84.429842 132.964783) - (xy 84.306198 133.154033) - (xy 84.215388 133.36106) - (xy 84.159892 133.58021) - (xy 84.141225 133.805493) - (xy 84.141225 133.805506) - (xy 81 133.805506) - (xy 81 118.805506) - (xy 84.141225 118.805506) - (xy 84.159892 119.030789) - (xy 84.215388 119.249939) - (xy 84.306198 119.456966) - (xy 84.429842 119.646216) - (xy 84.42985 119.646227) - (xy 84.58295 119.812536) - (xy 84.582954 119.81254) - (xy 84.761351 119.951393) - (xy 84.960169 120.058988) - (xy 84.960172 120.058989) - (xy 85.173982 120.13239) - (xy 85.173984 120.13239) - (xy 85.173986 120.132391) - (xy 85.396967 120.1696) - (xy 85.396968 120.1696) - (xy 85.623032 120.1696) - (xy 85.623033 120.1696) - (xy 85.846014 120.132391) - (xy 86.059831 120.058988) - (xy 86.258649 119.951393) - (xy 86.437046 119.81254) - (xy 86.590156 119.646219) - (xy 86.713802 119.456965) - (xy 86.804611 119.249941) - (xy 86.860107 119.030793) - (xy 86.876477 118.833232) - (xy 86.878775 118.805506) - (xy 124.541225 118.805506) - (xy 124.559892 119.030789) - (xy 124.615388 119.249939) - (xy 124.706198 119.456966) - (xy 124.829842 119.646216) - (xy 124.82985 119.646227) - (xy 124.98295 119.812536) - (xy 124.982954 119.81254) - (xy 125.161351 119.951393) - (xy 125.360169 120.058988) - (xy 125.360172 120.058989) - (xy 125.573982 120.13239) - (xy 125.573984 120.13239) - (xy 125.573986 120.132391) - (xy 125.796967 120.1696) - (xy 125.796968 120.1696) - (xy 126.023032 120.1696) - (xy 126.023033 120.1696) - (xy 126.246014 120.132391) - (xy 126.459831 120.058988) - (xy 126.658649 119.951393) - (xy 126.837046 119.81254) - (xy 126.990156 119.646219) - (xy 127.113802 119.456965) - (xy 127.204611 119.249941) - (xy 127.260107 119.030793) - (xy 127.278775 118.8055) - (xy 127.260107 118.580207) - (xy 127.204611 118.361059) - (xy 127.113802 118.154035) - (xy 127.107697 118.144691) - (xy 127.051978 118.059408) - (xy 126.990156 117.964781) - (xy 126.990153 117.964778) - (xy 126.990149 117.964772) - (xy 126.837049 117.798463) - (xy 126.837048 117.798462) - (xy 126.837046 117.79846) - (xy 126.658649 117.659607) - (xy 126.658647 117.659606) - (xy 126.658646 117.659605) - (xy 126.658639 117.6596) - (xy 126.630836 117.644555) - (xy 126.581244 117.595337) - (xy 126.566135 117.52712) - (xy 126.590306 117.461564) - (xy 126.630836 117.426445) - (xy 126.658639 117.411399) - (xy 126.658642 117.411396) - (xy 126.658649 117.411393) - (xy 126.837046 117.27254) - (xy 126.990156 117.106219) - (xy 127.113802 116.916965) - (xy 127.204611 116.709941) - (xy 127.260107 116.490793) - (xy 127.278775 116.2655) - (xy 127.260107 116.040207) - (xy 127.204611 115.821059) - (xy 127.113802 115.614035) - (xy 127.101611 115.595376) - (xy 127.024145 115.476805) - (xy 126.990156 115.424781) - (xy 126.990153 115.424778) - (xy 126.990149 115.424772) - (xy 126.837049 115.258463) - (xy 126.837048 115.258462) - (xy 126.837046 115.25846) - (xy 126.658649 115.119607) - (xy 126.658647 115.119606) - (xy 126.658646 115.119605) - (xy 126.658639 115.1196) - (xy 126.630836 115.104555) - (xy 126.581244 115.055337) - (xy 126.566135 114.98712) - (xy 126.590306 114.921564) - (xy 126.630836 114.886445) - (xy 126.658639 114.871399) - (xy 126.658642 114.871396) - (xy 126.658649 114.871393) - (xy 126.837046 114.73254) - (xy 126.990156 114.566219) - (xy 127.113802 114.376965) - (xy 127.204611 114.169941) - (xy 127.260107 113.950793) - (xy 127.278775 113.7255) - (xy 127.260107 113.500207) - (xy 127.204611 113.281059) - (xy 127.113802 113.074035) - (xy 126.990156 112.884781) - (xy 126.990153 112.884778) - (xy 126.990149 112.884772) - (xy 126.837049 112.718463) - (xy 126.837048 112.718462) - (xy 126.837046 112.71846) - (xy 126.658649 112.579607) - (xy 126.658647 112.579606) - (xy 126.658646 112.579605) - (xy 126.658639 112.5796) - (xy 126.630836 112.564555) - (xy 126.581244 112.515337) - (xy 126.566135 112.44712) - (xy 126.580646 112.407763) - (xy 134.005787 112.407763) - (xy 134.035413 112.677013) - (xy 134.035415 112.677024) - (xy 134.103926 112.939082) - (xy 134.103928 112.939088) - (xy 134.20987 113.18839) - (xy 134.319252 113.367619) - (xy 134.350979 113.419605) - (xy 134.350986 113.419615) - (xy 134.524253 113.627819) - (xy 134.524259 113.627824) - (xy 134.642879 113.734107) - (xy 134.725998 113.808582) - (xy 134.95191 113.958044) - (xy 135.197176 114.07302) - (xy 135.197183 114.073022) - (xy 135.197185 114.073023) - (xy 135.456557 114.151057) - (xy 135.456564 114.151058) - (xy 135.456569 114.15106) - (xy 135.724561 114.1905) - (xy 135.724566 114.1905) - (xy 135.927629 114.1905) - (xy 135.927631 114.1905) - (xy 135.927636 114.190499) - (xy 135.927648 114.190499) - (xy 135.965191 114.18775) - (xy 136.130156 114.175677) - (xy 136.242758 114.150593) - (xy 136.394546 114.116782) - (xy 136.394548 114.116781) - (xy 136.394553 114.11678) - (xy 136.647558 114.020014) - (xy 136.883777 113.887441) - (xy 137.098177 113.721888) - (xy 137.286186 113.526881) - (xy 137.443799 113.306579) - (xy 137.563358 113.074035) - (xy 137.567649 113.06569) - (xy 137.567651 113.065684) - (xy 137.567656 113.065675) - (xy 137.655118 112.809305) - (xy 137.704319 112.542933) - (xy 137.714212 112.272235) - (xy 137.684586 112.002982) - (xy 137.616072 111.740912) - (xy 137.51013 111.49161) - (xy 137.369018 111.26039) - (xy 137.313857 111.194107) - (xy 137.195746 111.05218) - (xy 137.19574 111.052175) - (xy 136.994002 110.871418) - (xy 136.768092 110.721957) - (xy 136.76809 110.721956) - (xy 136.522824 110.60698) - (xy 136.522819 110.606978) - (xy 136.522814 110.606976) - (xy 136.263442 110.528942) - (xy 136.263428 110.528939) - (xy 136.147791 110.511921) - (xy 135.995439 110.4895) - (xy 135.792369 110.4895) - (xy 135.792351 110.4895) - (xy 135.589844 110.504323) - (xy 135.589831 110.504325) - (xy 135.325453 110.563217) - (xy 135.325446 110.56322) - (xy 135.072439 110.659987) - (xy 134.836226 110.792557) - (xy 134.836224 110.792558) - (xy 134.836223 110.792559) - (xy 134.785033 110.832086) - (xy 134.621822 110.958112) - (xy 134.433822 111.153109) - (xy 134.433816 111.153116) - (xy 134.276202 111.373419) - (xy 134.276199 111.373424) - (xy 134.15235 111.614309) - (xy 134.152343 111.614327) - (xy 134.064884 111.870685) - (xy 134.064881 111.870699) - (xy 134.015681 112.137068) - (xy 134.01568 112.137075) - (xy 134.005787 112.407763) - (xy 126.580646 112.407763) - (xy 126.590306 112.381564) - (xy 126.630836 112.346445) - (xy 126.658639 112.331399) - (xy 126.658642 112.331396) - (xy 126.658649 112.331393) - (xy 126.837046 112.19254) - (xy 126.990156 112.026219) - (xy 127.113802 111.836965) - (xy 127.204611 111.629941) - (xy 127.260107 111.410793) - (xy 127.278775 111.1855) - (xy 127.260107 110.960207) - (xy 127.204611 110.741059) - (xy 127.113802 110.534035) - (xy 127.110473 110.52894) - (xy 126.990157 110.344783) - (xy 126.990149 110.344772) - (xy 126.837045 110.178459) - (xy 126.710296 110.079806) - (xy 126.658649 110.039607) - (xy 126.580587 109.997362) - (xy 126.459832 109.932012) - (xy 126.459827 109.93201) - (xy 126.246017 109.858609) - (xy 126.064388 109.828301) - (xy 126.023033 109.8214) - (xy 125.796967 109.8214) - (xy 125.755612 109.828301) - (xy 125.573982 109.858609) - (xy 125.360172 109.93201) - (xy 125.360167 109.932012) - (xy 125.161352 110.039606) - (xy 124.982955 110.178459) - (xy 124.82985 110.344772) - (xy 124.829842 110.344783) - (xy 124.706198 110.534033) - (xy 124.615388 110.74106) - (xy 124.559892 110.96021) - (xy 124.541225 111.185493) - (xy 124.541225 111.185506) - (xy 124.559892 111.410789) - (xy 124.615388 111.629939) - (xy 124.706198 111.836966) - (xy 124.829842 112.026216) - (xy 124.82985 112.026227) - (xy 124.949757 112.156479) - (xy 124.982954 112.19254) - (xy 125.161351 112.331393) - (xy 125.189165 112.346445) - (xy 125.238755 112.395665) - (xy 125.253863 112.463882) - (xy 125.229692 112.529437) - (xy 125.189165 112.564554) - (xy 125.186774 112.565849) - (xy 125.161352 112.579606) - (xy 124.982955 112.718459) - (xy 124.98295 112.718463) - (xy 124.82985 112.884772) - (xy 124.829842 112.884783) - (xy 124.706198 113.074033) - (xy 124.615388 113.28106) - (xy 124.559892 113.50021) - (xy 124.541225 113.725493) - (xy 124.541225 113.725506) - (xy 124.559892 113.950789) - (xy 124.615388 114.169939) - (xy 124.706198 114.376966) - (xy 124.829842 114.566216) - (xy 124.82985 114.566227) - (xy 124.949991 114.696733) - (xy 124.982954 114.73254) - (xy 125.161351 114.871393) - (xy 125.179495 114.881212) - (xy 125.189165 114.886445) - (xy 125.238755 114.935665) - (xy 125.253863 115.003882) - (xy 125.229692 115.069437) - (xy 125.189165 115.104554) - (xy 125.187801 115.105293) - (xy 125.161352 115.119606) - (xy 124.982955 115.258459) - (xy 124.98295 115.258463) - (xy 124.82985 115.424772) - (xy 124.829842 115.424783) - (xy 124.706198 115.614033) - (xy 124.615388 115.82106) - (xy 124.559892 116.04021) - (xy 124.541225 116.265493) - (xy 124.541225 116.265506) - (xy 124.559892 116.490789) - (xy 124.615388 116.709939) - (xy 124.706198 116.916966) - (xy 124.829842 117.106216) - (xy 124.82985 117.106227) - (xy 124.958379 117.245845) - (xy 124.982954 117.27254) - (xy 125.161351 117.411393) - (xy 125.189159 117.426442) - (xy 125.189165 117.426445) - (xy 125.238755 117.475665) - (xy 125.253863 117.543882) - (xy 125.229692 117.609437) - (xy 125.189165 117.644554) - (xy 125.180866 117.649045) - (xy 125.161352 117.659606) - (xy 124.982955 117.798459) - (xy 124.98295 117.798463) - (xy 124.82985 117.964772) - (xy 124.829842 117.964783) - (xy 124.706198 118.154033) - (xy 124.615388 118.36106) - (xy 124.559892 118.58021) - (xy 124.541225 118.805493) - (xy 124.541225 118.805506) - (xy 86.878775 118.805506) - (xy 86.878775 118.805493) - (xy 86.860107 118.58021) - (xy 86.860107 118.580207) - (xy 86.804611 118.361059) - (xy 86.713802 118.154035) - (xy 86.707697 118.144691) - (xy 86.651978 118.059408) - (xy 86.590156 117.964781) - (xy 86.590153 117.964778) - (xy 86.590149 117.964772) - (xy 86.437049 117.798463) - (xy 86.437048 117.798462) - (xy 86.437046 117.79846) - (xy 86.258649 117.659607) - (xy 86.258647 117.659606) - (xy 86.258646 117.659605) - (xy 86.258643 117.659603) - (xy 86.230833 117.644553) - (xy 86.181243 117.595333) - (xy 86.166136 117.527116) - (xy 86.172447 117.51) - (xy 93.194357 117.51) - (xy 93.214884 117.731535) - (xy 93.214885 117.731537) - (xy 93.275769 117.945523) - (xy 93.275775 117.945538) - (xy 93.374938 118.144683) - (xy 93.374943 118.144691) - (xy 93.50902 118.322238) - (xy 93.673437 118.472123) - (xy 93.673439 118.472125) - (xy 93.862595 118.589245) - (xy 93.862596 118.589245) - (xy 93.862599 118.589247) - (xy 94.07006 118.669618) - (xy 94.288757 118.7105) - (xy 94.288759 118.7105) - (xy 94.511241 118.7105) - (xy 94.511243 118.7105) - (xy 94.72994 118.669618) - (xy 94.937401 118.589247) - (xy 95.126562 118.472124) - (xy 95.290981 118.322236) - (xy 95.425058 118.144689) - (xy 95.524229 117.945528) - (xy 95.585115 117.731536) - (xy 95.605643 117.51) - (xy 96.311499 117.51) - (xy 96.332026 117.731535) - (xy 96.332027 117.731537) - (xy 96.392911 117.945523) - (xy 96.392917 117.945538) - (xy 96.49208 118.144683) - (xy 96.492085 118.144691) - (xy 96.626162 118.322238) - (xy 96.790579 118.472123) - (xy 96.790581 118.472125) - (xy 96.979737 118.589245) - (xy 96.979738 118.589245) - (xy 96.979741 118.589247) - (xy 97.187202 118.669618) - (xy 97.405899 118.7105) - (xy 97.405901 118.7105) - (xy 97.628383 118.7105) - (xy 97.628385 118.7105) - (xy 97.847082 118.669618) - (xy 98.054543 118.589247) - (xy 98.243704 118.472124) - (xy 98.408123 118.322236) - (xy 98.5422 118.144689) - (xy 98.641371 117.945528) - (xy 98.702257 117.731536) - (xy 98.722785 117.51) - (xy 99.428641 117.51) - (xy 99.449168 117.731535) - (xy 99.449169 117.731537) - (xy 99.510053 117.945523) - (xy 99.510059 117.945538) - (xy 99.609222 118.144683) - (xy 99.609227 118.144691) - (xy 99.743304 118.322238) - (xy 99.907721 118.472123) - (xy 99.907723 118.472125) - (xy 100.096879 118.589245) - (xy 100.09688 118.589245) - (xy 100.096883 118.589247) - (xy 100.304344 118.669618) - (xy 100.523041 118.7105) - (xy 100.523043 118.7105) - (xy 100.745525 118.7105) - (xy 100.745527 118.7105) - (xy 100.964224 118.669618) - (xy 101.171685 118.589247) - (xy 101.360846 118.472124) - (xy 101.525265 118.322236) - (xy 101.659342 118.144689) - (xy 101.758513 117.945528) - (xy 101.819399 117.731536) - (xy 101.839927 117.51) - (xy 102.545783 117.51) - (xy 102.56631 117.731535) - (xy 102.566311 117.731537) - (xy 102.627195 117.945523) - (xy 102.627201 117.945538) - (xy 102.726364 118.144683) - (xy 102.726369 118.144691) - (xy 102.860446 118.322238) - (xy 103.024863 118.472123) - (xy 103.024865 118.472125) - (xy 103.214021 118.589245) - (xy 103.214022 118.589245) - (xy 103.214025 118.589247) - (xy 103.421486 118.669618) - (xy 103.640183 118.7105) - (xy 103.640185 118.7105) - (xy 103.862667 118.7105) - (xy 103.862669 118.7105) - (xy 104.081366 118.669618) - (xy 104.288827 118.589247) - (xy 104.477988 118.472124) - (xy 104.642407 118.322236) - (xy 104.776484 118.144689) - (xy 104.875655 117.945528) - (xy 104.936541 117.731536) - (xy 104.957069 117.51) - (xy 105.662925 117.51) - (xy 105.683452 117.731535) - (xy 105.683453 117.731537) - (xy 105.744337 117.945523) - (xy 105.744343 117.945538) - (xy 105.843506 118.144683) - (xy 105.843511 118.144691) - (xy 105.977588 118.322238) - (xy 106.142005 118.472123) - (xy 106.142007 118.472125) - (xy 106.331163 118.589245) - (xy 106.331164 118.589245) - (xy 106.331167 118.589247) - (xy 106.538628 118.669618) - (xy 106.757325 118.7105) - (xy 106.757327 118.7105) - (xy 106.979809 118.7105) - (xy 106.979811 118.7105) - (xy 107.198508 118.669618) - (xy 107.405969 118.589247) - (xy 107.59513 118.472124) - (xy 107.759549 118.322236) - (xy 107.893626 118.144689) - (xy 107.992797 117.945528) - (xy 108.053683 117.731536) - (xy 108.074211 117.51) - (xy 108.780067 117.51) - (xy 108.800594 117.731535) - (xy 108.800595 117.731537) - (xy 108.861479 117.945523) - (xy 108.861485 117.945538) - (xy 108.960648 118.144683) - (xy 108.960653 118.144691) - (xy 109.09473 118.322238) - (xy 109.259147 118.472123) - (xy 109.259149 118.472125) - (xy 109.448305 118.589245) - (xy 109.448306 118.589245) - (xy 109.448309 118.589247) - (xy 109.65577 118.669618) - (xy 109.874467 118.7105) - (xy 109.874469 118.7105) - (xy 110.096951 118.7105) - (xy 110.096953 118.7105) - (xy 110.31565 118.669618) - (xy 110.523111 118.589247) - (xy 110.712272 118.472124) - (xy 110.876691 118.322236) - (xy 111.010768 118.144689) - (xy 111.109939 117.945528) - (xy 111.170825 117.731536) - (xy 111.191353 117.51) - (xy 111.897209 117.51) - (xy 111.917736 117.731535) - (xy 111.917737 117.731537) - (xy 111.978621 117.945523) - (xy 111.978627 117.945538) - (xy 112.07779 118.144683) - (xy 112.077795 118.144691) - (xy 112.211872 118.322238) - (xy 112.376289 118.472123) - (xy 112.376291 118.472125) - (xy 112.565447 118.589245) - (xy 112.565448 118.589245) - (xy 112.565451 118.589247) - (xy 112.772912 118.669618) - (xy 112.991609 118.7105) - (xy 112.991611 118.7105) - (xy 113.214093 118.7105) - (xy 113.214095 118.7105) - (xy 113.432792 118.669618) - (xy 113.640253 118.589247) - (xy 113.829414 118.472124) - (xy 113.993833 118.322236) - (xy 114.12791 118.144689) - (xy 114.227081 117.945528) - (xy 114.287967 117.731536) - (xy 114.308495 117.51) - (xy 115.014357 117.51) - (xy 115.034884 117.731535) - (xy 115.034885 117.731537) - (xy 115.095769 117.945523) - (xy 115.095775 117.945538) - (xy 115.194938 118.144683) - (xy 115.194943 118.144691) - (xy 115.32902 118.322238) - (xy 115.493437 118.472123) - (xy 115.493439 118.472125) - (xy 115.682595 118.589245) - (xy 115.682596 118.589245) - (xy 115.682599 118.589247) - (xy 115.89006 118.669618) - (xy 116.108757 118.7105) - (xy 116.108759 118.7105) - (xy 116.331241 118.7105) - (xy 116.331243 118.7105) - (xy 116.54994 118.669618) - (xy 116.757401 118.589247) - (xy 116.946562 118.472124) - (xy 117.110981 118.322236) - (xy 117.245058 118.144689) - (xy 117.344229 117.945528) - (xy 117.405115 117.731536) - (xy 117.425643 117.51) - (xy 117.422461 117.475665) - (xy 117.405115 117.288464) - (xy 117.405114 117.288462) - (xy 117.392988 117.245845) - (xy 117.344229 117.074472) - (xy 117.344224 117.074461) - (xy 117.245061 116.875316) - (xy 117.245056 116.875308) - (xy 117.110979 116.697761) - (xy 116.946562 116.547876) - (xy 116.94656 116.547874) - (xy 116.757404 116.430754) - (xy 116.757398 116.430752) - (xy 116.54994 116.350382) - (xy 116.331243 116.3095) - (xy 116.108757 116.3095) - (xy 115.89006 116.350382) - (xy 115.758864 116.401207) - (xy 115.682601 116.430752) - (xy 115.682595 116.430754) - (xy 115.493439 116.547874) - (xy 115.493437 116.547876) - (xy 115.32902 116.697761) - (xy 115.194943 116.875308) - (xy 115.194938 116.875316) - (xy 115.095775 117.074461) - (xy 115.095769 117.074476) - (xy 115.034885 117.288462) - (xy 115.034884 117.288464) - (xy 115.014357 117.509999) - (xy 115.014357 117.51) - (xy 114.308495 117.51) - (xy 114.305313 117.475665) - (xy 114.287967 117.288464) - (xy 114.287966 117.288462) - (xy 114.27584 117.245845) - (xy 114.227081 117.074472) - (xy 114.227076 117.074461) - (xy 114.127913 116.875316) - (xy 114.127908 116.875308) - (xy 113.993831 116.697761) - (xy 113.829414 116.547876) - (xy 113.829412 116.547874) - (xy 113.640256 116.430754) - (xy 113.64025 116.430752) - (xy 113.432792 116.350382) - (xy 113.214095 116.3095) - (xy 112.991609 116.3095) - (xy 112.772912 116.350382) - (xy 112.641716 116.401207) - (xy 112.565453 116.430752) - (xy 112.565447 116.430754) - (xy 112.376291 116.547874) - (xy 112.376289 116.547876) - (xy 112.211872 116.697761) - (xy 112.077795 116.875308) - (xy 112.07779 116.875316) - (xy 111.978627 117.074461) - (xy 111.978621 117.074476) - (xy 111.917737 117.288462) - (xy 111.917736 117.288464) - (xy 111.897209 117.509999) - (xy 111.897209 117.51) - (xy 111.191353 117.51) - (xy 111.188171 117.475665) - (xy 111.170825 117.288464) - (xy 111.170824 117.288462) - (xy 111.158698 117.245845) - (xy 111.109939 117.074472) - (xy 111.109934 117.074461) - (xy 111.010771 116.875316) - (xy 111.010766 116.875308) - (xy 110.876689 116.697761) - (xy 110.712272 116.547876) - (xy 110.71227 116.547874) - (xy 110.523114 116.430754) - (xy 110.523108 116.430752) - (xy 110.31565 116.350382) - (xy 110.096953 116.3095) - (xy 109.874467 116.3095) - (xy 109.65577 116.350382) - (xy 109.524574 116.401207) - (xy 109.448311 116.430752) - (xy 109.448305 116.430754) - (xy 109.259149 116.547874) - (xy 109.259147 116.547876) - (xy 109.09473 116.697761) - (xy 108.960653 116.875308) - (xy 108.960648 116.875316) - (xy 108.861485 117.074461) - (xy 108.861479 117.074476) - (xy 108.800595 117.288462) - (xy 108.800594 117.288464) - (xy 108.780067 117.509999) - (xy 108.780067 117.51) - (xy 108.074211 117.51) - (xy 108.071029 117.475665) - (xy 108.053683 117.288464) - (xy 108.053682 117.288462) - (xy 108.041556 117.245845) - (xy 107.992797 117.074472) - (xy 107.992792 117.074461) - (xy 107.893629 116.875316) - (xy 107.893624 116.875308) - (xy 107.759547 116.697761) - (xy 107.59513 116.547876) - (xy 107.595128 116.547874) - (xy 107.405972 116.430754) - (xy 107.405966 116.430752) - (xy 107.198508 116.350382) - (xy 106.979811 116.3095) - (xy 106.757325 116.3095) - (xy 106.538628 116.350382) - (xy 106.407432 116.401207) - (xy 106.331169 116.430752) - (xy 106.331163 116.430754) - (xy 106.142007 116.547874) - (xy 106.142005 116.547876) - (xy 105.977588 116.697761) - (xy 105.843511 116.875308) - (xy 105.843506 116.875316) - (xy 105.744343 117.074461) - (xy 105.744337 117.074476) - (xy 105.683453 117.288462) - (xy 105.683452 117.288464) - (xy 105.662925 117.509999) - (xy 105.662925 117.51) - (xy 104.957069 117.51) - (xy 104.953887 117.475665) - (xy 104.936541 117.288464) - (xy 104.93654 117.288462) - (xy 104.924414 117.245845) - (xy 104.875655 117.074472) - (xy 104.87565 117.074461) - (xy 104.776487 116.875316) - (xy 104.776482 116.875308) - (xy 104.642405 116.697761) - (xy 104.477988 116.547876) - (xy 104.477986 116.547874) - (xy 104.28883 116.430754) - (xy 104.288824 116.430752) - (xy 104.081366 116.350382) - (xy 103.862669 116.3095) - (xy 103.640183 116.3095) - (xy 103.421486 116.350382) - (xy 103.29029 116.401207) - (xy 103.214027 116.430752) - (xy 103.214021 116.430754) - (xy 103.024865 116.547874) - (xy 103.024863 116.547876) - (xy 102.860446 116.697761) - (xy 102.726369 116.875308) - (xy 102.726364 116.875316) - (xy 102.627201 117.074461) - (xy 102.627195 117.074476) - (xy 102.566311 117.288462) - (xy 102.56631 117.288464) - (xy 102.545783 117.509999) - (xy 102.545783 117.51) - (xy 101.839927 117.51) - (xy 101.836745 117.475665) - (xy 101.819399 117.288464) - (xy 101.819398 117.288462) - (xy 101.807272 117.245845) - (xy 101.758513 117.074472) - (xy 101.758508 117.074461) - (xy 101.659345 116.875316) - (xy 101.65934 116.875308) - (xy 101.525263 116.697761) - (xy 101.360846 116.547876) - (xy 101.360844 116.547874) - (xy 101.171688 116.430754) - (xy 101.171682 116.430752) - (xy 100.964224 116.350382) - (xy 100.745527 116.3095) - (xy 100.523041 116.3095) - (xy 100.304344 116.350382) - (xy 100.173148 116.401207) - (xy 100.096885 116.430752) - (xy 100.096879 116.430754) - (xy 99.907723 116.547874) - (xy 99.907721 116.547876) - (xy 99.743304 116.697761) - (xy 99.609227 116.875308) - (xy 99.609222 116.875316) - (xy 99.510059 117.074461) - (xy 99.510053 117.074476) - (xy 99.449169 117.288462) - (xy 99.449168 117.288464) - (xy 99.428641 117.509999) - (xy 99.428641 117.51) - (xy 98.722785 117.51) - (xy 98.719603 117.475665) - (xy 98.702257 117.288464) - (xy 98.702256 117.288462) - (xy 98.69013 117.245845) - (xy 98.641371 117.074472) - (xy 98.641366 117.074461) - (xy 98.542203 116.875316) - (xy 98.542198 116.875308) - (xy 98.408121 116.697761) - (xy 98.243704 116.547876) - (xy 98.243702 116.547874) - (xy 98.054546 116.430754) - (xy 98.05454 116.430752) - (xy 97.847082 116.350382) - (xy 97.628385 116.3095) - (xy 97.405899 116.3095) - (xy 97.187202 116.350382) - (xy 97.056006 116.401207) - (xy 96.979743 116.430752) - (xy 96.979737 116.430754) - (xy 96.790581 116.547874) - (xy 96.790579 116.547876) - (xy 96.626162 116.697761) - (xy 96.492085 116.875308) - (xy 96.49208 116.875316) - (xy 96.392917 117.074461) - (xy 96.392911 117.074476) - (xy 96.332027 117.288462) - (xy 96.332026 117.288464) - (xy 96.311499 117.509999) - (xy 96.311499 117.51) - (xy 95.605643 117.51) - (xy 95.602461 117.475665) - (xy 95.585115 117.288464) - (xy 95.585114 117.288462) - (xy 95.572988 117.245845) - (xy 95.524229 117.074472) - (xy 95.524224 117.074461) - (xy 95.425061 116.875316) - (xy 95.425056 116.875308) - (xy 95.290979 116.697761) - (xy 95.126562 116.547876) - (xy 95.12656 116.547874) - (xy 94.937404 116.430754) - (xy 94.937398 116.430752) - (xy 94.72994 116.350382) - (xy 94.511243 116.3095) - (xy 94.288757 116.3095) - (xy 94.07006 116.350382) - (xy 93.938864 116.401207) - (xy 93.862601 116.430752) - (xy 93.862595 116.430754) - (xy 93.673439 116.547874) - (xy 93.673437 116.547876) - (xy 93.50902 116.697761) - (xy 93.374943 116.875308) - (xy 93.374938 116.875316) - (xy 93.275775 117.074461) - (xy 93.275769 117.074476) - (xy 93.214885 117.288462) - (xy 93.214884 117.288464) - (xy 93.194357 117.509999) - (xy 93.194357 117.51) - (xy 86.172447 117.51) - (xy 86.190307 117.461561) - (xy 86.230835 117.426445) - (xy 86.258649 117.411393) - (xy 86.437046 117.27254) - (xy 86.590156 117.106219) - (xy 86.713802 116.916965) - (xy 86.804611 116.709941) - (xy 86.860107 116.490793) - (xy 86.878062 116.274105) - (xy 86.878775 116.265506) - (xy 86.878775 116.265493) - (xy 86.860107 116.04021) - (xy 86.860107 116.040207) - (xy 86.804611 115.821059) - (xy 86.713802 115.614035) - (xy 86.701611 115.595376) - (xy 86.624145 115.476805) - (xy 86.590156 115.424781) - (xy 86.590153 115.424778) - (xy 86.590149 115.424772) - (xy 86.437049 115.258463) - (xy 86.437048 115.258462) - (xy 86.437046 115.25846) - (xy 86.258649 115.119607) - (xy 86.258647 115.119606) - (xy 86.258646 115.119605) - (xy 86.258639 115.1196) - (xy 86.230836 115.104555) - (xy 86.181244 115.055337) - (xy 86.166135 114.98712) - (xy 86.190306 114.921564) - (xy 86.230836 114.886445) - (xy 86.258639 114.871399) - (xy 86.258642 114.871396) - (xy 86.258649 114.871393) - (xy 86.437046 114.73254) - (xy 86.590156 114.566219) - (xy 86.713802 114.376965) - (xy 86.804611 114.169941) - (xy 86.860107 113.950793) - (xy 86.871891 113.808581) - (xy 86.878775 113.725506) - (xy 86.878775 113.725493) - (xy 86.860107 113.50021) - (xy 86.860107 113.500207) - (xy 86.804611 113.281059) - (xy 86.713802 113.074035) - (xy 86.590156 112.884781) - (xy 86.590153 112.884778) - (xy 86.590149 112.884772) - (xy 86.452755 112.735524) - (xy 86.421832 112.67287) - (xy 86.429692 112.603444) - (xy 86.473839 112.549288) - (xy 86.500652 112.535359) - (xy 86.615684 112.492455) - (xy 86.615693 112.49245) - (xy 86.730787 112.40629) - (xy 86.73079 112.406287) - (xy 86.81695 112.291193) - (xy 86.816954 112.291186) - (xy 86.867196 112.156479) - (xy 86.867198 112.156472) - (xy 86.873599 112.096944) - (xy 86.8736 112.096927) - (xy 86.8736 111.4355) - (xy 85.953196 111.4355) - (xy 85.976845 111.398701) - (xy 86.018 111.258539) - (xy 86.018 111.112461) - (xy 85.976845 110.972299) - (xy 85.953196 110.9355) - (xy 86.8736 110.9355) - (xy 86.8736 110.274072) - (xy 86.873599 110.274055) - (xy 86.867198 110.214527) - (xy 86.867196 110.21452) - (xy 86.839402 110.14) - (xy 93.2 110.14) - (xy 93.2 110.637844) - (xy 93.206401 110.697372) - (xy 93.206403 110.697379) - (xy 93.256645 110.832086) - (xy 93.256649 110.832093) - (xy 93.342809 110.947187) - (xy 93.342812 110.94719) - (xy 93.457906 111.03335) - (xy 93.457913 111.033354) - (xy 93.59262 111.083596) - (xy 93.592627 111.083598) - (xy 93.652155 111.089999) - (xy 93.652172 111.09) - (xy 94.15 111.09) - (xy 94.15 110.14) - (xy 93.2 110.14) - (xy 86.839402 110.14) - (xy 86.816954 110.079813) - (xy 86.81695 110.079806) - (xy 86.73079 109.964712) - (xy 86.730787 109.964709) - (xy 86.670132 109.919302) - (xy 94.046372 109.919302) - (xy 94.075047 110.032538) - (xy 94.138936 110.130327) - (xy 94.231115 110.202072) - (xy 94.341595 110.24) - (xy 94.429005 110.24) - (xy 94.515216 110.225614) - (xy 94.617947 110.170019) - (xy 94.645581 110.14) - (xy 94.65 110.14) - (xy 94.65 111.09) - (xy 95.147828 111.09) - (xy 95.147844 111.089999) - (xy 95.207372 111.083598) - (xy 95.207379 111.083596) - (xy 95.342086 111.033354) - (xy 95.342093 111.03335) - (xy 95.457187 110.94719) - (xy 95.45719 110.947187) - (xy 95.54335 110.832093) - (xy 95.543354 110.832086) - (xy 95.593596 110.697379) - (xy 95.593598 110.697372) - (xy 95.599999 110.637844) - (xy 95.6 110.637827) - (xy 95.6 110.14) - (xy 96.317142 110.14) - (xy 96.317142 110.637844) - (xy 96.323543 110.697372) - (xy 96.323545 110.697379) - (xy 96.373787 110.832086) - (xy 96.373791 110.832093) - (xy 96.459951 110.947187) - (xy 96.459954 110.94719) - (xy 96.575048 111.03335) - (xy 96.575055 111.033354) - (xy 96.709762 111.083596) - (xy 96.709769 111.083598) - (xy 96.769297 111.089999) - (xy 96.769314 111.09) - (xy 97.267142 111.09) - (xy 97.267142 110.14) - (xy 96.317142 110.14) - (xy 95.6 110.14) - (xy 94.65 110.14) - (xy 94.645581 110.14) - (xy 94.69706 110.084079) - (xy 94.743982 109.977108) - (xy 94.748772 109.919302) - (xy 97.163514 109.919302) - (xy 97.192189 110.032538) - (xy 97.256078 110.130327) - (xy 97.348257 110.202072) - (xy 97.458737 110.24) - (xy 97.546147 110.24) - (xy 97.632358 110.225614) - (xy 97.735089 110.170019) - (xy 97.762723 110.14) - (xy 97.767142 110.14) - (xy 97.767142 111.09) - (xy 98.26497 111.09) - (xy 98.264986 111.089999) - (xy 98.324514 111.083598) - (xy 98.324521 111.083596) - (xy 98.459228 111.033354) - (xy 98.459235 111.03335) - (xy 98.574329 110.94719) - (xy 98.574332 110.947187) - (xy 98.660492 110.832093) - (xy 98.660496 110.832086) - (xy 98.710738 110.697379) - (xy 98.71074 110.697372) - (xy 98.717141 110.637844) - (xy 98.717142 110.637827) - (xy 98.717142 110.14) - (xy 99.434284 110.14) - (xy 99.434284 110.637844) - (xy 99.440685 110.697372) - (xy 99.440687 110.697379) - (xy 99.490929 110.832086) - (xy 99.490933 110.832093) - (xy 99.577093 110.947187) - (xy 99.577096 110.94719) - (xy 99.69219 111.03335) - (xy 99.692197 111.033354) - (xy 99.826904 111.083596) - (xy 99.826911 111.083598) - (xy 99.886439 111.089999) - (xy 99.886456 111.09) - (xy 100.384284 111.09) - (xy 100.384284 110.14) - (xy 99.434284 110.14) - (xy 98.717142 110.14) - (xy 97.767142 110.14) - (xy 97.762723 110.14) - (xy 97.814202 110.084079) - (xy 97.861124 109.977108) - (xy 97.865914 109.919302) - (xy 100.280656 109.919302) - (xy 100.309331 110.032538) - (xy 100.37322 110.130327) - (xy 100.465399 110.202072) - (xy 100.575879 110.24) - (xy 100.663289 110.24) - (xy 100.7495 110.225614) - (xy 100.852231 110.170019) - (xy 100.879865 110.14) - (xy 100.884284 110.14) - (xy 100.884284 111.09) - (xy 101.382112 111.09) - (xy 101.382128 111.089999) - (xy 101.441656 111.083598) - (xy 101.441663 111.083596) - (xy 101.57637 111.033354) - (xy 101.576377 111.03335) - (xy 101.691471 110.94719) - (xy 101.691474 110.947187) - (xy 101.777634 110.832093) - (xy 101.777638 110.832086) - (xy 101.82788 110.697379) - (xy 101.827882 110.697372) - (xy 101.834283 110.637844) - (xy 101.834284 110.637827) - (xy 102.551425 110.637827) - (xy 102.551426 110.637844) - (xy 102.557827 110.697372) - (xy 102.557829 110.697379) - (xy 102.608071 110.832086) - (xy 102.608075 110.832093) - (xy 102.694235 110.947187) - (xy 102.694238 110.94719) - (xy 102.809332 111.03335) - (xy 102.809339 111.033354) - (xy 102.944046 111.083596) - (xy 102.944053 111.083598) - (xy 103.003581 111.089999) - (xy 103.003598 111.09) - (xy 103.501426 111.09) - (xy 103.501426 110.14) - (xy 102.551426 110.14) - (xy 102.551425 110.637827) - (xy 101.834284 110.637827) - (xy 101.834284 110.14) - (xy 100.884284 110.14) - (xy 100.879865 110.14) - (xy 100.931344 110.084079) - (xy 100.978266 109.977108) - (xy 100.983056 109.919302) - (xy 103.397798 109.919302) - (xy 103.426473 110.032538) - (xy 103.490362 110.130327) - (xy 103.582541 110.202072) - (xy 103.693021 110.24) - (xy 103.780431 110.24) - (xy 103.866642 110.225614) - (xy 103.969373 110.170019) - (xy 103.997007 110.14) - (xy 104.001426 110.14) - (xy 104.001426 111.09) - (xy 104.499254 111.09) - (xy 104.49927 111.089999) - (xy 104.558798 111.083598) - (xy 104.558805 111.083596) - (xy 104.693512 111.033354) - (xy 104.693519 111.03335) - (xy 104.808613 110.94719) - (xy 104.808616 110.947187) - (xy 104.894776 110.832093) - (xy 104.89478 110.832086) - (xy 104.945022 110.697379) - (xy 104.945024 110.697372) - (xy 104.951425 110.637844) - (xy 104.951425 110.637827) - (xy 104.951426 110.14) - (xy 105.668568 110.14) - (xy 105.668568 110.637844) - (xy 105.674969 110.697372) - (xy 105.674971 110.697379) - (xy 105.725213 110.832086) - (xy 105.725217 110.832093) - (xy 105.811377 110.947187) - (xy 105.81138 110.94719) - (xy 105.926474 111.03335) - (xy 105.926481 111.033354) - (xy 106.061188 111.083596) - (xy 106.061195 111.083598) - (xy 106.120723 111.089999) - (xy 106.12074 111.09) - (xy 106.618568 111.09) - (xy 106.618568 110.14) - (xy 105.668568 110.14) - (xy 104.951426 110.14) - (xy 104.001426 110.14) - (xy 103.997007 110.14) - (xy 104.048486 110.084079) - (xy 104.095408 109.977108) - (xy 104.100198 109.919302) - (xy 106.51494 109.919302) - (xy 106.543615 110.032538) - (xy 106.607504 110.130327) - (xy 106.699683 110.202072) - (xy 106.810163 110.24) - (xy 106.897573 110.24) - (xy 106.983784 110.225614) - (xy 107.086515 110.170019) - (xy 107.114149 110.14) - (xy 107.118568 110.14) - (xy 107.118568 111.09) - (xy 107.616396 111.09) - (xy 107.616412 111.089999) - (xy 107.67594 111.083598) - (xy 107.675947 111.083596) - (xy 107.810654 111.033354) - (xy 107.810661 111.03335) - (xy 107.925755 110.94719) - (xy 107.925758 110.947187) - (xy 108.011918 110.832093) - (xy 108.011922 110.832086) - (xy 108.062164 110.697379) - (xy 108.062166 110.697372) - (xy 108.068567 110.637844) - (xy 108.068568 110.637827) - (xy 108.068568 110.14) - (xy 108.78571 110.14) - (xy 108.78571 110.637844) - (xy 108.792111 110.697372) - (xy 108.792113 110.697379) - (xy 108.842355 110.832086) - (xy 108.842359 110.832093) - (xy 108.928519 110.947187) - (xy 108.928522 110.94719) - (xy 109.043616 111.03335) - (xy 109.043623 111.033354) - (xy 109.17833 111.083596) - (xy 109.178337 111.083598) - (xy 109.237865 111.089999) - (xy 109.237882 111.09) - (xy 109.73571 111.09) - (xy 109.73571 110.14) - (xy 108.78571 110.14) - (xy 108.068568 110.14) - (xy 107.118568 110.14) - (xy 107.114149 110.14) - (xy 107.165628 110.084079) - (xy 107.21255 109.977108) - (xy 107.21734 109.919302) - (xy 109.632082 109.919302) - (xy 109.660757 110.032538) - (xy 109.724646 110.130327) - (xy 109.816825 110.202072) - (xy 109.927305 110.24) - (xy 110.014715 110.24) - (xy 110.100926 110.225614) - (xy 110.203657 110.170019) - (xy 110.231291 110.14) - (xy 110.23571 110.14) - (xy 110.23571 111.09) - (xy 110.733538 111.09) - (xy 110.733554 111.089999) - (xy 110.793082 111.083598) - (xy 110.793089 111.083596) - (xy 110.927796 111.033354) - (xy 110.927803 111.03335) - (xy 111.042897 110.94719) - (xy 111.0429 110.947187) - (xy 111.12906 110.832093) - (xy 111.129064 110.832086) - (xy 111.179306 110.697379) - (xy 111.179308 110.697372) - (xy 111.185709 110.637844) - (xy 111.18571 110.637827) - (xy 111.18571 110.14) - (xy 111.902852 110.14) - (xy 111.902852 110.637844) - (xy 111.909253 110.697372) - (xy 111.909255 110.697379) - (xy 111.959497 110.832086) - (xy 111.959501 110.832093) - (xy 112.045661 110.947187) - (xy 112.045664 110.94719) - (xy 112.160758 111.03335) - (xy 112.160765 111.033354) - (xy 112.295472 111.083596) - (xy 112.295479 111.083598) - (xy 112.355007 111.089999) - (xy 112.355024 111.09) - (xy 112.852852 111.09) - (xy 112.852852 110.14) - (xy 111.902852 110.14) - (xy 111.18571 110.14) - (xy 110.23571 110.14) - (xy 110.231291 110.14) - (xy 110.28277 110.084079) - (xy 110.329692 109.977108) - (xy 110.334482 109.919302) - (xy 112.749224 109.919302) - (xy 112.777899 110.032538) - (xy 112.841788 110.130327) - (xy 112.933967 110.202072) - (xy 113.044447 110.24) - (xy 113.131857 110.24) - (xy 113.218068 110.225614) - (xy 113.320799 110.170019) - (xy 113.348433 110.14) - (xy 113.352852 110.14) - (xy 113.352852 111.09) - (xy 113.85068 111.09) - (xy 113.850696 111.089999) - (xy 113.910224 111.083598) - (xy 113.910231 111.083596) - (xy 114.044938 111.033354) - (xy 114.044945 111.03335) - (xy 114.160039 110.94719) - (xy 114.160042 110.947187) - (xy 114.246202 110.832093) - (xy 114.246206 110.832086) - (xy 114.296448 110.697379) - (xy 114.29645 110.697372) - (xy 114.302851 110.637844) - (xy 114.302852 110.637827) - (xy 114.302852 110.14) - (xy 115.02 110.14) - (xy 115.02 110.637844) - (xy 115.026401 110.697372) - (xy 115.026403 110.697379) - (xy 115.076645 110.832086) - (xy 115.076649 110.832093) - (xy 115.162809 110.947187) - (xy 115.162812 110.94719) - (xy 115.277906 111.03335) - (xy 115.277913 111.033354) - (xy 115.41262 111.083596) - (xy 115.412627 111.083598) - (xy 115.472155 111.089999) - (xy 115.472172 111.09) - (xy 115.97 111.09) - (xy 115.97 110.14) - (xy 115.02 110.14) - (xy 114.302852 110.14) - (xy 113.352852 110.14) - (xy 113.348433 110.14) - (xy 113.399912 110.084079) - (xy 113.446834 109.977108) - (xy 113.451624 109.919302) - (xy 115.866372 109.919302) - (xy 115.895047 110.032538) - (xy 115.958936 110.130327) - (xy 116.051115 110.202072) - (xy 116.161595 110.24) - (xy 116.249005 110.24) - (xy 116.335216 110.225614) - (xy 116.437947 110.170019) - (xy 116.465581 110.14) - (xy 116.47 110.14) - (xy 116.47 111.09) - (xy 116.967828 111.09) - (xy 116.967844 111.089999) - (xy 117.027372 111.083598) - (xy 117.027379 111.083596) - (xy 117.162086 111.033354) - (xy 117.162093 111.03335) - (xy 117.277187 110.94719) - (xy 117.27719 110.947187) - (xy 117.36335 110.832093) - (xy 117.363354 110.832086) - (xy 117.413596 110.697379) - (xy 117.413598 110.697372) - (xy 117.419999 110.637844) - (xy 117.42 110.637827) - (xy 117.42 110.14) - (xy 116.47 110.14) - (xy 116.465581 110.14) - (xy 116.51706 110.084079) - (xy 116.563982 109.977108) - (xy 116.573628 109.860698) - (xy 116.544953 109.747462) - (xy 116.481064 109.649673) - (xy 116.388885 109.577928) - (xy 116.278405 109.54) - (xy 116.190995 109.54) - (xy 116.104784 109.554386) - (xy 116.002053 109.609981) - (xy 115.92294 109.695921) - (xy 115.876018 109.802892) - (xy 115.866372 109.919302) - (xy 113.451624 109.919302) - (xy 113.45648 109.860698) - (xy 113.427805 109.747462) - (xy 113.363916 109.649673) - (xy 113.271737 109.577928) - (xy 113.161257 109.54) - (xy 113.073847 109.54) - (xy 112.987636 109.554386) - (xy 112.884905 109.609981) - (xy 112.805792 109.695921) - (xy 112.75887 109.802892) - (xy 112.749224 109.919302) - (xy 110.334482 109.919302) - (xy 110.339338 109.860698) - (xy 110.310663 109.747462) - (xy 110.246774 109.649673) - (xy 110.154595 109.577928) - (xy 110.044115 109.54) - (xy 109.956705 109.54) - (xy 109.870494 109.554386) - (xy 109.767763 109.609981) - (xy 109.68865 109.695921) - (xy 109.641728 109.802892) - (xy 109.632082 109.919302) - (xy 107.21734 109.919302) - (xy 107.222196 109.860698) - (xy 107.193521 109.747462) - (xy 107.129632 109.649673) - (xy 107.037453 109.577928) - (xy 106.926973 109.54) - (xy 106.839563 109.54) - (xy 106.753352 109.554386) - (xy 106.650621 109.609981) - (xy 106.571508 109.695921) - (xy 106.524586 109.802892) - (xy 106.51494 109.919302) - (xy 104.100198 109.919302) - (xy 104.105054 109.860698) - (xy 104.076379 109.747462) - (xy 104.01249 109.649673) - (xy 103.920311 109.577928) - (xy 103.809831 109.54) - (xy 103.722421 109.54) - (xy 103.63621 109.554386) - (xy 103.533479 109.609981) - (xy 103.454366 109.695921) - (xy 103.407444 109.802892) - (xy 103.397798 109.919302) - (xy 100.983056 109.919302) - (xy 100.987912 109.860698) - (xy 100.959237 109.747462) - (xy 100.895348 109.649673) - (xy 100.803169 109.577928) - (xy 100.692689 109.54) - (xy 100.605279 109.54) - (xy 100.519068 109.554386) - (xy 100.416337 109.609981) - (xy 100.337224 109.695921) - (xy 100.290302 109.802892) - (xy 100.280656 109.919302) - (xy 97.865914 109.919302) - (xy 97.87077 109.860698) - (xy 97.842095 109.747462) - (xy 97.778206 109.649673) - (xy 97.686027 109.577928) - (xy 97.575547 109.54) - (xy 97.488137 109.54) - (xy 97.401926 109.554386) - (xy 97.299195 109.609981) - (xy 97.220082 109.695921) - (xy 97.17316 109.802892) - (xy 97.163514 109.919302) - (xy 94.748772 109.919302) - (xy 94.753628 109.860698) - (xy 94.724953 109.747462) - (xy 94.661064 109.649673) - (xy 94.568885 109.577928) - (xy 94.458405 109.54) - (xy 94.370995 109.54) - (xy 94.284784 109.554386) - (xy 94.182053 109.609981) - (xy 94.10294 109.695921) - (xy 94.056018 109.802892) - (xy 94.046372 109.919302) - (xy 86.670132 109.919302) - (xy 86.615693 109.878549) - (xy 86.615686 109.878545) - (xy 86.480979 109.828303) - (xy 86.480972 109.828301) - (xy 86.421444 109.8219) - (xy 85.76 109.8219) - (xy 85.76 110.741202) - (xy 85.654592 110.693065) - (xy 85.546334 110.6775) - (xy 85.473666 110.6775) - (xy 85.365408 110.693065) - (xy 85.26 110.741202) - (xy 85.26 109.8219) - (xy 84.598555 109.8219) - (xy 84.539027 109.828301) - (xy 84.53902 109.828303) - (xy 84.404313 109.878545) - (xy 84.404306 109.878549) - (xy 84.289212 109.964709) - (xy 84.289209 109.964712) - (xy 84.203049 110.079806) - (xy 84.203045 110.079813) - (xy 84.152803 110.21452) - (xy 84.152801 110.214527) - (xy 84.1464 110.274055) - (xy 84.1464 110.9355) - (xy 85.066804 110.9355) - (xy 85.043155 110.972299) - (xy 85.002 111.112461) - (xy 85.002 111.258539) - (xy 85.043155 111.398701) - (xy 85.066804 111.4355) - (xy 84.1464 111.4355) - (xy 84.1464 112.096944) - (xy 84.152801 112.156472) - (xy 84.152803 112.156479) - (xy 84.203045 112.291186) - (xy 84.203049 112.291193) - (xy 84.289209 112.406287) - (xy 84.289212 112.40629) - (xy 84.404306 112.49245) - (xy 84.404313 112.492454) - (xy 84.519348 112.535359) - (xy 84.575282 112.57723) - (xy 84.599699 112.642694) - (xy 84.584848 112.710967) - (xy 84.567245 112.735524) - (xy 84.429845 112.884779) - (xy 84.429842 112.884783) - (xy 84.306198 113.074033) - (xy 84.215388 113.28106) - (xy 84.159892 113.50021) - (xy 84.141225 113.725493) - (xy 84.141225 113.725506) - (xy 84.159892 113.950789) - (xy 84.215388 114.169939) - (xy 84.306198 114.376966) - (xy 84.429842 114.566216) - (xy 84.42985 114.566227) - (xy 84.549991 114.696733) - (xy 84.582954 114.73254) - (xy 84.761351 114.871393) - (xy 84.779495 114.881212) - (xy 84.789165 114.886445) - (xy 84.838755 114.935665) - (xy 84.853863 115.003882) - (xy 84.829692 115.069437) - (xy 84.789165 115.104554) - (xy 84.787801 115.105293) - (xy 84.761352 115.119606) - (xy 84.582955 115.258459) - (xy 84.58295 115.258463) - (xy 84.42985 115.424772) - (xy 84.429842 115.424783) - (xy 84.306198 115.614033) - (xy 84.215388 115.82106) - (xy 84.159892 116.04021) - (xy 84.141225 116.265493) - (xy 84.141225 116.265506) - (xy 84.159892 116.490789) - (xy 84.215388 116.709939) - (xy 84.306198 116.916966) - (xy 84.429842 117.106216) - (xy 84.42985 117.106227) - (xy 84.558379 117.245845) - (xy 84.582954 117.27254) - (xy 84.761351 117.411393) - (xy 84.789159 117.426442) - (xy 84.789165 117.426445) - (xy 84.838755 117.475665) - (xy 84.853863 117.543882) - (xy 84.829692 117.609437) - (xy 84.789165 117.644554) - (xy 84.780866 117.649045) - (xy 84.761352 117.659606) - (xy 84.582955 117.798459) - (xy 84.58295 117.798463) - (xy 84.42985 117.964772) - (xy 84.429842 117.964783) - (xy 84.306198 118.154033) - (xy 84.215388 118.36106) - (xy 84.159892 118.58021) - (xy 84.141225 118.805493) - (xy 84.141225 118.805506) - (xy 81 118.805506) - (xy 81 109.64) - (xy 93.2 109.64) - (xy 94.15 109.64) - (xy 94.15 108.69) - (xy 94.65 108.69) - (xy 94.65 109.64) - (xy 95.6 109.64) - (xy 96.317142 109.64) - (xy 97.267142 109.64) - (xy 97.267142 108.69) - (xy 97.767142 108.69) - (xy 97.767142 109.64) - (xy 98.717142 109.64) - (xy 99.434284 109.64) - (xy 100.384284 109.64) - (xy 100.384284 108.69) - (xy 100.884284 108.69) - (xy 100.884284 109.64) - (xy 101.834284 109.64) - (xy 101.834284 109.142172) - (xy 102.551425 109.142172) - (xy 102.551426 109.64) - (xy 103.501426 109.64) - (xy 103.501426 108.69) - (xy 104.001426 108.69) - (xy 104.001426 109.64) - (xy 104.951426 109.64) - (xy 105.668568 109.64) - (xy 106.618568 109.64) - (xy 106.618568 108.69) - (xy 107.118568 108.69) - (xy 107.118568 109.64) - (xy 108.068568 109.64) - (xy 108.78571 109.64) - (xy 109.73571 109.64) - (xy 109.73571 108.69) - (xy 110.23571 108.69) - (xy 110.23571 109.64) - (xy 111.18571 109.64) - (xy 111.902852 109.64) - (xy 112.852852 109.64) - (xy 112.852852 108.69) - (xy 113.352852 108.69) - (xy 113.352852 109.64) - (xy 114.302852 109.64) - (xy 114.302852 109.639999) - (xy 115.019999 109.639999) - (xy 115.02 109.64) - (xy 115.97 109.64) - (xy 115.97 108.69) - (xy 116.47 108.69) - (xy 116.47 109.64) - (xy 117.42 109.64) - (xy 117.42 109.142172) - (xy 117.419999 109.142155) - (xy 117.413598 109.082627) - (xy 117.413596 109.08262) - (xy 117.363354 108.947913) - (xy 117.36335 108.947906) - (xy 117.27719 108.832812) - (xy 117.277187 108.832809) - (xy 117.162093 108.746649) - (xy 117.162086 108.746645) - (xy 117.027379 108.696403) - (xy 117.027372 108.696401) - (xy 116.967844 108.69) - (xy 116.47 108.69) - (xy 115.97 108.69) - (xy 115.472155 108.69) - (xy 115.412627 108.696401) - (xy 115.41262 108.696403) - (xy 115.277913 108.746645) - (xy 115.277906 108.746649) - (xy 115.162812 108.832809) - (xy 115.162809 108.832812) - (xy 115.076649 108.947906) - (xy 115.076645 108.947913) - (xy 115.026403 109.08262) - (xy 115.026401 109.082627) - (xy 115.02 109.142155) - (xy 115.02 109.142172) - (xy 115.019999 109.639999) - (xy 114.302852 109.639999) - (xy 114.302852 109.142172) - (xy 114.302851 109.142155) - (xy 114.29645 109.082627) - (xy 114.296448 109.08262) - (xy 114.246206 108.947913) - (xy 114.246202 108.947906) - (xy 114.160042 108.832812) - (xy 114.160039 108.832809) - (xy 114.044945 108.746649) - (xy 114.044938 108.746645) - (xy 113.910231 108.696403) - (xy 113.910224 108.696401) - (xy 113.850696 108.69) - (xy 113.352852 108.69) - (xy 112.852852 108.69) - (xy 112.355007 108.69) - (xy 112.295479 108.696401) - (xy 112.295472 108.696403) - (xy 112.160765 108.746645) - (xy 112.160758 108.746649) - (xy 112.045664 108.832809) - (xy 112.045661 108.832812) - (xy 111.959501 108.947906) - (xy 111.959497 108.947913) - (xy 111.909255 109.08262) - (xy 111.909253 109.082627) - (xy 111.902852 109.142155) - (xy 111.902852 109.64) - (xy 111.18571 109.64) - (xy 111.18571 109.142172) - (xy 111.185709 109.142155) - (xy 111.179308 109.082627) - (xy 111.179306 109.08262) - (xy 111.129064 108.947913) - (xy 111.12906 108.947906) - (xy 111.0429 108.832812) - (xy 111.042897 108.832809) - (xy 110.927803 108.746649) - (xy 110.927796 108.746645) - (xy 110.793089 108.696403) - (xy 110.793082 108.696401) - (xy 110.733554 108.69) - (xy 110.23571 108.69) - (xy 109.73571 108.69) - (xy 109.237865 108.69) - (xy 109.178337 108.696401) - (xy 109.17833 108.696403) - (xy 109.043623 108.746645) - (xy 109.043616 108.746649) - (xy 108.928522 108.832809) - (xy 108.928519 108.832812) - (xy 108.842359 108.947906) - (xy 108.842355 108.947913) - (xy 108.792113 109.08262) - (xy 108.792111 109.082627) - (xy 108.78571 109.142155) - (xy 108.78571 109.64) - (xy 108.068568 109.64) - (xy 108.068568 109.142172) - (xy 108.068567 109.142155) - (xy 108.062166 109.082627) - (xy 108.062164 109.08262) - (xy 108.011922 108.947913) - (xy 108.011918 108.947906) - (xy 107.925758 108.832812) - (xy 107.925755 108.832809) - (xy 107.810661 108.746649) - (xy 107.810654 108.746645) - (xy 107.675947 108.696403) - (xy 107.67594 108.696401) - (xy 107.616412 108.69) - (xy 107.118568 108.69) - (xy 106.618568 108.69) - (xy 106.120723 108.69) - (xy 106.061195 108.696401) - (xy 106.061188 108.696403) - (xy 105.926481 108.746645) - (xy 105.926474 108.746649) - (xy 105.81138 108.832809) - (xy 105.811377 108.832812) - (xy 105.725217 108.947906) - (xy 105.725213 108.947913) - (xy 105.674971 109.08262) - (xy 105.674969 109.082627) - (xy 105.668568 109.142155) - (xy 105.668568 109.64) - (xy 104.951426 109.64) - (xy 104.951425 109.142172) - (xy 104.951425 109.142155) - (xy 104.945024 109.082627) - (xy 104.945022 109.08262) - (xy 104.89478 108.947913) - (xy 104.894776 108.947906) - (xy 104.808616 108.832812) - (xy 104.808613 108.832809) - (xy 104.693519 108.746649) - (xy 104.693512 108.746645) - (xy 104.558805 108.696403) - (xy 104.558798 108.696401) - (xy 104.49927 108.69) - (xy 104.001426 108.69) - (xy 103.501426 108.69) - (xy 103.003581 108.69) - (xy 102.944053 108.696401) - (xy 102.944046 108.696403) - (xy 102.809339 108.746645) - (xy 102.809332 108.746649) - (xy 102.694238 108.832809) - (xy 102.694235 108.832812) - (xy 102.608075 108.947906) - (xy 102.608071 108.947913) - (xy 102.557829 109.08262) - (xy 102.557827 109.082627) - (xy 102.551426 109.142155) - (xy 102.551425 109.142172) - (xy 101.834284 109.142172) - (xy 101.834283 109.142155) - (xy 101.827882 109.082627) - (xy 101.82788 109.08262) - (xy 101.777638 108.947913) - (xy 101.777634 108.947906) - (xy 101.691474 108.832812) - (xy 101.691471 108.832809) - (xy 101.576377 108.746649) - (xy 101.57637 108.746645) - (xy 101.441663 108.696403) - (xy 101.441656 108.696401) - (xy 101.382128 108.69) - (xy 100.884284 108.69) - (xy 100.384284 108.69) - (xy 99.886439 108.69) - (xy 99.826911 108.696401) - (xy 99.826904 108.696403) - (xy 99.692197 108.746645) - (xy 99.69219 108.746649) - (xy 99.577096 108.832809) - (xy 99.577093 108.832812) - (xy 99.490933 108.947906) - (xy 99.490929 108.947913) - (xy 99.440687 109.08262) - (xy 99.440685 109.082627) - (xy 99.434284 109.142155) - (xy 99.434284 109.64) - (xy 98.717142 109.64) - (xy 98.717142 109.142172) - (xy 98.717141 109.142155) - (xy 98.71074 109.082627) - (xy 98.710738 109.08262) - (xy 98.660496 108.947913) - (xy 98.660492 108.947906) - (xy 98.574332 108.832812) - (xy 98.574329 108.832809) - (xy 98.459235 108.746649) - (xy 98.459228 108.746645) - (xy 98.324521 108.696403) - (xy 98.324514 108.696401) - (xy 98.264986 108.69) - (xy 97.767142 108.69) - (xy 97.267142 108.69) - (xy 96.769297 108.69) - (xy 96.709769 108.696401) - (xy 96.709762 108.696403) - (xy 96.575055 108.746645) - (xy 96.575048 108.746649) - (xy 96.459954 108.832809) - (xy 96.459951 108.832812) - (xy 96.373791 108.947906) - (xy 96.373787 108.947913) - (xy 96.323545 109.08262) - (xy 96.323543 109.082627) - (xy 96.317142 109.142155) - (xy 96.317142 109.64) - (xy 95.6 109.64) - (xy 95.6 109.142172) - (xy 95.599999 109.142155) - (xy 95.593598 109.082627) - (xy 95.593596 109.08262) - (xy 95.543354 108.947913) - (xy 95.54335 108.947906) - (xy 95.45719 108.832812) - (xy 95.457187 108.832809) - (xy 95.342093 108.746649) - (xy 95.342086 108.746645) - (xy 95.207379 108.696403) - (xy 95.207372 108.696401) - (xy 95.147844 108.69) - (xy 94.65 108.69) - (xy 94.15 108.69) - (xy 93.652155 108.69) - (xy 93.592627 108.696401) - (xy 93.59262 108.696403) - (xy 93.457913 108.746645) - (xy 93.457906 108.746649) - (xy 93.342812 108.832809) - (xy 93.342809 108.832812) - (xy 93.256649 108.947906) - (xy 93.256645 108.947913) - (xy 93.206403 109.08262) - (xy 93.206401 109.082627) - (xy 93.2 109.142155) - (xy 93.2 109.64) - (xy 81 109.64) - (xy 81 104.890004) - (xy 82.024732 104.890004) - (xy 82.043777 105.144154) - (xy 82.10049 105.39263) - (xy 82.100492 105.392637) - (xy 82.193608 105.62989) - (xy 82.220536 105.676531) - (xy 82.321041 105.850612) - (xy 82.47995 106.049877) - (xy 82.666783 106.223232) - (xy 82.877366 106.366805) - (xy 82.877371 106.366807) - (xy 82.877372 106.366808) - (xy 82.877373 106.366809) - (xy 82.986338 106.419283) - (xy 83.106992 106.477387) - (xy 83.106993 106.477387) - (xy 83.106996 106.477389) - (xy 83.350542 106.552513) - (xy 83.602565 106.5905) - (xy 83.857435 106.5905) - (xy 84.109458 106.552513) - (xy 84.353004 106.477389) - (xy 84.582634 106.366805) - (xy 84.793217 106.223232) - (xy 84.98005 106.049877) - (xy 85.138959 105.850612) - (xy 85.266393 105.629888) - (xy 85.359508 105.392637) - (xy 85.416222 105.144157) - (xy 85.428763 104.976805) - (xy 85.435268 104.890004) - (xy 85.435268 104.889995) - (xy 85.416222 104.635845) - (xy 85.384008 104.494707) - (xy 85.359508 104.387363) - (xy 85.329335 104.310486) - (xy 85.323167 104.240893) - (xy 85.355604 104.179009) - (xy 85.357021 104.177567) - (xy 86.583787 102.950802) - (xy 86.596042 102.940986) - (xy 86.595859 102.940764) - (xy 86.601868 102.935791) - (xy 86.601877 102.935786) - (xy 86.648607 102.886022) - (xy 86.649846 102.884743) - (xy 86.67012 102.864471) - (xy 86.674379 102.858978) - (xy 86.678152 102.854561) - (xy 86.710062 102.820582) - (xy 86.719713 102.803024) - (xy 86.730396 102.786761) - (xy 86.742673 102.770936) - (xy 86.761185 102.728153) - (xy 86.763738 102.722941) - (xy 86.786197 102.682092) - (xy 86.79118 102.66268) - (xy 86.797481 102.64428) - (xy 86.805437 102.625896) - (xy 86.812729 102.579852) - (xy 86.813906 102.574171) - (xy 86.8255 102.529019) - (xy 86.8255 102.508982) - (xy 86.827027 102.489582) - (xy 86.83016 102.469804) - (xy 86.825775 102.423415) - (xy 86.8255 102.417577) - (xy 86.8255 101.3573) - (xy 108.02 101.3573) - (xy 108.02 101.855144) - (xy 108.026401 101.914672) - (xy 108.026403 101.914679) - (xy 108.076645 102.049386) - (xy 108.076649 102.049393) - (xy 108.162809 102.164487) - (xy 108.162812 102.16449) - (xy 108.277906 102.25065) - (xy 108.277913 102.250654) - (xy 108.41262 102.300896) - (xy 108.412627 102.300898) - (xy 108.472155 102.307299) - (xy 108.472172 102.3073) - (xy 108.97 102.3073) - (xy 108.97 101.3573) - (xy 108.02 101.3573) - (xy 86.8255 101.3573) - (xy 86.8255 101.136602) - (xy 108.866372 101.136602) - (xy 108.895047 101.249838) - (xy 108.958936 101.347627) - (xy 109.051115 101.419372) - (xy 109.161595 101.4573) - (xy 109.249005 101.4573) - (xy 109.335216 101.442914) - (xy 109.437947 101.387319) - (xy 109.465581 101.3573) - (xy 109.47 101.3573) - (xy 109.47 102.3073) - (xy 109.967828 102.3073) - (xy 109.967844 102.307299) - (xy 110.027372 102.300898) - (xy 110.027379 102.300896) - (xy 110.162086 102.250654) - (xy 110.162093 102.25065) - (xy 110.277187 102.16449) - (xy 110.27719 102.164487) - (xy 110.36335 102.049393) - (xy 110.363354 102.049386) - (xy 110.413596 101.914679) - (xy 110.413598 101.914672) - (xy 110.419999 101.855144) - (xy 110.42 101.855127) - (xy 110.42 101.3573) - (xy 109.47 101.3573) - (xy 109.465581 101.3573) - (xy 109.51706 101.301379) - (xy 109.563982 101.194408) - (xy 109.5712 101.107302) - (xy 129.734723 101.107302) - (xy 129.753793 101.325275) - (xy 129.753793 101.325279) - (xy 129.810422 101.536622) - (xy 129.810424 101.536626) - (xy 129.810425 101.53663) - (xy 129.835592 101.5906) - (xy 129.902897 101.734938) - (xy 129.910208 101.745379) - (xy 130.028402 101.914177) - (xy 130.183123 102.068898) - (xy 130.362361 102.194402) - (xy 130.56067 102.286875) - (xy 130.772023 102.343507) - (xy 130.954926 102.359508) - (xy 130.989998 102.362577) - (xy 130.99 102.362577) - (xy 130.990002 102.362577) - (xy 131.018254 102.360105) - (xy 131.207977 102.343507) - (xy 131.41933 102.286875) - (xy 131.617639 102.194402) - (xy 131.796877 102.068898) - (xy 131.846656 102.019119) - (xy 131.907979 101.985634) - (xy 131.934337 101.9828) - (xy 141.037369 101.9828) - (xy 141.104408 102.002485) - (xy 141.128596 102.022814) - (xy 141.242954 102.14704) - (xy 141.421351 102.285893) - (xy 141.620169 102.393488) - (xy 141.620172 102.393489) - (xy 141.833982 102.46689) - (xy 141.833984 102.46689) - (xy 141.833986 102.466891) - (xy 142.056967 102.5041) - (xy 142.056968 102.5041) - (xy 142.283032 102.5041) - (xy 142.283033 102.5041) - (xy 142.506014 102.466891) - (xy 142.719831 102.393488) - (xy 142.918649 102.285893) - (xy 143.097046 102.14704) - (xy 143.211059 102.02319) - (xy 143.250149 101.980727) - (xy 143.25015 101.980725) - (xy 143.250156 101.980719) - (xy 143.373802 101.791465) - (xy 143.464611 101.584441) - (xy 143.520107 101.365293) - (xy 143.529735 101.249104) - (xy 143.538775 101.140006) - (xy 143.538775 101.139993) - (xy 143.522138 100.939214) - (xy 143.520107 100.914707) - (xy 143.464611 100.695559) - (xy 143.373802 100.488535) - (xy 143.368004 100.479661) - (xy 143.266144 100.323753) - (xy 143.250156 100.299281) - (xy 143.250153 100.299278) - (xy 143.250149 100.299272) - (xy 143.097049 100.132963) - (xy 143.097048 100.132962) - (xy 143.097046 100.13296) - (xy 142.918649 99.994107) - (xy 142.795986 99.927725) - (xy 142.719832 99.886512) - (xy 142.719827 99.88651) - (xy 142.506017 99.813109) - (xy 142.338778 99.785202) - (xy 142.283033 99.7759) - (xy 142.056967 99.7759) - (xy 142.01237 99.783341) - (xy 141.833982 99.813109) - (xy 141.620172 99.88651) - (xy 141.620167 99.886512) - (xy 141.421352 99.994106) - (xy 141.242956 100.132958) - (xy 141.242954 100.132959) - (xy 141.242954 100.13296) - (xy 141.188802 100.191783) - (xy 141.128916 100.227774) - (xy 141.097574 100.2318) - (xy 131.934337 100.2318) - (xy 131.867298 100.212115) - (xy 131.846656 100.195481) - (xy 131.796881 100.145706) - (xy 131.796877 100.145702) - (xy 131.617639 100.020198) - (xy 131.61764 100.020198) - (xy 131.617638 100.020197) - (xy 131.518484 99.973961) - (xy 131.41933 99.927725) - (xy 131.419326 99.927724) - (xy 131.419322 99.927722) - (xy 131.207977 99.871093) - (xy 130.990002 99.852023) - (xy 130.989998 99.852023) - (xy 130.844682 99.864736) - (xy 130.772023 99.871093) - (xy 130.77202 99.871093) - (xy 130.560677 99.927722) - (xy 130.560668 99.927726) - (xy 130.362361 100.020198) - (xy 130.362357 100.0202) - (xy 130.183121 100.145702) - (xy 130.028402 100.300421) - (xy 129.9029 100.479657) - (xy 129.902898 100.479661) - (xy 129.810426 100.677968) - (xy 129.810422 100.677977) - (xy 129.753793 100.88932) - (xy 129.753793 100.889324) - (xy 129.734723 101.107297) - (xy 129.734723 101.107302) - (xy 109.5712 101.107302) - (xy 109.573628 101.077998) - (xy 109.544953 100.964762) - (xy 109.481064 100.866973) - (xy 109.388885 100.795228) - (xy 109.278405 100.7573) - (xy 109.190995 100.7573) - (xy 109.104784 100.771686) - (xy 109.002053 100.827281) - (xy 108.92294 100.913221) - (xy 108.876018 101.020192) - (xy 108.866372 101.136602) - (xy 86.8255 101.136602) - (xy 86.8255 100.8573) - (xy 108.02 100.8573) - (xy 108.97 100.8573) - (xy 108.97 99.9073) - (xy 109.47 99.9073) - (xy 109.47 100.8573) - (xy 110.42 100.8573) - (xy 110.42 100.359472) - (xy 110.419999 100.359455) - (xy 110.413598 100.299927) - (xy 110.413596 100.29992) - (xy 110.363354 100.165213) - (xy 110.36335 100.165206) - (xy 110.27719 100.050112) - (xy 110.277187 100.050109) - (xy 110.162093 99.963949) - (xy 110.162086 99.963945) - (xy 110.027379 99.913703) - (xy 110.027372 99.913701) - (xy 109.967844 99.9073) - (xy 109.47 99.9073) - (xy 108.97 99.9073) - (xy 108.472155 99.9073) - (xy 108.412627 99.913701) - (xy 108.41262 99.913703) - (xy 108.277913 99.963945) - (xy 108.277906 99.963949) - (xy 108.162812 100.050109) - (xy 108.162809 100.050112) - (xy 108.076649 100.165206) - (xy 108.076645 100.165213) - (xy 108.026403 100.29992) - (xy 108.026401 100.299927) - (xy 108.02 100.359455) - (xy 108.02 100.8573) - (xy 86.8255 100.8573) - (xy 86.8255 97.100006) - (xy 87.247225 97.100006) - (xy 87.265892 97.325289) - (xy 87.321388 97.544439) - (xy 87.412198 97.751466) - (xy 87.535842 97.940716) - (xy 87.53585 97.940727) - (xy 87.68895 98.107036) - (xy 87.688954 98.10704) - (xy 87.867351 98.245893) - (xy 88.066169 98.353488) - (xy 88.066172 98.353489) - (xy 88.279982 98.42689) - (xy 88.279984 98.42689) - (xy 88.279986 98.426891) - (xy 88.502967 98.4641) - (xy 88.502968 98.4641) - (xy 88.729032 98.4641) - (xy 88.729033 98.4641) - (xy 88.952014 98.426891) - (xy 89.165831 98.353488) - (xy 89.364649 98.245893) - (xy 89.543046 98.10704) - (xy 89.696156 97.940719) - (xy 89.782193 97.809028) - (xy 89.835338 97.763675) - (xy 89.904569 97.754251) - (xy 89.967905 97.783753) - (xy 89.989804 97.809025) - (xy 90.075844 97.940719) - (xy 90.075849 97.940724) - (xy 90.07585 97.940727) - (xy 90.22895 98.107036) - (xy 90.228954 98.10704) - (xy 90.407351 98.245893) - (xy 90.606169 98.353488) - (xy 90.606172 98.353489) - (xy 90.819982 98.42689) - (xy 90.819984 98.42689) - (xy 90.819986 98.426891) - (xy 91.042967 98.4641) - (xy 91.042968 98.4641) - (xy 91.269032 98.4641) - (xy 91.269033 98.4641) - (xy 91.492014 98.426891) - (xy 91.705831 98.353488) - (xy 91.904649 98.245893) - (xy 92.083046 98.10704) - (xy 92.236156 97.940719) - (xy 92.322193 97.809028) - (xy 92.375338 97.763675) - (xy 92.444569 97.754251) - (xy 92.507905 97.783753) - (xy 92.529804 97.809025) - (xy 92.615844 97.940719) - (xy 92.615849 97.940724) - (xy 92.61585 97.940727) - (xy 92.76895 98.107036) - (xy 92.768954 98.10704) - (xy 92.947351 98.245893) - (xy 93.146169 98.353488) - (xy 93.146172 98.353489) - (xy 93.359982 98.42689) - (xy 93.359984 98.42689) - (xy 93.359986 98.426891) - (xy 93.582967 98.4641) - (xy 93.582968 98.4641) - (xy 93.809032 98.4641) - (xy 93.809033 98.4641) - (xy 94.032014 98.426891) - (xy 94.245831 98.353488) - (xy 94.444649 98.245893) - (xy 94.623046 98.10704) - (xy 94.677815 98.047545) - (xy 94.737699 98.011557) - (xy 94.807537 98.013657) - (xy 94.865153 98.05318) - (xy 94.885224 98.088196) - (xy 94.929046 98.205688) - (xy 94.929049 98.205693) - (xy 95.015209 98.320787) - (xy 95.015212 98.32079) - (xy 95.130306 98.40695) - (xy 95.130313 98.406954) - (xy 95.26502 98.457196) - (xy 95.265027 98.457198) - (xy 95.324555 98.463599) - (xy 95.324572 98.4636) - (xy 95.986 98.4636) - (xy 95.986 97.544297) - (xy 96.091408 97.592435) - (xy 96.199666 97.608) - (xy 96.272334 97.608) - (xy 96.380592 97.592435) - (xy 96.486 97.544297) - (xy 96.486 98.4636) - (xy 97.147428 98.4636) - (xy 97.147444 98.463599) - (xy 97.206972 98.457198) - (xy 97.206979 98.457196) - (xy 97.341686 98.406954) - (xy 97.341693 98.40695) - (xy 97.456787 98.32079) - (xy 97.45679 98.320787) - (xy 97.54295 98.205693) - (xy 97.542954 98.205686) - (xy 97.586775 98.088197) - (xy 97.628646 98.032263) - (xy 97.69411 98.007846) - (xy 97.762383 98.022698) - (xy 97.794186 98.047547) - (xy 97.84895 98.107036) - (xy 97.848954 98.10704) - (xy 98.027351 98.245893) - (xy 98.226169 98.353488) - (xy 98.226172 98.353489) - (xy 98.439982 98.42689) - (xy 98.439984 98.42689) - (xy 98.439986 98.426891) - (xy 98.662967 98.4641) - (xy 98.662968 98.4641) - (xy 98.889032 98.4641) - (xy 98.889033 98.4641) - (xy 99.112014 98.426891) - (xy 99.325831 98.353488) - (xy 99.524649 98.245893) - (xy 99.703046 98.10704) - (xy 99.856156 97.940719) - (xy 99.942193 97.809029) - (xy 99.995336 97.763675) - (xy 100.064567 97.754251) - (xy 100.127903 97.783753) - (xy 100.149807 97.809031) - (xy 100.235842 97.940716) - (xy 100.23585 97.940727) - (xy 100.38895 98.107036) - (xy 100.388954 98.10704) - (xy 100.567351 98.245893) - (xy 100.766169 98.353488) - (xy 100.766172 98.353489) - (xy 100.979982 98.42689) - (xy 100.979984 98.42689) - (xy 100.979986 98.426891) - (xy 101.202967 98.4641) - (xy 101.202968 98.4641) - (xy 101.429032 98.4641) - (xy 101.429033 98.4641) - (xy 101.652014 98.426891) - (xy 101.865831 98.353488) - (xy 102.064649 98.245893) - (xy 102.243046 98.10704) - (xy 102.396156 97.940719) - (xy 102.482193 97.809028) - (xy 102.535338 97.763675) - (xy 102.604569 97.754251) - (xy 102.667905 97.783753) - (xy 102.689804 97.809025) - (xy 102.775844 97.940719) - (xy 102.775849 97.940724) - (xy 102.77585 97.940727) - (xy 102.92895 98.107036) - (xy 102.928954 98.10704) - (xy 103.107351 98.245893) - (xy 103.306169 98.353488) - (xy 103.306172 98.353489) - (xy 103.519982 98.42689) - (xy 103.519984 98.42689) - (xy 103.519986 98.426891) - (xy 103.742967 98.4641) - (xy 103.742968 98.4641) - (xy 103.969032 98.4641) - (xy 103.969033 98.4641) - (xy 104.192014 98.426891) - (xy 104.405831 98.353488) - (xy 104.604649 98.245893) - (xy 104.783046 98.10704) - (xy 104.936156 97.940719) - (xy 105.022193 97.809029) - (xy 105.075336 97.763675) - (xy 105.144567 97.754251) - (xy 105.207903 97.783753) - (xy 105.229807 97.809031) - (xy 105.315842 97.940716) - (xy 105.31585 97.940727) - (xy 105.46895 98.107036) - (xy 105.468954 98.10704) - (xy 105.647351 98.245893) - (xy 105.846169 98.353488) - (xy 105.846172 98.353489) - (xy 106.059982 98.42689) - (xy 106.059984 98.42689) - (xy 106.059986 98.426891) - (xy 106.282967 98.4641) - (xy 106.282968 98.4641) - (xy 106.509032 98.4641) - (xy 106.509033 98.4641) - (xy 106.732014 98.426891) - (xy 106.945831 98.353488) - (xy 107.144649 98.245893) - (xy 107.323046 98.10704) - (xy 107.476156 97.940719) - (xy 107.562193 97.809028) - (xy 107.615338 97.763675) - (xy 107.684569 97.754251) - (xy 107.747905 97.783753) - (xy 107.769804 97.809025) - (xy 107.855844 97.940719) - (xy 107.855849 97.940724) - (xy 107.85585 97.940727) - (xy 108.00895 98.107036) - (xy 108.008954 98.10704) - (xy 108.187351 98.245893) - (xy 108.386169 98.353488) - (xy 108.386172 98.353489) - (xy 108.599982 98.42689) - (xy 108.599984 98.42689) - (xy 108.599986 98.426891) - (xy 108.822967 98.4641) - (xy 108.822968 98.4641) - (xy 109.049032 98.4641) - (xy 109.049033 98.4641) - (xy 109.272014 98.426891) - (xy 109.485831 98.353488) - (xy 109.684649 98.245893) - (xy 109.863046 98.10704) - (xy 110.016156 97.940719) - (xy 110.102193 97.809028) - (xy 110.155338 97.763675) - (xy 110.224569 97.754251) - (xy 110.287905 97.783753) - (xy 110.309804 97.809025) - (xy 110.395844 97.940719) - (xy 110.395849 97.940724) - (xy 110.39585 97.940727) - (xy 110.54895 98.107036) - (xy 110.548954 98.10704) - (xy 110.727351 98.245893) - (xy 110.926169 98.353488) - (xy 110.926172 98.353489) - (xy 111.139982 98.42689) - (xy 111.139984 98.42689) - (xy 111.139986 98.426891) - (xy 111.362967 98.4641) - (xy 111.362968 98.4641) - (xy 111.589032 98.4641) - (xy 111.589033 98.4641) - (xy 111.812014 98.426891) - (xy 112.025831 98.353488) - (xy 112.224649 98.245893) - (xy 112.403046 98.10704) - (xy 112.556156 97.940719) - (xy 112.679802 97.751465) - (xy 112.770611 97.544441) - (xy 112.826107 97.325293) - (xy 112.844775 97.100006) - (xy 114.171225 97.100006) - (xy 114.189892 97.325289) - (xy 114.245388 97.544439) - (xy 114.336198 97.751466) - (xy 114.459842 97.940716) - (xy 114.45985 97.940727) - (xy 114.61295 98.107036) - (xy 114.612954 98.10704) - (xy 114.791351 98.245893) - (xy 114.990169 98.353488) - (xy 114.990172 98.353489) - (xy 115.203982 98.42689) - (xy 115.203984 98.42689) - (xy 115.203986 98.426891) - (xy 115.426967 98.4641) - (xy 115.426968 98.4641) - (xy 115.653032 98.4641) - (xy 115.653033 98.4641) - (xy 115.876014 98.426891) - (xy 116.089831 98.353488) - (xy 116.288649 98.245893) - (xy 116.467046 98.10704) - (xy 116.620156 97.940719) - (xy 116.706193 97.809028) - (xy 116.759338 97.763675) - (xy 116.828569 97.754251) - (xy 116.891905 97.783753) - (xy 116.913804 97.809025) - (xy 116.999844 97.940719) - (xy 116.999849 97.940724) - (xy 116.99985 97.940727) - (xy 117.15295 98.107036) - (xy 117.152954 98.10704) - (xy 117.331351 98.245893) - (xy 117.530169 98.353488) - (xy 117.530172 98.353489) - (xy 117.743982 98.42689) - (xy 117.743984 98.42689) - (xy 117.743986 98.426891) - (xy 117.966967 98.4641) - (xy 117.966968 98.4641) - (xy 118.193032 98.4641) - (xy 118.193033 98.4641) - (xy 118.416014 98.426891) - (xy 118.629831 98.353488) - (xy 118.828649 98.245893) - (xy 119.007046 98.10704) - (xy 119.160156 97.940719) - (xy 119.246193 97.809028) - (xy 119.299338 97.763675) - (xy 119.368569 97.754251) - (xy 119.431905 97.783753) - (xy 119.453804 97.809025) - (xy 119.539844 97.940719) - (xy 119.539849 97.940724) - (xy 119.53985 97.940727) - (xy 119.69295 98.107036) - (xy 119.692954 98.10704) - (xy 119.871351 98.245893) - (xy 120.070169 98.353488) - (xy 120.070172 98.353489) - (xy 120.283982 98.42689) - (xy 120.283984 98.42689) - (xy 120.283986 98.426891) - (xy 120.506967 98.4641) - (xy 120.506968 98.4641) - (xy 120.733032 98.4641) - (xy 120.733033 98.4641) - (xy 120.956014 98.426891) - (xy 121.169831 98.353488) - (xy 121.368649 98.245893) - (xy 121.547046 98.10704) - (xy 121.700156 97.940719) - (xy 121.786193 97.809028) - (xy 121.839338 97.763675) - (xy 121.908569 97.754251) - (xy 121.971905 97.783753) - (xy 121.993804 97.809025) - (xy 122.079844 97.940719) - (xy 122.079849 97.940724) - (xy 122.07985 97.940727) - (xy 122.23295 98.107036) - (xy 122.232954 98.10704) - (xy 122.411351 98.245893) - (xy 122.610169 98.353488) - (xy 122.610172 98.353489) - (xy 122.823982 98.42689) - (xy 122.823984 98.42689) - (xy 122.823986 98.426891) - (xy 123.046967 98.4641) - (xy 123.046968 98.4641) - (xy 123.273032 98.4641) - (xy 123.273033 98.4641) - (xy 123.496014 98.426891) - (xy 123.709831 98.353488) - (xy 123.908649 98.245893) - (xy 124.087046 98.10704) - (xy 124.240156 97.940719) - (xy 124.326193 97.809028) - (xy 124.379338 97.763675) - (xy 124.448569 97.754251) - (xy 124.511905 97.783753) - (xy 124.533804 97.809025) - (xy 124.619844 97.940719) - (xy 124.619849 97.940724) - (xy 124.61985 97.940727) - (xy 124.77295 98.107036) - (xy 124.772954 98.10704) - (xy 124.951351 98.245893) - (xy 125.150169 98.353488) - (xy 125.150172 98.353489) - (xy 125.363982 98.42689) - (xy 125.363984 98.42689) - (xy 125.363986 98.426891) - (xy 125.586967 98.4641) - (xy 125.586968 98.4641) - (xy 125.813032 98.4641) - (xy 125.813033 98.4641) - (xy 126.036014 98.426891) - (xy 126.249831 98.353488) - (xy 126.448649 98.245893) - (xy 126.627046 98.10704) - (xy 126.780156 97.940719) - (xy 126.866193 97.809028) - (xy 126.919338 97.763675) - (xy 126.988569 97.754251) - (xy 127.051905 97.783753) - (xy 127.073804 97.809025) - (xy 127.159844 97.940719) - (xy 127.159849 97.940724) - (xy 127.15985 97.940727) - (xy 127.31295 98.107036) - (xy 127.312954 98.10704) - (xy 127.491351 98.245893) - (xy 127.690169 98.353488) - (xy 127.690172 98.353489) - (xy 127.903982 98.42689) - (xy 127.903984 98.42689) - (xy 127.903986 98.426891) - (xy 128.126967 98.4641) - (xy 128.126968 98.4641) - (xy 128.353032 98.4641) - (xy 128.353033 98.4641) - (xy 128.576014 98.426891) - (xy 128.789831 98.353488) - (xy 128.988649 98.245893) - (xy 129.167046 98.10704) - (xy 129.320156 97.940719) - (xy 129.406193 97.809029) - (xy 129.459336 97.763675) - (xy 129.528567 97.754251) - (xy 129.591903 97.783753) - (xy 129.613807 97.809031) - (xy 129.699842 97.940716) - (xy 129.69985 97.940727) - (xy 129.85295 98.107036) - (xy 129.852954 98.10704) - (xy 130.031351 98.245893) - (xy 130.230169 98.353488) - (xy 130.230172 98.353489) - (xy 130.443982 98.42689) - (xy 130.443984 98.42689) - (xy 130.443986 98.426891) - (xy 130.666967 98.4641) - (xy 130.666968 98.4641) - (xy 130.893032 98.4641) - (xy 130.893033 98.4641) - (xy 131.116014 98.426891) - (xy 131.329831 98.353488) - (xy 131.528649 98.245893) - (xy 131.707046 98.10704) - (xy 131.860156 97.940719) - (xy 131.946193 97.809028) - (xy 131.999338 97.763675) - (xy 132.068569 97.754251) - (xy 132.131905 97.783753) - (xy 132.153804 97.809025) - (xy 132.239844 97.940719) - (xy 132.239849 97.940724) - (xy 132.23985 97.940727) - (xy 132.39295 98.107036) - (xy 132.392954 98.10704) - (xy 132.571351 98.245893) - (xy 132.770169 98.353488) - (xy 132.770172 98.353489) - (xy 132.983982 98.42689) - (xy 132.983984 98.42689) - (xy 132.983986 98.426891) - (xy 133.206967 98.4641) - (xy 133.206968 98.4641) - (xy 133.433032 98.4641) - (xy 133.433033 98.4641) - (xy 133.656014 98.426891) - (xy 133.869831 98.353488) - (xy 134.068649 98.245893) - (xy 134.247046 98.10704) - (xy 134.400156 97.940719) - (xy 134.523802 97.751465) - (xy 134.614611 97.544441) - (xy 134.670107 97.325293) - (xy 134.685031 97.145185) - (xy 134.688775 97.100006) - (xy 134.688775 97.099993) - (xy 134.670107 96.87471) - (xy 134.670107 96.874707) - (xy 134.614611 96.655559) - (xy 134.523802 96.448535) - (xy 134.400156 96.259281) - (xy 134.400153 96.259278) - (xy 134.400149 96.259272) - (xy 134.247049 96.092963) - (xy 134.247048 96.092962) - (xy 134.247046 96.09296) - (xy 134.068649 95.954107) - (xy 133.942978 95.886097) - (xy 133.869832 95.846512) - (xy 133.869827 95.84651) - (xy 133.656017 95.773109) - (xy 133.474388 95.742801) - (xy 133.433033 95.7359) - (xy 133.206967 95.7359) - (xy 133.165612 95.742801) - (xy 132.983982 95.773109) - (xy 132.770172 95.84651) - (xy 132.770167 95.846512) - (xy 132.571352 95.954106) - (xy 132.392955 96.092959) - (xy 132.39295 96.092963) - (xy 132.23985 96.259272) - (xy 132.239846 96.259278) - (xy 132.153807 96.390969) - (xy 132.10066 96.436325) - (xy 132.031429 96.445748) - (xy 131.968093 96.416245) - (xy 131.946192 96.390969) - (xy 131.860156 96.259281) - (xy 131.860151 96.259276) - (xy 131.860149 96.259272) - (xy 131.707049 96.092963) - (xy 131.707048 96.092962) - (xy 131.707046 96.09296) - (xy 131.528649 95.954107) - (xy 131.402978 95.886097) - (xy 131.329832 95.846512) - (xy 131.329827 95.84651) - (xy 131.116017 95.773109) - (xy 130.934388 95.742801) - (xy 130.893033 95.7359) - (xy 130.666967 95.7359) - (xy 130.625612 95.742801) - (xy 130.443982 95.773109) - (xy 130.230172 95.84651) - (xy 130.230167 95.846512) - (xy 130.031352 95.954106) - (xy 129.852955 96.092959) - (xy 129.85295 96.092963) - (xy 129.69985 96.259272) - (xy 129.699842 96.259283) - (xy 129.613808 96.390968) - (xy 129.560662 96.436325) - (xy 129.49143 96.445748) - (xy 129.428095 96.416246) - (xy 129.406192 96.390968) - (xy 129.320157 96.259283) - (xy 129.320149 96.259272) - (xy 129.167049 96.092963) - (xy 129.167048 96.092962) - (xy 129.167046 96.09296) - (xy 128.988649 95.954107) - (xy 128.862978 95.886097) - (xy 128.789832 95.846512) - (xy 128.789827 95.84651) - (xy 128.576017 95.773109) - (xy 128.394388 95.742801) - (xy 128.353033 95.7359) - (xy 128.126967 95.7359) - (xy 128.085612 95.742801) - (xy 127.903982 95.773109) - (xy 127.690172 95.84651) - (xy 127.690167 95.846512) - (xy 127.491352 95.954106) - (xy 127.312955 96.092959) - (xy 127.31295 96.092963) - (xy 127.15985 96.259272) - (xy 127.159842 96.259283) - (xy 127.073808 96.390968) - (xy 127.020662 96.436325) - (xy 126.95143 96.445748) - (xy 126.888095 96.416246) - (xy 126.866192 96.390968) - (xy 126.780157 96.259283) - (xy 126.780149 96.259272) - (xy 126.627049 96.092963) - (xy 126.627048 96.092962) - (xy 126.627046 96.09296) - (xy 126.448649 95.954107) - (xy 126.322978 95.886097) - (xy 126.249832 95.846512) - (xy 126.249827 95.84651) - (xy 126.036017 95.773109) - (xy 125.854388 95.742801) - (xy 125.813033 95.7359) - (xy 125.586967 95.7359) - (xy 125.545612 95.742801) - (xy 125.363982 95.773109) - (xy 125.150172 95.84651) - (xy 125.150167 95.846512) - (xy 124.951352 95.954106) - (xy 124.772955 96.092959) - (xy 124.77295 96.092963) - (xy 124.61985 96.259272) - (xy 124.619846 96.259278) - (xy 124.533807 96.390969) - (xy 124.48066 96.436325) - (xy 124.411429 96.445748) - (xy 124.348093 96.416245) - (xy 124.326192 96.390969) - (xy 124.240156 96.259281) - (xy 124.240151 96.259276) - (xy 124.240149 96.259272) - (xy 124.087049 96.092963) - (xy 124.087048 96.092962) - (xy 124.087046 96.09296) - (xy 123.908649 95.954107) - (xy 123.782978 95.886097) - (xy 123.709832 95.846512) - (xy 123.709827 95.84651) - (xy 123.496017 95.773109) - (xy 123.314388 95.742801) - (xy 123.273033 95.7359) - (xy 123.046967 95.7359) - (xy 123.005612 95.742801) - (xy 122.823982 95.773109) - (xy 122.610172 95.84651) - (xy 122.610167 95.846512) - (xy 122.411352 95.954106) - (xy 122.232955 96.092959) - (xy 122.23295 96.092963) - (xy 122.07985 96.259272) - (xy 122.079842 96.259283) - (xy 121.993808 96.390968) - (xy 121.940662 96.436325) - (xy 121.87143 96.445748) - (xy 121.808095 96.416246) - (xy 121.786192 96.390968) - (xy 121.700157 96.259283) - (xy 121.700149 96.259272) - (xy 121.547049 96.092963) - (xy 121.547048 96.092962) - (xy 121.547046 96.09296) - (xy 121.368649 95.954107) - (xy 121.242978 95.886097) - (xy 121.169832 95.846512) - (xy 121.169827 95.84651) - (xy 120.956017 95.773109) - (xy 120.774388 95.742801) - (xy 120.733033 95.7359) - (xy 120.506967 95.7359) - (xy 120.465612 95.742801) - (xy 120.283982 95.773109) - (xy 120.070172 95.84651) - (xy 120.070167 95.846512) - (xy 119.871352 95.954106) - (xy 119.692955 96.092959) - (xy 119.69295 96.092963) - (xy 119.53985 96.259272) - (xy 119.539842 96.259283) - (xy 119.453808 96.390968) - (xy 119.400662 96.436325) - (xy 119.33143 96.445748) - (xy 119.268095 96.416246) - (xy 119.246192 96.390968) - (xy 119.160157 96.259283) - (xy 119.160149 96.259272) - (xy 119.007049 96.092963) - (xy 119.007048 96.092962) - (xy 119.007046 96.09296) - (xy 118.828649 95.954107) - (xy 118.702978 95.886097) - (xy 118.629832 95.846512) - (xy 118.629827 95.84651) - (xy 118.416017 95.773109) - (xy 118.234388 95.742801) - (xy 118.193033 95.7359) - (xy 117.966967 95.7359) - (xy 117.925612 95.742801) - (xy 117.743982 95.773109) - (xy 117.530172 95.84651) - (xy 117.530167 95.846512) - (xy 117.331352 95.954106) - (xy 117.152955 96.092959) - (xy 117.15295 96.092963) - (xy 116.99985 96.259272) - (xy 116.999842 96.259283) - (xy 116.913808 96.390968) - (xy 116.860662 96.436325) - (xy 116.79143 96.445748) - (xy 116.728095 96.416246) - (xy 116.706192 96.390968) - (xy 116.620157 96.259283) - (xy 116.620149 96.259272) - (xy 116.467049 96.092963) - (xy 116.467048 96.092962) - (xy 116.467046 96.09296) - (xy 116.288649 95.954107) - (xy 116.162978 95.886097) - (xy 116.089832 95.846512) - (xy 116.089827 95.84651) - (xy 115.876017 95.773109) - (xy 115.694388 95.742801) - (xy 115.653033 95.7359) - (xy 115.426967 95.7359) - (xy 115.385612 95.742801) - (xy 115.203982 95.773109) - (xy 114.990172 95.84651) - (xy 114.990167 95.846512) - (xy 114.791352 95.954106) - (xy 114.612955 96.092959) - (xy 114.61295 96.092963) - (xy 114.45985 96.259272) - (xy 114.459842 96.259283) - (xy 114.336198 96.448533) - (xy 114.245388 96.65556) - (xy 114.189892 96.87471) - (xy 114.171225 97.099993) - (xy 114.171225 97.100006) - (xy 112.844775 97.100006) - (xy 112.844775 97.1) - (xy 112.826107 96.874707) - (xy 112.770611 96.655559) - (xy 112.679802 96.448535) - (xy 112.556156 96.259281) - (xy 112.556153 96.259278) - (xy 112.556149 96.259272) - (xy 112.403049 96.092963) - (xy 112.403048 96.092962) - (xy 112.403046 96.09296) - (xy 112.224649 95.954107) - (xy 112.098978 95.886097) - (xy 112.025832 95.846512) - (xy 112.025827 95.84651) - (xy 111.812017 95.773109) - (xy 111.630388 95.742801) - (xy 111.589033 95.7359) - (xy 111.362967 95.7359) - (xy 111.321612 95.742801) - (xy 111.139982 95.773109) - (xy 110.926172 95.84651) - (xy 110.926167 95.846512) - (xy 110.727352 95.954106) - (xy 110.548955 96.092959) - (xy 110.54895 96.092963) - (xy 110.39585 96.259272) - (xy 110.395842 96.259283) - (xy 110.309808 96.390968) - (xy 110.256662 96.436325) - (xy 110.18743 96.445748) - (xy 110.124095 96.416246) - (xy 110.102192 96.390968) - (xy 110.016157 96.259283) - (xy 110.016149 96.259272) - (xy 109.863049 96.092963) - (xy 109.863048 96.092962) - (xy 109.863046 96.09296) - (xy 109.684649 95.954107) - (xy 109.558978 95.886097) - (xy 109.485832 95.846512) - (xy 109.485827 95.84651) - (xy 109.272017 95.773109) - (xy 109.090388 95.742801) - (xy 109.049033 95.7359) - (xy 108.822967 95.7359) - (xy 108.781612 95.742801) - (xy 108.599982 95.773109) - (xy 108.386172 95.84651) - (xy 108.386167 95.846512) - (xy 108.187352 95.954106) - (xy 108.008955 96.092959) - (xy 108.00895 96.092963) - (xy 107.85585 96.259272) - (xy 107.855842 96.259283) - (xy 107.769808 96.390968) - (xy 107.716662 96.436325) - (xy 107.64743 96.445748) - (xy 107.584095 96.416246) - (xy 107.562192 96.390968) - (xy 107.476157 96.259283) - (xy 107.476149 96.259272) - (xy 107.323049 96.092963) - (xy 107.323048 96.092962) - (xy 107.323046 96.09296) - (xy 107.144649 95.954107) - (xy 107.018978 95.886097) - (xy 106.945832 95.846512) - (xy 106.945827 95.84651) - (xy 106.732017 95.773109) - (xy 106.550388 95.742801) - (xy 106.509033 95.7359) - (xy 106.282967 95.7359) - (xy 106.241612 95.742801) - (xy 106.059982 95.773109) - (xy 105.846172 95.84651) - (xy 105.846167 95.846512) - (xy 105.647352 95.954106) - (xy 105.468955 96.092959) - (xy 105.46895 96.092963) - (xy 105.31585 96.259272) - (xy 105.315846 96.259278) - (xy 105.229807 96.390969) - (xy 105.17666 96.436325) - (xy 105.107429 96.445748) - (xy 105.044093 96.416245) - (xy 105.022192 96.390969) - (xy 104.936156 96.259281) - (xy 104.936151 96.259276) - (xy 104.936149 96.259272) - (xy 104.783049 96.092963) - (xy 104.783048 96.092962) - (xy 104.783046 96.09296) - (xy 104.604649 95.954107) - (xy 104.478978 95.886097) - (xy 104.405832 95.846512) - (xy 104.405827 95.84651) - (xy 104.192017 95.773109) - (xy 104.010388 95.742801) - (xy 103.969033 95.7359) - (xy 103.742967 95.7359) - (xy 103.701612 95.742801) - (xy 103.519982 95.773109) - (xy 103.306172 95.84651) - (xy 103.306167 95.846512) - (xy 103.107352 95.954106) - (xy 102.928955 96.092959) - (xy 102.92895 96.092963) - (xy 102.77585 96.259272) - (xy 102.775842 96.259283) - (xy 102.689808 96.390968) - (xy 102.636662 96.436325) - (xy 102.56743 96.445748) - (xy 102.504095 96.416246) - (xy 102.482192 96.390968) - (xy 102.396157 96.259283) - (xy 102.396149 96.259272) - (xy 102.243049 96.092963) - (xy 102.243048 96.092962) - (xy 102.243046 96.09296) - (xy 102.064649 95.954107) - (xy 101.938978 95.886097) - (xy 101.865832 95.846512) - (xy 101.865827 95.84651) - (xy 101.652017 95.773109) - (xy 101.470388 95.742801) - (xy 101.429033 95.7359) - (xy 101.202967 95.7359) - (xy 101.161612 95.742801) - (xy 100.979982 95.773109) - (xy 100.766172 95.84651) - (xy 100.766167 95.846512) - (xy 100.567352 95.954106) - (xy 100.388955 96.092959) - (xy 100.38895 96.092963) - (xy 100.23585 96.259272) - (xy 100.235842 96.259283) - (xy 100.149808 96.390968) - (xy 100.096662 96.436325) - (xy 100.02743 96.445748) - (xy 99.964095 96.416246) - (xy 99.942192 96.390968) - (xy 99.856157 96.259283) - (xy 99.856149 96.259272) - (xy 99.703049 96.092963) - (xy 99.703048 96.092962) - (xy 99.703046 96.09296) - (xy 99.524649 95.954107) - (xy 99.398978 95.886097) - (xy 99.325832 95.846512) - (xy 99.325827 95.84651) - (xy 99.112017 95.773109) - (xy 98.930388 95.742801) - (xy 98.889033 95.7359) - (xy 98.662967 95.7359) - (xy 98.621612 95.742801) - (xy 98.439982 95.773109) - (xy 98.226172 95.84651) - (xy 98.226167 95.846512) - (xy 98.027352 95.954106) - (xy 97.848955 96.092958) - (xy 97.794186 96.152453) - (xy 97.734298 96.188443) - (xy 97.66446 96.186342) - (xy 97.606845 96.146817) - (xy 97.586775 96.111802) - (xy 97.542954 95.994313) - (xy 97.54295 95.994306) - (xy 97.45679 95.879212) - (xy 97.456787 95.879209) - (xy 97.341693 95.793049) - (xy 97.341686 95.793045) - (xy 97.206979 95.742803) - (xy 97.206972 95.742801) - (xy 97.147444 95.7364) - (xy 96.486 95.7364) - (xy 96.486 96.655702) - (xy 96.380592 96.607565) - (xy 96.272334 96.592) - (xy 96.199666 96.592) - (xy 96.091408 96.607565) - (xy 95.986 96.655702) - (xy 95.986 95.7364) - (xy 95.324555 95.7364) - (xy 95.265027 95.742801) - (xy 95.26502 95.742803) - (xy 95.130313 95.793045) - (xy 95.130306 95.793049) - (xy 95.015212 95.879209) - (xy 95.015209 95.879212) - (xy 94.929049 95.994306) - (xy 94.929046 95.994312) - (xy 94.885224 96.111803) - (xy 94.843352 96.167736) - (xy 94.777887 96.192153) - (xy 94.709615 96.177301) - (xy 94.677813 96.152452) - (xy 94.623049 96.092963) - (xy 94.623048 96.092962) - (xy 94.623046 96.09296) - (xy 94.444649 95.954107) - (xy 94.318978 95.886097) - (xy 94.245832 95.846512) - (xy 94.245827 95.84651) - (xy 94.032017 95.773109) - (xy 93.850388 95.742801) - (xy 93.809033 95.7359) - (xy 93.582967 95.7359) - (xy 93.541612 95.742801) - (xy 93.359982 95.773109) - (xy 93.146172 95.84651) - (xy 93.146167 95.846512) - (xy 92.947352 95.954106) - (xy 92.768955 96.092959) - (xy 92.76895 96.092963) - (xy 92.61585 96.259272) - (xy 92.615842 96.259283) - (xy 92.529808 96.390968) - (xy 92.476662 96.436325) - (xy 92.40743 96.445748) - (xy 92.344095 96.416246) - (xy 92.322192 96.390968) - (xy 92.236157 96.259283) - (xy 92.236149 96.259272) - (xy 92.083049 96.092963) - (xy 92.083048 96.092962) - (xy 92.083046 96.09296) - (xy 91.904649 95.954107) - (xy 91.778978 95.886097) - (xy 91.705832 95.846512) - (xy 91.705827 95.84651) - (xy 91.492017 95.773109) - (xy 91.310388 95.742801) - (xy 91.269033 95.7359) - (xy 91.042967 95.7359) - (xy 91.001612 95.742801) - (xy 90.819982 95.773109) - (xy 90.606172 95.84651) - (xy 90.606167 95.846512) - (xy 90.407352 95.954106) - (xy 90.228955 96.092959) - (xy 90.22895 96.092963) - (xy 90.07585 96.259272) - (xy 90.075842 96.259283) - (xy 89.989808 96.390968) - (xy 89.936662 96.436325) - (xy 89.86743 96.445748) - (xy 89.804095 96.416246) - (xy 89.782192 96.390968) - (xy 89.696157 96.259283) - (xy 89.696149 96.259272) - (xy 89.543049 96.092963) - (xy 89.543048 96.092962) - (xy 89.543046 96.09296) - (xy 89.364649 95.954107) - (xy 89.238978 95.886097) - (xy 89.165832 95.846512) - (xy 89.165827 95.84651) - (xy 88.952017 95.773109) - (xy 88.770388 95.742801) - (xy 88.729033 95.7359) - (xy 88.502967 95.7359) - (xy 88.461612 95.742801) - (xy 88.279982 95.773109) - (xy 88.066172 95.84651) - (xy 88.066167 95.846512) - (xy 87.867352 95.954106) - (xy 87.688955 96.092959) - (xy 87.68895 96.092963) - (xy 87.53585 96.259272) - (xy 87.535842 96.259283) - (xy 87.412198 96.448533) - (xy 87.321388 96.65556) - (xy 87.265892 96.87471) - (xy 87.247225 97.099993) - (xy 87.247225 97.100006) - (xy 86.8255 97.100006) - (xy 86.8255 96.446848) - (xy 86.845185 96.379809) - (xy 86.861819 96.359167) - (xy 87.859167 95.361819) - (xy 87.92049 95.328334) - (xy 87.946848 95.3255) - (xy 135.689548 95.3255) - (xy 135.756587 95.345185) - (xy 135.777229 95.361819) - (xy 137.048612 96.633202) - (xy 137.082097 96.694525) - (xy 137.081137 96.751322) - (xy 137.049892 96.874708) - (xy 137.031225 97.099993) - (xy 137.031225 97.100006) - (xy 137.049892 97.325289) - (xy 137.105388 97.544439) - (xy 137.196198 97.751466) - (xy 137.319842 97.940716) - (xy 137.31985 97.940727) - (xy 137.47295 98.107036) - (xy 137.472954 98.10704) - (xy 137.651351 98.245893) - (xy 137.850169 98.353488) - (xy 137.850172 98.353489) - (xy 138.063982 98.42689) - (xy 138.063984 98.42689) - (xy 138.063986 98.426891) - (xy 138.286967 98.4641) - (xy 138.286968 98.4641) - (xy 138.513032 98.4641) - (xy 138.513033 98.4641) - (xy 138.736014 98.426891) - (xy 138.949831 98.353488) - (xy 139.148649 98.245893) - (xy 139.327046 98.10704) - (xy 139.480156 97.940719) - (xy 139.566193 97.809028) - (xy 139.619338 97.763675) - (xy 139.688569 97.754251) - (xy 139.751905 97.783753) - (xy 139.773804 97.809025) - (xy 139.859844 97.940719) - (xy 139.859849 97.940724) - (xy 139.85985 97.940727) - (xy 140.01295 98.107036) - (xy 140.012954 98.10704) - (xy 140.191351 98.245893) - (xy 140.390169 98.353488) - (xy 140.390172 98.353489) - (xy 140.603982 98.42689) - (xy 140.603984 98.42689) - (xy 140.603986 98.426891) - (xy 140.826967 98.4641) - (xy 140.826968 98.4641) - (xy 141.053032 98.4641) - (xy 141.053033 98.4641) - (xy 141.276014 98.426891) - (xy 141.489831 98.353488) - (xy 141.688649 98.245893) - (xy 141.867046 98.10704) - (xy 142.020156 97.940719) - (xy 142.106193 97.809028) - (xy 142.159338 97.763675) - (xy 142.228569 97.754251) - (xy 142.291905 97.783753) - (xy 142.313804 97.809025) - (xy 142.399844 97.940719) - (xy 142.399849 97.940724) - (xy 142.39985 97.940727) - (xy 142.55295 98.107036) - (xy 142.552954 98.10704) - (xy 142.731351 98.245893) - (xy 142.930169 98.353488) - (xy 142.930172 98.353489) - (xy 143.143982 98.42689) - (xy 143.143984 98.42689) - (xy 143.143986 98.426891) - (xy 143.366967 98.4641) - (xy 143.366968 98.4641) - (xy 143.593032 98.4641) - (xy 143.593033 98.4641) - (xy 143.816014 98.426891) - (xy 144.029831 98.353488) - (xy 144.228649 98.245893) - (xy 144.407046 98.10704) - (xy 144.560156 97.940719) - (xy 144.646193 97.809028) - (xy 144.699338 97.763675) - (xy 144.768569 97.754251) - (xy 144.831905 97.783753) - (xy 144.853804 97.809025) - (xy 144.939844 97.940719) - (xy 144.939849 97.940724) - (xy 144.93985 97.940727) - (xy 145.09295 98.107036) - (xy 145.092954 98.10704) - (xy 145.271351 98.245893) - (xy 145.470169 98.353488) - (xy 145.470172 98.353489) - (xy 145.683982 98.42689) - (xy 145.683984 98.42689) - (xy 145.683986 98.426891) - (xy 145.906967 98.4641) - (xy 145.906968 98.4641) - (xy 146.133032 98.4641) - (xy 146.133033 98.4641) - (xy 146.356014 98.426891) - (xy 146.569831 98.353488) - (xy 146.768649 98.245893) - (xy 146.947046 98.10704) - (xy 147.100156 97.940719) - (xy 147.186193 97.809028) - (xy 147.239338 97.763675) - (xy 147.308569 97.754251) - (xy 147.371905 97.783753) - (xy 147.393804 97.809025) - (xy 147.479844 97.940719) - (xy 147.479849 97.940724) - (xy 147.47985 97.940727) - (xy 147.63295 98.107036) - (xy 147.632954 98.10704) - (xy 147.811351 98.245893) - (xy 147.869517 98.27737) - (xy 147.919107 98.326588) - (xy 147.9345 98.386425) - (xy 147.9345 103.279546) - (xy 147.914815 103.346585) - (xy 147.898181 103.367227) - (xy 126.420441 124.844966) - (xy 126.359118 124.878451) - (xy 126.292497 124.874566) - (xy 126.246017 124.858609) - (xy 126.064388 124.828301) - (xy 126.023033 124.8214) - (xy 125.796967 124.8214) - (xy 125.755612 124.828301) - (xy 125.573982 124.858609) - (xy 125.360172 124.93201) - (xy 125.360167 124.932012) - (xy 125.161352 125.039606) - (xy 124.982955 125.178459) - (xy 124.82985 125.344772) - (xy 124.829842 125.344783) - (xy 124.706198 125.534033) - (xy 124.615388 125.74106) - (xy 124.559892 125.96021) - (xy 124.541225 126.185493) - (xy 124.541225 126.185506) - (xy 124.559892 126.410789) - (xy 124.615388 126.629939) - (xy 124.706198 126.836966) - (xy 124.829842 127.026216) - (xy 124.82985 127.026227) - (xy 124.949757 127.156479) - (xy 124.982954 127.19254) - (xy 125.161351 127.331393) - (xy 125.189165 127.346445) - (xy 125.238755 127.395665) - (xy 125.253863 127.463882) - (xy 125.229692 127.529437) - (xy 125.189165 127.564555) - (xy 125.161352 127.579606) - (xy 124.982955 127.718459) - (xy 124.98295 127.718463) - (xy 124.82985 127.884772) - (xy 124.829842 127.884783) - (xy 124.725937 128.043822) - (xy 124.672791 128.089178) - (xy 124.622129 128.1) - (xy 124.107243 128.1) - (xy 124.091622 128.098275) - (xy 124.091596 128.098561) - (xy 124.083833 128.097826) - (xy 124.015653 128.099969) - (xy 124.013706 128.1) - (xy 123.985149 128.1) - (xy 123.978266 128.100869) - (xy 123.972449 128.101326) - (xy 123.925873 128.10279) - (xy 123.906629 128.108381) - (xy 123.887579 128.112325) - (xy 123.867711 128.114834) - (xy 123.824384 128.131988) - (xy 123.818858 128.133879) - (xy 123.774114 128.146879) - (xy 123.77411 128.146881) - (xy 123.756866 128.157079) - (xy 123.739405 128.165633) - (xy 123.720774 128.17301) - (xy 123.720762 128.173017) - (xy 123.68307 128.200402) - (xy 123.678187 128.203609) - (xy 123.63808 128.227329) - (xy 123.623914 128.241495) - (xy 123.609124 128.254127) - (xy 123.592914 128.265904) - (xy 123.592911 128.265907) - (xy 123.56321 128.301809) - (xy 123.559277 128.306131) - (xy 122.016208 129.849199) - (xy 122.003951 129.85902) - (xy 122.004134 129.859241) - (xy 121.998122 129.864214) - (xy 121.951432 129.913932) - (xy 121.950079 129.915329) - (xy 121.929889 129.935519) - (xy 121.929877 129.935532) - (xy 121.925621 129.941017) - (xy 121.921837 129.945447) - (xy 121.889937 129.979418) - (xy 121.889936 129.97942) - (xy 121.880284 129.996976) - (xy 121.86961 130.013226) - (xy 121.857329 130.029061) - (xy 121.857324 130.029068) - (xy 121.838815 130.071838) - (xy 121.836245 130.077084) - (xy 121.813803 130.117906) - (xy 121.808822 130.137307) - (xy 121.802521 130.15571) - (xy 121.794562 130.174102) - (xy 121.794561 130.174105) - (xy 121.787271 130.220127) - (xy 121.786087 130.225846) - (xy 121.774501 130.270972) - (xy 121.7745 130.270982) - (xy 121.7745 130.291016) - (xy 121.772973 130.310415) - (xy 121.76984 130.330194) - (xy 121.76984 130.330195) - (xy 121.774225 130.376583) - (xy 121.7745 130.382421) - (xy 121.7745 132.941016) - (xy 121.772973 132.960415) - (xy 121.76984 132.980194) - (xy 121.76984 132.980195) - (xy 121.774225 133.026583) - (xy 121.7745 133.032421) - (xy 121.7745 134.017255) - (xy 121.772775 134.032872) - (xy 121.773061 134.032899) - (xy 121.772326 134.040666) - (xy 121.774469 134.108846) - (xy 121.7745 134.110793) - (xy 121.7745 134.139343) - (xy 121.774501 134.13936) - (xy 121.775368 134.146231) - (xy 121.775826 134.15205) - (xy 121.77729 134.198624) - (xy 121.777291 134.198627) - (xy 121.78288 134.217867) - (xy 121.786824 134.236911) - (xy 121.789336 134.256792) - (xy 121.799556 134.282605) - (xy 121.80649 134.300119) - (xy 121.808382 134.305647) - (xy 121.815631 134.330598) - (xy 121.821382 134.35039) - (xy 121.825875 134.357988) - (xy 121.83158 134.367634) - (xy 121.840136 134.3851) - (xy 121.847514 134.403732) - (xy 121.867324 134.430999) - (xy 121.874898 134.441423) - (xy 121.878106 134.446307) - (xy 121.901827 134.486416) - (xy 121.901833 134.486424) - (xy 121.91599 134.50058) - (xy 121.928627 134.515375) - (xy 121.940406 134.531587) - (xy 121.96089 134.548533) - (xy 121.976309 134.561288) - (xy 121.98062 134.56521) - (xy 123.456125 136.040716) - (xy 123.899197 136.483788) - (xy 123.909022 136.496051) - (xy 123.909243 136.495869) - (xy 123.914211 136.501874) - (xy 123.963932 136.548566) - (xy 123.965332 136.549923) - (xy 123.985523 136.570115) - (xy 123.985527 136.570118) - (xy 123.985529 136.57012) - (xy 123.991011 136.574373) - (xy 123.995443 136.578157) - (xy 124.029418 136.610062) - (xy 124.046976 136.619714) - (xy 124.063235 136.630395) - (xy 124.079064 136.642673) - (xy 124.121838 136.661182) - (xy 124.127056 136.663738) - (xy 124.167908 136.686197) - (xy 124.187316 136.69118) - (xy 124.205717 136.69748) - (xy 124.224104 136.705437) - (xy 124.267488 136.712308) - (xy 124.270119 136.712725) - (xy 124.275839 136.713909) - (xy 124.320981 136.7255) - (xy 124.341016 136.7255) - (xy 124.360414 136.727026) - (xy 124.380194 136.730159) - (xy 124.380195 136.73016) - (xy 124.380195 136.730159) - (xy 124.380196 136.73016) - (xy 124.426583 136.725775) - (xy 124.432422 136.7255) - (xy 128.267257 136.7255) - (xy 128.282877 136.727224) - (xy 128.282904 136.726939) - (xy 128.290666 136.727673) - (xy 128.290666 136.727672) - (xy 128.290667 136.727673) - (xy 128.293999 136.727568) - (xy 128.358847 136.725531) - (xy 128.360794 136.7255) - (xy 128.389347 136.7255) - (xy 128.38935 136.7255) - (xy 128.396228 136.72463) - (xy 128.402041 136.724172) - (xy 128.448627 136.722709) - (xy 128.467869 136.717117) - (xy 128.486912 136.713174) - (xy 128.506792 136.710664) - (xy 128.550122 136.693507) - (xy 128.555646 136.691617) - (xy 128.559396 136.690527) - (xy 128.60039 136.678618) - (xy 128.617629 136.668422) - (xy 128.635103 136.659862) - (xy 128.653727 136.652488) - (xy 128.653727 136.652487) - (xy 128.653732 136.652486) - (xy 128.691449 136.625082) - (xy 128.696305 136.621892) - (xy 128.73642 136.59817) - (xy 128.750589 136.583999) - (xy 128.765379 136.571368) - (xy 128.781587 136.559594) - (xy 128.811299 136.523676) - (xy 128.815212 136.519376) - (xy 130.383787 134.950801) - (xy 130.396042 134.940986) - (xy 130.395859 134.940764) - (xy 130.401868 134.935791) - (xy 130.401877 134.935786) - (xy 130.448607 134.886022) - (xy 130.449846 134.884743) - (xy 130.47012 134.864471) - (xy 130.474379 134.858978) - (xy 130.478152 134.854561) - (xy 130.510062 134.820582) - (xy 130.519713 134.803024) - (xy 130.530396 134.786761) - (xy 130.542673 134.770936) - (xy 130.561185 134.728153) - (xy 130.563738 134.722941) - (xy 130.586197 134.682092) - (xy 130.59118 134.66268) - (xy 130.597481 134.64428) - (xy 130.605437 134.625896) - (xy 130.612729 134.579852) - (xy 130.613906 134.574171) - (xy 130.6255 134.529019) - (xy 130.6255 134.508982) - (xy 130.627027 134.489582) - (xy 130.627408 134.487178) - (xy 130.63016 134.469804) - (xy 130.625775 134.423415) - (xy 130.6255 134.417577) - (xy 130.6255 123.733243) - (xy 130.645185 123.666204) - (xy 130.661814 123.645567) - (xy 139.397669 114.909711) - (xy 139.45899 114.876228) - (xy 139.528682 114.881212) - (xy 139.584615 114.923084) - (xy 139.608668 114.98443) - (xy 139.614326 115.038256) - (xy 139.614327 115.038259) - (xy 139.672818 115.218277) - (xy 139.672821 115.218284) - (xy 139.767467 115.382216) - (xy 139.805785 115.424772) - (xy 139.84265 115.465715) - (xy 139.87288 115.528706) - (xy 139.8745 115.548687) - (xy 139.8745 116.467255) - (xy 139.872775 116.482872) - (xy 139.873061 116.482899) - (xy 139.872326 116.490666) - (xy 139.874469 116.558846) - (xy 139.8745 116.560793) - (xy 139.8745 116.589343) - (xy 139.874501 116.58936) - (xy 139.875368 116.596231) - (xy 139.875826 116.60205) - (xy 139.87729 116.648624) - (xy 139.877291 116.648627) - (xy 139.88288 116.667867) - (xy 139.886824 116.686911) - (xy 139.888195 116.697761) - (xy 139.889336 116.706791) - (xy 139.90649 116.750119) - (xy 139.908382 116.755647) - (xy 139.921381 116.800388) - (xy 139.93158 116.817634) - (xy 139.940138 116.835103) - (xy 139.947514 116.853732) - (xy 139.974898 116.891423) - (xy 139.978106 116.896307) - (xy 140.001827 116.936416) - (xy 140.001833 116.936424) - (xy 140.01599 116.95058) - (xy 140.028627 116.965375) - (xy 140.040406 116.981587) - (xy 140.059483 116.997369) - (xy 140.076309 117.011288) - (xy 140.08062 117.01521) - (xy 155.943739 132.87833) - (xy 161.189197 138.123788) - (xy 161.199022 138.136051) - (xy 161.199243 138.135869) - (xy 161.204211 138.141874) - (xy 161.253932 138.188566) - (xy 161.255332 138.189923) - (xy 161.275523 138.210115) - (xy 161.275527 138.210118) - (xy 161.275529 138.21012) - (xy 161.281011 138.214373) - (xy 161.285443 138.218157) - (xy 161.319418 138.250062) - (xy 161.336976 138.259714) - (xy 161.353235 138.270395) - (xy 161.369064 138.282673) - (xy 161.411838 138.301182) - (xy 161.417056 138.303738) - (xy 161.457908 138.326197) - (xy 161.477316 138.33118) - (xy 161.495717 138.33748) - (xy 161.514104 138.345437) - (xy 161.557488 138.352308) - (xy 161.560119 138.352725) - (xy 161.565839 138.353909) - (xy 161.610981 138.3655) - (xy 161.631016 138.3655) - (xy 161.650414 138.367026) - (xy 161.670194 138.370159) - (xy 161.670195 138.37016) - (xy 161.670195 138.370159) - (xy 161.670196 138.37016) - (xy 161.716583 138.365775) - (xy 161.722422 138.3655) - (xy 162.512129 138.3655) - (xy 162.579168 138.385185) - (xy 162.615937 138.421678) - (xy 162.66711 138.500004) - (xy 162.719844 138.580719) - (xy 162.857245 138.729976) - (xy 162.888167 138.792629) - (xy 162.880307 138.862055) - (xy 162.83616 138.916211) - (xy 162.809349 138.93014) - (xy 162.694311 138.973046) - (xy 162.694306 138.973049) - (xy 162.579212 139.059209) - (xy 162.579209 139.059212) - (xy 162.493049 139.174306) - (xy 162.493045 139.174313) - (xy 162.442803 139.30902) - (xy 162.442801 139.309027) - (xy 162.4364 139.368555) - (xy 162.4364 140.03) - (xy 163.356804 140.03) - (xy 163.333155 140.066799) - (xy 163.292 140.206961) - (xy 163.292 140.353039) - (xy 163.333155 140.493201) - (xy 163.356804 140.53) - (xy 162.4364 140.53) - (xy 162.4364 141.191444) - (xy 162.442801 141.250972) - (xy 162.442803 141.250979) - (xy 162.493045 141.385686) - (xy 162.493049 141.385693) - (xy 162.579209 141.500787) - (xy 162.579212 141.50079) - (xy 162.694306 141.58695) - (xy 162.694313 141.586954) - (xy 162.82902 141.637196) - (xy 162.829027 141.637198) - (xy 162.888555 141.643599) - (xy 162.888572 141.6436) - (xy 163.55 141.6436) - (xy 163.55 140.724297) - (xy 163.655408 140.772435) - (xy 163.763666 140.788) - (xy 163.836334 140.788) - (xy 163.944592 140.772435) - (xy 164.05 140.724297) - (xy 164.05 141.6436) - (xy 164.711428 141.6436) - (xy 164.711444 141.643599) - (xy 164.770972 141.637198) - (xy 164.770979 141.637196) - (xy 164.905686 141.586954) - (xy 164.905689 141.586952) - (xy 164.995688 141.519579) - (xy 165.061152 141.495161) - (xy 165.129426 141.510012) - (xy 165.144312 141.519579) - (xy 165.23431 141.586952) - (xy 165.234313 141.586954) - (xy 165.36902 141.637196) - (xy 165.369027 141.637198) - (xy 165.428555 141.643599) - (xy 165.428572 141.6436) - (xy 166.09 141.6436) - (xy 166.09 140.724297) - (xy 166.195408 140.772435) - (xy 166.303666 140.788) - (xy 166.376334 140.788) - (xy 166.484592 140.772435) - (xy 166.59 140.724297) - (xy 166.59 141.6436) - (xy 167.251428 141.6436) - (xy 167.251444 141.643599) - (xy 167.310972 141.637198) - (xy 167.310979 141.637196) - (xy 167.445686 141.586954) - (xy 167.445693 141.58695) - (xy 167.560787 141.50079) - (xy 167.56079 141.500787) - (xy 167.64695 141.385693) - (xy 167.646954 141.385686) - (xy 167.697196 141.250979) - (xy 167.697198 141.250972) - (xy 167.703599 141.191444) - (xy 167.7036 141.191427) - (xy 167.7036 140.53) - (xy 166.783196 140.53) - (xy 166.806845 140.493201) - (xy 166.848 140.353039) - (xy 166.848 140.206961) - (xy 166.806845 140.066799) - (xy 166.783196 140.03) - (xy 167.7036 140.03) - (xy 167.7036 139.368572) - (xy 167.703599 139.368555) - (xy 167.697198 139.309027) - (xy 167.697196 139.30902) - (xy 167.646954 139.174313) - (xy 167.64695 139.174306) - (xy 167.56079 139.059212) - (xy 167.560787 139.059209) - (xy 167.445693 138.973049) - (xy 167.445686 138.973045) - (xy 167.330651 138.93014) - (xy 167.274717 138.888269) - (xy 167.2503 138.822804) - (xy 167.265152 138.754531) - (xy 167.282749 138.729981) - (xy 167.420156 138.580719) - (xy 167.543802 138.391465) - (xy 167.634611 138.184441) - (xy 167.690107 137.965293) - (xy 167.697574 137.875175) - (xy 167.708775 137.740006) - (xy 167.708775 137.739993) - (xy 167.690107 137.51471) - (xy 167.690107 137.514707) - (xy 167.634611 137.295559) - (xy 167.543802 137.088535) - (xy 167.420156 136.899281) - (xy 167.420153 136.899278) - (xy 167.420149 136.899272) - (xy 167.267049 136.732963) - (xy 167.267048 136.732962) - (xy 167.267046 136.73296) - (xy 167.088649 136.594107) - (xy 167.088647 136.594106) - (xy 167.088646 136.594105) - (xy 167.088639 136.5941) - (xy 167.060836 136.579055) - (xy 167.011244 136.529837) - (xy 166.996135 136.46162) - (xy 167.020306 136.396064) - (xy 167.060836 136.360945) - (xy 167.088639 136.345899) - (xy 167.088642 136.345896) - (xy 167.088649 136.345893) - (xy 167.267046 136.20704) - (xy 167.366832 136.098643) - (xy 167.420149 136.040727) - (xy 167.42015 136.040725) - (xy 167.420156 136.040719) - (xy 167.543802 135.851465) - (xy 167.634611 135.644441) - (xy 167.690107 135.425293) - (xy 167.702829 135.271762) - (xy 167.708775 135.200006) - (xy 167.708775 135.199993) - (xy 167.690107 134.97471) - (xy 167.690107 134.974707) - (xy 167.634611 134.755559) - (xy 167.543802 134.548535) - (xy 167.532729 134.531587) - (xy 167.458243 134.417577) - (xy 167.420156 134.359281) - (xy 167.420153 134.359278) - (xy 167.420149 134.359272) - (xy 167.267049 134.192963) - (xy 167.267048 134.192962) - (xy 167.267046 134.19296) - (xy 167.088649 134.054107) - (xy 167.088647 134.054106) - (xy 167.088646 134.054105) - (xy 167.088639 134.0541) - (xy 167.060836 134.039055) - (xy 167.011244 133.989837) - (xy 166.996135 133.92162) - (xy 167.020306 133.856064) - (xy 167.060836 133.820945) - (xy 167.088639 133.805899) - (xy 167.088642 133.805896) - (xy 167.088649 133.805893) - (xy 167.267046 133.66704) - (xy 167.366832 133.558643) - (xy 167.420149 133.500727) - (xy 167.42015 133.500725) - (xy 167.420156 133.500719) - (xy 167.543802 133.311465) - (xy 167.634611 133.104441) - (xy 167.690107 132.885293) - (xy 167.708775 132.66) - (xy 167.708775 132.659993) - (xy 167.692332 132.461564) - (xy 167.690107 132.434707) - (xy 167.634611 132.215559) - (xy 167.543802 132.008535) - (xy 167.503715 131.947178) - (xy 167.420157 131.819283) - (xy 167.420149 131.819272) - (xy 167.267049 131.652963) - (xy 167.267048 131.652962) - (xy 167.267046 131.65296) - (xy 167.088649 131.514107) - (xy 167.088647 131.514106) - (xy 167.088646 131.514105) - (xy 167.088639 131.5141) - (xy 167.060836 131.499055) - (xy 167.011244 131.449837) - (xy 166.996135 131.38162) - (xy 167.020306 131.316064) - (xy 167.060836 131.280945) - (xy 167.088639 131.265899) - (xy 167.088642 131.265896) - (xy 167.088649 131.265893) - (xy 167.267046 131.12704) - (xy 167.420156 130.960719) - (xy 167.543802 130.771465) - (xy 167.634611 130.564441) - (xy 167.690107 130.345293) - (xy 167.697574 130.255175) - (xy 167.708775 130.120006) - (xy 167.708775 130.119993) - (xy 167.69349 129.935532) - (xy 167.690107 129.894707) - (xy 167.634611 129.675559) - (xy 167.543802 129.468535) - (xy 167.503715 129.407178) - (xy 167.420157 129.279283) - (xy 167.420149 129.279272) - (xy 167.267049 129.112963) - (xy 167.267048 129.112962) - (xy 167.267046 129.11296) - (xy 167.088649 128.974107) - (xy 167.088647 128.974106) - (xy 167.088646 128.974105) - (xy 167.088639 128.9741) - (xy 167.060836 128.959055) - (xy 167.011244 128.909837) - (xy 166.996135 128.84162) - (xy 167.020306 128.776064) - (xy 167.060836 128.740945) - (xy 167.088639 128.725899) - (xy 167.088642 128.725896) - (xy 167.088649 128.725893) - (xy 167.267046 128.58704) - (xy 167.408525 128.433354) - (xy 167.420149 128.420727) - (xy 167.420151 128.420724) - (xy 167.420156 128.420719) - (xy 167.543802 128.231465) - (xy 167.634611 128.024441) - (xy 167.690107 127.805293) - (xy 167.70358 127.642694) - (xy 167.708775 127.580006) - (xy 167.708775 127.579993) - (xy 167.691963 127.377108) - (xy 167.690107 127.354707) - (xy 167.634611 127.135559) - (xy 167.543802 126.928535) - (xy 167.420156 126.739281) - (xy 167.420153 126.739278) - (xy 167.420149 126.739272) - (xy 167.267049 126.572963) - (xy 167.267048 126.572962) - (xy 167.267046 126.57296) - (xy 167.088649 126.434107) - (xy 167.088647 126.434106) - (xy 167.088646 126.434105) - (xy 167.088639 126.4341) - (xy 167.060836 126.419055) - (xy 167.011244 126.369837) - (xy 166.996135 126.30162) - (xy 167.020306 126.236064) - (xy 167.060836 126.200945) - (xy 167.088639 126.185899) - (xy 167.088642 126.185896) - (xy 167.088649 126.185893) - (xy 167.267046 126.04704) - (xy 167.420156 125.880719) - (xy 167.543802 125.691465) - (xy 167.634611 125.484441) - (xy 167.690107 125.265293) - (xy 167.708775 125.04) - (xy 167.708775 125.039993) - (xy 167.692614 124.844966) - (xy 167.690107 124.814707) - (xy 167.634611 124.595559) - (xy 167.543802 124.388535) - (xy 167.420156 124.199281) - (xy 167.420153 124.199278) - (xy 167.420149 124.199272) - (xy 167.267049 124.032963) - (xy 167.267048 124.032962) - (xy 167.267046 124.03296) - (xy 167.088649 123.894107) - (xy 167.088647 123.894106) - (xy 167.088646 123.894105) - (xy 167.088643 123.894103) - (xy 167.060833 123.879053) - (xy 167.011243 123.829833) - (xy 166.996136 123.761616) - (xy 167.020307 123.696061) - (xy 167.060835 123.660945) - (xy 167.088649 123.645893) - (xy 167.267046 123.50704) - (xy 167.420156 123.340719) - (xy 167.543802 123.151465) - (xy 167.634611 122.944441) - (xy 167.690107 122.725293) - (xy 167.708775 122.5) - (xy 167.708775 122.499993) - (xy 167.690107 122.27471) - (xy 167.690107 122.274707) - (xy 167.634611 122.055559) - (xy 167.543802 121.848535) - (xy 167.420156 121.659281) - (xy 167.420153 121.659278) - (xy 167.420149 121.659272) - (xy 167.267049 121.492963) - (xy 167.267048 121.492962) - (xy 167.267046 121.49296) - (xy 167.088649 121.354107) - (xy 167.088647 121.354106) - (xy 167.088646 121.354105) - (xy 167.088639 121.3541) - (xy 167.060836 121.339055) - (xy 167.011244 121.289837) - (xy 166.996135 121.22162) - (xy 167.020306 121.156064) - (xy 167.060836 121.120945) - (xy 167.088639 121.105899) - (xy 167.088642 121.105896) - (xy 167.088649 121.105893) - (xy 167.267046 120.96704) - (xy 167.420156 120.800719) - (xy 167.543802 120.611465) - (xy 167.634611 120.404441) - (xy 167.690107 120.185293) - (xy 167.708775 119.96) - (xy 167.708775 119.959993) - (xy 167.690107 119.73471) - (xy 167.690107 119.734707) - (xy 167.634611 119.515559) - (xy 167.543802 119.308535) - (xy 167.495121 119.234024) - (xy 167.448401 119.162513) - (xy 167.420156 119.119281) - (xy 167.420153 119.119278) - (xy 167.420149 119.119272) - (xy 167.267049 118.952963) - (xy 167.267048 118.952962) - (xy 167.267046 118.95296) - (xy 167.088649 118.814107) - (xy 167.088647 118.814106) - (xy 167.088646 118.814105) - (xy 167.088639 118.8141) - (xy 167.060836 118.799055) - (xy 167.011244 118.749837) - (xy 166.996135 118.68162) - (xy 167.020306 118.616064) - (xy 167.060836 118.580945) - (xy 167.088639 118.565899) - (xy 167.088642 118.565896) - (xy 167.088649 118.565893) - (xy 167.267046 118.42704) - (xy 167.420156 118.260719) - (xy 167.543802 118.071465) - (xy 167.634611 117.864441) - (xy 167.690107 117.645293) - (xy 167.708775 117.42) - (xy 167.708774 117.419991) - (xy 167.709012 117.417122) - (xy 167.734165 117.351937) - (xy 167.7449 117.339688) - (xy 169.733786 115.350802) - (xy 169.746048 115.34098) - (xy 169.745865 115.340759) - (xy 169.751873 115.335788) - (xy 169.751877 115.335786) - (xy 169.798649 115.285977) - (xy 169.799891 115.284697) - (xy 169.82012 115.26447) - (xy 169.824373 115.258986) - (xy 169.82815 115.254563) - (xy 169.860062 115.220582) - (xy 169.869714 115.203023) - (xy 169.880389 115.186772) - (xy 169.892674 115.170936) - (xy 169.911186 115.128152) - (xy 169.913742 115.122935) - (xy 169.936197 115.082092) - (xy 169.94118 115.06268) - (xy 169.947477 115.044291) - (xy 169.955438 115.025895) - (xy 169.962729 114.979853) - (xy 169.963908 114.974162) - (xy 169.9755 114.929019) - (xy 169.9755 114.908974) - (xy 169.977025 114.889591) - (xy 169.98016 114.869804) - (xy 169.975772 114.823394) - (xy 169.975499 114.817599) - (xy 169.975499 108.021847) - (xy 169.995184 107.954809) - (xy 170.011818 107.934167) - (xy 170.945982 107.000004) - (xy 172.814477 105.131509) - (xy 173.784168 104.161819) - (xy 173.845491 104.128334) - (xy 173.871849 104.1255) - (xy 174.759172 104.1255) - (xy 174.826211 104.145185) - (xy 174.871966 104.197989) - (xy 174.874588 104.20417) - (xy 174.888607 104.239888) - (xy 175.016041 104.460612) - (xy 175.17495 104.659877) - (xy 175.361783 104.833232) - (xy 175.572366 104.976805) - (xy 175.572371 104.976807) - (xy 175.572372 104.976808) - (xy 175.572373 104.976809) - (xy 175.694328 105.035538) - (xy 175.801992 105.087387) - (xy 175.801993 105.087387) - (xy 175.801996 105.087389) - (xy 175.90836 105.120197) - (xy 175.945029 105.131509) - (xy 176.003288 105.17008) - (xy 176.031446 105.234024) - (xy 176.020562 105.303041) - (xy 175.974093 105.355218) - (xy 175.945029 105.368491) - (xy 175.801992 105.412612) - (xy 175.572373 105.52319) - (xy 175.572372 105.523191) - (xy 175.361782 105.666768) - (xy 175.174952 105.840121) - (xy 175.17495 105.840123) - (xy 175.016041 106.039388) - (xy 174.888608 106.260109) - (xy 174.795492 106.497362) - (xy 174.79549 106.497369) - (xy 174.738777 106.745845) - (xy 174.719732 106.999995) - (xy 174.719732 107.000004) - (xy 174.738777 107.254154) - (xy 174.740111 107.26) - (xy 174.795492 107.502637) - (xy 174.888607 107.739888) - (xy 175.016041 107.960612) - (xy 175.17495 108.159877) - (xy 175.361783 108.333232) - (xy 175.572366 108.476805) - (xy 175.572371 108.476807) - (xy 175.572372 108.476808) - (xy 175.572373 108.476809) - (xy 175.694328 108.535538) - (xy 175.801992 108.587387) - (xy 175.801993 108.587387) - (xy 175.801996 108.587389) - (xy 175.90836 108.620197) - (xy 175.945029 108.631509) - (xy 176.003288 108.67008) - (xy 176.031446 108.734024) - (xy 176.020562 108.803041) - (xy 175.974093 108.855218) - (xy 175.945029 108.868491) - (xy 175.801992 108.912612) - (xy 175.572373 109.02319) - (xy 175.572372 109.023191) - (xy 175.361782 109.166768) - (xy 175.174952 109.340121) - (xy 175.17495 109.340123) - (xy 175.016041 109.539388) - (xy 174.888608 109.760109) - (xy 174.795492 109.997362) - (xy 174.79549 109.997369) - (xy 174.738777 110.245845) - (xy 174.719732 110.499995) - (xy 174.719732 110.500004) - (xy 174.738777 110.754154) - (xy 174.793991 110.996064) - (xy 174.795492 111.002637) - (xy 174.888607 111.239888) - (xy 175.016041 111.460612) - (xy 175.17495 111.659877) - (xy 175.361783 111.833232) - (xy 175.572366 111.976805) - (xy 175.572371 111.976807) - (xy 175.572372 111.976808) - (xy 175.572373 111.976809) - (xy 175.626731 112.002986) - (xy 175.801992 112.087387) - (xy 175.801993 112.087387) - (xy 175.801996 112.087389) - (xy 175.90836 112.120197) - (xy 175.945029 112.131509) - (xy 176.003288 112.17008) - (xy 176.031446 112.234024) - (xy 176.020562 112.303041) - (xy 175.974093 112.355218) - (xy 175.945029 112.368491) - (xy 175.801992 112.412612) - (xy 175.572373 112.52319) - (xy 175.572372 112.523191) - (xy 175.361782 112.666768) - (xy 175.174952 112.840121) - (xy 175.17495 112.840123) - (xy 175.016041 113.039388) - (xy 174.888608 113.260109) - (xy 174.795492 113.497362) - (xy 174.79549 113.497369) - (xy 174.738777 113.745845) - (xy 174.719732 113.999995) - (xy 174.719732 114.000004) - (xy 174.738777 114.254154) - (xy 174.780181 114.435559) - (xy 174.795492 114.502637) - (xy 174.888607 114.739888) - (xy 175.016041 114.960612) - (xy 175.17495 115.159877) - (xy 175.361783 115.333232) - (xy 175.572366 115.476805) - (xy 175.572371 115.476807) - (xy 175.572372 115.476808) - (xy 175.572373 115.476809) - (xy 175.685869 115.531465) - (xy 175.801996 115.587389) - (xy 175.945029 115.631508) - (xy 176.003287 115.670078) - (xy 176.031445 115.734023) - (xy 176.020562 115.803039) - (xy 175.974094 115.855216) - (xy 175.94503 115.86849) - (xy 175.80199 115.912613) - (xy 175.572373 116.02319) - (xy 175.572372 116.023191) - (xy 175.361782 116.166768) - (xy 175.174952 116.340121) - (xy 175.17495 116.340123) - (xy 175.016041 116.539388) - (xy 174.888608 116.760109) - (xy 174.795492 116.997362) - (xy 174.79549 116.997369) - (xy 174.738777 117.245845) - (xy 174.719732 117.499995) - (xy 174.719732 117.500004) - (xy 174.738777 117.754154) - (xy 174.786851 117.964781) - (xy 174.795492 118.002637) - (xy 174.851241 118.144683) - (xy 174.888608 118.23989) - (xy 174.900638 118.260727) - (xy 175.016041 118.460612) - (xy 175.17495 118.659877) - (xy 175.361783 118.833232) - (xy 175.572366 118.976805) - (xy 175.572371 118.976807) - (xy 175.572372 118.976808) - (xy 175.572373 118.976809) - (xy 175.684465 119.030789) - (xy 175.801992 119.087387) - (xy 175.801993 119.087387) - (xy 175.801996 119.087389) - (xy 175.905358 119.119272) - (xy 175.945029 119.131509) - (xy 176.003288 119.17008) - (xy 176.031446 119.234024) - (xy 176.020562 119.303041) - (xy 175.974093 119.355218) - (xy 175.945029 119.368491) - (xy 175.801992 119.412612) - (xy 175.572373 119.52319) - (xy 175.572372 119.523191) - (xy 175.361782 119.666768) - (xy 175.174952 119.840121) - (xy 175.17495 119.840123) - (xy 175.016041 120.039388) - (xy 174.888608 120.260109) - (xy 174.795492 120.497362) - (xy 174.79549 120.497369) - (xy 174.738777 120.745845) - (xy 174.719732 120.999995) - (xy 174.719732 121.000004) - (xy 174.738777 121.254154) - (xy 174.76159 121.354106) - (xy 174.795492 121.502637) - (xy 174.888607 121.739888) - (xy 175.016041 121.960612) - (xy 175.17495 122.159877) - (xy 175.361783 122.333232) - (xy 175.572366 122.476805) - (xy 175.572371 122.476807) - (xy 175.572372 122.476808) - (xy 175.572373 122.476809) - (xy 175.620543 122.500006) - (xy 175.801992 122.587387) - (xy 175.801993 122.587387) - (xy 175.801996 122.587389) - (xy 175.90836 122.620197) - (xy 175.945029 122.631509) - (xy 176.003288 122.67008) - (xy 176.031446 122.734024) - (xy 176.020562 122.803041) - (xy 175.974093 122.855218) - (xy 175.945029 122.868491) - (xy 175.801992 122.912612) - (xy 175.572373 123.02319) - (xy 175.572372 123.023191) - (xy 175.361782 123.166768) - (xy 175.174952 123.340121) - (xy 175.17495 123.340123) - (xy 175.016041 123.539388) - (xy 174.888608 123.760109) - (xy 174.795492 123.997362) - (xy 174.79549 123.997369) - (xy 174.738777 124.245845) - (xy 174.719732 124.499995) - (xy 174.719732 124.500004) - (xy 174.738777 124.754154) - (xy 174.786835 124.964712) - (xy 174.795492 125.002637) - (xy 174.888607 125.239888) - (xy 175.016041 125.460612) - (xy 175.17495 125.659877) - (xy 175.361783 125.833232) - (xy 175.572366 125.976805) - (xy 175.572371 125.976807) - (xy 175.572372 125.976808) - (xy 175.572373 125.976809) - (xy 175.694328 126.035538) - (xy 175.801992 126.087387) - (xy 175.801993 126.087387) - (xy 175.801996 126.087389) - (xy 175.90836 126.120197) - (xy 175.945029 126.131509) - (xy 176.003288 126.17008) - (xy 176.031446 126.234024) - (xy 176.020562 126.303041) - (xy 175.974093 126.355218) - (xy 175.945029 126.368491) - (xy 175.801992 126.412612) - (xy 175.572373 126.52319) - (xy 175.572372 126.523191) - (xy 175.361782 126.666768) - (xy 175.174952 126.840121) - (xy 175.17495 126.840123) - (xy 175.016041 127.039388) - (xy 174.888608 127.260109) - (xy 174.795492 127.497362) - (xy 174.79549 127.497369) - (xy 174.738777 127.745845) - (xy 174.719732 127.999995) - (xy 174.719732 128.000004) - (xy 174.738777 128.254154) - (xy 174.792607 128.49) - (xy 174.795492 128.502637) - (xy 174.883115 128.725896) - (xy 174.888608 128.73989) - (xy 174.889216 128.740943) - (xy 175.016041 128.960612) - (xy 175.17495 129.159877) - (xy 175.361783 129.333232) - (xy 175.572366 129.476805) - (xy 175.572371 129.476807) - (xy 175.572372 129.476808) - (xy 175.572373 129.476809) - (xy 175.694328 129.535538) - (xy 175.801996 129.587389) - (xy 175.945029 129.631508) - (xy 176.003287 129.670078) - (xy 176.031445 129.734023) - (xy 176.020562 129.803039) - (xy 175.974094 129.855216) - (xy 175.94503 129.86849) - (xy 175.80199 129.912613) - (xy 175.572373 130.02319) - (xy 175.572372 130.023191) - (xy 175.361782 130.166768) - (xy 175.174952 130.340121) - (xy 175.17495 130.340123) - (xy 175.016041 130.539388) - (xy 174.888608 130.760109) - (xy 174.795492 130.997362) - (xy 174.79549 130.997369) - (xy 174.738777 131.245845) - (xy 174.719732 131.499995) - (xy 174.719732 131.500004) - (xy 174.738777 131.754154) - (xy 174.783698 131.950968) - (xy 174.795492 132.002637) - (xy 174.888607 132.239888) - (xy 175.016041 132.460612) - (xy 175.17495 132.659877) - (xy 175.361783 132.833232) - (xy 175.572366 132.976805) - (xy 175.572371 132.976807) - (xy 175.572372 132.976808) - (xy 175.572373 132.976809) - (xy 175.675731 133.026583) - (xy 175.801992 133.087387) - (xy 175.801993 133.087387) - (xy 175.801996 133.087389) - (xy 175.90836 133.120197) - (xy 175.945029 133.131509) - (xy 176.003288 133.17008) - (xy 176.031446 133.234024) - (xy 176.020562 133.303041) - (xy 175.974093 133.355218) - (xy 175.945029 133.368491) - (xy 175.801992 133.412612) - (xy 175.572373 133.52319) - (xy 175.572372 133.523191) - (xy 175.361782 133.666768) - (xy 175.174952 133.840121) - (xy 175.17495 133.840123) - (xy 175.016041 134.039388) - (xy 174.888608 134.260109) - (xy 174.795492 134.497362) - (xy 174.79549 134.497369) - (xy 174.738777 134.745845) - (xy 174.719732 134.999995) - (xy 174.719732 135.000004) - (xy 174.738777 135.254154) - (xy 174.777838 135.425293) - (xy 174.795492 135.502637) - (xy 174.888607 135.739888) - (xy 175.016041 135.960612) - (xy 175.17495 136.159877) - (xy 175.361783 136.333232) - (xy 175.572366 136.476805) - (xy 175.572371 136.476807) - (xy 175.572372 136.476808) - (xy 175.572373 136.476809) - (xy 175.682488 136.529837) - (xy 175.801992 136.587387) - (xy 175.801993 136.587387) - (xy 175.801996 136.587389) - (xy 175.906781 136.619711) - (xy 175.945029 136.631509) - (xy 176.003288 136.67008) - (xy 176.031446 136.734024) - (xy 176.020562 136.803041) - (xy 175.974093 136.855218) - (xy 175.945029 136.868491) - (xy 175.801992 136.912612) - (xy 175.572373 137.02319) - (xy 175.572372 137.023191) - (xy 175.361782 137.166768) - (xy 175.174952 137.340121) - (xy 175.17495 137.340123) - (xy 175.016041 137.539388) - (xy 174.888608 137.760109) - (xy 174.795492 137.997362) - (xy 174.79549 137.997369) - (xy 174.738777 138.245845) - (xy 174.719732 138.499995) - (xy 174.719732 138.500004) - (xy 174.738777 138.754154) - (xy 174.793403 138.993488) - (xy 174.795492 139.002637) - (xy 174.888607 139.239888) - (xy 175.016041 139.460612) - (xy 175.17495 139.659877) - (xy 175.361783 139.833232) - (xy 175.572366 139.976805) - (xy 175.572371 139.976807) - (xy 175.572372 139.976808) - (xy 175.572373 139.976809) - (xy 175.694328 140.035538) - (xy 175.801992 140.087387) - (xy 175.801993 140.087387) - (xy 175.801996 140.087389) - (xy 175.90836 140.120197) - (xy 175.945029 140.131509) - (xy 176.003288 140.17008) - (xy 176.031446 140.234024) - (xy 176.020562 140.303041) - (xy 175.974093 140.355218) - (xy 175.945029 140.368491) - (xy 175.801992 140.412612) - (xy 175.572373 140.52319) - (xy 175.572372 140.523191) - (xy 175.361782 140.666768) - (xy 175.174952 140.840121) - (xy 175.17495 140.840123) - (xy 175.016041 141.039388) - (xy 174.888608 141.260109) - (xy 174.795492 141.497362) - (xy 174.79549 141.497369) - (xy 174.738777 141.745845) - (xy 174.719732 141.999995) - (xy 174.719732 142.000004) - (xy 174.738777 142.254154) - (xy 174.787221 142.466403) - (xy 174.795492 142.502637) - (xy 174.888607 142.739888) - (xy 175.016041 142.960612) - (xy 175.17495 143.159877) - (xy 175.361783 143.333232) - (xy 175.572366 143.476805) - (xy 175.572371 143.476807) - (xy 175.572372 143.476808) - (xy 175.572373 143.476809) - (xy 175.671038 143.524323) - (xy 175.801992 143.587387) - (xy 175.801993 143.587387) - (xy 175.801996 143.587389) - (xy 175.90836 143.620197) - (xy 175.945029 143.631509) - (xy 176.003288 143.67008) - (xy 176.031446 143.734024) - (xy 176.020562 143.803041) - (xy 175.974093 143.855218) - (xy 175.945029 143.868491) - (xy 175.801992 143.912612) - (xy 175.572373 144.02319) - (xy 175.572372 144.023191) - (xy 175.361782 144.166768) - (xy 175.174952 144.340121) - (xy 175.17495 144.340123) - (xy 175.016041 144.539388) - (xy 174.888608 144.760109) - (xy 174.795492 144.997362) - (xy 174.79549 144.997369) - (xy 174.738777 145.245845) - (xy 174.719732 145.499995) - (xy 174.719732 145.500004) - (xy 174.738777 145.754154) - (xy 174.78555 145.959082) - (xy 174.795492 146.002637) - (xy 174.888607 146.239888) - (xy 175.016041 146.460612) - (xy 175.17495 146.659877) - (xy 175.361783 146.833232) - (xy 175.572366 146.976805) - (xy 175.572371 146.976807) - (xy 175.572372 146.976808) - (xy 175.572373 146.976809) - (xy 175.694328 147.035538) - (xy 175.801992 147.087387) - (xy 175.801993 147.087387) - (xy 175.801996 147.087389) - (xy 176.045542 147.162513) - (xy 176.297565 147.2005) - (xy 176.552435 147.2005) - (xy 176.804458 147.162513) - (xy 177.048004 147.087389) - (xy 177.275061 146.978044) - (xy 177.277626 146.976809) - (xy 177.277626 146.976808) - (xy 177.277634 146.976805) - (xy 177.488217 146.833232) - (xy 177.67505 146.659877) - (xy 177.833959 146.460612) - (xy 177.961393 146.239888) - (xy 178.054508 146.002637) - (xy 178.111222 145.754157) - (xy 178.123877 145.585289) - (xy 178.130268 145.500004) - (xy 178.130268 145.499995) - (xy 178.115029 145.296644) - (xy 178.111222 145.245843) - (xy 178.054508 144.997363) - (xy 177.961393 144.760112) - (xy 177.833959 144.539388) - (xy 177.67505 144.340123) - (xy 177.488217 144.166768) - (xy 177.277634 144.023195) - (xy 177.27763 144.023193) - (xy 177.277627 144.023191) - (xy 177.277626 144.02319) - (xy 177.048006 143.912612) - (xy 177.048008 143.912612) - (xy 176.90497 143.868491) - (xy 176.846711 143.829921) - (xy 176.818553 143.765976) - (xy 176.829437 143.696959) - (xy 176.875906 143.644782) - (xy 176.90497 143.631509) - (xy 177.048004 143.587389) - (xy 177.277634 143.476805) - (xy 177.488217 143.333232) - (xy 177.67505 143.159877) - (xy 177.833959 142.960612) - (xy 177.961393 142.739888) - (xy 178.054508 142.502637) - (xy 178.111222 142.254157) - (xy 178.126385 142.051819) - (xy 178.130268 142.000004) - (xy 178.130268 141.999995) - (xy 178.111222 141.745845) - (xy 178.087885 141.6436) - (xy 178.054508 141.497363) - (xy 177.961393 141.260112) - (xy 177.833959 141.039388) - (xy 177.67505 140.840123) - (xy 177.488217 140.666768) - (xy 177.277634 140.523195) - (xy 177.27763 140.523193) - (xy 177.277627 140.523191) - (xy 177.277626 140.52319) - (xy 177.048006 140.412612) - (xy 177.048008 140.412612) - (xy 176.90497 140.368491) - (xy 176.846711 140.329921) - (xy 176.818553 140.265976) - (xy 176.829437 140.196959) - (xy 176.875906 140.144782) - (xy 176.90497 140.131509) - (xy 177.048004 140.087389) - (xy 177.229458 140.000005) - (xy 177.277626 139.976809) - (xy 177.277626 139.976808) - (xy 177.277634 139.976805) - (xy 177.488217 139.833232) - (xy 177.67505 139.659877) - (xy 177.833959 139.460612) - (xy 177.961393 139.239888) - (xy 178.054508 139.002637) - (xy 178.111222 138.754157) - (xy 178.130268 138.5) - (xy 178.126448 138.449031) - (xy 178.111222 138.245845) - (xy 178.104903 138.218161) - (xy 178.054508 137.997363) - (xy 177.961393 137.760112) - (xy 177.833959 137.539388) - (xy 177.67505 137.340123) - (xy 177.488217 137.166768) - (xy 177.277634 137.023195) - (xy 177.27763 137.023193) - (xy 177.277627 137.023191) - (xy 177.277626 137.02319) - (xy 177.048006 136.912612) - (xy 177.048008 136.912612) - (xy 176.90497 136.868491) - (xy 176.846711 136.829921) - (xy 176.818553 136.765976) - (xy 176.829437 136.696959) - (xy 176.875906 136.644782) - (xy 176.90497 136.631509) - (xy 177.048004 136.587389) - (xy 177.277634 136.476805) - (xy 177.488217 136.333232) - (xy 177.67505 136.159877) - (xy 177.833959 135.960612) - (xy 177.961393 135.739888) - (xy 178.054508 135.502637) - (xy 178.111222 135.254157) - (xy 178.120411 135.131535) - (xy 178.130268 135.000004) - (xy 178.130268 134.999995) - (xy 178.111222 134.745845) - (xy 178.098125 134.688464) - (xy 178.054508 134.497363) - (xy 177.961393 134.260112) - (xy 177.833959 134.039388) - (xy 177.67505 133.840123) - (xy 177.488217 133.666768) - (xy 177.277634 133.523195) - (xy 177.27763 133.523193) - (xy 177.277627 133.523191) - (xy 177.277626 133.52319) - (xy 177.048006 133.412612) - (xy 177.048008 133.412612) - (xy 176.90497 133.368491) - (xy 176.846711 133.329921) - (xy 176.818553 133.265976) - (xy 176.829437 133.196959) - (xy 176.875906 133.144782) - (xy 176.90497 133.131509) - (xy 177.048004 133.087389) - (xy 177.277634 132.976805) - (xy 177.488217 132.833232) - (xy 177.67505 132.659877) - (xy 177.833959 132.460612) - (xy 177.961393 132.239888) - (xy 178.054508 132.002637) - (xy 178.111222 131.754157) - (xy 178.129211 131.514103) - (xy 178.130268 131.500004) - (xy 178.130268 131.499995) - (xy 178.112725 131.265899) - (xy 178.111222 131.245843) - (xy 178.054508 130.997363) - (xy 177.961393 130.760112) - (xy 177.833959 130.539388) - (xy 177.67505 130.340123) - (xy 177.488217 130.166768) - (xy 177.277634 130.023195) - (xy 177.27763 130.023193) - (xy 177.277627 130.023191) - (xy 177.277626 130.02319) - (xy 177.048006 129.912612) - (xy 177.048008 129.912612) - (xy 176.914388 129.871396) - (xy 176.904969 129.86849) - (xy 176.846711 129.829921) - (xy 176.818553 129.765976) - (xy 176.829437 129.696959) - (xy 176.875906 129.644782) - (xy 176.90497 129.631509) - (xy 177.048004 129.587389) - (xy 177.277634 129.476805) - (xy 177.488217 129.333232) - (xy 177.67505 129.159877) - (xy 177.833959 128.960612) - (xy 177.961393 128.739888) - (xy 178.054508 128.502637) - (xy 178.111222 128.254157) - (xy 178.122882 128.098561) - (xy 178.130268 128.000004) - (xy 178.130268 127.999995) - (xy 178.111222 127.745845) - (xy 178.108866 127.735524) - (xy 178.054508 127.497363) - (xy 177.961393 127.260112) - (xy 177.833959 127.039388) - (xy 177.67505 126.840123) - (xy 177.488217 126.666768) - (xy 177.277634 126.523195) - (xy 177.27763 126.523193) - (xy 177.277627 126.523191) - (xy 177.277626 126.52319) - (xy 177.048009 126.412613) - (xy 177.048006 126.412612) - (xy 177.048004 126.412611) - (xy 176.982445 126.392388) - (xy 176.904969 126.36849) - (xy 176.846711 126.329919) - (xy 176.818553 126.265974) - (xy 176.829437 126.196957) - (xy 176.875906 126.144781) - (xy 176.904965 126.13151) - (xy 177.048004 126.087389) - (xy 177.277634 125.976805) - (xy 177.488217 125.833232) - (xy 177.67505 125.659877) - (xy 177.833959 125.460612) - (xy 177.961393 125.239888) - (xy 178.054508 125.002637) - (xy 178.111222 124.754157) - (xy 178.130268 124.5) - (xy 178.123482 124.409451) - (xy 178.114776 124.293269) - (xy 178.111222 124.245843) - (xy 178.054508 123.997363) - (xy 177.961393 123.760112) - (xy 177.833959 123.539388) - (xy 177.67505 123.340123) - (xy 177.488217 123.166768) - (xy 177.277634 123.023195) - (xy 177.27763 123.023193) - (xy 177.277627 123.023191) - (xy 177.277626 123.02319) - (xy 177.048006 122.912612) - (xy 177.048008 122.912612) - (xy 176.90497 122.868491) - (xy 176.846711 122.829921) - (xy 176.818553 122.765976) - (xy 176.829437 122.696959) - (xy 176.875906 122.644782) - (xy 176.90497 122.631509) - (xy 177.048004 122.587389) - (xy 177.277634 122.476805) - (xy 177.488217 122.333232) - (xy 177.67505 122.159877) - (xy 177.833959 121.960612) - (xy 177.961393 121.739888) - (xy 178.054508 121.502637) - (xy 178.111222 121.254157) - (xy 178.130268 121) - (xy 178.111222 120.745843) - (xy 178.054508 120.497363) - (xy 177.961393 120.260112) - (xy 177.833959 120.039388) - (xy 177.67505 119.840123) - (xy 177.488217 119.666768) - (xy 177.277634 119.523195) - (xy 177.27763 119.523193) - (xy 177.277627 119.523191) - (xy 177.277626 119.52319) - (xy 177.048006 119.412612) - (xy 177.048008 119.412612) - (xy 176.90497 119.368491) - (xy 176.846711 119.329921) - (xy 176.818553 119.265976) - (xy 176.829437 119.196959) - (xy 176.875906 119.144782) - (xy 176.90497 119.131509) - (xy 177.048004 119.087389) - (xy 177.277634 118.976805) - (xy 177.488217 118.833232) - (xy 177.67505 118.659877) - (xy 177.833959 118.460612) - (xy 177.961393 118.239888) - (xy 178.054508 118.002637) - (xy 178.111222 117.754157) - (xy 178.123124 117.595333) - (xy 178.130268 117.500004) - (xy 178.130268 117.499995) - (xy 178.111222 117.245845) - (xy 178.09955 117.194707) - (xy 178.054508 116.997363) - (xy 177.961393 116.760112) - (xy 177.833959 116.539388) - (xy 177.67505 116.340123) - (xy 177.488217 116.166768) - (xy 177.277634 116.023195) - (xy 177.27763 116.023193) - (xy 177.277627 116.023191) - (xy 177.277626 116.02319) - (xy 177.048006 115.912612) - (xy 177.048008 115.912612) - (xy 176.90497 115.868491) - (xy 176.846711 115.829921) - (xy 176.818553 115.765976) - (xy 176.829437 115.696959) - (xy 176.875906 115.644782) - (xy 176.90497 115.631509) - (xy 177.048004 115.587389) - (xy 177.277634 115.476805) - (xy 177.488217 115.333232) - (xy 177.67505 115.159877) - (xy 177.833959 114.960612) - (xy 177.961393 114.739888) - (xy 178.054508 114.502637) - (xy 178.111222 114.254157) - (xy 178.127324 114.039283) - (xy 178.130268 114.000004) - (xy 178.130268 113.999995) - (xy 178.111222 113.745845) - (xy 178.106578 113.7255) - (xy 178.054508 113.497363) - (xy 177.961393 113.260112) - (xy 177.833959 113.039388) - (xy 177.67505 112.840123) - (xy 177.488217 112.666768) - (xy 177.277634 112.523195) - (xy 177.27763 112.523193) - (xy 177.277627 112.523191) - (xy 177.277626 112.52319) - (xy 177.048006 112.412612) - (xy 177.048008 112.412612) - (xy 176.947352 112.381564) - (xy 176.904969 112.36849) - (xy 176.846711 112.329921) - (xy 176.818553 112.265976) - (xy 176.829437 112.196959) - (xy 176.875906 112.144782) - (xy 176.90497 112.131509) - (xy 177.048004 112.087389) - (xy 177.277634 111.976805) - (xy 177.488217 111.833232) - (xy 177.67505 111.659877) - (xy 177.833959 111.460612) - (xy 177.961393 111.239888) - (xy 178.054508 111.002637) - (xy 178.111222 110.754157) - (xy 178.122251 110.60698) - (xy 178.130268 110.500004) - (xy 178.130268 110.499995) - (xy 178.111222 110.245845) - (xy 178.110901 110.244439) - (xy 178.054508 109.997363) - (xy 177.961393 109.760112) - (xy 177.833959 109.539388) - (xy 177.67505 109.340123) - (xy 177.488217 109.166768) - (xy 177.277634 109.023195) - (xy 177.27763 109.023193) - (xy 177.277627 109.023191) - (xy 177.277626 109.02319) - (xy 177.048006 108.912612) - (xy 177.048008 108.912612) - (xy 176.90497 108.868491) - (xy 176.846711 108.829921) - (xy 176.818553 108.765976) - (xy 176.829437 108.696959) - (xy 176.875906 108.644782) - (xy 176.90497 108.631509) - (xy 177.048004 108.587389) - (xy 177.277634 108.476805) - (xy 177.488217 108.333232) - (xy 177.67505 108.159877) - (xy 177.833959 107.960612) - (xy 177.961393 107.739888) - (xy 178.054508 107.502637) - (xy 178.111222 107.254157) - (xy 178.130268 107) - (xy 178.111222 106.745843) - (xy 178.054508 106.497363) - (xy 177.961393 106.260112) - (xy 177.833959 106.039388) - (xy 177.67505 105.840123) - (xy 177.488217 105.666768) - (xy 177.277634 105.523195) - (xy 177.27763 105.523193) - (xy 177.277627 105.523191) - (xy 177.277626 105.52319) - (xy 177.048006 105.412612) - (xy 177.048008 105.412612) - (xy 176.90497 105.368491) - (xy 176.846711 105.329921) - (xy 176.818553 105.265976) - (xy 176.829437 105.196959) - (xy 176.875906 105.144782) - (xy 176.90497 105.131509) - (xy 177.048004 105.087389) - (xy 177.277634 104.976805) - (xy 177.488217 104.833232) - (xy 177.67505 104.659877) - (xy 177.833959 104.460612) - (xy 177.961393 104.239888) - (xy 178.054508 104.002637) - (xy 178.111222 103.754157) - (xy 178.123341 103.592433) - (xy 178.130268 103.500004) - (xy 178.130268 103.499995) - (xy 178.111222 103.245845) - (xy 178.0978 103.18704) - (xy 178.054508 102.997363) - (xy 177.961393 102.760112) - (xy 177.833959 102.539388) - (xy 177.67505 102.340123) - (xy 177.488217 102.166768) - (xy 177.277634 102.023195) - (xy 177.27763 102.023193) - (xy 177.277627 102.023191) - (xy 177.277626 102.02319) - (xy 177.048006 101.912612) - (xy 177.048008 101.912612) - (xy 176.944447 101.880668) - (xy 176.904969 101.86849) - (xy 176.846711 101.829921) - (xy 176.818553 101.765976) - (xy 176.829437 101.696959) - (xy 176.875906 101.644782) - (xy 176.90497 101.631509) - (xy 177.048004 101.587389) - (xy 177.237264 101.496246) - (xy 177.277626 101.476809) - (xy 177.277626 101.476808) - (xy 177.277634 101.476805) - (xy 177.488217 101.333232) - (xy 177.67505 101.159877) - (xy 177.833959 100.960612) - (xy 177.961393 100.739888) - (xy 178.054508 100.502637) - (xy 178.111222 100.254157) - (xy 178.127647 100.034981) - (xy 178.130268 100.000004) - (xy 178.130268 99.999995) - (xy 178.111222 99.745845) - (xy 178.107768 99.730713) - (xy 178.054508 99.497363) - (xy 177.961393 99.260112) - (xy 177.833959 99.039388) - (xy 177.67505 98.840123) - (xy 177.488217 98.666768) - (xy 177.277634 98.523195) - (xy 177.27763 98.523193) - (xy 177.277627 98.523191) - (xy 177.277626 98.52319) - (xy 177.048006 98.412612) - (xy 177.048008 98.412612) - (xy 176.937036 98.378382) - (xy 176.904969 98.36849) - (xy 176.846711 98.329921) - (xy 176.818553 98.265976) - (xy 176.829437 98.196959) - (xy 176.875906 98.144782) - (xy 176.90497 98.131509) - (xy 177.048004 98.087389) - (xy 177.277634 97.976805) - (xy 177.488217 97.833232) - (xy 177.67505 97.659877) - (xy 177.833959 97.460612) - (xy 177.961393 97.239888) - (xy 178.054508 97.002637) - (xy 178.111222 96.754157) - (xy 178.130268 96.5) - (xy 178.126411 96.448535) - (xy 178.111222 96.245845) - (xy 178.098967 96.192153) - (xy 178.054508 95.997363) - (xy 177.961393 95.760112) - (xy 177.833959 95.539388) - (xy 177.67505 95.340123) - (xy 177.488217 95.166768) - (xy 177.277634 95.023195) - (xy 177.27763 95.023193) - (xy 177.277627 95.023191) - (xy 177.277626 95.02319) - (xy 177.048006 94.912612) - (xy 177.048008 94.912612) - (xy 176.96102 94.88578) - (xy 176.904969 94.86849) - (xy 176.846711 94.829921) - (xy 176.818553 94.765976) - (xy 176.829437 94.696959) - (xy 176.875906 94.644782) - (xy 176.90497 94.631509) - (xy 177.048004 94.587389) - (xy 177.277634 94.476805) - (xy 177.488217 94.333232) - (xy 177.67505 94.159877) - (xy 177.833959 93.960612) - (xy 177.961393 93.739888) - (xy 178.054508 93.502637) - (xy 178.111222 93.254157) - (xy 178.130268 93) - (xy 178.129925 92.995426) - (xy 178.111222 92.745845) - (xy 178.107571 92.729851) - (xy 178.054508 92.497363) - (xy 177.961393 92.260112) - (xy 177.833959 92.039388) - (xy 177.67505 91.840123) - (xy 177.488217 91.666768) - (xy 177.277634 91.523195) - (xy 177.27763 91.523193) - (xy 177.277627 91.523191) - (xy 177.277626 91.52319) - (xy 177.048006 91.412612) - (xy 177.048008 91.412612) - (xy 176.804466 91.337489) - (xy 176.804462 91.337488) - (xy 176.804458 91.337487) - (xy 176.683231 91.319214) - (xy 176.55244 91.2995) - (xy 176.552435 91.2995) - (xy 176.297565 91.2995) - (xy 176.297559 91.2995) - (xy 176.140609 91.323157) - (xy 176.045542 91.337487) - (xy 176.045538 91.337488) - (xy 176.045539 91.337488) - (xy 176.045533 91.337489) - (xy 175.801992 91.412612) - (xy 175.572373 91.52319) - (xy 175.572372 91.523191) - (xy 175.361782 91.666768) - (xy 175.174952 91.840121) - (xy 175.17495 91.840123) - (xy 175.016041 92.039388) - (xy 174.888608 92.260109) - (xy 174.795492 92.497362) - (xy 174.79549 92.497369) - (xy 174.738777 92.745845) - (xy 174.719732 92.999995) - (xy 174.719732 93.000004) - (xy 174.738777 93.254154) - (xy 174.738778 93.254157) - (xy 174.795492 93.502637) - (xy 174.823032 93.572808) - (xy 174.834118 93.601055) - (xy 174.840286 93.670651) - (xy 174.807847 93.732535) - (xy 174.80637 93.734037) - (xy 167.616208 100.924199) - (xy 167.603951 100.93402) - (xy 167.604134 100.934241) - (xy 167.598122 100.939214) - (xy 167.551432 100.988932) - (xy 167.550079 100.990329) - (xy 167.529889 101.010519) - (xy 167.529877 101.010532) - (xy 167.525621 101.016017) - (xy 167.521837 101.020447) - (xy 167.489937 101.054418) - (xy 167.489936 101.05442) - (xy 167.480284 101.071976) - (xy 167.46961 101.088226) - (xy 167.457329 101.104061) - (xy 167.457323 101.10407) - (xy 167.450676 101.11943) - (xy 167.405983 101.173136) - (xy 167.33935 101.194153) - (xy 167.271931 101.17581) - (xy 167.260715 101.168031) - (xy 167.088653 101.03411) - (xy 167.088643 101.034103) - (xy 167.060833 101.019053) - (xy 167.011243 100.969833) - (xy 166.996136 100.901616) - (xy 167.020307 100.836061) - (xy 167.060835 100.800945) - (xy 167.088649 100.785893) - (xy 167.267046 100.64704) - (xy 167.366832 100.538643) - (xy 167.420149 100.480727) - (xy 167.420151 100.480724) - (xy 167.420156 100.480719) - (xy 167.543802 100.291465) - (xy 167.634611 100.084441) - (xy 167.690107 99.865293) - (xy 167.700005 99.745843) - (xy 167.708775 99.640006) - (xy 167.708775 99.639993) - (xy 167.690107 99.41471) - (xy 167.690107 99.414707) - (xy 167.634611 99.195559) - (xy 167.543802 98.988535) - (xy 167.420156 98.799281) - (xy 167.420153 98.799278) - (xy 167.420149 98.799272) - (xy 167.267049 98.632963) - (xy 167.267048 98.632962) - (xy 167.267046 98.63296) - (xy 167.088649 98.494107) - (xy 167.088647 98.494106) - (xy 167.088646 98.494105) - (xy 167.088639 98.4941) - (xy 167.060836 98.479055) - (xy 167.011244 98.429837) - (xy 166.996135 98.36162) - (xy 167.020306 98.296064) - (xy 167.060836 98.260945) - (xy 167.088639 98.245899) - (xy 167.088642 98.245896) - (xy 167.088649 98.245893) - (xy 167.267046 98.10704) - (xy 167.420156 97.940719) - (xy 167.543802 97.751465) - (xy 167.634611 97.544441) - (xy 167.690107 97.325293) - (xy 167.705031 97.145185) - (xy 167.708775 97.100006) - (xy 167.708775 97.099993) - (xy 167.690107 96.87471) - (xy 167.690107 96.874707) - (xy 167.634611 96.655559) - (xy 167.543802 96.448535) - (xy 167.420156 96.259281) - (xy 167.420153 96.259278) - (xy 167.420149 96.259272) - (xy 167.267049 96.092963) - (xy 167.267048 96.092962) - (xy 167.267046 96.09296) - (xy 167.088649 95.954107) - (xy 166.962978 95.886097) - (xy 166.889832 95.846512) - (xy 166.889827 95.84651) - (xy 166.676017 95.773109) - (xy 166.494388 95.742801) - (xy 166.453033 95.7359) - (xy 166.226967 95.7359) - (xy 166.185612 95.742801) - (xy 166.003982 95.773109) - (xy 165.790172 95.84651) - (xy 165.790167 95.846512) - (xy 165.591352 95.954106) - (xy 165.412955 96.092959) - (xy 165.41295 96.092963) - (xy 165.25985 96.259272) - (xy 165.259842 96.259283) - (xy 165.173808 96.390968) - (xy 165.120662 96.436325) - (xy 165.05143 96.445748) - (xy 164.988095 96.416246) - (xy 164.966192 96.390968) - (xy 164.880157 96.259283) - (xy 164.880149 96.259272) - (xy 164.727049 96.092963) - (xy 164.727048 96.092962) - (xy 164.727046 96.09296) - (xy 164.548649 95.954107) - (xy 164.422978 95.886097) - (xy 164.349832 95.846512) - (xy 164.349827 95.84651) - (xy 164.136017 95.773109) - (xy 163.954388 95.742801) - (xy 163.913033 95.7359) - (xy 163.686967 95.7359) - (xy 163.645612 95.742801) - (xy 163.463982 95.773109) - (xy 163.250172 95.84651) - (xy 163.250167 95.846512) - (xy 163.051352 95.954106) - (xy 162.872955 96.092959) - (xy 162.87295 96.092963) - (xy 162.71985 96.259272) - (xy 162.719842 96.259283) - (xy 162.596198 96.448533) - (xy 162.505388 96.65556) - (xy 162.449892 96.87471) - (xy 162.431225 97.099993) - (xy 162.431225 97.100006) - (xy 162.449892 97.325289) - (xy 162.505388 97.544439) - (xy 162.596198 97.751466) - (xy 162.719842 97.940716) - (xy 162.71985 97.940727) - (xy 162.87295 98.107036) - (xy 162.872954 98.10704) - (xy 163.051351 98.245893) - (xy 163.079165 98.260945) - (xy 163.128755 98.310165) - (xy 163.143863 98.378382) - (xy 163.119692 98.443937) - (xy 163.079165 98.479055) - (xy 163.051352 98.494106) - (xy 162.872955 98.632959) - (xy 162.87295 98.632963) - (xy 162.71985 98.799272) - (xy 162.719842 98.799283) - (xy 162.596198 98.988533) - (xy 162.505388 99.19556) - (xy 162.449892 99.41471) - (xy 162.431225 99.639993) - (xy 162.431225 99.640006) - (xy 162.449892 99.865291) - (xy 162.462951 99.916861) - (xy 162.460325 99.986681) - (xy 162.430426 100.034981) - (xy 161.504645 100.960762) - (xy 161.443322 100.994247) - (xy 161.37363 100.989263) - (xy 161.317697 100.947391) - (xy 161.296758 100.903521) - (xy 161.244136 100.695721) - (xy 161.15336 100.488774) - (xy 161.074888 100.368663) - (xy 160.439521 101.00403) - (xy 160.416845 100.926799) - (xy 160.337869 100.80391) - (xy 160.22747 100.708248) - (xy 160.094592 100.647565) - (xy 160.089599 100.646847) - (xy 160.722859 100.013587) - (xy 160.722858 100.013585) - (xy 160.698378 99.994531) - (xy 160.698368 99.994524) - (xy 160.499639 99.886977) - (xy 160.499624 99.88697) - (xy 160.285893 99.813596) - (xy 160.06299 99.7764) - (xy 159.83701 99.7764) - (xy 159.614106 99.813596) - (xy 159.400375 99.88697) - (xy 159.400369 99.886972) - (xy 159.201623 99.994529) - (xy 159.201617 99.994533) - (xy 159.17714 100.013584) - (xy 159.17714 100.013586) - (xy 159.810401 100.646847) - (xy 159.805408 100.647565) - (xy 159.67253 100.708248) - (xy 159.562131 100.80391) - (xy 159.483155 100.926799) - (xy 159.460477 101.00403) - (xy 158.82511 100.368664) - (xy 158.746638 100.488777) - (xy 158.746637 100.488779) - (xy 158.655863 100.695721) - (xy 158.600388 100.914786) - (xy 158.600386 100.914797) - (xy 158.581727 101.139993) - (xy 158.581727 101.140006) - (xy 158.600386 101.365202) - (xy 158.600388 101.365213) - (xy 158.655863 101.584278) - (xy 158.746639 101.791225) - (xy 158.825109 101.911334) - (xy 159.460477 101.275967) - (xy 159.483155 101.353201) - (xy 159.562131 101.47609) - (xy 159.67253 101.571752) - (xy 159.805408 101.632435) - (xy 159.810399 101.633152) - (xy 159.168298 102.275253) - (xy 159.160181 102.310949) - (xy 159.110313 102.359887) - (xy 159.051913 102.3745) - (xy 151.598434 102.3745) - (xy 151.531395 102.354815) - (xy 151.48564 102.302011) - (xy 151.475696 102.232853) - (xy 151.504721 102.169297) - (xy 151.508016 102.165643) - (xy 151.548607 102.122418) - (xy 151.549846 102.121139) - (xy 151.57012 102.100867) - (xy 151.574379 102.095374) - (xy 151.578152 102.090957) - (xy 151.610062 102.056978) - (xy 151.619713 102.03942) - (xy 151.630396 102.023157) - (xy 151.642673 102.007332) - (xy 151.661185 101.964549) - (xy 151.663738 101.959337) - (xy 151.686197 101.918488) - (xy 151.69118 101.899076) - (xy 151.697481 101.880676) - (xy 151.705437 101.862292) - (xy 151.712729 101.816248) - (xy 151.713906 101.810567) - (xy 151.7255 101.765415) - (xy 151.7255 101.745378) - (xy 151.727027 101.725978) - (xy 151.73016 101.7062) - (xy 151.725775 101.659811) - (xy 151.7255 101.653973) - (xy 151.7255 98.386425) - (xy 151.745185 98.319386) - (xy 151.790481 98.277371) - (xy 151.848649 98.245893) - (xy 152.027046 98.10704) - (xy 152.180156 97.940719) - (xy 152.266193 97.809028) - (xy 152.319338 97.763675) - (xy 152.388569 97.754251) - (xy 152.451905 97.783753) - (xy 152.473804 97.809025) - (xy 152.559844 97.940719) - (xy 152.559849 97.940724) - (xy 152.55985 97.940727) - (xy 152.71295 98.107036) - (xy 152.712954 98.10704) - (xy 152.891351 98.245893) - (xy 153.090169 98.353488) - (xy 153.090172 98.353489) - (xy 153.303982 98.42689) - (xy 153.303984 98.42689) - (xy 153.303986 98.426891) - (xy 153.526967 98.4641) - (xy 153.526968 98.4641) - (xy 153.753032 98.4641) - (xy 153.753033 98.4641) - (xy 153.976014 98.426891) - (xy 154.189831 98.353488) - (xy 154.388649 98.245893) - (xy 154.567046 98.10704) - (xy 154.720156 97.940719) - (xy 154.806193 97.809028) - (xy 154.859338 97.763675) - (xy 154.928569 97.754251) - (xy 154.991905 97.783753) - (xy 155.013804 97.809025) - (xy 155.099844 97.940719) - (xy 155.099849 97.940724) - (xy 155.09985 97.940727) - (xy 155.25295 98.107036) - (xy 155.252954 98.10704) - (xy 155.431351 98.245893) - (xy 155.630169 98.353488) - (xy 155.630172 98.353489) - (xy 155.843982 98.42689) - (xy 155.843984 98.42689) - (xy 155.843986 98.426891) - (xy 156.066967 98.4641) - (xy 156.066968 98.4641) - (xy 156.293032 98.4641) - (xy 156.293033 98.4641) - (xy 156.516014 98.426891) - (xy 156.729831 98.353488) - (xy 156.928649 98.245893) - (xy 157.107046 98.10704) - (xy 157.260156 97.940719) - (xy 157.383802 97.751465) - (xy 157.474611 97.544441) - (xy 157.530107 97.325293) - (xy 157.545031 97.145185) - (xy 157.548775 97.100006) - (xy 157.548775 97.099993) - (xy 157.530107 96.87471) - (xy 157.530107 96.874707) - (xy 157.474611 96.655559) - (xy 157.383802 96.448535) - (xy 157.260156 96.259281) - (xy 157.260153 96.259278) - (xy 157.260149 96.259272) - (xy 157.107049 96.092963) - (xy 157.107048 96.092962) - (xy 157.107046 96.09296) - (xy 156.928649 95.954107) - (xy 156.802978 95.886097) - (xy 156.729832 95.846512) - (xy 156.729827 95.84651) - (xy 156.516017 95.773109) - (xy 156.334388 95.742801) - (xy 156.293033 95.7359) - (xy 156.066967 95.7359) - (xy 156.025612 95.742801) - (xy 155.843982 95.773109) - (xy 155.630172 95.84651) - (xy 155.630167 95.846512) - (xy 155.431352 95.954106) - (xy 155.252955 96.092959) - (xy 155.25295 96.092963) - (xy 155.09985 96.259272) - (xy 155.099842 96.259283) - (xy 155.013808 96.390968) - (xy 154.960662 96.436325) - (xy 154.89143 96.445748) - (xy 154.828095 96.416246) - (xy 154.806192 96.390968) - (xy 154.720157 96.259283) - (xy 154.720149 96.259272) - (xy 154.567049 96.092963) - (xy 154.567048 96.092962) - (xy 154.567046 96.09296) - (xy 154.388649 95.954107) - (xy 154.388647 95.954106) - (xy 154.388646 95.954105) - (xy 154.388643 95.954103) - (xy 154.262981 95.886097) - (xy 154.213391 95.836877) - (xy 154.198 95.777043) - (xy 154.198 95.705237) - (xy 154.199724 95.689623) - (xy 154.199438 95.689596) - (xy 154.200172 95.681833) - (xy 154.198031 95.61367) - (xy 154.198 95.611723) - (xy 154.198 92.897952) - (xy 154.217685 92.830913) - (xy 154.234319 92.810271) - (xy 155.631979 91.412611) - (xy 157.12013 89.924459) - (xy 157.181451 89.890976) - (xy 157.248075 89.894862) - (xy 157.253983 89.89689) - (xy 157.253986 89.896891) - (xy 157.476967 89.9341) - (xy 157.476968 89.9341) - (xy 157.703032 89.9341) - (xy 157.703033 89.9341) - (xy 157.926014 89.896891) - (xy 158.139831 89.823488) - (xy 158.338649 89.715893) - (xy 158.517046 89.57704) - (xy 158.670156 89.410719) - (xy 158.756193 89.279028) - (xy 158.809338 89.233675) - (xy 158.878569 89.224251) - (xy 158.941905 89.253753) - (xy 158.963804 89.279025) - (xy 159.049844 89.410719) - (xy 159.049849 89.410724) - (xy 159.04985 89.410727) - (xy 159.20295 89.577036) - (xy 159.202954 89.57704) - (xy 159.381351 89.715893) - (xy 159.580169 89.823488) - (xy 159.580172 89.823489) - (xy 159.793982 89.89689) - (xy 159.793984 89.89689) - (xy 159.793986 89.896891) - (xy 160.016967 89.9341) - (xy 160.016968 89.9341) - (xy 160.243032 89.9341) - (xy 160.243033 89.9341) - (xy 160.466014 89.896891) - (xy 160.679831 89.823488) - (xy 160.878649 89.715893) - (xy 161.057046 89.57704) - (xy 161.111815 89.517545) - (xy 161.171699 89.481557) - (xy 161.241537 89.483657) - (xy 161.299153 89.52318) - (xy 161.319224 89.558196) - (xy 161.363046 89.675688) - (xy 161.363049 89.675693) - (xy 161.449209 89.790787) - (xy 161.449212 89.79079) - (xy 161.564306 89.87695) - (xy 161.564313 89.876954) - (xy 161.69902 89.927196) - (xy 161.699027 89.927198) - (xy 161.758555 89.933599) - (xy 161.758572 89.9336) - (xy 162.42 89.9336) - (xy 162.42 89.014297) - (xy 162.525408 89.062435) - (xy 162.633666 89.078) - (xy 162.706334 89.078) - (xy 162.814592 89.062435) - (xy 162.92 89.014297) - (xy 162.92 89.9336) - (xy 163.581428 89.9336) - (xy 163.581444 89.933599) - (xy 163.640972 89.927198) - (xy 163.640979 89.927196) - (xy 163.775686 89.876954) - (xy 163.775693 89.87695) - (xy 163.890787 89.79079) - (xy 163.89079 89.790787) - (xy 163.97695 89.675693) - (xy 163.976954 89.675686) - (xy 164.020775 89.558197) - (xy 164.062646 89.502263) - (xy 164.12811 89.477846) - (xy 164.196383 89.492698) - (xy 164.228186 89.517547) - (xy 164.269578 89.56251) - (xy 164.282954 89.57704) - (xy 164.461351 89.715893) - (xy 164.660169 89.823488) - (xy 164.660172 89.823489) - (xy 164.873982 89.89689) - (xy 164.873984 89.89689) - (xy 164.873986 89.896891) - (xy 165.096967 89.9341) - (xy 165.096968 89.9341) - (xy 165.323032 89.9341) - (xy 165.323033 89.9341) - (xy 165.546014 89.896891) - (xy 165.759831 89.823488) - (xy 165.958649 89.715893) - (xy 166.137046 89.57704) - (xy 166.290156 89.410719) - (xy 166.413802 89.221465) - (xy 166.504611 89.014441) - (xy 166.560107 88.795293) - (xy 166.570476 88.670156) - (xy 166.578775 88.570006) - (xy 166.578775 88.569993) - (xy 166.560107 88.34471) - (xy 166.560107 88.344707) - (xy 166.504611 88.125559) - (xy 166.413802 87.918535) - (xy 166.401695 87.900004) - (xy 174.719732 87.900004) - (xy 174.738777 88.154154) - (xy 174.785029 88.356799) - (xy 174.795492 88.402637) - (xy 174.888607 88.639888) - (xy 175.016041 88.860612) - (xy 175.17495 89.059877) - (xy 175.361783 89.233232) - (xy 175.572366 89.376805) - (xy 175.572371 89.376807) - (xy 175.572372 89.376808) - (xy 175.572373 89.376809) - (xy 175.694328 89.435538) - (xy 175.801992 89.487387) - (xy 175.801993 89.487387) - (xy 175.801996 89.487389) - (xy 176.045542 89.562513) - (xy 176.297565 89.6005) - (xy 176.552435 89.6005) - (xy 176.804458 89.562513) - (xy 177.048004 89.487389) - (xy 177.277634 89.376805) - (xy 177.488217 89.233232) - (xy 177.67505 89.059877) - (xy 177.833959 88.860612) - (xy 177.961393 88.639888) - (xy 178.054508 88.402637) - (xy 178.111222 88.154157) - (xy 178.130268 87.9) - (xy 178.129237 87.886246) - (xy 178.111222 87.645845) - (xy 178.109371 87.637736) - (xy 178.054508 87.397363) - (xy 177.961393 87.160112) - (xy 177.833959 86.939388) - (xy 177.67505 86.740123) - (xy 177.488217 86.566768) - (xy 177.277634 86.423195) - (xy 177.27763 86.423193) - (xy 177.277627 86.423191) - (xy 177.277626 86.42319) - (xy 177.048006 86.312612) - (xy 177.048008 86.312612) - (xy 176.90497 86.268491) - (xy 176.846711 86.229921) - (xy 176.818553 86.165976) - (xy 176.829437 86.096959) - (xy 176.875906 86.044782) - (xy 176.90497 86.031509) - (xy 177.048004 85.987389) - (xy 177.277634 85.876805) - (xy 177.488217 85.733232) - (xy 177.67505 85.559877) - (xy 177.833959 85.360612) - (xy 177.961393 85.139888) - (xy 178.054508 84.902637) - (xy 178.111222 84.654157) - (xy 178.130268 84.4) - (xy 178.111222 84.145843) - (xy 178.054508 83.897363) - (xy 177.961393 83.660112) - (xy 177.833959 83.439388) - (xy 177.67505 83.240123) - (xy 177.488217 83.066768) - (xy 177.277634 82.923195) - (xy 177.27763 82.923193) - (xy 177.277627 82.923191) - (xy 177.277626 82.92319) - (xy 177.048006 82.812612) - (xy 177.048008 82.812612) - (xy 176.90497 82.768491) - (xy 176.846711 82.729921) - (xy 176.818553 82.665976) - (xy 176.829437 82.596959) - (xy 176.875906 82.544782) - (xy 176.90497 82.531509) - (xy 177.048004 82.487389) - (xy 177.277634 82.376805) - (xy 177.488217 82.233232) - (xy 177.67505 82.059877) - (xy 177.833959 81.860612) - (xy 177.961393 81.639888) - (xy 178.054508 81.402637) - (xy 178.111222 81.154157) - (xy 178.130268 80.9) - (xy 178.129076 80.8841) - (xy 178.111222 80.645845) - (xy 178.077258 80.49704) - (xy 178.054508 80.397363) - (xy 177.961393 80.160112) - (xy 177.833959 79.939388) - (xy 177.67505 79.740123) - (xy 177.488217 79.566768) - (xy 177.277634 79.423195) - (xy 177.27763 79.423193) - (xy 177.277627 79.423191) - (xy 177.277626 79.42319) - (xy 177.048009 79.312613) - (xy 177.048006 79.312612) - (xy 177.048004 79.312611) - (xy 176.982445 79.292388) - (xy 176.904969 79.26849) - (xy 176.846711 79.229919) - (xy 176.818553 79.165974) - (xy 176.829437 79.096957) - (xy 176.875906 79.044781) - (xy 176.904965 79.03151) - (xy 177.048004 78.987389) - (xy 177.277634 78.876805) - (xy 177.488217 78.733232) - (xy 177.67505 78.559877) - (xy 177.833959 78.360612) - (xy 177.961393 78.139888) - (xy 178.054508 77.902637) - (xy 178.111222 77.654157) - (xy 178.130268 77.4) - (xy 178.129851 77.394441) - (xy 178.111222 77.145845) - (xy 178.054509 76.897369) - (xy 178.054508 76.897363) - (xy 177.961393 76.660112) - (xy 177.833959 76.439388) - (xy 177.67505 76.240123) - (xy 177.488217 76.066768) - (xy 177.277634 75.923195) - (xy 177.27763 75.923193) - (xy 177.277627 75.923191) - (xy 177.277626 75.92319) - (xy 177.048006 75.812612) - (xy 177.048008 75.812612) - (xy 176.90497 75.768491) - (xy 176.846711 75.729921) - (xy 176.818553 75.665976) - (xy 176.829437 75.596959) - (xy 176.875906 75.544782) - (xy 176.90497 75.531509) - (xy 177.048004 75.487389) - (xy 177.277634 75.376805) - (xy 177.488217 75.233232) - (xy 177.67505 75.059877) - (xy 177.833959 74.860612) - (xy 177.961393 74.639888) - (xy 178.054508 74.402637) - (xy 178.111222 74.154157) - (xy 178.130268 73.9) - (xy 178.128547 73.87704) - (xy 178.111222 73.645845) - (xy 178.095972 73.579031) - (xy 178.054508 73.397363) - (xy 177.961393 73.160112) - (xy 177.833959 72.939388) - (xy 177.67505 72.740123) - (xy 177.488217 72.566768) - (xy 177.277634 72.423195) - (xy 177.27763 72.423193) - (xy 177.277627 72.423191) - (xy 177.277626 72.42319) - (xy 177.048006 72.312612) - (xy 177.048008 72.312612) - (xy 176.90497 72.268491) - (xy 176.846711 72.229921) - (xy 176.818553 72.165976) - (xy 176.829437 72.096959) - (xy 176.875906 72.044782) - (xy 176.90497 72.031509) - (xy 177.048004 71.987389) - (xy 177.277634 71.876805) - (xy 177.488217 71.733232) - (xy 177.67505 71.559877) - (xy 177.833959 71.360612) - (xy 177.961393 71.139888) - (xy 178.054508 70.902637) - (xy 178.111222 70.654157) - (xy 178.130268 70.4) - (xy 178.111222 70.145843) - (xy 178.054508 69.897363) - (xy 177.961393 69.660112) - (xy 177.833959 69.439388) - (xy 177.67505 69.240123) - (xy 177.488217 69.066768) - (xy 177.277634 68.923195) - (xy 177.27763 68.923193) - (xy 177.277627 68.923191) - (xy 177.277626 68.92319) - (xy 177.048006 68.812612) - (xy 177.048008 68.812612) - (xy 176.90497 68.768491) - (xy 176.846711 68.729921) - (xy 176.818553 68.665976) - (xy 176.829437 68.596959) - (xy 176.875906 68.544782) - (xy 176.90497 68.531509) - (xy 177.048004 68.487389) - (xy 177.277634 68.376805) - (xy 177.488217 68.233232) - (xy 177.67505 68.059877) - (xy 177.833959 67.860612) - (xy 177.961393 67.639888) - (xy 178.054508 67.402637) - (xy 178.111222 67.154157) - (xy 178.122229 67.007282) - (xy 178.130268 66.900004) - (xy 178.130268 66.899995) - (xy 178.111222 66.645845) - (xy 178.054509 66.397369) - (xy 178.054508 66.397363) - (xy 177.961393 66.160112) - (xy 177.833959 65.939388) - (xy 177.67505 65.740123) - (xy 177.488217 65.566768) - (xy 177.277634 65.423195) - (xy 177.27763 65.423193) - (xy 177.277627 65.423191) - (xy 177.277626 65.42319) - (xy 177.048009 65.312613) - (xy 177.048006 65.312612) - (xy 177.048004 65.312611) - (xy 176.982445 65.292388) - (xy 176.904969 65.26849) - (xy 176.846711 65.229919) - (xy 176.818553 65.165974) - (xy 176.829437 65.096957) - (xy 176.875906 65.044781) - (xy 176.904965 65.03151) - (xy 177.048004 64.987389) - (xy 177.277634 64.876805) - (xy 177.488217 64.733232) - (xy 177.67505 64.559877) - (xy 177.833959 64.360612) - (xy 177.961393 64.139888) - (xy 178.054508 63.902637) - (xy 178.111222 63.654157) - (xy 178.130268 63.4) - (xy 178.111222 63.145843) - (xy 178.054508 62.897363) - (xy 177.961393 62.660112) - (xy 177.833959 62.439388) - (xy 177.67505 62.240123) - (xy 177.488217 62.066768) - (xy 177.277634 61.923195) - (xy 177.27763 61.923193) - (xy 177.277627 61.923191) - (xy 177.277626 61.92319) - (xy 177.048006 61.812612) - (xy 177.048008 61.812612) - (xy 176.804466 61.737489) - (xy 176.804462 61.737488) - (xy 176.804458 61.737487) - (xy 176.683231 61.719214) - (xy 176.55244 61.6995) - (xy 176.552435 61.6995) - (xy 176.297565 61.6995) - (xy 176.297559 61.6995) - (xy 176.140609 61.723157) - (xy 176.045542 61.737487) - (xy 176.045538 61.737488) - (xy 176.045539 61.737488) - (xy 176.045533 61.737489) - (xy 175.801992 61.812612) - (xy 175.572373 61.92319) - (xy 175.572372 61.923191) - (xy 175.361782 62.066768) - (xy 175.174952 62.240121) - (xy 175.17495 62.240123) - (xy 175.016041 62.439388) - (xy 174.888608 62.660109) - (xy 174.795492 62.897362) - (xy 174.79549 62.897369) - (xy 174.738777 63.145845) - (xy 174.719732 63.399995) - (xy 174.719732 63.400004) - (xy 174.738777 63.654154) - (xy 174.76234 63.757392) - (xy 174.795492 63.902637) - (xy 174.888607 64.139888) - (xy 175.016041 64.360612) - (xy 175.17495 64.559877) - (xy 175.361783 64.733232) - (xy 175.572366 64.876805) - (xy 175.572371 64.876807) - (xy 175.572372 64.876808) - (xy 175.572373 64.876809) - (xy 175.694328 64.935538) - (xy 175.801992 64.987387) - (xy 175.801993 64.987387) - (xy 175.801996 64.987389) - (xy 175.887395 65.013731) - (xy 175.945029 65.031509) - (xy 176.003288 65.07008) - (xy 176.031446 65.134024) - (xy 176.020562 65.203041) - (xy 175.974093 65.255218) - (xy 175.945029 65.268491) - (xy 175.801992 65.312612) - (xy 175.572373 65.42319) - (xy 175.572372 65.423191) - (xy 175.361782 65.566768) - (xy 175.174952 65.740121) - (xy 175.17495 65.740123) - (xy 175.016041 65.939388) - (xy 174.888608 66.160109) - (xy 174.795492 66.397362) - (xy 174.79549 66.397369) - (xy 174.738777 66.645845) - (xy 174.719732 66.899995) - (xy 174.719732 66.900004) - (xy 174.738777 67.154154) - (xy 174.738778 67.154157) - (xy 174.795492 67.402637) - (xy 174.888607 67.639888) - (xy 175.016041 67.860612) - (xy 175.17495 68.059877) - (xy 175.361783 68.233232) - (xy 175.572366 68.376805) - (xy 175.572371 68.376807) - (xy 175.572372 68.376808) - (xy 175.572373 68.376809) - (xy 175.694328 68.435538) - (xy 175.801992 68.487387) - (xy 175.801993 68.487387) - (xy 175.801996 68.487389) - (xy 175.90836 68.520197) - (xy 175.945029 68.531509) - (xy 176.003288 68.57008) - (xy 176.031446 68.634024) - (xy 176.020562 68.703041) - (xy 175.974093 68.755218) - (xy 175.945029 68.768491) - (xy 175.801992 68.812612) - (xy 175.572373 68.92319) - (xy 175.572372 68.923191) - (xy 175.361782 69.066768) - (xy 175.174952 69.240121) - (xy 175.17495 69.240123) - (xy 175.016041 69.439388) - (xy 174.888608 69.660109) - (xy 174.795492 69.897362) - (xy 174.79549 69.897369) - (xy 174.738777 70.145845) - (xy 174.719732 70.399995) - (xy 174.719732 70.400004) - (xy 174.738777 70.654154) - (xy 174.790736 70.881802) - (xy 174.795492 70.902637) - (xy 174.888607 71.139888) - (xy 175.016041 71.360612) - (xy 175.17495 71.559877) - (xy 175.361783 71.733232) - (xy 175.572366 71.876805) - (xy 175.572371 71.876807) - (xy 175.572372 71.876808) - (xy 175.572373 71.876809) - (xy 175.667153 71.922452) - (xy 175.801996 71.987389) - (xy 175.945029 72.031508) - (xy 176.003287 72.070078) - (xy 176.031445 72.134023) - (xy 176.020562 72.203039) - (xy 175.974094 72.255216) - (xy 175.94503 72.26849) - (xy 175.80199 72.312613) - (xy 175.572373 72.42319) - (xy 175.572372 72.423191) - (xy 175.361782 72.566768) - (xy 175.174952 72.740121) - (xy 175.17495 72.740123) - (xy 175.016041 72.939388) - (xy 174.888608 73.160109) - (xy 174.795492 73.397362) - (xy 174.79549 73.397369) - (xy 174.738777 73.645845) - (xy 174.719732 73.899995) - (xy 174.719732 73.900004) - (xy 174.738777 74.154154) - (xy 174.755448 74.227196) - (xy 174.795492 74.402637) - (xy 174.888607 74.639888) - (xy 175.016041 74.860612) - (xy 175.17495 75.059877) - (xy 175.361783 75.233232) - (xy 175.572366 75.376805) - (xy 175.572371 75.376807) - (xy 175.572372 75.376808) - (xy 175.572373 75.376809) - (xy 175.694328 75.435538) - (xy 175.801992 75.487387) - (xy 175.801993 75.487387) - (xy 175.801996 75.487389) - (xy 175.90836 75.520197) - (xy 175.945029 75.531509) - (xy 176.003288 75.57008) - (xy 176.031446 75.634024) - (xy 176.020562 75.703041) - (xy 175.974093 75.755218) - (xy 175.945029 75.768491) - (xy 175.801992 75.812612) - (xy 175.572373 75.92319) - (xy 175.572372 75.923191) - (xy 175.361782 76.066768) - (xy 175.174952 76.240121) - (xy 175.17495 76.240123) - (xy 175.016041 76.439388) - (xy 174.888608 76.660109) - (xy 174.795492 76.897362) - (xy 174.79549 76.897369) - (xy 174.738777 77.145845) - (xy 174.719732 77.399995) - (xy 174.719732 77.400004) - (xy 174.738777 77.654154) - (xy 174.769948 77.790724) - (xy 174.795492 77.902637) - (xy 174.888607 78.139888) - (xy 175.016041 78.360612) - (xy 175.17495 78.559877) - (xy 175.361783 78.733232) - (xy 175.572366 78.876805) - (xy 175.572371 78.876807) - (xy 175.572372 78.876808) - (xy 175.572373 78.876809) - (xy 175.694328 78.935538) - (xy 175.801992 78.987387) - (xy 175.801993 78.987387) - (xy 175.801996 78.987389) - (xy 175.90836 79.020197) - (xy 175.945029 79.031509) - (xy 176.003288 79.07008) - (xy 176.031446 79.134024) - (xy 176.020562 79.203041) - (xy 175.974093 79.255218) - (xy 175.945029 79.268491) - (xy 175.801992 79.312612) - (xy 175.572373 79.42319) - (xy 175.572372 79.423191) - (xy 175.361782 79.566768) - (xy 175.174952 79.740121) - (xy 175.17495 79.740123) - (xy 175.016041 79.939388) - (xy 174.888608 80.160109) - (xy 174.795492 80.397362) - (xy 174.79549 80.397369) - (xy 174.738777 80.645845) - (xy 174.719732 80.899995) - (xy 174.719732 80.900004) - (xy 174.738777 81.154154) - (xy 174.78999 81.378535) - (xy 174.795492 81.402637) - (xy 174.888607 81.639888) - (xy 175.016041 81.860612) - (xy 175.17495 82.059877) - (xy 175.361783 82.233232) - (xy 175.572366 82.376805) - (xy 175.572371 82.376807) - (xy 175.572372 82.376808) - (xy 175.572373 82.376809) - (xy 175.694328 82.435538) - (xy 175.801992 82.487387) - (xy 175.801993 82.487387) - (xy 175.801996 82.487389) - (xy 175.90836 82.520197) - (xy 175.945029 82.531509) - (xy 176.003288 82.57008) - (xy 176.031446 82.634024) - (xy 176.020562 82.703041) - (xy 175.974093 82.755218) - (xy 175.945029 82.768491) - (xy 175.801992 82.812612) - (xy 175.572373 82.92319) - (xy 175.572372 82.923191) - (xy 175.361782 83.066768) - (xy 175.174952 83.240121) - (xy 175.17495 83.240123) - (xy 175.016041 83.439388) - (xy 174.888608 83.660109) - (xy 174.795492 83.897362) - (xy 174.79549 83.897369) - (xy 174.738777 84.145845) - (xy 174.719732 84.399995) - (xy 174.719732 84.400004) - (xy 174.738777 84.654154) - (xy 174.738778 84.654157) - (xy 174.795492 84.902637) - (xy 174.888607 85.139888) - (xy 175.016041 85.360612) - (xy 175.17495 85.559877) - (xy 175.361783 85.733232) - (xy 175.572366 85.876805) - (xy 175.572371 85.876807) - (xy 175.572372 85.876808) - (xy 175.572373 85.876809) - (xy 175.649311 85.91386) - (xy 175.801996 85.987389) - (xy 175.945029 86.031508) - (xy 176.003287 86.070078) - (xy 176.031445 86.134023) - (xy 176.020562 86.203039) - (xy 175.974094 86.255216) - (xy 175.94503 86.26849) - (xy 175.80199 86.312613) - (xy 175.572373 86.42319) - (xy 175.572372 86.423191) - (xy 175.361782 86.566768) - (xy 175.174952 86.740121) - (xy 175.17495 86.740123) - (xy 175.016041 86.939388) - (xy 174.888608 87.160109) - (xy 174.795492 87.397362) - (xy 174.79549 87.397369) - (xy 174.738777 87.645845) - (xy 174.719732 87.899995) - (xy 174.719732 87.900004) - (xy 166.401695 87.900004) - (xy 166.401692 87.9) - (xy 166.290157 87.729283) - (xy 166.290149 87.729272) - (xy 166.137049 87.562963) - (xy 166.137048 87.562962) - (xy 166.137046 87.56296) - (xy 165.958649 87.424107) - (xy 165.909242 87.397369) - (xy 165.759832 87.316512) - (xy 165.759827 87.31651) - (xy 165.546017 87.243109) - (xy 165.364388 87.212801) - (xy 165.323033 87.2059) - (xy 165.096967 87.2059) - (xy 165.055612 87.212801) - (xy 164.873982 87.243109) - (xy 164.660172 87.31651) - (xy 164.660167 87.316512) - (xy 164.461352 87.424106) - (xy 164.282955 87.562958) - (xy 164.228186 87.622453) - (xy 164.168298 87.658443) - (xy 164.09846 87.656342) - (xy 164.040845 87.616817) - (xy 164.020775 87.581802) - (xy 163.976954 87.464313) - (xy 163.97695 87.464306) - (xy 163.89079 87.349212) - (xy 163.890787 87.349209) - (xy 163.775693 87.263049) - (xy 163.775686 87.263045) - (xy 163.640979 87.212803) - (xy 163.640972 87.212801) - (xy 163.581444 87.2064) - (xy 162.92 87.2064) - (xy 162.92 88.125702) - (xy 162.814592 88.077565) - (xy 162.706334 88.062) - (xy 162.633666 88.062) - (xy 162.525408 88.077565) - (xy 162.42 88.125702) - (xy 162.42 87.2064) - (xy 161.758555 87.2064) - (xy 161.699027 87.212801) - (xy 161.69902 87.212803) - (xy 161.564313 87.263045) - (xy 161.564306 87.263049) - (xy 161.449212 87.349209) - (xy 161.449209 87.349212) - (xy 161.363049 87.464306) - (xy 161.363046 87.464312) - (xy 161.319224 87.581803) - (xy 161.277352 87.637736) - (xy 161.211887 87.662153) - (xy 161.143615 87.647301) - (xy 161.111813 87.622452) - (xy 161.057049 87.562963) - (xy 161.057048 87.562962) - (xy 161.057046 87.56296) - (xy 160.878649 87.424107) - (xy 160.829242 87.397369) - (xy 160.679832 87.316512) - (xy 160.679827 87.31651) - (xy 160.466017 87.243109) - (xy 160.284388 87.212801) - (xy 160.243033 87.2059) - (xy 160.016967 87.2059) - (xy 159.975612 87.212801) - (xy 159.793982 87.243109) - (xy 159.580172 87.31651) - (xy 159.580167 87.316512) - (xy 159.381352 87.424106) - (xy 159.202955 87.562959) - (xy 159.20295 87.562963) - (xy 159.04985 87.729272) - (xy 159.049842 87.729283) - (xy 158.963808 87.860968) - (xy 158.910662 87.906325) - (xy 158.84143 87.915748) - (xy 158.778095 87.886246) - (xy 158.756192 87.860968) - (xy 158.670157 87.729283) - (xy 158.670149 87.729272) - (xy 158.517049 87.562963) - (xy 158.517048 87.562962) - (xy 158.517046 87.56296) - (xy 158.338649 87.424107) - (xy 158.289242 87.397369) - (xy 158.139832 87.316512) - (xy 158.139827 87.31651) - (xy 157.926017 87.243109) - (xy 157.744388 87.212801) - (xy 157.703033 87.2059) - (xy 157.476967 87.2059) - (xy 157.435612 87.212801) - (xy 157.253982 87.243109) - (xy 157.040172 87.31651) - (xy 157.040167 87.316512) - (xy 156.841352 87.424106) - (xy 156.662955 87.562959) - (xy 156.66295 87.562963) - (xy 156.50985 87.729272) - (xy 156.509842 87.729283) - (xy 156.386198 87.918533) - (xy 156.295388 88.12556) - (xy 156.239892 88.34471) - (xy 156.221225 88.569993) - (xy 156.221225 88.570006) - (xy 156.239892 88.795289) - (xy 156.271137 88.918674) - (xy 156.268512 88.988494) - (xy 156.238612 89.036795) - (xy 153.188708 92.086699) - (xy 153.176451 92.09652) - (xy 153.176634 92.096741) - (xy 153.170622 92.101714) - (xy 153.123932 92.151432) - (xy 153.122579 92.152829) - (xy 153.102389 92.173019) - (xy 153.102377 92.173032) - (xy 153.098121 92.178517) - (xy 153.094337 92.182947) - (xy 153.062437 92.216918) - (xy 153.062436 92.21692) - (xy 153.052784 92.234476) - (xy 153.04211 92.250726) - (xy 153.029829 92.266561) - (xy 153.029824 92.266568) - (xy 153.011315 92.309338) - (xy 153.008745 92.314584) - (xy 152.986303 92.355406) - (xy 152.981322 92.374807) - (xy 152.975021 92.39321) - (xy 152.967062 92.411602) - (xy 152.967061 92.411605) - (xy 152.959771 92.457627) - (xy 152.958587 92.463346) - (xy 152.947001 92.508472) - (xy 152.947 92.508482) - (xy 152.947 92.528516) - (xy 152.945473 92.547915) - (xy 152.94234 92.567694) - (xy 152.94234 92.567695) - (xy 152.946725 92.614083) - (xy 152.947 92.619921) - (xy 152.947 93.896634) - (xy 152.927315 93.963673) - (xy 152.874511 94.009428) - (xy 152.805353 94.019372) - (xy 152.78978 94.015232) - (xy 152.789649 94.015743) - (xy 152.762693 94.008822) - (xy 152.744281 94.002518) - (xy 152.725898 93.994562) - (xy 152.725892 93.99456) - (xy 152.679874 93.987272) - (xy 152.674152 93.986087) - (xy 152.629021 93.9745) - (xy 152.629019 93.9745) - (xy 152.608984 93.9745) - (xy 152.589586 93.972973) - (xy 152.582162 93.971797) - (xy 152.569805 93.96984) - (xy 152.569804 93.96984) - (xy 152.523416 93.974225) - (xy 152.517578 93.9745) - (xy 151.603748 93.9745) - (xy 151.536709 93.954815) - (xy 151.5116 93.933474) - (xy 151.505873 93.927114) - (xy 151.505869 93.92711) - (xy 151.352734 93.815851) - (xy 151.352729 93.815848) - (xy 151.179807 93.738857) - (xy 151.179802 93.738855) - (xy 151.03146 93.707325) - (xy 150.994646 93.6995) - (xy 150.805354 93.6995) - (xy 150.772897 93.706398) - (xy 150.620197 93.738855) - (xy 150.620192 93.738857) - (xy 150.44727 93.815848) - (xy 150.447265 93.815851) - (xy 150.294129 93.927111) - (xy 150.167466 94.067785) - (xy 150.072821 94.231715) - (xy 150.072818 94.231722) - (xy 150.039836 94.333232) - (xy 150.014326 94.411744) - (xy 149.99454 94.6) - (xy 150.014326 94.788256) - (xy 150.014327 94.788259) - (xy 150.072818 94.968277) - (xy 150.072821 94.968284) - (xy 150.167467 95.132216) - (xy 150.269185 95.245185) - (xy 150.294129 95.272888) - (xy 150.447265 95.384148) - (xy 150.44727 95.384151) - (xy 150.620192 95.461142) - (xy 150.620197 95.461144) - (xy 150.805354 95.5005) - (xy 150.805355 95.5005) - (xy 150.901184 95.5005) - (xy 150.968223 95.520185) - (xy 150.975869 95.529009) - (xy 151.032021 95.492923) - (xy 151.041175 95.49061) - (xy 151.179803 95.461144) - (xy 151.35273 95.384151) - (xy 151.505871 95.272888) - (xy 151.508788 95.269647) - (xy 151.5116 95.266526) - (xy 151.571087 95.229879) - (xy 151.603748 95.2255) - (xy 152.239548 95.2255) - (xy 152.306587 95.245185) - (xy 152.327229 95.261819) - (xy 152.864133 95.798723) - (xy 152.897618 95.860046) - (xy 152.892634 95.929738) - (xy 152.852615 95.984256) - (xy 152.768579 96.049664) - (xy 152.712955 96.092959) - (xy 152.71295 96.092963) - (xy 152.55985 96.259272) - (xy 152.559842 96.259283) - (xy 152.473808 96.390968) - (xy 152.420662 96.436325) - (xy 152.35143 96.445748) - (xy 152.288095 96.416246) - (xy 152.266192 96.390968) - (xy 152.180157 96.259283) - (xy 152.180149 96.259272) - (xy 152.027049 96.092963) - (xy 152.027048 96.092962) - (xy 152.027046 96.09296) - (xy 151.848649 95.954107) - (xy 151.722978 95.886097) - (xy 151.649832 95.846512) - (xy 151.649827 95.84651) - (xy 151.436017 95.773109) - (xy 151.254388 95.742801) - (xy 151.213033 95.7359) - (xy 151.066956 95.7359) - (xy 150.999917 95.716215) - (xy 150.99227 95.70739) - (xy 150.936119 95.743477) - (xy 150.921596 95.746808) - (xy 150.891053 95.751905) - (xy 150.763982 95.773109) - (xy 150.550172 95.84651) - (xy 150.550167 95.846512) - (xy 150.351352 95.954106) - (xy 150.172955 96.092959) - (xy 150.17295 96.092963) - (xy 150.01985 96.259272) - (xy 150.019846 96.259278) - (xy 149.933807 96.390969) - (xy 149.88066 96.436325) - (xy 149.811429 96.445748) - (xy 149.748093 96.416245) - (xy 149.726192 96.390969) - (xy 149.640156 96.259281) - (xy 149.640151 96.259276) - (xy 149.640149 96.259272) - (xy 149.487049 96.092963) - (xy 149.487048 96.092962) - (xy 149.487046 96.09296) - (xy 149.308649 95.954107) - (xy 149.182978 95.886097) - (xy 149.109832 95.846512) - (xy 149.109827 95.84651) - (xy 148.896017 95.773109) - (xy 148.714388 95.742801) - (xy 148.673033 95.7359) - (xy 148.446967 95.7359) - (xy 148.405612 95.742801) - (xy 148.223982 95.773109) - (xy 148.010172 95.84651) - (xy 148.010167 95.846512) - (xy 147.811352 95.954106) - (xy 147.632955 96.092959) - (xy 147.63295 96.092963) - (xy 147.47985 96.259272) - (xy 147.479842 96.259283) - (xy 147.393808 96.390968) - (xy 147.340662 96.436325) - (xy 147.27143 96.445748) - (xy 147.208095 96.416246) - (xy 147.186192 96.390968) - (xy 147.100157 96.259283) - (xy 147.100149 96.259272) - (xy 146.947049 96.092963) - (xy 146.947048 96.092962) - (xy 146.947046 96.09296) - (xy 146.768649 95.954107) - (xy 146.642978 95.886097) - (xy 146.569832 95.846512) - (xy 146.569827 95.84651) - (xy 146.356017 95.773109) - (xy 146.174388 95.742801) - (xy 146.133033 95.7359) - (xy 145.906967 95.7359) - (xy 145.865612 95.742801) - (xy 145.683982 95.773109) - (xy 145.470172 95.84651) - (xy 145.470167 95.846512) - (xy 145.271352 95.954106) - (xy 145.092955 96.092959) - (xy 145.09295 96.092963) - (xy 144.93985 96.259272) - (xy 144.939842 96.259283) - (xy 144.853808 96.390968) - (xy 144.800662 96.436325) - (xy 144.73143 96.445748) - (xy 144.668095 96.416246) - (xy 144.646192 96.390968) - (xy 144.560157 96.259283) - (xy 144.560149 96.259272) - (xy 144.407049 96.092963) - (xy 144.407048 96.092962) - (xy 144.407046 96.09296) - (xy 144.228649 95.954107) - (xy 144.102978 95.886097) - (xy 144.029832 95.846512) - (xy 144.029827 95.84651) - (xy 143.816017 95.773109) - (xy 143.634388 95.742801) - (xy 143.593033 95.7359) - (xy 143.366967 95.7359) - (xy 143.325612 95.742801) - (xy 143.143982 95.773109) - (xy 142.930172 95.84651) - (xy 142.930167 95.846512) - (xy 142.731352 95.954106) - (xy 142.552955 96.092959) - (xy 142.55295 96.092963) - (xy 142.39985 96.259272) - (xy 142.399842 96.259283) - (xy 142.313808 96.390968) - (xy 142.260662 96.436325) - (xy 142.19143 96.445748) - (xy 142.128095 96.416246) - (xy 142.106192 96.390968) - (xy 142.020157 96.259283) - (xy 142.020149 96.259272) - (xy 141.867049 96.092963) - (xy 141.867048 96.092962) - (xy 141.867046 96.09296) - (xy 141.688649 95.954107) - (xy 141.562978 95.886097) - (xy 141.489832 95.846512) - (xy 141.489827 95.84651) - (xy 141.276017 95.773109) - (xy 141.094388 95.742801) - (xy 141.053033 95.7359) - (xy 140.826967 95.7359) - (xy 140.795112 95.741215) - (xy 140.60398 95.773109) - (xy 140.598066 95.77514) - (xy 140.528267 95.778286) - (xy 140.470128 95.745538) - (xy 139.552554 94.827964) - (xy 138.590803 93.866212) - (xy 138.58098 93.85395) - (xy 138.580759 93.854134) - (xy 138.575786 93.848122) - (xy 138.526066 93.801432) - (xy 138.524666 93.800075) - (xy 138.504476 93.779884) - (xy 138.498986 93.775625) - (xy 138.494561 93.771847) - (xy 138.460582 93.739938) - (xy 138.46058 93.739936) - (xy 138.460577 93.739935) - (xy 138.443029 93.730288) - (xy 138.426763 93.719604) - (xy 138.410933 93.707325) - (xy 138.368168 93.688818) - (xy 138.362922 93.686248) - (xy 138.322093 93.663803) - (xy 138.322092 93.663802) - (xy 138.302693 93.658822) - (xy 138.284281 93.652518) - (xy 138.265898 93.644562) - (xy 138.265892 93.64456) - (xy 138.219874 93.637272) - (xy 138.214152 93.636087) - (xy 138.169021 93.6245) - (xy 138.169019 93.6245) - (xy 138.148984 93.6245) - (xy 138.129586 93.622973) - (xy 138.122162 93.621797) - (xy 138.109805 93.61984) - (xy 138.109804 93.61984) - (xy 138.063416 93.624225) - (xy 138.057578 93.6245) - (xy 87.532743 93.6245) - (xy 87.517122 93.622775) - (xy 87.517095 93.623061) - (xy 87.509333 93.622326) - (xy 87.44114 93.624469) - (xy 87.439193 93.6245) - (xy 87.410649 93.6245) - (xy 87.403778 93.625367) - (xy 87.397959 93.625825) - (xy 87.351374 93.627289) - (xy 87.351368 93.62729) - (xy 87.332126 93.63288) - (xy 87.313087 93.636823) - (xy 87.293217 93.639334) - (xy 87.293203 93.639337) - (xy 87.249883 93.656488) - (xy 87.244358 93.65838) - (xy 87.199613 93.67138) - (xy 87.19961 93.671381) - (xy 87.182366 93.681579) - (xy 87.164905 93.690133) - (xy 87.146274 93.69751) - (xy 87.146262 93.697517) - (xy 87.10857 93.724902) - (xy 87.103687 93.728109) - (xy 87.06358 93.751829) - (xy 87.049414 93.765995) - (xy 87.034624 93.778627) - (xy 87.018414 93.790404) - (xy 87.018411 93.790407) - (xy 86.98871 93.826309) - (xy 86.984777 93.830631) - (xy 83.336208 97.479199) - (xy 83.323951 97.48902) - (xy 83.324134 97.489241) - (xy 83.318122 97.494214) - (xy 83.271432 97.543932) - (xy 83.270079 97.545329) - (xy 83.249889 97.565519) - (xy 83.249877 97.565532) - (xy 83.245621 97.571017) - (xy 83.241837 97.575447) - (xy 83.209937 97.609418) - (xy 83.209936 97.60942) - (xy 83.200284 97.626976) - (xy 83.18961 97.643226) - (xy 83.177329 97.659061) - (xy 83.177324 97.659068) - (xy 83.158815 97.701838) - (xy 83.156245 97.707084) - (xy 83.133803 97.747906) - (xy 83.128822 97.767307) - (xy 83.122521 97.78571) - (xy 83.114562 97.804102) - (xy 83.114561 97.804105) - (xy 83.107271 97.850127) - (xy 83.106087 97.855846) - (xy 83.094501 97.900972) - (xy 83.0945 97.900982) - (xy 83.0945 97.921016) - (xy 83.092973 97.940413) - (xy 83.08984 97.960196) - (xy 83.093831 98.002415) - (xy 83.094225 98.006583) - (xy 83.0945 98.012421) - (xy 83.0945 99.730713) - (xy 83.074815 99.797752) - (xy 83.024302 99.842433) - (xy 82.87737 99.913192) - (xy 82.666782 100.056768) - (xy 82.479952 100.230121) - (xy 82.47995 100.230123) - (xy 82.321041 100.429388) - (xy 82.193608 100.650109) - (xy 82.100492 100.887362) - (xy 82.10049 100.887369) - (xy 82.043777 101.135845) - (xy 82.024732 101.389995) - (xy 82.024732 101.390004) - (xy 82.043777 101.644154) - (xy 82.100436 101.892394) - (xy 82.100492 101.892637) - (xy 82.178322 102.090944) - (xy 82.193608 102.12989) - (xy 82.21636 102.169297) - (xy 82.321041 102.350612) - (xy 82.47995 102.549877) - (xy 82.666783 102.723232) - (xy 82.877366 102.866805) - (xy 82.877371 102.866807) - (xy 82.877372 102.866808) - (xy 82.877373 102.866809) - (xy 82.999328 102.925538) - (xy 83.106992 102.977387) - (xy 83.106993 102.977387) - (xy 83.106996 102.977389) - (xy 83.17177 102.997369) - (xy 83.250029 103.021509) - (xy 83.308288 103.06008) - (xy 83.336446 103.124024) - (xy 83.325562 103.193041) - (xy 83.279093 103.245218) - (xy 83.250029 103.258491) - (xy 83.106992 103.302612) - (xy 82.877373 103.41319) - (xy 82.877372 103.413191) - (xy 82.666782 103.556768) - (xy 82.479952 103.730121) - (xy 82.47995 103.730123) - (xy 82.321041 103.929388) - (xy 82.193608 104.150109) - (xy 82.100492 104.387362) - (xy 82.10049 104.387369) - (xy 82.043777 104.635845) - (xy 82.024732 104.889995) - (xy 82.024732 104.890004) - (xy 81 104.890004) - (xy 81 91.848889) - (xy 81.019685 91.78185) - (xy 81.072489 91.736095) - (xy 81.141647 91.726151) - (xy 81.205203 91.755176) - (xy 81.235 91.793617) - (xy 81.339121 92.002721) - (xy 81.513951 92.266568) - (xy 81.516312 92.27013) - (xy 81.725022 92.513737) - (xy 81.962086 92.729849) - (xy 81.962089 92.729851) - (xy 82.223905 92.915187) - (xy 82.223915 92.915193) - (xy 82.506516 93.066948) - (xy 82.506522 93.06695) - (xy 82.506529 93.066954) - (xy 82.66799 93.129504) - (xy 82.805644 93.182832) - (xy 82.805647 93.182832) - (xy 82.805653 93.182835) - (xy 83.116751 93.261079) - (xy 83.236134 93.275861) - (xy 83.435102 93.3005) - (xy 83.435107 93.3005) - (xy 83.675612 93.3005) - (xy 83.675626 93.3005) - (xy 83.915678 93.285694) - (xy 84.231003 93.22675) - (xy 84.536694 93.129502) - (xy 84.828118 92.995426) - (xy 85.100856 92.826554) - (xy 85.350775 92.625445) - (xy 85.574085 92.395148) - (xy 85.767403 92.139155) - (xy 85.927796 91.861345) - (xy 86.052834 91.565931) - (xy 86.140622 91.25739) - (xy 86.189828 90.9404) - (xy 86.194762 90.780236) - (xy 129.365893 90.780236) - (xy 129.395491 91.099651) - (xy 129.395492 91.099657) - (xy 129.464118 91.413013) - (xy 129.570735 91.715566) - (xy 129.713721 92.002721) - (xy 129.888551 92.266568) - (xy 129.890912 92.27013) - (xy 130.099622 92.513737) - (xy 130.336686 92.729849) - (xy 130.336689 92.729851) - (xy 130.598505 92.915187) - (xy 130.598515 92.915193) - (xy 130.881116 93.066948) - (xy 130.881122 93.06695) - (xy 130.881129 93.066954) - (xy 131.04259 93.129504) - (xy 131.180244 93.182832) - (xy 131.180247 93.182832) - (xy 131.180253 93.182835) - (xy 131.491351 93.261079) - (xy 131.610734 93.275861) - (xy 131.809702 93.3005) - (xy 131.809707 93.3005) - (xy 132.050212 93.3005) - (xy 132.050226 93.3005) - (xy 132.290278 93.285694) - (xy 132.605603 93.22675) - (xy 132.911294 93.129502) - (xy 133.202718 92.995426) - (xy 133.475456 92.826554) - (xy 133.725375 92.625445) - (xy 133.948685 92.395148) - (xy 134.142003 92.139155) - (xy 134.302396 91.861345) - (xy 134.427434 91.565931) - (xy 134.515222 91.25739) - (xy 134.564428 90.9404) - (xy 134.574306 90.619765) - (xy 134.544708 90.300347) - (xy 134.510163 90.14261) - (xy 134.476081 89.986986) - (xy 134.43476 89.869728) - (xy 134.369466 89.684436) - (xy 134.226479 89.397279) - (xy 134.049288 89.12987) - (xy 133.840578 88.886263) - (xy 133.671149 88.731808) - (xy 133.60352 88.670156) - (xy 133.60351 88.670148) - (xy 133.462044 88.570006) - (xy 143.211225 88.570006) - (xy 143.229892 88.795289) - (xy 143.285388 89.014439) - (xy 143.376198 89.221466) - (xy 143.499842 89.410716) - (xy 143.49985 89.410727) - (xy 143.65295 89.577036) - (xy 143.652954 89.57704) - (xy 143.831351 89.715893) - (xy 144.030169 89.823488) - (xy 144.030172 89.823489) - (xy 144.243982 89.89689) - (xy 144.243984 89.89689) - (xy 144.243986 89.896891) - (xy 144.466967 89.9341) - (xy 144.466968 89.9341) - (xy 144.693032 89.9341) - (xy 144.693033 89.9341) - (xy 144.916014 89.896891) - (xy 145.129831 89.823488) - (xy 145.328649 89.715893) - (xy 145.507046 89.57704) - (xy 145.660156 89.410719) - (xy 145.746193 89.279028) - (xy 145.799338 89.233675) - (xy 145.868569 89.224251) - (xy 145.931905 89.253753) - (xy 145.953804 89.279025) - (xy 146.039844 89.410719) - (xy 146.039849 89.410724) - (xy 146.03985 89.410727) - (xy 146.19295 89.577036) - (xy 146.192954 89.57704) - (xy 146.371351 89.715893) - (xy 146.570169 89.823488) - (xy 146.570172 89.823489) - (xy 146.783982 89.89689) - (xy 146.783984 89.89689) - (xy 146.783986 89.896891) - (xy 147.006967 89.9341) - (xy 147.006968 89.9341) - (xy 147.233032 89.9341) - (xy 147.233033 89.9341) - (xy 147.456014 89.896891) - (xy 147.669831 89.823488) - (xy 147.868649 89.715893) - (xy 148.047046 89.57704) - (xy 148.101815 89.517545) - (xy 148.161699 89.481557) - (xy 148.231537 89.483657) - (xy 148.289153 89.52318) - (xy 148.309224 89.558196) - (xy 148.353046 89.675688) - (xy 148.353049 89.675693) - (xy 148.439209 89.790787) - (xy 148.439212 89.79079) - (xy 148.554306 89.87695) - (xy 148.554313 89.876954) - (xy 148.68902 89.927196) - (xy 148.689027 89.927198) - (xy 148.748555 89.933599) - (xy 148.748572 89.9336) - (xy 149.41 89.9336) - (xy 149.41 89.014297) - (xy 149.515408 89.062435) - (xy 149.623666 89.078) - (xy 149.696334 89.078) - (xy 149.804592 89.062435) - (xy 149.91 89.014297) - (xy 149.91 89.9336) - (xy 150.571428 89.9336) - (xy 150.571444 89.933599) - (xy 150.630972 89.927198) - (xy 150.630979 89.927196) - (xy 150.765686 89.876954) - (xy 150.765693 89.87695) - (xy 150.880787 89.79079) - (xy 150.88079 89.790787) - (xy 150.96695 89.675693) - (xy 150.966954 89.675686) - (xy 151.010775 89.558197) - (xy 151.052646 89.502263) - (xy 151.11811 89.477846) - (xy 151.186383 89.492698) - (xy 151.218186 89.517547) - (xy 151.259578 89.56251) - (xy 151.272954 89.57704) - (xy 151.451351 89.715893) - (xy 151.650169 89.823488) - (xy 151.650172 89.823489) - (xy 151.863982 89.89689) - (xy 151.863984 89.89689) - (xy 151.863986 89.896891) - (xy 152.086967 89.9341) - (xy 152.086968 89.9341) - (xy 152.313032 89.9341) - (xy 152.313033 89.9341) - (xy 152.536014 89.896891) - (xy 152.749831 89.823488) - (xy 152.948649 89.715893) - (xy 153.127046 89.57704) - (xy 153.280156 89.410719) - (xy 153.403802 89.221465) - (xy 153.494611 89.014441) - (xy 153.550107 88.795293) - (xy 153.560476 88.670156) - (xy 153.568775 88.570006) - (xy 153.568775 88.569993) - (xy 153.550107 88.34471) - (xy 153.550107 88.344707) - (xy 153.494611 88.125559) - (xy 153.403802 87.918535) - (xy 153.391692 87.9) - (xy 153.280157 87.729283) - (xy 153.280149 87.729272) - (xy 153.127049 87.562963) - (xy 153.127048 87.562962) - (xy 153.127046 87.56296) - (xy 152.948649 87.424107) - (xy 152.899242 87.397369) - (xy 152.749832 87.316512) - (xy 152.749827 87.31651) - (xy 152.536017 87.243109) - (xy 152.354388 87.212801) - (xy 152.313033 87.2059) - (xy 152.086967 87.2059) - (xy 152.045612 87.212801) - (xy 151.863982 87.243109) - (xy 151.650172 87.31651) - (xy 151.650167 87.316512) - (xy 151.451352 87.424106) - (xy 151.272955 87.562958) - (xy 151.218186 87.622453) - (xy 151.158298 87.658443) - (xy 151.08846 87.656342) - (xy 151.030845 87.616817) - (xy 151.010775 87.581802) - (xy 150.966954 87.464313) - (xy 150.96695 87.464306) - (xy 150.88079 87.349212) - (xy 150.880787 87.349209) - (xy 150.765693 87.263049) - (xy 150.765686 87.263045) - (xy 150.630979 87.212803) - (xy 150.630972 87.212801) - (xy 150.571444 87.2064) - (xy 149.91 87.2064) - (xy 149.91 88.125702) - (xy 149.804592 88.077565) - (xy 149.696334 88.062) - (xy 149.623666 88.062) - (xy 149.515408 88.077565) - (xy 149.41 88.125702) - (xy 149.41 87.2064) - (xy 148.748555 87.2064) - (xy 148.689027 87.212801) - (xy 148.68902 87.212803) - (xy 148.554313 87.263045) - (xy 148.554306 87.263049) - (xy 148.439212 87.349209) - (xy 148.439209 87.349212) - (xy 148.353049 87.464306) - (xy 148.353046 87.464312) - (xy 148.309224 87.581803) - (xy 148.267352 87.637736) - (xy 148.201887 87.662153) - (xy 148.133615 87.647301) - (xy 148.101813 87.622452) - (xy 148.047049 87.562963) - (xy 148.047048 87.562962) - (xy 148.047046 87.56296) - (xy 147.868649 87.424107) - (xy 147.819242 87.397369) - (xy 147.669832 87.316512) - (xy 147.669827 87.31651) - (xy 147.456017 87.243109) - (xy 147.274388 87.212801) - (xy 147.233033 87.2059) - (xy 147.006967 87.2059) - (xy 146.965612 87.212801) - (xy 146.783982 87.243109) - (xy 146.570172 87.31651) - (xy 146.570167 87.316512) - (xy 146.371352 87.424106) - (xy 146.192955 87.562959) - (xy 146.19295 87.562963) - (xy 146.03985 87.729272) - (xy 146.039842 87.729283) - (xy 145.953808 87.860968) - (xy 145.900662 87.906325) - (xy 145.83143 87.915748) - (xy 145.768095 87.886246) - (xy 145.746192 87.860968) - (xy 145.660157 87.729283) - (xy 145.660149 87.729272) - (xy 145.507049 87.562963) - (xy 145.507048 87.562962) - (xy 145.507046 87.56296) - (xy 145.328649 87.424107) - (xy 145.279242 87.397369) - (xy 145.129832 87.316512) - (xy 145.129827 87.31651) - (xy 144.916017 87.243109) - (xy 144.734388 87.212801) - (xy 144.693033 87.2059) - (xy 144.466967 87.2059) - (xy 144.425612 87.212801) - (xy 144.243982 87.243109) - (xy 144.030172 87.31651) - (xy 144.030167 87.316512) - (xy 143.831352 87.424106) - (xy 143.652955 87.562959) - (xy 143.65295 87.562963) - (xy 143.49985 87.729272) - (xy 143.499842 87.729283) - (xy 143.376198 87.918533) - (xy 143.285388 88.12556) - (xy 143.229892 88.34471) - (xy 143.211225 88.569993) - (xy 143.211225 88.570006) - (xy 133.462044 88.570006) - (xy 133.341694 88.484812) - (xy 133.341684 88.484806) - (xy 133.059083 88.333051) - (xy 133.059073 88.333047) - (xy 133.059071 88.333046) - (xy 132.990905 88.306638) - (xy 132.759955 88.217167) - (xy 132.759951 88.217166) - (xy 132.448845 88.13892) - (xy 132.130498 88.0995) - (xy 132.130493 88.0995) - (xy 131.889974 88.0995) - (xy 131.837256 88.102751) - (xy 131.649924 88.114305) - (xy 131.334599 88.173249) - (xy 131.334597 88.17325) - (xy 131.028914 88.270495) - (xy 131.02891 88.270496) - (xy 131.028906 88.270498) - (xy 130.867607 88.344707) - (xy 130.737481 88.404574) - (xy 130.464756 88.573437) - (xy 130.464736 88.573451) - (xy 130.214828 88.774551) - (xy 129.991513 89.004853) - (xy 129.798195 89.260847) - (xy 129.637801 89.53866) - (xy 129.512768 89.834062) - (xy 129.51276 89.834086) - (xy 129.424979 90.142602) - (xy 129.424978 90.142607) - (xy 129.375772 90.459592) - (xy 129.375771 90.459603) - (xy 129.365893 90.780236) - (xy 86.194762 90.780236) - (xy 86.199706 90.619765) - (xy 86.170108 90.300347) - (xy 86.135563 90.14261) - (xy 86.101481 89.986986) - (xy 86.06016 89.869728) - (xy 85.994866 89.684436) - (xy 85.851879 89.397279) - (xy 85.674688 89.12987) - (xy 85.465978 88.886263) - (xy 85.296549 88.731808) - (xy 85.22892 88.670156) - (xy 85.22891 88.670148) - (xy 84.967094 88.484812) - (xy 84.967084 88.484806) - (xy 84.684483 88.333051) - (xy 84.684473 88.333047) - (xy 84.684471 88.333046) - (xy 84.616305 88.306638) - (xy 84.385355 88.217167) - (xy 84.385351 88.217166) - (xy 84.074245 88.13892) - (xy 83.755898 88.0995) - (xy 83.755893 88.0995) - (xy 83.515374 88.0995) - (xy 83.462656 88.102751) - (xy 83.275324 88.114305) - (xy 82.959999 88.173249) - (xy 82.959997 88.17325) - (xy 82.654314 88.270495) - (xy 82.65431 88.270496) - (xy 82.654306 88.270498) - (xy 82.493007 88.344707) - (xy 82.362881 88.404574) - (xy 82.090156 88.573437) - (xy 82.090136 88.573451) - (xy 81.840228 88.774551) - (xy 81.616913 89.004853) - (xy 81.423595 89.260847) - (xy 81.263202 89.538658) - (xy 81.238192 89.597748) - (xy 81.193934 89.651812) - (xy 81.127471 89.673365) - (xy 81.059907 89.655565) - (xy 81.012692 89.604063) - (xy 81 89.549414) - (xy 81 87.624) - (xy 81.019685 87.556961) - (xy 81.072489 87.511206) - (xy 81.124 87.5) - (xy 101 87.5) - (xy 101 82.030006) - (xy 130.626725 82.030006) - (xy 130.645392 82.255289) - (xy 130.700888 82.474439) - (xy 130.791698 82.681466) - (xy 130.915342 82.870716) - (xy 130.91535 82.870727) - (xy 131.06845 83.037036) - (xy 131.068454 83.03704) - (xy 131.246851 83.175893) - (xy 131.445669 83.283488) - (xy 131.445672 83.283489) - (xy 131.659482 83.35689) - (xy 131.659484 83.35689) - (xy 131.659486 83.356891) - (xy 131.882467 83.3941) - (xy 131.882468 83.3941) - (xy 132.108532 83.3941) - (xy 132.108533 83.3941) - (xy 132.331514 83.356891) - (xy 132.545331 83.283488) - (xy 132.744149 83.175893) - (xy 132.922546 83.03704) - (xy 133.075656 82.870719) - (xy 133.161693 82.739028) - (xy 133.214838 82.693675) - (xy 133.284069 82.684251) - (xy 133.347405 82.713753) - (xy 133.369304 82.739025) - (xy 133.455344 82.870719) - (xy 133.455349 82.870724) - (xy 133.45535 82.870727) - (xy 133.60845 83.037036) - (xy 133.608454 83.03704) - (xy 133.786851 83.175893) - (xy 133.985669 83.283488) - (xy 133.985672 83.283489) - (xy 134.199482 83.35689) - (xy 134.199484 83.35689) - (xy 134.199486 83.356891) - (xy 134.422467 83.3941) - (xy 134.422468 83.3941) - (xy 134.648532 83.3941) - (xy 134.648533 83.3941) - (xy 134.871514 83.356891) - (xy 135.085331 83.283488) - (xy 135.284149 83.175893) - (xy 135.462546 83.03704) - (xy 135.615656 82.870719) - (xy 135.739302 82.681465) - (xy 135.830111 82.474441) - (xy 135.885607 82.255293) - (xy 135.893074 82.165175) - (xy 135.904275 82.030006) - (xy 135.904275 82.029993) - (xy 135.887346 81.825693) - (xy 135.885607 81.804707) - (xy 135.830111 81.585559) - (xy 135.739302 81.378535) - (xy 135.615656 81.189281) - (xy 135.615653 81.189278) - (xy 135.615649 81.189272) - (xy 135.462549 81.022963) - (xy 135.462548 81.022962) - (xy 135.462546 81.02296) - (xy 135.284149 80.884107) - (xy 135.284147 80.884106) - (xy 135.284146 80.884105) - (xy 135.284139 80.8841) - (xy 135.256336 80.869055) - (xy 135.206744 80.819837) - (xy 135.191635 80.75162) - (xy 135.203291 80.720006) - (xy 143.211225 80.720006) - (xy 143.229892 80.945289) - (xy 143.285388 81.164439) - (xy 143.376198 81.371466) - (xy 143.499842 81.560716) - (xy 143.49985 81.560727) - (xy 143.65295 81.727036) - (xy 143.652954 81.72704) - (xy 143.831351 81.865893) - (xy 144.030169 81.973488) - (xy 144.030172 81.973489) - (xy 144.243982 82.04689) - (xy 144.243984 82.04689) - (xy 144.243986 82.046891) - (xy 144.466967 82.0841) - (xy 144.466968 82.0841) - (xy 144.693032 82.0841) - (xy 144.693033 82.0841) - (xy 144.916014 82.046891) - (xy 145.129831 81.973488) - (xy 145.328649 81.865893) - (xy 145.507046 81.72704) - (xy 145.660156 81.560719) - (xy 145.746193 81.429029) - (xy 145.799336 81.383675) - (xy 145.868567 81.374251) - (xy 145.931903 81.403753) - (xy 145.953807 81.429031) - (xy 146.039842 81.560716) - (xy 146.03985 81.560727) - (xy 146.19295 81.727036) - (xy 146.192954 81.72704) - (xy 146.371351 81.865893) - (xy 146.570169 81.973488) - (xy 146.570172 81.973489) - (xy 146.783982 82.04689) - (xy 146.783984 82.04689) - (xy 146.783986 82.046891) - (xy 147.006967 82.0841) - (xy 147.006968 82.0841) - (xy 147.233032 82.0841) - (xy 147.233033 82.0841) - (xy 147.456014 82.046891) - (xy 147.669831 81.973488) - (xy 147.868649 81.865893) - (xy 148.047046 81.72704) - (xy 148.101815 81.667545) - (xy 148.161699 81.631557) - (xy 148.231537 81.633657) - (xy 148.289153 81.67318) - (xy 148.309224 81.708196) - (xy 148.353046 81.825688) - (xy 148.353049 81.825693) - (xy 148.439209 81.940787) - (xy 148.439212 81.94079) - (xy 148.554306 82.02695) - (xy 148.554313 82.026954) - (xy 148.68902 82.077196) - (xy 148.689027 82.077198) - (xy 148.748555 82.083599) - (xy 148.748572 82.0836) - (xy 149.41 82.0836) - (xy 149.41 81.164297) - (xy 149.515408 81.212435) - (xy 149.623666 81.228) - (xy 149.696334 81.228) - (xy 149.804592 81.212435) - (xy 149.91 81.164297) - (xy 149.91 82.0836) - (xy 150.571428 82.0836) - (xy 150.571444 82.083599) - (xy 150.630972 82.077198) - (xy 150.630979 82.077196) - (xy 150.765686 82.026954) - (xy 150.765693 82.02695) - (xy 150.880787 81.94079) - (xy 150.88079 81.940787) - (xy 150.96695 81.825693) - (xy 150.966954 81.825686) - (xy 151.010775 81.708197) - (xy 151.052646 81.652263) - (xy 151.11811 81.627846) - (xy 151.186383 81.642698) - (xy 151.218186 81.667547) - (xy 151.27295 81.727036) - (xy 151.272954 81.72704) - (xy 151.451351 81.865893) - (xy 151.650169 81.973488) - (xy 151.650172 81.973489) - (xy 151.863982 82.04689) - (xy 151.863984 82.04689) - (xy 151.863986 82.046891) - (xy 152.086967 82.0841) - (xy 152.086968 82.0841) - (xy 152.313032 82.0841) - (xy 152.313033 82.0841) - (xy 152.536014 82.046891) - (xy 152.749831 81.973488) - (xy 152.948649 81.865893) - (xy 153.127046 81.72704) - (xy 153.280156 81.560719) - (xy 153.403802 81.371465) - (xy 153.494611 81.164441) - (xy 153.550107 80.945293) - (xy 153.559334 80.833937) - (xy 153.568775 80.720006) - (xy 156.221225 80.720006) - (xy 156.239892 80.945289) - (xy 156.295388 81.164439) - (xy 156.386198 81.371466) - (xy 156.509842 81.560716) - (xy 156.50985 81.560727) - (xy 156.66295 81.727036) - (xy 156.662954 81.72704) - (xy 156.841351 81.865893) - (xy 157.040169 81.973488) - (xy 157.040172 81.973489) - (xy 157.253982 82.04689) - (xy 157.253984 82.04689) - (xy 157.253986 82.046891) - (xy 157.476967 82.0841) - (xy 157.476968 82.0841) - (xy 157.703032 82.0841) - (xy 157.703033 82.0841) - (xy 157.926014 82.046891) - (xy 158.139831 81.973488) - (xy 158.338649 81.865893) - (xy 158.517046 81.72704) - (xy 158.670156 81.560719) - (xy 158.756193 81.429028) - (xy 158.809338 81.383675) - (xy 158.878569 81.374251) - (xy 158.941905 81.403753) - (xy 158.963804 81.429025) - (xy 159.049844 81.560719) - (xy 159.049849 81.560724) - (xy 159.04985 81.560727) - (xy 159.20295 81.727036) - (xy 159.202954 81.72704) - (xy 159.381351 81.865893) - (xy 159.580169 81.973488) - (xy 159.580172 81.973489) - (xy 159.793982 82.04689) - (xy 159.793984 82.04689) - (xy 159.793986 82.046891) - (xy 160.016967 82.0841) - (xy 160.016968 82.0841) - (xy 160.243032 82.0841) - (xy 160.243033 82.0841) - (xy 160.466014 82.046891) - (xy 160.679831 81.973488) - (xy 160.878649 81.865893) - (xy 161.057046 81.72704) - (xy 161.111815 81.667545) - (xy 161.171699 81.631557) - (xy 161.241537 81.633657) - (xy 161.299153 81.67318) - (xy 161.319224 81.708196) - (xy 161.363046 81.825688) - (xy 161.363049 81.825693) - (xy 161.449209 81.940787) - (xy 161.449212 81.94079) - (xy 161.564306 82.02695) - (xy 161.564313 82.026954) - (xy 161.69902 82.077196) - (xy 161.699027 82.077198) - (xy 161.758555 82.083599) - (xy 161.758572 82.0836) - (xy 162.42 82.0836) - (xy 162.42 81.164297) - (xy 162.525408 81.212435) - (xy 162.633666 81.228) - (xy 162.706334 81.228) - (xy 162.814592 81.212435) - (xy 162.92 81.164297) - (xy 162.92 82.0836) - (xy 163.581428 82.0836) - (xy 163.581444 82.083599) - (xy 163.640972 82.077198) - (xy 163.640979 82.077196) - (xy 163.775686 82.026954) - (xy 163.775693 82.02695) - (xy 163.890787 81.94079) - (xy 163.89079 81.940787) - (xy 163.97695 81.825693) - (xy 163.976954 81.825686) - (xy 164.020775 81.708197) - (xy 164.062646 81.652263) - (xy 164.12811 81.627846) - (xy 164.196383 81.642698) - (xy 164.228186 81.667547) - (xy 164.28295 81.727036) - (xy 164.282954 81.72704) - (xy 164.461351 81.865893) - (xy 164.660169 81.973488) - (xy 164.660172 81.973489) - (xy 164.873982 82.04689) - (xy 164.873984 82.04689) - (xy 164.873986 82.046891) - (xy 165.096967 82.0841) - (xy 165.096968 82.0841) - (xy 165.323032 82.0841) - (xy 165.323033 82.0841) - (xy 165.546014 82.046891) - (xy 165.759831 81.973488) - (xy 165.958649 81.865893) - (xy 166.137046 81.72704) - (xy 166.290156 81.560719) - (xy 166.413802 81.371465) - (xy 166.504611 81.164441) - (xy 166.560107 80.945293) - (xy 166.569334 80.833937) - (xy 166.578775 80.720006) - (xy 166.578775 80.719993) - (xy 166.560107 80.49471) - (xy 166.560107 80.494707) - (xy 166.504611 80.275559) - (xy 166.413802 80.068535) - (xy 166.36285 79.990548) - (xy 166.326194 79.934441) - (xy 166.290156 79.879281) - (xy 166.290153 79.879278) - (xy 166.290149 79.879272) - (xy 166.137049 79.712963) - (xy 166.137048 79.712962) - (xy 166.137046 79.71296) - (xy 165.958649 79.574107) - (xy 165.93239 79.559896) - (xy 165.759832 79.466512) - (xy 165.759827 79.46651) - (xy 165.546017 79.393109) - (xy 165.364388 79.362801) - (xy 165.323033 79.3559) - (xy 165.096967 79.3559) - (xy 165.055612 79.362801) - (xy 164.873982 79.393109) - (xy 164.660172 79.46651) - (xy 164.660167 79.466512) - (xy 164.461352 79.574106) - (xy 164.282955 79.712958) - (xy 164.228186 79.772453) - (xy 164.168298 79.808443) - (xy 164.09846 79.806342) - (xy 164.040845 79.766817) - (xy 164.020775 79.731802) - (xy 163.976954 79.614313) - (xy 163.97695 79.614306) - (xy 163.89079 79.499212) - (xy 163.890787 79.499209) - (xy 163.775693 79.413049) - (xy 163.775686 79.413045) - (xy 163.640979 79.362803) - (xy 163.640972 79.362801) - (xy 163.581444 79.3564) - (xy 162.92 79.3564) - (xy 162.92 80.275702) - (xy 162.814592 80.227565) - (xy 162.706334 80.212) - (xy 162.633666 80.212) - (xy 162.525408 80.227565) - (xy 162.42 80.275702) - (xy 162.42 79.3564) - (xy 161.758555 79.3564) - (xy 161.699027 79.362801) - (xy 161.69902 79.362803) - (xy 161.564313 79.413045) - (xy 161.564306 79.413049) - (xy 161.449212 79.499209) - (xy 161.449209 79.499212) - (xy 161.363049 79.614306) - (xy 161.363046 79.614312) - (xy 161.319224 79.731803) - (xy 161.277352 79.787736) - (xy 161.211887 79.812153) - (xy 161.143615 79.797301) - (xy 161.111813 79.772452) - (xy 161.057049 79.712963) - (xy 161.057048 79.712962) - (xy 161.057046 79.71296) - (xy 160.878649 79.574107) - (xy 160.85239 79.559896) - (xy 160.679832 79.466512) - (xy 160.679827 79.46651) - (xy 160.466017 79.393109) - (xy 160.284388 79.362801) - (xy 160.243033 79.3559) - (xy 160.016967 79.3559) - (xy 159.975612 79.362801) - (xy 159.793982 79.393109) - (xy 159.580172 79.46651) - (xy 159.580167 79.466512) - (xy 159.381352 79.574106) - (xy 159.202955 79.712959) - (xy 159.20295 79.712963) - (xy 159.04985 79.879272) - (xy 159.049842 79.879283) - (xy 158.963808 80.010968) - (xy 158.910662 80.056325) - (xy 158.84143 80.065748) - (xy 158.778095 80.036246) - (xy 158.756192 80.010968) - (xy 158.670157 79.879283) - (xy 158.670149 79.879272) - (xy 158.517049 79.712963) - (xy 158.517048 79.712962) - (xy 158.517046 79.71296) - (xy 158.338649 79.574107) - (xy 158.31239 79.559896) - (xy 158.139832 79.466512) - (xy 158.139827 79.46651) - (xy 157.926017 79.393109) - (xy 157.744388 79.362801) - (xy 157.703033 79.3559) - (xy 157.476967 79.3559) - (xy 157.435612 79.362801) - (xy 157.253982 79.393109) - (xy 157.040172 79.46651) - (xy 157.040167 79.466512) - (xy 156.841352 79.574106) - (xy 156.662955 79.712959) - (xy 156.66295 79.712963) - (xy 156.50985 79.879272) - (xy 156.509842 79.879283) - (xy 156.386198 80.068533) - (xy 156.295388 80.27556) - (xy 156.239892 80.49471) - (xy 156.221225 80.719993) - (xy 156.221225 80.720006) - (xy 153.568775 80.720006) - (xy 153.568775 80.719993) - (xy 153.550107 80.49471) - (xy 153.550107 80.494707) - (xy 153.494611 80.275559) - (xy 153.403802 80.068535) - (xy 153.35285 79.990548) - (xy 153.316194 79.934441) - (xy 153.280156 79.879281) - (xy 153.280153 79.879278) - (xy 153.280149 79.879272) - (xy 153.127049 79.712963) - (xy 153.127048 79.712962) - (xy 153.127046 79.71296) - (xy 152.948649 79.574107) - (xy 152.92239 79.559896) - (xy 152.749832 79.466512) - (xy 152.749827 79.46651) - (xy 152.536017 79.393109) - (xy 152.354388 79.362801) - (xy 152.313033 79.3559) - (xy 152.086967 79.3559) - (xy 152.045612 79.362801) - (xy 151.863982 79.393109) - (xy 151.650172 79.46651) - (xy 151.650167 79.466512) - (xy 151.451352 79.574106) - (xy 151.272955 79.712958) - (xy 151.218186 79.772453) - (xy 151.158298 79.808443) - (xy 151.08846 79.806342) - (xy 151.030845 79.766817) - (xy 151.010775 79.731802) - (xy 150.966954 79.614313) - (xy 150.96695 79.614306) - (xy 150.88079 79.499212) - (xy 150.880787 79.499209) - (xy 150.765693 79.413049) - (xy 150.765686 79.413045) - (xy 150.630979 79.362803) - (xy 150.630972 79.362801) - (xy 150.571444 79.3564) - (xy 149.91 79.3564) - (xy 149.91 80.275702) - (xy 149.804592 80.227565) - (xy 149.696334 80.212) - (xy 149.623666 80.212) - (xy 149.515408 80.227565) - (xy 149.41 80.275702) - (xy 149.41 79.3564) - (xy 148.748555 79.3564) - (xy 148.689027 79.362801) - (xy 148.68902 79.362803) - (xy 148.554313 79.413045) - (xy 148.554306 79.413049) - (xy 148.439212 79.499209) - (xy 148.439209 79.499212) - (xy 148.353049 79.614306) - (xy 148.353046 79.614312) - (xy 148.309224 79.731803) - (xy 148.267352 79.787736) - (xy 148.201887 79.812153) - (xy 148.133615 79.797301) - (xy 148.101813 79.772452) - (xy 148.047049 79.712963) - (xy 148.047048 79.712962) - (xy 148.047046 79.71296) - (xy 147.868649 79.574107) - (xy 147.84239 79.559896) - (xy 147.669832 79.466512) - (xy 147.669827 79.46651) - (xy 147.456017 79.393109) - (xy 147.274388 79.362801) - (xy 147.233033 79.3559) - (xy 147.006967 79.3559) - (xy 146.965612 79.362801) - (xy 146.783982 79.393109) - (xy 146.570172 79.46651) - (xy 146.570167 79.466512) - (xy 146.371352 79.574106) - (xy 146.192955 79.712959) - (xy 146.19295 79.712963) - (xy 146.03985 79.879272) - (xy 146.039842 79.879283) - (xy 145.953808 80.010968) - (xy 145.900662 80.056325) - (xy 145.83143 80.065748) - (xy 145.768095 80.036246) - (xy 145.746192 80.010968) - (xy 145.660157 79.879283) - (xy 145.660149 79.879272) - (xy 145.507049 79.712963) - (xy 145.507048 79.712962) - (xy 145.507046 79.71296) - (xy 145.328649 79.574107) - (xy 145.30239 79.559896) - (xy 145.129832 79.466512) - (xy 145.129827 79.46651) - (xy 144.916017 79.393109) - (xy 144.734388 79.362801) - (xy 144.693033 79.3559) - (xy 144.466967 79.3559) - (xy 144.425612 79.362801) - (xy 144.243982 79.393109) - (xy 144.030172 79.46651) - (xy 144.030167 79.466512) - (xy 143.831352 79.574106) - (xy 143.652955 79.712959) - (xy 143.65295 79.712963) - (xy 143.49985 79.879272) - (xy 143.499842 79.879283) - (xy 143.376198 80.068533) - (xy 143.285388 80.27556) - (xy 143.229892 80.49471) - (xy 143.211225 80.719993) - (xy 143.211225 80.720006) - (xy 135.203291 80.720006) - (xy 135.215806 80.686064) - (xy 135.256336 80.650945) - (xy 135.284139 80.635899) - (xy 135.284142 80.635896) - (xy 135.284149 80.635893) - (xy 135.462546 80.49704) - (xy 135.615656 80.330719) - (xy 135.739302 80.141465) - (xy 135.830111 79.934441) - (xy 135.885607 79.715293) - (xy 135.904275 79.49) - (xy 135.904275 79.489993) - (xy 135.891207 79.332294) - (xy 135.885607 79.264707) - (xy 135.830111 79.045559) - (xy 135.739302 78.838535) - (xy 135.615656 78.649281) - (xy 135.615653 78.649278) - (xy 135.615649 78.649272) - (xy 135.462549 78.482963) - (xy 135.462548 78.482962) - (xy 135.462546 78.48296) - (xy 135.284149 78.344107) - (xy 135.284147 78.344106) - (xy 135.284146 78.344105) - (xy 135.284143 78.344103) - (xy 135.256333 78.329053) - (xy 135.206743 78.279833) - (xy 135.191636 78.211616) - (xy 135.215807 78.146061) - (xy 135.256335 78.110945) - (xy 135.284149 78.095893) - (xy 135.462546 77.95704) - (xy 135.615656 77.790719) - (xy 135.739302 77.601465) - (xy 135.830111 77.394441) - (xy 135.885607 77.175293) - (xy 135.904275 76.95) - (xy 135.904275 76.949993) - (xy 135.885607 76.72471) - (xy 135.885607 76.724707) - (xy 135.830111 76.505559) - (xy 135.739302 76.298535) - (xy 135.701139 76.240123) - (xy 135.615657 76.109283) - (xy 135.615649 76.109272) - (xy 135.462549 75.942963) - (xy 135.462548 75.942962) - (xy 135.462546 75.94296) - (xy 135.284149 75.804107) - (xy 135.284147 75.804106) - (xy 135.284146 75.804105) - (xy 135.284139 75.8041) - (xy 135.256336 75.789055) - (xy 135.206744 75.739837) - (xy 135.191635 75.67162) - (xy 135.215806 75.606064) - (xy 135.256336 75.570945) - (xy 135.284139 75.555899) - (xy 135.284142 75.555896) - (xy 135.284149 75.555893) - (xy 135.462546 75.41704) - (xy 135.615656 75.250719) - (xy 135.739302 75.061465) - (xy 135.830111 74.854441) - (xy 135.885607 74.635293) - (xy 135.904275 74.41) - (xy 135.904275 74.409993) - (xy 135.889128 74.227196) - (xy 135.885607 74.184707) - (xy 135.830111 73.965559) - (xy 135.739302 73.758535) - (xy 135.708067 73.710727) - (xy 135.665678 73.645845) - (xy 135.615656 73.569281) - (xy 135.615653 73.569278) - (xy 135.615649 73.569272) - (xy 135.462549 73.402963) - (xy 135.462548 73.402962) - (xy 135.462546 73.40296) - (xy 135.284149 73.264107) - (xy 135.284147 73.264106) - (xy 135.284146 73.264105) - (xy 135.284139 73.2641) - (xy 135.256336 73.249055) - (xy 135.206744 73.199837) - (xy 135.191635 73.13162) - (xy 135.215806 73.066064) - (xy 135.256336 73.030945) - (xy 135.284139 73.015899) - (xy 135.284142 73.015896) - (xy 135.284149 73.015893) - (xy 135.462546 72.87704) - (xy 135.469021 72.870006) - (xy 143.211225 72.870006) - (xy 143.229892 73.095289) - (xy 143.285388 73.314439) - (xy 143.376198 73.521466) - (xy 143.499842 73.710716) - (xy 143.49985 73.710727) - (xy 143.65295 73.877036) - (xy 143.652954 73.87704) - (xy 143.831351 74.015893) - (xy 144.030169 74.123488) - (xy 144.030172 74.123489) - (xy 144.243982 74.19689) - (xy 144.243984 74.19689) - (xy 144.243986 74.196891) - (xy 144.466967 74.2341) - (xy 144.466968 74.2341) - (xy 144.693032 74.2341) - (xy 144.693033 74.2341) - (xy 144.916014 74.196891) - (xy 145.129831 74.123488) - (xy 145.328649 74.015893) - (xy 145.507046 73.87704) - (xy 145.627378 73.746325) - (xy 145.660149 73.710727) - (xy 145.660149 73.710726) - (xy 145.660156 73.710719) - (xy 145.746193 73.579028) - (xy 145.799338 73.533675) - (xy 145.868569 73.524251) - (xy 145.931905 73.553753) - (xy 145.953804 73.579025) - (xy 146.039844 73.710719) - (xy 146.039849 73.710724) - (xy 146.03985 73.710727) - (xy 146.19295 73.877036) - (xy 146.192954 73.87704) - (xy 146.371351 74.015893) - (xy 146.570169 74.123488) - (xy 146.570172 74.123489) - (xy 146.783982 74.19689) - (xy 146.783984 74.19689) - (xy 146.783986 74.196891) - (xy 147.006967 74.2341) - (xy 147.006968 74.2341) - (xy 147.233032 74.2341) - (xy 147.233033 74.2341) - (xy 147.456014 74.196891) - (xy 147.669831 74.123488) - (xy 147.868649 74.015893) - (xy 148.047046 73.87704) - (xy 148.101815 73.817545) - (xy 148.161699 73.781557) - (xy 148.231537 73.783657) - (xy 148.289153 73.82318) - (xy 148.309224 73.858196) - (xy 148.353046 73.975688) - (xy 148.353049 73.975693) - (xy 148.439209 74.090787) - (xy 148.439212 74.09079) - (xy 148.554306 74.17695) - (xy 148.554313 74.176954) - (xy 148.68902 74.227196) - (xy 148.689027 74.227198) - (xy 148.748555 74.233599) - (xy 148.748572 74.2336) - (xy 149.41 74.2336) - (xy 149.41 73.314297) - (xy 149.515408 73.362435) - (xy 149.623666 73.378) - (xy 149.696334 73.378) - (xy 149.804592 73.362435) - (xy 149.91 73.314297) - (xy 149.91 74.2336) - (xy 150.571428 74.2336) - (xy 150.571444 74.233599) - (xy 150.630972 74.227198) - (xy 150.630979 74.227196) - (xy 150.765686 74.176954) - (xy 150.765693 74.17695) - (xy 150.880787 74.09079) - (xy 150.88079 74.090787) - (xy 150.96695 73.975693) - (xy 150.966954 73.975686) - (xy 151.010775 73.858197) - (xy 151.052646 73.802263) - (xy 151.11811 73.777846) - (xy 151.186383 73.792698) - (xy 151.218186 73.817547) - (xy 151.27295 73.877036) - (xy 151.272954 73.87704) - (xy 151.451351 74.015893) - (xy 151.650169 74.123488) - (xy 151.650172 74.123489) - (xy 151.863982 74.19689) - (xy 151.863984 74.19689) - (xy 151.863986 74.196891) - (xy 152.086967 74.2341) - (xy 152.086968 74.2341) - (xy 152.313032 74.2341) - (xy 152.313033 74.2341) - (xy 152.536014 74.196891) - (xy 152.749831 74.123488) - (xy 152.948649 74.015893) - (xy 153.127046 73.87704) - (xy 153.247378 73.746325) - (xy 153.280149 73.710727) - (xy 153.280151 73.710724) - (xy 153.280156 73.710719) - (xy 153.403802 73.521465) - (xy 153.494611 73.314441) - (xy 153.550107 73.095293) - (xy 153.562723 72.943039) - (xy 153.568775 72.870006) - (xy 156.221225 72.870006) - (xy 156.239892 73.095289) - (xy 156.295388 73.314439) - (xy 156.386198 73.521466) - (xy 156.509842 73.710716) - (xy 156.50985 73.710727) - (xy 156.66295 73.877036) - (xy 156.662954 73.87704) - (xy 156.841351 74.015893) - (xy 157.040169 74.123488) - (xy 157.040172 74.123489) - (xy 157.253982 74.19689) - (xy 157.253984 74.19689) - (xy 157.253986 74.196891) - (xy 157.476967 74.2341) - (xy 157.476968 74.2341) - (xy 157.703032 74.2341) - (xy 157.703033 74.2341) - (xy 157.926014 74.196891) - (xy 158.139831 74.123488) - (xy 158.338649 74.015893) - (xy 158.517046 73.87704) - (xy 158.637378 73.746325) - (xy 158.670149 73.710727) - (xy 158.670149 73.710726) - (xy 158.670156 73.710719) - (xy 158.756193 73.579028) - (xy 158.809338 73.533675) - (xy 158.878569 73.524251) - (xy 158.941905 73.553753) - (xy 158.963804 73.579025) - (xy 159.049844 73.710719) - (xy 159.049849 73.710724) - (xy 159.04985 73.710727) - (xy 159.20295 73.877036) - (xy 159.202954 73.87704) - (xy 159.381351 74.015893) - (xy 159.580169 74.123488) - (xy 159.580172 74.123489) - (xy 159.793982 74.19689) - (xy 159.793984 74.19689) - (xy 159.793986 74.196891) - (xy 160.016967 74.2341) - (xy 160.016968 74.2341) - (xy 160.243032 74.2341) - (xy 160.243033 74.2341) - (xy 160.466014 74.196891) - (xy 160.679831 74.123488) - (xy 160.878649 74.015893) - (xy 161.057046 73.87704) - (xy 161.111815 73.817545) - (xy 161.171699 73.781557) - (xy 161.241537 73.783657) - (xy 161.299153 73.82318) - (xy 161.319224 73.858196) - (xy 161.363046 73.975688) - (xy 161.363049 73.975693) - (xy 161.449209 74.090787) - (xy 161.449212 74.09079) - (xy 161.564306 74.17695) - (xy 161.564313 74.176954) - (xy 161.69902 74.227196) - (xy 161.699027 74.227198) - (xy 161.758555 74.233599) - (xy 161.758572 74.2336) - (xy 162.42 74.2336) - (xy 162.42 73.314297) - (xy 162.525408 73.362435) - (xy 162.633666 73.378) - (xy 162.706334 73.378) - (xy 162.814592 73.362435) - (xy 162.92 73.314297) - (xy 162.92 74.2336) - (xy 163.581428 74.2336) - (xy 163.581444 74.233599) - (xy 163.640972 74.227198) - (xy 163.640979 74.227196) - (xy 163.775686 74.176954) - (xy 163.775693 74.17695) - (xy 163.890787 74.09079) - (xy 163.89079 74.090787) - (xy 163.97695 73.975693) - (xy 163.976954 73.975686) - (xy 164.020775 73.858197) - (xy 164.062646 73.802263) - (xy 164.12811 73.777846) - (xy 164.196383 73.792698) - (xy 164.228186 73.817547) - (xy 164.28295 73.877036) - (xy 164.282954 73.87704) - (xy 164.461351 74.015893) - (xy 164.660169 74.123488) - (xy 164.660172 74.123489) - (xy 164.873982 74.19689) - (xy 164.873984 74.19689) - (xy 164.873986 74.196891) - (xy 165.096967 74.2341) - (xy 165.096968 74.2341) - (xy 165.323032 74.2341) - (xy 165.323033 74.2341) - (xy 165.546014 74.196891) - (xy 165.759831 74.123488) - (xy 165.958649 74.015893) - (xy 166.137046 73.87704) - (xy 166.257378 73.746325) - (xy 166.290149 73.710727) - (xy 166.290151 73.710724) - (xy 166.290156 73.710719) - (xy 166.413802 73.521465) - (xy 166.504611 73.314441) - (xy 166.560107 73.095293) - (xy 166.572723 72.943039) - (xy 166.578775 72.870006) - (xy 166.578775 72.869993) - (xy 166.560107 72.64471) - (xy 166.560107 72.644707) - (xy 166.504611 72.425559) - (xy 166.413802 72.218535) - (xy 166.405671 72.20609) - (xy 166.349426 72.12) - (xy 166.290156 72.029281) - (xy 166.290153 72.029278) - (xy 166.290149 72.029272) - (xy 166.137049 71.862963) - (xy 166.137048 71.862962) - (xy 166.137046 71.86296) - (xy 165.958649 71.724107) - (xy 165.834275 71.656799) - (xy 165.759832 71.616512) - (xy 165.759827 71.61651) - (xy 165.546017 71.543109) - (xy 165.364388 71.512801) - (xy 165.323033 71.5059) - (xy 165.096967 71.5059) - (xy 165.055612 71.512801) - (xy 164.873982 71.543109) - (xy 164.660172 71.61651) - (xy 164.660167 71.616512) - (xy 164.461352 71.724106) - (xy 164.282955 71.862958) - (xy 164.228186 71.922453) - (xy 164.168298 71.958443) - (xy 164.09846 71.956342) - (xy 164.040845 71.916817) - (xy 164.020775 71.881802) - (xy 163.976954 71.764313) - (xy 163.97695 71.764306) - (xy 163.89079 71.649212) - (xy 163.890787 71.649209) - (xy 163.775693 71.563049) - (xy 163.775686 71.563045) - (xy 163.640979 71.512803) - (xy 163.640972 71.512801) - (xy 163.581444 71.5064) - (xy 162.92 71.5064) - (xy 162.92 72.425702) - (xy 162.814592 72.377565) - (xy 162.706334 72.362) - (xy 162.633666 72.362) - (xy 162.525408 72.377565) - (xy 162.42 72.425702) - (xy 162.42 71.5064) - (xy 161.758555 71.5064) - (xy 161.699027 71.512801) - (xy 161.69902 71.512803) - (xy 161.564313 71.563045) - (xy 161.564306 71.563049) - (xy 161.449212 71.649209) - (xy 161.449209 71.649212) - (xy 161.363049 71.764306) - (xy 161.363046 71.764312) - (xy 161.319224 71.881803) - (xy 161.277352 71.937736) - (xy 161.211887 71.962153) - (xy 161.143615 71.947301) - (xy 161.111813 71.922452) - (xy 161.057049 71.862963) - (xy 161.057048 71.862962) - (xy 161.057046 71.86296) - (xy 160.878649 71.724107) - (xy 160.754275 71.656799) - (xy 160.679832 71.616512) - (xy 160.679827 71.61651) - (xy 160.466017 71.543109) - (xy 160.284388 71.512801) - (xy 160.243033 71.5059) - (xy 160.016967 71.5059) - (xy 159.975612 71.512801) - (xy 159.793982 71.543109) - (xy 159.580172 71.61651) - (xy 159.580167 71.616512) - (xy 159.381352 71.724106) - (xy 159.202955 71.862959) - (xy 159.20295 71.862963) - (xy 159.04985 72.029272) - (xy 159.049842 72.029283) - (xy 158.963808 72.160968) - (xy 158.910662 72.206325) - (xy 158.84143 72.215748) - (xy 158.778095 72.186246) - (xy 158.756192 72.160968) - (xy 158.692211 72.063039) - (xy 158.670156 72.029281) - (xy 158.670153 72.029278) - (xy 158.670149 72.029272) - (xy 158.517049 71.862963) - (xy 158.517048 71.862962) - (xy 158.517046 71.86296) - (xy 158.338649 71.724107) - (xy 158.214275 71.656799) - (xy 158.139832 71.616512) - (xy 158.139827 71.61651) - (xy 157.926017 71.543109) - (xy 157.744388 71.512801) - (xy 157.703033 71.5059) - (xy 157.476967 71.5059) - (xy 157.435612 71.512801) - (xy 157.253982 71.543109) - (xy 157.040172 71.61651) - (xy 157.040167 71.616512) - (xy 156.841352 71.724106) - (xy 156.662955 71.862959) - (xy 156.66295 71.862963) - (xy 156.50985 72.029272) - (xy 156.509842 72.029283) - (xy 156.386198 72.218533) - (xy 156.295388 72.42556) - (xy 156.239892 72.64471) - (xy 156.221225 72.869993) - (xy 156.221225 72.870006) - (xy 153.568775 72.870006) - (xy 153.568775 72.869993) - (xy 153.550107 72.64471) - (xy 153.550107 72.644707) - (xy 153.494611 72.425559) - (xy 153.403802 72.218535) - (xy 153.395671 72.20609) - (xy 153.339426 72.12) - (xy 153.280156 72.029281) - (xy 153.280153 72.029278) - (xy 153.280149 72.029272) - (xy 153.127049 71.862963) - (xy 153.127048 71.862962) - (xy 153.127046 71.86296) - (xy 152.948649 71.724107) - (xy 152.824275 71.656799) - (xy 152.749832 71.616512) - (xy 152.749827 71.61651) - (xy 152.536017 71.543109) - (xy 152.354388 71.512801) - (xy 152.313033 71.5059) - (xy 152.086967 71.5059) - (xy 152.045612 71.512801) - (xy 151.863982 71.543109) - (xy 151.650172 71.61651) - (xy 151.650167 71.616512) - (xy 151.451352 71.724106) - (xy 151.272955 71.862958) - (xy 151.218186 71.922453) - (xy 151.158298 71.958443) - (xy 151.08846 71.956342) - (xy 151.030845 71.916817) - (xy 151.010775 71.881802) - (xy 150.966954 71.764313) - (xy 150.96695 71.764306) - (xy 150.88079 71.649212) - (xy 150.880787 71.649209) - (xy 150.765693 71.563049) - (xy 150.765686 71.563045) - (xy 150.630979 71.512803) - (xy 150.630972 71.512801) - (xy 150.571444 71.5064) - (xy 149.91 71.5064) - (xy 149.91 72.425702) - (xy 149.804592 72.377565) - (xy 149.696334 72.362) - (xy 149.623666 72.362) - (xy 149.515408 72.377565) - (xy 149.41 72.425702) - (xy 149.41 71.5064) - (xy 148.748555 71.5064) - (xy 148.689027 71.512801) - (xy 148.68902 71.512803) - (xy 148.554313 71.563045) - (xy 148.554306 71.563049) - (xy 148.439212 71.649209) - (xy 148.439209 71.649212) - (xy 148.353049 71.764306) - (xy 148.353046 71.764312) - (xy 148.309224 71.881803) - (xy 148.267352 71.937736) - (xy 148.201887 71.962153) - (xy 148.133615 71.947301) - (xy 148.101813 71.922452) - (xy 148.047049 71.862963) - (xy 148.047048 71.862962) - (xy 148.047046 71.86296) - (xy 147.868649 71.724107) - (xy 147.744275 71.656799) - (xy 147.669832 71.616512) - (xy 147.669827 71.61651) - (xy 147.456017 71.543109) - (xy 147.274388 71.512801) - (xy 147.233033 71.5059) - (xy 147.006967 71.5059) - (xy 146.965612 71.512801) - (xy 146.783982 71.543109) - (xy 146.570172 71.61651) - (xy 146.570167 71.616512) - (xy 146.371352 71.724106) - (xy 146.192955 71.862959) - (xy 146.19295 71.862963) - (xy 146.03985 72.029272) - (xy 146.039842 72.029283) - (xy 145.953808 72.160968) - (xy 145.900662 72.206325) - (xy 145.83143 72.215748) - (xy 145.768095 72.186246) - (xy 145.746192 72.160968) - (xy 145.682211 72.063039) - (xy 145.660156 72.029281) - (xy 145.660153 72.029278) - (xy 145.660149 72.029272) - (xy 145.507049 71.862963) - (xy 145.507048 71.862962) - (xy 145.507046 71.86296) - (xy 145.328649 71.724107) - (xy 145.204275 71.656799) - (xy 145.129832 71.616512) - (xy 145.129827 71.61651) - (xy 144.916017 71.543109) - (xy 144.734388 71.512801) - (xy 144.693033 71.5059) - (xy 144.466967 71.5059) - (xy 144.425612 71.512801) - (xy 144.243982 71.543109) - (xy 144.030172 71.61651) - (xy 144.030167 71.616512) - (xy 143.831352 71.724106) - (xy 143.652955 71.862959) - (xy 143.65295 71.862963) - (xy 143.49985 72.029272) - (xy 143.499842 72.029283) - (xy 143.376198 72.218533) - (xy 143.285388 72.42556) - (xy 143.229892 72.64471) - (xy 143.211225 72.869993) - (xy 143.211225 72.870006) - (xy 135.469021 72.870006) - (xy 135.588588 72.740123) - (xy 135.615649 72.710727) - (xy 135.61565 72.710725) - (xy 135.615656 72.710719) - (xy 135.739302 72.521465) - (xy 135.830111 72.314441) - (xy 135.885607 72.095293) - (xy 135.898223 71.943039) - (xy 135.904275 71.870006) - (xy 135.904275 71.869993) - (xy 135.885607 71.64471) - (xy 135.885607 71.644707) - (xy 135.830111 71.425559) - (xy 135.739302 71.218535) - (xy 135.615656 71.029281) - (xy 135.615653 71.029278) - (xy 135.615649 71.029272) - (xy 135.462545 70.862959) - (xy 135.335796 70.764306) - (xy 135.284149 70.724107) - (xy 135.154893 70.654157) - (xy 135.085332 70.616512) - (xy 135.085327 70.61651) - (xy 134.871517 70.543109) - (xy 134.689888 70.512801) - (xy 134.648533 70.5059) - (xy 134.422467 70.5059) - (xy 134.381112 70.512801) - (xy 134.199482 70.543109) - (xy 133.985672 70.61651) - (xy 133.985667 70.616512) - (xy 133.786852 70.724106) - (xy 133.608455 70.862958) - (xy 133.553686 70.922453) - (xy 133.493798 70.958443) - (xy 133.42396 70.956342) - (xy 133.366345 70.916817) - (xy 133.346275 70.881802) - (xy 133.302454 70.764313) - (xy 133.30245 70.764306) - (xy 133.21629 70.649212) - (xy 133.216287 70.649209) - (xy 133.101193 70.563049) - (xy 133.101186 70.563045) - (xy 132.966479 70.512803) - (xy 132.966472 70.512801) - (xy 132.906944 70.5064) - (xy 132.2455 70.5064) - (xy 132.245499 71.425702) - (xy 132.140092 71.377565) - (xy 132.031834 71.362) - (xy 131.959166 71.362) - (xy 131.850908 71.377565) - (xy 131.7455 71.425702) - (xy 131.7455 70.5064) - (xy 131.084055 70.5064) - (xy 131.024527 70.512801) - (xy 131.02452 70.512803) - (xy 130.889813 70.563045) - (xy 130.889806 70.563049) - (xy 130.774712 70.649209) - (xy 130.774709 70.649212) - (xy 130.688549 70.764306) - (xy 130.688545 70.764313) - (xy 130.638303 70.89902) - (xy 130.638301 70.899027) - (xy 130.6319 70.958555) - (xy 130.6319 71.62) - (xy 131.552304 71.62) - (xy 131.528655 71.656799) - (xy 131.4875 71.796961) - (xy 131.4875 71.943039) - (xy 131.528655 72.083201) - (xy 131.552304 72.12) - (xy 130.6319 72.12) - (xy 130.6319 72.781444) - (xy 130.638301 72.840972) - (xy 130.638303 72.840979) - (xy 130.688545 72.975686) - (xy 130.688549 72.975693) - (xy 130.774709 73.090787) - (xy 130.774712 73.09079) - (xy 130.889806 73.17695) - (xy 130.889813 73.176954) - (xy 131.004848 73.219859) - (xy 131.060782 73.26173) - (xy 131.085199 73.327194) - (xy 131.070348 73.395467) - (xy 131.052745 73.420024) - (xy 130.915345 73.569279) - (xy 130.915342 73.569283) - (xy 130.791698 73.758533) - (xy 130.700888 73.96556) - (xy 130.645392 74.18471) - (xy 130.626725 74.409993) - (xy 130.626725 74.410006) - (xy 130.645392 74.635289) - (xy 130.700888 74.854439) - (xy 130.791698 75.061466) - (xy 130.915342 75.250716) - (xy 130.91535 75.250727) - (xy 131.06845 75.417036) - (xy 131.068454 75.41704) - (xy 131.246851 75.555893) - (xy 131.274665 75.570945) - (xy 131.324255 75.620165) - (xy 131.339363 75.688382) - (xy 131.315192 75.753937) - (xy 131.274665 75.789055) - (xy 131.246852 75.804106) - (xy 131.068455 75.942959) - (xy 131.06845 75.942963) - (xy 130.91535 76.109272) - (xy 130.915342 76.109283) - (xy 130.791698 76.298533) - (xy 130.700888 76.50556) - (xy 130.645392 76.72471) - (xy 130.626725 76.949993) - (xy 130.626725 76.950006) - (xy 130.645392 77.175289) - (xy 130.700888 77.394439) - (xy 130.791698 77.601466) - (xy 130.915342 77.790716) - (xy 130.91535 77.790727) - (xy 131.018372 77.902637) - (xy 131.068454 77.95704) - (xy 131.246851 78.095893) - (xy 131.274659 78.110942) - (xy 131.274665 78.110945) - (xy 131.324255 78.160165) - (xy 131.339363 78.228382) - (xy 131.315192 78.293937) - (xy 131.274665 78.329055) - (xy 131.246852 78.344106) - (xy 131.068455 78.482959) - (xy 131.06845 78.482963) - (xy 130.91535 78.649272) - (xy 130.915342 78.649283) - (xy 130.791698 78.838533) - (xy 130.700888 79.04556) - (xy 130.645392 79.26471) - (xy 130.626725 79.489993) - (xy 130.626725 79.490006) - (xy 130.645392 79.715289) - (xy 130.700888 79.934439) - (xy 130.791698 80.141466) - (xy 130.915342 80.330716) - (xy 130.91535 80.330727) - (xy 131.066306 80.494707) - (xy 131.068454 80.49704) - (xy 131.246851 80.635893) - (xy 131.265241 80.645845) - (xy 131.274665 80.650945) - (xy 131.324255 80.700165) - (xy 131.339363 80.768382) - (xy 131.315192 80.833937) - (xy 131.274665 80.869055) - (xy 131.246852 80.884106) - (xy 131.068455 81.022959) - (xy 131.06845 81.022963) - (xy 130.91535 81.189272) - (xy 130.915342 81.189283) - (xy 130.791698 81.378533) - (xy 130.700888 81.58556) - (xy 130.645392 81.80471) - (xy 130.626725 82.029993) - (xy 130.626725 82.030006) - (xy 101 82.030006) - (xy 101 66.5) - (xy 81.124 66.5) - (xy 81.056961 66.480315) - (xy 81.011206 66.427511) - (xy 81 66.376) - (xy 81 64.348889) - (xy 81.019685 64.28185) - (xy 81.072489 64.236095) - (xy 81.141647 64.226151) - (xy 81.205203 64.255176) - (xy 81.234999 64.293615) - (xy 81.339121 64.50272) - (xy 81.339121 64.502721) - (xy 81.491862 64.733232) - (xy 81.516312 64.77013) - (xy 81.725022 65.013737) - (xy 81.962086 65.229849) - (xy 81.962089 65.229851) - (xy 82.223905 65.415187) - (xy 82.223915 65.415193) - (xy 82.506516 65.566948) - (xy 82.506522 65.56695) - (xy 82.506529 65.566954) - (xy 82.66799 65.629504) - (xy 82.805644 65.682832) - (xy 82.805647 65.682832) - (xy 82.805653 65.682835) - (xy 83.116751 65.761079) - (xy 83.236134 65.775861) - (xy 83.435102 65.8005) - (xy 83.435107 65.8005) - (xy 83.675612 65.8005) - (xy 83.675626 65.8005) - (xy 83.915678 65.785694) - (xy 84.231003 65.72675) - (xy 84.536694 65.629502) - (xy 84.828118 65.495426) - (xy 85.100856 65.326554) - (xy 85.350775 65.125445) - (xy 85.574085 64.895148) - (xy 85.767403 64.639155) - (xy 85.927796 64.361345) - (xy 86.052834 64.065931) - (xy 86.140622 63.75739) - (xy 86.189828 63.4404) - (xy 86.199706 63.119765) - (xy 86.170108 62.800347) - (xy 86.139396 62.660112) - (xy 86.101481 62.486986) - (xy 86.072474 62.404671) - (xy 85.994866 62.184436) - (xy 85.851879 61.897279) - (xy 85.674688 61.62987) - (xy 85.465978 61.386263) - (xy 85.27881 61.215637) - (xy 85.242528 61.155926) - (xy 85.244289 61.086078) - (xy 85.283532 61.028271) - (xy 85.347799 61.000856) - (xy 85.362348 61) - (xy 130.204129 61) - ) - ) - (filled_polygon - (layer "B.Cu") - (pts - (xy 113.71586 149.270185) - (xy 113.761615 149.322989) - (xy 113.771559 149.392147) - (xy 113.742534 149.455703) - (xy 113.736502 149.462181) - (xy 108.532759 154.665922) - (xy 108.471436 154.699407) - (xy 108.46356 154.700856) - (xy 108.220539 154.737487) - (xy 108.220533 154.737489) - (xy 107.976992 154.812612) - (xy 107.747373 154.92319) - (xy 107.747372 154.923191) - (xy 107.536782 155.066768) - (xy 107.349952 155.240121) - (xy 107.34995 155.240123) - (xy 107.191041 155.439388) - (xy 107.063608 155.660109) - (xy 106.970492 155.897362) - (xy 106.969122 155.901804) - (xy 106.967999 155.901457) - (xy 106.936509 155.95773) - (xy 106.874841 155.990576) - (xy 106.805205 155.984868) - (xy 106.749709 155.942418) - (xy 106.731134 155.901729) - (xy 106.7304 155.901956) - (xy 106.729026 155.897505) - (xy 106.635941 155.660328) - (xy 106.635942 155.660328) - (xy 106.508544 155.439671) - (xy 106.466546 155.387006) - (xy 105.662772 156.190779) - (xy 105.624099 156.097412) - (xy 105.527925 155.972075) - (xy 105.402588 155.875901) - (xy 105.30922 155.837227) - (xy 106.113185 155.033261) - (xy 105.952377 154.923624) - (xy 105.952376 154.923623) - (xy 105.722823 154.813078) - (xy 105.722825 154.813078) - (xy 105.479347 154.737975) - (xy 105.479341 154.737973) - (xy 105.227404 154.7) - (xy 104.972595 154.7) - (xy 104.720658 154.737973) - (xy 104.720652 154.737975) - (xy 104.477175 154.813078) - (xy 104.247624 154.923623) - (xy 104.247616 154.923628) - (xy 104.086813 155.033261) - (xy 104.890779 155.837227) - (xy 104.797412 155.875901) - (xy 104.672075 155.972075) - (xy 104.575901 156.097411) - (xy 104.537227 156.190779) - (xy 103.733453 155.387006) - (xy 103.691455 155.43967) - (xy 103.564058 155.660328) - (xy 103.470973 155.897505) - (xy 103.4696 155.901956) - (xy 103.468432 155.901595) - (xy 103.437026 155.957726) - (xy 103.37536 155.990575) - (xy 103.305724 155.984871) - (xy 103.250226 155.942423) - (xy 103.231581 155.901587) - (xy 103.230878 155.901804) - (xy 103.229509 155.897369) - (xy 103.229508 155.897363) - (xy 103.136393 155.660112) - (xy 103.008959 155.439388) - (xy 102.85005 155.240123) - (xy 102.663217 155.066768) - (xy 102.452634 154.923195) - (xy 102.420696 154.907814) - (xy 102.368838 154.860992) - (xy 102.3505 154.796095) - (xy 102.3505 153.502179) - (xy 102.370185 153.43514) - (xy 102.386819 153.414498) - (xy 106.514498 149.286819) - (xy 106.575821 149.253334) - (xy 106.602179 149.2505) - (xy 113.648821 149.2505) - ) - ) - (filled_polygon - (layer "B.Cu") - (pts - (xy 129.591905 146.043753) - (xy 129.613804 146.069025) - (xy 129.699844 146.200719) - (xy 129.699849 146.200724) - (xy 129.69985 146.200727) - (xy 129.838824 146.351691) - (xy 129.852954 146.36704) - (xy 129.914163 146.414681) - (xy 129.954975 146.471389) - (xy 129.962 146.512533) - (xy 129.962 147.32527) - (xy 129.942315 147.392309) - (xy 129.925681 147.412951) - (xy 126.225451 151.113181) - (xy 126.164128 151.146666) - (xy 126.13777 151.1495) - (xy 123.663706 151.1495) - (xy 123.645736 151.148191) - (xy 123.621973 151.14471) - (xy 123.576534 151.148686) - (xy 123.569932 151.149264) - (xy 123.564531 151.1495) - (xy 123.556284 151.1495) - (xy 123.524607 151.153202) - (xy 123.522833 151.153384) - (xy 123.492391 151.156047) - (xy 123.447199 151.160001) - (xy 123.440133 151.16146) - (xy 123.440121 151.161404) - (xy 123.432764 151.163035) - (xy 123.432778 151.163092) - (xy 123.425741 151.16476) - (xy 123.354386 151.190729) - (xy 123.352686 151.19132) - (xy 123.280669 151.215185) - (xy 123.274127 151.218236) - (xy 123.274102 151.218183) - (xy 123.267309 151.221471) - (xy 123.267335 151.221523) - (xy 123.260881 151.224764) - (xy 123.197469 151.26647) - (xy 123.195949 151.267439) - (xy 123.131349 151.307285) - (xy 123.125684 151.311765) - (xy 123.125648 151.311719) - (xy 123.119799 151.316484) - (xy 123.119836 151.316528) - (xy 123.11431 151.321164) - (xy 123.062214 151.376381) - (xy 123.060959 151.377674) - (xy 119.701717 154.736914) - (xy 119.640394 154.770399) - (xy 119.577487 154.767724) - (xy 119.47947 154.73749) - (xy 119.479463 154.737488) - (xy 119.479458 154.737487) - (xy 119.337428 154.716079) - (xy 119.22744 154.6995) - (xy 119.227435 154.6995) - (xy 118.972565 154.6995) - (xy 118.972559 154.6995) - (xy 118.836963 154.719939) - (xy 118.720542 154.737487) - (xy 118.720538 154.737488) - (xy 118.720539 154.737488) - (xy 118.720533 154.737489) - (xy 118.476992 154.812612) - (xy 118.247373 154.92319) - (xy 118.247372 154.923191) - (xy 118.036782 155.066768) - (xy 117.849952 155.240121) - (xy 117.84995 155.240123) - (xy 117.691041 155.439388) - (xy 117.563608 155.660109) - (xy 117.470492 155.897362) - (xy 117.469122 155.901804) - (xy 117.467999 155.901457) - (xy 117.436509 155.95773) - (xy 117.374841 155.990576) - (xy 117.305205 155.984868) - (xy 117.249709 155.942418) - (xy 117.231134 155.901729) - (xy 117.2304 155.901956) - (xy 117.229026 155.897505) - (xy 117.135941 155.660328) - (xy 117.135942 155.660328) - (xy 117.008544 155.439671) - (xy 116.966546 155.387006) - (xy 116.162772 156.190779) - (xy 116.124099 156.097412) - (xy 116.027925 155.972075) - (xy 115.902588 155.875901) - (xy 115.80922 155.837227) - (xy 116.613185 155.033261) - (xy 116.452377 154.923624) - (xy 116.452376 154.923623) - (xy 116.222823 154.813078) - (xy 116.222825 154.813078) - (xy 115.979347 154.737975) - (xy 115.979341 154.737973) - (xy 115.727404 154.7) - (xy 115.472595 154.7) - (xy 115.220658 154.737973) - (xy 115.220652 154.737975) - (xy 114.977175 154.813078) - (xy 114.747624 154.923623) - (xy 114.747616 154.923628) - (xy 114.586813 155.033261) - (xy 115.390779 155.837227) - (xy 115.297412 155.875901) - (xy 115.172075 155.972075) - (xy 115.075901 156.097411) - (xy 115.037227 156.190779) - (xy 114.233453 155.387006) - (xy 114.191455 155.43967) - (xy 114.064058 155.660328) - (xy 113.970973 155.897505) - (xy 113.9696 155.901956) - (xy 113.968432 155.901595) - (xy 113.937026 155.957726) - (xy 113.87536 155.990575) - (xy 113.805724 155.984871) - (xy 113.750226 155.942423) - (xy 113.731581 155.901587) - (xy 113.730878 155.901804) - (xy 113.729509 155.897369) - (xy 113.729508 155.897363) - (xy 113.636393 155.660112) - (xy 113.508959 155.439388) - (xy 113.35005 155.240123) - (xy 113.163217 155.066768) - (xy 112.952634 154.923195) - (xy 112.920696 154.907814) - (xy 112.868838 154.860992) - (xy 112.8505 154.796095) - (xy 112.8505 153.512229) - (xy 112.870185 153.44519) - (xy 112.886819 153.424548) - (xy 115.624549 150.686819) - (xy 115.685872 150.653334) - (xy 115.71223 150.6505) - (xy 125.836295 150.6505) - (xy 125.854265 150.651809) - (xy 125.878023 150.655289) - (xy 125.930068 150.650735) - (xy 125.93547 150.6505) - (xy 125.943704 150.6505) - (xy 125.943709 150.6505) - (xy 125.975458 150.646788) - (xy 125.977075 150.646622) - (xy 126.052797 150.639999) - (xy 126.052805 150.639996) - (xy 126.059866 150.638539) - (xy 126.059878 150.638598) - (xy 126.067243 150.636965) - (xy 126.067229 150.636906) - (xy 126.074251 150.635241) - (xy 126.074255 150.635241) - (xy 126.145587 150.609277) - (xy 126.147286 150.608688) - (xy 126.219334 150.584814) - (xy 126.219342 150.584808) - (xy 126.225882 150.58176) - (xy 126.225908 150.581816) - (xy 126.23269 150.578532) - (xy 126.232663 150.578478) - (xy 126.239109 150.575239) - (xy 126.239117 150.575237) - (xy 126.302612 150.533475) - (xy 126.303977 150.532605) - (xy 126.368656 150.492712) - (xy 126.368661 150.492706) - (xy 126.374325 150.488229) - (xy 126.374362 150.488277) - (xy 126.380204 150.483518) - (xy 126.380164 150.483471) - (xy 126.385686 150.478835) - (xy 126.385696 150.47883) - (xy 126.4378 150.423601) - (xy 126.438994 150.422372) - (xy 128.658138 148.203227) - (xy 128.671767 148.19145) - (xy 128.69103 148.17711) - (xy 128.691032 148.177106) - (xy 128.691034 148.177106) - (xy 128.714422 148.149232) - (xy 128.724613 148.137085) - (xy 128.728267 148.133099) - (xy 128.73409 148.127277) - (xy 128.753876 148.10225) - (xy 128.754994 148.100878) - (xy 128.803802 148.042714) - (xy 128.803803 148.042711) - (xy 128.807772 148.036679) - (xy 128.807823 148.036712) - (xy 128.811869 148.03036) - (xy 128.811817 148.030328) - (xy 128.815609 148.024179) - (xy 128.815611 148.024177) - (xy 128.847695 147.955369) - (xy 128.848458 147.953792) - (xy 128.88254 147.885933) - (xy 128.882543 147.885917) - (xy 128.88501 147.879144) - (xy 128.885068 147.879165) - (xy 128.887541 147.872051) - (xy 128.887483 147.872032) - (xy 128.889752 147.86518) - (xy 128.889756 147.865173) - (xy 128.905114 147.790791) - (xy 128.905484 147.789124) - (xy 128.923 147.715221) - (xy 128.922999 147.715218) - (xy 128.923839 147.708045) - (xy 128.9239 147.708052) - (xy 128.924665 147.70056) - (xy 128.924603 147.700555) - (xy 128.925231 147.693363) - (xy 128.925233 147.693356) - (xy 128.923272 147.625936) - (xy 128.923026 147.617488) - (xy 128.923 147.615685) - (xy 128.923 146.615308) - (xy 128.942685 146.548269) - (xy 128.984724 146.509279) - (xy 128.984348 146.508703) - (xy 128.987725 146.506495) - (xy 128.987993 146.506248) - (xy 128.988002 146.506243) - (xy 128.988649 146.505893) - (xy 129.167046 146.36704) - (xy 129.284098 146.239888) - (xy 129.320149 146.200727) - (xy 129.320149 146.200726) - (xy 129.320156 146.200719) - (xy 129.406193 146.069028) - (xy 129.459338 146.023675) - (xy 129.528569 146.014251) - ) - ) - (filled_polygon - (layer "B.Cu") - (pts - (xy 134.671905 146.043753) - (xy 134.693804 146.069025) - (xy 134.779844 146.200719) - (xy 134.779849 146.200724) - (xy 134.77985 146.200727) - (xy 134.918824 146.351691) - (xy 134.932954 146.36704) - (xy 134.994163 146.414681) - (xy 135.034975 146.471389) - (xy 135.042 146.512533) - (xy 135.042 149.84527) - (xy 135.022315 149.912309) - (xy 135.005681 149.932951) - (xy 130.201717 154.736914) - (xy 130.140394 154.770399) - (xy 130.077487 154.767724) - (xy 129.97947 154.73749) - (xy 129.979463 154.737488) - (xy 129.979458 154.737487) - (xy 129.837428 154.716079) - (xy 129.72744 154.6995) - (xy 129.727435 154.6995) - (xy 129.472565 154.6995) - (xy 129.472559 154.6995) - (xy 129.336963 154.719939) - (xy 129.220542 154.737487) - (xy 129.220538 154.737488) - (xy 129.220539 154.737488) - (xy 129.220533 154.737489) - (xy 128.976992 154.812612) - (xy 128.747373 154.92319) - (xy 128.747372 154.923191) - (xy 128.536782 155.066768) - (xy 128.349952 155.240121) - (xy 128.34995 155.240123) - (xy 128.191041 155.439388) - (xy 128.063608 155.660109) - (xy 127.970492 155.897362) - (xy 127.969122 155.901804) - (xy 127.967999 155.901457) - (xy 127.936509 155.95773) - (xy 127.874841 155.990576) - (xy 127.805205 155.984868) - (xy 127.749709 155.942418) - (xy 127.731134 155.901729) - (xy 127.7304 155.901956) - (xy 127.729026 155.897505) - (xy 127.635941 155.660328) - (xy 127.635942 155.660328) - (xy 127.508544 155.439671) - (xy 127.466546 155.387006) - (xy 126.662772 156.190779) - (xy 126.624099 156.097412) - (xy 126.527925 155.972075) - (xy 126.402588 155.875901) - (xy 126.309219 155.837226) - (xy 127.113185 155.033261) - (xy 126.952377 154.923624) - (xy 126.952376 154.923623) - (xy 126.722823 154.813078) - (xy 126.722825 154.813078) - (xy 126.479347 154.737975) - (xy 126.479341 154.737973) - (xy 126.227404 154.7) - (xy 125.972595 154.7) - (xy 125.720658 154.737973) - (xy 125.720652 154.737975) - (xy 125.477175 154.813078) - (xy 125.247624 154.923623) - (xy 125.247616 154.923628) - (xy 125.086813 155.033261) - (xy 125.890778 155.837227) - (xy 125.797412 155.875901) - (xy 125.672075 155.972075) - (xy 125.575901 156.097411) - (xy 125.537226 156.190779) - (xy 124.733453 155.387006) - (xy 124.691455 155.43967) - (xy 124.564058 155.660328) - (xy 124.470973 155.897505) - (xy 124.4696 155.901956) - (xy 124.468432 155.901595) - (xy 124.437026 155.957726) - (xy 124.37536 155.990575) - (xy 124.305724 155.984871) - (xy 124.250226 155.942423) - (xy 124.231581 155.901587) - (xy 124.230878 155.901804) - (xy 124.229509 155.897369) - (xy 124.229508 155.897363) - (xy 124.136393 155.660112) - (xy 124.008959 155.439388) - (xy 123.85005 155.240123) - (xy 123.663217 155.066768) - (xy 123.452634 154.923195) - (xy 123.452624 154.92319) - (xy 123.420695 154.907813) - (xy 123.368836 154.860989) - (xy 123.350499 154.796094) - (xy 123.350499 154.560973) - (xy 123.350499 154.252176) - (xy 123.370184 154.185141) - (xy 123.386813 154.164504) - (xy 124.164498 153.386819) - (xy 124.225822 153.353334) - (xy 124.25218 153.3505) - (xy 128.436295 153.3505) - (xy 128.454265 153.351809) - (xy 128.478023 153.355289) - (xy 128.530068 153.350735) - (xy 128.53547 153.3505) - (xy 128.543704 153.3505) - (xy 128.543709 153.3505) - (xy 128.575458 153.346788) - (xy 128.577075 153.346622) - (xy 128.652797 153.339999) - (xy 128.652805 153.339996) - (xy 128.659866 153.338539) - (xy 128.659878 153.338598) - (xy 128.667243 153.336965) - (xy 128.667229 153.336906) - (xy 128.674251 153.335241) - (xy 128.674255 153.335241) - (xy 128.745587 153.309277) - (xy 128.747286 153.308688) - (xy 128.753204 153.306727) - (xy 128.819334 153.284814) - (xy 128.819342 153.284808) - (xy 128.825882 153.28176) - (xy 128.825908 153.281816) - (xy 128.83269 153.278532) - (xy 128.832663 153.278478) - (xy 128.839109 153.275239) - (xy 128.839117 153.275237) - (xy 128.902612 153.233475) - (xy 128.903977 153.232605) - (xy 128.968656 153.192712) - (xy 128.968661 153.192706) - (xy 128.974325 153.188229) - (xy 128.974363 153.188277) - (xy 128.9802 153.183522) - (xy 128.980161 153.183475) - (xy 128.985691 153.178833) - (xy 128.985696 153.17883) - (xy 129.037799 153.123602) - (xy 129.038993 153.122373) - (xy 133.738142 148.423224) - (xy 133.751771 148.411447) - (xy 133.77103 148.39711) - (xy 133.791064 148.373234) - (xy 133.804601 148.357101) - (xy 133.808261 148.353106) - (xy 133.814088 148.34728) - (xy 133.814088 148.347279) - (xy 133.814091 148.347277) - (xy 133.83388 148.322247) - (xy 133.835009 148.320862) - (xy 133.845925 148.307853) - (xy 133.883802 148.262714) - (xy 133.883805 148.262707) - (xy 133.887774 148.256675) - (xy 133.887825 148.256708) - (xy 133.891872 148.250356) - (xy 133.89182 148.250324) - (xy 133.895611 148.244177) - (xy 133.903961 148.22627) - (xy 133.927726 148.175304) - (xy 133.928452 148.173805) - (xy 133.96254 148.105933) - (xy 133.962543 148.105917) - (xy 133.965009 148.099146) - (xy 133.965067 148.099167) - (xy 133.967543 148.092046) - (xy 133.967486 148.092028) - (xy 133.969756 148.085177) - (xy 133.969757 148.085173) - (xy 133.985126 148.010734) - (xy 133.985476 148.009155) - (xy 134.003 147.935221) - (xy 134.003 147.935212) - (xy 134.003838 147.928048) - (xy 134.003898 147.928055) - (xy 134.004664 147.920555) - (xy 134.004605 147.92055) - (xy 134.005234 147.913353) - (xy 134.004953 147.903709) - (xy 134.003024 147.837415) - (xy 134.002999 147.835734) - (xy 134.002999 146.615307) - (xy 134.022684 146.548269) - (xy 134.064735 146.509267) - (xy 134.064361 146.508694) - (xy 134.067721 146.506498) - (xy 134.06799 146.506249) - (xy 134.068649 146.505893) - (xy 134.247046 146.36704) - (xy 134.364098 146.239888) - (xy 134.400149 146.200727) - (xy 134.400149 146.200726) - (xy 134.400156 146.200719) - (xy 134.486193 146.069028) - (xy 134.539338 146.023675) - (xy 134.608569 146.014251) - ) - ) - (filled_polygon - (layer "B.Cu") - (pts - (xy 139.846812 144.751555) - (xy 139.897697 144.782288) - (xy 140.395302 145.279893) - (xy 140.859197 145.743788) - (xy 140.869022 145.756051) - (xy 140.869243 145.755869) - (xy 140.874211 145.761874) - (xy 140.923932 145.808566) - (xy 140.925332 145.809923) - (xy 140.945523 145.830115) - (xy 140.945527 145.830118) - (xy 140.945529 145.83012) - (xy 140.951011 145.834373) - (xy 140.955443 145.838157) - (xy 140.989418 145.870062) - (xy 141.006976 145.879714) - (xy 141.023235 145.890395) - (xy 141.039064 145.902673) - (xy 141.081838 145.921182) - (xy 141.087056 145.923738) - (xy 141.127908 145.946197) - (xy 141.147316 145.95118) - (xy 141.165717 145.95748) - (xy 141.184104 145.965437) - (xy 141.227488 145.972308) - (xy 141.230119 145.972725) - (xy 141.235839 145.973909) - (xy 141.280981 145.9855) - (xy 141.301016 145.9855) - (xy 141.320414 145.987026) - (xy 141.340194 145.990159) - (xy 141.340195 145.99016) - (xy 141.340195 145.990159) - (xy 141.340196 145.99016) - (xy 141.386583 145.985775) - (xy 141.392422 145.9855) - (xy 142.192129 145.9855) - (xy 142.259168 146.005185) - (xy 142.295937 146.041678) - (xy 142.399842 146.200716) - (xy 142.39985 146.200727) - (xy 142.538824 146.351691) - (xy 142.552954 146.36704) - (xy 142.614163 146.414681) - (xy 142.654975 146.471389) - (xy 142.662 146.512533) - (xy 142.662 148.975269) - (xy 142.642315 149.042308) - (xy 142.625681 149.06295) - (xy 139.614358 152.074272) - (xy 139.600729 152.086051) - (xy 139.581468 152.10039) - (xy 139.547898 152.140397) - (xy 139.544253 152.144376) - (xy 139.538407 152.150223) - (xy 139.518618 152.175251) - (xy 139.517481 152.176647) - (xy 139.468694 152.23479) - (xy 139.464729 152.240819) - (xy 139.464682 152.240788) - (xy 139.46063 152.247147) - (xy 139.460679 152.247177) - (xy 139.456889 152.253321) - (xy 139.424812 152.32211) - (xy 139.424027 152.323731) - (xy 139.389957 152.391572) - (xy 139.387488 152.398357) - (xy 139.387432 152.398336) - (xy 139.38496 152.40545) - (xy 139.385015 152.405469) - (xy 139.382743 152.412325) - (xy 139.367391 152.48667) - (xy 139.367001 152.488428) - (xy 139.349499 152.562279) - (xy 139.348661 152.569454) - (xy 139.348601 152.569447) - (xy 139.347835 152.576945) - (xy 139.347895 152.576951) - (xy 139.347265 152.58414) - (xy 139.349474 152.66003) - (xy 139.3495 152.661833) - (xy 139.3495 154.796095) - (xy 139.329815 154.863134) - (xy 139.279303 154.907814) - (xy 139.276896 154.908974) - (xy 139.247381 154.923188) - (xy 139.247366 154.923195) - (xy 139.246737 154.923624) - (xy 139.036782 155.066768) - (xy 138.849952 155.240121) - (xy 138.84995 155.240123) - (xy 138.691041 155.439388) - (xy 138.563608 155.660109) - (xy 138.470492 155.897362) - (xy 138.469122 155.901804) - (xy 138.467999 155.901457) - (xy 138.436509 155.95773) - (xy 138.374841 155.990576) - (xy 138.305205 155.984868) - (xy 138.249709 155.942418) - (xy 138.231134 155.901729) - (xy 138.2304 155.901956) - (xy 138.229026 155.897505) - (xy 138.135941 155.660328) - (xy 138.135942 155.660328) - (xy 138.008544 155.439671) - (xy 137.966546 155.387006) - (xy 137.162772 156.190779) - (xy 137.124099 156.097412) - (xy 137.027925 155.972075) - (xy 136.902588 155.875901) - (xy 136.80922 155.837227) - (xy 137.613185 155.033261) - (xy 137.452377 154.923624) - (xy 137.452376 154.923623) - (xy 137.222823 154.813078) - (xy 137.222825 154.813078) - (xy 136.979347 154.737975) - (xy 136.979341 154.737973) - (xy 136.727404 154.7) - (xy 136.472595 154.7) - (xy 136.220658 154.737973) - (xy 136.220652 154.737975) - (xy 135.977175 154.813078) - (xy 135.747624 154.923623) - (xy 135.747616 154.923628) - (xy 135.586813 155.033261) - (xy 136.390779 155.837227) - (xy 136.297412 155.875901) - (xy 136.172075 155.972075) - (xy 136.075901 156.097411) - (xy 136.037226 156.190779) - (xy 135.233453 155.387006) - (xy 135.191455 155.43967) - (xy 135.064058 155.660328) - (xy 134.970973 155.897505) - (xy 134.9696 155.901956) - (xy 134.968432 155.901595) - (xy 134.937026 155.957726) - (xy 134.87536 155.990575) - (xy 134.805724 155.984871) - (xy 134.750226 155.942423) - (xy 134.731581 155.901587) - (xy 134.730878 155.901804) - (xy 134.729509 155.897369) - (xy 134.729508 155.897363) - (xy 134.636393 155.660112) - (xy 134.508959 155.439388) - (xy 134.35005 155.240123) - (xy 134.163217 155.066768) - (xy 133.952634 154.923195) - (xy 133.952624 154.92319) - (xy 133.920695 154.907813) - (xy 133.868836 154.860989) - (xy 133.850499 154.796094) - (xy 133.850499 154.560973) - (xy 133.850499 154.252175) - (xy 133.870184 154.18514) - (xy 133.886813 154.164503) - (xy 138.818138 149.233177) - (xy 138.831767 149.2214) - (xy 138.85103 149.20706) - (xy 138.851032 149.207056) - (xy 138.851034 149.207056) - (xy 138.878853 149.173901) - (xy 138.884613 149.167035) - (xy 138.888267 149.163049) - (xy 138.89409 149.157227) - (xy 138.913906 149.132163) - (xy 138.914956 149.130873) - (xy 138.963802 149.072664) - (xy 138.963808 149.072651) - (xy 138.967772 149.066626) - (xy 138.967824 149.06666) - (xy 138.971871 149.060308) - (xy 138.971817 149.060275) - (xy 138.975606 149.054131) - (xy 138.97561 149.054127) - (xy 139.007712 148.985282) - (xy 139.008438 148.983783) - (xy 139.04254 148.915883) - (xy 139.042543 148.915867) - (xy 139.04501 148.909094) - (xy 139.045068 148.909115) - (xy 139.047543 148.901996) - (xy 139.047485 148.901977) - (xy 139.049755 148.895127) - (xy 139.049756 148.895123) - (xy 139.065108 148.820769) - (xy 139.06549 148.819046) - (xy 139.083001 148.745166) - (xy 139.083839 148.737998) - (xy 139.083897 148.738004) - (xy 139.084664 148.730506) - (xy 139.084604 148.730501) - (xy 139.085233 148.72331) - (xy 139.083026 148.647438) - (xy 139.083 148.645635) - (xy 139.083 146.615308) - (xy 139.102685 146.548269) - (xy 139.144724 146.509279) - (xy 139.144348 146.508703) - (xy 139.147725 146.506495) - (xy 139.147993 146.506248) - (xy 139.148002 146.506243) - (xy 139.148649 146.505893) - (xy 139.327046 146.36704) - (xy 139.444098 146.239888) - (xy 139.480149 146.200727) - (xy 139.480151 146.200724) - (xy 139.480156 146.200719) - (xy 139.603802 146.011465) - (xy 139.694611 145.804441) - (xy 139.750107 145.585293) - (xy 139.768775 145.36) - (xy 139.768775 145.359993) - (xy 139.750107 145.13471) - (xy 139.750107 145.134707) - (xy 139.694611 144.915559) - (xy 139.694609 144.915555) - (xy 139.692948 144.910716) - (xy 139.695184 144.909948) - (xy 139.687572 144.850404) - (xy 139.717589 144.787311) - (xy 139.776951 144.750461) - ) - ) - (filled_polygon - (layer "B.Cu") - (pts - (xy 147.371905 146.043753) - (xy 147.393804 146.069025) - (xy 147.479844 146.200719) - (xy 147.479849 146.200724) - (xy 147.47985 146.200727) - (xy 147.618824 146.351691) - (xy 147.632954 146.36704) - (xy 147.632957 146.367042) - (xy 147.63296 146.367045) - (xy 147.761662 146.467218) - (xy 147.802475 146.523928) - (xy 147.8095 146.565071) - (xy 147.8095 147.796294) - (xy 147.808191 147.814263) - (xy 147.80471 147.838025) - (xy 147.809264 147.890064) - (xy 147.8095 147.89547) - (xy 147.8095 147.903712) - (xy 147.813202 147.935391) - (xy 147.813383 147.937159) - (xy 147.815379 147.959967) - (xy 147.82 148.012792) - (xy 147.821461 148.019867) - (xy 147.821403 148.019878) - (xy 147.823034 148.027237) - (xy 147.823092 148.027224) - (xy 147.824757 148.034249) - (xy 147.824758 148.034254) - (xy 147.824759 148.034255) - (xy 147.849253 148.101555) - (xy 147.850708 148.105551) - (xy 147.851299 148.107253) - (xy 147.875182 148.179326) - (xy 147.878236 148.185874) - (xy 147.878182 148.185898) - (xy 147.88147 148.192688) - (xy 147.881521 148.192663) - (xy 147.884761 148.199113) - (xy 147.884762 148.199114) - (xy 147.884763 148.199117) - (xy 147.926494 148.262567) - (xy 147.927443 148.264058) - (xy 147.954456 148.307853) - (xy 147.967289 148.328657) - (xy 147.971766 148.334319) - (xy 147.971719 148.334356) - (xy 147.976482 148.340202) - (xy 147.976528 148.340164) - (xy 147.981173 148.345699) - (xy 148.036364 148.397769) - (xy 148.037658 148.399026) - (xy 148.925451 149.286819) - (xy 149.813181 150.174548) - (xy 149.846666 150.235871) - (xy 149.8495 150.262229) - (xy 149.8495 154.796095) - (xy 149.829815 154.863134) - (xy 149.779303 154.907814) - (xy 149.776896 154.908974) - (xy 149.747381 154.923188) - (xy 149.747366 154.923195) - (xy 149.746737 154.923624) - (xy 149.536782 155.066768) - (xy 149.349952 155.240121) - (xy 149.34995 155.240123) - (xy 149.191041 155.439388) - (xy 149.063608 155.660109) - (xy 148.970492 155.897362) - (xy 148.969122 155.901804) - (xy 148.967999 155.901457) - (xy 148.936509 155.95773) - (xy 148.874841 155.990576) - (xy 148.805205 155.984868) - (xy 148.749709 155.942418) - (xy 148.731134 155.901729) - (xy 148.7304 155.901956) - (xy 148.729026 155.897505) - (xy 148.635941 155.660328) - (xy 148.635942 155.660328) - (xy 148.508544 155.439671) - (xy 148.466546 155.387006) - (xy 147.662772 156.190779) - (xy 147.624099 156.097412) - (xy 147.527925 155.972075) - (xy 147.402588 155.875901) - (xy 147.30922 155.837227) - (xy 148.113185 155.033261) - (xy 147.952377 154.923624) - (xy 147.952376 154.923623) - (xy 147.722823 154.813078) - (xy 147.722825 154.813078) - (xy 147.479347 154.737975) - (xy 147.479341 154.737973) - (xy 147.227404 154.7) - (xy 146.972595 154.7) - (xy 146.720658 154.737973) - (xy 146.720652 154.737975) - (xy 146.477175 154.813078) - (xy 146.247624 154.923623) - (xy 146.247616 154.923628) - (xy 146.086813 155.033261) - (xy 146.890779 155.837227) - (xy 146.797412 155.875901) - (xy 146.672075 155.972075) - (xy 146.575901 156.097411) - (xy 146.537226 156.190779) - (xy 145.733453 155.387006) - (xy 145.691455 155.43967) - (xy 145.564058 155.660328) - (xy 145.470973 155.897505) - (xy 145.4696 155.901956) - (xy 145.468432 155.901595) - (xy 145.437026 155.957726) - (xy 145.37536 155.990575) - (xy 145.305724 155.984871) - (xy 145.250226 155.942423) - (xy 145.231581 155.901587) - (xy 145.230878 155.901804) - (xy 145.229509 155.897369) - (xy 145.229508 155.897363) - (xy 145.136393 155.660112) - (xy 145.008959 155.439388) - (xy 144.85005 155.240123) - (xy 144.663217 155.066768) - (xy 144.452634 154.923195) - (xy 144.420696 154.907814) - (xy 144.368838 154.860992) - (xy 144.3505 154.796095) - (xy 144.3505 150.512228) - (xy 144.370185 150.445189) - (xy 144.386814 150.424552) - (xy 146.438138 148.373227) - (xy 146.451767 148.36145) - (xy 146.457609 148.357101) - (xy 146.47103 148.34711) - (xy 146.471032 148.347106) - (xy 146.471034 148.347106) - (xy 146.498853 148.313951) - (xy 146.504613 148.307085) - (xy 146.508267 148.303099) - (xy 146.51409 148.297277) - (xy 146.533876 148.27225) - (xy 146.534994 148.270878) - (xy 146.583802 148.212714) - (xy 146.583803 148.212711) - (xy 146.587772 148.206679) - (xy 146.587823 148.206712) - (xy 146.591869 148.20036) - (xy 146.591817 148.200328) - (xy 146.595609 148.194179) - (xy 146.595611 148.194177) - (xy 146.627695 148.125369) - (xy 146.628458 148.123792) - (xy 146.66254 148.055933) - (xy 146.662543 148.055917) - (xy 146.66501 148.049144) - (xy 146.665068 148.049165) - (xy 146.667543 148.042046) - (xy 146.667485 148.042027) - (xy 146.669755 148.035177) - (xy 146.669756 148.035173) - (xy 146.685108 147.960819) - (xy 146.68549 147.959096) - (xy 146.690684 147.937185) - (xy 146.703 147.885221) - (xy 146.703 147.88522) - (xy 146.703001 147.885216) - (xy 146.703839 147.878048) - (xy 146.703897 147.878054) - (xy 146.704664 147.870556) - (xy 146.704604 147.870551) - (xy 146.705233 147.86336) - (xy 146.703026 147.787488) - (xy 146.703 147.785685) - (xy 146.703 146.615308) - (xy 146.722685 146.548269) - (xy 146.764724 146.509279) - (xy 146.764348 146.508703) - (xy 146.767725 146.506495) - (xy 146.767993 146.506248) - (xy 146.768002 146.506243) - (xy 146.768649 146.505893) - (xy 146.947046 146.36704) - (xy 147.064098 146.239888) - (xy 147.100149 146.200727) - (xy 147.100149 146.200726) - (xy 147.100156 146.200719) - (xy 147.186193 146.069028) - (xy 147.239338 146.023675) - (xy 147.308569 146.014251) - ) - ) - (filled_polygon - (layer "B.Cu") - (pts - (xy 152.451905 146.043753) - (xy 152.473804 146.069025) - (xy 152.559844 146.200719) - (xy 152.559849 146.200724) - (xy 152.55985 146.200727) - (xy 152.698824 146.351691) - (xy 152.712954 146.36704) - (xy 152.712957 146.367042) - (xy 152.71296 146.367045) - (xy 152.841662 146.467218) - (xy 152.882475 146.523928) - (xy 152.8895 146.565071) - (xy 152.8895 147.576294) - (xy 152.888191 147.594263) - (xy 152.88471 147.618025) - (xy 152.889264 147.670064) - (xy 152.8895 147.67547) - (xy 152.8895 147.683712) - (xy 152.893202 147.715391) - (xy 152.893386 147.717185) - (xy 152.9 147.792792) - (xy 152.901461 147.799867) - (xy 152.901403 147.799878) - (xy 152.903034 147.807237) - (xy 152.903092 147.807224) - (xy 152.904757 147.814249) - (xy 152.904758 147.814254) - (xy 152.904759 147.814255) - (xy 152.928383 147.879165) - (xy 152.930708 147.885551) - (xy 152.931299 147.887253) - (xy 152.955182 147.959326) - (xy 152.958236 147.965874) - (xy 152.958182 147.965898) - (xy 152.96147 147.972688) - (xy 152.961521 147.972663) - (xy 152.964761 147.979113) - (xy 152.964762 147.979114) - (xy 152.964763 147.979117) - (xy 153.006494 148.042567) - (xy 153.007443 148.044058) - (xy 153.04561 148.105936) - (xy 153.047289 148.108657) - (xy 153.051766 148.114319) - (xy 153.051719 148.114356) - (xy 153.056482 148.120202) - (xy 153.056528 148.120164) - (xy 153.061173 148.125699) - (xy 153.116364 148.177769) - (xy 153.117658 148.179026) - (xy 159.92948 154.990847) - (xy 159.962965 155.05217) - (xy 159.957981 155.121862) - (xy 159.926142 155.169425) - (xy 159.849953 155.240119) - (xy 159.849949 155.240123) - (xy 159.691041 155.439388) - (xy 159.563608 155.660109) - (xy 159.470492 155.897362) - (xy 159.469122 155.901804) - (xy 159.467999 155.901457) - (xy 159.436509 155.95773) - (xy 159.374841 155.990576) - (xy 159.305205 155.984868) - (xy 159.249709 155.942418) - (xy 159.231134 155.901729) - (xy 159.2304 155.901956) - (xy 159.229026 155.897505) - (xy 159.135941 155.660328) - (xy 159.135942 155.660328) - (xy 159.008544 155.439671) - (xy 158.966546 155.387006) - (xy 158.162772 156.190779) - (xy 158.124099 156.097412) - (xy 158.027925 155.972075) - (xy 157.902588 155.875901) - (xy 157.80922 155.837227) - (xy 158.613185 155.033261) - (xy 158.452377 154.923624) - (xy 158.452376 154.923623) - (xy 158.222823 154.813078) - (xy 158.222825 154.813078) - (xy 157.979347 154.737975) - (xy 157.979341 154.737973) - (xy 157.727404 154.7) - (xy 157.472595 154.7) - (xy 157.220658 154.737973) - (xy 157.220652 154.737975) - (xy 156.977175 154.813078) - (xy 156.747624 154.923623) - (xy 156.747616 154.923628) - (xy 156.586813 155.033261) - (xy 157.390779 155.837227) - (xy 157.297412 155.875901) - (xy 157.172075 155.972075) - (xy 157.075901 156.097411) - (xy 157.037226 156.190779) - (xy 156.233453 155.387006) - (xy 156.191455 155.43967) - (xy 156.064058 155.660328) - (xy 155.970973 155.897505) - (xy 155.9696 155.901956) - (xy 155.968432 155.901595) - (xy 155.937026 155.957726) - (xy 155.87536 155.990575) - (xy 155.805724 155.984871) - (xy 155.750226 155.942423) - (xy 155.731581 155.901587) - (xy 155.730878 155.901804) - (xy 155.729509 155.897369) - (xy 155.729508 155.897363) - (xy 155.636393 155.660112) - (xy 155.508959 155.439388) - (xy 155.35005 155.240123) - (xy 155.163217 155.066768) - (xy 154.952634 154.923195) - (xy 154.920696 154.907814) - (xy 154.868838 154.860992) - (xy 154.8505 154.796095) - (xy 154.8505 152.463705) - (xy 154.851809 152.445735) - (xy 154.852129 152.443547) - (xy 154.855289 152.421977) - (xy 154.850735 152.369931) - (xy 154.8505 152.364528) - (xy 154.8505 152.356296) - (xy 154.8505 152.356291) - (xy 154.846795 152.324602) - (xy 154.846618 152.322876) - (xy 154.839999 152.247203) - (xy 154.839999 152.247201) - (xy 154.838539 152.240129) - (xy 154.838597 152.240116) - (xy 154.836965 152.232757) - (xy 154.836906 152.232772) - (xy 154.835241 152.225751) - (xy 154.835241 152.225745) - (xy 154.809267 152.154382) - (xy 154.808691 152.152723) - (xy 154.784814 152.080666) - (xy 154.78481 152.080659) - (xy 154.78176 152.074118) - (xy 154.781815 152.074091) - (xy 154.778533 152.067313) - (xy 154.77848 152.06734) - (xy 154.775236 152.060881) - (xy 154.733529 151.99747) - (xy 154.73256 151.995949) - (xy 154.69271 151.931342) - (xy 154.688234 151.925682) - (xy 154.688281 151.925644) - (xy 154.683519 151.919799) - (xy 154.683474 151.919838) - (xy 154.678831 151.914305) - (xy 154.623616 151.862212) - (xy 154.622356 151.860989) - (xy 151.886819 149.125451) - (xy 151.853334 149.064128) - (xy 151.8505 149.03777) - (xy 151.8505 146.565071) - (xy 151.870185 146.498032) - (xy 151.898338 146.467218) - (xy 151.933802 146.439615) - (xy 152.027046 146.36704) - (xy 152.144098 146.239888) - (xy 152.180149 146.200727) - (xy 152.180149 146.200726) - (xy 152.180156 146.200719) - (xy 152.266193 146.069028) - (xy 152.319338 146.023675) - (xy 152.388569 146.014251) - ) - ) - (filled_polygon - (layer "B.Cu") - (pts - (xy 170.044859 154.260235) - (xy 170.065501 154.276869) - (xy 170.620407 154.831775) - (xy 170.653892 154.893098) - (xy 170.648908 154.96279) - (xy 170.607036 155.018723) - (xy 170.602578 155.021909) - (xy 170.536786 155.066764) - (xy 170.349952 155.240121) - (xy 170.34995 155.240123) - (xy 170.191041 155.439388) - (xy 170.063608 155.660109) - (xy 169.970492 155.897362) - (xy 169.969122 155.901804) - (xy 169.967999 155.901457) - (xy 169.936509 155.95773) - (xy 169.874841 155.990576) - (xy 169.805205 155.984868) - (xy 169.749709 155.942418) - (xy 169.731134 155.901729) - (xy 169.7304 155.901956) - (xy 169.729026 155.897505) - (xy 169.635941 155.660328) - (xy 169.635942 155.660328) - (xy 169.508544 155.439671) - (xy 169.466546 155.387006) - (xy 168.662772 156.190779) - (xy 168.624099 156.097412) - (xy 168.527925 155.972075) - (xy 168.402588 155.875901) - (xy 168.30922 155.837227) - (xy 169.113185 155.033261) - (xy 168.952377 154.923624) - (xy 168.952376 154.923623) - (xy 168.722823 154.813078) - (xy 168.722825 154.813078) - (xy 168.479347 154.737975) - (xy 168.479341 154.737973) - (xy 168.227404 154.7) - (xy 167.972595 154.7) - (xy 167.720658 154.737973) - (xy 167.720652 154.737975) - (xy 167.477175 154.813078) - (xy 167.247624 154.923623) - (xy 167.247616 154.923628) - (xy 167.086813 155.033261) - (xy 167.890779 155.837227) - (xy 167.797412 155.875901) - (xy 167.672075 155.972075) - (xy 167.575901 156.097411) - (xy 167.537226 156.190779) - (xy 166.733453 155.387006) - (xy 166.691455 155.43967) - (xy 166.564058 155.660328) - (xy 166.470973 155.897505) - (xy 166.4696 155.901956) - (xy 166.468432 155.901595) - (xy 166.437026 155.957726) - (xy 166.37536 155.990575) - (xy 166.305724 155.984871) - (xy 166.250226 155.942423) - (xy 166.231581 155.901587) - (xy 166.230878 155.901804) - (xy 166.229509 155.897369) - (xy 166.229508 155.897363) - (xy 166.136393 155.660112) - (xy 166.008959 155.439388) - (xy 165.85005 155.240123) - (xy 165.663217 155.066768) - (xy 165.452634 154.923195) - (xy 165.420696 154.907814) - (xy 165.368838 154.860992) - (xy 165.3505 154.796095) - (xy 165.3505 154.36455) - (xy 165.370185 154.297511) - (xy 165.422989 154.251756) - (xy 165.4745 154.24055) - (xy 169.97782 154.24055) - ) - ) - (filled_polygon - (layer "B.Cu") - (pts - (xy 142.768834 151.145046) - (xy 142.824767 151.186918) - (xy 142.849184 151.252382) - (xy 142.8495 151.261228) - (xy 142.8495 154.796095) - (xy 142.829815 154.863134) - (xy 142.779303 154.907814) - (xy 142.776896 154.908974) - (xy 142.747381 154.923188) - (xy 142.747366 154.923195) - (xy 142.746737 154.923624) - (xy 142.536782 155.066768) - (xy 142.349952 155.240121) - (xy 142.34995 155.240123) - (xy 142.191041 155.439388) - (xy 142.063608 155.660109) - (xy 141.970492 155.897362) - (xy 141.969122 155.901804) - (xy 141.967677 155.901358) - (xy 141.93678 155.956593) - (xy 141.875117 155.989449) - (xy 141.80548 155.983752) - (xy 141.749978 155.941311) - (xy 141.731805 155.901517) - (xy 141.730878 155.901804) - (xy 141.729509 155.897369) - (xy 141.729508 155.897363) - (xy 141.636393 155.660112) - (xy 141.508959 155.439388) - (xy 141.35005 155.240123) - (xy 141.163217 155.066768) - (xy 140.952634 154.923195) - (xy 140.920696 154.907814) - (xy 140.868838 154.860992) - (xy 140.8505 154.796095) - (xy 140.8505 153.012229) - (xy 140.870185 152.94519) - (xy 140.886819 152.924548) - (xy 141.754316 152.057051) - (xy 142.637821 151.173545) - (xy 142.699142 151.140062) - ) - ) - (filled_polygon - (layer "B.Cu") - (pts - (xy 151.555703 150.917516) - (xy 151.562181 150.923548) - (xy 153.313181 152.674548) - (xy 153.346666 152.735871) - (xy 153.3495 152.762229) - (xy 153.3495 154.796095) - (xy 153.329815 154.863134) - (xy 153.279303 154.907814) - (xy 153.276896 154.908974) - (xy 153.247381 154.923188) - (xy 153.247366 154.923195) - (xy 153.246737 154.923624) - (xy 153.036782 155.066768) - (xy 152.849952 155.240121) - (xy 152.84995 155.240123) - (xy 152.691041 155.439388) - (xy 152.563608 155.660109) - (xy 152.470492 155.897362) - (xy 152.469122 155.901804) - (xy 152.467677 155.901358) - (xy 152.43678 155.956593) - (xy 152.375117 155.989449) - (xy 152.30548 155.983752) - (xy 152.249978 155.941311) - (xy 152.231805 155.901517) - (xy 152.230878 155.901804) - (xy 152.229509 155.897369) - (xy 152.229508 155.897363) - (xy 152.136393 155.660112) - (xy 152.008959 155.439388) - (xy 151.85005 155.240123) - (xy 151.663217 155.066768) - (xy 151.452634 154.923195) - (xy 151.420696 154.907814) - (xy 151.368838 154.860992) - (xy 151.3505 154.796095) - (xy 151.3505 151.011229) - (xy 151.370185 150.94419) - (xy 151.422989 150.898435) - (xy 151.492147 150.888491) - ) - ) - (filled_polygon - (layer "B.Cu") - (pts - (xy 154.991905 146.043753) - (xy 155.013804 146.069025) - (xy 155.099844 146.200719) - (xy 155.099849 146.200724) - (xy 155.09985 146.200727) - (xy 155.238824 146.351691) - (xy 155.252954 146.36704) - (xy 155.431351 146.505893) - (xy 155.630169 146.613488) - (xy 155.630172 146.613489) - (xy 155.843982 146.68689) - (xy 155.843984 146.68689) - (xy 155.843986 146.686891) - (xy 156.066967 146.7241) - (xy 156.066968 146.7241) - (xy 156.29303 146.7241) - (xy 156.293033 146.7241) - (xy 156.392648 146.707476) - (xy 156.462009 146.715857) - (xy 156.500736 146.742104) - (xy 163.813181 154.054548) - (xy 163.846666 154.115871) - (xy 163.8495 154.142229) - (xy 163.8495 154.796095) - (xy 163.829815 154.863134) - (xy 163.779303 154.907814) - (xy 163.776896 154.908974) - (xy 163.747381 154.923188) - (xy 163.747366 154.923195) - (xy 163.746737 154.923624) - (xy 163.536782 155.066768) - (xy 163.349952 155.240121) - (xy 163.34995 155.240123) - (xy 163.191041 155.439388) - (xy 163.063608 155.660109) - (xy 162.970492 155.897362) - (xy 162.969122 155.901804) - (xy 162.967677 155.901358) - (xy 162.93678 155.956593) - (xy 162.875117 155.989449) - (xy 162.80548 155.983752) - (xy 162.749978 155.941311) - (xy 162.731805 155.901517) - (xy 162.730878 155.901804) - (xy 162.729509 155.897369) - (xy 162.729508 155.897363) - (xy 162.636393 155.660112) - (xy 162.508959 155.439388) - (xy 162.35005 155.240123) - (xy 162.163217 155.066768) - (xy 161.952634 154.923195) - (xy 161.890137 154.893098) - (xy 161.856511 154.876904) - (xy 161.804652 154.830081) - (xy 161.792608 154.804187) - (xy 161.784815 154.780668) - (xy 161.781762 154.774121) - (xy 161.781815 154.774095) - (xy 161.778531 154.767311) - (xy 161.778479 154.767338) - (xy 161.775236 154.760882) - (xy 161.73353 154.697469) - (xy 161.732561 154.695949) - (xy 161.692714 154.631347) - (xy 161.688234 154.625681) - (xy 161.68828 154.625643) - (xy 161.683519 154.619799) - (xy 161.683474 154.619838) - (xy 161.678831 154.614305) - (xy 161.623634 154.562229) - (xy 161.622374 154.561006) - (xy 154.426819 147.365451) - (xy 154.393334 147.304128) - (xy 154.3905 147.27777) - (xy 154.3905 146.565071) - (xy 154.410185 146.498032) - (xy 154.438338 146.467218) - (xy 154.473802 146.439615) - (xy 154.567046 146.36704) - (xy 154.684098 146.239888) - (xy 154.720149 146.200727) - (xy 154.720149 146.200726) - (xy 154.720156 146.200719) - (xy 154.806193 146.069028) - (xy 154.859338 146.023675) - (xy 154.928569 146.014251) - ) - ) - (filled_polygon - (layer "B.Cu") - (pts - (xy 173.294859 153.560235) - (xy 173.315501 153.576869) - (xy 173.800109 154.061476) - (xy 173.833594 154.122799) - (xy 173.836428 154.149157) - (xy 173.836428 155.213689) - (xy 173.816743 155.280728) - (xy 173.809375 155.291002) - (xy 173.691041 155.439388) - (xy 173.563608 155.660109) - (xy 173.470492 155.897362) - (xy 173.469122 155.901804) - (xy 173.467677 155.901358) - (xy 173.43678 155.956593) - (xy 173.375117 155.989449) - (xy 173.30548 155.983752) - (xy 173.249978 155.941311) - (xy 173.231805 155.901517) - (xy 173.230878 155.901804) - (xy 173.229509 155.897369) - (xy 173.229508 155.897363) - (xy 173.136393 155.660112) - (xy 173.008959 155.439388) - (xy 172.85005 155.240123) - (xy 172.663217 155.066768) - (xy 172.452634 154.923195) - (xy 172.452628 154.923192) - (xy 172.452627 154.923191) - (xy 172.452624 154.92319) - (xy 172.423106 154.908974) - (xy 172.371247 154.862151) - (xy 172.352935 154.794724) - (xy 172.354216 154.779295) - (xy 172.355289 154.771977) - (xy 172.350735 154.719933) - (xy 172.3505 154.714532) - (xy 172.3505 154.706296) - (xy 172.3505 154.706291) - (xy 172.346791 154.674564) - (xy 172.346618 154.672872) - (xy 172.339998 154.597202) - (xy 172.339996 154.597197) - (xy 172.338538 154.590133) - (xy 172.338597 154.59012) - (xy 172.336967 154.582764) - (xy 172.336908 154.582779) - (xy 172.335241 154.575747) - (xy 172.335241 154.575745) - (xy 172.309247 154.504327) - (xy 172.308708 154.502775) - (xy 172.284814 154.430665) - (xy 172.284813 154.430663) - (xy 172.281763 154.424121) - (xy 172.281817 154.424095) - (xy 172.278533 154.417312) - (xy 172.27848 154.41734) - (xy 172.275238 154.410885) - (xy 172.275237 154.410883) - (xy 172.233496 154.347419) - (xy 172.232555 154.345941) - (xy 172.192709 154.281341) - (xy 172.188233 154.275681) - (xy 172.18828 154.275643) - (xy 172.183519 154.269799) - (xy 172.183474 154.269838) - (xy 172.178831 154.264305) - (xy 172.123617 154.212213) - (xy 172.122357 154.21099) - (xy 171.663599 153.752231) - (xy 171.630114 153.690908) - (xy 171.635098 153.621216) - (xy 171.67697 153.565283) - (xy 171.742434 153.540866) - (xy 171.75128 153.54055) - (xy 173.22782 153.54055) - ) - ) - (filled_polygon - (layer "B.Cu") - (pts - (xy 132.131905 146.043753) - (xy 132.153804 146.069025) - (xy 132.239844 146.200719) - (xy 132.239849 146.200724) - (xy 132.23985 146.200727) - (xy 132.378824 146.351691) - (xy 132.392954 146.36704) - (xy 132.454163 146.414681) - (xy 132.494975 146.471389) - (xy 132.502 146.512533) - (xy 132.502 147.48527) - (xy 132.482315 147.552309) - (xy 132.465681 147.572951) - (xy 128.225451 151.813181) - (xy 128.164128 151.846666) - (xy 128.13777 151.8495) - (xy 127.91123 151.8495) - (xy 127.844191 151.829815) - (xy 127.798436 151.777011) - (xy 127.788492 151.707853) - (xy 127.817517 151.644297) - (xy 127.823549 151.637819) - (xy 128.348187 151.113181) - (xy 131.198138 148.263227) - (xy 131.211767 148.25145) - (xy 131.23103 148.23711) - (xy 131.231032 148.237106) - (xy 131.231034 148.237106) - (xy 131.256564 148.206679) - (xy 131.264613 148.197085) - (xy 131.268267 148.193099) - (xy 131.269916 148.19145) - (xy 131.274091 148.187276) - (xy 131.2939 148.162221) - (xy 131.294976 148.160901) - (xy 131.343802 148.102714) - (xy 131.343804 148.102709) - (xy 131.347774 148.096675) - (xy 131.347825 148.096708) - (xy 131.351869 148.09036) - (xy 131.351817 148.090328) - (xy 131.355606 148.084182) - (xy 131.355611 148.084177) - (xy 131.387712 148.015334) - (xy 131.388461 148.013787) - (xy 131.42254 147.945933) - (xy 131.422541 147.945928) - (xy 131.425008 147.93915) - (xy 131.425066 147.939171) - (xy 131.427543 147.932044) - (xy 131.427486 147.932026) - (xy 131.429756 147.925176) - (xy 131.430711 147.92055) - (xy 131.445118 147.850772) - (xy 131.445484 147.849119) - (xy 131.463 147.775221) - (xy 131.463 147.775217) - (xy 131.463001 147.775213) - (xy 131.463839 147.768048) - (xy 131.463898 147.768054) - (xy 131.464664 147.760554) - (xy 131.464605 147.760549) - (xy 131.465234 147.753359) - (xy 131.463026 147.677467) - (xy 131.463 147.675664) - (xy 131.463 147.16251) - (xy 131.463 146.615304) - (xy 131.482683 146.548269) - (xy 131.524725 146.50928) - (xy 131.524348 146.508703) - (xy 131.527734 146.50649) - (xy 131.527999 146.506244) - (xy 131.528649 146.505893) - (xy 131.707046 146.36704) - (xy 131.824098 146.239888) - (xy 131.860149 146.200727) - (xy 131.860149 146.200726) - (xy 131.860156 146.200719) - (xy 131.946193 146.069028) - (xy 131.999338 146.023675) - (xy 132.068569 146.014251) - ) - ) - (filled_polygon - (layer "B.Cu") - (pts - (xy 137.211905 146.043753) - (xy 137.233804 146.069025) - (xy 137.319844 146.200719) - (xy 137.319849 146.200724) - (xy 137.31985 146.200727) - (xy 137.458824 146.351691) - (xy 137.472954 146.36704) - (xy 137.534163 146.414681) - (xy 137.574975 146.471389) - (xy 137.582 146.512533) - (xy 137.582 148.29522) - (xy 137.562315 148.362259) - (xy 137.545681 148.382901) - (xy 136.754681 149.173901) - (xy 136.693358 149.207386) - (xy 136.623666 149.202402) - (xy 136.567733 149.16053) - (xy 136.543316 149.095066) - (xy 136.543 149.08622) - (xy 136.543 146.615308) - (xy 136.562685 146.548269) - (xy 136.604724 146.509279) - (xy 136.604348 146.508703) - (xy 136.607725 146.506495) - (xy 136.607993 146.506248) - (xy 136.608002 146.506243) - (xy 136.608649 146.505893) - (xy 136.787046 146.36704) - (xy 136.904098 146.239888) - (xy 136.940149 146.200727) - (xy 136.940149 146.200726) - (xy 136.940156 146.200719) - (xy 137.026193 146.069028) - (xy 137.079338 146.023675) - (xy 137.148569 146.014251) - ) - ) - (filled_polygon - (layer "B.Cu") - (pts - (xy 127.051905 146.043753) - (xy 127.073804 146.069025) - (xy 127.159844 146.200719) - (xy 127.159849 146.200724) - (xy 127.15985 146.200727) - (xy 127.298824 146.351691) - (xy 127.312954 146.36704) - (xy 127.374163 146.414681) - (xy 127.414975 146.471389) - (xy 127.422 146.512533) - (xy 127.422 147.265269) - (xy 127.402315 147.332308) - (xy 127.385681 147.35295) - (xy 125.625451 149.113181) - (xy 125.564128 149.146666) - (xy 125.53777 149.1495) - (xy 125.21123 149.1495) - (xy 125.144191 149.129815) - (xy 125.098436 149.077011) - (xy 125.088492 149.007853) - (xy 125.117517 148.944297) - (xy 125.123549 148.937819) - (xy 125.614701 148.446666) - (xy 126.118138 147.943227) - (xy 126.131767 147.93145) - (xy 126.15103 147.91711) - (xy 126.151032 147.917106) - (xy 126.151034 147.917106) - (xy 126.176779 147.886423) - (xy 126.184613 147.877085) - (xy 126.188267 147.873099) - (xy 126.189334 147.872032) - (xy 126.19409 147.867277) - (xy 126.213876 147.84225) - (xy 126.214994 147.840878) - (xy 126.263802 147.782714) - (xy 126.263803 147.782711) - (xy 126.267772 147.776679) - (xy 126.267823 147.776712) - (xy 126.271869 147.77036) - (xy 126.271817 147.770328) - (xy 126.275609 147.764179) - (xy 126.275611 147.764177) - (xy 126.307695 147.695369) - (xy 126.308458 147.693792) - (xy 126.34254 147.625933) - (xy 126.342543 147.625917) - (xy 126.34501 147.619144) - (xy 126.345068 147.619165) - (xy 126.347543 147.612046) - (xy 126.347485 147.612027) - (xy 126.349755 147.605177) - (xy 126.351421 147.59711) - (xy 126.365108 147.530819) - (xy 126.36549 147.529096) - (xy 126.366947 147.522951) - (xy 126.383 147.455221) - (xy 126.383 147.45522) - (xy 126.383001 147.455216) - (xy 126.383839 147.448048) - (xy 126.383897 147.448054) - (xy 126.384664 147.440556) - (xy 126.384604 147.440551) - (xy 126.385233 147.43336) - (xy 126.385033 147.426501) - (xy 126.383583 147.376632) - (xy 126.383026 147.357488) - (xy 126.383 147.355685) - (xy 126.383 146.615308) - (xy 126.402685 146.548269) - (xy 126.444724 146.509279) - (xy 126.444348 146.508703) - (xy 126.447725 146.506495) - (xy 126.447993 146.506248) - (xy 126.448002 146.506243) - (xy 126.448649 146.505893) - (xy 126.627046 146.36704) - (xy 126.744098 146.239888) - (xy 126.780149 146.200727) - (xy 126.780149 146.200726) - (xy 126.780156 146.200719) - (xy 126.866193 146.069028) - (xy 126.919338 146.023675) - (xy 126.988569 146.014251) - ) - ) - (filled_polygon - (layer "B.Cu") - (pts - (xy 124.511903 146.043753) - (xy 124.533807 146.069031) - (xy 124.619842 146.200716) - (xy 124.61985 146.200727) - (xy 124.758824 146.351691) - (xy 124.772954 146.36704) - (xy 124.834163 146.414681) - (xy 124.874975 146.471389) - (xy 124.882 146.512533) - (xy 124.881999 147.005269) - (xy 124.862314 147.072309) - (xy 124.84568 147.09295) - (xy 123.525451 148.413181) - (xy 123.464128 148.446666) - (xy 123.43777 148.4495) - (xy 122.71123 148.4495) - (xy 122.644191 148.429815) - (xy 122.598436 148.377011) - (xy 122.588492 148.307853) - (xy 122.617517 148.244297) - (xy 122.623549 148.237819) - (xy 122.852314 148.009054) - (xy 123.578142 147.283224) - (xy 123.591771 147.271447) - (xy 123.61103 147.25711) - (xy 123.644601 147.217101) - (xy 123.648261 147.213106) - (xy 123.650868 147.2105) - (xy 123.654091 147.207277) - (xy 123.67388 147.182247) - (xy 123.675009 147.180862) - (xy 123.68667 147.166965) - (xy 123.723802 147.122714) - (xy 123.723805 147.122707) - (xy 123.727774 147.116675) - (xy 123.727825 147.116708) - (xy 123.731872 147.110356) - (xy 123.73182 147.110324) - (xy 123.735611 147.104177) - (xy 123.740812 147.093023) - (xy 123.767726 147.035304) - (xy 123.768452 147.033805) - (xy 123.80254 146.965933) - (xy 123.802543 146.965917) - (xy 123.805009 146.959146) - (xy 123.805067 146.959167) - (xy 123.807543 146.952046) - (xy 123.807486 146.952028) - (xy 123.809756 146.945177) - (xy 123.809757 146.945173) - (xy 123.825126 146.870734) - (xy 123.825476 146.869155) - (xy 123.843 146.795221) - (xy 123.843 146.795212) - (xy 123.843838 146.788048) - (xy 123.843898 146.788055) - (xy 123.844664 146.780555) - (xy 123.844605 146.78055) - (xy 123.845234 146.77336) - (xy 123.843026 146.697467) - (xy 123.843 146.695664) - (xy 123.843 146.615308) - (xy 123.862685 146.548269) - (xy 123.904724 146.509279) - (xy 123.904348 146.508703) - (xy 123.907725 146.506495) - (xy 123.907993 146.506248) - (xy 123.908002 146.506243) - (xy 123.908649 146.505893) - (xy 124.087046 146.36704) - (xy 124.204098 146.239888) - (xy 124.240149 146.200727) - (xy 124.240151 146.200724) - (xy 124.240156 146.200719) - (xy 124.326193 146.069029) - (xy 124.379336 146.023675) - (xy 124.448567 146.014251) - ) - ) - (filled_polygon - (layer "B.Cu") - (pts - (xy 144.831905 146.043753) - (xy 144.853804 146.069025) - (xy 144.939844 146.200719) - (xy 144.939849 146.200724) - (xy 144.93985 146.200727) - (xy 145.078824 146.351691) - (xy 145.092954 146.36704) - (xy 145.154163 146.414681) - (xy 145.194975 146.471389) - (xy 145.202 146.512533) - (xy 145.202 147.43527) - (xy 145.182315 147.502309) - (xy 145.165681 147.522951) - (xy 144.374681 148.313951) - (xy 144.313358 148.347436) - (xy 144.243666 148.342452) - (xy 144.187733 148.30058) - (xy 144.163316 148.235116) - (xy 144.163 148.22627) - (xy 144.163 146.615308) - (xy 144.182685 146.548269) - (xy 144.224724 146.509279) - (xy 144.224348 146.508703) - (xy 144.227725 146.506495) - (xy 144.227993 146.506248) - (xy 144.228002 146.506243) - (xy 144.228649 146.505893) - (xy 144.407046 146.36704) - (xy 144.524098 146.239888) - (xy 144.560149 146.200727) - (xy 144.560149 146.200726) - (xy 144.560156 146.200719) - (xy 144.646193 146.069028) - (xy 144.699338 146.023675) - (xy 144.768569 146.014251) - ) - ) - (filled_polygon - (layer "B.Cu") - (pts - (xy 112.533155 145.146799) - (xy 112.492 145.286961) - (xy 112.492 145.433039) - (xy 112.533155 145.573201) - (xy 112.556804 145.61) - (xy 110.903196 145.61) - (xy 110.926845 145.573201) - (xy 110.968 145.433039) - (xy 110.968 145.286961) - (xy 110.926845 145.146799) - (xy 110.903196 145.11) - (xy 112.556804 145.11) - ) - ) - (filled_polygon - (layer "B.Cu") - (pts - (xy 121.935191 143.160185) - (xy 121.955833 143.176819) - (xy 122.498181 143.719166) - (xy 122.531666 143.780489) - (xy 122.5345 143.806847) - (xy 122.5345 144.073573) - (xy 122.514815 144.140612) - (xy 122.469519 144.182627) - (xy 122.411356 144.214103) - (xy 122.411353 144.214105) - (xy 122.232955 144.352959) - (xy 122.23295 144.352963) - (xy 122.07985 144.519272) - (xy 122.079842 144.519283) - (xy 121.993808 144.650968) - (xy 121.940662 144.696325) - (xy 121.87143 144.705748) - (xy 121.808095 144.676246) - (xy 121.786192 144.650968) - (xy 121.734741 144.572217) - (xy 121.700156 144.519281) - (xy 121.700153 144.519278) - (xy 121.700149 144.519272) - (xy 121.547049 144.352963) - (xy 121.547048 144.352962) - (xy 121.547046 144.35296) - (xy 121.368649 144.214107) - (xy 121.29291 144.173119) - (xy 121.169832 144.106512) - (xy 121.169827 144.10651) - (xy 120.956017 144.033109) - (xy 120.788778 144.005202) - (xy 120.733033 143.9959) - (xy 120.506967 143.9959) - (xy 120.477771 144.000772) - (xy 120.283982 144.033109) - (xy 120.278067 144.03514) - (xy 120.208268 144.038286) - (xy 120.150129 144.005538) - (xy 119.496772 143.352181) - (xy 119.463287 143.290858) - (xy 119.468271 143.221166) - (xy 119.510143 143.165233) - (xy 119.575607 143.140816) - (xy 119.584453 143.1405) - (xy 121.868152 143.1405) - ) - ) - (filled_polygon - (layer "B.Cu") - (pts - (xy 126.155191 142.260185) - (xy 126.175833 142.276819) - (xy 127.57818 143.679166) - (xy 127.611665 143.740489) - (xy 127.614499 143.766847) - (xy 127.614499 144.073573) - (xy 127.594814 144.140612) - (xy 127.549518 144.182627) - (xy 127.491354 144.214104) - (xy 127.491349 144.214108) - (xy 127.312955 144.352958) - (xy 127.31295 144.352963) - (xy 127.15985 144.519272) - (xy 127.159842 144.519283) - (xy 127.073808 144.650968) - (xy 127.020662 144.696325) - (xy 126.95143 144.705748) - (xy 126.888095 144.676246) - (xy 126.866192 144.650968) - (xy 126.814741 144.572217) - (xy 126.780156 144.519281) - (xy 126.780153 144.519278) - (xy 126.780149 144.519272) - (xy 126.627049 144.352963) - (xy 126.627048 144.352962) - (xy 126.627046 144.35296) - (xy 126.448649 144.214107) - (xy 126.37291 144.173119) - (xy 126.249832 144.106512) - (xy 126.249827 144.10651) - (xy 126.036017 144.033109) - (xy 125.868778 144.005202) - (xy 125.813033 143.9959) - (xy 125.586967 143.9959) - (xy 125.52921 144.005538) - (xy 125.363984 144.033109) - (xy 125.328289 144.045362) - (xy 125.25849 144.048509) - (xy 125.20035 144.01576) - (xy 123.636772 142.452181) - (xy 123.603287 142.390858) - (xy 123.608271 142.321166) - (xy 123.650143 142.265233) - (xy 123.715607 142.240816) - (xy 123.724453 142.2405) - (xy 126.088152 142.2405) - ) - ) - (filled_polygon - (layer "B.Cu") - (pts - (xy 132.238795 141.360185) - (xy 132.259437 141.376819) - (xy 132.658181 141.775563) - (xy 132.691666 141.836886) - (xy 132.6945 141.863244) - (xy 132.6945 144.073573) - (xy 132.674815 144.140612) - (xy 132.629519 144.182627) - (xy 132.571356 144.214103) - (xy 132.571353 144.214105) - (xy 132.392955 144.352959) - (xy 132.39295 144.352963) - (xy 132.23985 144.519272) - (xy 132.239842 144.519283) - (xy 132.153808 144.650968) - (xy 132.100662 144.696325) - (xy 132.03143 144.705748) - (xy 131.968095 144.676246) - (xy 131.946192 144.650968) - (xy 131.894741 144.572217) - (xy 131.860156 144.519281) - (xy 131.860153 144.519278) - (xy 131.860149 144.519272) - (xy 131.707049 144.352963) - (xy 131.707048 144.352962) - (xy 131.707046 144.35296) - (xy 131.528649 144.214107) - (xy 131.45291 144.173119) - (xy 131.329832 144.106512) - (xy 131.329827 144.10651) - (xy 131.116017 144.033109) - (xy 130.948778 144.005202) - (xy 130.893033 143.9959) - (xy 130.666967 143.9959) - (xy 130.637771 144.000772) - (xy 130.44398 144.033109) - (xy 130.438066 144.03514) - (xy 130.368267 144.038286) - (xy 130.310128 144.005538) - (xy 127.856772 141.552181) - (xy 127.823287 141.490858) - (xy 127.828271 141.421166) - (xy 127.870143 141.365233) - (xy 127.935607 141.340816) - (xy 127.944453 141.3405) - (xy 132.171756 141.3405) - ) - ) - (filled_polygon - (layer "B.Cu") - (pts - (xy 134.150702 142.632135) - (xy 134.15718 142.638167) - (xy 135.198181 143.679167) - (xy 135.231666 143.74049) - (xy 135.2345 143.766848) - (xy 135.2345 144.073573) - (xy 135.214815 144.140612) - (xy 135.169519 144.182627) - (xy 135.111356 144.214103) - (xy 135.111353 144.214105) - (xy 134.932955 144.352959) - (xy 134.93295 144.352963) - (xy 134.77985 144.519272) - (xy 134.779842 144.519283) - (xy 134.693808 144.650968) - (xy 134.640662 144.696325) - (xy 134.57143 144.705748) - (xy 134.508095 144.676246) - (xy 134.486192 144.650968) - (xy 134.434741 144.572217) - (xy 134.400156 144.519281) - (xy 134.400153 144.519278) - (xy 134.400149 144.519272) - (xy 134.247049 144.352963) - (xy 134.247048 144.352962) - (xy 134.247046 144.35296) - (xy 134.068649 144.214107) - (xy 134.068647 144.214106) - (xy 134.068646 144.214105) - (xy 134.068639 144.2141) - (xy 134.010481 144.182627) - (xy 133.960891 144.133408) - (xy 133.945499 144.073576) - (xy 133.945499 142.725847) - (xy 133.965184 142.658809) - (xy 134.017988 142.613054) - (xy 134.087146 142.60311) - ) - ) - (filled_polygon - (layer "B.Cu") - (pts - (xy 136.324607 124.495185) - (xy 136.345249 124.511819) - (xy 147.898181 136.064751) - (xy 147.931666 136.126074) - (xy 147.9345 136.152432) - (xy 147.9345 144.073573) - (xy 147.914815 144.140612) - (xy 147.869519 144.182627) - (xy 147.811356 144.214103) - (xy 147.811353 144.214105) - (xy 147.632955 144.352959) - (xy 147.63295 144.352963) - (xy 147.47985 144.519272) - (xy 147.479842 144.519283) - (xy 147.393808 144.650968) - (xy 147.340662 144.696325) - (xy 147.27143 144.705748) - (xy 147.208095 144.676246) - (xy 147.186192 144.650968) - (xy 147.134741 144.572217) - (xy 147.100156 144.519281) - (xy 147.100153 144.519278) - (xy 147.100149 144.519272) - (xy 146.947049 144.352963) - (xy 146.947048 144.352962) - (xy 146.947046 144.35296) - (xy 146.768649 144.214107) - (xy 146.69291 144.173119) - (xy 146.569832 144.106512) - (xy 146.569827 144.10651) - (xy 146.356017 144.033109) - (xy 146.188778 144.005202) - (xy 146.133033 143.9959) - (xy 145.906967 143.9959) - (xy 145.877771 144.000772) - (xy 145.683982 144.033109) - (xy 145.678067 144.03514) - (xy 145.608268 144.038286) - (xy 145.550129 144.005538) - (xy 144.760803 143.216212) - (xy 144.75098 143.20395) - (xy 144.750759 143.204134) - (xy 144.745786 143.198122) - (xy 144.696066 143.151432) - (xy 144.694666 143.150075) - (xy 144.674476 143.129884) - (xy 144.668986 143.125625) - (xy 144.664561 143.121847) - (xy 144.630582 143.089938) - (xy 144.63058 143.089936) - (xy 144.630577 143.089935) - (xy 144.613029 143.080288) - (xy 144.596763 143.069604) - (xy 144.580933 143.057325) - (xy 144.538168 143.038818) - (xy 144.532922 143.036248) - (xy 144.492093 143.013803) - (xy 144.492092 143.013802) - (xy 144.472693 143.008822) - (xy 144.454281 143.002518) - (xy 144.435898 142.994562) - (xy 144.435892 142.99456) - (xy 144.389874 142.987272) - (xy 144.384152 142.986087) - (xy 144.339021 142.9745) - (xy 144.339019 142.9745) - (xy 144.318984 142.9745) - (xy 144.299586 142.972973) - (xy 144.292162 142.971797) - (xy 144.279805 142.96984) - (xy 144.279804 142.96984) - (xy 144.233416 142.974225) - (xy 144.227578 142.9745) - (xy 140.546848 142.9745) - (xy 140.479809 142.954815) - (xy 140.459167 142.938181) - (xy 138.660992 141.140006) - (xy 140.801225 141.140006) - (xy 140.819892 141.365289) - (xy 140.875388 141.584439) - (xy 140.966198 141.791466) - (xy 141.089842 141.980716) - (xy 141.08985 141.980727) - (xy 141.24295 142.147036) - (xy 141.242954 142.14704) - (xy 141.421351 142.285893) - (xy 141.620169 142.393488) - (xy 141.620172 142.393489) - (xy 141.833982 142.46689) - (xy 141.833984 142.46689) - (xy 141.833986 142.466891) - (xy 142.056967 142.5041) - (xy 142.056968 142.5041) - (xy 142.283032 142.5041) - (xy 142.283033 142.5041) - (xy 142.506014 142.466891) - (xy 142.719831 142.393488) - (xy 142.918649 142.285893) - (xy 143.097046 142.14704) - (xy 143.250156 141.980719) - (xy 143.373802 141.791465) - (xy 143.464611 141.584441) - (xy 143.520107 141.365293) - (xy 143.532723 141.213039) - (xy 143.538775 141.140006) - (xy 143.538775 141.139993) - (xy 143.520114 140.914797) - (xy 143.520107 140.914707) - (xy 143.464611 140.695559) - (xy 143.373802 140.488535) - (xy 143.354397 140.458834) - (xy 143.295373 140.368491) - (xy 143.250156 140.299281) - (xy 143.250153 140.299278) - (xy 143.250149 140.299272) - (xy 143.097049 140.132963) - (xy 143.097048 140.132962) - (xy 143.097046 140.13296) - (xy 142.918649 139.994107) - (xy 142.85496 139.95964) - (xy 142.719832 139.886512) - (xy 142.719827 139.88651) - (xy 142.506017 139.813109) - (xy 142.338778 139.785202) - (xy 142.283033 139.7759) - (xy 142.056967 139.7759) - (xy 142.01237 139.783341) - (xy 141.833982 139.813109) - (xy 141.620172 139.88651) - (xy 141.620167 139.886512) - (xy 141.421352 139.994106) - (xy 141.242955 140.132959) - (xy 141.24295 140.132963) - (xy 141.08985 140.299272) - (xy 141.089842 140.299283) - (xy 140.966198 140.488533) - (xy 140.875388 140.69556) - (xy 140.819892 140.91471) - (xy 140.801225 141.139993) - (xy 140.801225 141.140006) - (xy 138.660992 141.140006) - (xy 133.987199 136.466212) - (xy 133.977376 136.45395) - (xy 133.977155 136.454134) - (xy 133.972182 136.448122) - (xy 133.922462 136.401432) - (xy 133.921062 136.400075) - (xy 133.900872 136.379884) - (xy 133.895382 136.375625) - (xy 133.890957 136.371847) - (xy 133.856978 136.339938) - (xy 133.856976 136.339936) - (xy 133.856973 136.339935) - (xy 133.839425 136.330288) - (xy 133.823159 136.319604) - (xy 133.807329 136.307325) - (xy 133.764564 136.288818) - (xy 133.759318 136.286248) - (xy 133.718489 136.263803) - (xy 133.718488 136.263802) - (xy 133.699089 136.258822) - (xy 133.680677 136.252518) - (xy 133.662294 136.244562) - (xy 133.662288 136.24456) - (xy 133.61627 136.237272) - (xy 133.610548 136.236087) - (xy 133.565417 136.2245) - (xy 133.565415 136.2245) - (xy 133.54538 136.2245) - (xy 133.525982 136.222973) - (xy 133.518558 136.221797) - (xy 133.506201 136.21984) - (xy 133.5062 136.21984) - (xy 133.459812 136.224225) - (xy 133.453974 136.2245) - (xy 123.446848 136.2245) - (xy 123.379809 136.204815) - (xy 123.359167 136.188181) - (xy 121.261818 134.090832) - (xy 121.228333 134.029509) - (xy 121.225499 134.003151) - (xy 121.225499 133.805506) - (xy 124.541225 133.805506) - (xy 124.559892 134.030789) - (xy 124.615388 134.249939) - (xy 124.706198 134.456966) - (xy 124.829842 134.646216) - (xy 124.82985 134.646227) - (xy 124.98295 134.812536) - (xy 124.982954 134.81254) - (xy 125.161351 134.951393) - (xy 125.360169 135.058988) - (xy 125.360172 135.058989) - (xy 125.573982 135.13239) - (xy 125.573984 135.13239) - (xy 125.573986 135.132391) - (xy 125.796967 135.1696) - (xy 125.796968 135.1696) - (xy 126.023032 135.1696) - (xy 126.023033 135.1696) - (xy 126.246014 135.132391) - (xy 126.248508 135.131535) - (xy 126.332443 135.10272) - (xy 126.459831 135.058988) - (xy 126.658649 134.951393) - (xy 126.837046 134.81254) - (xy 126.990156 134.646219) - (xy 127.113802 134.456965) - (xy 127.204611 134.249941) - (xy 127.260107 134.030793) - (xy 127.278775 133.8055) - (xy 127.260107 133.580207) - (xy 127.204611 133.361059) - (xy 127.113802 133.154035) - (xy 126.990156 132.964781) - (xy 126.990153 132.964778) - (xy 126.990149 132.964772) - (xy 126.837049 132.798463) - (xy 126.837048 132.798462) - (xy 126.837046 132.79846) - (xy 126.658649 132.659607) - (xy 126.658647 132.659606) - (xy 126.658646 132.659605) - (xy 126.658639 132.6596) - (xy 126.630836 132.644555) - (xy 126.581244 132.595337) - (xy 126.566135 132.52712) - (xy 126.590306 132.461564) - (xy 126.630836 132.426445) - (xy 126.658639 132.411399) - (xy 126.658642 132.411396) - (xy 126.658649 132.411393) - (xy 126.837046 132.27254) - (xy 126.990156 132.106219) - (xy 127.113802 131.916965) - (xy 127.204611 131.709941) - (xy 127.260107 131.490793) - (xy 127.278775 131.2655) - (xy 127.260107 131.040207) - (xy 127.204611 130.821059) - (xy 127.113802 130.614035) - (xy 126.990156 130.424781) - (xy 126.990153 130.424778) - (xy 126.990149 130.424772) - (xy 126.837049 130.258463) - (xy 126.837048 130.258462) - (xy 126.837046 130.25846) - (xy 126.658649 130.119607) - (xy 126.658647 130.119606) - (xy 126.658646 130.119605) - (xy 126.658643 130.119603) - (xy 126.630833 130.104553) - (xy 126.581243 130.055333) - (xy 126.566136 129.987116) - (xy 126.590307 129.921561) - (xy 126.630833 129.886446) - (xy 126.658649 129.871393) - (xy 126.837046 129.73254) - (xy 126.970668 129.587389) - (xy 126.990149 129.566227) - (xy 126.99015 129.566225) - (xy 126.990156 129.566219) - (xy 127.113802 129.376965) - (xy 127.204611 129.169941) - (xy 127.260107 128.950793) - (xy 127.278775 128.7255) - (xy 127.260107 128.500207) - (xy 127.204611 128.281059) - (xy 127.113802 128.074035) - (xy 127.065432 128) - (xy 126.990157 127.884783) - (xy 126.990149 127.884772) - (xy 126.837049 127.718463) - (xy 126.837048 127.718462) - (xy 126.837046 127.71846) - (xy 126.658649 127.579607) - (xy 126.658647 127.579606) - (xy 126.658646 127.579605) - (xy 126.658639 127.5796) - (xy 126.630836 127.564555) - (xy 126.581244 127.515337) - (xy 126.566135 127.44712) - (xy 126.590306 127.381564) - (xy 126.630836 127.346445) - (xy 126.658639 127.331399) - (xy 126.658642 127.331396) - (xy 126.658649 127.331393) - (xy 126.837046 127.19254) - (xy 126.990156 127.026219) - (xy 127.113802 126.836965) - (xy 127.204611 126.629941) - (xy 127.260107 126.410793) - (xy 127.278775 126.1855) - (xy 127.260107 125.960207) - (xy 127.204611 125.741059) - (xy 127.113802 125.534035) - (xy 126.990156 125.344781) - (xy 126.990153 125.344778) - (xy 126.990149 125.344772) - (xy 126.837045 125.178459) - (xy 126.710296 125.079806) - (xy 126.658649 125.039607) - (xy 126.63239 125.025396) - (xy 126.459832 124.932012) - (xy 126.459827 124.93201) - (xy 126.246017 124.858609) - (xy 126.064388 124.828301) - (xy 126.023033 124.8214) - (xy 125.796967 124.8214) - (xy 125.755612 124.828301) - (xy 125.573982 124.858609) - (xy 125.360172 124.93201) - (xy 125.360167 124.932012) - (xy 125.161352 125.039606) - (xy 124.982955 125.178459) - (xy 124.82985 125.344772) - (xy 124.829842 125.344783) - (xy 124.706198 125.534033) - (xy 124.615388 125.74106) - (xy 124.559892 125.96021) - (xy 124.541225 126.185493) - (xy 124.541225 126.185506) - (xy 124.559892 126.410789) - (xy 124.615388 126.629939) - (xy 124.706198 126.836966) - (xy 124.829842 127.026216) - (xy 124.82985 127.026227) - (xy 124.949757 127.156479) - (xy 124.982954 127.19254) - (xy 125.161351 127.331393) - (xy 125.189165 127.346445) - (xy 125.238755 127.395665) - (xy 125.253863 127.463882) - (xy 125.229692 127.529437) - (xy 125.189165 127.564555) - (xy 125.161352 127.579606) - (xy 124.982955 127.718459) - (xy 124.98295 127.718463) - (xy 124.82985 127.884772) - (xy 124.829842 127.884783) - (xy 124.706198 128.074033) - (xy 124.615388 128.28106) - (xy 124.559892 128.50021) - (xy 124.541225 128.725493) - (xy 124.541225 128.725506) - (xy 124.559892 128.950789) - (xy 124.615388 129.169939) - (xy 124.706198 129.376966) - (xy 124.829842 129.566216) - (xy 124.82985 129.566227) - (xy 124.982833 129.732409) - (xy 124.982954 129.73254) - (xy 125.161351 129.871393) - (xy 125.161353 129.871394) - (xy 125.161356 129.871396) - (xy 125.170803 129.876508) - (xy 125.189163 129.886444) - (xy 125.238754 129.935661) - (xy 125.253864 130.003878) - (xy 125.229694 130.069434) - (xy 125.189167 130.104552) - (xy 125.161361 130.1196) - (xy 125.161353 130.119605) - (xy 124.982955 130.258459) - (xy 124.98295 130.258463) - (xy 124.82985 130.424772) - (xy 124.829842 130.424783) - (xy 124.706198 130.614033) - (xy 124.615388 130.82106) - (xy 124.559892 131.04021) - (xy 124.541225 131.265493) - (xy 124.541225 131.265506) - (xy 124.559892 131.490789) - (xy 124.615388 131.709939) - (xy 124.706198 131.916966) - (xy 124.829842 132.106216) - (xy 124.82985 132.106227) - (xy 124.952897 132.23989) - (xy 124.982954 132.27254) - (xy 125.161351 132.411393) - (xy 125.189165 132.426445) - (xy 125.238755 132.475665) - (xy 125.253863 132.543882) - (xy 125.229692 132.609437) - (xy 125.189165 132.644554) - (xy 125.180866 132.649045) - (xy 125.161352 132.659606) - (xy 124.982955 132.798459) - (xy 124.98295 132.798463) - (xy 124.82985 132.964772) - (xy 124.829842 132.964783) - (xy 124.706198 133.154033) - (xy 124.615388 133.36106) - (xy 124.559892 133.58021) - (xy 124.541225 133.805493) - (xy 124.541225 133.805506) - (xy 121.225499 133.805506) - (xy 121.225499 130.1196) - (xy 121.225499 126.182727) - (xy 121.227225 126.167123) - (xy 121.226938 126.167096) - (xy 121.227672 126.159333) - (xy 121.225531 126.09117) - (xy 121.2255 126.089223) - (xy 121.2255 126.060651) - (xy 121.2255 126.06065) - (xy 121.224629 126.053759) - (xy 121.224172 126.047945) - (xy 121.224143 126.047036) - (xy 121.222709 126.001372) - (xy 121.21712 125.982137) - (xy 121.213174 125.963084) - (xy 121.212811 125.960207) - (xy 121.210664 125.943208) - (xy 121.193501 125.899859) - (xy 121.191614 125.894346) - (xy 121.187657 125.880727) - (xy 121.178617 125.84961) - (xy 121.168931 125.833232) - (xy 121.168421 125.832369) - (xy 121.15986 125.814893) - (xy 121.152486 125.796269) - (xy 121.152486 125.796267) - (xy 121.137459 125.775585) - (xy 121.125083 125.75855) - (xy 121.1219 125.753705) - (xy 121.09817 125.713579) - (xy 121.098165 125.713573) - (xy 121.084005 125.699413) - (xy 121.07137 125.68462) - (xy 121.059593 125.668412) - (xy 121.023693 125.638713) - (xy 121.019381 125.63479) - (xy 120.071772 124.68718) - (xy 120.038287 124.625858) - (xy 120.043271 124.556166) - (xy 120.085143 124.500233) - (xy 120.150607 124.475816) - (xy 120.159453 124.4755) - (xy 136.257568 124.4755) - ) - ) - (filled_polygon - (layer "B.Cu") - (pts - (xy 149.390703 136.921323) - (xy 149.397181 136.927355) - (xy 150.438181 137.968355) - (xy 150.471666 138.029678) - (xy 150.4745 138.056036) - (xy 150.4745 144.073573) - (xy 150.454815 144.140612) - (xy 150.409519 144.182627) - (xy 150.351356 144.214103) - (xy 150.351353 144.214105) - (xy 150.172955 144.352959) - (xy 150.17295 144.352963) - (xy 150.01985 144.519272) - (xy 150.019842 144.519283) - (xy 149.933808 144.650968) - (xy 149.880662 144.696325) - (xy 149.81143 144.705748) - (xy 149.748095 144.676246) - (xy 149.726192 144.650968) - (xy 149.674741 144.572217) - (xy 149.640156 144.519281) - (xy 149.640153 144.519278) - (xy 149.640149 144.519272) - (xy 149.487049 144.352963) - (xy 149.487048 144.352962) - (xy 149.487046 144.35296) - (xy 149.308649 144.214107) - (xy 149.308647 144.214106) - (xy 149.308646 144.214105) - (xy 149.308643 144.214103) - (xy 149.250481 144.182627) - (xy 149.200891 144.133407) - (xy 149.1855 144.073573) - (xy 149.1855 137.015036) - (xy 149.205185 136.947997) - (xy 149.257989 136.902242) - (xy 149.327147 136.892298) - ) - ) - (filled_polygon - (layer "B.Cu") - (pts - (xy 151.930703 138.824927) - (xy 151.937181 138.830959) - (xy 152.978181 139.871959) - (xy 153.011666 139.933282) - (xy 153.0145 139.95964) - (xy 153.0145 144.073573) - (xy 152.994815 144.140612) - (xy 152.949519 144.182627) - (xy 152.891356 144.214103) - (xy 152.891353 144.214105) - (xy 152.712955 144.352959) - (xy 152.71295 144.352963) - (xy 152.55985 144.519272) - (xy 152.559842 144.519283) - (xy 152.473808 144.650968) - (xy 152.420662 144.696325) - (xy 152.35143 144.705748) - (xy 152.288095 144.676246) - (xy 152.266192 144.650968) - (xy 152.214741 144.572217) - (xy 152.180156 144.519281) - (xy 152.180153 144.519278) - (xy 152.180149 144.519272) - (xy 152.027049 144.352963) - (xy 152.027048 144.352962) - (xy 152.027046 144.35296) - (xy 151.848649 144.214107) - (xy 151.848647 144.214106) - (xy 151.848646 144.214105) - (xy 151.848643 144.214103) - (xy 151.790481 144.182627) - (xy 151.740891 144.133407) - (xy 151.7255 144.073573) - (xy 151.7255 138.91864) - (xy 151.745185 138.851601) - (xy 151.797989 138.805846) - (xy 151.867147 138.795902) - ) - ) - (filled_polygon - (layer "B.Cu") - (pts - (xy 154.470703 140.728531) - (xy 154.477181 140.734563) - (xy 155.518181 141.775563) - (xy 155.551666 141.836886) - (xy 155.5545 141.863244) - (xy 155.5545 144.073573) - (xy 155.534815 144.140612) - (xy 155.489519 144.182627) - (xy 155.431356 144.214103) - (xy 155.431353 144.214105) - (xy 155.252955 144.352959) - (xy 155.25295 144.352963) - (xy 155.09985 144.519272) - (xy 155.099842 144.519283) - (xy 155.013808 144.650968) - (xy 154.960662 144.696325) - (xy 154.89143 144.705748) - (xy 154.828095 144.676246) - (xy 154.806192 144.650968) - (xy 154.754741 144.572217) - (xy 154.720156 144.519281) - (xy 154.720153 144.519278) - (xy 154.720149 144.519272) - (xy 154.567049 144.352963) - (xy 154.567048 144.352962) - (xy 154.567046 144.35296) - (xy 154.388649 144.214107) - (xy 154.388647 144.214106) - (xy 154.388646 144.214105) - (xy 154.388643 144.214103) - (xy 154.330481 144.182627) - (xy 154.280891 144.133407) - (xy 154.2655 144.073573) - (xy 154.2655 140.822244) - (xy 154.285185 140.755205) - (xy 154.337989 140.70945) - (xy 154.407147 140.699506) - ) - ) - (filled_polygon - (layer "B.Cu") - (pts - (xy 169.709319 132.611246) - (xy 169.756 132.64059) - (xy 174.82751 137.7121) - (xy 174.860995 137.773423) - (xy 174.856011 137.843115) - (xy 174.855257 137.845083) - (xy 174.806877 137.968355) - (xy 174.795493 137.997362) - (xy 174.795489 137.997374) - (xy 174.738777 138.245845) - (xy 174.719732 138.499995) - (xy 174.719732 138.500004) - (xy 174.738777 138.754154) - (xy 174.793403 138.993488) - (xy 174.795492 139.002637) - (xy 174.884256 139.228803) - (xy 174.888608 139.23989) - (xy 174.914424 139.284604) - (xy 175.016041 139.460612) - (xy 175.17495 139.659877) - (xy 175.361783 139.833232) - (xy 175.572366 139.976805) - (xy 175.572371 139.976807) - (xy 175.572372 139.976808) - (xy 175.572373 139.976809) - (xy 175.694328 140.035538) - (xy 175.801992 140.087387) - (xy 175.801993 140.087387) - (xy 175.801996 140.087389) - (xy 175.90836 140.120197) - (xy 175.945029 140.131509) - (xy 176.003288 140.17008) - (xy 176.031446 140.234024) - (xy 176.020562 140.303041) - (xy 175.974093 140.355218) - (xy 175.945029 140.368491) - (xy 175.801992 140.412612) - (xy 175.572373 140.52319) - (xy 175.572372 140.523191) - (xy 175.361782 140.666768) - (xy 175.174952 140.840121) - (xy 175.17495 140.840123) - (xy 175.016041 141.039388) - (xy 174.888609 141.260107) - (xy 174.888607 141.260111) - (xy 174.888607 141.260112) - (xy 174.874599 141.295803) - (xy 174.831785 141.351015) - (xy 174.765915 141.374317) - (xy 174.759172 141.3745) - (xy 173.310452 141.3745) - (xy 173.243413 141.354815) - (xy 173.222771 141.338181) - (xy 169.611819 137.727228) - (xy 169.578334 137.665905) - (xy 169.5755 137.639547) - (xy 169.5755 133.032738) - (xy 169.577224 133.017124) - (xy 169.576938 133.017097) - (xy 169.577672 133.009334) - (xy 169.575531 132.941171) - (xy 169.5755 132.939224) - (xy 169.5755 132.910651) - (xy 169.5755 132.91065) - (xy 169.574629 132.903759) - (xy 169.574172 132.897945) - (xy 169.573774 132.885289) - (xy 169.572709 132.851373) - (xy 169.567122 132.832144) - (xy 169.563174 132.813084) - (xy 169.560664 132.793208) - (xy 169.553026 132.773919) - (xy 169.54665 132.704342) - (xy 169.578901 132.642362) - (xy 169.639542 132.607656) - ) - ) - (filled_polygon - (layer "B.Cu") - (pts - (xy 165.873155 140.066799) - (xy 165.832 140.206961) - (xy 165.832 140.353039) - (xy 165.873155 140.493201) - (xy 165.896804 140.53) - (xy 164.243196 140.53) - (xy 164.266845 140.493201) - (xy 164.308 140.353039) - (xy 164.308 140.206961) - (xy 164.266845 140.066799) - (xy 164.243196 140.03) - (xy 165.896804 140.03) - ) - ) - (filled_polygon - (layer "B.Cu") - (pts - (xy 172.106587 127.995185) - (xy 172.127229 128.011819) - (xy 174.82751 130.712101) - (xy 174.860995 130.773424) - (xy 174.856011 130.843116) - (xy 174.855257 130.845084) - (xy 174.796327 130.995236) - (xy 174.795493 130.997362) - (xy 174.795489 130.997374) - (xy 174.738777 131.245845) - (xy 174.719732 131.499995) - (xy 174.719732 131.500004) - (xy 174.738777 131.754154) - (xy 174.753642 131.819283) - (xy 174.795492 132.002637) - (xy 174.888607 132.239888) - (xy 175.016041 132.460612) - (xy 175.17495 132.659877) - (xy 175.361783 132.833232) - (xy 175.572366 132.976805) - (xy 175.572371 132.976807) - (xy 175.572372 132.976808) - (xy 175.572373 132.976809) - (xy 175.688512 133.032738) - (xy 175.801992 133.087387) - (xy 175.801993 133.087387) - (xy 175.801996 133.087389) - (xy 175.90836 133.120197) - (xy 175.945029 133.131509) - (xy 176.003288 133.17008) - (xy 176.031446 133.234024) - (xy 176.020562 133.303041) - (xy 175.974093 133.355218) - (xy 175.945029 133.368491) - (xy 175.801992 133.412612) - (xy 175.572373 133.52319) - (xy 175.572372 133.523191) - (xy 175.361782 133.666768) - (xy 175.174952 133.840121) - (xy 175.17495 133.840123) - (xy 175.016041 134.039388) - (xy 174.888609 134.260107) - (xy 174.888607 134.260111) - (xy 174.888607 134.260112) - (xy 174.874599 134.295803) - (xy 174.831785 134.351015) - (xy 174.765915 134.374317) - (xy 174.759172 134.3745) - (xy 173.946848 134.3745) - (xy 173.879809 134.354815) - (xy 173.859167 134.338181) - (xy 168.037199 128.516212) - (xy 168.027376 128.50395) - (xy 168.027155 128.504134) - (xy 168.022182 128.498122) - (xy 167.972462 128.451432) - (xy 167.971062 128.450075) - (xy 167.950872 128.429884) - (xy 167.945382 128.425625) - (xy 167.940957 128.421847) - (xy 167.906978 128.389938) - (xy 167.906976 128.389936) - (xy 167.906973 128.389935) - (xy 167.889425 128.380288) - (xy 167.873159 128.369604) - (xy 167.857329 128.357325) - (xy 167.814564 128.338818) - (xy 167.809318 128.336248) - (xy 167.768489 128.313803) - (xy 167.768488 128.313802) - (xy 167.749089 128.308822) - (xy 167.730677 128.302518) - (xy 167.712294 128.294562) - (xy 167.71229 128.294561) - (xy 167.687568 128.290645) - (xy 167.624434 128.260714) - (xy 167.587504 128.201401) - (xy 167.588504 128.131539) - (xy 167.593414 128.118361) - (xy 167.623537 128.049689) - (xy 167.668493 127.996203) - (xy 167.735229 127.975514) - (xy 167.737092 127.9755) - (xy 172.039548 127.9755) - ) - ) - (filled_polygon - (layer "B.Cu") - (pts - (xy 175.003339 125.455185) - (xy 175.033245 125.482185) - (xy 175.17495 125.659877) - (xy 175.361783 125.833232) - (xy 175.572366 125.976805) - (xy 175.572371 125.976807) - (xy 175.572372 125.976808) - (xy 175.572373 125.976809) - (xy 175.694328 126.035538) - (xy 175.801992 126.087387) - (xy 175.801993 126.087387) - (xy 175.801996 126.087389) - (xy 175.90836 126.120197) - (xy 175.945029 126.131509) - (xy 176.003288 126.17008) - (xy 176.031446 126.234024) - (xy 176.020562 126.303041) - (xy 175.974093 126.355218) - (xy 175.945029 126.368491) - (xy 175.801992 126.412612) - (xy 175.572373 126.52319) - (xy 175.572372 126.523191) - (xy 175.361782 126.666768) - (xy 175.174952 126.840121) - (xy 175.17495 126.840123) - (xy 175.016041 127.039388) - (xy 174.888609 127.260107) - (xy 174.888607 127.260111) - (xy 174.888607 127.260112) - (xy 174.874599 127.295803) - (xy 174.831785 127.351015) - (xy 174.765915 127.374317) - (xy 174.759172 127.3745) - (xy 173.946848 127.3745) - (xy 173.879809 127.354815) - (xy 173.859167 127.338181) - (xy 173.150927 126.629941) - (xy 172.437199 125.916212) - (xy 172.427376 125.90395) - (xy 172.427155 125.904134) - (xy 172.422182 125.898122) - (xy 172.372462 125.851432) - (xy 172.371062 125.850075) - (xy 172.350872 125.829884) - (xy 172.345382 125.825625) - (xy 172.340957 125.821847) - (xy 172.306978 125.789938) - (xy 172.306976 125.789936) - (xy 172.306973 125.789935) - (xy 172.289425 125.780288) - (xy 172.273159 125.769604) - (xy 172.257329 125.757325) - (xy 172.214564 125.738818) - (xy 172.209318 125.736248) - (xy 172.168489 125.713803) - (xy 172.168488 125.713802) - (xy 172.149089 125.708822) - (xy 172.130677 125.702518) - (xy 172.112294 125.694562) - (xy 172.112288 125.69456) - (xy 172.06627 125.687272) - (xy 172.060548 125.686087) - (xy 172.035299 125.679605) - (xy 171.97526 125.643867) - (xy 171.944074 125.581343) - (xy 171.951641 125.511885) - (xy 171.99556 125.457544) - (xy 172.061885 125.435573) - (xy 172.066135 125.4355) - (xy 174.9363 125.4355) - ) - ) - (filled_polygon - (layer "B.Cu") - (pts - (xy 174.826211 118.145185) - (xy 174.871966 118.197989) - (xy 174.874588 118.20417) - (xy 174.888607 118.239888) - (xy 174.888609 118.239892) - (xy 174.915791 118.286972) - (xy 175.016041 118.460612) - (xy 175.17495 118.659877) - (xy 175.361783 118.833232) - (xy 175.572366 118.976805) - (xy 175.572371 118.976807) - (xy 175.572372 118.976808) - (xy 175.572373 118.976809) - (xy 175.684465 119.030789) - (xy 175.801992 119.087387) - (xy 175.801993 119.087387) - (xy 175.801996 119.087389) - (xy 175.905358 119.119272) - (xy 175.945029 119.131509) - (xy 176.003288 119.17008) - (xy 176.031446 119.234024) - (xy 176.020562 119.303041) - (xy 175.974093 119.355218) - (xy 175.945029 119.368491) - (xy 175.801992 119.412612) - (xy 175.572373 119.52319) - (xy 175.572372 119.523191) - (xy 175.361782 119.666768) - (xy 175.174952 119.840121) - (xy 175.17495 119.840123) - (xy 175.016041 120.039388) - (xy 174.888608 120.260109) - (xy 174.795492 120.497362) - (xy 174.79549 120.497369) - (xy 174.738777 120.745845) - (xy 174.719732 120.999995) - (xy 174.719732 121.000004) - (xy 174.738777 121.254154) - (xy 174.793283 121.492959) - (xy 174.795492 121.502637) - (xy 174.821681 121.569365) - (xy 174.834118 121.601055) - (xy 174.840286 121.670651) - (xy 174.807847 121.732535) - (xy 174.80637 121.734037) - (xy 173.402228 123.138181) - (xy 173.340905 123.171666) - (xy 173.314547 123.1745) - (xy 167.723494 123.1745) - (xy 167.656455 123.154815) - (xy 167.6107 123.102011) - (xy 167.600756 123.032853) - (xy 167.609938 123.000689) - (xy 167.623536 122.969689) - (xy 167.668493 122.916204) - (xy 167.735229 122.895514) - (xy 167.737092 122.8955) - (xy 168.708653 122.8955) - (xy 168.724273 122.897224) - (xy 168.7243 122.896939) - (xy 168.732062 122.897673) - (xy 168.732062 122.897672) - (xy 168.732063 122.897673) - (xy 168.735395 122.897568) - (xy 168.800243 122.895531) - (xy 168.80219 122.8955) - (xy 168.830743 122.8955) - (xy 168.830746 122.8955) - (xy 168.837624 122.89463) - (xy 168.843437 122.894172) - (xy 168.890023 122.892709) - (xy 168.909265 122.887117) - (xy 168.928308 122.883174) - (xy 168.948188 122.880664) - (xy 168.991518 122.863507) - (xy 168.997042 122.861617) - (xy 169.000792 122.860527) - (xy 169.041786 122.848618) - (xy 169.059025 122.838422) - (xy 169.076499 122.829862) - (xy 169.095123 122.822488) - (xy 169.095123 122.822487) - (xy 169.095128 122.822486) - (xy 169.132845 122.795082) - (xy 169.137701 122.791892) - (xy 169.177816 122.76817) - (xy 169.191985 122.753999) - (xy 169.206775 122.741368) - (xy 169.222983 122.729594) - (xy 169.252695 122.693676) - (xy 169.256608 122.689376) - (xy 173.784166 118.161819) - (xy 173.84549 118.128334) - (xy 173.871848 118.1255) - (xy 174.759172 118.1255) - ) - ) - (filled_polygon - (layer "B.Cu") - (pts - (xy 174.826211 111.145185) - (xy 174.871966 111.197989) - (xy 174.874588 111.20417) - (xy 174.888607 111.239888) - (xy 174.888609 111.239892) - (xy 174.899375 111.258539) - (xy 175.016041 111.460612) - (xy 175.17495 111.659877) - (xy 175.361783 111.833232) - (xy 175.572366 111.976805) - (xy 175.572371 111.976807) - (xy 175.572372 111.976808) - (xy 175.572373 111.976809) - (xy 175.674969 112.026216) - (xy 175.801992 112.087387) - (xy 175.801993 112.087387) - (xy 175.801996 112.087389) - (xy 175.90836 112.120197) - (xy 175.945029 112.131509) - (xy 176.003288 112.17008) - (xy 176.031446 112.234024) - (xy 176.020562 112.303041) - (xy 175.974093 112.355218) - (xy 175.945029 112.368491) - (xy 175.801992 112.412612) - (xy 175.572373 112.52319) - (xy 175.572372 112.523191) - (xy 175.361782 112.666768) - (xy 175.174952 112.840121) - (xy 175.17495 112.840123) - (xy 175.016041 113.039388) - (xy 174.888608 113.260109) - (xy 174.795492 113.497362) - (xy 174.79549 113.497369) - (xy 174.738777 113.745845) - (xy 174.719732 113.999995) - (xy 174.719732 114.000004) - (xy 174.738777 114.254154) - (xy 174.790717 114.481716) - (xy 174.795492 114.502637) - (xy 174.820445 114.566216) - (xy 174.834118 114.601055) - (xy 174.840286 114.670651) - (xy 174.807847 114.732535) - (xy 174.80637 114.734037) - (xy 169.002228 120.538181) - (xy 168.940905 120.571666) - (xy 168.914547 120.5745) - (xy 168.025328 120.5745) - (xy 167.958289 120.554815) - (xy 167.912534 120.502011) - (xy 167.90259 120.432853) - (xy 167.931615 120.369297) - (xy 167.990393 120.331523) - (xy 167.990733 120.331424) - (xy 167.995041 120.330171) - (xy 168.00039 120.328618) - (xy 168.017629 120.318422) - (xy 168.035103 120.309862) - (xy 168.053727 120.302488) - (xy 168.053727 120.302487) - (xy 168.053732 120.302486) - (xy 168.091449 120.275082) - (xy 168.096305 120.271892) - (xy 168.13642 120.24817) - (xy 168.150589 120.233999) - (xy 168.165379 120.221368) - (xy 168.181587 120.209594) - (xy 168.211299 120.173676) - (xy 168.215212 120.169376) - (xy 173.133788 115.250801) - (xy 173.146042 115.240986) - (xy 173.145859 115.240764) - (xy 173.151868 115.235791) - (xy 173.151877 115.235786) - (xy 173.198607 115.186022) - (xy 173.199846 115.184743) - (xy 173.22012 115.164471) - (xy 173.224379 115.158978) - (xy 173.228152 115.154561) - (xy 173.260062 115.120582) - (xy 173.269715 115.10302) - (xy 173.280389 115.08677) - (xy 173.292673 115.070936) - (xy 173.31118 115.028167) - (xy 173.313749 115.022924) - (xy 173.319748 115.012012) - (xy 173.336197 114.982092) - (xy 173.341177 114.962691) - (xy 173.347478 114.944288) - (xy 173.355438 114.925896) - (xy 173.36273 114.879849) - (xy 173.363911 114.874152) - (xy 173.364618 114.871399) - (xy 173.3755 114.829019) - (xy 173.3755 114.808974) - (xy 173.377025 114.789591) - (xy 173.38016 114.769804) - (xy 173.376779 114.734037) - (xy 173.375775 114.723415) - (xy 173.3755 114.717577) - (xy 173.3755 111.621848) - (xy 173.395185 111.554809) - (xy 173.411819 111.534167) - (xy 173.784168 111.161819) - (xy 173.845491 111.128334) - (xy 173.871849 111.1255) - (xy 174.759172 111.1255) - ) - ) - (filled_polygon - (layer "B.Cu") - (pts - (xy 124.689168 116.910685) - (xy 124.725937 116.947178) - (xy 124.829842 117.106216) - (xy 124.82985 117.106227) - (xy 124.958379 117.245845) - (xy 124.982954 117.27254) - (xy 125.161351 117.411393) - (xy 125.189159 117.426442) - (xy 125.189165 117.426445) - (xy 125.238755 117.475665) - (xy 125.253863 117.543882) - (xy 125.229692 117.609437) - (xy 125.189165 117.644554) - (xy 125.187801 117.645293) - (xy 125.161352 117.659606) - (xy 124.982955 117.798459) - (xy 124.98295 117.798463) - (xy 124.82985 117.964772) - (xy 124.829842 117.964783) - (xy 124.706198 118.154033) - (xy 124.615388 118.36106) - (xy 124.559892 118.58021) - (xy 124.541225 118.805493) - (xy 124.541225 118.805506) - (xy 124.559892 119.030789) - (xy 124.615388 119.249939) - (xy 124.706198 119.456966) - (xy 124.829842 119.646216) - (xy 124.82985 119.646227) - (xy 124.98295 119.812536) - (xy 124.982954 119.81254) - (xy 125.161351 119.951393) - (xy 125.360169 120.058988) - (xy 125.360172 120.058989) - (xy 125.573982 120.13239) - (xy 125.573984 120.13239) - (xy 125.573986 120.132391) - (xy 125.796967 120.1696) - (xy 125.796968 120.1696) - (xy 126.023032 120.1696) - (xy 126.023033 120.1696) - (xy 126.246014 120.132391) - (xy 126.459831 120.058988) - (xy 126.658649 119.951393) - (xy 126.837046 119.81254) - (xy 126.971239 119.666768) - (xy 126.990149 119.646227) - (xy 126.99015 119.646225) - (xy 126.990156 119.646219) - (xy 127.113802 119.456965) - (xy 127.160857 119.349689) - (xy 127.205813 119.296204) - (xy 127.272549 119.275514) - (xy 127.274413 119.2755) - (xy 142.890547 119.2755) - (xy 142.957586 119.295185) - (xy 143.003341 119.347989) - (xy 143.013285 119.417147) - (xy 142.98426 119.480703) - (xy 142.978228 119.487181) - (xy 141.977228 120.488181) - (xy 141.915905 120.521666) - (xy 141.889547 120.5245) - (xy 124.860453 120.5245) - (xy 124.793414 120.504815) - (xy 124.772772 120.488181) - (xy 123.111819 118.827227) - (xy 123.078334 118.765904) - (xy 123.0755 118.739546) - (xy 123.0755 118.010452) - (xy 123.095185 117.943413) - (xy 123.111819 117.922771) - (xy 124.107272 116.927319) - (xy 124.168595 116.893834) - (xy 124.194953 116.891) - (xy 124.622129 116.891) - ) - ) - (filled_polygon - (layer "B.Cu") - (pts - (xy 128.321087 111.830685) - (xy 128.341729 111.847319) - (xy 134.307228 117.812819) - (xy 134.340713 117.874142) - (xy 134.335729 117.943834) - (xy 134.293857 117.999767) - (xy 134.228393 118.024184) - (xy 134.219547 118.0245) - (xy 127.096278 118.0245) - (xy 127.029239 118.004815) - (xy 126.992468 117.96832) - (xy 126.990154 117.964778) - (xy 126.837049 117.798463) - (xy 126.837048 117.798462) - (xy 126.837046 117.79846) - (xy 126.658649 117.659607) - (xy 126.658647 117.659606) - (xy 126.658646 117.659605) - (xy 126.658639 117.6596) - (xy 126.630836 117.644555) - (xy 126.581244 117.595337) - (xy 126.566135 117.52712) - (xy 126.590306 117.461564) - (xy 126.630836 117.426445) - (xy 126.658639 117.411399) - (xy 126.658642 117.411396) - (xy 126.658649 117.411393) - (xy 126.837046 117.27254) - (xy 126.990156 117.106219) - (xy 127.113802 116.916965) - (xy 127.204611 116.709941) - (xy 127.260107 116.490793) - (xy 127.278775 116.2655) - (xy 127.260107 116.040207) - (xy 127.204611 115.821059) - (xy 127.113802 115.614035) - (xy 127.101272 115.594857) - (xy 127.024145 115.476805) - (xy 126.990156 115.424781) - (xy 126.990153 115.424778) - (xy 126.990149 115.424772) - (xy 126.837049 115.258463) - (xy 126.837048 115.258462) - (xy 126.837046 115.25846) - (xy 126.658649 115.119607) - (xy 126.658647 115.119606) - (xy 126.658646 115.119605) - (xy 126.658639 115.1196) - (xy 126.630836 115.104555) - (xy 126.581244 115.055337) - (xy 126.566135 114.98712) - (xy 126.590306 114.921564) - (xy 126.630836 114.886445) - (xy 126.658639 114.871399) - (xy 126.658642 114.871396) - (xy 126.658649 114.871393) - (xy 126.837046 114.73254) - (xy 126.839919 114.72942) - (xy 126.990149 114.566227) - (xy 126.99015 114.566225) - (xy 126.990156 114.566219) - (xy 127.113802 114.376965) - (xy 127.204611 114.169941) - (xy 127.260107 113.950793) - (xy 127.278775 113.7255) - (xy 127.260107 113.500207) - (xy 127.204611 113.281059) - (xy 127.113802 113.074035) - (xy 127.067833 113.003675) - (xy 127.051978 112.979408) - (xy 126.990156 112.884781) - (xy 126.990153 112.884778) - (xy 126.990149 112.884772) - (xy 126.837049 112.718463) - (xy 126.837048 112.718462) - (xy 126.837046 112.71846) - (xy 126.658649 112.579607) - (xy 126.658647 112.579606) - (xy 126.658646 112.579605) - (xy 126.658639 112.5796) - (xy 126.630836 112.564555) - (xy 126.581244 112.515337) - (xy 126.566135 112.44712) - (xy 126.590306 112.381564) - (xy 126.630836 112.346445) - (xy 126.658639 112.331399) - (xy 126.658642 112.331396) - (xy 126.658649 112.331393) - (xy 126.837046 112.19254) - (xy 126.990156 112.026219) - (xy 127.078547 111.890926) - (xy 127.094063 111.867178) - (xy 127.147209 111.821822) - (xy 127.197871 111.811) - (xy 128.254048 111.811) - ) - ) - (filled_polygon - (layer "B.Cu") - (pts - (xy 162.92 89.9336) - (xy 163.581428 89.9336) - (xy 163.581444 89.933599) - (xy 163.640972 89.927198) - (xy 163.640979 89.927196) - (xy 163.775686 89.876954) - (xy 163.775693 89.87695) - (xy 163.890787 89.79079) - (xy 163.89079 89.790787) - (xy 163.97695 89.675693) - (xy 163.976954 89.675686) - (xy 164.020775 89.558197) - (xy 164.062646 89.502263) - (xy 164.12811 89.477846) - (xy 164.196383 89.492698) - (xy 164.228186 89.517547) - (xy 164.269578 89.56251) - (xy 164.282954 89.57704) - (xy 164.282957 89.577042) - (xy 164.28296 89.577045) - (xy 164.411662 89.677218) - (xy 164.452475 89.733928) - (xy 164.4595 89.775071) - (xy 164.4595 92.668023) - (xy 164.458191 92.685994) - (xy 164.44471 92.778027) - (xy 164.46 92.952795) - (xy 164.515185 93.119331) - (xy 164.515187 93.119336) - (xy 164.521459 93.129504) - (xy 164.602614 93.261079) - (xy 164.607289 93.268657) - (xy 165.485681 94.147049) - (xy 165.519166 94.208372) - (xy 165.522 94.23473) - (xy 165.522 95.947465) - (xy 165.502315 96.014504) - (xy 165.474164 96.045318) - (xy 165.41295 96.092963) - (xy 165.25985 96.259272) - (xy 165.259842 96.259283) - (xy 165.173808 96.390968) - (xy 165.120662 96.436325) - (xy 165.05143 96.445748) - (xy 164.988095 96.416246) - (xy 164.966192 96.390968) - (xy 164.893713 96.280032) - (xy 164.880156 96.259281) - (xy 164.88015 96.259274) - (xy 164.880149 96.259272) - (xy 164.727049 96.092963) - (xy 164.727048 96.092962) - (xy 164.727046 96.09296) - (xy 164.548649 95.954107) - (xy 164.482999 95.918579) - (xy 164.349832 95.846512) - (xy 164.349827 95.84651) - (xy 164.136017 95.773109) - (xy 163.954388 95.742801) - (xy 163.913033 95.7359) - (xy 163.686967 95.7359) - (xy 163.645612 95.742801) - (xy 163.463982 95.773109) - (xy 163.250172 95.84651) - (xy 163.250167 95.846512) - (xy 163.051352 95.954106) - (xy 162.872955 96.092959) - (xy 162.87295 96.092963) - (xy 162.71985 96.259272) - (xy 162.719842 96.259283) - (xy 162.596198 96.448533) - (xy 162.505388 96.65556) - (xy 162.449892 96.87471) - (xy 162.431225 97.099993) - (xy 162.431225 97.100006) - (xy 162.449892 97.325289) - (xy 162.505388 97.544439) - (xy 162.596198 97.751466) - (xy 162.719842 97.940716) - (xy 162.71985 97.940727) - (xy 162.85662 98.089297) - (xy 162.872954 98.10704) - (xy 163.051351 98.245893) - (xy 163.079165 98.260945) - (xy 163.128755 98.310165) - (xy 163.143863 98.378382) - (xy 163.119692 98.443937) - (xy 163.079165 98.479054) - (xy 163.076116 98.480705) - (xy 163.051352 98.494106) - (xy 162.872955 98.632959) - (xy 162.87295 98.632963) - (xy 162.71985 98.799272) - (xy 162.719842 98.799283) - (xy 162.596198 98.988533) - (xy 162.505388 99.19556) - (xy 162.449892 99.41471) - (xy 162.431225 99.639993) - (xy 162.431225 99.640006) - (xy 162.449892 99.865289) - (xy 162.505388 100.084438) - (xy 162.512727 100.101171) - (xy 162.521627 100.170472) - (xy 162.491648 100.233583) - (xy 162.432307 100.270467) - (xy 162.414442 100.273483) - (xy 162.414509 100.274013) - (xy 162.403778 100.275367) - (xy 162.397959 100.275825) - (xy 162.351374 100.277289) - (xy 162.351368 100.27729) - (xy 162.332126 100.28288) - (xy 162.313087 100.286823) - (xy 162.293217 100.289334) - (xy 162.293203 100.289337) - (xy 162.249883 100.306488) - (xy 162.244358 100.30838) - (xy 162.199613 100.32138) - (xy 162.19961 100.321381) - (xy 162.182366 100.331579) - (xy 162.164905 100.340133) - (xy 162.146274 100.34751) - (xy 162.146262 100.347517) - (xy 162.10857 100.374902) - (xy 162.103687 100.378109) - (xy 162.06358 100.401829) - (xy 162.049414 100.415995) - (xy 162.034624 100.428627) - (xy 162.018414 100.440404) - (xy 162.018411 100.440407) - (xy 161.98871 100.476309) - (xy 161.984777 100.480631) - (xy 161.504645 100.960762) - (xy 161.443322 100.994247) - (xy 161.37363 100.989263) - (xy 161.317697 100.947391) - (xy 161.296758 100.903521) - (xy 161.244136 100.695721) - (xy 161.15336 100.488774) - (xy 161.074888 100.368663) - (xy 160.439521 101.00403) - (xy 160.416845 100.926799) - (xy 160.337869 100.80391) - (xy 160.22747 100.708248) - (xy 160.094592 100.647565) - (xy 160.089599 100.646847) - (xy 160.722859 100.013587) - (xy 160.722858 100.013585) - (xy 160.698378 99.994531) - (xy 160.698368 99.994524) - (xy 160.499639 99.886977) - (xy 160.499624 99.88697) - (xy 160.285893 99.813596) - (xy 160.06299 99.7764) - (xy 159.83701 99.7764) - (xy 159.614106 99.813596) - (xy 159.400375 99.88697) - (xy 159.400369 99.886972) - (xy 159.201623 99.994529) - (xy 159.201617 99.994533) - (xy 159.17714 100.013584) - (xy 159.17714 100.013586) - (xy 159.810401 100.646847) - (xy 159.805408 100.647565) - (xy 159.67253 100.708248) - (xy 159.562131 100.80391) - (xy 159.483155 100.926799) - (xy 159.460477 101.00403) - (xy 158.82511 100.368664) - (xy 158.746638 100.488777) - (xy 158.746637 100.488779) - (xy 158.655863 100.695721) - (xy 158.600388 100.914786) - (xy 158.600386 100.914797) - (xy 158.581727 101.139993) - (xy 158.581727 101.140006) - (xy 158.600386 101.365202) - (xy 158.600388 101.365213) - (xy 158.655863 101.584278) - (xy 158.746639 101.791225) - (xy 158.825109 101.911334) - (xy 159.460477 101.275967) - (xy 159.483155 101.353201) - (xy 159.562131 101.47609) - (xy 159.67253 101.571752) - (xy 159.805408 101.632435) - (xy 159.810399 101.633152) - (xy 159.177139 102.266412) - (xy 159.17714 102.266413) - (xy 159.201622 102.285468) - (xy 159.201632 102.285475) - (xy 159.40036 102.393022) - (xy 159.400375 102.393029) - (xy 159.614107 102.466404) - (xy 159.70635 102.481796) - (xy 159.769235 102.512246) - (xy 159.805675 102.571861) - (xy 159.804101 102.641713) - (xy 159.773622 102.691786) - (xy 146.857181 115.608228) - (xy 146.795858 115.641713) - (xy 146.726166 115.636729) - (xy 146.670233 115.594857) - (xy 146.645816 115.529393) - (xy 146.6455 115.520547) - (xy 146.6455 98.386425) - (xy 146.665185 98.319386) - (xy 146.710481 98.277371) - (xy 146.768649 98.245893) - (xy 146.947046 98.10704) - (xy 147.100156 97.940719) - (xy 147.186193 97.809028) - (xy 147.239338 97.763675) - (xy 147.308569 97.754251) - (xy 147.371905 97.783753) - (xy 147.393804 97.809025) - (xy 147.479844 97.940719) - (xy 147.479849 97.940724) - (xy 147.47985 97.940727) - (xy 147.61662 98.089297) - (xy 147.632954 98.10704) - (xy 147.811351 98.245893) - (xy 148.010169 98.353488) - (xy 148.010172 98.353489) - (xy 148.223982 98.42689) - (xy 148.223984 98.42689) - (xy 148.223986 98.426891) - (xy 148.446967 98.4641) - (xy 148.446968 98.4641) - (xy 148.673032 98.4641) - (xy 148.673033 98.4641) - (xy 148.896014 98.426891) - (xy 148.901919 98.424864) - (xy 148.929492 98.415398) - (xy 149.109831 98.353488) - (xy 149.308649 98.245893) - (xy 149.487046 98.10704) - (xy 149.640156 97.940719) - (xy 149.726193 97.809028) - (xy 149.779338 97.763675) - (xy 149.848569 97.754251) - (xy 149.911905 97.783753) - (xy 149.933804 97.809025) - (xy 150.019844 97.940719) - (xy 150.019849 97.940724) - (xy 150.01985 97.940727) - (xy 150.15662 98.089297) - (xy 150.172954 98.10704) - (xy 150.351351 98.245893) - (xy 150.550169 98.353488) - (xy 150.550172 98.353489) - (xy 150.763982 98.42689) - (xy 150.763984 98.42689) - (xy 150.763986 98.426891) - (xy 150.986967 98.4641) - (xy 150.986968 98.4641) - (xy 151.213032 98.4641) - (xy 151.213033 98.4641) - (xy 151.436014 98.426891) - (xy 151.441919 98.424864) - (xy 151.469492 98.415398) - (xy 151.649831 98.353488) - (xy 151.848649 98.245893) - (xy 152.027046 98.10704) - (xy 152.180156 97.940719) - (xy 152.266193 97.809028) - (xy 152.319338 97.763675) - (xy 152.388569 97.754251) - (xy 152.451905 97.783753) - (xy 152.473804 97.809025) - (xy 152.559844 97.940719) - (xy 152.559849 97.940724) - (xy 152.55985 97.940727) - (xy 152.69662 98.089297) - (xy 152.712954 98.10704) - (xy 152.891351 98.245893) - (xy 153.090169 98.353488) - (xy 153.090172 98.353489) - (xy 153.303982 98.42689) - (xy 153.303984 98.42689) - (xy 153.303986 98.426891) - (xy 153.526967 98.4641) - (xy 153.526968 98.4641) - (xy 153.753032 98.4641) - (xy 153.753033 98.4641) - (xy 153.976014 98.426891) - (xy 153.981919 98.424864) - (xy 154.009492 98.415398) - (xy 154.189831 98.353488) - (xy 154.388649 98.245893) - (xy 154.567046 98.10704) - (xy 154.720156 97.940719) - (xy 154.806193 97.809028) - (xy 154.859338 97.763675) - (xy 154.928569 97.754251) - (xy 154.991905 97.783753) - (xy 155.013804 97.809025) - (xy 155.099844 97.940719) - (xy 155.099849 97.940724) - (xy 155.09985 97.940727) - (xy 155.23662 98.089297) - (xy 155.252954 98.10704) - (xy 155.431351 98.245893) - (xy 155.630169 98.353488) - (xy 155.630172 98.353489) - (xy 155.843982 98.42689) - (xy 155.843984 98.42689) - (xy 155.843986 98.426891) - (xy 156.066967 98.4641) - (xy 156.066968 98.4641) - (xy 156.293032 98.4641) - (xy 156.293033 98.4641) - (xy 156.516014 98.426891) - (xy 156.521919 98.424864) - (xy 156.549492 98.415398) - (xy 156.729831 98.353488) - (xy 156.928649 98.245893) - (xy 157.107046 98.10704) - (xy 157.260156 97.940719) - (xy 157.383802 97.751465) - (xy 157.474611 97.544441) - (xy 157.530107 97.325293) - (xy 157.548775 97.1) - (xy 157.548775 97.099993) - (xy 157.530107 96.87471) - (xy 157.530107 96.874707) - (xy 157.474611 96.655559) - (xy 157.383802 96.448535) - (xy 157.260156 96.259281) - (xy 157.26015 96.259274) - (xy 157.260149 96.259272) - (xy 157.107049 96.092963) - (xy 157.107048 96.092962) - (xy 157.107046 96.09296) - (xy 156.928649 95.954107) - (xy 156.928647 95.954106) - (xy 156.928646 95.954105) - (xy 156.928643 95.954103) - (xy 156.802981 95.886097) - (xy 156.753391 95.836877) - (xy 156.738 95.777043) - (xy 156.738 94.397952) - (xy 156.757685 94.330913) - (xy 156.774319 94.310271) - (xy 158.636821 92.447769) - (xy 160.513788 90.570801) - (xy 160.526042 90.560986) - (xy 160.525859 90.560764) - (xy 160.531868 90.555791) - (xy 160.531877 90.555786) - (xy 160.578607 90.506022) - (xy 160.579846 90.504743) - (xy 160.60012 90.484471) - (xy 160.604379 90.478978) - (xy 160.608152 90.474561) - (xy 160.640062 90.440582) - (xy 160.649715 90.42302) - (xy 160.660389 90.40677) - (xy 160.672673 90.390936) - (xy 160.69118 90.348167) - (xy 160.693749 90.342924) - (xy 160.716196 90.302093) - (xy 160.716197 90.302092) - (xy 160.721177 90.282691) - (xy 160.727478 90.264288) - (xy 160.735438 90.245896) - (xy 160.74273 90.199849) - (xy 160.743911 90.194152) - (xy 160.7555 90.149019) - (xy 160.7555 90.128982) - (xy 160.757027 90.109582) - (xy 160.76016 90.089804) - (xy 160.755775 90.043415) - (xy 160.7555 90.037577) - (xy 160.7555 89.856425) - (xy 160.775185 89.789386) - (xy 160.820481 89.747371) - (xy 160.878649 89.715893) - (xy 161.057046 89.57704) - (xy 161.111815 89.517545) - (xy 161.171699 89.481557) - (xy 161.241537 89.483657) - (xy 161.299153 89.52318) - (xy 161.319224 89.558196) - (xy 161.363046 89.675688) - (xy 161.363049 89.675693) - (xy 161.449209 89.790787) - (xy 161.449212 89.79079) - (xy 161.564306 89.87695) - (xy 161.564313 89.876954) - (xy 161.69902 89.927196) - (xy 161.699027 89.927198) - (xy 161.758555 89.933599) - (xy 161.758572 89.9336) - (xy 162.42 89.9336) - (xy 162.42 89.014297) - (xy 162.525408 89.062435) - (xy 162.633666 89.078) - (xy 162.706334 89.078) - (xy 162.814592 89.062435) - (xy 162.92 89.014297) - ) - ) - (filled_polygon - (layer "B.Cu") - (pts - (xy 136.980703 105.765739) - (xy 136.987181 105.771771) - (xy 142.988181 111.772771) - (xy 143.021666 111.834094) - (xy 143.0245 111.860452) - (xy 143.0245 112.707954) - (xy 143.004815 112.774993) - (xy 142.952011 112.820748) - (xy 142.882853 112.830692) - (xy 142.819297 112.801667) - (xy 142.80835 112.790926) - (xy 142.747345 112.723173) - (xy 142.705871 112.677112) - (xy 142.700835 112.673453) - (xy 142.552734 112.565851) - (xy 142.552729 112.565848) - (xy 142.379807 112.488857) - (xy 142.379802 112.488855) - (xy 142.222874 112.4555) - (xy 142.194646 112.4495) - (xy 142.005354 112.4495) - (xy 141.977126 112.4555) - (xy 141.820197 112.488855) - (xy 141.820192 112.488857) - (xy 141.647271 112.565848) - (xy 141.524187 112.655273) - (xy 141.45838 112.678752) - (xy 141.390326 112.662926) - (xy 141.363621 112.642635) - (xy 136.811819 108.090832) - (xy 136.778334 108.029509) - (xy 136.7755 108.003151) - (xy 136.7755 105.859452) - (xy 136.795185 105.792413) - (xy 136.847989 105.746658) - (xy 136.917147 105.736714) - ) - ) - (filled_polygon - (layer "B.Cu") - (pts - (xy 151.429817 62.970185) - (xy 151.475572 63.022989) - (xy 151.485516 63.092147) - (xy 151.483435 63.103097) - (xy 151.4495 63.246277) - (xy 151.4495 63.262655) - (xy 151.447835 63.278945) - (xy 151.447895 63.278951) - (xy 151.447265 63.28614) - (xy 151.449474 63.36203) - (xy 151.4495 63.363833) - (xy 151.4495 63.814927) - (xy 151.429815 63.881966) - (xy 151.401663 63.91278) - (xy 151.272955 64.012958) - (xy 151.218186 64.072453) - (xy 151.158298 64.108443) - (xy 151.08846 64.106342) - (xy 151.030845 64.066817) - (xy 151.010775 64.031802) - (xy 150.966954 63.914313) - (xy 150.96695 63.914306) - (xy 150.88079 63.799212) - (xy 150.880787 63.799209) - (xy 150.765693 63.713049) - (xy 150.765686 63.713045) - (xy 150.630979 63.662803) - (xy 150.630972 63.662801) - (xy 150.571444 63.6564) - (xy 149.91 63.6564) - (xy 149.91 64.575702) - (xy 149.804592 64.527565) - (xy 149.696334 64.512) - (xy 149.623666 64.512) - (xy 149.515408 64.527565) - (xy 149.41 64.575702) - (xy 149.41 63.6564) - (xy 148.748555 63.6564) - (xy 148.689027 63.662801) - (xy 148.68902 63.662803) - (xy 148.554313 63.713045) - (xy 148.554306 63.713049) - (xy 148.439212 63.799209) - (xy 148.439209 63.799212) - (xy 148.353049 63.914306) - (xy 148.353046 63.914312) - (xy 148.309224 64.031803) - (xy 148.267352 64.087736) - (xy 148.201887 64.112153) - (xy 148.133615 64.097301) - (xy 148.101813 64.072452) - (xy 148.047049 64.012963) - (xy 148.047048 64.012962) - (xy 148.047046 64.01296) - (xy 147.868649 63.874107) - (xy 147.805479 63.839921) - (xy 147.669832 63.766512) - (xy 147.669827 63.76651) - (xy 147.456017 63.693109) - (xy 147.274388 63.662801) - (xy 147.233033 63.6559) - (xy 147.006967 63.6559) - (xy 146.965612 63.662801) - (xy 146.783982 63.693109) - (xy 146.570172 63.76651) - (xy 146.570167 63.766512) - (xy 146.371352 63.874106) - (xy 146.192955 64.012959) - (xy 146.19295 64.012963) - (xy 146.03985 64.179272) - (xy 146.039846 64.179278) - (xy 145.953807 64.310969) - (xy 145.90066 64.356325) - (xy 145.831429 64.365748) - (xy 145.768093 64.336245) - (xy 145.746192 64.310969) - (xy 145.660156 64.179281) - (xy 145.660151 64.179276) - (xy 145.660149 64.179272) - (xy 145.507049 64.012963) - (xy 145.507048 64.012962) - (xy 145.507046 64.01296) - (xy 145.328649 63.874107) - (xy 145.265479 63.839921) - (xy 145.129832 63.766512) - (xy 145.129827 63.76651) - (xy 144.916017 63.693109) - (xy 144.734388 63.662801) - (xy 144.693033 63.6559) - (xy 144.466967 63.6559) - (xy 144.425612 63.662801) - (xy 144.243982 63.693109) - (xy 144.030172 63.76651) - (xy 144.030167 63.766512) - (xy 143.831352 63.874106) - (xy 143.652955 64.012959) - (xy 143.65295 64.012963) - (xy 143.49985 64.179272) - (xy 143.499842 64.179283) - (xy 143.376198 64.368533) - (xy 143.285388 64.57556) - (xy 143.229892 64.79471) - (xy 143.211225 65.019993) - (xy 143.211225 65.020006) - (xy 143.229892 65.245289) - (xy 143.285388 65.464439) - (xy 143.376198 65.671466) - (xy 143.499842 65.860716) - (xy 143.49985 65.860727) - (xy 143.64418 66.017509) - (xy 143.652954 66.02704) - (xy 143.831351 66.165893) - (xy 143.889517 66.19737) - (xy 143.939107 66.246588) - (xy 143.9545 66.306425) - (xy 143.9545 71.583573) - (xy 143.934815 71.650612) - (xy 143.889519 71.692627) - (xy 143.831356 71.724103) - (xy 143.831353 71.724105) - (xy 143.652955 71.862959) - (xy 143.65295 71.862963) - (xy 143.49985 72.029272) - (xy 143.499842 72.029283) - (xy 143.376198 72.218533) - (xy 143.285388 72.42556) - (xy 143.229892 72.64471) - (xy 143.211225 72.869993) - (xy 143.211225 72.870006) - (xy 143.229892 73.095289) - (xy 143.285388 73.314439) - (xy 143.376198 73.521466) - (xy 143.499842 73.710716) - (xy 143.49985 73.710727) - (xy 143.65295 73.877036) - (xy 143.652954 73.87704) - (xy 143.831351 74.015893) - (xy 143.889517 74.04737) - (xy 143.939107 74.096588) - (xy 143.9545 74.156425) - (xy 143.9545 79.433573) - (xy 143.934815 79.500612) - (xy 143.889519 79.542627) - (xy 143.831356 79.574103) - (xy 143.831353 79.574105) - (xy 143.652955 79.712959) - (xy 143.65295 79.712963) - (xy 143.49985 79.879272) - (xy 143.499842 79.879283) - (xy 143.376198 80.068533) - (xy 143.285388 80.27556) - (xy 143.229892 80.49471) - (xy 143.211225 80.719993) - (xy 143.211225 80.720006) - (xy 143.229892 80.945289) - (xy 143.285388 81.164439) - (xy 143.376198 81.371466) - (xy 143.499842 81.560716) - (xy 143.49985 81.560727) - (xy 143.65295 81.727036) - (xy 143.652954 81.72704) - (xy 143.831351 81.865893) - (xy 143.889517 81.89737) - (xy 143.939107 81.946588) - (xy 143.9545 82.006425) - (xy 143.9545 87.283573) - (xy 143.934815 87.350612) - (xy 143.889519 87.392627) - (xy 143.831356 87.424103) - (xy 143.831353 87.424105) - (xy 143.652955 87.562959) - (xy 143.65295 87.562963) - (xy 143.49985 87.729272) - (xy 143.499842 87.729283) - (xy 143.376198 87.918533) - (xy 143.285388 88.12556) - (xy 143.229892 88.34471) - (xy 143.211225 88.569993) - (xy 143.211225 88.570006) - (xy 143.229892 88.795289) - (xy 143.285388 89.014439) - (xy 143.376198 89.221466) - (xy 143.499842 89.410716) - (xy 143.49985 89.410727) - (xy 143.65295 89.577036) - (xy 143.652954 89.57704) - (xy 143.831351 89.715893) - (xy 143.889517 89.74737) - (xy 143.939107 89.796588) - (xy 143.9545 89.856425) - (xy 143.9545 91.597255) - (xy 143.952775 91.612872) - (xy 143.953061 91.612899) - (xy 143.952326 91.620666) - (xy 143.954469 91.688846) - (xy 143.9545 91.690793) - (xy 143.9545 91.719343) - (xy 143.954501 91.71936) - (xy 143.955368 91.726231) - (xy 143.955826 91.73205) - (xy 143.95729 91.778624) - (xy 143.957291 91.778627) - (xy 143.96288 91.797867) - (xy 143.966824 91.816911) - (xy 143.969336 91.836792) - (xy 143.98649 91.880119) - (xy 143.988382 91.885647) - (xy 144.000537 91.927484) - (xy 144.001382 91.93039) - (xy 144.005989 91.938181) - (xy 144.01158 91.947634) - (xy 144.020136 91.9651) - (xy 144.023254 91.972973) - (xy 144.027514 91.983732) - (xy 144.054898 92.021423) - (xy 144.058106 92.026307) - (xy 144.081827 92.066416) - (xy 144.081833 92.066424) - (xy 144.09599 92.08058) - (xy 144.108627 92.095375) - (xy 144.120406 92.111587) - (xy 144.15373 92.139155) - (xy 144.156309 92.141288) - (xy 144.16062 92.14521) - (xy 144.841958 92.826548) - (xy 145.449194 93.433784) - (xy 145.459019 93.446048) - (xy 145.45924 93.445866) - (xy 145.46421 93.451874) - (xy 145.513949 93.498582) - (xy 145.515316 93.499906) - (xy 145.53553 93.52012) - (xy 145.541004 93.524366) - (xy 145.545442 93.528156) - (xy 145.579418 93.560062) - (xy 145.579422 93.560064) - (xy 145.596973 93.569713) - (xy 145.613231 93.580392) - (xy 145.629064 93.592674) - (xy 145.651015 93.602172) - (xy 145.671837 93.611183) - (xy 145.677081 93.613752) - (xy 145.717908 93.636197) - (xy 145.737312 93.641179) - (xy 145.75571 93.647478) - (xy 145.774105 93.655438) - (xy 145.820129 93.662726) - (xy 145.825832 93.663907) - (xy 145.870981 93.6755) - (xy 145.891016 93.6755) - (xy 145.910413 93.677026) - (xy 145.930196 93.68016) - (xy 145.976583 93.675775) - (xy 145.982422 93.6755) - (xy 149.039548 93.6755) - (xy 149.106587 93.695185) - (xy 149.127229 93.711819) - (xy 149.961038 94.545629) - (xy 149.994523 94.606952) - (xy 149.996678 94.620348) - (xy 150.004731 94.696959) - (xy 150.014326 94.788256) - (xy 150.014327 94.788259) - (xy 150.072818 94.968277) - (xy 150.072821 94.968284) - (xy 150.167467 95.132216) - (xy 150.198578 95.166768) - (xy 150.294129 95.272888) - (xy 150.447265 95.384148) - (xy 150.44727 95.384151) - (xy 150.620192 95.461142) - (xy 150.620197 95.461144) - (xy 150.805354 95.5005) - (xy 150.805355 95.5005) - (xy 150.901184 95.5005) - (xy 150.968223 95.520185) - (xy 150.975869 95.529009) - (xy 151.032021 95.492923) - (xy 151.041175 95.49061) - (xy 151.179803 95.461144) - (xy 151.35273 95.384151) - (xy 151.505871 95.272888) - (xy 151.632533 95.132216) - (xy 151.727179 94.968284) - (xy 151.785674 94.788256) - (xy 151.80546 94.6) - (xy 151.785674 94.411744) - (xy 151.727179 94.231716) - (xy 151.632533 94.067784) - (xy 151.505871 93.927112) - (xy 151.460953 93.894477) - (xy 151.352734 93.815851) - (xy 151.352729 93.815848) - (xy 151.179807 93.738857) - (xy 151.179802 93.738855) - (xy 151.021801 93.705272) - (xy 150.994646 93.6995) - (xy 150.994645 93.6995) - (xy 150.935452 93.6995) - (xy 150.868413 93.679815) - (xy 150.847771 93.663181) - (xy 150.621772 93.437181) - (xy 150.588287 93.375858) - (xy 150.593271 93.306166) - (xy 150.635143 93.250233) - (xy 150.700607 93.225816) - (xy 150.709453 93.2255) - (xy 154.289548 93.2255) - (xy 154.356587 93.245185) - (xy 154.377229 93.261819) - (xy 155.450681 94.335271) - (xy 155.484166 94.396594) - (xy 155.487 94.422952) - (xy 155.487 95.850644) - (xy 155.467315 95.917683) - (xy 155.434914 95.950334) - (xy 155.435399 95.950957) - (xy 155.431353 95.954105) - (xy 155.431351 95.954107) - (xy 155.314164 96.045318) - (xy 155.252955 96.092959) - (xy 155.25295 96.092963) - (xy 155.09985 96.259272) - (xy 155.099842 96.259283) - (xy 155.013808 96.390968) - (xy 154.960662 96.436325) - (xy 154.89143 96.445748) - (xy 154.828095 96.416246) - (xy 154.806192 96.390968) - (xy 154.733713 96.280032) - (xy 154.720156 96.259281) - (xy 154.72015 96.259274) - (xy 154.720149 96.259272) - (xy 154.567049 96.092963) - (xy 154.567048 96.092962) - (xy 154.567046 96.09296) - (xy 154.388649 95.954107) - (xy 154.322999 95.918579) - (xy 154.189832 95.846512) - (xy 154.189827 95.84651) - (xy 153.976017 95.773109) - (xy 153.794388 95.742801) - (xy 153.753033 95.7359) - (xy 153.526967 95.7359) - (xy 153.485612 95.742801) - (xy 153.303982 95.773109) - (xy 153.090172 95.84651) - (xy 153.090167 95.846512) - (xy 152.891352 95.954106) - (xy 152.712955 96.092959) - (xy 152.71295 96.092963) - (xy 152.55985 96.259272) - (xy 152.559842 96.259283) - (xy 152.473808 96.390968) - (xy 152.420662 96.436325) - (xy 152.35143 96.445748) - (xy 152.288095 96.416246) - (xy 152.266192 96.390968) - (xy 152.193713 96.280032) - (xy 152.180156 96.259281) - (xy 152.18015 96.259274) - (xy 152.180149 96.259272) - (xy 152.027049 96.092963) - (xy 152.027048 96.092962) - (xy 152.027046 96.09296) - (xy 151.848649 95.954107) - (xy 151.782999 95.918579) - (xy 151.649832 95.846512) - (xy 151.649827 95.84651) - (xy 151.436017 95.773109) - (xy 151.254388 95.742801) - (xy 151.213033 95.7359) - (xy 151.066956 95.7359) - (xy 150.999917 95.716215) - (xy 150.99227 95.70739) - (xy 150.936119 95.743477) - (xy 150.921596 95.746808) - (xy 150.891053 95.751905) - (xy 150.763982 95.773109) - (xy 150.550172 95.84651) - (xy 150.550167 95.846512) - (xy 150.351352 95.954106) - (xy 150.172955 96.092959) - (xy 150.17295 96.092963) - (xy 150.01985 96.259272) - (xy 150.019846 96.259278) - (xy 149.933807 96.390969) - (xy 149.88066 96.436325) - (xy 149.811429 96.445748) - (xy 149.748093 96.416245) - (xy 149.726192 96.390969) - (xy 149.640156 96.259281) - (xy 149.64015 96.259274) - (xy 149.640149 96.259272) - (xy 149.487049 96.092963) - (xy 149.487048 96.092962) - (xy 149.487046 96.09296) - (xy 149.308649 95.954107) - (xy 149.242999 95.918579) - (xy 149.109832 95.846512) - (xy 149.109827 95.84651) - (xy 148.896017 95.773109) - (xy 148.714388 95.742801) - (xy 148.673033 95.7359) - (xy 148.446967 95.7359) - (xy 148.405612 95.742801) - (xy 148.223982 95.773109) - (xy 148.010172 95.84651) - (xy 148.010167 95.846512) - (xy 147.811352 95.954106) - (xy 147.632955 96.092959) - (xy 147.63295 96.092963) - (xy 147.47985 96.259272) - (xy 147.479842 96.259283) - (xy 147.393808 96.390968) - (xy 147.340662 96.436325) - (xy 147.27143 96.445748) - (xy 147.208095 96.416246) - (xy 147.186192 96.390968) - (xy 147.113713 96.280032) - (xy 147.100156 96.259281) - (xy 147.10015 96.259274) - (xy 147.100149 96.259272) - (xy 146.947049 96.092963) - (xy 146.947048 96.092962) - (xy 146.947046 96.09296) - (xy 146.768649 95.954107) - (xy 146.702999 95.918579) - (xy 146.569832 95.846512) - (xy 146.569827 95.84651) - (xy 146.356017 95.773109) - (xy 146.174388 95.742801) - (xy 146.133033 95.7359) - (xy 145.906967 95.7359) - (xy 145.865612 95.742801) - (xy 145.683982 95.773109) - (xy 145.470172 95.84651) - (xy 145.470167 95.846512) - (xy 145.271352 95.954106) - (xy 145.092955 96.092959) - (xy 145.09295 96.092963) - (xy 144.93985 96.259272) - (xy 144.939842 96.259283) - (xy 144.853808 96.390968) - (xy 144.800662 96.436325) - (xy 144.73143 96.445748) - (xy 144.668095 96.416246) - (xy 144.646192 96.390968) - (xy 144.573713 96.280032) - (xy 144.560156 96.259281) - (xy 144.56015 96.259274) - (xy 144.560149 96.259272) - (xy 144.407049 96.092963) - (xy 144.407048 96.092962) - (xy 144.407046 96.09296) - (xy 144.228649 95.954107) - (xy 144.162999 95.918579) - (xy 144.029832 95.846512) - (xy 144.029827 95.84651) - (xy 143.816017 95.773109) - (xy 143.634388 95.742801) - (xy 143.593033 95.7359) - (xy 143.366967 95.7359) - (xy 143.325612 95.742801) - (xy 143.143982 95.773109) - (xy 142.930172 95.84651) - (xy 142.930167 95.846512) - (xy 142.731352 95.954106) - (xy 142.552955 96.092959) - (xy 142.55295 96.092963) - (xy 142.39985 96.259272) - (xy 142.399842 96.259283) - (xy 142.313808 96.390968) - (xy 142.260662 96.436325) - (xy 142.19143 96.445748) - (xy 142.128095 96.416246) - (xy 142.106192 96.390968) - (xy 142.033713 96.280032) - (xy 142.020156 96.259281) - (xy 142.02015 96.259274) - (xy 142.020149 96.259272) - (xy 141.867049 96.092963) - (xy 141.867048 96.092962) - (xy 141.867046 96.09296) - (xy 141.688649 95.954107) - (xy 141.622999 95.918579) - (xy 141.489832 95.846512) - (xy 141.489827 95.84651) - (xy 141.276017 95.773109) - (xy 141.094388 95.742801) - (xy 141.053033 95.7359) - (xy 140.826967 95.7359) - (xy 140.785612 95.742801) - (xy 140.603982 95.773109) - (xy 140.390172 95.84651) - (xy 140.390167 95.846512) - (xy 140.191352 95.954106) - (xy 140.012955 96.092959) - (xy 140.01295 96.092963) - (xy 139.85985 96.259272) - (xy 139.859842 96.259283) - (xy 139.773808 96.390968) - (xy 139.720662 96.436325) - (xy 139.65143 96.445748) - (xy 139.588095 96.416246) - (xy 139.566192 96.390968) - (xy 139.493713 96.280032) - (xy 139.480156 96.259281) - (xy 139.48015 96.259274) - (xy 139.480149 96.259272) - (xy 139.327049 96.092963) - (xy 139.327048 96.092962) - (xy 139.327046 96.09296) - (xy 139.148649 95.954107) - (xy 139.082999 95.918579) - (xy 138.949832 95.846512) - (xy 138.949827 95.84651) - (xy 138.736017 95.773109) - (xy 138.554388 95.742801) - (xy 138.513033 95.7359) - (xy 138.286967 95.7359) - (xy 138.245612 95.742801) - (xy 138.063982 95.773109) - (xy 137.850172 95.84651) - (xy 137.850167 95.846512) - (xy 137.651352 95.954106) - (xy 137.472955 96.092959) - (xy 137.47295 96.092963) - (xy 137.440729 96.127965) - (xy 137.380842 96.163956) - (xy 137.311004 96.161855) - (xy 137.253388 96.122331) - (xy 137.226287 96.057931) - (xy 137.2255 96.043982) - (xy 137.2255 76.557242) - (xy 137.227224 76.541622) - (xy 137.226939 76.541596) - (xy 137.227673 76.533833) - (xy 137.225531 76.465652) - (xy 137.2255 76.463705) - (xy 137.2255 76.435154) - (xy 137.2255 76.43515) - (xy 137.224631 76.428272) - (xy 137.224172 76.422443) - (xy 137.222709 76.375872) - (xy 137.217122 76.356644) - (xy 137.213174 76.337584) - (xy 137.210663 76.317704) - (xy 137.193512 76.274387) - (xy 137.191619 76.268858) - (xy 137.178618 76.224109) - (xy 137.178616 76.224106) - (xy 137.168423 76.206871) - (xy 137.159861 76.189394) - (xy 137.152487 76.17077) - (xy 137.152486 76.170768) - (xy 137.125079 76.133045) - (xy 137.121888 76.128186) - (xy 137.098172 76.088083) - (xy 137.098165 76.088074) - (xy 137.084006 76.073915) - (xy 137.071368 76.059119) - (xy 137.059594 76.042913) - (xy 137.023688 76.013209) - (xy 137.019376 76.009286) - (xy 135.886887 74.876796) - (xy 135.853402 74.815473) - (xy 135.854363 74.758674) - (xy 135.885604 74.635305) - (xy 135.885604 74.635304) - (xy 135.885607 74.635293) - (xy 135.885608 74.635285) - (xy 135.904275 74.410006) - (xy 135.904275 74.409993) - (xy 135.885607 74.18471) - (xy 135.885607 74.184707) - (xy 135.830111 73.965559) - (xy 135.739302 73.758535) - (xy 135.708067 73.710727) - (xy 135.665678 73.645845) - (xy 135.615656 73.569281) - (xy 135.615653 73.569278) - (xy 135.615649 73.569272) - (xy 135.462549 73.402963) - (xy 135.462548 73.402962) - (xy 135.462546 73.40296) - (xy 135.284149 73.264107) - (xy 135.284147 73.264106) - (xy 135.284146 73.264105) - (xy 135.284139 73.2641) - (xy 135.256336 73.249055) - (xy 135.206744 73.199837) - (xy 135.191635 73.13162) - (xy 135.215806 73.066064) - (xy 135.256336 73.030945) - (xy 135.284139 73.015899) - (xy 135.284142 73.015896) - (xy 135.284149 73.015893) - (xy 135.462546 72.87704) - (xy 135.588588 72.740123) - (xy 135.615649 72.710727) - (xy 135.61565 72.710725) - (xy 135.615656 72.710719) - (xy 135.739302 72.521465) - (xy 135.830111 72.314441) - (xy 135.885607 72.095293) - (xy 135.898223 71.943039) - (xy 135.904275 71.870006) - (xy 135.904275 71.869993) - (xy 135.891207 71.712294) - (xy 135.885607 71.644707) - (xy 135.830111 71.425559) - (xy 135.739302 71.218535) - (xy 135.615656 71.029281) - (xy 135.615653 71.029278) - (xy 135.615649 71.029272) - (xy 135.462545 70.862959) - (xy 135.462544 70.862958) - (xy 135.333837 70.76278) - (xy 135.293024 70.706069) - (xy 135.286 70.664927) - (xy 135.286 69.12673) - (xy 135.305685 69.059691) - (xy 135.322319 69.039049) - (xy 141.374549 62.986819) - (xy 141.435872 62.953334) - (xy 141.46223 62.9505) - (xy 151.362778 62.9505) - ) - ) - (filled_polygon - (layer "B.Cu") - (pts - (xy 163.851809 62.970185) - (xy 163.872451 62.986819) - (xy 164.293181 63.407548) - (xy 164.326666 63.468871) - (xy 164.3295 63.495229) - (xy 164.3295 63.916111) - (xy 164.309815 63.98315) - (xy 164.286243 64.008955) - (xy 164.28673 64.009484) - (xy 164.282955 64.012958) - (xy 164.228186 64.072453) - (xy 164.168298 64.108443) - (xy 164.09846 64.106342) - (xy 164.040845 64.066817) - (xy 164.020775 64.031802) - (xy 163.976954 63.914313) - (xy 163.97695 63.914306) - (xy 163.89079 63.799212) - (xy 163.890787 63.799209) - (xy 163.775693 63.713049) - (xy 163.775686 63.713045) - (xy 163.640979 63.662803) - (xy 163.640972 63.662801) - (xy 163.581444 63.6564) - (xy 162.92 63.6564) - (xy 162.92 64.575702) - (xy 162.814592 64.527565) - (xy 162.706334 64.512) - (xy 162.633666 64.512) - (xy 162.525408 64.527565) - (xy 162.42 64.575702) - (xy 162.42 63.6564) - (xy 161.758555 63.6564) - (xy 161.699027 63.662801) - (xy 161.69902 63.662803) - (xy 161.564313 63.713045) - (xy 161.564306 63.713049) - (xy 161.449212 63.799209) - (xy 161.449209 63.799212) - (xy 161.363049 63.914306) - (xy 161.363046 63.914312) - (xy 161.319224 64.031803) - (xy 161.277352 64.087736) - (xy 161.211887 64.112153) - (xy 161.143615 64.097301) - (xy 161.111813 64.072452) - (xy 161.057049 64.012963) - (xy 161.057048 64.012962) - (xy 161.057046 64.01296) - (xy 160.878649 63.874107) - (xy 160.815479 63.839921) - (xy 160.679832 63.766512) - (xy 160.679827 63.76651) - (xy 160.466017 63.693109) - (xy 160.284388 63.662801) - (xy 160.243033 63.6559) - (xy 160.016967 63.6559) - (xy 159.975612 63.662801) - (xy 159.793982 63.693109) - (xy 159.580172 63.76651) - (xy 159.580167 63.766512) - (xy 159.381352 63.874106) - (xy 159.202955 64.012959) - (xy 159.20295 64.012963) - (xy 159.04985 64.179272) - (xy 159.049842 64.179283) - (xy 158.963808 64.310968) - (xy 158.910662 64.356325) - (xy 158.84143 64.365748) - (xy 158.778095 64.336246) - (xy 158.756192 64.310968) - (xy 158.670157 64.179283) - (xy 158.670149 64.179272) - (xy 158.517049 64.012963) - (xy 158.517048 64.012962) - (xy 158.517046 64.01296) - (xy 158.338649 63.874107) - (xy 158.275479 63.839921) - (xy 158.139832 63.766512) - (xy 158.139827 63.76651) - (xy 157.926017 63.693109) - (xy 157.744388 63.662801) - (xy 157.703033 63.6559) - (xy 157.476967 63.6559) - (xy 157.435612 63.662801) - (xy 157.253982 63.693109) - (xy 157.040172 63.76651) - (xy 157.040167 63.766512) - (xy 156.841352 63.874106) - (xy 156.662955 64.012959) - (xy 156.66295 64.012963) - (xy 156.50985 64.179272) - (xy 156.509842 64.179283) - (xy 156.386198 64.368533) - (xy 156.295388 64.57556) - (xy 156.239892 64.79471) - (xy 156.221225 65.019993) - (xy 156.221225 65.020006) - (xy 156.239892 65.245289) - (xy 156.295388 65.464439) - (xy 156.386198 65.671466) - (xy 156.509842 65.860716) - (xy 156.50985 65.860727) - (xy 156.65418 66.017509) - (xy 156.662954 66.02704) - (xy 156.841351 66.165893) - (xy 156.899517 66.19737) - (xy 156.949107 66.246588) - (xy 156.9645 66.306425) - (xy 156.9645 71.583573) - (xy 156.944815 71.650612) - (xy 156.899519 71.692627) - (xy 156.841356 71.724103) - (xy 156.841353 71.724105) - (xy 156.662955 71.862959) - (xy 156.66295 71.862963) - (xy 156.50985 72.029272) - (xy 156.509842 72.029283) - (xy 156.386198 72.218533) - (xy 156.295388 72.42556) - (xy 156.239892 72.64471) - (xy 156.221225 72.869993) - (xy 156.221225 72.870006) - (xy 156.239892 73.095289) - (xy 156.295388 73.314439) - (xy 156.386198 73.521466) - (xy 156.509842 73.710716) - (xy 156.50985 73.710727) - (xy 156.66295 73.877036) - (xy 156.662954 73.87704) - (xy 156.841351 74.015893) - (xy 156.899517 74.04737) - (xy 156.949107 74.096588) - (xy 156.9645 74.156425) - (xy 156.9645 79.433573) - (xy 156.944815 79.500612) - (xy 156.899519 79.542627) - (xy 156.841356 79.574103) - (xy 156.841353 79.574105) - (xy 156.662955 79.712959) - (xy 156.66295 79.712963) - (xy 156.50985 79.879272) - (xy 156.509842 79.879283) - (xy 156.386198 80.068533) - (xy 156.295388 80.27556) - (xy 156.239892 80.49471) - (xy 156.221225 80.719993) - (xy 156.221225 80.720006) - (xy 156.239892 80.945289) - (xy 156.295388 81.164439) - (xy 156.386198 81.371466) - (xy 156.509842 81.560716) - (xy 156.50985 81.560727) - (xy 156.66295 81.727036) - (xy 156.662954 81.72704) - (xy 156.841351 81.865893) - (xy 156.899517 81.89737) - (xy 156.949107 81.946588) - (xy 156.9645 82.006425) - (xy 156.9645 87.283573) - (xy 156.944815 87.350612) - (xy 156.899519 87.392627) - (xy 156.841356 87.424103) - (xy 156.841353 87.424105) - (xy 156.662955 87.562959) - (xy 156.66295 87.562963) - (xy 156.50985 87.729272) - (xy 156.509842 87.729283) - (xy 156.386198 87.918533) - (xy 156.295388 88.12556) - (xy 156.239892 88.34471) - (xy 156.221225 88.569993) - (xy 156.221225 88.570006) - (xy 156.239892 88.795289) - (xy 156.295388 89.014439) - (xy 156.386198 89.221466) - (xy 156.509842 89.410716) - (xy 156.50985 89.410727) - (xy 156.66295 89.577036) - (xy 156.662954 89.57704) - (xy 156.841351 89.715893) - (xy 157.040169 89.823488) - (xy 157.040172 89.823489) - (xy 157.253982 89.89689) - (xy 157.253984 89.89689) - (xy 157.253986 89.896891) - (xy 157.476967 89.9341) - (xy 157.476968 89.9341) - (xy 157.703032 89.9341) - (xy 157.703033 89.9341) - (xy 157.926014 89.896891) - (xy 158.139831 89.823488) - (xy 158.338649 89.715893) - (xy 158.517046 89.57704) - (xy 158.670156 89.410719) - (xy 158.756193 89.279028) - (xy 158.809338 89.233675) - (xy 158.878569 89.224251) - (xy 158.941905 89.253753) - (xy 158.963804 89.279025) - (xy 159.049844 89.410719) - (xy 159.049849 89.410724) - (xy 159.04985 89.410727) - (xy 159.20295 89.577036) - (xy 159.202954 89.57704) - (xy 159.381351 89.715893) - (xy 159.381355 89.715895) - (xy 159.385483 89.718593) - (xy 159.430834 89.771744) - (xy 159.440251 89.840976) - (xy 159.410743 89.904309) - (xy 159.405332 89.910076) - (xy 156.187681 93.127728) - (xy 156.126358 93.161213) - (xy 156.056666 93.156229) - (xy 156.012319 93.127728) - (xy 155.100803 92.216212) - (xy 155.09098 92.20395) - (xy 155.090759 92.204134) - (xy 155.085786 92.198122) - (xy 155.036066 92.151432) - (xy 155.034666 92.150075) - (xy 155.014476 92.129884) - (xy 155.008986 92.125625) - (xy 155.004561 92.121847) - (xy 154.970582 92.089938) - (xy 154.97058 92.089936) - (xy 154.970577 92.089935) - (xy 154.953029 92.080288) - (xy 154.936763 92.069604) - (xy 154.920936 92.057327) - (xy 154.920935 92.057326) - (xy 154.920933 92.057325) - (xy 154.878168 92.038818) - (xy 154.872922 92.036248) - (xy 154.832093 92.013803) - (xy 154.832092 92.013802) - (xy 154.812693 92.008822) - (xy 154.794281 92.002518) - (xy 154.775898 91.994562) - (xy 154.775892 91.99456) - (xy 154.729874 91.987272) - (xy 154.724152 91.986087) - (xy 154.679021 91.9745) - (xy 154.679019 91.9745) - (xy 154.658984 91.9745) - (xy 154.639586 91.972973) - (xy 154.632162 91.971797) - (xy 154.619805 91.96984) - (xy 154.619804 91.96984) - (xy 154.573416 91.974225) - (xy 154.567578 91.9745) - (xy 148.510452 91.9745) - (xy 148.443413 91.954815) - (xy 148.422771 91.938181) - (xy 147.781819 91.297228) - (xy 147.748334 91.235905) - (xy 147.7455 91.209547) - (xy 147.7455 89.856425) - (xy 147.765185 89.789386) - (xy 147.810481 89.747371) - (xy 147.868649 89.715893) - (xy 148.047046 89.57704) - (xy 148.101815 89.517545) - (xy 148.161699 89.481557) - (xy 148.231537 89.483657) - (xy 148.289153 89.52318) - (xy 148.309224 89.558196) - (xy 148.353046 89.675688) - (xy 148.353049 89.675693) - (xy 148.439209 89.790787) - (xy 148.439212 89.79079) - (xy 148.554306 89.87695) - (xy 148.554313 89.876954) - (xy 148.68902 89.927196) - (xy 148.689027 89.927198) - (xy 148.748555 89.933599) - (xy 148.748572 89.9336) - (xy 149.41 89.9336) - (xy 149.41 89.014297) - (xy 149.515408 89.062435) - (xy 149.623666 89.078) - (xy 149.696334 89.078) - (xy 149.804592 89.062435) - (xy 149.91 89.014297) - (xy 149.91 89.9336) - (xy 150.571428 89.9336) - (xy 150.571444 89.933599) - (xy 150.630972 89.927198) - (xy 150.630979 89.927196) - (xy 150.765686 89.876954) - (xy 150.765693 89.87695) - (xy 150.880787 89.79079) - (xy 150.88079 89.790787) - (xy 150.96695 89.675693) - (xy 150.966954 89.675686) - (xy 151.010775 89.558197) - (xy 151.052646 89.502263) - (xy 151.11811 89.477846) - (xy 151.186383 89.492698) - (xy 151.218186 89.517547) - (xy 151.259578 89.56251) - (xy 151.272954 89.57704) - (xy 151.451351 89.715893) - (xy 151.650169 89.823488) - (xy 151.650172 89.823489) - (xy 151.863982 89.89689) - (xy 151.863984 89.89689) - (xy 151.863986 89.896891) - (xy 152.086967 89.9341) - (xy 152.086968 89.9341) - (xy 152.313032 89.9341) - (xy 152.313033 89.9341) - (xy 152.536014 89.896891) - (xy 152.749831 89.823488) - (xy 152.948649 89.715893) - (xy 153.127046 89.57704) - (xy 153.280156 89.410719) - (xy 153.403802 89.221465) - (xy 153.494611 89.014441) - (xy 153.550107 88.795293) - (xy 153.560476 88.670156) - (xy 153.568775 88.570006) - (xy 153.568775 88.569993) - (xy 153.550107 88.34471) - (xy 153.550107 88.344707) - (xy 153.494611 88.125559) - (xy 153.403802 87.918535) - (xy 153.391692 87.9) - (xy 153.280157 87.729283) - (xy 153.280149 87.729272) - (xy 153.127049 87.562963) - (xy 153.127044 87.562958) - (xy 152.998337 87.46278) - (xy 152.957524 87.406069) - (xy 152.9505 87.364927) - (xy 152.9505 81.925071) - (xy 152.970185 81.858032) - (xy 152.998338 81.827218) - (xy 153.000719 81.825364) - (xy 153.127046 81.72704) - (xy 153.24013 81.604199) - (xy 153.280149 81.560727) - (xy 153.280151 81.560724) - (xy 153.280156 81.560719) - (xy 153.403802 81.371465) - (xy 153.494611 81.164441) - (xy 153.550107 80.945293) - (xy 153.559334 80.833937) - (xy 153.568775 80.720006) - (xy 153.568775 80.719993) - (xy 153.550107 80.49471) - (xy 153.550107 80.494707) - (xy 153.494611 80.275559) - (xy 153.403802 80.068535) - (xy 153.367993 80.013726) - (xy 153.280157 79.879283) - (xy 153.280149 79.879272) - (xy 153.127049 79.712963) - (xy 153.127044 79.712958) - (xy 152.998337 79.61278) - (xy 152.957524 79.556069) - (xy 152.9505 79.514927) - (xy 152.9505 74.075071) - (xy 152.970185 74.008032) - (xy 152.998338 73.977218) - (xy 153.013317 73.965559) - (xy 153.127046 73.87704) - (xy 153.247378 73.746325) - (xy 153.280149 73.710727) - (xy 153.280151 73.710724) - (xy 153.280156 73.710719) - (xy 153.403802 73.521465) - (xy 153.494611 73.314441) - (xy 153.550107 73.095293) - (xy 153.562723 72.943039) - (xy 153.568775 72.870006) - (xy 153.568775 72.869993) - (xy 153.550107 72.64471) - (xy 153.550107 72.644707) - (xy 153.494611 72.425559) - (xy 153.403802 72.218535) - (xy 153.395671 72.20609) - (xy 153.339426 72.12) - (xy 153.280156 72.029281) - (xy 153.280153 72.029278) - (xy 153.280149 72.029272) - (xy 153.127049 71.862963) - (xy 153.127044 71.862958) - (xy 152.998337 71.76278) - (xy 152.957524 71.706069) - (xy 152.9505 71.664927) - (xy 152.9505 66.225071) - (xy 152.970185 66.158032) - (xy 152.998338 66.127218) - (xy 153.000719 66.125364) - (xy 153.127046 66.02704) - (xy 153.226832 65.918643) - (xy 153.280149 65.860727) - (xy 153.280151 65.860724) - (xy 153.280156 65.860719) - (xy 153.403802 65.671465) - (xy 153.494611 65.464441) - (xy 153.550107 65.245293) - (xy 153.559327 65.134024) - (xy 153.568775 65.020006) - (xy 153.568775 65.019993) - (xy 153.550107 64.79471) - (xy 153.550107 64.794707) - (xy 153.494611 64.575559) - (xy 153.403802 64.368535) - (xy 153.280156 64.179281) - (xy 153.280153 64.179278) - (xy 153.280149 64.179272) - (xy 153.127049 64.012963) - (xy 153.127044 64.012958) - (xy 152.998337 63.91278) - (xy 152.957524 63.856069) - (xy 152.9505 63.814927) - (xy 152.9505 63.71423) - (xy 152.970185 63.647191) - (xy 152.986819 63.626549) - (xy 153.626549 62.986819) - (xy 153.687872 62.953334) - (xy 153.71423 62.9505) - (xy 163.78477 62.9505) - ) - ) - (filled_polygon - (layer "B.Cu") - (pts - (xy 145.931905 89.253753) - (xy 145.953804 89.279025) - (xy 146.039844 89.410719) - (xy 146.039849 89.410724) - (xy 146.03985 89.410727) - (xy 146.19295 89.577036) - (xy 146.192954 89.57704) - (xy 146.371351 89.715893) - (xy 146.429517 89.74737) - (xy 146.479107 89.796588) - (xy 146.4945 89.856425) - (xy 146.4945 91.437255) - (xy 146.492775 91.452872) - (xy 146.493061 91.452899) - (xy 146.492326 91.460666) - (xy 146.494469 91.528846) - (xy 146.4945 91.530793) - (xy 146.4945 91.559343) - (xy 146.494501 91.55936) - (xy 146.495368 91.566231) - (xy 146.495826 91.57205) - (xy 146.49729 91.618624) - (xy 146.497291 91.618627) - (xy 146.50288 91.637867) - (xy 146.506824 91.656911) - (xy 146.509336 91.676792) - (xy 146.52649 91.720119) - (xy 146.528382 91.725647) - (xy 146.536961 91.755176) - (xy 146.541382 91.77039) - (xy 146.546251 91.778624) - (xy 146.55158 91.787634) - (xy 146.560138 91.805103) - (xy 146.567514 91.823732) - (xy 146.594898 91.861423) - (xy 146.598106 91.866307) - (xy 146.621827 91.906416) - (xy 146.621833 91.906424) - (xy 146.63599 91.92058) - (xy 146.648627 91.935375) - (xy 146.660406 91.951587) - (xy 146.688103 91.9745) - (xy 146.696309 91.981288) - (xy 146.70062 91.98521) - (xy 146.826996 92.111586) - (xy 146.928229 92.212819) - (xy 146.961714 92.274142) - (xy 146.95673 92.343834) - (xy 146.914858 92.399767) - (xy 146.849394 92.424184) - (xy 146.840548 92.4245) - (xy 146.260452 92.4245) - (xy 146.193413 92.404815) - (xy 146.172771 92.388181) - (xy 145.241819 91.457228) - (xy 145.208334 91.395905) - (xy 145.2055 91.369547) - (xy 145.2055 89.856425) - (xy 145.225185 89.789386) - (xy 145.270481 89.747371) - (xy 145.328649 89.715893) - (xy 145.507046 89.57704) - (xy 145.660156 89.410719) - (xy 145.746193 89.279028) - (xy 145.799338 89.233675) - (xy 145.868569 89.224251) - ) - ) - (filled_polygon - (layer "B.Cu") - (pts - (xy 149.91 82.0836) - (xy 150.571428 82.0836) - (xy 150.571444 82.083599) - (xy 150.630972 82.077198) - (xy 150.630979 82.077196) - (xy 150.765686 82.026954) - (xy 150.765693 82.02695) - (xy 150.880787 81.94079) - (xy 150.88079 81.940787) - (xy 150.96695 81.825693) - (xy 150.966954 81.825686) - (xy 151.010775 81.708197) - (xy 151.052646 81.652263) - (xy 151.11811 81.627846) - (xy 151.186383 81.642698) - (xy 151.218186 81.667547) - (xy 151.27295 81.727036) - (xy 151.272954 81.72704) - (xy 151.272957 81.727042) - (xy 151.27296 81.727045) - (xy 151.401662 81.827218) - (xy 151.442475 81.883928) - (xy 151.4495 81.925071) - (xy 151.4495 87.364927) - (xy 151.429815 87.431966) - (xy 151.401663 87.46278) - (xy 151.272955 87.562958) - (xy 151.218186 87.622453) - (xy 151.158298 87.658443) - (xy 151.08846 87.656342) - (xy 151.030845 87.616817) - (xy 151.010775 87.581802) - (xy 150.966954 87.464313) - (xy 150.96695 87.464306) - (xy 150.88079 87.349212) - (xy 150.880787 87.349209) - (xy 150.765693 87.263049) - (xy 150.765686 87.263045) - (xy 150.630979 87.212803) - (xy 150.630972 87.212801) - (xy 150.571444 87.2064) - (xy 149.91 87.2064) - (xy 149.91 88.125702) - (xy 149.804592 88.077565) - (xy 149.696334 88.062) - (xy 149.623666 88.062) - (xy 149.515408 88.077565) - (xy 149.41 88.125702) - (xy 149.41 87.2064) - (xy 148.748555 87.2064) - (xy 148.689027 87.212801) - (xy 148.68902 87.212803) - (xy 148.554313 87.263045) - (xy 148.554306 87.263049) - (xy 148.439212 87.349209) - (xy 148.439209 87.349212) - (xy 148.353049 87.464306) - (xy 148.353046 87.464312) - (xy 148.309224 87.581803) - (xy 148.267352 87.637736) - (xy 148.201887 87.662153) - (xy 148.133615 87.647301) - (xy 148.101813 87.622452) - (xy 148.047049 87.562963) - (xy 148.047048 87.562962) - (xy 148.047046 87.56296) - (xy 147.868649 87.424107) - (xy 147.868647 87.424106) - (xy 147.868646 87.424105) - (xy 147.868643 87.424103) - (xy 147.810481 87.392627) - (xy 147.760891 87.343407) - (xy 147.7455 87.283573) - (xy 147.7455 82.006425) - (xy 147.765185 81.939386) - (xy 147.810481 81.897371) - (xy 147.868649 81.865893) - (xy 148.047046 81.72704) - (xy 148.101815 81.667545) - (xy 148.161699 81.631557) - (xy 148.231537 81.633657) - (xy 148.289153 81.67318) - (xy 148.309224 81.708196) - (xy 148.353046 81.825688) - (xy 148.353049 81.825693) - (xy 148.439209 81.940787) - (xy 148.439212 81.94079) - (xy 148.554306 82.02695) - (xy 148.554313 82.026954) - (xy 148.68902 82.077196) - (xy 148.689027 82.077198) - (xy 148.748555 82.083599) - (xy 148.748572 82.0836) - (xy 149.41 82.0836) - (xy 149.41 81.164297) - (xy 149.515408 81.212435) - (xy 149.623666 81.228) - (xy 149.696334 81.228) - (xy 149.804592 81.212435) - (xy 149.91 81.164297) - ) - ) - (filled_polygon - (layer "B.Cu") - (pts - (xy 162.92 82.0836) - (xy 163.581428 82.0836) - (xy 163.581444 82.083599) - (xy 163.640972 82.077198) - (xy 163.640979 82.077196) - (xy 163.775686 82.026954) - (xy 163.775693 82.02695) - (xy 163.890787 81.94079) - (xy 163.89079 81.940787) - (xy 163.97695 81.825693) - (xy 163.976954 81.825686) - (xy 164.020775 81.708197) - (xy 164.062646 81.652263) - (xy 164.12811 81.627846) - (xy 164.196383 81.642698) - (xy 164.228186 81.667547) - (xy 164.28295 81.727036) - (xy 164.282954 81.72704) - (xy 164.282957 81.727042) - (xy 164.28296 81.727045) - (xy 164.411662 81.827218) - (xy 164.452475 81.883928) - (xy 164.4595 81.925071) - (xy 164.4595 87.364927) - (xy 164.439815 87.431966) - (xy 164.411663 87.46278) - (xy 164.282955 87.562958) - (xy 164.228186 87.622453) - (xy 164.168298 87.658443) - (xy 164.09846 87.656342) - (xy 164.040845 87.616817) - (xy 164.020775 87.581802) - (xy 163.976954 87.464313) - (xy 163.97695 87.464306) - (xy 163.89079 87.349212) - (xy 163.890787 87.349209) - (xy 163.775693 87.263049) - (xy 163.775686 87.263045) - (xy 163.640979 87.212803) - (xy 163.640972 87.212801) - (xy 163.581444 87.2064) - (xy 162.92 87.2064) - (xy 162.92 88.125702) - (xy 162.814592 88.077565) - (xy 162.706334 88.062) - (xy 162.633666 88.062) - (xy 162.525408 88.077565) - (xy 162.42 88.125702) - (xy 162.42 87.2064) - (xy 161.758555 87.2064) - (xy 161.699027 87.212801) - (xy 161.69902 87.212803) - (xy 161.564313 87.263045) - (xy 161.564306 87.263049) - (xy 161.449212 87.349209) - (xy 161.449209 87.349212) - (xy 161.363049 87.464306) - (xy 161.363046 87.464312) - (xy 161.319224 87.581803) - (xy 161.277352 87.637736) - (xy 161.211887 87.662153) - (xy 161.143615 87.647301) - (xy 161.111813 87.622452) - (xy 161.057049 87.562963) - (xy 161.057048 87.562962) - (xy 161.057046 87.56296) - (xy 160.878649 87.424107) - (xy 160.878647 87.424106) - (xy 160.878646 87.424105) - (xy 160.878643 87.424103) - (xy 160.820481 87.392627) - (xy 160.770891 87.343407) - (xy 160.7555 87.283573) - (xy 160.7555 82.006425) - (xy 160.775185 81.939386) - (xy 160.820481 81.897371) - (xy 160.878649 81.865893) - (xy 161.057046 81.72704) - (xy 161.111815 81.667545) - (xy 161.171699 81.631557) - (xy 161.241537 81.633657) - (xy 161.299153 81.67318) - (xy 161.319224 81.708196) - (xy 161.363046 81.825688) - (xy 161.363049 81.825693) - (xy 161.449209 81.940787) - (xy 161.449212 81.94079) - (xy 161.564306 82.02695) - (xy 161.564313 82.026954) - (xy 161.69902 82.077196) - (xy 161.699027 82.077198) - (xy 161.758555 82.083599) - (xy 161.758572 82.0836) - (xy 162.42 82.0836) - (xy 162.42 81.164297) - (xy 162.525408 81.212435) - (xy 162.633666 81.228) - (xy 162.706334 81.228) - (xy 162.814592 81.212435) - (xy 162.92 81.164297) - ) - ) - (filled_polygon - (layer "B.Cu") - (pts - (xy 145.931903 81.403753) - (xy 145.953807 81.429031) - (xy 146.039842 81.560716) - (xy 146.03985 81.560727) - (xy 146.19295 81.727036) - (xy 146.192954 81.72704) - (xy 146.371351 81.865893) - (xy 146.429517 81.89737) - (xy 146.479107 81.946588) - (xy 146.4945 82.006425) - (xy 146.4945 87.283573) - (xy 146.474815 87.350612) - (xy 146.429519 87.392627) - (xy 146.371356 87.424103) - (xy 146.371353 87.424105) - (xy 146.192955 87.562959) - (xy 146.19295 87.562963) - (xy 146.03985 87.729272) - (xy 146.039842 87.729283) - (xy 145.953808 87.860968) - (xy 145.900662 87.906325) - (xy 145.83143 87.915748) - (xy 145.768095 87.886246) - (xy 145.746192 87.860968) - (xy 145.660157 87.729283) - (xy 145.660149 87.729272) - (xy 145.507049 87.562963) - (xy 145.507048 87.562962) - (xy 145.507046 87.56296) - (xy 145.328649 87.424107) - (xy 145.328647 87.424106) - (xy 145.328646 87.424105) - (xy 145.328643 87.424103) - (xy 145.270481 87.392627) - (xy 145.220891 87.343407) - (xy 145.2055 87.283573) - (xy 145.2055 82.006425) - (xy 145.225185 81.939386) - (xy 145.270481 81.897371) - (xy 145.328649 81.865893) - (xy 145.507046 81.72704) - (xy 145.62013 81.604199) - (xy 145.660149 81.560727) - (xy 145.660151 81.560724) - (xy 145.660156 81.560719) - (xy 145.746193 81.429029) - (xy 145.799336 81.383675) - (xy 145.868567 81.374251) - ) - ) - (filled_polygon - (layer "B.Cu") - (pts - (xy 158.941905 81.403753) - (xy 158.963804 81.429025) - (xy 159.049844 81.560719) - (xy 159.049849 81.560724) - (xy 159.04985 81.560727) - (xy 159.20295 81.727036) - (xy 159.202954 81.72704) - (xy 159.381351 81.865893) - (xy 159.439517 81.89737) - (xy 159.489107 81.946588) - (xy 159.5045 82.006425) - (xy 159.5045 87.283573) - (xy 159.484815 87.350612) - (xy 159.439519 87.392627) - (xy 159.381356 87.424103) - (xy 159.381353 87.424105) - (xy 159.202955 87.562959) - (xy 159.20295 87.562963) - (xy 159.04985 87.729272) - (xy 159.049842 87.729283) - (xy 158.963808 87.860968) - (xy 158.910662 87.906325) - (xy 158.84143 87.915748) - (xy 158.778095 87.886246) - (xy 158.756192 87.860968) - (xy 158.670157 87.729283) - (xy 158.670149 87.729272) - (xy 158.517049 87.562963) - (xy 158.517048 87.562962) - (xy 158.517046 87.56296) - (xy 158.338649 87.424107) - (xy 158.338647 87.424106) - (xy 158.338646 87.424105) - (xy 158.338643 87.424103) - (xy 158.280481 87.392627) - (xy 158.230891 87.343407) - (xy 158.2155 87.283573) - (xy 158.2155 82.006425) - (xy 158.235185 81.939386) - (xy 158.280481 81.897371) - (xy 158.338649 81.865893) - (xy 158.517046 81.72704) - (xy 158.63013 81.604199) - (xy 158.670149 81.560727) - (xy 158.670149 81.560726) - (xy 158.670156 81.560719) - (xy 158.756193 81.429028) - (xy 158.809338 81.383675) - (xy 158.878569 81.374251) - ) - ) - (filled_polygon - (layer "B.Cu") - (pts - (xy 133.347405 82.713753) - (xy 133.369304 82.739025) - (xy 133.455344 82.870719) - (xy 133.455349 82.870724) - (xy 133.45535 82.870727) - (xy 133.571772 82.997193) - (xy 133.608454 83.03704) - (xy 133.786851 83.175893) - (xy 133.985669 83.283488) - (xy 133.985672 83.283489) - (xy 134.199482 83.35689) - (xy 134.199484 83.35689) - (xy 134.199486 83.356891) - (xy 134.422467 83.3941) - (xy 134.422468 83.3941) - (xy 134.648532 83.3941) - (xy 134.648533 83.3941) - (xy 134.871514 83.356891) - (xy 135.085331 83.283488) - (xy 135.284149 83.175893) - (xy 135.32434 83.14461) - (xy 135.38933 83.118969) - (xy 135.45787 83.132535) - (xy 135.508196 83.181003) - (xy 135.5245 83.242465) - (xy 135.5245 87.60415) - (xy 135.504815 87.671189) - (xy 135.452011 87.716944) - (xy 135.382853 87.726888) - (xy 135.319297 87.697863) - (xy 135.312819 87.691831) - (xy 130.861819 83.240831) - (xy 130.828334 83.179508) - (xy 130.8255 83.15315) - (xy 130.8255 83.090906) - (xy 130.845185 83.023867) - (xy 130.897989 82.978112) - (xy 130.967147 82.968168) - (xy 131.030703 82.997193) - (xy 131.040722 83.006915) - (xy 131.068454 83.03704) - (xy 131.246851 83.175893) - (xy 131.445669 83.283488) - (xy 131.445672 83.283489) - (xy 131.659482 83.35689) - (xy 131.659484 83.35689) - (xy 131.659486 83.356891) - (xy 131.882467 83.3941) - (xy 131.882468 83.3941) - (xy 132.108532 83.3941) - (xy 132.108533 83.3941) - (xy 132.331514 83.356891) - (xy 132.545331 83.283488) - (xy 132.744149 83.175893) - (xy 132.922546 83.03704) - (xy 133.075656 82.870719) - (xy 133.161693 82.739028) - (xy 133.214838 82.693675) - (xy 133.284069 82.684251) - ) - ) - (filled_polygon - (layer "B.Cu") - (pts - (xy 174.826211 81.545185) - (xy 174.871966 81.597989) - (xy 174.874588 81.60417) - (xy 174.886162 81.633657) - (xy 174.888609 81.639892) - (xy 174.904576 81.667547) - (xy 175.016041 81.860612) - (xy 175.17495 82.059877) - (xy 175.361783 82.233232) - (xy 175.572366 82.376805) - (xy 175.572371 82.376807) - (xy 175.572372 82.376808) - (xy 175.572373 82.376809) - (xy 175.694328 82.435538) - (xy 175.801992 82.487387) - (xy 175.801993 82.487387) - (xy 175.801996 82.487389) - (xy 175.90836 82.520197) - (xy 175.945029 82.531509) - (xy 176.003288 82.57008) - (xy 176.031446 82.634024) - (xy 176.020562 82.703041) - (xy 175.974093 82.755218) - (xy 175.945029 82.768491) - (xy 175.801992 82.812612) - (xy 175.572373 82.92319) - (xy 175.572372 82.923191) - (xy 175.361782 83.066768) - (xy 175.174952 83.240121) - (xy 175.17495 83.240123) - (xy 175.016041 83.439388) - (xy 174.888608 83.660109) - (xy 174.795492 83.897362) - (xy 174.79549 83.897369) - (xy 174.738777 84.145845) - (xy 174.719732 84.399995) - (xy 174.719732 84.400004) - (xy 174.738777 84.654154) - (xy 174.79549 84.90263) - (xy 174.795493 84.902642) - (xy 174.841164 85.019008) - (xy 174.847333 85.088605) - (xy 174.814895 85.150488) - (xy 174.813417 85.151991) - (xy 172.687181 87.278227) - (xy 172.625858 87.311712) - (xy 172.556166 87.306728) - (xy 172.500233 87.264856) - (xy 172.475816 87.199392) - (xy 172.4755 87.190546) - (xy 172.4755 82.946848) - (xy 172.495185 82.879809) - (xy 172.511819 82.859167) - (xy 173.809167 81.561819) - (xy 173.87049 81.528334) - (xy 173.896848 81.5255) - (xy 174.759172 81.5255) - ) - ) - (filled_polygon - (layer "B.Cu") - (pts - (xy 174.826211 74.545185) - (xy 174.871966 74.597989) - (xy 174.874588 74.60417) - (xy 174.888607 74.639888) - (xy 175.016041 74.860612) - (xy 175.17495 75.059877) - (xy 175.361783 75.233232) - (xy 175.572366 75.376805) - (xy 175.572371 75.376807) - (xy 175.572372 75.376808) - (xy 175.572373 75.376809) - (xy 175.694328 75.435538) - (xy 175.801992 75.487387) - (xy 175.801993 75.487387) - (xy 175.801996 75.487389) - (xy 175.90836 75.520197) - (xy 175.945029 75.531509) - (xy 176.003288 75.57008) - (xy 176.031446 75.634024) - (xy 176.020562 75.703041) - (xy 175.974093 75.755218) - (xy 175.945029 75.768491) - (xy 175.801992 75.812612) - (xy 175.572373 75.92319) - (xy 175.572372 75.923191) - (xy 175.361782 76.066768) - (xy 175.174952 76.240121) - (xy 175.17495 76.240123) - (xy 175.016041 76.439388) - (xy 174.888608 76.660109) - (xy 174.795492 76.897362) - (xy 174.79549 76.897369) - (xy 174.738777 77.145845) - (xy 174.719732 77.399995) - (xy 174.719732 77.400004) - (xy 174.738777 77.654154) - (xy 174.769949 77.790727) - (xy 174.795492 77.902637) - (xy 174.795494 77.902642) - (xy 174.841164 78.019007) - (xy 174.847333 78.088604) - (xy 174.814895 78.150487) - (xy 174.813417 78.15199) - (xy 171.787181 81.178227) - (xy 171.725858 81.211712) - (xy 171.656166 81.206728) - (xy 171.600233 81.164856) - (xy 171.575816 81.099392) - (xy 171.5755 81.090546) - (xy 171.5755 76.846848) - (xy 171.595185 76.779809) - (xy 171.611819 76.759167) - (xy 173.809168 74.561819) - (xy 173.870491 74.528334) - (xy 173.896849 74.5255) - (xy 174.759172 74.5255) - ) - ) - (filled_polygon - (layer "B.Cu") - (pts - (xy 149.91 74.2336) - (xy 150.571428 74.2336) - (xy 150.571444 74.233599) - (xy 150.630972 74.227198) - (xy 150.630979 74.227196) - (xy 150.765686 74.176954) - (xy 150.765693 74.17695) - (xy 150.880787 74.09079) - (xy 150.88079 74.090787) - (xy 150.96695 73.975693) - (xy 150.966954 73.975686) - (xy 151.010775 73.858197) - (xy 151.052646 73.802263) - (xy 151.11811 73.777846) - (xy 151.186383 73.792698) - (xy 151.218186 73.817547) - (xy 151.27295 73.877036) - (xy 151.272954 73.87704) - (xy 151.272957 73.877042) - (xy 151.27296 73.877045) - (xy 151.401662 73.977218) - (xy 151.442475 74.033928) - (xy 151.4495 74.075071) - (xy 151.4495 79.514927) - (xy 151.429815 79.581966) - (xy 151.401663 79.61278) - (xy 151.272955 79.712958) - (xy 151.218186 79.772453) - (xy 151.158298 79.808443) - (xy 151.08846 79.806342) - (xy 151.030845 79.766817) - (xy 151.010775 79.731802) - (xy 150.966954 79.614313) - (xy 150.96695 79.614306) - (xy 150.88079 79.499212) - (xy 150.880787 79.499209) - (xy 150.765693 79.413049) - (xy 150.765686 79.413045) - (xy 150.630979 79.362803) - (xy 150.630972 79.362801) - (xy 150.571444 79.3564) - (xy 149.91 79.3564) - (xy 149.91 80.275702) - (xy 149.804592 80.227565) - (xy 149.696334 80.212) - (xy 149.623666 80.212) - (xy 149.515408 80.227565) - (xy 149.41 80.275702) - (xy 149.41 79.3564) - (xy 148.748555 79.3564) - (xy 148.689027 79.362801) - (xy 148.68902 79.362803) - (xy 148.554313 79.413045) - (xy 148.554306 79.413049) - (xy 148.439212 79.499209) - (xy 148.439209 79.499212) - (xy 148.353049 79.614306) - (xy 148.353046 79.614312) - (xy 148.309224 79.731803) - (xy 148.267352 79.787736) - (xy 148.201887 79.812153) - (xy 148.133615 79.797301) - (xy 148.101813 79.772452) - (xy 148.047049 79.712963) - (xy 148.047048 79.712962) - (xy 148.047046 79.71296) - (xy 147.868649 79.574107) - (xy 147.868647 79.574106) - (xy 147.868646 79.574105) - (xy 147.868643 79.574103) - (xy 147.810481 79.542627) - (xy 147.760891 79.493407) - (xy 147.7455 79.433573) - (xy 147.7455 74.156425) - (xy 147.765185 74.089386) - (xy 147.810481 74.047371) - (xy 147.868649 74.015893) - (xy 148.047046 73.87704) - (xy 148.101815 73.817545) - (xy 148.161699 73.781557) - (xy 148.231537 73.783657) - (xy 148.289153 73.82318) - (xy 148.309224 73.858196) - (xy 148.353046 73.975688) - (xy 148.353049 73.975693) - (xy 148.439209 74.090787) - (xy 148.439212 74.09079) - (xy 148.554306 74.17695) - (xy 148.554313 74.176954) - (xy 148.68902 74.227196) - (xy 148.689027 74.227198) - (xy 148.748555 74.233599) - (xy 148.748572 74.2336) - (xy 149.41 74.2336) - (xy 149.41 73.314297) - (xy 149.515408 73.362435) - (xy 149.623666 73.378) - (xy 149.696334 73.378) - (xy 149.804592 73.362435) - (xy 149.91 73.314297) - ) - ) - (filled_polygon - (layer "B.Cu") - (pts - (xy 162.92 74.2336) - (xy 163.581428 74.2336) - (xy 163.581444 74.233599) - (xy 163.640972 74.227198) - (xy 163.640979 74.227196) - (xy 163.775686 74.176954) - (xy 163.775693 74.17695) - (xy 163.890787 74.09079) - (xy 163.89079 74.090787) - (xy 163.97695 73.975693) - (xy 163.976954 73.975686) - (xy 164.020775 73.858197) - (xy 164.062646 73.802263) - (xy 164.12811 73.777846) - (xy 164.196383 73.792698) - (xy 164.228186 73.817547) - (xy 164.28295 73.877036) - (xy 164.282954 73.87704) - (xy 164.282957 73.877042) - (xy 164.28296 73.877045) - (xy 164.411662 73.977218) - (xy 164.452475 74.033928) - (xy 164.4595 74.075071) - (xy 164.4595 79.514927) - (xy 164.439815 79.581966) - (xy 164.411663 79.61278) - (xy 164.282955 79.712958) - (xy 164.228186 79.772453) - (xy 164.168298 79.808443) - (xy 164.09846 79.806342) - (xy 164.040845 79.766817) - (xy 164.020775 79.731802) - (xy 163.976954 79.614313) - (xy 163.97695 79.614306) - (xy 163.89079 79.499212) - (xy 163.890787 79.499209) - (xy 163.775693 79.413049) - (xy 163.775686 79.413045) - (xy 163.640979 79.362803) - (xy 163.640972 79.362801) - (xy 163.581444 79.3564) - (xy 162.92 79.3564) - (xy 162.92 80.275702) - (xy 162.814592 80.227565) - (xy 162.706334 80.212) - (xy 162.633666 80.212) - (xy 162.525408 80.227565) - (xy 162.42 80.275702) - (xy 162.42 79.3564) - (xy 161.758555 79.3564) - (xy 161.699027 79.362801) - (xy 161.69902 79.362803) - (xy 161.564313 79.413045) - (xy 161.564306 79.413049) - (xy 161.449212 79.499209) - (xy 161.449209 79.499212) - (xy 161.363049 79.614306) - (xy 161.363046 79.614312) - (xy 161.319224 79.731803) - (xy 161.277352 79.787736) - (xy 161.211887 79.812153) - (xy 161.143615 79.797301) - (xy 161.111813 79.772452) - (xy 161.057049 79.712963) - (xy 161.057048 79.712962) - (xy 161.057046 79.71296) - (xy 160.878649 79.574107) - (xy 160.878647 79.574106) - (xy 160.878646 79.574105) - (xy 160.878643 79.574103) - (xy 160.820481 79.542627) - (xy 160.770891 79.493407) - (xy 160.7555 79.433573) - (xy 160.7555 74.156425) - (xy 160.775185 74.089386) - (xy 160.820481 74.047371) - (xy 160.878649 74.015893) - (xy 161.057046 73.87704) - (xy 161.111815 73.817545) - (xy 161.171699 73.781557) - (xy 161.241537 73.783657) - (xy 161.299153 73.82318) - (xy 161.319224 73.858196) - (xy 161.363046 73.975688) - (xy 161.363049 73.975693) - (xy 161.449209 74.090787) - (xy 161.449212 74.09079) - (xy 161.564306 74.17695) - (xy 161.564313 74.176954) - (xy 161.69902 74.227196) - (xy 161.699027 74.227198) - (xy 161.758555 74.233599) - (xy 161.758572 74.2336) - (xy 162.42 74.2336) - (xy 162.42 73.314297) - (xy 162.525408 73.362435) - (xy 162.633666 73.378) - (xy 162.706334 73.378) - (xy 162.814592 73.362435) - (xy 162.92 73.314297) - ) - ) - (filled_polygon - (layer "B.Cu") - (pts - (xy 145.931905 73.553753) - (xy 145.953804 73.579025) - (xy 146.039844 73.710719) - (xy 146.039849 73.710724) - (xy 146.03985 73.710727) - (xy 146.19295 73.877036) - (xy 146.192954 73.87704) - (xy 146.371351 74.015893) - (xy 146.429517 74.04737) - (xy 146.479107 74.096588) - (xy 146.4945 74.156425) - (xy 146.4945 79.433573) - (xy 146.474815 79.500612) - (xy 146.429519 79.542627) - (xy 146.371356 79.574103) - (xy 146.371353 79.574105) - (xy 146.192955 79.712959) - (xy 146.19295 79.712963) - (xy 146.03985 79.879272) - (xy 146.039842 79.879283) - (xy 145.953808 80.010968) - (xy 145.900662 80.056325) - (xy 145.83143 80.065748) - (xy 145.768095 80.036246) - (xy 145.746192 80.010968) - (xy 145.660157 79.879283) - (xy 145.660149 79.879272) - (xy 145.507049 79.712963) - (xy 145.507048 79.712962) - (xy 145.507046 79.71296) - (xy 145.328649 79.574107) - (xy 145.328647 79.574106) - (xy 145.328646 79.574105) - (xy 145.328643 79.574103) - (xy 145.270481 79.542627) - (xy 145.220891 79.493407) - (xy 145.2055 79.433573) - (xy 145.2055 74.156425) - (xy 145.225185 74.089386) - (xy 145.270481 74.047371) - (xy 145.328649 74.015893) - (xy 145.507046 73.87704) - (xy 145.627378 73.746325) - (xy 145.660149 73.710727) - (xy 145.660149 73.710726) - (xy 145.660156 73.710719) - (xy 145.746193 73.579028) - (xy 145.799338 73.533675) - (xy 145.868569 73.524251) - ) - ) - (filled_polygon - (layer "B.Cu") - (pts - (xy 158.941905 73.553753) - (xy 158.963804 73.579025) - (xy 159.049844 73.710719) - (xy 159.049849 73.710724) - (xy 159.04985 73.710727) - (xy 159.20295 73.877036) - (xy 159.202954 73.87704) - (xy 159.381351 74.015893) - (xy 159.439517 74.04737) - (xy 159.489107 74.096588) - (xy 159.5045 74.156425) - (xy 159.5045 79.433573) - (xy 159.484815 79.500612) - (xy 159.439519 79.542627) - (xy 159.381356 79.574103) - (xy 159.381353 79.574105) - (xy 159.202955 79.712959) - (xy 159.20295 79.712963) - (xy 159.04985 79.879272) - (xy 159.049842 79.879283) - (xy 158.963808 80.010968) - (xy 158.910662 80.056325) - (xy 158.84143 80.065748) - (xy 158.778095 80.036246) - (xy 158.756192 80.010968) - (xy 158.670157 79.879283) - (xy 158.670149 79.879272) - (xy 158.517049 79.712963) - (xy 158.517048 79.712962) - (xy 158.517046 79.71296) - (xy 158.338649 79.574107) - (xy 158.338647 79.574106) - (xy 158.338646 79.574105) - (xy 158.338643 79.574103) - (xy 158.280481 79.542627) - (xy 158.230891 79.493407) - (xy 158.2155 79.433573) - (xy 158.2155 74.156425) - (xy 158.235185 74.089386) - (xy 158.280481 74.047371) - (xy 158.338649 74.015893) - (xy 158.517046 73.87704) - (xy 158.637378 73.746325) - (xy 158.670149 73.710727) - (xy 158.670149 73.710726) - (xy 158.670156 73.710719) - (xy 158.756193 73.579028) - (xy 158.809338 73.533675) - (xy 158.878569 73.524251) - ) - ) - (filled_polygon - (layer "B.Cu") - (pts - (xy 174.826211 67.545185) - (xy 174.871966 67.597989) - (xy 174.874588 67.60417) - (xy 174.888607 67.639888) - (xy 174.888609 67.639892) - (xy 174.924442 67.701957) - (xy 175.016041 67.860612) - (xy 175.17495 68.059877) - (xy 175.361783 68.233232) - (xy 175.572366 68.376805) - (xy 175.572371 68.376807) - (xy 175.572372 68.376808) - (xy 175.572373 68.376809) - (xy 175.694328 68.435538) - (xy 175.801992 68.487387) - (xy 175.801993 68.487387) - (xy 175.801996 68.487389) - (xy 175.89738 68.516811) - (xy 175.945029 68.531509) - (xy 176.003288 68.57008) - (xy 176.031446 68.634024) - (xy 176.020562 68.703041) - (xy 175.974093 68.755218) - (xy 175.945029 68.768491) - (xy 175.801992 68.812612) - (xy 175.572373 68.92319) - (xy 175.572372 68.923191) - (xy 175.361782 69.066768) - (xy 175.174952 69.240121) - (xy 175.17495 69.240123) - (xy 175.016041 69.439388) - (xy 174.888608 69.660109) - (xy 174.795492 69.897362) - (xy 174.79549 69.897369) - (xy 174.738777 70.145845) - (xy 174.719732 70.399995) - (xy 174.719732 70.400004) - (xy 174.738777 70.654154) - (xy 174.794666 70.89902) - (xy 174.795492 70.902637) - (xy 174.795494 70.902642) - (xy 174.841164 71.019007) - (xy 174.847333 71.088604) - (xy 174.814895 71.150487) - (xy 174.813417 71.15199) - (xy 170.887181 75.078226) - (xy 170.825858 75.111711) - (xy 170.756166 75.106727) - (xy 170.700233 75.064855) - (xy 170.675816 74.999391) - (xy 170.6755 74.990545) - (xy 170.6755 70.746848) - (xy 170.695185 70.679809) - (xy 170.711819 70.659167) - (xy 173.809168 67.561819) - (xy 173.870491 67.528334) - (xy 173.896849 67.5255) - (xy 174.759172 67.5255) - ) - ) - (filled_polygon - (layer "B.Cu") - (pts - (xy 149.91 66.3836) - (xy 150.571428 66.3836) - (xy 150.571444 66.383599) - (xy 150.630972 66.377198) - (xy 150.630979 66.377196) - (xy 150.765686 66.326954) - (xy 150.765693 66.32695) - (xy 150.880787 66.24079) - (xy 150.88079 66.240787) - (xy 150.96695 66.125693) - (xy 150.966954 66.125686) - (xy 151.010775 66.008197) - (xy 151.052646 65.952263) - (xy 151.11811 65.927846) - (xy 151.186383 65.942698) - (xy 151.218186 65.967547) - (xy 151.26418 66.017509) - (xy 151.272954 66.02704) - (xy 151.272957 66.027042) - (xy 151.27296 66.027045) - (xy 151.401662 66.127218) - (xy 151.442475 66.183928) - (xy 151.4495 66.225071) - (xy 151.4495 71.664927) - (xy 151.429815 71.731966) - (xy 151.401663 71.76278) - (xy 151.272955 71.862958) - (xy 151.218186 71.922453) - (xy 151.158298 71.958443) - (xy 151.08846 71.956342) - (xy 151.030845 71.916817) - (xy 151.010775 71.881802) - (xy 150.966954 71.764313) - (xy 150.96695 71.764306) - (xy 150.88079 71.649212) - (xy 150.880787 71.649209) - (xy 150.765693 71.563049) - (xy 150.765686 71.563045) - (xy 150.630979 71.512803) - (xy 150.630972 71.512801) - (xy 150.571444 71.5064) - (xy 149.91 71.5064) - (xy 149.91 72.425702) - (xy 149.804592 72.377565) - (xy 149.696334 72.362) - (xy 149.623666 72.362) - (xy 149.515408 72.377565) - (xy 149.41 72.425702) - (xy 149.41 71.5064) - (xy 148.748555 71.5064) - (xy 148.689027 71.512801) - (xy 148.68902 71.512803) - (xy 148.554313 71.563045) - (xy 148.554306 71.563049) - (xy 148.439212 71.649209) - (xy 148.439209 71.649212) - (xy 148.353049 71.764306) - (xy 148.353046 71.764312) - (xy 148.309224 71.881803) - (xy 148.267352 71.937736) - (xy 148.201887 71.962153) - (xy 148.133615 71.947301) - (xy 148.101813 71.922452) - (xy 148.047049 71.862963) - (xy 148.047048 71.862962) - (xy 148.047046 71.86296) - (xy 147.868649 71.724107) - (xy 147.868647 71.724106) - (xy 147.868646 71.724105) - (xy 147.868643 71.724103) - (xy 147.810481 71.692627) - (xy 147.760891 71.643407) - (xy 147.7455 71.583573) - (xy 147.7455 66.306425) - (xy 147.765185 66.239386) - (xy 147.810481 66.197371) - (xy 147.868649 66.165893) - (xy 148.047046 66.02704) - (xy 148.101815 65.967545) - (xy 148.161699 65.931557) - (xy 148.231537 65.933657) - (xy 148.289153 65.97318) - (xy 148.309224 66.008196) - (xy 148.353046 66.125688) - (xy 148.353049 66.125693) - (xy 148.439209 66.240787) - (xy 148.439212 66.24079) - (xy 148.554306 66.32695) - (xy 148.554313 66.326954) - (xy 148.68902 66.377196) - (xy 148.689027 66.377198) - (xy 148.748555 66.383599) - (xy 148.748572 66.3836) - (xy 149.41 66.3836) - (xy 149.41 65.464297) - (xy 149.515408 65.512435) - (xy 149.623666 65.528) - (xy 149.696334 65.528) - (xy 149.804592 65.512435) - (xy 149.91 65.464297) - ) - ) - (filled_polygon - (layer "B.Cu") - (pts - (xy 162.92 66.3836) - (xy 163.581428 66.3836) - (xy 163.581444 66.383599) - (xy 163.640972 66.377198) - (xy 163.640979 66.377196) - (xy 163.775686 66.326954) - (xy 163.775693 66.32695) - (xy 163.890787 66.24079) - (xy 163.89079 66.240787) - (xy 163.97695 66.125693) - (xy 163.976954 66.125686) - (xy 164.020775 66.008197) - (xy 164.062646 65.952263) - (xy 164.12811 65.927846) - (xy 164.196383 65.942698) - (xy 164.228186 65.967547) - (xy 164.27418 66.017509) - (xy 164.282954 66.02704) - (xy 164.282957 66.027042) - (xy 164.28296 66.027045) - (xy 164.411662 66.127218) - (xy 164.452475 66.183928) - (xy 164.4595 66.225071) - (xy 164.4595 71.664927) - (xy 164.439815 71.731966) - (xy 164.411663 71.76278) - (xy 164.282955 71.862958) - (xy 164.228186 71.922453) - (xy 164.168298 71.958443) - (xy 164.09846 71.956342) - (xy 164.040845 71.916817) - (xy 164.020775 71.881802) - (xy 163.976954 71.764313) - (xy 163.97695 71.764306) - (xy 163.89079 71.649212) - (xy 163.890787 71.649209) - (xy 163.775693 71.563049) - (xy 163.775686 71.563045) - (xy 163.640979 71.512803) - (xy 163.640972 71.512801) - (xy 163.581444 71.5064) - (xy 162.92 71.5064) - (xy 162.92 72.425702) - (xy 162.814592 72.377565) - (xy 162.706334 72.362) - (xy 162.633666 72.362) - (xy 162.525408 72.377565) - (xy 162.42 72.425702) - (xy 162.42 71.5064) - (xy 161.758555 71.5064) - (xy 161.699027 71.512801) - (xy 161.69902 71.512803) - (xy 161.564313 71.563045) - (xy 161.564306 71.563049) - (xy 161.449212 71.649209) - (xy 161.449209 71.649212) - (xy 161.363049 71.764306) - (xy 161.363046 71.764312) - (xy 161.319224 71.881803) - (xy 161.277352 71.937736) - (xy 161.211887 71.962153) - (xy 161.143615 71.947301) - (xy 161.111813 71.922452) - (xy 161.057049 71.862963) - (xy 161.057048 71.862962) - (xy 161.057046 71.86296) - (xy 160.878649 71.724107) - (xy 160.878647 71.724106) - (xy 160.878646 71.724105) - (xy 160.878643 71.724103) - (xy 160.820481 71.692627) - (xy 160.770891 71.643407) - (xy 160.7555 71.583573) - (xy 160.7555 66.306425) - (xy 160.775185 66.239386) - (xy 160.820481 66.197371) - (xy 160.878649 66.165893) - (xy 161.057046 66.02704) - (xy 161.111815 65.967545) - (xy 161.171699 65.931557) - (xy 161.241537 65.933657) - (xy 161.299153 65.97318) - (xy 161.319224 66.008196) - (xy 161.363046 66.125688) - (xy 161.363049 66.125693) - (xy 161.449209 66.240787) - (xy 161.449212 66.24079) - (xy 161.564306 66.32695) - (xy 161.564313 66.326954) - (xy 161.69902 66.377196) - (xy 161.699027 66.377198) - (xy 161.758555 66.383599) - (xy 161.758572 66.3836) - (xy 162.42 66.3836) - (xy 162.42 65.464297) - (xy 162.525408 65.512435) - (xy 162.633666 65.528) - (xy 162.706334 65.528) - (xy 162.814592 65.512435) - (xy 162.92 65.464297) - ) - ) - (filled_polygon - (layer "B.Cu") - (pts - (xy 145.931905 65.703753) - (xy 145.953804 65.729025) - (xy 146.039844 65.860719) - (xy 146.039849 65.860724) - (xy 146.03985 65.860727) - (xy 146.18418 66.017509) - (xy 146.192954 66.02704) - (xy 146.371351 66.165893) - (xy 146.429517 66.19737) - (xy 146.479107 66.246588) - (xy 146.4945 66.306425) - (xy 146.4945 71.583573) - (xy 146.474815 71.650612) - (xy 146.429519 71.692627) - (xy 146.371356 71.724103) - (xy 146.371353 71.724105) - (xy 146.192955 71.862959) - (xy 146.19295 71.862963) - (xy 146.03985 72.029272) - (xy 146.039842 72.029283) - (xy 145.953808 72.160968) - (xy 145.900662 72.206325) - (xy 145.83143 72.215748) - (xy 145.768095 72.186246) - (xy 145.746192 72.160968) - (xy 145.682211 72.063039) - (xy 145.660156 72.029281) - (xy 145.660153 72.029278) - (xy 145.660149 72.029272) - (xy 145.507049 71.862963) - (xy 145.507048 71.862962) - (xy 145.507046 71.86296) - (xy 145.328649 71.724107) - (xy 145.328647 71.724106) - (xy 145.328646 71.724105) - (xy 145.328643 71.724103) - (xy 145.270481 71.692627) - (xy 145.220891 71.643407) - (xy 145.2055 71.583573) - (xy 145.2055 66.306425) - (xy 145.225185 66.239386) - (xy 145.270481 66.197371) - (xy 145.328649 66.165893) - (xy 145.507046 66.02704) - (xy 145.606832 65.918643) - (xy 145.660149 65.860727) - (xy 145.660149 65.860726) - (xy 145.660156 65.860719) - (xy 145.746193 65.729028) - (xy 145.799338 65.683675) - (xy 145.868569 65.674251) - ) - ) - (filled_polygon - (layer "B.Cu") - (pts - (xy 158.941905 65.703753) - (xy 158.963804 65.729025) - (xy 159.049844 65.860719) - (xy 159.049849 65.860724) - (xy 159.04985 65.860727) - (xy 159.19418 66.017509) - (xy 159.202954 66.02704) - (xy 159.381351 66.165893) - (xy 159.439517 66.19737) - (xy 159.489107 66.246588) - (xy 159.5045 66.306425) - (xy 159.5045 71.583573) - (xy 159.484815 71.650612) - (xy 159.439519 71.692627) - (xy 159.381356 71.724103) - (xy 159.381353 71.724105) - (xy 159.202955 71.862959) - (xy 159.20295 71.862963) - (xy 159.04985 72.029272) - (xy 159.049842 72.029283) - (xy 158.963808 72.160968) - (xy 158.910662 72.206325) - (xy 158.84143 72.215748) - (xy 158.778095 72.186246) - (xy 158.756192 72.160968) - (xy 158.692211 72.063039) - (xy 158.670156 72.029281) - (xy 158.670153 72.029278) - (xy 158.670149 72.029272) - (xy 158.517049 71.862963) - (xy 158.517048 71.862962) - (xy 158.517046 71.86296) - (xy 158.338649 71.724107) - (xy 158.338647 71.724106) - (xy 158.338646 71.724105) - (xy 158.338643 71.724103) - (xy 158.280481 71.692627) - (xy 158.230891 71.643407) - (xy 158.2155 71.583573) - (xy 158.2155 66.306425) - (xy 158.235185 66.239386) - (xy 158.280481 66.197371) - (xy 158.338649 66.165893) - (xy 158.517046 66.02704) - (xy 158.616832 65.918643) - (xy 158.670149 65.860727) - (xy 158.670149 65.860726) - (xy 158.670156 65.860719) - (xy 158.756193 65.729028) - (xy 158.809338 65.683675) - (xy 158.878569 65.674251) - ) - ) - (filled_polygon - (layer "B.Cu") - (pts - (xy 130.271168 61.019685) - (xy 130.316923 61.072489) - (xy 130.326867 61.141647) - (xy 130.297842 61.205203) - (xy 130.281867 61.220606) - (xy 130.214828 61.274551) - (xy 129.991513 61.504853) - (xy 129.798195 61.760847) - (xy 129.637801 62.03866) - (xy 129.512768 62.334062) - (xy 129.51276 62.334086) - (xy 129.424979 62.642602) - (xy 129.424978 62.642607) - (xy 129.375772 62.959592) - (xy 129.375771 62.959603) - (xy 129.365893 63.280236) - (xy 129.395491 63.599651) - (xy 129.395492 63.599657) - (xy 129.464118 63.913013) - (xy 129.570735 64.215566) - (xy 129.713721 64.502721) - (xy 129.866462 64.733232) - (xy 129.890912 64.77013) - (xy 130.099622 65.013737) - (xy 130.336686 65.229849) - (xy 130.336689 65.229851) - (xy 130.598505 65.415187) - (xy 130.598515 65.415193) - (xy 130.881116 65.566948) - (xy 130.881122 65.56695) - (xy 130.881129 65.566954) - (xy 131.04259 65.629504) - (xy 131.180244 65.682832) - (xy 131.180247 65.682832) - (xy 131.180253 65.682835) - (xy 131.491351 65.761079) - (xy 131.610734 65.775861) - (xy 131.809702 65.8005) - (xy 131.809707 65.8005) - (xy 132.050212 65.8005) - (xy 132.050226 65.8005) - (xy 132.290278 65.785694) - (xy 132.605603 65.72675) - (xy 132.911294 65.629502) - (xy 133.202718 65.495426) - (xy 133.475456 65.326554) - (xy 133.725375 65.125445) - (xy 133.948685 64.895148) - (xy 134.142003 64.639155) - (xy 134.302396 64.361345) - (xy 134.427434 64.065931) - (xy 134.515222 63.75739) - (xy 134.564428 63.4404) - (xy 134.574306 63.119765) - (xy 134.544708 62.800347) - (xy 134.544707 62.800345) - (xy 134.544707 62.80034) - (xy 134.476081 62.486986) - (xy 134.447074 62.404671) - (xy 134.369466 62.184436) - (xy 134.226479 61.897279) - (xy 134.049288 61.62987) - (xy 133.840578 61.386263) - (xy 133.65341 61.215637) - (xy 133.617128 61.155926) - (xy 133.618889 61.086078) - (xy 133.658132 61.028271) - (xy 133.722399 61.000856) - (xy 133.736948 61) - (xy 178.876 61) - (xy 178.943039 61.019685) - (xy 178.988794 61.072489) - (xy 179 61.124) - (xy 179 158.876) - (xy 178.980315 158.943039) - (xy 178.927511 158.988794) - (xy 178.876 159) - (xy 81.124 159) - (xy 81.056961 158.980315) - (xy 81.011206 158.927511) - (xy 81 158.876) - (xy 81 156.400004) - (xy 82.395233 156.400004) - (xy 82.414273 156.654079) - (xy 82.470968 156.902477) - (xy 82.470973 156.902494) - (xy 82.564058 157.139671) - (xy 82.564057 157.139671) - (xy 82.691457 157.360332) - (xy 82.733452 157.412993) - (xy 82.733453 157.412993) - (xy 83.537226 156.609219) - (xy 83.575901 156.702588) - (xy 83.672075 156.827925) - (xy 83.797412 156.924099) - (xy 83.890779 156.962772) - (xy 83.086813 157.766737) - (xy 83.247623 157.876375) - (xy 83.247624 157.876376) - (xy 83.477176 157.986921) - (xy 83.477174 157.986921) - (xy 83.720652 158.062024) - (xy 83.720658 158.062026) - (xy 83.972595 158.099999) - (xy 83.972604 158.1) - (xy 84.227396 158.1) - (xy 84.227404 158.099999) - (xy 84.479341 158.062026) - (xy 84.479347 158.062024) - (xy 84.722824 157.986921) - (xy 84.952381 157.876373) - (xy 85.113185 157.766737) - (xy 84.30922 156.962772) - (xy 84.402588 156.924099) - (xy 84.527925 156.827925) - (xy 84.624099 156.702589) - (xy 84.662773 156.60922) - (xy 85.466545 157.412993) - (xy 85.508545 157.360327) - (xy 85.635941 157.139671) - (xy 85.729026 156.902494) - (xy 85.729032 156.902475) - (xy 85.729108 156.902145) - (xy 85.729167 156.902038) - (xy 85.7304 156.898044) - (xy 85.731254 156.898307) - (xy 85.763214 156.841165) - (xy 85.824874 156.808304) - (xy 85.894511 156.813996) - (xy 85.950017 156.856433) - (xy 85.96909 156.898201) - (xy 85.9696 156.898044) - (xy 85.970809 156.901965) - (xy 85.970892 156.902145) - (xy 85.970967 156.902475) - (xy 85.970973 156.902494) - (xy 86.064058 157.139671) - (xy 86.064057 157.139671) - (xy 86.191457 157.360332) - (xy 86.233452 157.412993) - (xy 86.233453 157.412993) - (xy 87.037226 156.609219) - (xy 87.075901 156.702588) - (xy 87.172075 156.827925) - (xy 87.297412 156.924099) - (xy 87.390779 156.962772) - (xy 86.586813 157.766737) - (xy 86.747623 157.876375) - (xy 86.747624 157.876376) - (xy 86.977176 157.986921) - (xy 86.977174 157.986921) - (xy 87.220652 158.062024) - (xy 87.220658 158.062026) - (xy 87.472595 158.099999) - (xy 87.472604 158.1) - (xy 87.727396 158.1) - (xy 87.727404 158.099999) - (xy 87.979341 158.062026) - (xy 87.979347 158.062024) - (xy 88.222824 157.986921) - (xy 88.452381 157.876373) - (xy 88.613185 157.766737) - (xy 87.80922 156.962772) - (xy 87.902588 156.924099) - (xy 88.027925 156.827925) - (xy 88.124099 156.702589) - (xy 88.162773 156.60922) - (xy 88.966545 157.412993) - (xy 89.008545 157.360327) - (xy 89.135941 157.139671) - (xy 89.229026 156.902494) - (xy 89.229031 156.902477) - (xy 89.285726 156.654079) - (xy 89.304767 156.400004) - (xy 89.304767 156.399995) - (xy 89.285726 156.14592) - (xy 89.229031 155.897522) - (xy 89.229026 155.897505) - (xy 89.135941 155.660328) - (xy 89.135942 155.660328) - (xy 89.008544 155.439671) - (xy 88.966546 155.387006) - (xy 88.162772 156.190779) - (xy 88.124099 156.097412) - (xy 88.027925 155.972075) - (xy 87.902588 155.875901) - (xy 87.809219 155.837226) - (xy 88.613185 155.033261) - (xy 88.452377 154.923624) - (xy 88.452376 154.923623) - (xy 88.222823 154.813078) - (xy 88.222825 154.813078) - (xy 87.979347 154.737975) - (xy 87.979341 154.737973) - (xy 87.727404 154.7) - (xy 87.472595 154.7) - (xy 87.220658 154.737973) - (xy 87.220652 154.737975) - (xy 86.977175 154.813078) - (xy 86.747624 154.923623) - (xy 86.747616 154.923628) - (xy 86.586813 155.033261) - (xy 87.390778 155.837227) - (xy 87.297412 155.875901) - (xy 87.172075 155.972075) - (xy 87.075901 156.097411) - (xy 87.037226 156.190779) - (xy 86.233453 155.387006) - (xy 86.191455 155.43967) - (xy 86.064058 155.660328) - (xy 85.970973 155.897505) - (xy 85.970968 155.897522) - (xy 85.970891 155.89786) - (xy 85.97083 155.897968) - (xy 85.9696 155.901956) - (xy 85.968747 155.901692) - (xy 85.936782 155.958838) - (xy 85.875121 155.991696) - (xy 85.805484 155.986001) - (xy 85.74998 155.943561) - (xy 85.730907 155.901799) - (xy 85.7304 155.901956) - (xy 85.729192 155.898043) - (xy 85.729109 155.89786) - (xy 85.729031 155.897522) - (xy 85.729026 155.897505) - (xy 85.635941 155.660328) - (xy 85.635942 155.660328) - (xy 85.508544 155.439671) - (xy 85.466546 155.387006) - (xy 84.662772 156.190779) - (xy 84.624099 156.097412) - (xy 84.527925 155.972075) - (xy 84.402588 155.875901) - (xy 84.30922 155.837227) - (xy 85.113185 155.033261) - (xy 84.952377 154.923624) - (xy 84.952376 154.923623) - (xy 84.722823 154.813078) - (xy 84.722825 154.813078) - (xy 84.479347 154.737975) - (xy 84.479341 154.737973) - (xy 84.227404 154.7) - (xy 83.972595 154.7) - (xy 83.720658 154.737973) - (xy 83.720652 154.737975) - (xy 83.477175 154.813078) - (xy 83.247624 154.923623) - (xy 83.247616 154.923628) - (xy 83.086813 155.033261) - (xy 83.890779 155.837227) - (xy 83.797412 155.875901) - (xy 83.672075 155.972075) - (xy 83.575901 156.097411) - (xy 83.537226 156.190779) - (xy 82.733453 155.387006) - (xy 82.691455 155.43967) - (xy 82.564058 155.660328) - (xy 82.470973 155.897505) - (xy 82.470968 155.897522) - (xy 82.414273 156.14592) - (xy 82.395233 156.399995) - (xy 82.395233 156.400004) - (xy 81 156.400004) - (xy 81 145.427763) - (xy 81.935787 145.427763) - (xy 81.965413 145.697013) - (xy 81.965415 145.697024) - (xy 82.033926 145.959082) - (xy 82.033928 145.959088) - (xy 82.13987 146.20839) - (xy 82.236693 146.36704) - (xy 82.280979 146.439605) - (xy 82.280986 146.439615) - (xy 82.454253 146.647819) - (xy 82.454259 146.647824) - (xy 82.606437 146.784175) - (xy 82.655998 146.828582) - (xy 82.88191 146.978044) - (xy 83.127176 147.09302) - (xy 83.127183 147.093022) - (xy 83.127185 147.093023) - (xy 83.386557 147.171057) - (xy 83.386564 147.171058) - (xy 83.386569 147.17106) - (xy 83.654561 147.2105) - (xy 83.654566 147.2105) - (xy 83.857629 147.2105) - (xy 83.857631 147.2105) - (xy 83.857636 147.210499) - (xy 83.857648 147.210499) - (xy 83.901516 147.207288) - (xy 84.060156 147.195677) - (xy 84.209043 147.162511) - (xy 84.324546 147.136782) - (xy 84.324548 147.136781) - (xy 84.324553 147.13678) - (xy 84.577558 147.040014) - (xy 84.813777 146.907441) - (xy 85.028177 146.741888) - (xy 85.216186 146.546881) - (xy 85.373799 146.326579) - (xy 85.447787 146.182669) - (xy 85.497649 146.08569) - (xy 85.497651 146.085684) - (xy 85.497656 146.085675) - (xy 85.585118 145.829305) - (xy 85.634319 145.562933) - (xy 85.644212 145.292235) - (xy 85.614586 145.022982) - (xy 85.546072 144.760912) - (xy 85.44013 144.51161) - (xy 85.299018 144.28039) - (xy 85.26972 144.245185) - (xy 85.125746 144.07218) - (xy 85.12574 144.072175) - (xy 84.924002 143.891418) - (xy 84.698092 143.741957) - (xy 84.694963 143.74049) - (xy 84.452824 143.62698) - (xy 84.452819 143.626978) - (xy 84.452814 143.626976) - (xy 84.193442 143.548942) - (xy 84.193428 143.548939) - (xy 84.077791 143.531921) - (xy 83.925439 143.5095) - (xy 83.722369 143.5095) - (xy 83.722351 143.5095) - (xy 83.519844 143.524323) - (xy 83.519831 143.524325) - (xy 83.255453 143.583217) - (xy 83.255446 143.58322) - (xy 83.002439 143.679987) - (xy 82.766226 143.812557) - (xy 82.766224 143.812558) - (xy 82.766223 143.812559) - (xy 82.73394 143.837487) - (xy 82.551822 143.978112) - (xy 82.363822 144.173109) - (xy 82.363816 144.173116) - (xy 82.206202 144.393419) - (xy 82.206199 144.393424) - (xy 82.08235 144.634309) - (xy 82.082343 144.634327) - (xy 81.994884 144.890685) - (xy 81.994881 144.890699) - (xy 81.945681 145.157068) - (xy 81.94568 145.157075) - (xy 81.935787 145.427763) - (xy 81 145.427763) - (xy 81 133.805506) - (xy 84.141225 133.805506) - (xy 84.159892 134.030789) - (xy 84.215388 134.249939) - (xy 84.306198 134.456966) - (xy 84.429842 134.646216) - (xy 84.42985 134.646227) - (xy 84.58295 134.812536) - (xy 84.582954 134.81254) - (xy 84.761351 134.951393) - (xy 84.960169 135.058988) - (xy 84.960172 135.058989) - (xy 85.173982 135.13239) - (xy 85.173984 135.13239) - (xy 85.173986 135.132391) - (xy 85.396967 135.1696) - (xy 85.396968 135.1696) - (xy 85.623032 135.1696) - (xy 85.623033 135.1696) - (xy 85.846014 135.132391) - (xy 85.848508 135.131535) - (xy 85.932443 135.10272) - (xy 86.059831 135.058988) - (xy 86.258649 134.951393) - (xy 86.437046 134.81254) - (xy 86.590156 134.646219) - (xy 86.612396 134.612177) - (xy 86.665542 134.566822) - (xy 86.716204 134.556) - (xy 88.49327 134.556) - (xy 88.560309 134.575685) - (xy 88.580951 134.592319) - (xy 93.273236 139.284604) - (xy 97.772852 143.784219) - (xy 97.806337 143.845542) - (xy 97.801353 143.915234) - (xy 97.759481 143.971167) - (xy 97.694017 143.995584) - (xy 97.685171 143.9959) - (xy 97.646967 143.9959) - (xy 97.617771 144.000772) - (xy 97.423982 144.033109) - (xy 97.210172 144.10651) - (xy 97.210167 144.106512) - (xy 97.011352 144.214106) - (xy 96.832955 144.352959) - (xy 96.83295 144.352963) - (xy 96.67985 144.519272) - (xy 96.679842 144.519283) - (xy 96.556198 144.708533) - (xy 96.465388 144.91556) - (xy 96.409892 145.13471) - (xy 96.391225 145.359993) - (xy 96.391225 145.360006) - (xy 96.409892 145.585289) - (xy 96.465388 145.804439) - (xy 96.556198 146.011466) - (xy 96.679842 146.200716) - (xy 96.67985 146.200727) - (xy 96.818824 146.351691) - (xy 96.832954 146.36704) - (xy 97.011351 146.505893) - (xy 97.210169 146.613488) - (xy 97.210172 146.613489) - (xy 97.423982 146.68689) - (xy 97.423984 146.68689) - (xy 97.423986 146.686891) - (xy 97.646967 146.7241) - (xy 97.646968 146.7241) - (xy 97.873032 146.7241) - (xy 97.873033 146.7241) - (xy 98.096014 146.686891) - (xy 98.309831 146.613488) - (xy 98.508649 146.505893) - (xy 98.687046 146.36704) - (xy 98.804098 146.239888) - (xy 98.840149 146.200727) - (xy 98.840149 146.200726) - (xy 98.840156 146.200719) - (xy 98.926193 146.069028) - (xy 98.979338 146.023675) - (xy 99.048569 146.014251) - (xy 99.111905 146.043753) - (xy 99.133804 146.069025) - (xy 99.219844 146.200719) - (xy 99.219849 146.200724) - (xy 99.21985 146.200727) - (xy 99.358824 146.351691) - (xy 99.372954 146.36704) - (xy 99.551351 146.505893) - (xy 99.750169 146.613488) - (xy 99.750172 146.613489) - (xy 99.963982 146.68689) - (xy 99.963984 146.68689) - (xy 99.963986 146.686891) - (xy 100.186967 146.7241) - (xy 100.186968 146.7241) - (xy 100.413032 146.7241) - (xy 100.413033 146.7241) - (xy 100.636014 146.686891) - (xy 100.849831 146.613488) - (xy 101.048649 146.505893) - (xy 101.227046 146.36704) - (xy 101.344098 146.239888) - (xy 101.380149 146.200727) - (xy 101.380149 146.200726) - (xy 101.380156 146.200719) - (xy 101.466193 146.069028) - (xy 101.519338 146.023675) - (xy 101.588569 146.014251) - (xy 101.651905 146.043753) - (xy 101.673804 146.069025) - (xy 101.759844 146.200719) - (xy 101.759849 146.200724) - (xy 101.75985 146.200727) - (xy 101.898824 146.351691) - (xy 101.912954 146.36704) - (xy 102.091351 146.505893) - (xy 102.290169 146.613488) - (xy 102.290172 146.613489) - (xy 102.503982 146.68689) - (xy 102.503984 146.68689) - (xy 102.503986 146.686891) - (xy 102.726967 146.7241) - (xy 102.726968 146.7241) - (xy 102.953032 146.7241) - (xy 102.953033 146.7241) - (xy 103.176014 146.686891) - (xy 103.389831 146.613488) - (xy 103.588649 146.505893) - (xy 103.767046 146.36704) - (xy 103.884098 146.239888) - (xy 103.920149 146.200727) - (xy 103.920149 146.200726) - (xy 103.920156 146.200719) - (xy 104.006193 146.069028) - (xy 104.059338 146.023675) - (xy 104.128569 146.014251) - (xy 104.191905 146.043753) - (xy 104.213804 146.069025) - (xy 104.299844 146.200719) - (xy 104.299849 146.200724) - (xy 104.29985 146.200727) - (xy 104.438824 146.351691) - (xy 104.452954 146.36704) - (xy 104.631351 146.505893) - (xy 104.830169 146.613488) - (xy 104.830172 146.613489) - (xy 105.043982 146.68689) - (xy 105.043984 146.68689) - (xy 105.043986 146.686891) - (xy 105.266967 146.7241) - (xy 105.266968 146.7241) - (xy 105.493032 146.7241) - (xy 105.493033 146.7241) - (xy 105.716014 146.686891) - (xy 105.929831 146.613488) - (xy 106.128649 146.505893) - (xy 106.307046 146.36704) - (xy 106.424098 146.239888) - (xy 106.460149 146.200727) - (xy 106.460151 146.200724) - (xy 106.460156 146.200719) - (xy 106.546193 146.069029) - (xy 106.599336 146.023675) - (xy 106.668567 146.014251) - (xy 106.731903 146.043753) - (xy 106.753807 146.069031) - (xy 106.839842 146.200716) - (xy 106.83985 146.200727) - (xy 106.978824 146.351691) - (xy 106.992954 146.36704) - (xy 107.171351 146.505893) - (xy 107.370169 146.613488) - (xy 107.370172 146.613489) - (xy 107.583982 146.68689) - (xy 107.583984 146.68689) - (xy 107.583986 146.686891) - (xy 107.806967 146.7241) - (xy 107.806968 146.7241) - (xy 108.033032 146.7241) - (xy 108.033033 146.7241) - (xy 108.256014 146.686891) - (xy 108.469831 146.613488) - (xy 108.668649 146.505893) - (xy 108.847046 146.36704) - (xy 108.901815 146.307545) - (xy 108.961699 146.271557) - (xy 109.031537 146.273657) - (xy 109.089153 146.31318) - (xy 109.109224 146.348196) - (xy 109.153046 146.465688) - (xy 109.153049 146.465693) - (xy 109.239209 146.580787) - (xy 109.239212 146.58079) - (xy 109.354306 146.66695) - (xy 109.354313 146.666954) - (xy 109.48902 146.717196) - (xy 109.489027 146.717198) - (xy 109.548555 146.723599) - (xy 109.548572 146.7236) - (xy 110.21 146.7236) - (xy 110.209999 145.804297) - (xy 110.315408 145.852435) - (xy 110.423666 145.868) - (xy 110.496334 145.868) - (xy 110.604592 145.852435) - (xy 110.71 145.804297) - (xy 110.71 146.7236) - (xy 111.371428 146.7236) - (xy 111.371444 146.723599) - (xy 111.430972 146.717198) - (xy 111.430979 146.717196) - (xy 111.565686 146.666954) - (xy 111.565689 146.666952) - (xy 111.655688 146.599579) - (xy 111.721152 146.575161) - (xy 111.789426 146.590012) - (xy 111.804312 146.599579) - (xy 111.89431 146.666952) - (xy 111.894313 146.666954) - (xy 112.02902 146.717196) - (xy 112.029027 146.717198) - (xy 112.088555 146.723599) - (xy 112.088572 146.7236) - (xy 112.75 146.7236) - (xy 112.75 145.804297) - (xy 112.855408 145.852435) - (xy 112.963666 145.868) - (xy 113.036334 145.868) - (xy 113.144592 145.852435) - (xy 113.249999 145.804297) - (xy 113.25 146.7236) - (xy 113.911428 146.7236) - (xy 113.911444 146.723599) - (xy 113.970972 146.717198) - (xy 113.970979 146.717196) - (xy 114.105686 146.666954) - (xy 114.105693 146.66695) - (xy 114.220787 146.58079) - (xy 114.22079 146.580787) - (xy 114.30695 146.465693) - (xy 114.306954 146.465686) - (xy 114.350775 146.348197) - (xy 114.392646 146.292263) - (xy 114.45811 146.267846) - (xy 114.526383 146.282698) - (xy 114.558186 146.307547) - (xy 114.598824 146.351691) - (xy 114.612954 146.36704) - (xy 114.791351 146.505893) - (xy 114.990169 146.613488) - (xy 114.990172 146.613489) - (xy 115.203982 146.68689) - (xy 115.203984 146.68689) - (xy 115.203986 146.686891) - (xy 115.426967 146.7241) - (xy 115.426968 146.7241) - (xy 115.653032 146.7241) - (xy 115.653033 146.7241) - (xy 115.876014 146.686891) - (xy 116.089831 146.613488) - (xy 116.288649 146.505893) - (xy 116.467046 146.36704) - (xy 116.584098 146.239888) - (xy 116.620149 146.200727) - (xy 116.620151 146.200724) - (xy 116.620156 146.200719) - (xy 116.743802 146.011465) - (xy 116.834611 145.804441) - (xy 116.890107 145.585293) - (xy 116.908775 145.36) - (xy 116.890107 145.134707) - (xy 116.834611 144.915559) - (xy 116.743802 144.708535) - (xy 116.737037 144.698181) - (xy 116.681978 144.613908) - (xy 116.620156 144.519281) - (xy 116.620153 144.519278) - (xy 116.620149 144.519272) - (xy 116.467049 144.352963) - (xy 116.467048 144.352962) - (xy 116.467046 144.35296) - (xy 116.288649 144.214107) - (xy 116.21291 144.173119) - (xy 116.089832 144.106512) - (xy 116.089827 144.10651) - (xy 115.876017 144.033109) - (xy 115.708778 144.005202) - (xy 115.653033 143.9959) - (xy 115.426967 143.9959) - (xy 115.397771 144.000772) - (xy 115.203982 144.033109) - (xy 114.990172 144.10651) - (xy 114.990167 144.106512) - (xy 114.791352 144.214106) - (xy 114.612955 144.352958) - (xy 114.558186 144.412453) - (xy 114.498298 144.448443) - (xy 114.42846 144.446342) - (xy 114.370845 144.406817) - (xy 114.350775 144.371802) - (xy 114.306954 144.254313) - (xy 114.30695 144.254306) - (xy 114.22079 144.139212) - (xy 114.220787 144.139209) - (xy 114.105693 144.053049) - (xy 114.105686 144.053045) - (xy 113.970979 144.002803) - (xy 113.970972 144.002801) - (xy 113.911444 143.9964) - (xy 113.25 143.9964) - (xy 113.249999 144.915702) - (xy 113.144592 144.867565) - (xy 113.036334 144.852) - (xy 112.963666 144.852) - (xy 112.855408 144.867565) - (xy 112.75 144.915702) - (xy 112.75 143.9964) - (xy 112.088555 143.9964) - (xy 112.029027 144.002801) - (xy 112.02902 144.002803) - (xy 111.894313 144.053045) - (xy 111.894307 144.053049) - (xy 111.804309 144.120421) - (xy 111.738845 144.144838) - (xy 111.670572 144.129986) - (xy 111.655688 144.12042) - (xy 111.565693 144.053049) - (xy 111.565686 144.053045) - (xy 111.430979 144.002803) - (xy 111.430972 144.002801) - (xy 111.371444 143.9964) - (xy 110.71 143.9964) - (xy 110.71 144.915702) - (xy 110.604592 144.867565) - (xy 110.496334 144.852) - (xy 110.423666 144.852) - (xy 110.315408 144.867565) - (xy 110.209999 144.915702) - (xy 110.21 143.9964) - (xy 109.548555 143.9964) - (xy 109.489027 144.002801) - (xy 109.48902 144.002803) - (xy 109.354313 144.053045) - (xy 109.354306 144.053049) - (xy 109.239212 144.139209) - (xy 109.239209 144.139212) - (xy 109.153049 144.254306) - (xy 109.153046 144.254312) - (xy 109.109224 144.371803) - (xy 109.067352 144.427736) - (xy 109.001887 144.452153) - (xy 108.933615 144.437301) - (xy 108.901813 144.412452) - (xy 108.847049 144.352963) - (xy 108.847048 144.352962) - (xy 108.847046 144.35296) - (xy 108.668649 144.214107) - (xy 108.59291 144.173119) - (xy 108.469832 144.106512) - (xy 108.469827 144.10651) - (xy 108.256017 144.033109) - (xy 108.088778 144.005202) - (xy 108.033033 143.9959) - (xy 107.806967 143.9959) - (xy 107.707351 144.012522) - (xy 107.637986 144.00414) - (xy 107.599261 143.977894) - (xy 107.423549 143.802181) - (xy 107.390064 143.740858) - (xy 107.395048 143.671166) - (xy 107.43692 143.615233) - (xy 107.502384 143.590816) - (xy 107.51123 143.5905) - (xy 117.914548 143.5905) - (xy 117.981587 143.610185) - (xy 118.002229 143.626819) - (xy 119.268612 144.893203) - (xy 119.302097 144.954526) - (xy 119.301137 145.011323) - (xy 119.269892 145.134708) - (xy 119.251225 145.359993) - (xy 119.251225 145.360006) - (xy 119.269892 145.585289) - (xy 119.325388 145.804439) - (xy 119.416198 146.011466) - (xy 119.539842 146.200716) - (xy 119.53985 146.200727) - (xy 119.678824 146.351691) - (xy 119.692954 146.36704) - (xy 119.754163 146.414681) - (xy 119.794975 146.471389) - (xy 119.802 146.512533) - (xy 119.802 146.68527) - (xy 119.782315 146.752309) - (xy 119.765681 146.772951) - (xy 119.525451 147.013181) - (xy 119.464128 147.046666) - (xy 119.43777 147.0495) - (xy 106.013706 147.0495) - (xy 105.995736 147.048191) - (xy 105.971973 147.04471) - (xy 105.926891 147.048655) - (xy 105.919934 147.049264) - (xy 105.914533 147.0495) - (xy 105.906282 147.0495) - (xy 105.874595 147.053203) - (xy 105.872803 147.053386) - (xy 105.797202 147.060001) - (xy 105.790135 147.061461) - (xy 105.790123 147.061404) - (xy 105.782754 147.063038) - (xy 105.782768 147.063095) - (xy 105.77574 147.06476) - (xy 105.704426 147.090716) - (xy 105.702724 147.091308) - (xy 105.630669 147.115185) - (xy 105.624123 147.118237) - (xy 105.624098 147.118185) - (xy 105.617309 147.121471) - (xy 105.617335 147.121522) - (xy 105.610887 147.12476) - (xy 105.547477 147.166465) - (xy 105.545958 147.167432) - (xy 105.481345 147.207288) - (xy 105.475678 147.211769) - (xy 105.475642 147.211723) - (xy 105.469799 147.216484) - (xy 105.469836 147.216528) - (xy 105.46431 147.221164) - (xy 105.41223 147.276364) - (xy 105.410975 147.277657) - (xy 98.020925 154.667706) - (xy 97.959602 154.701191) - (xy 97.951726 154.70264) - (xy 97.720539 154.737487) - (xy 97.720533 154.737489) - (xy 97.476992 154.812612) - (xy 97.247373 154.92319) - (xy 97.247372 154.923191) - (xy 97.036782 155.066768) - (xy 96.849952 155.240121) - (xy 96.84995 155.240123) - (xy 96.691041 155.439388) - (xy 96.563608 155.660109) - (xy 96.470492 155.897362) - (xy 96.469122 155.901804) - (xy 96.467999 155.901457) - (xy 96.436509 155.95773) - (xy 96.374841 155.990576) - (xy 96.305205 155.984868) - (xy 96.249709 155.942418) - (xy 96.231134 155.901729) - (xy 96.2304 155.901956) - (xy 96.229026 155.897505) - (xy 96.135941 155.660328) - (xy 96.135942 155.660328) - (xy 96.008544 155.439671) - (xy 95.966546 155.387006) - (xy 95.162772 156.190779) - (xy 95.124099 156.097412) - (xy 95.027925 155.972075) - (xy 94.902588 155.875901) - (xy 94.80922 155.837227) - (xy 95.613185 155.033261) - (xy 95.452377 154.923624) - (xy 95.452376 154.923623) - (xy 95.222823 154.813078) - (xy 95.222825 154.813078) - (xy 94.979347 154.737975) - (xy 94.979341 154.737973) - (xy 94.727404 154.7) - (xy 94.472595 154.7) - (xy 94.220658 154.737973) - (xy 94.220652 154.737975) - (xy 93.977175 154.813078) - (xy 93.747624 154.923623) - (xy 93.747616 154.923628) - (xy 93.586813 155.033261) - (xy 94.390779 155.837227) - (xy 94.297412 155.875901) - (xy 94.172075 155.972075) - (xy 94.075901 156.097411) - (xy 94.037226 156.190779) - (xy 93.233453 155.387006) - (xy 93.191455 155.43967) - (xy 93.064058 155.660328) - (xy 92.970973 155.897505) - (xy 92.970968 155.897522) - (xy 92.914273 156.14592) - (xy 92.895233 156.399995) - (xy 92.895233 156.400004) - (xy 92.914273 156.654079) - (xy 92.970968 156.902477) - (xy 92.970973 156.902494) - (xy 93.064058 157.139671) - (xy 93.064057 157.139671) - (xy 93.191457 157.360332) - (xy 93.233452 157.412993) - (xy 93.233453 157.412993) - (xy 94.037226 156.609219) - (xy 94.075901 156.702588) - (xy 94.172075 156.827925) - (xy 94.297412 156.924099) - (xy 94.390779 156.962772) - (xy 93.586813 157.766737) - (xy 93.747623 157.876375) - (xy 93.747624 157.876376) - (xy 93.977176 157.986921) - (xy 93.977174 157.986921) - (xy 94.220652 158.062024) - (xy 94.220658 158.062026) - (xy 94.472595 158.099999) - (xy 94.472604 158.1) - (xy 94.727396 158.1) - (xy 94.727404 158.099999) - (xy 94.979341 158.062026) - (xy 94.979347 158.062024) - (xy 95.222824 157.986921) - (xy 95.452381 157.876373) - (xy 95.613185 157.766737) - (xy 94.80922 156.962772) - (xy 94.902588 156.924099) - (xy 95.027925 156.827925) - (xy 95.124099 156.702589) - (xy 95.162773 156.60922) - (xy 95.966545 157.412993) - (xy 96.008545 157.360327) - (xy 96.135941 157.139671) - (xy 96.229026 156.902494) - (xy 96.2304 156.898044) - (xy 96.231574 156.898406) - (xy 96.262945 156.8423) - (xy 96.324601 156.809432) - (xy 96.394239 156.815115) - (xy 96.44975 156.857545) - (xy 96.46842 156.898412) - (xy 96.469122 156.898196) - (xy 96.47049 156.90263) - (xy 96.470492 156.902637) - (xy 96.563607 157.139888) - (xy 96.691041 157.360612) - (xy 96.84995 157.559877) - (xy 97.036783 157.733232) - (xy 97.247366 157.876805) - (xy 97.247371 157.876807) - (xy 97.247372 157.876808) - (xy 97.247373 157.876809) - (xy 97.369328 157.935538) - (xy 97.476992 157.987387) - (xy 97.476993 157.987387) - (xy 97.476996 157.987389) - (xy 97.720542 158.062513) - (xy 97.972565 158.1005) - (xy 98.227435 158.1005) - (xy 98.479458 158.062513) - (xy 98.723004 157.987389) - (xy 98.952634 157.876805) - (xy 99.163217 157.733232) - (xy 99.35005 157.559877) - (xy 99.508959 157.360612) - (xy 99.636393 157.139888) - (xy 99.729508 156.902637) - (xy 99.72951 156.902624) - (xy 99.730878 156.898196) - (xy 99.732324 156.898642) - (xy 99.763213 156.843412) - (xy 99.824873 156.810552) - (xy 99.89451 156.816243) - (xy 99.950016 156.85868) - (xy 99.968192 156.898482) - (xy 99.969122 156.898196) - (xy 99.97049 156.90263) - (xy 99.970492 156.902637) - (xy 100.063607 157.139888) - (xy 100.191041 157.360612) - (xy 100.34995 157.559877) - (xy 100.536783 157.733232) - (xy 100.747366 157.876805) - (xy 100.747371 157.876807) - (xy 100.747372 157.876808) - (xy 100.747373 157.876809) - (xy 100.869328 157.935538) - (xy 100.976992 157.987387) - (xy 100.976993 157.987387) - (xy 100.976996 157.987389) - (xy 101.220542 158.062513) - (xy 101.472565 158.1005) - (xy 101.727435 158.1005) - (xy 101.979458 158.062513) - (xy 102.223004 157.987389) - (xy 102.452634 157.876805) - (xy 102.663217 157.733232) - (xy 102.85005 157.559877) - (xy 103.008959 157.360612) - (xy 103.136393 157.139888) - (xy 103.229508 156.902637) - (xy 103.22951 156.902624) - (xy 103.230878 156.898196) - (xy 103.232008 156.898544) - (xy 103.263464 156.842295) - (xy 103.325121 156.80943) - (xy 103.394759 156.815117) - (xy 103.450268 156.857551) - (xy 103.468868 156.898269) - (xy 103.4696 156.898044) - (xy 103.470973 156.902494) - (xy 103.564058 157.139671) - (xy 103.564057 157.139671) - (xy 103.691457 157.360332) - (xy 103.733452 157.412993) - (xy 103.733453 157.412993) - (xy 104.537226 156.609219) - (xy 104.575901 156.702588) - (xy 104.672075 156.827925) - (xy 104.797412 156.924099) - (xy 104.890779 156.962772) - (xy 104.086813 157.766737) - (xy 104.247623 157.876375) - (xy 104.247624 157.876376) - (xy 104.477176 157.986921) - (xy 104.477174 157.986921) - (xy 104.720652 158.062024) - (xy 104.720658 158.062026) - (xy 104.972595 158.099999) - (xy 104.972604 158.1) - (xy 105.227396 158.1) - (xy 105.227404 158.099999) - (xy 105.479341 158.062026) - (xy 105.479347 158.062024) - (xy 105.722824 157.986921) - (xy 105.952381 157.876373) - (xy 106.113185 157.766737) - (xy 105.30922 156.962772) - (xy 105.402588 156.924099) - (xy 105.527925 156.827925) - (xy 105.624099 156.702589) - (xy 105.662773 156.60922) - (xy 106.466545 157.412993) - (xy 106.508545 157.360327) - (xy 106.635941 157.139671) - (xy 106.729026 156.902494) - (xy 106.7304 156.898044) - (xy 106.731574 156.898406) - (xy 106.762945 156.8423) - (xy 106.824601 156.809432) - (xy 106.894239 156.815115) - (xy 106.94975 156.857545) - (xy 106.96842 156.898412) - (xy 106.969122 156.898196) - (xy 106.97049 156.90263) - (xy 106.970492 156.902637) - (xy 107.063607 157.139888) - (xy 107.191041 157.360612) - (xy 107.34995 157.559877) - (xy 107.536783 157.733232) - (xy 107.747366 157.876805) - (xy 107.747371 157.876807) - (xy 107.747372 157.876808) - (xy 107.747373 157.876809) - (xy 107.869328 157.935538) - (xy 107.976992 157.987387) - (xy 107.976993 157.987387) - (xy 107.976996 157.987389) - (xy 108.220542 158.062513) - (xy 108.472565 158.1005) - (xy 108.727435 158.1005) - (xy 108.979458 158.062513) - (xy 109.223004 157.987389) - (xy 109.452634 157.876805) - (xy 109.663217 157.733232) - (xy 109.85005 157.559877) - (xy 110.008959 157.360612) - (xy 110.136393 157.139888) - (xy 110.229508 156.902637) - (xy 110.22951 156.902624) - (xy 110.230878 156.898196) - (xy 110.232324 156.898642) - (xy 110.263213 156.843412) - (xy 110.324873 156.810552) - (xy 110.39451 156.816243) - (xy 110.450016 156.85868) - (xy 110.468192 156.898482) - (xy 110.469122 156.898196) - (xy 110.47049 156.90263) - (xy 110.470492 156.902637) - (xy 110.563607 157.139888) - (xy 110.691041 157.360612) - (xy 110.84995 157.559877) - (xy 111.036783 157.733232) - (xy 111.247366 157.876805) - (xy 111.247371 157.876807) - (xy 111.247372 157.876808) - (xy 111.247373 157.876809) - (xy 111.369328 157.935538) - (xy 111.476992 157.987387) - (xy 111.476993 157.987387) - (xy 111.476996 157.987389) - (xy 111.720542 158.062513) - (xy 111.972565 158.1005) - (xy 112.227435 158.1005) - (xy 112.479458 158.062513) - (xy 112.723004 157.987389) - (xy 112.952634 157.876805) - (xy 113.163217 157.733232) - (xy 113.35005 157.559877) - (xy 113.508959 157.360612) - (xy 113.636393 157.139888) - (xy 113.729508 156.902637) - (xy 113.72951 156.902624) - (xy 113.730878 156.898196) - (xy 113.732008 156.898544) - (xy 113.763464 156.842295) - (xy 113.825121 156.80943) - (xy 113.894759 156.815117) - (xy 113.950268 156.857551) - (xy 113.968868 156.898269) - (xy 113.9696 156.898044) - (xy 113.970973 156.902494) - (xy 114.064058 157.139671) - (xy 114.064057 157.139671) - (xy 114.191457 157.360332) - (xy 114.233452 157.412993) - (xy 114.233453 157.412993) - (xy 115.037226 156.609219) - (xy 115.075901 156.702588) - (xy 115.172075 156.827925) - (xy 115.297412 156.924099) - (xy 115.390779 156.962772) - (xy 114.586813 157.766737) - (xy 114.747623 157.876375) - (xy 114.747624 157.876376) - (xy 114.977176 157.986921) - (xy 114.977174 157.986921) - (xy 115.220652 158.062024) - (xy 115.220658 158.062026) - (xy 115.472595 158.099999) - (xy 115.472604 158.1) - (xy 115.727396 158.1) - (xy 115.727404 158.099999) - (xy 115.979341 158.062026) - (xy 115.979347 158.062024) - (xy 116.222824 157.986921) - (xy 116.452381 157.876373) - (xy 116.613185 157.766737) - (xy 115.80922 156.962772) - (xy 115.902588 156.924099) - (xy 116.027925 156.827925) - (xy 116.124099 156.702589) - (xy 116.162772 156.60922) - (xy 116.966545 157.412993) - (xy 117.008545 157.360327) - (xy 117.135941 157.139671) - (xy 117.229026 156.902494) - (xy 117.2304 156.898044) - (xy 117.231574 156.898406) - (xy 117.262945 156.8423) - (xy 117.324601 156.809432) - (xy 117.394239 156.815115) - (xy 117.44975 156.857545) - (xy 117.46842 156.898412) - (xy 117.469122 156.898196) - (xy 117.47049 156.90263) - (xy 117.470492 156.902637) - (xy 117.563607 157.139888) - (xy 117.691041 157.360612) - (xy 117.84995 157.559877) - (xy 118.036783 157.733232) - (xy 118.247366 157.876805) - (xy 118.247371 157.876807) - (xy 118.247372 157.876808) - (xy 118.247373 157.876809) - (xy 118.369328 157.935538) - (xy 118.476992 157.987387) - (xy 118.476993 157.987387) - (xy 118.476996 157.987389) - (xy 118.720542 158.062513) - (xy 118.972565 158.1005) - (xy 119.227435 158.1005) - (xy 119.479458 158.062513) - (xy 119.723004 157.987389) - (xy 119.952634 157.876805) - (xy 120.163217 157.733232) - (xy 120.35005 157.559877) - (xy 120.508959 157.360612) - (xy 120.636393 157.139888) - (xy 120.729508 156.902637) - (xy 120.72951 156.902624) - (xy 120.730878 156.898196) - (xy 120.732324 156.898642) - (xy 120.763213 156.843412) - (xy 120.824873 156.810552) - (xy 120.89451 156.816243) - (xy 120.950016 156.85868) - (xy 120.968192 156.898482) - (xy 120.969122 156.898196) - (xy 120.97049 156.90263) - (xy 120.970492 156.902637) - (xy 121.063607 157.139888) - (xy 121.191041 157.360612) - (xy 121.34995 157.559877) - (xy 121.536783 157.733232) - (xy 121.747366 157.876805) - (xy 121.747371 157.876807) - (xy 121.747372 157.876808) - (xy 121.747373 157.876809) - (xy 121.869328 157.935538) - (xy 121.976992 157.987387) - (xy 121.976993 157.987387) - (xy 121.976996 157.987389) - (xy 122.220542 158.062513) - (xy 122.472565 158.1005) - (xy 122.727435 158.1005) - (xy 122.979458 158.062513) - (xy 123.223004 157.987389) - (xy 123.452634 157.876805) - (xy 123.663217 157.733232) - (xy 123.85005 157.559877) - (xy 124.008959 157.360612) - (xy 124.136393 157.139888) - (xy 124.229508 156.902637) - (xy 124.22951 156.902624) - (xy 124.230878 156.898196) - (xy 124.232008 156.898544) - (xy 124.263464 156.842295) - (xy 124.325121 156.80943) - (xy 124.394759 156.815117) - (xy 124.450268 156.857551) - (xy 124.468868 156.898269) - (xy 124.4696 156.898044) - (xy 124.470973 156.902494) - (xy 124.564058 157.139671) - (xy 124.564057 157.139671) - (xy 124.691457 157.360332) - (xy 124.733452 157.412993) - (xy 125.537226 156.609219) - (xy 125.575901 156.702588) - (xy 125.672075 156.827925) - (xy 125.797412 156.924099) - (xy 125.890779 156.962772) - (xy 125.086813 157.766737) - (xy 125.247623 157.876375) - (xy 125.247624 157.876376) - (xy 125.477176 157.986921) - (xy 125.477174 157.986921) - (xy 125.720652 158.062024) - (xy 125.720658 158.062026) - (xy 125.972595 158.099999) - (xy 125.972604 158.1) - (xy 126.227396 158.1) - (xy 126.227404 158.099999) - (xy 126.479341 158.062026) - (xy 126.479347 158.062024) - (xy 126.722824 157.986921) - (xy 126.952381 157.876373) - (xy 127.113185 157.766737) - (xy 126.30922 156.962772) - (xy 126.402588 156.924099) - (xy 126.527925 156.827925) - (xy 126.624099 156.702589) - (xy 126.662773 156.60922) - (xy 127.466545 157.412993) - (xy 127.508545 157.360327) - (xy 127.635941 157.139671) - (xy 127.729026 156.902494) - (xy 127.7304 156.898044) - (xy 127.731574 156.898406) - (xy 127.762945 156.8423) - (xy 127.824601 156.809432) - (xy 127.894239 156.815115) - (xy 127.94975 156.857545) - (xy 127.96842 156.898412) - (xy 127.969122 156.898196) - (xy 127.97049 156.90263) - (xy 127.970492 156.902637) - (xy 128.063607 157.139888) - (xy 128.191041 157.360612) - (xy 128.34995 157.559877) - (xy 128.536783 157.733232) - (xy 128.747366 157.876805) - (xy 128.747371 157.876807) - (xy 128.747372 157.876808) - (xy 128.747373 157.876809) - (xy 128.869328 157.935538) - (xy 128.976992 157.987387) - (xy 128.976993 157.987387) - (xy 128.976996 157.987389) - (xy 129.220542 158.062513) - (xy 129.472565 158.1005) - (xy 129.727435 158.1005) - (xy 129.979458 158.062513) - (xy 130.223004 157.987389) - (xy 130.452634 157.876805) - (xy 130.663217 157.733232) - (xy 130.85005 157.559877) - (xy 131.008959 157.360612) - (xy 131.136393 157.139888) - (xy 131.229508 156.902637) - (xy 131.22951 156.902624) - (xy 131.230878 156.898196) - (xy 131.232324 156.898642) - (xy 131.263213 156.843412) - (xy 131.324873 156.810552) - (xy 131.39451 156.816243) - (xy 131.450016 156.85868) - (xy 131.468192 156.898482) - (xy 131.469122 156.898196) - (xy 131.47049 156.90263) - (xy 131.470492 156.902637) - (xy 131.563607 157.139888) - (xy 131.691041 157.360612) - (xy 131.84995 157.559877) - (xy 132.036783 157.733232) - (xy 132.247366 157.876805) - (xy 132.247371 157.876807) - (xy 132.247372 157.876808) - (xy 132.247373 157.876809) - (xy 132.369328 157.935538) - (xy 132.476992 157.987387) - (xy 132.476993 157.987387) - (xy 132.476996 157.987389) - (xy 132.720542 158.062513) - (xy 132.972565 158.1005) - (xy 133.227435 158.1005) - (xy 133.479458 158.062513) - (xy 133.723004 157.987389) - (xy 133.952634 157.876805) - (xy 134.163217 157.733232) - (xy 134.35005 157.559877) - (xy 134.508959 157.360612) - (xy 134.636393 157.139888) - (xy 134.729508 156.902637) - (xy 134.72951 156.902624) - (xy 134.730878 156.898196) - (xy 134.732008 156.898544) - (xy 134.763464 156.842295) - (xy 134.825121 156.80943) - (xy 134.894759 156.815117) - (xy 134.950268 156.857551) - (xy 134.968868 156.898269) - (xy 134.9696 156.898044) - (xy 134.970973 156.902494) - (xy 135.064058 157.139671) - (xy 135.064057 157.139671) - (xy 135.191457 157.360332) - (xy 135.233452 157.412993) - (xy 136.037226 156.609218) - (xy 136.075901 156.702588) - (xy 136.172075 156.827925) - (xy 136.297412 156.924099) - (xy 136.390779 156.962772) - (xy 135.586813 157.766737) - (xy 135.747623 157.876375) - (xy 135.747624 157.876376) - (xy 135.977176 157.986921) - (xy 135.977174 157.986921) - (xy 136.220652 158.062024) - (xy 136.220658 158.062026) - (xy 136.472595 158.099999) - (xy 136.472604 158.1) - (xy 136.727396 158.1) - (xy 136.727404 158.099999) - (xy 136.979341 158.062026) - (xy 136.979347 158.062024) - (xy 137.222824 157.986921) - (xy 137.452381 157.876373) - (xy 137.613185 157.766737) - (xy 136.80922 156.962772) - (xy 136.902588 156.924099) - (xy 137.027925 156.827925) - (xy 137.124099 156.702589) - (xy 137.162773 156.60922) - (xy 137.966545 157.412993) - (xy 138.008545 157.360327) - (xy 138.135941 157.139671) - (xy 138.229026 156.902494) - (xy 138.2304 156.898044) - (xy 138.231574 156.898406) - (xy 138.262945 156.8423) - (xy 138.324601 156.809432) - (xy 138.394239 156.815115) - (xy 138.44975 156.857545) - (xy 138.46842 156.898412) - (xy 138.469122 156.898196) - (xy 138.47049 156.90263) - (xy 138.470492 156.902637) - (xy 138.563607 157.139888) - (xy 138.691041 157.360612) - (xy 138.84995 157.559877) - (xy 139.036783 157.733232) - (xy 139.247366 157.876805) - (xy 139.247371 157.876807) - (xy 139.247372 157.876808) - (xy 139.247373 157.876809) - (xy 139.369328 157.935538) - (xy 139.476992 157.987387) - (xy 139.476993 157.987387) - (xy 139.476996 157.987389) - (xy 139.720542 158.062513) - (xy 139.972565 158.1005) - (xy 140.227435 158.1005) - (xy 140.479458 158.062513) - (xy 140.723004 157.987389) - (xy 140.952634 157.876805) - (xy 141.163217 157.733232) - (xy 141.35005 157.559877) - (xy 141.508959 157.360612) - (xy 141.636393 157.139888) - (xy 141.729508 156.902637) - (xy 141.72951 156.902624) - (xy 141.730878 156.898196) - (xy 141.732324 156.898642) - (xy 141.763213 156.843412) - (xy 141.824873 156.810552) - (xy 141.89451 156.816243) - (xy 141.950016 156.85868) - (xy 141.968192 156.898482) - (xy 141.969122 156.898196) - (xy 141.97049 156.90263) - (xy 141.970492 156.902637) - (xy 142.063607 157.139888) - (xy 142.191041 157.360612) - (xy 142.34995 157.559877) - (xy 142.536783 157.733232) - (xy 142.747366 157.876805) - (xy 142.747371 157.876807) - (xy 142.747372 157.876808) - (xy 142.747373 157.876809) - (xy 142.869328 157.935538) - (xy 142.976992 157.987387) - (xy 142.976993 157.987387) - (xy 142.976996 157.987389) - (xy 143.220542 158.062513) - (xy 143.472565 158.1005) - (xy 143.727435 158.1005) - (xy 143.979458 158.062513) - (xy 144.223004 157.987389) - (xy 144.452634 157.876805) - (xy 144.663217 157.733232) - (xy 144.85005 157.559877) - (xy 145.008959 157.360612) - (xy 145.136393 157.139888) - (xy 145.229508 156.902637) - (xy 145.22951 156.902624) - (xy 145.230878 156.898196) - (xy 145.232008 156.898544) - (xy 145.263464 156.842295) - (xy 145.325121 156.80943) - (xy 145.394759 156.815117) - (xy 145.450268 156.857551) - (xy 145.468868 156.898269) - (xy 145.4696 156.898044) - (xy 145.470973 156.902494) - (xy 145.564058 157.139671) - (xy 145.564057 157.139671) - (xy 145.691457 157.360332) - (xy 145.733452 157.412993) - (xy 146.537226 156.609219) - (xy 146.575901 156.702588) - (xy 146.672075 156.827925) - (xy 146.797412 156.924099) - (xy 146.890779 156.962772) - (xy 146.086813 157.766737) - (xy 146.247623 157.876375) - (xy 146.247624 157.876376) - (xy 146.477176 157.986921) - (xy 146.477174 157.986921) - (xy 146.720652 158.062024) - (xy 146.720658 158.062026) - (xy 146.972595 158.099999) - (xy 146.972604 158.1) - (xy 147.227396 158.1) - (xy 147.227404 158.099999) - (xy 147.479341 158.062026) - (xy 147.479347 158.062024) - (xy 147.722824 157.986921) - (xy 147.952381 157.876373) - (xy 148.113185 157.766737) - (xy 147.30922 156.962772) - (xy 147.402588 156.924099) - (xy 147.527925 156.827925) - (xy 147.624099 156.702589) - (xy 147.662772 156.60922) - (xy 148.466545 157.412993) - (xy 148.508545 157.360327) - (xy 148.635941 157.139671) - (xy 148.729026 156.902494) - (xy 148.7304 156.898044) - (xy 148.731574 156.898406) - (xy 148.762945 156.8423) - (xy 148.824601 156.809432) - (xy 148.894239 156.815115) - (xy 148.94975 156.857545) - (xy 148.96842 156.898412) - (xy 148.969122 156.898196) - (xy 148.97049 156.90263) - (xy 148.970492 156.902637) - (xy 149.063607 157.139888) - (xy 149.191041 157.360612) - (xy 149.34995 157.559877) - (xy 149.536783 157.733232) - (xy 149.747366 157.876805) - (xy 149.747371 157.876807) - (xy 149.747372 157.876808) - (xy 149.747373 157.876809) - (xy 149.869328 157.935538) - (xy 149.976992 157.987387) - (xy 149.976993 157.987387) - (xy 149.976996 157.987389) - (xy 150.220542 158.062513) - (xy 150.472565 158.1005) - (xy 150.727435 158.1005) - (xy 150.979458 158.062513) - (xy 151.223004 157.987389) - (xy 151.452634 157.876805) - (xy 151.663217 157.733232) - (xy 151.85005 157.559877) - (xy 152.008959 157.360612) - (xy 152.136393 157.139888) - (xy 152.229508 156.902637) - (xy 152.22951 156.902624) - (xy 152.230878 156.898196) - (xy 152.232324 156.898642) - (xy 152.263213 156.843412) - (xy 152.324873 156.810552) - (xy 152.39451 156.816243) - (xy 152.450016 156.85868) - (xy 152.468192 156.898482) - (xy 152.469122 156.898196) - (xy 152.47049 156.90263) - (xy 152.470492 156.902637) - (xy 152.563607 157.139888) - (xy 152.691041 157.360612) - (xy 152.84995 157.559877) - (xy 153.036783 157.733232) - (xy 153.247366 157.876805) - (xy 153.247371 157.876807) - (xy 153.247372 157.876808) - (xy 153.247373 157.876809) - (xy 153.369328 157.935538) - (xy 153.476992 157.987387) - (xy 153.476993 157.987387) - (xy 153.476996 157.987389) - (xy 153.720542 158.062513) - (xy 153.972565 158.1005) - (xy 154.227435 158.1005) - (xy 154.479458 158.062513) - (xy 154.723004 157.987389) - (xy 154.952634 157.876805) - (xy 155.163217 157.733232) - (xy 155.35005 157.559877) - (xy 155.508959 157.360612) - (xy 155.636393 157.139888) - (xy 155.729508 156.902637) - (xy 155.72951 156.902624) - (xy 155.730878 156.898196) - (xy 155.732008 156.898544) - (xy 155.763464 156.842295) - (xy 155.825121 156.80943) - (xy 155.894759 156.815117) - (xy 155.950268 156.857551) - (xy 155.968868 156.898269) - (xy 155.9696 156.898044) - (xy 155.970973 156.902494) - (xy 156.064058 157.139671) - (xy 156.064057 157.139671) - (xy 156.191457 157.360332) - (xy 156.233452 157.412993) - (xy 156.233453 157.412993) - (xy 157.037226 156.609219) - (xy 157.075901 156.702588) - (xy 157.172075 156.827925) - (xy 157.297412 156.924099) - (xy 157.390779 156.962772) - (xy 156.586813 157.766737) - (xy 156.747623 157.876375) - (xy 156.747624 157.876376) - (xy 156.977176 157.986921) - (xy 156.977174 157.986921) - (xy 157.220652 158.062024) - (xy 157.220658 158.062026) - (xy 157.472595 158.099999) - (xy 157.472604 158.1) - (xy 157.727396 158.1) - (xy 157.727404 158.099999) - (xy 157.979341 158.062026) - (xy 157.979347 158.062024) - (xy 158.222824 157.986921) - (xy 158.452381 157.876373) - (xy 158.613185 157.766737) - (xy 157.80922 156.962772) - (xy 157.902588 156.924099) - (xy 158.027925 156.827925) - (xy 158.124099 156.702589) - (xy 158.162772 156.60922) - (xy 158.966545 157.412993) - (xy 159.008545 157.360327) - (xy 159.135941 157.139671) - (xy 159.229026 156.902494) - (xy 159.2304 156.898044) - (xy 159.231574 156.898406) - (xy 159.262945 156.8423) - (xy 159.324601 156.809432) - (xy 159.394239 156.815115) - (xy 159.44975 156.857545) - (xy 159.46842 156.898412) - (xy 159.469122 156.898196) - (xy 159.47049 156.90263) - (xy 159.470492 156.902637) - (xy 159.563607 157.139888) - (xy 159.691041 157.360612) - (xy 159.84995 157.559877) - (xy 160.036783 157.733232) - (xy 160.247366 157.876805) - (xy 160.247371 157.876807) - (xy 160.247372 157.876808) - (xy 160.247373 157.876809) - (xy 160.369328 157.935538) - (xy 160.476992 157.987387) - (xy 160.476993 157.987387) - (xy 160.476996 157.987389) - (xy 160.720542 158.062513) - (xy 160.972565 158.1005) - (xy 161.227435 158.1005) - (xy 161.479458 158.062513) - (xy 161.723004 157.987389) - (xy 161.952634 157.876805) - (xy 162.163217 157.733232) - (xy 162.35005 157.559877) - (xy 162.508959 157.360612) - (xy 162.636393 157.139888) - (xy 162.729508 156.902637) - (xy 162.72951 156.902624) - (xy 162.730878 156.898196) - (xy 162.732324 156.898642) - (xy 162.763213 156.843412) - (xy 162.824873 156.810552) - (xy 162.89451 156.816243) - (xy 162.950016 156.85868) - (xy 162.968192 156.898482) - (xy 162.969122 156.898196) - (xy 162.97049 156.90263) - (xy 162.970492 156.902637) - (xy 163.063607 157.139888) - (xy 163.191041 157.360612) - (xy 163.34995 157.559877) - (xy 163.536783 157.733232) - (xy 163.747366 157.876805) - (xy 163.747371 157.876807) - (xy 163.747372 157.876808) - (xy 163.747373 157.876809) - (xy 163.869328 157.935538) - (xy 163.976992 157.987387) - (xy 163.976993 157.987387) - (xy 163.976996 157.987389) - (xy 164.220542 158.062513) - (xy 164.472565 158.1005) - (xy 164.727435 158.1005) - (xy 164.979458 158.062513) - (xy 165.223004 157.987389) - (xy 165.452634 157.876805) - (xy 165.663217 157.733232) - (xy 165.85005 157.559877) - (xy 166.008959 157.360612) - (xy 166.136393 157.139888) - (xy 166.229508 156.902637) - (xy 166.22951 156.902624) - (xy 166.230878 156.898196) - (xy 166.232008 156.898544) - (xy 166.263464 156.842295) - (xy 166.325121 156.80943) - (xy 166.394759 156.815117) - (xy 166.450268 156.857551) - (xy 166.468868 156.898269) - (xy 166.4696 156.898044) - (xy 166.470973 156.902494) - (xy 166.564058 157.139671) - (xy 166.564057 157.139671) - (xy 166.691457 157.360332) - (xy 166.733452 157.412993) - (xy 167.537226 156.609219) - (xy 167.575901 156.702588) - (xy 167.672075 156.827925) - (xy 167.797412 156.924099) - (xy 167.890779 156.962772) - (xy 167.086813 157.766737) - (xy 167.247623 157.876375) - (xy 167.247624 157.876376) - (xy 167.477176 157.986921) - (xy 167.477174 157.986921) - (xy 167.720652 158.062024) - (xy 167.720658 158.062026) - (xy 167.972595 158.099999) - (xy 167.972604 158.1) - (xy 168.227396 158.1) - (xy 168.227404 158.099999) - (xy 168.479341 158.062026) - (xy 168.479347 158.062024) - (xy 168.722824 157.986921) - (xy 168.952381 157.876373) - (xy 169.113185 157.766737) - (xy 168.30922 156.962772) - (xy 168.402588 156.924099) - (xy 168.527925 156.827925) - (xy 168.624099 156.702589) - (xy 168.662773 156.60922) - (xy 169.466545 157.412993) - (xy 169.508545 157.360327) - (xy 169.635941 157.139671) - (xy 169.729026 156.902494) - (xy 169.7304 156.898044) - (xy 169.731574 156.898406) - (xy 169.762945 156.8423) - (xy 169.824601 156.809432) - (xy 169.894239 156.815115) - (xy 169.94975 156.857545) - (xy 169.96842 156.898412) - (xy 169.969122 156.898196) - (xy 169.97049 156.90263) - (xy 169.970492 156.902637) - (xy 170.063607 157.139888) - (xy 170.191041 157.360612) - (xy 170.34995 157.559877) - (xy 170.536783 157.733232) - (xy 170.747366 157.876805) - (xy 170.747371 157.876807) - (xy 170.747372 157.876808) - (xy 170.747373 157.876809) - (xy 170.869328 157.935538) - (xy 170.976992 157.987387) - (xy 170.976993 157.987387) - (xy 170.976996 157.987389) - (xy 171.220542 158.062513) - (xy 171.472565 158.1005) - (xy 171.727435 158.1005) - (xy 171.979458 158.062513) - (xy 172.223004 157.987389) - (xy 172.452634 157.876805) - (xy 172.663217 157.733232) - (xy 172.85005 157.559877) - (xy 173.008959 157.360612) - (xy 173.136393 157.139888) - (xy 173.229508 156.902637) - (xy 173.22951 156.902624) - (xy 173.230878 156.898196) - (xy 173.232324 156.898642) - (xy 173.263213 156.843412) - (xy 173.324873 156.810552) - (xy 173.39451 156.816243) - (xy 173.450016 156.85868) - (xy 173.468192 156.898482) - (xy 173.469122 156.898196) - (xy 173.47049 156.90263) - (xy 173.470492 156.902637) - (xy 173.563607 157.139888) - (xy 173.691041 157.360612) - (xy 173.84995 157.559877) - (xy 174.036783 157.733232) - (xy 174.247366 157.876805) - (xy 174.247371 157.876807) - (xy 174.247372 157.876808) - (xy 174.247373 157.876809) - (xy 174.369328 157.935538) - (xy 174.476992 157.987387) - (xy 174.476993 157.987387) - (xy 174.476996 157.987389) - (xy 174.720542 158.062513) - (xy 174.972565 158.1005) - (xy 175.227435 158.1005) - (xy 175.479458 158.062513) - (xy 175.723004 157.987389) - (xy 175.952634 157.876805) - (xy 176.163217 157.733232) - (xy 176.35005 157.559877) - (xy 176.508959 157.360612) - (xy 176.636393 157.139888) - (xy 176.729508 156.902637) - (xy 176.786222 156.654157) - (xy 176.805268 156.4) - (xy 176.786222 156.145843) - (xy 176.729508 155.897363) - (xy 176.636393 155.660112) - (xy 176.508959 155.439388) - (xy 176.35005 155.240123) - (xy 176.163217 155.066768) - (xy 175.952634 154.923195) - (xy 175.952628 154.923192) - (xy 175.952627 154.923191) - (xy 175.952626 154.92319) - (xy 175.723006 154.812612) - (xy 175.723008 154.812612) - (xy 175.479466 154.737489) - (xy 175.47946 154.737487) - (xy 175.463922 154.735145) - (xy 175.442944 154.731983) - (xy 175.379589 154.702527) - (xy 175.342216 154.643493) - (xy 175.337428 154.609369) - (xy 175.337428 153.850633) - (xy 175.338737 153.832663) - (xy 175.342217 153.808902) - (xy 175.337664 153.756867) - (xy 175.337428 153.75146) - (xy 175.337428 153.743224) - (xy 175.337428 153.743219) - (xy 175.333719 153.711492) - (xy 175.333546 153.7098) - (xy 175.326926 153.63413) - (xy 175.326924 153.634125) - (xy 175.325466 153.627061) - (xy 175.325525 153.627048) - (xy 175.323895 153.619692) - (xy 175.323836 153.619707) - (xy 175.322169 153.612675) - (xy 175.322169 153.612673) - (xy 175.296175 153.541255) - (xy 175.295636 153.539703) - (xy 175.271742 153.467593) - (xy 175.271741 153.467591) - (xy 175.268691 153.461049) - (xy 175.268745 153.461023) - (xy 175.265461 153.45424) - (xy 175.265408 153.454268) - (xy 175.262166 153.447813) - (xy 175.253831 153.43514) - (xy 175.220424 153.384347) - (xy 175.219483 153.382869) - (xy 175.202471 153.355289) - (xy 175.179639 153.318272) - (xy 175.179638 153.318271) - (xy 175.179637 153.318269) - (xy 175.175161 153.312609) - (xy 175.175208 153.312571) - (xy 175.170447 153.306727) - (xy 175.170402 153.306766) - (xy 175.165759 153.301233) - (xy 175.110545 153.249141) - (xy 175.109285 153.247918) - (xy 174.165779 152.304411) - (xy 174.153999 152.29078) - (xy 174.146532 152.280751) - (xy 174.139662 152.271522) - (xy 174.13966 152.27152) - (xy 174.099637 152.237936) - (xy 174.095662 152.234294) - (xy 174.09274 152.231372) - (xy 174.089829 152.22846) - (xy 174.064786 152.208659) - (xy 174.063388 152.20752) - (xy 174.005264 152.158748) - (xy 173.99923 152.154779) - (xy 173.999262 152.15473) - (xy 173.992903 152.150678) - (xy 173.992872 152.150729) - (xy 173.98673 152.146941) - (xy 173.986728 152.14694) - (xy 173.986727 152.146939) - (xy 173.917922 152.114854) - (xy 173.916302 152.114069) - (xy 173.876562 152.094111) - (xy 173.848483 152.08001) - (xy 173.848481 152.080009) - (xy 173.84848 152.080009) - (xy 173.841695 152.077539) - (xy 173.841715 152.077483) - (xy 173.834599 152.075009) - (xy 173.834581 152.075065) - (xy 173.827724 152.072793) - (xy 173.753378 152.057441) - (xy 173.751619 152.057051) - (xy 173.677768 152.039549) - (xy 173.670597 152.038711) - (xy 173.670603 152.038651) - (xy 173.663105 152.037885) - (xy 173.6631 152.037945) - (xy 173.65591 152.037315) - (xy 173.580018 152.039524) - (xy 173.578215 152.03955) - (xy 165.95218 152.03955) - (xy 165.885141 152.019865) - (xy 165.864499 152.003231) - (xy 162.046819 148.18555) - (xy 162.013334 148.124227) - (xy 162.0105 148.097869) - (xy 162.0105 146.565071) - (xy 162.030185 146.498032) - (xy 162.058338 146.467218) - (xy 162.093802 146.439615) - (xy 162.187046 146.36704) - (xy 162.304098 146.239888) - (xy 162.340149 146.200727) - (xy 162.340151 146.200724) - (xy 162.340156 146.200719) - (xy 162.463802 146.011465) - (xy 162.554611 145.804441) - (xy 162.610107 145.585293) - (xy 162.62316 145.427763) - (xy 164.485787 145.427763) - (xy 164.515413 145.697013) - (xy 164.515415 145.697024) - (xy 164.583926 145.959082) - (xy 164.583928 145.959088) - (xy 164.68987 146.20839) - (xy 164.786693 146.36704) - (xy 164.830979 146.439605) - (xy 164.830986 146.439615) - (xy 165.004253 146.647819) - (xy 165.004259 146.647824) - (xy 165.156437 146.784175) - (xy 165.205998 146.828582) - (xy 165.43191 146.978044) - (xy 165.677176 147.09302) - (xy 165.677183 147.093022) - (xy 165.677185 147.093023) - (xy 165.936557 147.171057) - (xy 165.936564 147.171058) - (xy 165.936569 147.17106) - (xy 166.204561 147.2105) - (xy 166.204566 147.2105) - (xy 166.407629 147.2105) - (xy 166.407631 147.2105) - (xy 166.407636 147.210499) - (xy 166.407648 147.210499) - (xy 166.451516 147.207288) - (xy 166.610156 147.195677) - (xy 166.759043 147.162511) - (xy 166.874546 147.136782) - (xy 166.874548 147.136781) - (xy 166.874553 147.13678) - (xy 167.127558 147.040014) - (xy 167.363777 146.907441) - (xy 167.578177 146.741888) - (xy 167.766186 146.546881) - (xy 167.923799 146.326579) - (xy 167.997787 146.182669) - (xy 168.047649 146.08569) - (xy 168.047651 146.085684) - (xy 168.047656 146.085675) - (xy 168.135118 145.829305) - (xy 168.184319 145.562933) - (xy 168.194212 145.292235) - (xy 168.164586 145.022982) - (xy 168.096072 144.760912) - (xy 167.99013 144.51161) - (xy 167.849018 144.28039) - (xy 167.81972 144.245185) - (xy 167.675746 144.07218) - (xy 167.67574 144.072175) - (xy 167.474002 143.891418) - (xy 167.248092 143.741957) - (xy 167.244963 143.74049) - (xy 167.002824 143.62698) - (xy 167.002819 143.626978) - (xy 167.002814 143.626976) - (xy 166.743442 143.548942) - (xy 166.743428 143.548939) - (xy 166.627791 143.531921) - (xy 166.475439 143.5095) - (xy 166.272369 143.5095) - (xy 166.272351 143.5095) - (xy 166.069844 143.524323) - (xy 166.069831 143.524325) - (xy 165.805453 143.583217) - (xy 165.805446 143.58322) - (xy 165.552439 143.679987) - (xy 165.316226 143.812557) - (xy 165.316224 143.812558) - (xy 165.316223 143.812559) - (xy 165.28394 143.837487) - (xy 165.101822 143.978112) - (xy 164.913822 144.173109) - (xy 164.913816 144.173116) - (xy 164.756202 144.393419) - (xy 164.756199 144.393424) - (xy 164.63235 144.634309) - (xy 164.632343 144.634327) - (xy 164.544884 144.890685) - (xy 164.544881 144.890699) - (xy 164.495681 145.157068) - (xy 164.49568 145.157075) - (xy 164.485787 145.427763) - (xy 162.62316 145.427763) - (xy 162.628775 145.36) - (xy 162.628775 145.359993) - (xy 162.610107 145.13471) - (xy 162.610107 145.134707) - (xy 162.554611 144.915559) - (xy 162.463802 144.708535) - (xy 162.457037 144.698181) - (xy 162.401979 144.613908) - (xy 162.340156 144.519281) - (xy 162.340153 144.519278) - (xy 162.340149 144.519272) - (xy 162.187049 144.352963) - (xy 162.187048 144.352962) - (xy 162.187046 144.35296) - (xy 162.008649 144.214107) - (xy 161.93291 144.173119) - (xy 161.809832 144.106512) - (xy 161.809827 144.10651) - (xy 161.596017 144.033109) - (xy 161.428778 144.005202) - (xy 161.373033 143.9959) - (xy 161.146967 143.9959) - (xy 161.117771 144.000772) - (xy 160.923982 144.033109) - (xy 160.918067 144.03514) - (xy 160.848268 144.038286) - (xy 160.790129 144.005538) - (xy 159.440166 142.655575) - (xy 159.406681 142.594252) - (xy 159.411665 142.52456) - (xy 159.453537 142.468627) - (xy 159.519001 142.44421) - (xy 159.56811 142.450613) - (xy 159.614106 142.466403) - (xy 159.83701 142.5036) - (xy 160.06299 142.5036) - (xy 160.285893 142.466403) - (xy 160.499624 142.393029) - (xy 160.499639 142.393022) - (xy 160.698366 142.285476) - (xy 160.698378 142.285468) - (xy 160.722859 142.266413) - (xy 160.722859 142.266412) - (xy 160.089599 141.633152) - (xy 160.094592 141.632435) - (xy 160.22747 141.571752) - (xy 160.337869 141.47609) - (xy 160.416845 141.353201) - (xy 160.439522 141.275969) - (xy 161.074888 141.911334) - (xy 161.153361 141.791222) - (xy 161.244136 141.584278) - (xy 161.299611 141.365213) - (xy 161.299613 141.365202) - (xy 161.318273 141.140006) - (xy 161.318273 141.139993) - (xy 161.299613 140.914797) - (xy 161.299611 140.914786) - (xy 161.244136 140.695721) - (xy 161.15336 140.488774) - (xy 161.074888 140.368663) - (xy 160.439522 141.00403) - (xy 160.416845 140.926799) - (xy 160.337869 140.80391) - (xy 160.22747 140.708248) - (xy 160.094592 140.647565) - (xy 160.089599 140.646847) - (xy 160.722859 140.013587) - (xy 160.722858 140.013585) - (xy 160.698378 139.994531) - (xy 160.698368 139.994524) - (xy 160.499639 139.886977) - (xy 160.499624 139.88697) - (xy 160.285893 139.813596) - (xy 160.06299 139.7764) - (xy 159.83701 139.7764) - (xy 159.614106 139.813596) - (xy 159.400375 139.88697) - (xy 159.400369 139.886972) - (xy 159.201623 139.994529) - (xy 159.201617 139.994533) - (xy 159.17714 140.013584) - (xy 159.17714 140.013586) - (xy 159.810401 140.646847) - (xy 159.805408 140.647565) - (xy 159.67253 140.708248) - (xy 159.562131 140.80391) - (xy 159.483155 140.926799) - (xy 159.460477 141.004031) - (xy 158.82511 140.368664) - (xy 158.746638 140.488777) - (xy 158.746637 140.488779) - (xy 158.655863 140.695721) - (xy 158.600388 140.914786) - (xy 158.600386 140.914797) - (xy 158.581727 141.139993) - (xy 158.581727 141.140006) - (xy 158.600386 141.365202) - (xy 158.600388 141.365213) - (xy 158.642634 141.532035) - (xy 158.640009 141.601855) - (xy 158.600053 141.659172) - (xy 158.535452 141.685789) - (xy 158.466715 141.673255) - (xy 158.434747 141.650156) - (xy 138.771772 121.987181) - (xy 138.738287 121.925858) - (xy 138.743271 121.856166) - (xy 138.785143 121.800233) - (xy 138.850607 121.775816) - (xy 138.859453 121.7755) - (xy 142.117257 121.7755) - (xy 142.132877 121.777224) - (xy 142.132904 121.776939) - (xy 142.140666 121.777673) - (xy 142.140666 121.777672) - (xy 142.140667 121.777673) - (xy 142.143999 121.777568) - (xy 142.208847 121.775531) - (xy 142.210794 121.7755) - (xy 142.239347 121.7755) - (xy 142.23935 121.7755) - (xy 142.246228 121.77463) - (xy 142.252041 121.774172) - (xy 142.298627 121.772709) - (xy 142.317869 121.767117) - (xy 142.336912 121.763174) - (xy 142.356792 121.760664) - (xy 142.400122 121.743507) - (xy 142.405646 121.741617) - (xy 142.411597 121.739888) - (xy 142.45039 121.728618) - (xy 142.467629 121.718422) - (xy 142.485103 121.709862) - (xy 142.503727 121.702488) - (xy 142.503727 121.702487) - (xy 142.503732 121.702486) - (xy 142.541449 121.675082) - (xy 142.546305 121.671892) - (xy 142.58642 121.64817) - (xy 142.600589 121.633999) - (xy 142.615379 121.621368) - (xy 142.631587 121.609594) - (xy 142.661299 121.573676) - (xy 142.665212 121.569376) - (xy 162.226064 102.008524) - (xy 162.287385 101.975041) - (xy 162.357077 101.980025) - (xy 162.41301 102.021897) - (xy 162.437427 102.087361) - (xy 162.43732 102.106442) - (xy 162.432322 102.166768) - (xy 162.431225 102.180004) - (xy 162.431225 102.180006) - (xy 162.449892 102.405289) - (xy 162.505388 102.624439) - (xy 162.596198 102.831466) - (xy 162.719842 103.020716) - (xy 162.71985 103.020727) - (xy 162.814943 103.124024) - (xy 162.872954 103.18704) - (xy 163.051351 103.325893) - (xy 163.051353 103.325894) - (xy 163.051356 103.325896) - (xy 163.060803 103.331008) - (xy 163.079163 103.340944) - (xy 163.128754 103.390161) - (xy 163.143864 103.458378) - (xy 163.119694 103.523934) - (xy 163.079167 103.559052) - (xy 163.051361 103.5741) - (xy 163.051353 103.574105) - (xy 162.872955 103.712959) - (xy 162.87295 103.712963) - (xy 162.71985 103.879272) - (xy 162.719842 103.879283) - (xy 162.596198 104.068533) - (xy 162.505388 104.27556) - (xy 162.449892 104.49471) - (xy 162.431225 104.719993) - (xy 162.431225 104.720006) - (xy 162.449892 104.945289) - (xy 162.505388 105.164439) - (xy 162.596198 105.371466) - (xy 162.719842 105.560716) - (xy 162.71985 105.560727) - (xy 162.817469 105.666768) - (xy 162.872954 105.72704) - (xy 163.051351 105.865893) - (xy 163.079165 105.880945) - (xy 163.128755 105.930165) - (xy 163.143863 105.998382) - (xy 163.119692 106.063937) - (xy 163.079165 106.099055) - (xy 163.051352 106.114106) - (xy 162.872955 106.252959) - (xy 162.87295 106.252963) - (xy 162.71985 106.419272) - (xy 162.719842 106.419283) - (xy 162.596198 106.608533) - (xy 162.505388 106.81556) - (xy 162.449892 107.03471) - (xy 162.431225 107.259993) - (xy 162.431225 107.260006) - (xy 162.449892 107.485289) - (xy 162.505388 107.704439) - (xy 162.596198 107.911466) - (xy 162.719842 108.100716) - (xy 162.71985 108.100727) - (xy 162.87295 108.267036) - (xy 162.872954 108.26704) - (xy 163.051351 108.405893) - (xy 163.079165 108.420945) - (xy 163.128755 108.470165) - (xy 163.143863 108.538382) - (xy 163.119692 108.603937) - (xy 163.079165 108.639055) - (xy 163.051352 108.654106) - (xy 162.872955 108.792959) - (xy 162.87295 108.792963) - (xy 162.71985 108.959272) - (xy 162.719842 108.959283) - (xy 162.596198 109.148533) - (xy 162.505388 109.35556) - (xy 162.449892 109.57471) - (xy 162.431225 109.799993) - (xy 162.431225 109.800006) - (xy 162.449892 110.025289) - (xy 162.505388 110.244439) - (xy 162.596198 110.451466) - (xy 162.719842 110.640716) - (xy 162.71985 110.640727) - (xy 162.870214 110.804064) - (xy 162.872954 110.80704) - (xy 163.051351 110.945893) - (xy 163.079165 110.960945) - (xy 163.128755 111.010165) - (xy 163.143863 111.078382) - (xy 163.119692 111.143937) - (xy 163.079165 111.179055) - (xy 163.051352 111.194106) - (xy 162.872955 111.332959) - (xy 162.87295 111.332963) - (xy 162.71985 111.499272) - (xy 162.719842 111.499283) - (xy 162.596198 111.688533) - (xy 162.505388 111.89556) - (xy 162.449892 112.11471) - (xy 162.431225 112.339993) - (xy 162.431225 112.340006) - (xy 162.449892 112.565289) - (xy 162.505388 112.784439) - (xy 162.596198 112.991466) - (xy 162.719842 113.180716) - (xy 162.71985 113.180727) - (xy 162.87295 113.347036) - (xy 162.872954 113.34704) - (xy 163.051351 113.485893) - (xy 163.079159 113.500942) - (xy 163.079165 113.500945) - (xy 163.128755 113.550165) - (xy 163.143863 113.618382) - (xy 163.119692 113.683937) - (xy 163.079165 113.719055) - (xy 163.051352 113.734106) - (xy 162.872955 113.872959) - (xy 162.87295 113.872963) - (xy 162.71985 114.039272) - (xy 162.719842 114.039283) - (xy 162.596198 114.228533) - (xy 162.505388 114.43556) - (xy 162.449892 114.65471) - (xy 162.431225 114.879993) - (xy 162.431225 114.880006) - (xy 162.449892 115.105289) - (xy 162.505388 115.324439) - (xy 162.596198 115.531466) - (xy 162.719842 115.720716) - (xy 162.71985 115.720727) - (xy 162.855877 115.86849) - (xy 162.872954 115.88704) - (xy 163.051351 116.025893) - (xy 163.051353 116.025894) - (xy 163.051356 116.025896) - (xy 163.051362 116.025899) - (xy 163.079163 116.040944) - (xy 163.128754 116.090161) - (xy 163.143864 116.158378) - (xy 163.119694 116.223934) - (xy 163.079167 116.259052) - (xy 163.051361 116.2741) - (xy 163.051353 116.274105) - (xy 162.872955 116.412959) - (xy 162.87295 116.412963) - (xy 162.71985 116.579272) - (xy 162.719842 116.579283) - (xy 162.596198 116.768533) - (xy 162.505388 116.97556) - (xy 162.449892 117.19471) - (xy 162.431225 117.419993) - (xy 162.431225 117.420006) - (xy 162.449892 117.645289) - (xy 162.505388 117.864439) - (xy 162.596198 118.071466) - (xy 162.719842 118.260716) - (xy 162.71985 118.260727) - (xy 162.87295 118.427036) - (xy 162.872954 118.42704) - (xy 163.051351 118.565893) - (xy 163.079165 118.580945) - (xy 163.128755 118.630165) - (xy 163.143863 118.698382) - (xy 163.119692 118.763937) - (xy 163.079165 118.799055) - (xy 163.051352 118.814106) - (xy 162.872955 118.952959) - (xy 162.87295 118.952963) - (xy 162.71985 119.119272) - (xy 162.719842 119.119283) - (xy 162.596198 119.308533) - (xy 162.505388 119.51556) - (xy 162.449892 119.73471) - (xy 162.431225 119.959993) - (xy 162.431225 119.960006) - (xy 162.449892 120.185289) - (xy 162.505388 120.404439) - (xy 162.596198 120.611466) - (xy 162.719842 120.800716) - (xy 162.71985 120.800727) - (xy 162.835055 120.925871) - (xy 162.872954 120.96704) - (xy 163.051351 121.105893) - (xy 163.079165 121.120945) - (xy 163.128755 121.170165) - (xy 163.143863 121.238382) - (xy 163.119692 121.303937) - (xy 163.079165 121.339055) - (xy 163.051352 121.354106) - (xy 162.872955 121.492959) - (xy 162.87295 121.492963) - (xy 162.71985 121.659272) - (xy 162.719842 121.659283) - (xy 162.596198 121.848533) - (xy 162.505388 122.05556) - (xy 162.449892 122.27471) - (xy 162.431225 122.499993) - (xy 162.431225 122.500006) - (xy 162.449892 122.725289) - (xy 162.505388 122.944439) - (xy 162.596198 123.151466) - (xy 162.719842 123.340716) - (xy 162.71985 123.340727) - (xy 162.87295 123.507036) - (xy 162.872954 123.50704) - (xy 163.051351 123.645893) - (xy 163.079165 123.660945) - (xy 163.128755 123.710165) - (xy 163.143863 123.778382) - (xy 163.119692 123.843937) - (xy 163.079165 123.879055) - (xy 163.051352 123.894106) - (xy 162.872955 124.032959) - (xy 162.87295 124.032963) - (xy 162.71985 124.199272) - (xy 162.719842 124.199283) - (xy 162.596198 124.388533) - (xy 162.505388 124.59556) - (xy 162.449892 124.81471) - (xy 162.431225 125.039993) - (xy 162.431225 125.040006) - (xy 162.449892 125.265289) - (xy 162.505388 125.484439) - (xy 162.596196 125.691462) - (xy 162.596196 125.691463) - (xy 162.719842 125.880716) - (xy 162.71985 125.880727) - (xy 162.830913 126.001372) - (xy 162.872954 126.04704) - (xy 163.051351 126.185893) - (xy 163.079165 126.200945) - (xy 163.128755 126.250165) - (xy 163.143863 126.318382) - (xy 163.119692 126.383937) - (xy 163.079165 126.419055) - (xy 163.051352 126.434106) - (xy 162.872955 126.572959) - (xy 162.87295 126.572963) - (xy 162.71985 126.739272) - (xy 162.719842 126.739283) - (xy 162.596198 126.928533) - (xy 162.505388 127.13556) - (xy 162.449892 127.35471) - (xy 162.431225 127.579993) - (xy 162.431225 127.580006) - (xy 162.449892 127.805289) - (xy 162.505388 128.024439) - (xy 162.596198 128.231466) - (xy 162.719842 128.420716) - (xy 162.71985 128.420727) - (xy 162.87295 128.587036) - (xy 162.872954 128.58704) - (xy 163.051351 128.725893) - (xy 163.051353 128.725894) - (xy 163.051356 128.725896) - (xy 163.060803 128.731008) - (xy 163.079163 128.740944) - (xy 163.128754 128.790161) - (xy 163.143864 128.858378) - (xy 163.119694 128.923934) - (xy 163.079167 128.959052) - (xy 163.051361 128.9741) - (xy 163.051353 128.974105) - (xy 162.872955 129.112959) - (xy 162.87295 129.112963) - (xy 162.71985 129.279272) - (xy 162.719842 129.279283) - (xy 162.596198 129.468533) - (xy 162.505388 129.67556) - (xy 162.449892 129.89471) - (xy 162.431225 130.119993) - (xy 162.431225 130.120006) - (xy 162.449892 130.345289) - (xy 162.505388 130.564439) - (xy 162.596198 130.771466) - (xy 162.719842 130.960716) - (xy 162.71985 130.960727) - (xy 162.87295 131.127036) - (xy 162.872954 131.12704) - (xy 163.051351 131.265893) - (xy 163.079165 131.280945) - (xy 163.128755 131.330165) - (xy 163.143863 131.398382) - (xy 163.119692 131.463937) - (xy 163.079165 131.499054) - (xy 163.077411 131.500004) - (xy 163.051352 131.514106) - (xy 162.872955 131.652959) - (xy 162.87295 131.652963) - (xy 162.71985 131.819272) - (xy 162.719842 131.819283) - (xy 162.596198 132.008533) - (xy 162.505388 132.21556) - (xy 162.449892 132.43471) - (xy 162.431225 132.659993) - (xy 162.431225 132.660006) - (xy 162.449892 132.885289) - (xy 162.505388 133.104439) - (xy 162.596198 133.311466) - (xy 162.719842 133.500716) - (xy 162.71985 133.500727) - (xy 162.87295 133.667036) - (xy 162.872954 133.66704) - (xy 163.051351 133.805893) - (xy 163.079165 133.820945) - (xy 163.128755 133.870165) - (xy 163.143863 133.938382) - (xy 163.119692 134.003937) - (xy 163.079165 134.039054) - (xy 163.070866 134.043545) - (xy 163.051352 134.054106) - (xy 162.872955 134.192959) - (xy 162.87295 134.192963) - (xy 162.71985 134.359272) - (xy 162.719842 134.359283) - (xy 162.596198 134.548533) - (xy 162.505388 134.75556) - (xy 162.449892 134.97471) - (xy 162.431225 135.199993) - (xy 162.431225 135.200006) - (xy 162.449892 135.425289) - (xy 162.505388 135.644439) - (xy 162.596198 135.851466) - (xy 162.719842 136.040716) - (xy 162.71985 136.040727) - (xy 162.87295 136.207036) - (xy 162.872954 136.20704) - (xy 163.051351 136.345893) - (xy 163.079161 136.360943) - (xy 163.079165 136.360945) - (xy 163.128755 136.410165) - (xy 163.143863 136.478382) - (xy 163.119692 136.543937) - (xy 163.079165 136.579055) - (xy 163.051352 136.594106) - (xy 162.872955 136.732959) - (xy 162.87295 136.732963) - (xy 162.71985 136.899272) - (xy 162.719842 136.899283) - (xy 162.596198 137.088533) - (xy 162.505388 137.29556) - (xy 162.449892 137.51471) - (xy 162.431225 137.739993) - (xy 162.431225 137.740006) - (xy 162.449892 137.965289) - (xy 162.505388 138.184439) - (xy 162.596198 138.391466) - (xy 162.691265 138.536976) - (xy 162.719844 138.580719) - (xy 162.857245 138.729976) - (xy 162.888167 138.792629) - (xy 162.880307 138.862055) - (xy 162.83616 138.916211) - (xy 162.809349 138.93014) - (xy 162.694311 138.973046) - (xy 162.694306 138.973049) - (xy 162.579212 139.059209) - (xy 162.579209 139.059212) - (xy 162.493049 139.174306) - (xy 162.493045 139.174313) - (xy 162.442803 139.30902) - (xy 162.442801 139.309027) - (xy 162.4364 139.368555) - (xy 162.4364 140.03) - (xy 163.356804 140.03) - (xy 163.333155 140.066799) - (xy 163.292 140.206961) - (xy 163.292 140.353039) - (xy 163.333155 140.493201) - (xy 163.356804 140.53) - (xy 162.4364 140.53) - (xy 162.4364 141.191444) - (xy 162.442801 141.250972) - (xy 162.442803 141.250979) - (xy 162.493045 141.385686) - (xy 162.493049 141.385693) - (xy 162.579209 141.500787) - (xy 162.579212 141.50079) - (xy 162.694306 141.58695) - (xy 162.694313 141.586954) - (xy 162.82902 141.637196) - (xy 162.829027 141.637198) - (xy 162.888555 141.643599) - (xy 162.888572 141.6436) - (xy 163.55 141.6436) - (xy 163.55 140.724297) - (xy 163.655408 140.772435) - (xy 163.763666 140.788) - (xy 163.836334 140.788) - (xy 163.944592 140.772435) - (xy 164.05 140.724297) - (xy 164.05 141.6436) - (xy 164.711428 141.6436) - (xy 164.711444 141.643599) - (xy 164.770972 141.637198) - (xy 164.770979 141.637196) - (xy 164.905686 141.586954) - (xy 164.905689 141.586952) - (xy 164.995688 141.519579) - (xy 165.061152 141.495161) - (xy 165.129426 141.510012) - (xy 165.144312 141.519579) - (xy 165.23431 141.586952) - (xy 165.234313 141.586954) - (xy 165.36902 141.637196) - (xy 165.369027 141.637198) - (xy 165.428555 141.643599) - (xy 165.428572 141.6436) - (xy 166.09 141.6436) - (xy 166.09 140.724297) - (xy 166.195408 140.772435) - (xy 166.303666 140.788) - (xy 166.376334 140.788) - (xy 166.484592 140.772435) - (xy 166.59 140.724297) - (xy 166.59 141.6436) - (xy 167.251428 141.6436) - (xy 167.251444 141.643599) - (xy 167.310972 141.637198) - (xy 167.310979 141.637196) - (xy 167.445686 141.586954) - (xy 167.445693 141.58695) - (xy 167.560787 141.50079) - (xy 167.56079 141.500787) - (xy 167.64695 141.385693) - (xy 167.646954 141.385686) - (xy 167.697196 141.250979) - (xy 167.697198 141.250972) - (xy 167.703599 141.191444) - (xy 167.7036 141.191427) - (xy 167.7036 140.53) - (xy 166.783196 140.53) - (xy 166.806845 140.493201) - (xy 166.848 140.353039) - (xy 166.848 140.206961) - (xy 166.806845 140.066799) - (xy 166.783196 140.03) - (xy 167.7036 140.03) - (xy 167.7036 139.368572) - (xy 167.703599 139.368555) - (xy 167.697198 139.309027) - (xy 167.697196 139.30902) - (xy 167.646954 139.174313) - (xy 167.64695 139.174306) - (xy 167.56079 139.059212) - (xy 167.560787 139.059209) - (xy 167.445693 138.973049) - (xy 167.445686 138.973045) - (xy 167.330651 138.93014) - (xy 167.274717 138.888269) - (xy 167.2503 138.822804) - (xy 167.265152 138.754531) - (xy 167.282749 138.729981) - (xy 167.420156 138.580719) - (xy 167.543802 138.391465) - (xy 167.634611 138.184441) - (xy 167.634612 138.184436) - (xy 167.635539 138.181738) - (xy 167.636214 138.180783) - (xy 167.636671 138.179744) - (xy 167.636884 138.179837) - (xy 167.675925 138.124722) - (xy 167.740725 138.098592) - (xy 167.809364 138.111644) - (xy 167.860052 138.159733) - (xy 167.876759 138.218105) - (xy 167.87729 138.23502) - (xy 167.877291 138.235023) - (xy 167.88288 138.254263) - (xy 167.886824 138.273307) - (xy 167.889336 138.293187) - (xy 167.90649 138.336515) - (xy 167.908382 138.342043) - (xy 167.921381 138.386784) - (xy 167.93158 138.40403) - (xy 167.940138 138.421499) - (xy 167.947514 138.440128) - (xy 167.974898 138.477819) - (xy 167.978106 138.482703) - (xy 168.001827 138.522812) - (xy 168.001833 138.52282) - (xy 168.01599 138.536976) - (xy 168.028628 138.551772) - (xy 168.040405 138.567982) - (xy 168.040406 138.567983) - (xy 168.076309 138.597684) - (xy 168.08062 138.601606) - (xy 171.390348 141.911334) - (xy 174.697584 145.21857) - (xy 174.731069 145.279893) - (xy 174.733556 145.315517) - (xy 174.719732 145.499996) - (xy 174.719732 145.500004) - (xy 174.738777 145.754154) - (xy 174.79158 145.9855) - (xy 174.795492 146.002637) - (xy 174.888607 146.239888) - (xy 175.016041 146.460612) - (xy 175.17495 146.659877) - (xy 175.361783 146.833232) - (xy 175.572366 146.976805) - (xy 175.572371 146.976807) - (xy 175.572372 146.976808) - (xy 175.572373 146.976809) - (xy 175.69064 147.033763) - (xy 175.801992 147.087387) - (xy 175.801993 147.087387) - (xy 175.801996 147.087389) - (xy 176.045542 147.162513) - (xy 176.297565 147.2005) - (xy 176.552435 147.2005) - (xy 176.804458 147.162513) - (xy 177.048004 147.087389) - (xy 177.275061 146.978044) - (xy 177.277626 146.976809) - (xy 177.277626 146.976808) - (xy 177.277634 146.976805) - (xy 177.488217 146.833232) - (xy 177.67505 146.659877) - (xy 177.833959 146.460612) - (xy 177.961393 146.239888) - (xy 178.054508 146.002637) - (xy 178.111222 145.754157) - (xy 178.123877 145.585289) - (xy 178.130268 145.500004) - (xy 178.130268 145.499995) - (xy 178.116443 145.315517) - (xy 178.111222 145.245843) - (xy 178.054508 144.997363) - (xy 177.961393 144.760112) - (xy 177.833959 144.539388) - (xy 177.67505 144.340123) - (xy 177.488217 144.166768) - (xy 177.277634 144.023195) - (xy 177.27763 144.023193) - (xy 177.277627 144.023191) - (xy 177.277626 144.02319) - (xy 177.048006 143.912612) - (xy 177.048008 143.912612) - (xy 176.96102 143.88578) - (xy 176.904969 143.86849) - (xy 176.846711 143.829921) - (xy 176.818553 143.765976) - (xy 176.829437 143.696959) - (xy 176.875906 143.644782) - (xy 176.90497 143.631509) - (xy 177.048004 143.587389) - (xy 177.277634 143.476805) - (xy 177.488217 143.333232) - (xy 177.67505 143.159877) - (xy 177.833959 142.960612) - (xy 177.961393 142.739888) - (xy 178.054508 142.502637) - (xy 178.111222 142.254157) - (xy 178.130268 142) - (xy 178.121987 141.8895) - (xy 178.111222 141.745845) - (xy 178.109692 141.739142) - (xy 178.054508 141.497363) - (xy 177.961393 141.260112) - (xy 177.833959 141.039388) - (xy 177.67505 140.840123) - (xy 177.488217 140.666768) - (xy 177.277634 140.523195) - (xy 177.27763 140.523193) - (xy 177.277627 140.523191) - (xy 177.277626 140.52319) - (xy 177.048006 140.412612) - (xy 177.048008 140.412612) - (xy 176.90497 140.368491) - (xy 176.846711 140.329921) - (xy 176.818553 140.265976) - (xy 176.829437 140.196959) - (xy 176.875906 140.144782) - (xy 176.90497 140.131509) - (xy 177.048004 140.087389) - (xy 177.229458 140.000005) - (xy 177.277626 139.976809) - (xy 177.277626 139.976808) - (xy 177.277634 139.976805) - (xy 177.488217 139.833232) - (xy 177.67505 139.659877) - (xy 177.833959 139.460612) - (xy 177.961393 139.239888) - (xy 178.054508 139.002637) - (xy 178.111222 138.754157) - (xy 178.124219 138.580716) - (xy 178.130268 138.500004) - (xy 178.130268 138.499995) - (xy 178.111222 138.245845) - (xy 178.108751 138.23502) - (xy 178.054508 137.997363) - (xy 177.961393 137.760112) - (xy 177.833959 137.539388) - (xy 177.67505 137.340123) - (xy 177.488217 137.166768) - (xy 177.277634 137.023195) - (xy 177.27763 137.023193) - (xy 177.277627 137.023191) - (xy 177.277626 137.02319) - (xy 177.048006 136.912612) - (xy 177.048008 136.912612) - (xy 176.90497 136.868491) - (xy 176.846711 136.829921) - (xy 176.818553 136.765976) - (xy 176.829437 136.696959) - (xy 176.875906 136.644782) - (xy 176.90497 136.631509) - (xy 177.048004 136.587389) - (xy 177.257477 136.486512) - (xy 177.277626 136.476809) - (xy 177.277626 136.476808) - (xy 177.277634 136.476805) - (xy 177.488217 136.333232) - (xy 177.67505 136.159877) - (xy 177.833959 135.960612) - (xy 177.961393 135.739888) - (xy 178.054508 135.502637) - (xy 178.111222 135.254157) - (xy 178.120415 135.131486) - (xy 178.130268 135.000004) - (xy 178.130268 134.999995) - (xy 178.111563 134.75039) - (xy 178.111222 134.745843) - (xy 178.054508 134.497363) - (xy 177.961393 134.260112) - (xy 177.833959 134.039388) - (xy 177.67505 133.840123) - (xy 177.488217 133.666768) - (xy 177.277634 133.523195) - (xy 177.27763 133.523193) - (xy 177.277627 133.523191) - (xy 177.277626 133.52319) - (xy 177.048006 133.412612) - (xy 177.048008 133.412612) - (xy 176.90497 133.368491) - (xy 176.846711 133.329921) - (xy 176.818553 133.265976) - (xy 176.829437 133.196959) - (xy 176.875906 133.144782) - (xy 176.90497 133.131509) - (xy 177.048004 133.087389) - (xy 177.277634 132.976805) - (xy 177.488217 132.833232) - (xy 177.67505 132.659877) - (xy 177.833959 132.460612) - (xy 177.961393 132.239888) - (xy 178.054508 132.002637) - (xy 178.111222 131.754157) - (xy 178.130268 131.5) - (xy 178.130197 131.499055) - (xy 178.113852 131.280945) - (xy 178.111222 131.245843) - (xy 178.054508 130.997363) - (xy 177.961393 130.760112) - (xy 177.833959 130.539388) - (xy 177.67505 130.340123) - (xy 177.488217 130.166768) - (xy 177.277634 130.023195) - (xy 177.27763 130.023193) - (xy 177.277627 130.023191) - (xy 177.277626 130.02319) - (xy 177.048006 129.912612) - (xy 177.048008 129.912612) - (xy 176.914388 129.871396) - (xy 176.904969 129.86849) - (xy 176.846711 129.829921) - (xy 176.818553 129.765976) - (xy 176.829437 129.696959) - (xy 176.875906 129.644782) - (xy 176.90497 129.631509) - (xy 177.048004 129.587389) - (xy 177.277634 129.476805) - (xy 177.488217 129.333232) - (xy 177.67505 129.159877) - (xy 177.833959 128.960612) - (xy 177.961393 128.739888) - (xy 178.054508 128.502637) - (xy 178.111222 128.254157) - (xy 178.12472 128.074033) - (xy 178.130268 128.000004) - (xy 178.130268 127.999995) - (xy 178.111222 127.745845) - (xy 178.108866 127.735524) - (xy 178.054508 127.497363) - (xy 177.961393 127.260112) - (xy 177.833959 127.039388) - (xy 177.67505 126.840123) - (xy 177.488217 126.666768) - (xy 177.277634 126.523195) - (xy 177.27763 126.523193) - (xy 177.277627 126.523191) - (xy 177.277626 126.52319) - (xy 177.048009 126.412613) - (xy 177.048006 126.412612) - (xy 177.048004 126.412611) - (xy 176.982445 126.392388) - (xy 176.904969 126.36849) - (xy 176.846711 126.329919) - (xy 176.818553 126.265974) - (xy 176.829437 126.196957) - (xy 176.875906 126.144781) - (xy 176.904965 126.13151) - (xy 177.048004 126.087389) - (xy 177.277634 125.976805) - (xy 177.488217 125.833232) - (xy 177.67505 125.659877) - (xy 177.833959 125.460612) - (xy 177.961393 125.239888) - (xy 178.054508 125.002637) - (xy 178.111222 124.754157) - (xy 178.119384 124.645232) - (xy 178.130268 124.500004) - (xy 178.130268 124.499995) - (xy 178.111222 124.245845) - (xy 178.100594 124.199281) - (xy 178.054508 123.997363) - (xy 177.961393 123.760112) - (xy 177.833959 123.539388) - (xy 177.67505 123.340123) - (xy 177.488217 123.166768) - (xy 177.277634 123.023195) - (xy 177.27763 123.023193) - (xy 177.277627 123.023191) - (xy 177.277626 123.02319) - (xy 177.048006 122.912612) - (xy 177.048008 122.912612) - (xy 176.90497 122.868491) - (xy 176.846711 122.829921) - (xy 176.818553 122.765976) - (xy 176.829437 122.696959) - (xy 176.875906 122.644782) - (xy 176.90497 122.631509) - (xy 177.048004 122.587389) - (xy 177.277634 122.476805) - (xy 177.488217 122.333232) - (xy 177.67505 122.159877) - (xy 177.833959 121.960612) - (xy 177.961393 121.739888) - (xy 178.054508 121.502637) - (xy 178.111222 121.254157) - (xy 178.130268 121) - (xy 178.128333 120.974184) - (xy 178.111222 120.745845) - (xy 178.08609 120.635735) - (xy 178.054508 120.497363) - (xy 177.961393 120.260112) - (xy 177.833959 120.039388) - (xy 177.67505 119.840123) - (xy 177.488217 119.666768) - (xy 177.277634 119.523195) - (xy 177.27763 119.523193) - (xy 177.277627 119.523191) - (xy 177.277626 119.52319) - (xy 177.048006 119.412612) - (xy 177.048008 119.412612) - (xy 176.90497 119.368491) - (xy 176.846711 119.329921) - (xy 176.818553 119.265976) - (xy 176.829437 119.196959) - (xy 176.875906 119.144782) - (xy 176.90497 119.131509) - (xy 177.048004 119.087389) - (xy 177.277634 118.976805) - (xy 177.488217 118.833232) - (xy 177.67505 118.659877) - (xy 177.833959 118.460612) - (xy 177.961393 118.239888) - (xy 178.054508 118.002637) - (xy 178.111222 117.754157) - (xy 178.124685 117.5745) - (xy 178.130268 117.500004) - (xy 178.130268 117.499995) - (xy 178.111222 117.245845) - (xy 178.09955 117.194707) - (xy 178.054508 116.997363) - (xy 177.961393 116.760112) - (xy 177.833959 116.539388) - (xy 177.67505 116.340123) - (xy 177.488217 116.166768) - (xy 177.277634 116.023195) - (xy 177.27763 116.023193) - (xy 177.277627 116.023191) - (xy 177.277626 116.02319) - (xy 177.048006 115.912612) - (xy 177.048008 115.912612) - (xy 176.90497 115.868491) - (xy 176.846711 115.829921) - (xy 176.818553 115.765976) - (xy 176.829437 115.696959) - (xy 176.875906 115.644782) - (xy 176.90497 115.631509) - (xy 177.048004 115.587389) - (xy 177.277634 115.476805) - (xy 177.488217 115.333232) - (xy 177.67505 115.159877) - (xy 177.833959 114.960612) - (xy 177.961393 114.739888) - (xy 178.054508 114.502637) - (xy 178.111222 114.254157) - (xy 178.126461 114.050806) - (xy 178.130268 114.000004) - (xy 178.130268 113.999995) - (xy 178.111222 113.745845) - (xy 178.108542 113.734105) - (xy 178.054508 113.497363) - (xy 177.961393 113.260112) - (xy 177.833959 113.039388) - (xy 177.67505 112.840123) - (xy 177.488217 112.666768) - (xy 177.277634 112.523195) - (xy 177.27763 112.523193) - (xy 177.277627 112.523191) - (xy 177.277626 112.52319) - (xy 177.048006 112.412612) - (xy 177.048008 112.412612) - (xy 176.90497 112.368491) - (xy 176.846711 112.329921) - (xy 176.818553 112.265976) - (xy 176.829437 112.196959) - (xy 176.875906 112.144782) - (xy 176.90497 112.131509) - (xy 177.048004 112.087389) - (xy 177.277634 111.976805) - (xy 177.488217 111.833232) - (xy 177.67505 111.659877) - (xy 177.833959 111.460612) - (xy 177.961393 111.239888) - (xy 178.054508 111.002637) - (xy 178.111222 110.754157) - (xy 178.121039 110.623158) - (xy 178.130268 110.500004) - (xy 178.130268 110.499995) - (xy 178.111222 110.245845) - (xy 178.110901 110.244439) - (xy 178.054508 109.997363) - (xy 177.961393 109.760112) - (xy 177.833959 109.539388) - (xy 177.67505 109.340123) - (xy 177.488217 109.166768) - (xy 177.277634 109.023195) - (xy 177.27763 109.023193) - (xy 177.277627 109.023191) - (xy 177.277626 109.02319) - (xy 177.048006 108.912612) - (xy 177.048008 108.912612) - (xy 176.90497 108.868491) - (xy 176.846711 108.829921) - (xy 176.818553 108.765976) - (xy 176.829437 108.696959) - (xy 176.875906 108.644782) - (xy 176.90497 108.631509) - (xy 177.048004 108.587389) - (xy 177.277634 108.476805) - (xy 177.488217 108.333232) - (xy 177.67505 108.159877) - (xy 177.833959 107.960612) - (xy 177.961393 107.739888) - (xy 178.054508 107.502637) - (xy 178.111222 107.254157) - (xy 178.130268 107) - (xy 178.111222 106.745843) - (xy 178.054508 106.497363) - (xy 177.961393 106.260112) - (xy 177.833959 106.039388) - (xy 177.67505 105.840123) - (xy 177.488217 105.666768) - (xy 177.277634 105.523195) - (xy 177.27763 105.523193) - (xy 177.277627 105.523191) - (xy 177.277626 105.52319) - (xy 177.048006 105.412612) - (xy 177.048008 105.412612) - (xy 176.90497 105.368491) - (xy 176.846711 105.329921) - (xy 176.818553 105.265976) - (xy 176.829437 105.196959) - (xy 176.875906 105.144782) - (xy 176.90497 105.131509) - (xy 177.048004 105.087389) - (xy 177.277634 104.976805) - (xy 177.488217 104.833232) - (xy 177.67505 104.659877) - (xy 177.833959 104.460612) - (xy 177.961393 104.239888) - (xy 178.054508 104.002637) - (xy 178.111222 103.754157) - (xy 178.126014 103.556768) - (xy 178.130268 103.500004) - (xy 178.130268 103.499995) - (xy 178.111222 103.245845) - (xy 178.0978 103.18704) - (xy 178.054508 102.997363) - (xy 177.961393 102.760112) - (xy 177.833959 102.539388) - (xy 177.67505 102.340123) - (xy 177.488217 102.166768) - (xy 177.277634 102.023195) - (xy 177.27763 102.023193) - (xy 177.277627 102.023191) - (xy 177.277626 102.02319) - (xy 177.048006 101.912612) - (xy 177.048008 101.912612) - (xy 176.90497 101.868491) - (xy 176.846711 101.829921) - (xy 176.818553 101.765976) - (xy 176.829437 101.696959) - (xy 176.875906 101.644782) - (xy 176.90497 101.631509) - (xy 177.048004 101.587389) - (xy 177.229458 101.500005) - (xy 177.277626 101.476809) - (xy 177.277626 101.476808) - (xy 177.277634 101.476805) - (xy 177.488217 101.333232) - (xy 177.67505 101.159877) - (xy 177.833959 100.960612) - (xy 177.961393 100.739888) - (xy 178.054508 100.502637) - (xy 178.111222 100.254157) - (xy 178.121426 100.117989) - (xy 178.130268 100.000004) - (xy 178.130268 99.999995) - (xy 178.111222 99.745845) - (xy 178.107032 99.727489) - (xy 178.054508 99.497363) - (xy 177.961393 99.260112) - (xy 177.833959 99.039388) - (xy 177.67505 98.840123) - (xy 177.488217 98.666768) - (xy 177.277634 98.523195) - (xy 177.27763 98.523193) - (xy 177.277627 98.523191) - (xy 177.277626 98.52319) - (xy 177.048006 98.412612) - (xy 177.048008 98.412612) - (xy 176.937036 98.378382) - (xy 176.904969 98.36849) - (xy 176.846711 98.329921) - (xy 176.818553 98.265976) - (xy 176.829437 98.196959) - (xy 176.875906 98.144782) - (xy 176.90497 98.131509) - (xy 177.048004 98.087389) - (xy 177.277634 97.976805) - (xy 177.488217 97.833232) - (xy 177.67505 97.659877) - (xy 177.833959 97.460612) - (xy 177.961393 97.239888) - (xy 178.054508 97.002637) - (xy 178.111222 96.754157) - (xy 178.130268 96.5) - (xy 178.126411 96.448535) - (xy 178.113784 96.280032) - (xy 178.111222 96.245843) - (xy 178.054508 95.997363) - (xy 177.961393 95.760112) - (xy 177.833959 95.539388) - (xy 177.67505 95.340123) - (xy 177.488217 95.166768) - (xy 177.277634 95.023195) - (xy 177.27763 95.023193) - (xy 177.277627 95.023191) - (xy 177.277626 95.02319) - (xy 177.048006 94.912612) - (xy 177.048008 94.912612) - (xy 176.90497 94.868491) - (xy 176.846711 94.829921) - (xy 176.818553 94.765976) - (xy 176.829437 94.696959) - (xy 176.875906 94.644782) - (xy 176.90497 94.631509) - (xy 177.048004 94.587389) - (xy 177.277634 94.476805) - (xy 177.488217 94.333232) - (xy 177.67505 94.159877) - (xy 177.833959 93.960612) - (xy 177.961393 93.739888) - (xy 178.054508 93.502637) - (xy 178.111222 93.254157) - (xy 178.130268 93) - (xy 178.129925 92.995426) - (xy 178.113634 92.778027) - (xy 178.111222 92.745843) - (xy 178.054508 92.497363) - (xy 177.961393 92.260112) - (xy 177.833959 92.039388) - (xy 177.67505 91.840123) - (xy 177.488217 91.666768) - (xy 177.277634 91.523195) - (xy 177.27763 91.523193) - (xy 177.277627 91.523191) - (xy 177.277626 91.52319) - (xy 177.048006 91.412612) - (xy 177.048008 91.412612) - (xy 176.804466 91.337489) - (xy 176.804462 91.337488) - (xy 176.804458 91.337487) - (xy 176.683231 91.319214) - (xy 176.55244 91.2995) - (xy 176.552435 91.2995) - (xy 176.297565 91.2995) - (xy 176.297559 91.2995) - (xy 176.140609 91.323157) - (xy 176.045542 91.337487) - (xy 176.045538 91.337488) - (xy 176.045539 91.337488) - (xy 176.045533 91.337489) - (xy 175.801992 91.412612) - (xy 175.572373 91.52319) - (xy 175.572372 91.523191) - (xy 175.361782 91.666768) - (xy 175.174952 91.840121) - (xy 175.17495 91.840123) - (xy 175.016041 92.039388) - (xy 174.888608 92.260109) - (xy 174.795492 92.497362) - (xy 174.79549 92.497369) - (xy 174.738777 92.745845) - (xy 174.719732 92.999995) - (xy 174.719732 93.000004) - (xy 174.738777 93.254154) - (xy 174.794875 93.499937) - (xy 174.795492 93.502637) - (xy 174.888607 93.739888) - (xy 175.016041 93.960612) - (xy 175.17495 94.159877) - (xy 175.361783 94.333232) - (xy 175.572366 94.476805) - (xy 175.572371 94.476807) - (xy 175.572372 94.476808) - (xy 175.572373 94.476809) - (xy 175.694328 94.535538) - (xy 175.801992 94.587387) - (xy 175.801993 94.587387) - (xy 175.801996 94.587389) - (xy 175.865418 94.606952) - (xy 175.945029 94.631509) - (xy 176.003288 94.67008) - (xy 176.031446 94.734024) - (xy 176.020562 94.803041) - (xy 175.974093 94.855218) - (xy 175.945029 94.868491) - (xy 175.801992 94.912612) - (xy 175.572373 95.02319) - (xy 175.572372 95.023191) - (xy 175.361782 95.166768) - (xy 175.174952 95.340121) - (xy 175.17495 95.340123) - (xy 175.016041 95.539388) - (xy 174.888608 95.760109) - (xy 174.795492 95.997362) - (xy 174.79549 95.997369) - (xy 174.738777 96.245845) - (xy 174.719732 96.499995) - (xy 174.719732 96.500004) - (xy 174.738777 96.754154) - (xy 174.769052 96.886799) - (xy 174.795492 97.002637) - (xy 174.888607 97.239888) - (xy 175.016041 97.460612) - (xy 175.17495 97.659877) - (xy 175.361783 97.833232) - (xy 175.572366 97.976805) - (xy 175.572371 97.976807) - (xy 175.572372 97.976808) - (xy 175.572373 97.976809) - (xy 175.689635 98.033279) - (xy 175.801992 98.087387) - (xy 175.801993 98.087387) - (xy 175.801996 98.087389) - (xy 175.875043 98.109921) - (xy 175.945029 98.131509) - (xy 176.003288 98.17008) - (xy 176.031446 98.234024) - (xy 176.020562 98.303041) - (xy 175.974093 98.355218) - (xy 175.945029 98.368491) - (xy 175.801992 98.412612) - (xy 175.572373 98.52319) - (xy 175.572372 98.523191) - (xy 175.361782 98.666768) - (xy 175.174952 98.840121) - (xy 175.17495 98.840123) - (xy 175.016041 99.039388) - (xy 174.888608 99.260109) - (xy 174.795492 99.497362) - (xy 174.79549 99.497369) - (xy 174.738777 99.745845) - (xy 174.719732 99.999995) - (xy 174.719732 100.000004) - (xy 174.738777 100.254154) - (xy 174.792328 100.488777) - (xy 174.795492 100.502637) - (xy 174.888607 100.739888) - (xy 175.016041 100.960612) - (xy 175.17495 101.159877) - (xy 175.361783 101.333232) - (xy 175.572366 101.476805) - (xy 175.572371 101.476807) - (xy 175.572372 101.476808) - (xy 175.572373 101.476809) - (xy 175.673482 101.5255) - (xy 175.801996 101.587389) - (xy 175.945029 101.631508) - (xy 176.003287 101.670078) - (xy 176.031445 101.734023) - (xy 176.020562 101.803039) - (xy 175.974094 101.855216) - (xy 175.94503 101.86849) - (xy 175.80199 101.912613) - (xy 175.572373 102.02319) - (xy 175.572372 102.023191) - (xy 175.361782 102.166768) - (xy 175.174952 102.340121) - (xy 175.17495 102.340123) - (xy 175.016041 102.539388) - (xy 174.888608 102.760109) - (xy 174.795492 102.997362) - (xy 174.79549 102.997369) - (xy 174.738777 103.245845) - (xy 174.719732 103.499995) - (xy 174.719732 103.500004) - (xy 174.738777 103.754154) - (xy 174.767336 103.879281) - (xy 174.795492 104.002637) - (xy 174.888607 104.239888) - (xy 175.016041 104.460612) - (xy 175.17495 104.659877) - (xy 175.361783 104.833232) - (xy 175.572366 104.976805) - (xy 175.572371 104.976807) - (xy 175.572372 104.976808) - (xy 175.572373 104.976809) - (xy 175.694328 105.035538) - (xy 175.801992 105.087387) - (xy 175.801993 105.087387) - (xy 175.801996 105.087389) - (xy 175.90836 105.120197) - (xy 175.945029 105.131509) - (xy 176.003288 105.17008) - (xy 176.031446 105.234024) - (xy 176.020562 105.303041) - (xy 175.974093 105.355218) - (xy 175.945029 105.368491) - (xy 175.801992 105.412612) - (xy 175.572373 105.52319) - (xy 175.572372 105.523191) - (xy 175.361782 105.666768) - (xy 175.174952 105.840121) - (xy 175.17495 105.840123) - (xy 175.016041 106.039388) - (xy 174.888608 106.260109) - (xy 174.795492 106.497362) - (xy 174.79549 106.497369) - (xy 174.738777 106.745845) - (xy 174.719732 106.999995) - (xy 174.719732 107.000004) - (xy 174.738777 107.254154) - (xy 174.795489 107.502625) - (xy 174.795492 107.502637) - (xy 174.812668 107.5464) - (xy 174.834118 107.601055) - (xy 174.840286 107.670651) - (xy 174.807847 107.732535) - (xy 174.80637 107.734037) - (xy 171.916208 110.624199) - (xy 171.903951 110.63402) - (xy 171.904134 110.634241) - (xy 171.898122 110.639214) - (xy 171.851432 110.688932) - (xy 171.850079 110.690329) - (xy 171.829889 110.710519) - (xy 171.829877 110.710532) - (xy 171.825621 110.716017) - (xy 171.821837 110.720447) - (xy 171.789937 110.754418) - (xy 171.789936 110.75442) - (xy 171.780284 110.771976) - (xy 171.76961 110.788226) - (xy 171.757329 110.804061) - (xy 171.757324 110.804068) - (xy 171.738815 110.846838) - (xy 171.736245 110.852084) - (xy 171.713803 110.892906) - (xy 171.708822 110.912307) - (xy 171.702521 110.93071) - (xy 171.694562 110.949102) - (xy 171.694561 110.949105) - (xy 171.687271 110.995127) - (xy 171.686087 111.000846) - (xy 171.674501 111.045972) - (xy 171.674499 111.045984) - (xy 171.674499 111.06602) - (xy 171.672973 111.085411) - (xy 171.66984 111.105194) - (xy 171.66984 111.105195) - (xy 171.674225 111.151583) - (xy 171.6745 111.157421) - (xy 171.6745 114.253151) - (xy 171.654815 114.32019) - (xy 171.638181 114.340832) - (xy 167.940832 118.038181) - (xy 167.879509 118.071666) - (xy 167.853151 118.0745) - (xy 167.732266 118.0745) - (xy 167.665227 118.054815) - (xy 167.619472 118.002011) - (xy 167.609528 117.932853) - (xy 167.618711 117.900689) - (xy 167.634611 117.864441) - (xy 167.690107 117.645293) - (xy 167.705331 117.461564) - (xy 167.708775 117.420006) - (xy 167.708775 117.419993) - (xy 167.690107 117.19471) - (xy 167.690107 117.194707) - (xy 167.634611 116.975559) - (xy 167.543802 116.768535) - (xy 167.420156 116.579281) - (xy 167.420153 116.579278) - (xy 167.420149 116.579272) - (xy 167.267049 116.412963) - (xy 167.267048 116.412962) - (xy 167.267046 116.41296) - (xy 167.088649 116.274107) - (xy 167.088647 116.274106) - (xy 167.088646 116.274105) - (xy 167.088639 116.2741) - (xy 167.060836 116.259055) - (xy 167.011244 116.209837) - (xy 166.996135 116.14162) - (xy 167.020306 116.076064) - (xy 167.060836 116.040945) - (xy 167.088639 116.025899) - (xy 167.088642 116.025896) - (xy 167.088649 116.025893) - (xy 167.267046 115.88704) - (xy 167.392741 115.7505) - (xy 167.420149 115.720727) - (xy 167.420151 115.720724) - (xy 167.420156 115.720719) - (xy 167.543802 115.531465) - (xy 167.634611 115.324441) - (xy 167.690107 115.105293) - (xy 167.699899 114.98712) - (xy 167.708775 114.880006) - (xy 167.708775 114.879993) - (xy 167.690987 114.665329) - (xy 167.690107 114.654707) - (xy 167.634611 114.435559) - (xy 167.543802 114.228535) - (xy 167.524448 114.198912) - (xy 167.442199 114.07302) - (xy 167.420156 114.039281) - (xy 167.420153 114.039278) - (xy 167.420149 114.039272) - (xy 167.267049 113.872963) - (xy 167.267048 113.872962) - (xy 167.267046 113.87296) - (xy 167.088649 113.734107) - (xy 167.088647 113.734106) - (xy 167.088646 113.734105) - (xy 167.088643 113.734103) - (xy 167.060833 113.719053) - (xy 167.011243 113.669833) - (xy 166.996136 113.601616) - (xy 167.020307 113.536061) - (xy 167.060835 113.500945) - (xy 167.088649 113.485893) - (xy 167.267046 113.34704) - (xy 167.400453 113.202122) - (xy 167.420149 113.180727) - (xy 167.420151 113.180724) - (xy 167.420156 113.180719) - (xy 167.543802 112.991465) - (xy 167.610188 112.840121) - (xy 167.623536 112.80969) - (xy 167.668492 112.756204) - (xy 167.735228 112.735514) - (xy 167.737092 112.7355) - (xy 168.057257 112.7355) - (xy 168.072877 112.737224) - (xy 168.072904 112.736939) - (xy 168.080666 112.737673) - (xy 168.080666 112.737672) - (xy 168.080667 112.737673) - (xy 168.083999 112.737568) - (xy 168.148847 112.735531) - (xy 168.150794 112.7355) - (xy 168.179347 112.7355) - (xy 168.17935 112.7355) - (xy 168.186228 112.73463) - (xy 168.192041 112.734172) - (xy 168.238627 112.732709) - (xy 168.257869 112.727117) - (xy 168.276912 112.723174) - (xy 168.296792 112.720664) - (xy 168.340122 112.703507) - (xy 168.345646 112.701617) - (xy 168.349396 112.700527) - (xy 168.39039 112.688618) - (xy 168.407629 112.678422) - (xy 168.425103 112.669862) - (xy 168.443727 112.662488) - (xy 168.443727 112.662487) - (xy 168.443732 112.662486) - (xy 168.481449 112.635082) - (xy 168.486305 112.631892) - (xy 168.52642 112.60817) - (xy 168.540589 112.593999) - (xy 168.555379 112.581368) - (xy 168.571587 112.569594) - (xy 168.601299 112.533676) - (xy 168.605212 112.529376) - (xy 173.133786 108.000802) - (xy 173.146048 107.99098) - (xy 173.145865 107.990759) - (xy 173.151873 107.985788) - (xy 173.151877 107.985786) - (xy 173.198649 107.935977) - (xy 173.199891 107.934697) - (xy 173.22012 107.91447) - (xy 173.224373 107.908986) - (xy 173.22815 107.904563) - (xy 173.260062 107.870582) - (xy 173.269714 107.853023) - (xy 173.280389 107.836772) - (xy 173.292674 107.820936) - (xy 173.311186 107.778152) - (xy 173.313742 107.772935) - (xy 173.335779 107.732853) - (xy 173.336194 107.732098) - (xy 173.336194 107.732097) - (xy 173.336197 107.732092) - (xy 173.34118 107.71268) - (xy 173.347477 107.694291) - (xy 173.355438 107.675895) - (xy 173.362729 107.629853) - (xy 173.363908 107.624162) - (xy 173.3755 107.579019) - (xy 173.3755 107.558974) - (xy 173.377025 107.539591) - (xy 173.38016 107.519804) - (xy 173.375775 107.473415) - (xy 173.3755 107.467577) - (xy 173.3755 89.046847) - (xy 173.395185 88.979808) - (xy 173.411814 88.959171) - (xy 173.809167 88.561818) - (xy 173.87049 88.528334) - (xy 173.896848 88.5255) - (xy 174.759172 88.5255) - (xy 174.826211 88.545185) - (xy 174.871966 88.597989) - (xy 174.874588 88.60417) - (xy 174.888607 88.639888) - (xy 175.016041 88.860612) - (xy 175.17495 89.059877) - (xy 175.361783 89.233232) - (xy 175.572366 89.376805) - (xy 175.572371 89.376807) - (xy 175.572372 89.376808) - (xy 175.572373 89.376809) - (xy 175.691326 89.434093) - (xy 175.801992 89.487387) - (xy 175.801993 89.487387) - (xy 175.801996 89.487389) - (xy 176.045542 89.562513) - (xy 176.297565 89.6005) - (xy 176.552435 89.6005) - (xy 176.804458 89.562513) - (xy 177.048004 89.487389) - (xy 177.277634 89.376805) - (xy 177.488217 89.233232) - (xy 177.67505 89.059877) - (xy 177.833959 88.860612) - (xy 177.961393 88.639888) - (xy 178.054508 88.402637) - (xy 178.111222 88.154157) - (xy 178.130268 87.9) - (xy 178.129237 87.886246) - (xy 178.111222 87.645845) - (xy 178.109371 87.637736) - (xy 178.054508 87.397363) - (xy 177.961393 87.160112) - (xy 177.833959 86.939388) - (xy 177.67505 86.740123) - (xy 177.488217 86.566768) - (xy 177.277634 86.423195) - (xy 177.27763 86.423193) - (xy 177.277627 86.423191) - (xy 177.277626 86.42319) - (xy 177.048006 86.312612) - (xy 177.048008 86.312612) - (xy 176.90497 86.268491) - (xy 176.846711 86.229921) - (xy 176.818553 86.165976) - (xy 176.829437 86.096959) - (xy 176.875906 86.044782) - (xy 176.90497 86.031509) - (xy 177.048004 85.987389) - (xy 177.277634 85.876805) - (xy 177.488217 85.733232) - (xy 177.67505 85.559877) - (xy 177.833959 85.360612) - (xy 177.961393 85.139888) - (xy 178.054508 84.902637) - (xy 178.111222 84.654157) - (xy 178.130268 84.4) - (xy 178.111222 84.145843) - (xy 178.054508 83.897363) - (xy 177.961393 83.660112) - (xy 177.833959 83.439388) - (xy 177.67505 83.240123) - (xy 177.488217 83.066768) - (xy 177.277634 82.923195) - (xy 177.27763 82.923193) - (xy 177.277627 82.923191) - (xy 177.277626 82.92319) - (xy 177.048006 82.812612) - (xy 177.048008 82.812612) - (xy 176.90497 82.768491) - (xy 176.846711 82.729921) - (xy 176.818553 82.665976) - (xy 176.829437 82.596959) - (xy 176.875906 82.544782) - (xy 176.90497 82.531509) - (xy 177.048004 82.487389) - (xy 177.277634 82.376805) - (xy 177.488217 82.233232) - (xy 177.67505 82.059877) - (xy 177.833959 81.860612) - (xy 177.961393 81.639888) - (xy 178.054508 81.402637) - (xy 178.111222 81.154157) - (xy 178.130268 80.9) - (xy 178.129076 80.8841) - (xy 178.111222 80.645845) - (xy 178.077258 80.49704) - (xy 178.054508 80.397363) - (xy 177.961393 80.160112) - (xy 177.833959 79.939388) - (xy 177.67505 79.740123) - (xy 177.488217 79.566768) - (xy 177.277634 79.423195) - (xy 177.27763 79.423193) - (xy 177.277627 79.423191) - (xy 177.277626 79.42319) - (xy 177.048009 79.312613) - (xy 177.048006 79.312612) - (xy 177.048004 79.312611) - (xy 176.982445 79.292388) - (xy 176.904969 79.26849) - (xy 176.846711 79.229919) - (xy 176.818553 79.165974) - (xy 176.829437 79.096957) - (xy 176.875906 79.044781) - (xy 176.904965 79.03151) - (xy 177.048004 78.987389) - (xy 177.277634 78.876805) - (xy 177.488217 78.733232) - (xy 177.67505 78.559877) - (xy 177.833959 78.360612) - (xy 177.961393 78.139888) - (xy 178.054508 77.902637) - (xy 178.111222 77.654157) - (xy 178.12648 77.450548) - (xy 178.130268 77.400004) - (xy 178.130268 77.399995) - (xy 178.111222 77.145845) - (xy 178.054509 76.897369) - (xy 178.054508 76.897363) - (xy 177.961393 76.660112) - (xy 177.833959 76.439388) - (xy 177.67505 76.240123) - (xy 177.488217 76.066768) - (xy 177.277634 75.923195) - (xy 177.27763 75.923193) - (xy 177.277627 75.923191) - (xy 177.277626 75.92319) - (xy 177.048006 75.812612) - (xy 177.048008 75.812612) - (xy 176.90497 75.768491) - (xy 176.846711 75.729921) - (xy 176.818553 75.665976) - (xy 176.829437 75.596959) - (xy 176.875906 75.544782) - (xy 176.90497 75.531509) - (xy 177.048004 75.487389) - (xy 177.277634 75.376805) - (xy 177.488217 75.233232) - (xy 177.67505 75.059877) - (xy 177.833959 74.860612) - (xy 177.961393 74.639888) - (xy 178.054508 74.402637) - (xy 178.111222 74.154157) - (xy 178.122172 74.008032) - (xy 178.130268 73.900004) - (xy 178.130268 73.899995) - (xy 178.111222 73.645845) - (xy 178.095972 73.579031) - (xy 178.054508 73.397363) - (xy 177.961393 73.160112) - (xy 177.833959 72.939388) - (xy 177.67505 72.740123) - (xy 177.488217 72.566768) - (xy 177.277634 72.423195) - (xy 177.27763 72.423193) - (xy 177.277627 72.423191) - (xy 177.277626 72.42319) - (xy 177.048006 72.312612) - (xy 177.048008 72.312612) - (xy 176.90497 72.268491) - (xy 176.846711 72.229921) - (xy 176.818553 72.165976) - (xy 176.829437 72.096959) - (xy 176.875906 72.044782) - (xy 176.90497 72.031509) - (xy 177.048004 71.987389) - (xy 177.277634 71.876805) - (xy 177.488217 71.733232) - (xy 177.67505 71.559877) - (xy 177.833959 71.360612) - (xy 177.961393 71.139888) - (xy 178.054508 70.902637) - (xy 178.111222 70.654157) - (xy 178.130268 70.4) - (xy 178.121237 70.279492) - (xy 178.111222 70.145845) - (xy 178.106657 70.125846) - (xy 178.054508 69.897363) - (xy 177.961393 69.660112) - (xy 177.833959 69.439388) - (xy 177.67505 69.240123) - (xy 177.488217 69.066768) - (xy 177.277634 68.923195) - (xy 177.27763 68.923193) - (xy 177.277627 68.923191) - (xy 177.277626 68.92319) - (xy 177.048006 68.812612) - (xy 177.048008 68.812612) - (xy 176.96102 68.78578) - (xy 176.904969 68.76849) - (xy 176.846711 68.729921) - (xy 176.818553 68.665976) - (xy 176.829437 68.596959) - (xy 176.875906 68.544782) - (xy 176.90497 68.531509) - (xy 177.048004 68.487389) - (xy 177.277634 68.376805) - (xy 177.488217 68.233232) - (xy 177.67505 68.059877) - (xy 177.833959 67.860612) - (xy 177.961393 67.639888) - (xy 178.054508 67.402637) - (xy 178.111222 67.154157) - (xy 178.122229 67.007282) - (xy 178.130268 66.900004) - (xy 178.130268 66.899995) - (xy 178.111222 66.645845) - (xy 178.054509 66.397369) - (xy 178.054508 66.397363) - (xy 177.961393 66.160112) - (xy 177.833959 65.939388) - (xy 177.67505 65.740123) - (xy 177.488217 65.566768) - (xy 177.277634 65.423195) - (xy 177.27763 65.423193) - (xy 177.277627 65.423191) - (xy 177.277626 65.42319) - (xy 177.048009 65.312613) - (xy 177.048006 65.312612) - (xy 177.048004 65.312611) - (xy 176.982445 65.292388) - (xy 176.904969 65.26849) - (xy 176.846711 65.229919) - (xy 176.818553 65.165974) - (xy 176.829437 65.096957) - (xy 176.875906 65.044781) - (xy 176.904965 65.03151) - (xy 177.048004 64.987389) - (xy 177.277634 64.876805) - (xy 177.488217 64.733232) - (xy 177.67505 64.559877) - (xy 177.833959 64.360612) - (xy 177.961393 64.139888) - (xy 178.054508 63.902637) - (xy 178.111222 63.654157) - (xy 178.127241 63.440396) - (xy 178.130268 63.400004) - (xy 178.130268 63.399995) - (xy 178.115034 63.196706) - (xy 178.111222 63.145843) - (xy 178.054508 62.897363) - (xy 177.961393 62.660112) - (xy 177.833959 62.439388) - (xy 177.67505 62.240123) - (xy 177.488217 62.066768) - (xy 177.277634 61.923195) - (xy 177.27763 61.923193) - (xy 177.277627 61.923191) - (xy 177.277626 61.92319) - (xy 177.048006 61.812612) - (xy 177.048008 61.812612) - (xy 176.804466 61.737489) - (xy 176.804462 61.737488) - (xy 176.804458 61.737487) - (xy 176.683231 61.719214) - (xy 176.55244 61.6995) - (xy 176.552435 61.6995) - (xy 176.297565 61.6995) - (xy 176.297559 61.6995) - (xy 176.140609 61.723157) - (xy 176.045542 61.737487) - (xy 176.045538 61.737488) - (xy 176.045539 61.737488) - (xy 176.045533 61.737489) - (xy 175.801992 61.812612) - (xy 175.572373 61.92319) - (xy 175.572372 61.923191) - (xy 175.361782 62.066768) - (xy 175.174952 62.240121) - (xy 175.17495 62.240123) - (xy 175.016041 62.439388) - (xy 174.888608 62.660109) - (xy 174.795492 62.897362) - (xy 174.79549 62.897369) - (xy 174.738777 63.145845) - (xy 174.719732 63.399995) - (xy 174.719732 63.400004) - (xy 174.738777 63.654154) - (xy 174.79549 63.90263) - (xy 174.795493 63.902642) - (xy 174.841164 64.019008) - (xy 174.847333 64.088605) - (xy 174.814895 64.150488) - (xy 174.813417 64.151991) - (xy 169.216208 69.749199) - (xy 169.203951 69.75902) - (xy 169.204134 69.759241) - (xy 169.198122 69.764214) - (xy 169.151432 69.813932) - (xy 169.150079 69.815329) - (xy 169.129889 69.835519) - (xy 169.129877 69.835532) - (xy 169.125621 69.841017) - (xy 169.121837 69.845447) - (xy 169.089937 69.879418) - (xy 169.089936 69.87942) - (xy 169.080284 69.896976) - (xy 169.06961 69.913226) - (xy 169.057329 69.929061) - (xy 169.057324 69.929068) - (xy 169.038815 69.971838) - (xy 169.036245 69.977084) - (xy 169.013803 70.017906) - (xy 169.008822 70.037307) - (xy 169.002521 70.05571) - (xy 168.994562 70.074102) - (xy 168.994561 70.074105) - (xy 168.987271 70.120127) - (xy 168.986087 70.125846) - (xy 168.974501 70.170972) - (xy 168.974499 70.170984) - (xy 168.974499 70.19102) - (xy 168.972973 70.210411) - (xy 168.96984 70.230194) - (xy 168.96984 70.230195) - (xy 168.974225 70.276583) - (xy 168.9745 70.282421) - (xy 168.9745 100.753149) - (xy 168.954815 100.820188) - (xy 168.938181 100.84083) - (xy 167.871537 101.907474) - (xy 167.810214 101.940959) - (xy 167.740522 101.935975) - (xy 167.684589 101.894103) - (xy 167.66365 101.850233) - (xy 167.660422 101.837487) - (xy 167.634611 101.735559) - (xy 167.543802 101.528535) - (xy 167.420156 101.339281) - (xy 167.420153 101.339278) - (xy 167.420149 101.339272) - (xy 167.267049 101.172963) - (xy 167.267048 101.172962) - (xy 167.267046 101.17296) - (xy 167.088649 101.034107) - (xy 167.088647 101.034106) - (xy 167.088646 101.034105) - (xy 167.088643 101.034103) - (xy 167.060833 101.019053) - (xy 167.011243 100.969833) - (xy 166.996136 100.901616) - (xy 167.020307 100.836061) - (xy 167.060833 100.800946) - (xy 167.088649 100.785893) - (xy 167.267046 100.64704) - (xy 167.399979 100.502637) - (xy 167.420149 100.480727) - (xy 167.42015 100.480725) - (xy 167.420156 100.480719) - (xy 167.543802 100.291465) - (xy 167.634611 100.084441) - (xy 167.690107 99.865293) - (xy 167.701526 99.727487) - (xy 167.708775 99.640006) - (xy 167.708775 99.639993) - (xy 167.690107 99.41471) - (xy 167.690107 99.414707) - (xy 167.634611 99.195559) - (xy 167.543802 98.988535) - (xy 167.420156 98.799281) - (xy 167.420153 98.799278) - (xy 167.420149 98.799272) - (xy 167.267049 98.632963) - (xy 167.267048 98.632962) - (xy 167.267046 98.63296) - (xy 167.088649 98.494107) - (xy 167.088647 98.494106) - (xy 167.088646 98.494105) - (xy 167.088639 98.4941) - (xy 167.060836 98.479055) - (xy 167.011244 98.429837) - (xy 166.996135 98.36162) - (xy 167.020306 98.296064) - (xy 167.060836 98.260945) - (xy 167.088639 98.245899) - (xy 167.088642 98.245896) - (xy 167.088649 98.245893) - (xy 167.267046 98.10704) - (xy 167.420156 97.940719) - (xy 167.543802 97.751465) - (xy 167.634611 97.544441) - (xy 167.690107 97.325293) - (xy 167.708775 97.1) - (xy 167.708775 97.099993) - (xy 167.690107 96.87471) - (xy 167.690107 96.874707) - (xy 167.634611 96.655559) - (xy 167.543802 96.448535) - (xy 167.420156 96.259281) - (xy 167.42015 96.259274) - (xy 167.420149 96.259272) - (xy 167.267049 96.092963) - (xy 167.267044 96.092958) - (xy 167.088652 95.954109) - (xy 167.088646 95.954105) - (xy 167.087969 95.953739) - (xy 167.087745 95.953517) - (xy 167.084358 95.951304) - (xy 167.084813 95.950606) - (xy 167.038385 95.904513) - (xy 167.023 95.844691) - (xy 167.023 93.936205) - (xy 167.024309 93.918235) - (xy 167.024629 93.916047) - (xy 167.027789 93.894477) - (xy 167.023235 93.842431) - (xy 167.023 93.837028) - (xy 167.023 93.828796) - (xy 167.023 93.828791) - (xy 167.019295 93.797102) - (xy 167.019118 93.795376) - (xy 167.012499 93.719703) - (xy 167.012499 93.719701) - (xy 167.011039 93.712629) - (xy 167.011097 93.712616) - (xy 167.009465 93.705257) - (xy 167.009406 93.705272) - (xy 167.007741 93.698251) - (xy 167.007741 93.698245) - (xy 166.981784 93.626927) - (xy 166.981192 93.625224) - (xy 166.957313 93.553163) - (xy 166.954264 93.546624) - (xy 166.954317 93.546599) - (xy 166.951031 93.539811) - (xy 166.950979 93.539838) - (xy 166.947736 93.533382) - (xy 166.90603 93.469969) - (xy 166.905061 93.468449) - (xy 166.865214 93.403847) - (xy 166.860734 93.398181) - (xy 166.86078 93.398143) - (xy 166.856019 93.392299) - (xy 166.855974 93.392338) - (xy 166.851331 93.386805) - (xy 166.796134 93.334729) - (xy 166.794874 93.333506) - (xy 165.996819 92.53545) - (xy 165.963334 92.474127) - (xy 165.9605 92.447769) - (xy 165.9605 89.775071) - (xy 165.980185 89.708032) - (xy 166.008338 89.677218) - (xy 166.013288 89.673365) - (xy 166.137046 89.57704) - (xy 166.290156 89.410719) - (xy 166.413802 89.221465) - (xy 166.504611 89.014441) - (xy 166.560107 88.795293) - (xy 166.570476 88.670156) - (xy 166.578775 88.570006) - (xy 166.578775 88.569993) - (xy 166.560107 88.34471) - (xy 166.560107 88.344707) - (xy 166.504611 88.125559) - (xy 166.413802 87.918535) - (xy 166.401692 87.9) - (xy 166.290157 87.729283) - (xy 166.290149 87.729272) - (xy 166.137049 87.562963) - (xy 166.137044 87.562958) - (xy 166.008337 87.46278) - (xy 165.967524 87.406069) - (xy 165.9605 87.364927) - (xy 165.9605 81.925071) - (xy 165.980185 81.858032) - (xy 166.008338 81.827218) - (xy 166.010719 81.825364) - (xy 166.137046 81.72704) - (xy 166.25013 81.604199) - (xy 166.290149 81.560727) - (xy 166.290151 81.560724) - (xy 166.290156 81.560719) - (xy 166.413802 81.371465) - (xy 166.504611 81.164441) - (xy 166.560107 80.945293) - (xy 166.569334 80.833937) - (xy 166.578775 80.720006) - (xy 166.578775 80.719993) - (xy 166.560107 80.49471) - (xy 166.560107 80.494707) - (xy 166.504611 80.275559) - (xy 166.413802 80.068535) - (xy 166.377993 80.013726) - (xy 166.290157 79.879283) - (xy 166.290149 79.879272) - (xy 166.137049 79.712963) - (xy 166.137044 79.712958) - (xy 166.008337 79.61278) - (xy 165.967524 79.556069) - (xy 165.9605 79.514927) - (xy 165.9605 74.075071) - (xy 165.980185 74.008032) - (xy 166.008338 73.977218) - (xy 166.023317 73.965559) - (xy 166.137046 73.87704) - (xy 166.257378 73.746325) - (xy 166.290149 73.710727) - (xy 166.290151 73.710724) - (xy 166.290156 73.710719) - (xy 166.413802 73.521465) - (xy 166.504611 73.314441) - (xy 166.560107 73.095293) - (xy 166.572723 72.943039) - (xy 166.578775 72.870006) - (xy 166.578775 72.869993) - (xy 166.560107 72.64471) - (xy 166.560107 72.644707) - (xy 166.504611 72.425559) - (xy 166.413802 72.218535) - (xy 166.405671 72.20609) - (xy 166.349426 72.12) - (xy 166.290156 72.029281) - (xy 166.290153 72.029278) - (xy 166.290149 72.029272) - (xy 166.137049 71.862963) - (xy 166.137044 71.862958) - (xy 166.008337 71.76278) - (xy 165.967524 71.706069) - (xy 165.9605 71.664927) - (xy 165.9605 66.225071) - (xy 165.980185 66.158032) - (xy 166.008338 66.127218) - (xy 166.010719 66.125364) - (xy 166.137046 66.02704) - (xy 166.236832 65.918643) - (xy 166.290149 65.860727) - (xy 166.290151 65.860724) - (xy 166.290156 65.860719) - (xy 166.413802 65.671465) - (xy 166.504611 65.464441) - (xy 166.560107 65.245293) - (xy 166.569327 65.134024) - (xy 166.578775 65.020006) - (xy 166.578775 65.019993) - (xy 166.560107 64.79471) - (xy 166.560107 64.794707) - (xy 166.504611 64.575559) - (xy 166.413802 64.368535) - (xy 166.290156 64.179281) - (xy 166.290153 64.179278) - (xy 166.290149 64.179272) - (xy 166.137049 64.012963) - (xy 166.137048 64.012962) - (xy 166.137046 64.01296) - (xy 165.958649 63.874107) - (xy 165.958647 63.874106) - (xy 165.958646 63.874105) - (xy 165.958643 63.874103) - (xy 165.895481 63.839921) - (xy 165.845891 63.790701) - (xy 165.8305 63.730867) - (xy 165.8305 63.196706) - (xy 165.831809 63.178734) - (xy 165.835289 63.154977) - (xy 165.835289 63.154975) - (xy 165.832208 63.119765) - (xy 165.830734 63.102934) - (xy 165.830499 63.097522) - (xy 165.8305 63.089291) - (xy 165.826787 63.057527) - (xy 165.82662 63.055898) - (xy 165.819998 62.980203) - (xy 165.819995 62.980194) - (xy 165.818538 62.973135) - (xy 165.818598 62.973122) - (xy 165.816965 62.965757) - (xy 165.816906 62.965772) - (xy 165.815241 62.958749) - (xy 165.815241 62.958745) - (xy 165.789274 62.887403) - (xy 165.788698 62.885746) - (xy 165.764814 62.813665) - (xy 165.764809 62.813658) - (xy 165.761761 62.807118) - (xy 165.761815 62.807092) - (xy 165.758533 62.800312) - (xy 165.75848 62.80034) - (xy 165.755238 62.793885) - (xy 165.755237 62.793883) - (xy 165.713527 62.730466) - (xy 165.71258 62.72898) - (xy 165.672714 62.664347) - (xy 165.668234 62.658681) - (xy 165.66828 62.658643) - (xy 165.663519 62.652799) - (xy 165.663474 62.652838) - (xy 165.658831 62.647305) - (xy 165.603634 62.595229) - (xy 165.602374 62.594006) - (xy 164.722728 61.71436) - (xy 164.710949 61.70073) - (xy 164.703482 61.690701) - (xy 164.696612 61.681472) - (xy 164.692086 61.677674) - (xy 164.656587 61.647886) - (xy 164.652612 61.644244) - (xy 164.64969 61.641322) - (xy 164.646779 61.63841) - (xy 164.621736 61.618609) - (xy 164.620338 61.61747) - (xy 164.562214 61.568698) - (xy 164.55618 61.564729) - (xy 164.556212 61.56468) - (xy 164.549853 61.560628) - (xy 164.549822 61.560679) - (xy 164.54368 61.556891) - (xy 164.543678 61.55689) - (xy 164.543677 61.556889) - (xy 164.474872 61.524804) - (xy 164.473252 61.524019) - (xy 164.425227 61.499901) - (xy 164.405433 61.48996) - (xy 164.405431 61.489959) - (xy 164.40543 61.489959) - (xy 164.398645 61.487489) - (xy 164.398665 61.487433) - (xy 164.391549 61.484959) - (xy 164.391531 61.485015) - (xy 164.384674 61.482743) - (xy 164.310328 61.467391) - (xy 164.308569 61.467001) - (xy 164.234718 61.449499) - (xy 164.227547 61.448661) - (xy 164.227553 61.448601) - (xy 164.220055 61.447835) - (xy 164.22005 61.447895) - (xy 164.21286 61.447265) - (xy 164.136968 61.449474) - (xy 164.135165 61.4495) - (xy 153.415705 61.4495) - (xy 153.397735 61.448191) - (xy 153.373972 61.44471) - (xy 153.329512 61.448601) - (xy 153.321931 61.449264) - (xy 153.31653 61.4495) - (xy 141.163705 61.4495) - (xy 141.145735 61.448191) - (xy 141.121972 61.44471) - (xy 141.077512 61.448601) - (xy 141.069931 61.449264) - (xy 141.06453 61.4495) - (xy 141.056283 61.4495) - (xy 141.024606 61.453202) - (xy 141.022832 61.453384) - (xy 140.99239 61.456047) - (xy 140.947198 61.460001) - (xy 140.940132 61.46146) - (xy 140.94012 61.461404) - (xy 140.932763 61.463035) - (xy 140.932777 61.463092) - (xy 140.92574 61.46476) - (xy 140.854385 61.490729) - (xy 140.852685 61.49132) - (xy 140.780668 61.515185) - (xy 140.774126 61.518236) - (xy 140.774101 61.518183) - (xy 140.767308 61.521471) - (xy 140.767334 61.521523) - (xy 140.76088 61.524764) - (xy 140.697468 61.56647) - (xy 140.695948 61.567439) - (xy 140.631348 61.607285) - (xy 140.625683 61.611765) - (xy 140.625647 61.611719) - (xy 140.619798 61.616484) - (xy 140.619835 61.616528) - (xy 140.614309 61.621164) - (xy 140.562213 61.676381) - (xy 140.560958 61.677674) - (xy 134.049858 68.188772) - (xy 134.036229 68.200551) - (xy 134.016968 68.21489) - (xy 133.983398 68.254897) - (xy 133.979753 68.258876) - (xy 133.973907 68.264723) - (xy 133.954118 68.289751) - (xy 133.952981 68.291147) - (xy 133.904194 68.34929) - (xy 133.900229 68.355319) - (xy 133.900182 68.355288) - (xy 133.89613 68.361647) - (xy 133.896179 68.361677) - (xy 133.892389 68.367821) - (xy 133.860312 68.43661) - (xy 133.859527 68.438231) - (xy 133.825457 68.506072) - (xy 133.822988 68.512857) - (xy 133.822932 68.512836) - (xy 133.82046 68.51995) - (xy 133.820515 68.519969) - (xy 133.818243 68.526825) - (xy 133.802891 68.60117) - (xy 133.802501 68.602928) - (xy 133.784999 68.676779) - (xy 133.784161 68.683954) - (xy 133.784101 68.683947) - (xy 133.783335 68.691445) - (xy 133.783395 68.691451) - (xy 133.782765 68.69864) - (xy 133.784974 68.77453) - (xy 133.785 68.776333) - (xy 133.785 70.664927) - (xy 133.765315 70.731966) - (xy 133.737163 70.76278) - (xy 133.608455 70.862958) - (xy 133.553686 70.922453) - (xy 133.493798 70.958443) - (xy 133.42396 70.956342) - (xy 133.366345 70.916817) - (xy 133.346275 70.881802) - (xy 133.302454 70.764313) - (xy 133.30245 70.764306) - (xy 133.21629 70.649212) - (xy 133.216287 70.649209) - (xy 133.101193 70.563049) - (xy 133.101186 70.563045) - (xy 132.966479 70.512803) - (xy 132.966472 70.512801) - (xy 132.906944 70.5064) - (xy 132.2455 70.5064) - (xy 132.245499 71.425702) - (xy 132.140092 71.377565) - (xy 132.031834 71.362) - (xy 131.959166 71.362) - (xy 131.850908 71.377565) - (xy 131.7455 71.425702) - (xy 131.7455 70.5064) - (xy 131.084055 70.5064) - (xy 131.024527 70.512801) - (xy 131.02452 70.512803) - (xy 130.889813 70.563045) - (xy 130.889806 70.563049) - (xy 130.774712 70.649209) - (xy 130.774709 70.649212) - (xy 130.688549 70.764306) - (xy 130.688545 70.764313) - (xy 130.638303 70.89902) - (xy 130.638301 70.899027) - (xy 130.6319 70.958555) - (xy 130.6319 71.62) - (xy 131.552304 71.62) - (xy 131.528655 71.656799) - (xy 131.4875 71.796961) - (xy 131.4875 71.943039) - (xy 131.528655 72.083201) - (xy 131.552304 72.12) - (xy 130.6319 72.12) - (xy 130.6319 72.781444) - (xy 130.638301 72.840972) - (xy 130.638303 72.840979) - (xy 130.688545 72.975686) - (xy 130.688549 72.975693) - (xy 130.774709 73.090787) - (xy 130.774712 73.09079) - (xy 130.889806 73.17695) - (xy 130.889813 73.176954) - (xy 131.004848 73.219859) - (xy 131.060782 73.26173) - (xy 131.085199 73.327194) - (xy 131.070348 73.395467) - (xy 131.052745 73.420024) - (xy 130.915345 73.569279) - (xy 130.915342 73.569283) - (xy 130.791698 73.758533) - (xy 130.700888 73.96556) - (xy 130.645392 74.18471) - (xy 130.626725 74.409993) - (xy 130.626725 74.410006) - (xy 130.645392 74.635289) - (xy 130.700888 74.854439) - (xy 130.791698 75.061466) - (xy 130.915342 75.250716) - (xy 130.91535 75.250727) - (xy 131.06845 75.417036) - (xy 131.068454 75.41704) - (xy 131.246851 75.555893) - (xy 131.274665 75.570945) - (xy 131.324255 75.620165) - (xy 131.339363 75.688382) - (xy 131.315192 75.753937) - (xy 131.274665 75.789055) - (xy 131.246852 75.804106) - (xy 131.068455 75.942959) - (xy 131.06845 75.942963) - (xy 130.91535 76.109272) - (xy 130.915342 76.109283) - (xy 130.791698 76.298533) - (xy 130.700888 76.50556) - (xy 130.645392 76.72471) - (xy 130.626725 76.949993) - (xy 130.626725 76.950006) - (xy 130.645392 77.175289) - (xy 130.676637 77.298674) - (xy 130.674012 77.368494) - (xy 130.644112 77.416795) - (xy 129.366208 78.694699) - (xy 129.353951 78.70452) - (xy 129.354134 78.704741) - (xy 129.348122 78.709714) - (xy 129.301432 78.759432) - (xy 129.300079 78.760829) - (xy 129.279889 78.781019) - (xy 129.279877 78.781032) - (xy 129.275621 78.786517) - (xy 129.271837 78.790947) - (xy 129.239937 78.824918) - (xy 129.239936 78.82492) - (xy 129.230284 78.842476) - (xy 129.21961 78.858726) - (xy 129.207329 78.874561) - (xy 129.207324 78.874568) - (xy 129.188815 78.917338) - (xy 129.186245 78.922584) - (xy 129.163803 78.963406) - (xy 129.158822 78.982807) - (xy 129.152521 79.00121) - (xy 129.144562 79.019602) - (xy 129.144561 79.019605) - (xy 129.137271 79.065627) - (xy 129.136087 79.071346) - (xy 129.124501 79.116472) - (xy 129.1245 79.116482) - (xy 129.1245 79.136516) - (xy 129.122973 79.155915) - (xy 129.11984 79.175694) - (xy 129.11984 79.175695) - (xy 129.124225 79.222083) - (xy 129.1245 79.227921) - (xy 129.1245 83.567254) - (xy 129.122775 83.582871) - (xy 129.123061 83.582898) - (xy 129.122326 83.590665) - (xy 129.124469 83.658845) - (xy 129.1245 83.660792) - (xy 129.1245 83.689342) - (xy 129.124501 83.689359) - (xy 129.125368 83.69623) - (xy 129.125826 83.702049) - (xy 129.12729 83.748623) - (xy 129.127291 83.748626) - (xy 129.13288 83.767866) - (xy 129.136824 83.78691) - (xy 129.139336 83.80679) - (xy 129.15649 83.850118) - (xy 129.158382 83.855646) - (xy 129.171381 83.900387) - (xy 129.18158 83.917633) - (xy 129.190138 83.935102) - (xy 129.197514 83.953731) - (xy 129.224898 83.991422) - (xy 129.228106 83.996306) - (xy 129.251827 84.036415) - (xy 129.251833 84.036423) - (xy 129.26599 84.050579) - (xy 129.278628 84.065375) - (xy 129.290405 84.081585) - (xy 129.290406 84.081586) - (xy 129.326309 84.111287) - (xy 129.33062 84.115209) - (xy 131.445332 86.229921) - (xy 133.536331 88.32092) - (xy 133.569816 88.382243) - (xy 133.564832 88.451935) - (xy 133.52296 88.507868) - (xy 133.457496 88.532285) - (xy 133.389223 88.517433) - (xy 133.377007 88.50981) - (xy 133.341691 88.48481) - (xy 133.341684 88.484806) - (xy 133.059083 88.333051) - (xy 133.059073 88.333047) - (xy 133.059071 88.333046) - (xy 132.990905 88.306638) - (xy 132.759955 88.217167) - (xy 132.759951 88.217166) - (xy 132.448845 88.13892) - (xy 132.130498 88.0995) - (xy 132.130493 88.0995) - (xy 131.889974 88.0995) - (xy 131.837256 88.102751) - (xy 131.649924 88.114305) - (xy 131.334599 88.173249) - (xy 131.334597 88.17325) - (xy 131.028914 88.270495) - (xy 131.02891 88.270496) - (xy 131.028906 88.270498) - (xy 130.867607 88.344707) - (xy 130.737481 88.404574) - (xy 130.464756 88.573437) - (xy 130.464736 88.573451) - (xy 130.214828 88.774551) - (xy 129.991513 89.004853) - (xy 129.798195 89.260847) - (xy 129.637801 89.53866) - (xy 129.512768 89.834062) - (xy 129.51276 89.834086) - (xy 129.424979 90.142602) - (xy 129.424978 90.142607) - (xy 129.375772 90.459592) - (xy 129.375771 90.459603) - (xy 129.365893 90.780236) - (xy 129.395491 91.099651) - (xy 129.395492 91.099657) - (xy 129.464118 91.413013) - (xy 129.570735 91.715566) - (xy 129.713721 92.002721) - (xy 129.855184 92.216212) - (xy 129.890912 92.27013) - (xy 130.099622 92.513737) - (xy 130.336686 92.729849) - (xy 130.336689 92.729851) - (xy 130.598505 92.915187) - (xy 130.598515 92.915193) - (xy 130.881116 93.066948) - (xy 130.881122 93.06695) - (xy 130.881129 93.066954) - (xy 131.04259 93.129504) - (xy 131.180244 93.182832) - (xy 131.180247 93.182832) - (xy 131.180253 93.182835) - (xy 131.491351 93.261079) - (xy 131.610734 93.275861) - (xy 131.809702 93.3005) - (xy 131.809707 93.3005) - (xy 132.050212 93.3005) - (xy 132.050226 93.3005) - (xy 132.290278 93.285694) - (xy 132.605603 93.22675) - (xy 132.911294 93.129502) - (xy 133.202718 92.995426) - (xy 133.475456 92.826554) - (xy 133.725375 92.625445) - (xy 133.948685 92.395148) - (xy 134.142003 92.139155) - (xy 134.302396 91.861345) - (xy 134.386308 91.663094) - (xy 134.430566 91.60903) - (xy 134.497028 91.587477) - (xy 134.564593 91.605276) - (xy 134.611808 91.656779) - (xy 134.6245 91.711428) - (xy 134.6245 96.186319) - (xy 134.604815 96.253358) - (xy 134.552011 96.299113) - (xy 134.482853 96.309057) - (xy 134.419297 96.280032) - (xy 134.402644 96.262478) - (xy 134.400151 96.259274) - (xy 134.247049 96.092963) - (xy 134.247048 96.092962) - (xy 134.247046 96.09296) - (xy 134.068649 95.954107) - (xy 134.002999 95.918579) - (xy 133.869832 95.846512) - (xy 133.869827 95.84651) - (xy 133.656017 95.773109) - (xy 133.474388 95.742801) - (xy 133.433033 95.7359) - (xy 133.206967 95.7359) - (xy 133.165612 95.742801) - (xy 132.983982 95.773109) - (xy 132.770172 95.84651) - (xy 132.770167 95.846512) - (xy 132.571352 95.954106) - (xy 132.392955 96.092959) - (xy 132.39295 96.092963) - (xy 132.23985 96.259272) - (xy 132.239846 96.259278) - (xy 132.153807 96.390969) - (xy 132.10066 96.436325) - (xy 132.031429 96.445748) - (xy 131.968093 96.416245) - (xy 131.946192 96.390969) - (xy 131.860156 96.259281) - (xy 131.86015 96.259274) - (xy 131.860149 96.259272) - (xy 131.707049 96.092963) - (xy 131.707048 96.092962) - (xy 131.707046 96.09296) - (xy 131.528649 95.954107) - (xy 131.462999 95.918579) - (xy 131.329832 95.846512) - (xy 131.329827 95.84651) - (xy 131.116017 95.773109) - (xy 130.934388 95.742801) - (xy 130.893033 95.7359) - (xy 130.666967 95.7359) - (xy 130.625612 95.742801) - (xy 130.443982 95.773109) - (xy 130.230172 95.84651) - (xy 130.230167 95.846512) - (xy 130.031352 95.954106) - (xy 129.852955 96.092959) - (xy 129.85295 96.092963) - (xy 129.69985 96.259272) - (xy 129.699842 96.259283) - (xy 129.613808 96.390968) - (xy 129.560662 96.436325) - (xy 129.49143 96.445748) - (xy 129.428095 96.416246) - (xy 129.406192 96.390968) - (xy 129.333713 96.280032) - (xy 129.320156 96.259281) - (xy 129.32015 96.259274) - (xy 129.320149 96.259272) - (xy 129.167049 96.092963) - (xy 129.167048 96.092962) - (xy 129.167046 96.09296) - (xy 128.988649 95.954107) - (xy 128.922999 95.918579) - (xy 128.789832 95.846512) - (xy 128.789827 95.84651) - (xy 128.576017 95.773109) - (xy 128.394388 95.742801) - (xy 128.353033 95.7359) - (xy 128.126967 95.7359) - (xy 128.085612 95.742801) - (xy 127.903982 95.773109) - (xy 127.690172 95.84651) - (xy 127.690167 95.846512) - (xy 127.491352 95.954106) - (xy 127.312955 96.092959) - (xy 127.31295 96.092963) - (xy 127.15985 96.259272) - (xy 127.159842 96.259283) - (xy 127.073808 96.390968) - (xy 127.020662 96.436325) - (xy 126.95143 96.445748) - (xy 126.888095 96.416246) - (xy 126.866192 96.390968) - (xy 126.793713 96.280032) - (xy 126.780156 96.259281) - (xy 126.78015 96.259274) - (xy 126.780149 96.259272) - (xy 126.627049 96.092963) - (xy 126.627048 96.092962) - (xy 126.627046 96.09296) - (xy 126.448649 95.954107) - (xy 126.382999 95.918579) - (xy 126.249832 95.846512) - (xy 126.249827 95.84651) - (xy 126.036017 95.773109) - (xy 125.854388 95.742801) - (xy 125.813033 95.7359) - (xy 125.586967 95.7359) - (xy 125.545612 95.742801) - (xy 125.363982 95.773109) - (xy 125.150172 95.84651) - (xy 125.150167 95.846512) - (xy 124.951352 95.954106) - (xy 124.772955 96.092959) - (xy 124.77295 96.092963) - (xy 124.61985 96.259272) - (xy 124.619846 96.259278) - (xy 124.533807 96.390969) - (xy 124.48066 96.436325) - (xy 124.411429 96.445748) - (xy 124.348093 96.416245) - (xy 124.326192 96.390969) - (xy 124.240156 96.259281) - (xy 124.24015 96.259274) - (xy 124.240149 96.259272) - (xy 124.087049 96.092963) - (xy 124.087048 96.092962) - (xy 124.087046 96.09296) - (xy 123.908649 95.954107) - (xy 123.842999 95.918579) - (xy 123.709832 95.846512) - (xy 123.709827 95.84651) - (xy 123.496017 95.773109) - (xy 123.314388 95.742801) - (xy 123.273033 95.7359) - (xy 123.046967 95.7359) - (xy 123.005612 95.742801) - (xy 122.823982 95.773109) - (xy 122.610172 95.84651) - (xy 122.610167 95.846512) - (xy 122.411352 95.954106) - (xy 122.232955 96.092959) - (xy 122.23295 96.092963) - (xy 122.07985 96.259272) - (xy 122.079842 96.259283) - (xy 121.993808 96.390968) - (xy 121.940662 96.436325) - (xy 121.87143 96.445748) - (xy 121.808095 96.416246) - (xy 121.786192 96.390968) - (xy 121.713713 96.280032) - (xy 121.700156 96.259281) - (xy 121.70015 96.259274) - (xy 121.700149 96.259272) - (xy 121.547049 96.092963) - (xy 121.547048 96.092962) - (xy 121.547046 96.09296) - (xy 121.368649 95.954107) - (xy 121.302999 95.918579) - (xy 121.169832 95.846512) - (xy 121.169827 95.84651) - (xy 120.956017 95.773109) - (xy 120.774388 95.742801) - (xy 120.733033 95.7359) - (xy 120.506967 95.7359) - (xy 120.465612 95.742801) - (xy 120.283982 95.773109) - (xy 120.070172 95.84651) - (xy 120.070167 95.846512) - (xy 119.871352 95.954106) - (xy 119.692955 96.092959) - (xy 119.69295 96.092963) - (xy 119.53985 96.259272) - (xy 119.539842 96.259283) - (xy 119.453808 96.390968) - (xy 119.400662 96.436325) - (xy 119.33143 96.445748) - (xy 119.268095 96.416246) - (xy 119.246192 96.390968) - (xy 119.173713 96.280032) - (xy 119.160156 96.259281) - (xy 119.16015 96.259274) - (xy 119.160149 96.259272) - (xy 119.007049 96.092963) - (xy 119.007048 96.092962) - (xy 119.007046 96.09296) - (xy 118.828649 95.954107) - (xy 118.762999 95.918579) - (xy 118.629832 95.846512) - (xy 118.629827 95.84651) - (xy 118.416017 95.773109) - (xy 118.234388 95.742801) - (xy 118.193033 95.7359) - (xy 117.966967 95.7359) - (xy 117.925612 95.742801) - (xy 117.743982 95.773109) - (xy 117.530172 95.84651) - (xy 117.530167 95.846512) - (xy 117.331352 95.954106) - (xy 117.152955 96.092959) - (xy 117.15295 96.092963) - (xy 116.99985 96.259272) - (xy 116.999842 96.259283) - (xy 116.913808 96.390968) - (xy 116.860662 96.436325) - (xy 116.79143 96.445748) - (xy 116.728095 96.416246) - (xy 116.706192 96.390968) - (xy 116.633713 96.280032) - (xy 116.620156 96.259281) - (xy 116.62015 96.259274) - (xy 116.620149 96.259272) - (xy 116.467049 96.092963) - (xy 116.467048 96.092962) - (xy 116.467046 96.09296) - (xy 116.288649 95.954107) - (xy 116.222999 95.918579) - (xy 116.089832 95.846512) - (xy 116.089827 95.84651) - (xy 115.876017 95.773109) - (xy 115.694388 95.742801) - (xy 115.653033 95.7359) - (xy 115.426967 95.7359) - (xy 115.385612 95.742801) - (xy 115.203982 95.773109) - (xy 114.990172 95.84651) - (xy 114.990167 95.846512) - (xy 114.791352 95.954106) - (xy 114.612955 96.092959) - (xy 114.61295 96.092963) - (xy 114.45985 96.259272) - (xy 114.459842 96.259283) - (xy 114.336198 96.448533) - (xy 114.245388 96.65556) - (xy 114.189892 96.87471) - (xy 114.171225 97.099993) - (xy 114.171225 97.100006) - (xy 114.189892 97.325289) - (xy 114.245388 97.544439) - (xy 114.336198 97.751466) - (xy 114.459842 97.940716) - (xy 114.45985 97.940727) - (xy 114.594061 98.086517) - (xy 114.624984 98.149171) - (xy 114.617124 98.218597) - (xy 114.572977 98.272753) - (xy 114.50656 98.294444) - (xy 114.502832 98.2945) - (xy 112.513168 98.2945) - (xy 112.446129 98.274815) - (xy 112.400374 98.222011) - (xy 112.39043 98.152853) - (xy 112.419455 98.089297) - (xy 112.421939 98.086517) - (xy 112.556149 97.940727) - (xy 112.556151 97.940724) - (xy 112.556156 97.940719) - (xy 112.679802 97.751465) - (xy 112.770611 97.544441) - (xy 112.826107 97.325293) - (xy 112.844775 97.1) - (xy 112.826107 96.874707) - (xy 112.770611 96.655559) - (xy 112.679802 96.448535) - (xy 112.556156 96.259281) - (xy 112.55615 96.259274) - (xy 112.556149 96.259272) - (xy 112.403049 96.092963) - (xy 112.403048 96.092962) - (xy 112.403046 96.09296) - (xy 112.224649 95.954107) - (xy 112.158999 95.918579) - (xy 112.025832 95.846512) - (xy 112.025827 95.84651) - (xy 111.812017 95.773109) - (xy 111.630388 95.742801) - (xy 111.589033 95.7359) - (xy 111.362967 95.7359) - (xy 111.321612 95.742801) - (xy 111.139982 95.773109) - (xy 110.926172 95.84651) - (xy 110.926167 95.846512) - (xy 110.727352 95.954106) - (xy 110.548955 96.092959) - (xy 110.54895 96.092963) - (xy 110.39585 96.259272) - (xy 110.395842 96.259283) - (xy 110.309808 96.390968) - (xy 110.256662 96.436325) - (xy 110.18743 96.445748) - (xy 110.124095 96.416246) - (xy 110.102192 96.390968) - (xy 110.029713 96.280032) - (xy 110.016156 96.259281) - (xy 110.01615 96.259274) - (xy 110.016149 96.259272) - (xy 109.863049 96.092963) - (xy 109.863048 96.092962) - (xy 109.863046 96.09296) - (xy 109.684649 95.954107) - (xy 109.618999 95.918579) - (xy 109.485832 95.846512) - (xy 109.485827 95.84651) - (xy 109.272017 95.773109) - (xy 109.090388 95.742801) - (xy 109.049033 95.7359) - (xy 108.822967 95.7359) - (xy 108.781612 95.742801) - (xy 108.599982 95.773109) - (xy 108.386172 95.84651) - (xy 108.386167 95.846512) - (xy 108.187352 95.954106) - (xy 108.008955 96.092959) - (xy 108.00895 96.092963) - (xy 107.85585 96.259272) - (xy 107.855842 96.259283) - (xy 107.769808 96.390968) - (xy 107.716662 96.436325) - (xy 107.64743 96.445748) - (xy 107.584095 96.416246) - (xy 107.562192 96.390968) - (xy 107.489713 96.280032) - (xy 107.476156 96.259281) - (xy 107.47615 96.259274) - (xy 107.476149 96.259272) - (xy 107.323049 96.092963) - (xy 107.323048 96.092962) - (xy 107.323046 96.09296) - (xy 107.144649 95.954107) - (xy 107.078999 95.918579) - (xy 106.945832 95.846512) - (xy 106.945827 95.84651) - (xy 106.732017 95.773109) - (xy 106.550388 95.742801) - (xy 106.509033 95.7359) - (xy 106.282967 95.7359) - (xy 106.241612 95.742801) - (xy 106.059982 95.773109) - (xy 105.846172 95.84651) - (xy 105.846167 95.846512) - (xy 105.647352 95.954106) - (xy 105.468955 96.092959) - (xy 105.46895 96.092963) - (xy 105.31585 96.259272) - (xy 105.315846 96.259278) - (xy 105.229807 96.390969) - (xy 105.17666 96.436325) - (xy 105.107429 96.445748) - (xy 105.044093 96.416245) - (xy 105.022192 96.390969) - (xy 104.936156 96.259281) - (xy 104.93615 96.259274) - (xy 104.936149 96.259272) - (xy 104.783049 96.092963) - (xy 104.783048 96.092962) - (xy 104.783046 96.09296) - (xy 104.604649 95.954107) - (xy 104.538999 95.918579) - (xy 104.405832 95.846512) - (xy 104.405827 95.84651) - (xy 104.192017 95.773109) - (xy 104.010388 95.742801) - (xy 103.969033 95.7359) - (xy 103.742967 95.7359) - (xy 103.701612 95.742801) - (xy 103.519982 95.773109) - (xy 103.306172 95.84651) - (xy 103.306167 95.846512) - (xy 103.107352 95.954106) - (xy 102.928955 96.092959) - (xy 102.92895 96.092963) - (xy 102.77585 96.259272) - (xy 102.775842 96.259283) - (xy 102.689808 96.390968) - (xy 102.636662 96.436325) - (xy 102.56743 96.445748) - (xy 102.504095 96.416246) - (xy 102.482192 96.390968) - (xy 102.409713 96.280032) - (xy 102.396156 96.259281) - (xy 102.39615 96.259274) - (xy 102.396149 96.259272) - (xy 102.243049 96.092963) - (xy 102.243048 96.092962) - (xy 102.243046 96.09296) - (xy 102.064649 95.954107) - (xy 101.998999 95.918579) - (xy 101.865832 95.846512) - (xy 101.865827 95.84651) - (xy 101.652017 95.773109) - (xy 101.470388 95.742801) - (xy 101.429033 95.7359) - (xy 101.202967 95.7359) - (xy 101.161612 95.742801) - (xy 100.979982 95.773109) - (xy 100.766172 95.84651) - (xy 100.766167 95.846512) - (xy 100.567352 95.954106) - (xy 100.388955 96.092959) - (xy 100.38895 96.092963) - (xy 100.23585 96.259272) - (xy 100.235842 96.259283) - (xy 100.149808 96.390968) - (xy 100.096662 96.436325) - (xy 100.02743 96.445748) - (xy 99.964095 96.416246) - (xy 99.942192 96.390968) - (xy 99.869713 96.280032) - (xy 99.856156 96.259281) - (xy 99.85615 96.259274) - (xy 99.856149 96.259272) - (xy 99.703049 96.092963) - (xy 99.703048 96.092962) - (xy 99.703046 96.09296) - (xy 99.524649 95.954107) - (xy 99.458999 95.918579) - (xy 99.325832 95.846512) - (xy 99.325827 95.84651) - (xy 99.112017 95.773109) - (xy 98.930388 95.742801) - (xy 98.889033 95.7359) - (xy 98.662967 95.7359) - (xy 98.621612 95.742801) - (xy 98.439982 95.773109) - (xy 98.226172 95.84651) - (xy 98.226167 95.846512) - (xy 98.027352 95.954106) - (xy 97.848955 96.092958) - (xy 97.794186 96.152453) - (xy 97.734298 96.188443) - (xy 97.66446 96.186342) - (xy 97.606845 96.146817) - (xy 97.586775 96.111802) - (xy 97.542954 95.994313) - (xy 97.54295 95.994306) - (xy 97.45679 95.879212) - (xy 97.456787 95.879209) - (xy 97.341693 95.793049) - (xy 97.341686 95.793045) - (xy 97.206979 95.742803) - (xy 97.206972 95.742801) - (xy 97.147444 95.7364) - (xy 96.486 95.7364) - (xy 96.486 96.655702) - (xy 96.380592 96.607565) - (xy 96.272334 96.592) - (xy 96.199666 96.592) - (xy 96.091408 96.607565) - (xy 95.985999 96.655702) - (xy 95.986 95.7364) - (xy 95.324555 95.7364) - (xy 95.265027 95.742801) - (xy 95.26502 95.742803) - (xy 95.130313 95.793045) - (xy 95.130306 95.793049) - (xy 95.015212 95.879209) - (xy 95.015209 95.879212) - (xy 94.929049 95.994306) - (xy 94.929046 95.994312) - (xy 94.885224 96.111803) - (xy 94.843352 96.167736) - (xy 94.777887 96.192153) - (xy 94.709615 96.177301) - (xy 94.677813 96.152452) - (xy 94.623049 96.092963) - (xy 94.623048 96.092962) - (xy 94.623046 96.09296) - (xy 94.444649 95.954107) - (xy 94.378999 95.918579) - (xy 94.245832 95.846512) - (xy 94.245827 95.84651) - (xy 94.032017 95.773109) - (xy 93.850388 95.742801) - (xy 93.809033 95.7359) - (xy 93.582967 95.7359) - (xy 93.541612 95.742801) - (xy 93.359982 95.773109) - (xy 93.146172 95.84651) - (xy 93.146167 95.846512) - (xy 92.947352 95.954106) - (xy 92.768955 96.092959) - (xy 92.76895 96.092963) - (xy 92.61585 96.259272) - (xy 92.615842 96.259283) - (xy 92.529808 96.390968) - (xy 92.476662 96.436325) - (xy 92.40743 96.445748) - (xy 92.344095 96.416246) - (xy 92.322192 96.390968) - (xy 92.249713 96.280032) - (xy 92.236156 96.259281) - (xy 92.23615 96.259274) - (xy 92.236149 96.259272) - (xy 92.083049 96.092963) - (xy 92.083048 96.092962) - (xy 92.083046 96.09296) - (xy 91.904649 95.954107) - (xy 91.838999 95.918579) - (xy 91.705832 95.846512) - (xy 91.705827 95.84651) - (xy 91.492017 95.773109) - (xy 91.310388 95.742801) - (xy 91.269033 95.7359) - (xy 91.042967 95.7359) - (xy 91.001612 95.742801) - (xy 90.819982 95.773109) - (xy 90.606172 95.84651) - (xy 90.606167 95.846512) - (xy 90.407352 95.954106) - (xy 90.228955 96.092959) - (xy 90.22895 96.092963) - (xy 90.07585 96.259272) - (xy 90.075842 96.259283) - (xy 89.989808 96.390968) - (xy 89.936662 96.436325) - (xy 89.86743 96.445748) - (xy 89.804095 96.416246) - (xy 89.782192 96.390968) - (xy 89.709713 96.280032) - (xy 89.696156 96.259281) - (xy 89.69615 96.259274) - (xy 89.696149 96.259272) - (xy 89.543049 96.092963) - (xy 89.543048 96.092962) - (xy 89.543046 96.09296) - (xy 89.364649 95.954107) - (xy 89.298999 95.918579) - (xy 89.165832 95.846512) - (xy 89.165827 95.84651) - (xy 88.952017 95.773109) - (xy 88.770388 95.742801) - (xy 88.729033 95.7359) - (xy 88.502967 95.7359) - (xy 88.461612 95.742801) - (xy 88.279982 95.773109) - (xy 88.066172 95.84651) - (xy 88.066167 95.846512) - (xy 87.867352 95.954106) - (xy 87.688955 96.092959) - (xy 87.68895 96.092963) - (xy 87.53585 96.259272) - (xy 87.535842 96.259283) - (xy 87.412198 96.448533) - (xy 87.321388 96.65556) - (xy 87.265892 96.87471) - (xy 87.247225 97.099993) - (xy 87.247225 97.100006) - (xy 87.265892 97.325289) - (xy 87.321388 97.544439) - (xy 87.412198 97.751466) - (xy 87.535842 97.940716) - (xy 87.53585 97.940727) - (xy 87.67262 98.089297) - (xy 87.688954 98.10704) - (xy 87.867351 98.245893) - (xy 88.066169 98.353488) - (xy 88.066172 98.353489) - (xy 88.279982 98.42689) - (xy 88.279984 98.42689) - (xy 88.279986 98.426891) - (xy 88.502967 98.4641) - (xy 88.502968 98.4641) - (xy 88.729032 98.4641) - (xy 88.729033 98.4641) - (xy 88.952014 98.426891) - (xy 88.957919 98.424864) - (xy 88.985492 98.415398) - (xy 89.165831 98.353488) - (xy 89.364649 98.245893) - (xy 89.543046 98.10704) - (xy 89.696156 97.940719) - (xy 89.782193 97.809028) - (xy 89.835338 97.763675) - (xy 89.904569 97.754251) - (xy 89.967905 97.783753) - (xy 89.989804 97.809025) - (xy 90.075844 97.940719) - (xy 90.075849 97.940724) - (xy 90.07585 97.940727) - (xy 90.21262 98.089297) - (xy 90.228954 98.10704) - (xy 90.407351 98.245893) - (xy 90.606169 98.353488) - (xy 90.606172 98.353489) - (xy 90.819982 98.42689) - (xy 90.819984 98.42689) - (xy 90.819986 98.426891) - (xy 91.042967 98.4641) - (xy 91.042968 98.4641) - (xy 91.269032 98.4641) - (xy 91.269033 98.4641) - (xy 91.492014 98.426891) - (xy 91.497919 98.424864) - (xy 91.525492 98.415398) - (xy 91.705831 98.353488) - (xy 91.904649 98.245893) - (xy 92.083046 98.10704) - (xy 92.236156 97.940719) - (xy 92.322193 97.809028) - (xy 92.375338 97.763675) - (xy 92.444569 97.754251) - (xy 92.507905 97.783753) - (xy 92.529804 97.809025) - (xy 92.615844 97.940719) - (xy 92.615849 97.940724) - (xy 92.61585 97.940727) - (xy 92.75262 98.089297) - (xy 92.768954 98.10704) - (xy 92.772658 98.109923) - (xy 92.813473 98.166629) - (xy 92.8205 98.207779) - (xy 92.8205 98.467897) - (xy 92.820295 98.472931) - (xy 92.81566 98.529844) - (xy 92.826801 98.611621) - (xy 92.827005 98.613286) - (xy 92.835927 98.695316) - (xy 92.835929 98.695327) - (xy 92.83599 98.695506) - (xy 92.84134 98.718331) - (xy 92.841366 98.718525) - (xy 92.841369 98.718536) - (xy 92.86983 98.796007) - (xy 92.870387 98.79759) - (xy 92.896731 98.875776) - (xy 92.896734 98.875782) - (xy 92.896832 98.875945) - (xy 92.906969 98.897099) - (xy 92.907036 98.897283) - (xy 92.90704 98.89729) - (xy 92.951498 98.966846) - (xy 92.952382 98.968272) - (xy 92.994912 99.038955) - (xy 92.995042 99.039092) - (xy 93.009495 99.057579) - (xy 93.009601 99.057745) - (xy 93.067952 99.116096) - (xy 93.069124 99.1173) - (xy 93.125866 99.177203) - (xy 93.125868 99.177204) - (xy 93.125871 99.177207) - (xy 93.126028 99.177314) - (xy 93.144121 99.192265) - (xy 93.713992 99.762136) - (xy 93.717396 99.765829) - (xy 93.754362 99.80935) - (xy 93.754366 99.809354) - (xy 93.754369 99.809357) - (xy 93.820123 99.859341) - (xy 93.821335 99.860288) - (xy 93.85453 99.886972) - (xy 93.885702 99.91203) - (xy 93.885872 99.912114) - (xy 93.905814 99.924483) - (xy 93.905971 99.924602) - (xy 93.980905 99.95927) - (xy 93.982366 99.95997) - (xy 94.056307 99.996641) - (xy 94.056481 99.996684) - (xy 94.078626 100.00448) - (xy 94.078803 100.004562) - (xy 94.078806 100.004562) - (xy 94.078807 100.004563) - (xy 94.0911 100.007268) - (xy 94.159432 100.022309) - (xy 94.161023 100.022683) - (xy 94.188959 100.02963) - (xy 94.241111 100.0426) - (xy 94.241284 100.042604) - (xy 94.264602 100.04546) - (xy 94.264784 100.0455) - (xy 94.347303 100.0455) - (xy 94.348982 100.045523) - (xy 94.384385 100.046481) - (xy 94.431473 100.047757) - (xy 94.431655 100.047721) - (xy 94.455023 100.0455) - (xy 107.942703 100.0455) - (xy 108.009742 100.065185) - (xy 108.055497 100.117989) - (xy 108.065441 100.187147) - (xy 108.058885 100.212833) - (xy 108.026403 100.29992) - (xy 108.026401 100.299927) - (xy 108.02 100.359455) - (xy 108.02 100.8573) - (xy 108.974419 100.8573) - (xy 108.92294 100.913221) - (xy 108.876018 101.020192) - (xy 108.866372 101.136602) - (xy 108.895047 101.249838) - (xy 108.958936 101.347627) - (xy 109.051115 101.419372) - (xy 109.161595 101.4573) - (xy 109.249005 101.4573) - (xy 109.335216 101.442914) - (xy 109.437947 101.387319) - (xy 109.465581 101.3573) - (xy 109.47 101.3573) - (xy 109.47 102.3073) - (xy 109.967828 102.3073) - (xy 109.967844 102.307299) - (xy 110.027372 102.300898) - (xy 110.027379 102.300896) - (xy 110.162086 102.250654) - (xy 110.162093 102.25065) - (xy 110.277187 102.16449) - (xy 110.27719 102.164487) - (xy 110.36335 102.049393) - (xy 110.363354 102.049386) - (xy 110.413596 101.914679) - (xy 110.413598 101.914672) - (xy 110.419999 101.855144) - (xy 110.42 101.855127) - (xy 110.42 101.3573) - (xy 109.47 101.3573) - (xy 109.465581 101.3573) - (xy 109.51706 101.301379) - (xy 109.563982 101.194408) - (xy 109.573628 101.077998) - (xy 109.544953 100.964762) - (xy 109.481064 100.866973) - (xy 109.468636 100.8573) - (xy 110.42 100.8573) - (xy 110.42 100.359472) - (xy 110.419999 100.359455) - (xy 110.413598 100.299927) - (xy 110.413596 100.29992) - (xy 110.381115 100.212833) - (xy 110.376131 100.143142) - (xy 110.409616 100.081819) - (xy 110.470939 100.048334) - (xy 110.497297 100.0455) - (xy 128.655994 100.0455) - (xy 128.723033 100.065185) - (xy 128.743675 100.081819) - (xy 129.699508 101.037652) - (xy 129.732993 101.098975) - (xy 129.735355 101.114526) - (xy 129.753793 101.325275) - (xy 129.753793 101.325279) - (xy 129.810422 101.536622) - (xy 129.810424 101.536626) - (xy 129.810425 101.53663) - (xy 129.854667 101.631508) - (xy 129.902897 101.734938) - (xy 129.902898 101.734939) - (xy 130.028402 101.914177) - (xy 130.183123 102.068898) - (xy 130.362361 102.194402) - (xy 130.56067 102.286875) - (xy 130.772023 102.343507) - (xy 130.954926 102.359508) - (xy 130.989998 102.362577) - (xy 130.99 102.362577) - (xy 130.990002 102.362577) - (xy 131.018254 102.360105) - (xy 131.207977 102.343507) - (xy 131.41933 102.286875) - (xy 131.617639 102.194402) - (xy 131.796877 102.068898) - (xy 131.951598 101.914177) - (xy 132.077102 101.734939) - (xy 132.169575 101.53663) - (xy 132.226207 101.325277) - (xy 132.245277 101.1073) - (xy 132.242713 101.077998) - (xy 132.239184 101.037652) - (xy 132.226207 100.889323) - (xy 132.169575 100.67797) - (xy 132.077102 100.479662) - (xy 132.0771 100.479659) - (xy 132.077099 100.479657) - (xy 131.951599 100.300424) - (xy 131.881296 100.230121) - (xy 131.796877 100.145702) - (xy 131.621188 100.022683) - (xy 131.617638 100.020197) - (xy 131.518484 99.973961) - (xy 131.41933 99.927725) - (xy 131.419326 99.927724) - (xy 131.419322 99.927722) - (xy 131.207977 99.871093) - (xy 131.035143 99.855972) - (xy 130.970074 99.83052) - (xy 130.958269 99.820125) - (xy 130.398253 99.260109) - (xy 129.715999 98.577855) - (xy 129.712608 98.574176) - (xy 129.675631 98.530643) - (xy 129.609932 98.4807) - (xy 129.608615 98.47967) - (xy 129.544302 98.427973) - (xy 129.544294 98.427968) - (xy 129.54412 98.427882) - (xy 129.524182 98.415514) - (xy 129.524029 98.415398) - (xy 129.449136 98.380748) - (xy 129.447623 98.380023) - (xy 129.3737 98.343362) - (xy 129.373696 98.34336) - (xy 129.373693 98.343359) - (xy 129.373687 98.343357) - (xy 129.37368 98.343355) - (xy 129.373488 98.343307) - (xy 129.351385 98.335525) - (xy 129.351198 98.335438) - (xy 129.351195 98.335437) - (xy 129.270593 98.317694) - (xy 129.268959 98.317311) - (xy 129.231455 98.307985) - (xy 129.171148 98.272704) - (xy 129.139488 98.210419) - (xy 129.146529 98.140904) - (xy 129.170151 98.103667) - (xy 129.320149 97.940727) - (xy 129.320151 97.940724) - (xy 129.320156 97.940719) - (xy 129.406193 97.809029) - (xy 129.459336 97.763675) - (xy 129.528567 97.754251) - (xy 129.591903 97.783753) - (xy 129.613807 97.809031) - (xy 129.699842 97.940716) - (xy 129.69985 97.940727) - (xy 129.83662 98.089297) - (xy 129.852954 98.10704) - (xy 130.031351 98.245893) - (xy 130.230169 98.353488) - (xy 130.230172 98.353489) - (xy 130.443982 98.42689) - (xy 130.443984 98.42689) - (xy 130.443986 98.426891) - (xy 130.666967 98.4641) - (xy 130.666968 98.4641) - (xy 130.893032 98.4641) - (xy 130.893033 98.4641) - (xy 131.116014 98.426891) - (xy 131.121919 98.424864) - (xy 131.149492 98.415398) - (xy 131.329831 98.353488) - (xy 131.528649 98.245893) - (xy 131.707046 98.10704) - (xy 131.860156 97.940719) - (xy 131.946193 97.809028) - (xy 131.999338 97.763675) - (xy 132.068569 97.754251) - (xy 132.131905 97.783753) - (xy 132.153804 97.809025) - (xy 132.239844 97.940719) - (xy 132.239849 97.940724) - (xy 132.23985 97.940727) - (xy 132.37662 98.089297) - (xy 132.392954 98.10704) - (xy 132.571351 98.245893) - (xy 132.770169 98.353488) - (xy 132.770172 98.353489) - (xy 132.983982 98.42689) - (xy 132.983984 98.42689) - (xy 132.983986 98.426891) - (xy 133.206967 98.4641) - (xy 133.206968 98.4641) - (xy 133.433032 98.4641) - (xy 133.433033 98.4641) - (xy 133.656014 98.426891) - (xy 133.661919 98.424864) - (xy 133.689492 98.415398) - (xy 133.869831 98.353488) - (xy 134.068649 98.245893) - (xy 134.247046 98.10704) - (xy 134.400156 97.940719) - (xy 134.400163 97.940707) - (xy 134.402639 97.937527) - (xy 134.459346 97.896709) - (xy 134.529118 97.893028) - (xy 134.589805 97.927653) - (xy 134.622138 97.989591) - (xy 134.6245 98.01368) - (xy 134.6245 108.603651) - (xy 134.622775 108.619268) - (xy 134.623061 108.619295) - (xy 134.622326 108.627062) - (xy 134.624469 108.695242) - (xy 134.6245 108.697189) - (xy 134.6245 108.725739) - (xy 134.624501 108.725756) - (xy 134.625368 108.732627) - (xy 134.625826 108.738446) - (xy 134.62729 108.78502) - (xy 134.627291 108.785023) - (xy 134.63288 108.804263) - (xy 134.636824 108.823307) - (xy 134.638616 108.837487) - (xy 134.639336 108.843187) - (xy 134.65649 108.886515) - (xy 134.658382 108.892043) - (xy 134.664358 108.912612) - (xy 134.671382 108.936786) - (xy 134.677962 108.947913) - (xy 134.68158 108.95403) - (xy 134.690138 108.971499) - (xy 134.697514 108.990128) - (xy 134.724898 109.027819) - (xy 134.728106 109.032703) - (xy 134.751827 109.072812) - (xy 134.751833 109.07282) - (xy 134.76599 109.086976) - (xy 134.778628 109.101772) - (xy 134.790405 109.117982) - (xy 134.790406 109.117983) - (xy 134.826309 109.147684) - (xy 134.83062 109.151606) - (xy 135.426476 109.747462) - (xy 135.956833 110.277819) - (xy 135.990318 110.339142) - (xy 135.985334 110.408834) - (xy 135.943462 110.464767) - (xy 135.877998 110.489184) - (xy 135.869152 110.4895) - (xy 135.792351 110.4895) - (xy 135.589844 110.504323) - (xy 135.589831 110.504325) - (xy 135.325453 110.563217) - (xy 135.325446 110.56322) - (xy 135.072439 110.659987) - (xy 134.836226 110.792557) - (xy 134.836224 110.792558) - (xy 134.836223 110.792559) - (xy 134.785033 110.832086) - (xy 134.621822 110.958112) - (xy 134.433822 111.153109) - (xy 134.433816 111.153116) - (xy 134.276202 111.373419) - (xy 134.276199 111.373424) - (xy 134.15235 111.614309) - (xy 134.152343 111.614327) - (xy 134.064884 111.870685) - (xy 134.064881 111.870699) - (xy 134.015681 112.137068) - (xy 134.01568 112.137075) - (xy 134.005787 112.407763) - (xy 134.035413 112.677013) - (xy 134.035415 112.677024) - (xy 134.103926 112.939082) - (xy 134.103928 112.939088) - (xy 134.20987 113.18839) - (xy 134.306691 113.347036) - (xy 134.350979 113.419605) - (xy 134.350986 113.419615) - (xy 134.524253 113.627819) - (xy 134.524259 113.627824) - (xy 134.655977 113.745843) - (xy 134.725998 113.808582) - (xy 134.95191 113.958044) - (xy 135.197176 114.07302) - (xy 135.197183 114.073022) - (xy 135.197185 114.073023) - (xy 135.456557 114.151057) - (xy 135.456564 114.151058) - (xy 135.456569 114.15106) - (xy 135.724561 114.1905) - (xy 135.724566 114.1905) - (xy 135.927629 114.1905) - (xy 135.927631 114.1905) - (xy 135.927636 114.190499) - (xy 135.927648 114.190499) - (xy 135.965191 114.18775) - (xy 136.130156 114.175677) - (xy 136.242758 114.150593) - (xy 136.394546 114.116782) - (xy 136.394548 114.116781) - (xy 136.394553 114.11678) - (xy 136.647558 114.020014) - (xy 136.883777 113.887441) - (xy 137.098177 113.721888) - (xy 137.286186 113.526881) - (xy 137.443799 113.306579) - (xy 137.525906 113.14688) - (xy 137.567649 113.06569) - (xy 137.567651 113.065684) - (xy 137.567656 113.065675) - (xy 137.655118 112.809305) - (xy 137.704319 112.542933) - (xy 137.712177 112.327913) - (xy 137.734296 112.261638) - (xy 137.788736 112.217842) - (xy 137.858212 112.21043) - (xy 137.920665 112.241757) - (xy 137.923775 112.244761) - (xy 139.792916 114.113902) - (xy 139.826401 114.175225) - (xy 139.821417 114.244917) - (xy 139.797387 114.284553) - (xy 139.767466 114.317785) - (xy 139.672821 114.481715) - (xy 139.672818 114.481722) - (xy 139.616612 114.654707) - (xy 139.614326 114.661744) - (xy 139.598851 114.808987) - (xy 139.596949 114.827084) - (xy 139.59454 114.85) - (xy 139.614326 115.038256) - (xy 139.614327 115.038259) - (xy 139.672818 115.218277) - (xy 139.672821 115.218284) - (xy 139.767467 115.382216) - (xy 139.891843 115.520349) - (xy 139.894129 115.522888) - (xy 140.047265 115.634148) - (xy 140.04727 115.634151) - (xy 140.220192 115.711142) - (xy 140.220197 115.711144) - (xy 140.405354 115.7505) - (xy 140.405355 115.7505) - (xy 140.594644 115.7505) - (xy 140.594646 115.7505) - (xy 140.709843 115.726014) - (xy 140.779508 115.73133) - (xy 140.835242 115.773467) - (xy 140.853553 115.808985) - (xy 140.872819 115.86828) - (xy 140.872821 115.868284) - (xy 140.967467 116.032216) - (xy 141.081064 116.158378) - (xy 141.094129 116.172888) - (xy 141.247265 116.284148) - (xy 141.24727 116.284151) - (xy 141.420192 116.361142) - (xy 141.420197 116.361144) - (xy 141.605354 116.4005) - (xy 141.605355 116.4005) - (xy 141.794644 116.4005) - (xy 141.794646 116.4005) - (xy 141.979803 116.361144) - (xy 142.15273 116.284151) - (xy 142.305871 116.172888) - (xy 142.432533 116.032216) - (xy 142.527179 115.868284) - (xy 142.585674 115.688256) - (xy 142.603321 115.520344) - (xy 142.629904 115.455734) - (xy 142.638951 115.445638) - (xy 144.033788 114.050801) - (xy 144.046042 114.040986) - (xy 144.045859 114.040764) - (xy 144.051868 114.035791) - (xy 144.051877 114.035786) - (xy 144.098607 113.986022) - (xy 144.099846 113.984743) - (xy 144.12012 113.964471) - (xy 144.124379 113.958978) - (xy 144.128152 113.954561) - (xy 144.160062 113.920582) - (xy 144.169713 113.903024) - (xy 144.180396 113.886761) - (xy 144.192673 113.870936) - (xy 144.211185 113.828153) - (xy 144.213738 113.822941) - (xy 144.236197 113.782092) - (xy 144.24118 113.76268) - (xy 144.247481 113.74428) - (xy 144.255437 113.725896) - (xy 144.262729 113.679852) - (xy 144.263906 113.674171) - (xy 144.2755 113.629019) - (xy 144.2755 113.608982) - (xy 144.277027 113.589582) - (xy 144.28016 113.569804) - (xy 144.275775 113.523415) - (xy 144.2755 113.517577) - (xy 144.2755 111.632742) - (xy 144.277224 111.617122) - (xy 144.276939 111.617095) - (xy 144.277673 111.609333) - (xy 144.275531 111.541139) - (xy 144.2755 111.539192) - (xy 144.2755 111.510656) - (xy 144.2755 111.51065) - (xy 144.274631 111.503779) - (xy 144.274173 111.497952) - (xy 144.27271 111.451373) - (xy 144.267119 111.43213) - (xy 144.263173 111.413078) - (xy 144.260664 111.393208) - (xy 144.243504 111.349867) - (xy 144.241624 111.344379) - (xy 144.228618 111.29961) - (xy 144.218422 111.28237) - (xy 144.209861 111.264894) - (xy 144.202487 111.24627) - (xy 144.202486 111.246268) - (xy 144.175079 111.208545) - (xy 144.171888 111.203686) - (xy 144.148172 111.163583) - (xy 144.148165 111.163574) - (xy 144.134006 111.149415) - (xy 144.121368 111.134619) - (xy 144.114743 111.1255) - (xy 144.109594 111.118413) - (xy 144.102399 111.112461) - (xy 144.073688 111.088709) - (xy 144.069376 111.084786) - (xy 137.261819 104.277228) - (xy 137.228334 104.215905) - (xy 137.2255 104.189547) - (xy 137.2255 101.140006) - (xy 140.801225 101.140006) - (xy 140.819892 101.365289) - (xy 140.875388 101.584439) - (xy 140.966198 101.791466) - (xy 141.089842 101.980716) - (xy 141.08985 101.980727) - (xy 141.179984 102.078637) + (xy 149.911905 97.783753) + (xy 149.933804 97.809025) + (xy 150.019844 97.940719) + (xy 150.019849 97.940724) + (xy 150.01985 97.940727) + (xy 150.17295 98.107036) + (xy 150.172954 98.10704) + (xy 150.351351 98.245893) + (xy 150.409517 98.27737) + (xy 150.459107 98.326588) + (xy 150.4745 98.386425) + (xy 150.4745 100.635942) + (xy 150.454815 100.702981) + (xy 150.438181 100.723623) + (xy 149.397181 101.764623) + (xy 149.335858 101.798108) + (xy 149.266166 101.793124) + (xy 149.210233 101.751252) + (xy 149.185816 101.685788) + (xy 149.1855 101.676942) + (xy 149.1855 98.386425) + (xy 149.205185 98.319386) + (xy 149.250481 98.277371) + (xy 149.308649 98.245893) + (xy 149.487046 98.10704) + (xy 149.640156 97.940719) + (xy 149.726193 97.809028) + (xy 149.779338 97.763675) + (xy 149.848569 97.754251) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 85.493834 97.19327) + (xy 85.549767 97.235142) + (xy 85.574184 97.300606) + (xy 85.5745 97.309452) + (xy 85.5745 100.420757) + (xy 85.554815 100.487796) + (xy 85.502011 100.533551) + (xy 85.432853 100.543495) + (xy 85.369297 100.51447) + (xy 85.335072 100.46606) + (xy 85.296846 100.368663) + (xy 85.246393 100.240112) + (xy 85.118959 100.019388) + (xy 84.96005 99.820123) + (xy 84.773217 99.646768) + (xy 84.562634 99.503195) + (xy 84.562631 99.503194) + (xy 84.562629 99.503192) + (xy 84.415698 99.432433) + (xy 84.363838 99.38561) + (xy 84.3455 99.320713) + (xy 84.3455 98.290451) + (xy 84.365185 98.223412) + (xy 84.381814 98.202775) + (xy 85.362819 97.22177) + (xy 85.424142 97.188286) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 112.533155 145.146799) + (xy 112.492 145.286961) + (xy 112.492 145.433039) + (xy 112.533155 145.573201) + (xy 112.556804 145.61) + (xy 110.903196 145.61) + (xy 110.926845 145.573201) + (xy 110.968 145.433039) + (xy 110.968 145.286961) + (xy 110.926845 145.146799) + (xy 110.903196 145.11) + (xy 112.556804 145.11) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 130.091096 61.019685) + (xy 130.136851 61.072489) + (xy 130.146795 61.141647) + (xy 130.11777 61.205203) + (xy 130.113078 61.210321) + (xy 130.021413 61.304853) + (xy 129.828095 61.560847) + (xy 129.667701 61.83866) + (xy 129.542668 62.134062) + (xy 129.54266 62.134086) + (xy 129.454879 62.442602) + (xy 129.454878 62.442607) + (xy 129.405672 62.759592) + (xy 129.405671 62.759603) + (xy 129.395793 63.080236) + (xy 129.425391 63.399651) + (xy 129.425392 63.399657) + (xy 129.494018 63.713013) + (xy 129.56084 63.902637) + (xy 129.599717 64.012963) + (xy 129.600635 64.015566) + (xy 129.743621 64.302721) + (xy 129.914018 64.559878) + (xy 129.920812 64.57013) + (xy 130.129522 64.813737) + (xy 130.275662 64.946961) + (xy 130.355788 65.020006) + (xy 130.366586 65.029849) + (xy 130.366589 65.029851) + (xy 130.628405 65.215187) + (xy 130.628415 65.215193) + (xy 130.911016 65.366948) + (xy 130.911022 65.36695) + (xy 130.911029 65.366954) + (xy 131.07249 65.429504) + (xy 131.210144 65.482832) + (xy 131.210147 65.482832) + (xy 131.210153 65.482835) + (xy 131.521251 65.561079) + (xy 131.640634 65.575861) + (xy 131.839602 65.6005) + (xy 131.839607 65.6005) + (xy 132.080112 65.6005) + (xy 132.080126 65.6005) + (xy 132.320178 65.585694) + (xy 132.635503 65.52675) + (xy 132.941194 65.429502) + (xy 133.232618 65.295426) + (xy 133.505356 65.126554) + (xy 133.755275 64.925445) + (xy 133.978585 64.695148) + (xy 134.171903 64.439155) + (xy 134.332296 64.161345) + (xy 134.457334 63.865931) + (xy 134.545122 63.55739) + (xy 134.594328 63.2404) + (xy 134.604206 62.919765) + (xy 134.574608 62.600347) + (xy 134.540063 62.44261) + (xy 134.505981 62.286986) + (xy 134.476974 62.204671) + (xy 134.399366 61.984436) + (xy 134.256379 61.697279) + (xy 134.197807 61.608884) + (xy 134.079191 61.429873) + (xy 134.079184 61.429865) + (xy 133.886255 61.204676) + (xy 133.857586 61.140959) + (xy 133.867917 61.071857) + (xy 133.913967 61.019311) + (xy 133.980421 61) + (xy 138.024057 61) + (xy 138.091096 61.019685) + (xy 138.136851 61.072489) + (xy 138.146795 61.141647) + (xy 138.11777 61.205203) + (xy 138.113078 61.210321) + (xy 138.021413 61.304853) + (xy 137.828095 61.560847) + (xy 137.667701 61.83866) + (xy 137.542668 62.134062) + (xy 137.54266 62.134086) + (xy 137.454879 62.442602) + (xy 137.454878 62.442607) + (xy 137.405672 62.759592) + (xy 137.405671 62.759603) + (xy 137.395793 63.080236) + (xy 137.425391 63.399651) + (xy 137.425392 63.399657) + (xy 137.494018 63.713013) + (xy 137.56084 63.902637) + (xy 137.599717 64.012963) + (xy 137.600635 64.015566) + (xy 137.743621 64.302721) + (xy 137.914018 64.559878) + (xy 137.920812 64.57013) + (xy 138.129522 64.813737) + (xy 138.275662 64.946961) + (xy 138.355788 65.020006) + (xy 138.366586 65.029849) + (xy 138.366589 65.029851) + (xy 138.628405 65.215187) + (xy 138.628415 65.215193) + (xy 138.911016 65.366948) + (xy 138.911022 65.36695) + (xy 138.911029 65.366954) + (xy 139.07249 65.429504) + (xy 139.210144 65.482832) + (xy 139.210147 65.482832) + (xy 139.210153 65.482835) + (xy 139.521251 65.561079) + (xy 139.640634 65.575861) + (xy 139.839602 65.6005) + (xy 139.839607 65.6005) + (xy 140.080112 65.6005) + (xy 140.080126 65.6005) + (xy 140.320178 65.585694) + (xy 140.635503 65.52675) + (xy 140.941194 65.429502) + (xy 141.232618 65.295426) + (xy 141.505356 65.126554) + (xy 141.637764 65.020006) + (xy 144.591225 65.020006) + (xy 144.609892 65.245289) + (xy 144.665388 65.464439) + (xy 144.756198 65.671466) + (xy 144.879842 65.860716) + (xy 144.87985 65.860727) + (xy 145.031238 66.025176) + (xy 145.032954 66.02704) + (xy 145.211351 66.165893) + (xy 145.410169 66.273488) + (xy 145.410172 66.273489) + (xy 145.623982 66.34689) + (xy 145.623984 66.34689) + (xy 145.623986 66.346891) + (xy 145.846967 66.3841) + (xy 145.846968 66.3841) + (xy 146.073032 66.3841) + (xy 146.073033 66.3841) + (xy 146.296014 66.346891) + (xy 146.509831 66.273488) + (xy 146.708649 66.165893) + (xy 146.887046 66.02704) + (xy 147.040156 65.860719) + (xy 147.126193 65.729028) + (xy 147.179338 65.683675) + (xy 147.248569 65.674251) + (xy 147.311905 65.703753) + (xy 147.333804 65.729025) + (xy 147.419844 65.860719) + (xy 147.419849 65.860724) + (xy 147.41985 65.860727) + (xy 147.571238 66.025176) + (xy 147.572954 66.02704) + (xy 147.751351 66.165893) + (xy 147.950169 66.273488) + (xy 147.950172 66.273489) + (xy 148.163982 66.34689) + (xy 148.163984 66.34689) + (xy 148.163986 66.346891) + (xy 148.386967 66.3841) + (xy 148.386968 66.3841) + (xy 148.613032 66.3841) + (xy 148.613033 66.3841) + (xy 148.836014 66.346891) + (xy 149.049831 66.273488) + (xy 149.248649 66.165893) + (xy 149.427046 66.02704) + (xy 149.481815 65.967545) + (xy 149.541699 65.931557) + (xy 149.611537 65.933657) + (xy 149.669153 65.97318) + (xy 149.689224 66.008196) + (xy 149.733046 66.125688) + (xy 149.733049 66.125693) + (xy 149.819209 66.240787) + (xy 149.819212 66.24079) + (xy 149.934306 66.32695) + (xy 149.934313 66.326954) + (xy 150.06902 66.377196) + (xy 150.069027 66.377198) + (xy 150.128555 66.383599) + (xy 150.128572 66.3836) + (xy 150.79 66.3836) + (xy 150.79 65.464297) + (xy 150.895408 65.512435) + (xy 151.003666 65.528) + (xy 151.076334 65.528) + (xy 151.184592 65.512435) + (xy 151.29 65.464297) + (xy 151.29 66.3836) + (xy 151.951428 66.3836) + (xy 151.951444 66.383599) + (xy 152.010972 66.377198) + (xy 152.010979 66.377196) + (xy 152.145686 66.326954) + (xy 152.145693 66.32695) + (xy 152.260787 66.24079) + (xy 152.26079 66.240787) + (xy 152.34695 66.125693) + (xy 152.346954 66.125686) + (xy 152.390775 66.008197) + (xy 152.432646 65.952263) + (xy 152.49811 65.927846) + (xy 152.566383 65.942698) + (xy 152.598186 65.967547) + (xy 152.651238 66.025176) + (xy 152.652954 66.02704) + (xy 152.831351 66.165893) + (xy 153.030169 66.273488) + (xy 153.030172 66.273489) + (xy 153.243982 66.34689) + (xy 153.243984 66.34689) + (xy 153.243986 66.346891) + (xy 153.466967 66.3841) + (xy 153.466968 66.3841) + (xy 153.693032 66.3841) + (xy 153.693033 66.3841) + (xy 153.916014 66.346891) + (xy 154.129831 66.273488) + (xy 154.328649 66.165893) + (xy 154.507046 66.02704) + (xy 154.660156 65.860719) + (xy 154.783802 65.671465) + (xy 154.874611 65.464441) + (xy 154.930107 65.245293) + (xy 154.942723 65.093039) + (xy 154.948775 65.020006) + (xy 157.321225 65.020006) + (xy 157.339892 65.245289) + (xy 157.395388 65.464439) + (xy 157.486198 65.671466) + (xy 157.609842 65.860716) + (xy 157.60985 65.860727) + (xy 157.761238 66.025176) + (xy 157.762954 66.02704) + (xy 157.941351 66.165893) + (xy 158.140169 66.273488) + (xy 158.140172 66.273489) + (xy 158.353982 66.34689) + (xy 158.353984 66.34689) + (xy 158.353986 66.346891) + (xy 158.576967 66.3841) + (xy 158.576968 66.3841) + (xy 158.803032 66.3841) + (xy 158.803033 66.3841) + (xy 159.026014 66.346891) + (xy 159.239831 66.273488) + (xy 159.438649 66.165893) + (xy 159.617046 66.02704) + (xy 159.770156 65.860719) + (xy 159.856193 65.729028) + (xy 159.909338 65.683675) + (xy 159.978569 65.674251) + (xy 160.041905 65.703753) + (xy 160.063804 65.729025) + (xy 160.149844 65.860719) + (xy 160.149849 65.860724) + (xy 160.14985 65.860727) + (xy 160.301238 66.025176) + (xy 160.302954 66.02704) + (xy 160.481351 66.165893) + (xy 160.680169 66.273488) + (xy 160.680172 66.273489) + (xy 160.893982 66.34689) + (xy 160.893984 66.34689) + (xy 160.893986 66.346891) + (xy 161.116967 66.3841) + (xy 161.116968 66.3841) + (xy 161.343032 66.3841) + (xy 161.343033 66.3841) + (xy 161.566014 66.346891) + (xy 161.779831 66.273488) + (xy 161.978649 66.165893) + (xy 162.157046 66.02704) + (xy 162.211815 65.967545) + (xy 162.271699 65.931557) + (xy 162.341537 65.933657) + (xy 162.399153 65.97318) + (xy 162.419224 66.008196) + (xy 162.463046 66.125688) + (xy 162.463049 66.125693) + (xy 162.549209 66.240787) + (xy 162.549212 66.24079) + (xy 162.664306 66.32695) + (xy 162.664313 66.326954) + (xy 162.79902 66.377196) + (xy 162.799027 66.377198) + (xy 162.858555 66.383599) + (xy 162.858572 66.3836) + (xy 163.52 66.3836) + (xy 163.52 65.464297) + (xy 163.625408 65.512435) + (xy 163.733666 65.528) + (xy 163.806334 65.528) + (xy 163.914592 65.512435) + (xy 164.02 65.464297) + (xy 164.02 66.3836) + (xy 164.681428 66.3836) + (xy 164.681444 66.383599) + (xy 164.740972 66.377198) + (xy 164.740979 66.377196) + (xy 164.875686 66.326954) + (xy 164.875693 66.32695) + (xy 164.990787 66.24079) + (xy 164.99079 66.240787) + (xy 165.07695 66.125693) + (xy 165.076954 66.125686) + (xy 165.120775 66.008197) + (xy 165.162646 65.952263) + (xy 165.22811 65.927846) + (xy 165.296383 65.942698) + (xy 165.328186 65.967547) + (xy 165.381238 66.025176) + (xy 165.382954 66.02704) + (xy 165.561351 66.165893) + (xy 165.760169 66.273488) + (xy 165.760172 66.273489) + (xy 165.973982 66.34689) + (xy 165.973984 66.34689) + (xy 165.973986 66.346891) + (xy 166.196967 66.3841) + (xy 166.196968 66.3841) + (xy 166.423032 66.3841) + (xy 166.423033 66.3841) + (xy 166.646014 66.346891) + (xy 166.859831 66.273488) + (xy 167.058649 66.165893) + (xy 167.237046 66.02704) + (xy 167.390156 65.860719) + (xy 167.513802 65.671465) + (xy 167.604611 65.464441) + (xy 167.660107 65.245293) + (xy 167.672723 65.093039) + (xy 167.678775 65.020006) + (xy 167.678775 65.019993) + (xy 167.661684 64.813737) + (xy 167.660107 64.794707) + (xy 167.604611 64.575559) + (xy 167.513802 64.368535) + (xy 167.390156 64.179281) + (xy 167.390153 64.179278) + (xy 167.390149 64.179272) + (xy 167.237049 64.012963) + (xy 167.237048 64.012962) + (xy 167.237046 64.01296) + (xy 167.058649 63.874107) + (xy 167.03239 63.859896) + (xy 166.859832 63.766512) + (xy 166.859827 63.76651) + (xy 166.646017 63.693109) + (xy 166.464388 63.662801) + (xy 166.423033 63.6559) + (xy 166.196967 63.6559) + (xy 166.155612 63.662801) + (xy 165.973982 63.693109) + (xy 165.760172 63.76651) + (xy 165.760167 63.766512) + (xy 165.561352 63.874106) + (xy 165.382955 64.012958) + (xy 165.328186 64.072453) + (xy 165.268298 64.108443) + (xy 165.19846 64.106342) + (xy 165.140845 64.066817) + (xy 165.120775 64.031802) + (xy 165.076954 63.914313) + (xy 165.07695 63.914306) + (xy 164.99079 63.799212) + (xy 164.990787 63.799209) + (xy 164.875693 63.713049) + (xy 164.875686 63.713045) + (xy 164.740979 63.662803) + (xy 164.740972 63.662801) + (xy 164.681444 63.6564) + (xy 164.02 63.6564) + (xy 164.02 64.575702) + (xy 163.914592 64.527565) + (xy 163.806334 64.512) + (xy 163.733666 64.512) + (xy 163.625408 64.527565) + (xy 163.52 64.575702) + (xy 163.52 63.6564) + (xy 162.858555 63.6564) + (xy 162.799027 63.662801) + (xy 162.79902 63.662803) + (xy 162.664313 63.713045) + (xy 162.664306 63.713049) + (xy 162.549212 63.799209) + (xy 162.549209 63.799212) + (xy 162.463049 63.914306) + (xy 162.463046 63.914312) + (xy 162.419224 64.031803) + (xy 162.377352 64.087736) + (xy 162.311887 64.112153) + (xy 162.243615 64.097301) + (xy 162.211813 64.072452) + (xy 162.157049 64.012963) + (xy 162.157048 64.012962) + (xy 162.157046 64.01296) + (xy 161.978649 63.874107) + (xy 161.95239 63.859896) + (xy 161.779832 63.766512) + (xy 161.779827 63.76651) + (xy 161.566017 63.693109) + (xy 161.384388 63.662801) + (xy 161.343033 63.6559) + (xy 161.116967 63.6559) + (xy 161.075612 63.662801) + (xy 160.893982 63.693109) + (xy 160.680172 63.76651) + (xy 160.680167 63.766512) + (xy 160.481352 63.874106) + (xy 160.302955 64.012959) + (xy 160.30295 64.012963) + (xy 160.14985 64.179272) + (xy 160.149846 64.179278) + (xy 160.063807 64.310969) + (xy 160.01066 64.356325) + (xy 159.941429 64.365748) + (xy 159.878093 64.336245) + (xy 159.856192 64.310969) + (xy 159.770156 64.179281) + (xy 159.770151 64.179276) + (xy 159.770149 64.179272) + (xy 159.617049 64.012963) + (xy 159.617048 64.012962) + (xy 159.617046 64.01296) + (xy 159.438649 63.874107) + (xy 159.41239 63.859896) + (xy 159.239832 63.766512) + (xy 159.239827 63.76651) + (xy 159.026017 63.693109) + (xy 158.844388 63.662801) + (xy 158.803033 63.6559) + (xy 158.576967 63.6559) + (xy 158.535612 63.662801) + (xy 158.353982 63.693109) + (xy 158.140172 63.76651) + (xy 158.140167 63.766512) + (xy 157.941352 63.874106) + (xy 157.762955 64.012959) + (xy 157.76295 64.012963) + (xy 157.60985 64.179272) + (xy 157.609842 64.179283) + (xy 157.486198 64.368533) + (xy 157.395388 64.57556) + (xy 157.339892 64.79471) + (xy 157.321225 65.019993) + (xy 157.321225 65.020006) + (xy 154.948775 65.020006) + (xy 154.948775 65.019993) + (xy 154.931684 64.813737) + (xy 154.930107 64.794707) + (xy 154.874611 64.575559) + (xy 154.783802 64.368535) + (xy 154.660156 64.179281) + (xy 154.660153 64.179278) + (xy 154.660149 64.179272) + (xy 154.507049 64.012963) + (xy 154.507048 64.012962) + (xy 154.507046 64.01296) + (xy 154.328649 63.874107) + (xy 154.30239 63.859896) + (xy 154.129832 63.766512) + (xy 154.129827 63.76651) + (xy 153.916017 63.693109) + (xy 153.734388 63.662801) + (xy 153.693033 63.6559) + (xy 153.466967 63.6559) + (xy 153.425612 63.662801) + (xy 153.243982 63.693109) + (xy 153.030172 63.76651) + (xy 153.030167 63.766512) + (xy 152.831352 63.874106) + (xy 152.652955 64.012958) + (xy 152.598186 64.072453) + (xy 152.538298 64.108443) + (xy 152.46846 64.106342) + (xy 152.410845 64.066817) + (xy 152.390775 64.031802) + (xy 152.346954 63.914313) + (xy 152.34695 63.914306) + (xy 152.26079 63.799212) + (xy 152.260787 63.799209) + (xy 152.145693 63.713049) + (xy 152.145686 63.713045) + (xy 152.010979 63.662803) + (xy 152.010972 63.662801) + (xy 151.951444 63.6564) + (xy 151.29 63.6564) + (xy 151.29 64.575702) + (xy 151.184592 64.527565) + (xy 151.076334 64.512) + (xy 151.003666 64.512) + (xy 150.895408 64.527565) + (xy 150.79 64.575702) + (xy 150.79 63.6564) + (xy 150.128555 63.6564) + (xy 150.069027 63.662801) + (xy 150.06902 63.662803) + (xy 149.934313 63.713045) + (xy 149.934306 63.713049) + (xy 149.819212 63.799209) + (xy 149.819209 63.799212) + (xy 149.733049 63.914306) + (xy 149.733046 63.914312) + (xy 149.689224 64.031803) + (xy 149.647352 64.087736) + (xy 149.581887 64.112153) + (xy 149.513615 64.097301) + (xy 149.481813 64.072452) + (xy 149.427049 64.012963) + (xy 149.427048 64.012962) + (xy 149.427046 64.01296) + (xy 149.248649 63.874107) + (xy 149.22239 63.859896) + (xy 149.049832 63.766512) + (xy 149.049827 63.76651) + (xy 148.836017 63.693109) + (xy 148.654388 63.662801) + (xy 148.613033 63.6559) + (xy 148.386967 63.6559) + (xy 148.345612 63.662801) + (xy 148.163982 63.693109) + (xy 147.950172 63.76651) + (xy 147.950167 63.766512) + (xy 147.751352 63.874106) + (xy 147.572955 64.012959) + (xy 147.57295 64.012963) + (xy 147.41985 64.179272) + (xy 147.419842 64.179283) + (xy 147.333808 64.310968) + (xy 147.280662 64.356325) + (xy 147.21143 64.365748) + (xy 147.148095 64.336246) + (xy 147.126192 64.310968) + (xy 147.040157 64.179283) + (xy 147.040149 64.179272) + (xy 146.887049 64.012963) + (xy 146.887048 64.012962) + (xy 146.887046 64.01296) + (xy 146.708649 63.874107) + (xy 146.68239 63.859896) + (xy 146.509832 63.766512) + (xy 146.509827 63.76651) + (xy 146.296017 63.693109) + (xy 146.114388 63.662801) + (xy 146.073033 63.6559) + (xy 145.846967 63.6559) + (xy 145.805612 63.662801) + (xy 145.623982 63.693109) + (xy 145.410172 63.76651) + (xy 145.410167 63.766512) + (xy 145.211352 63.874106) + (xy 145.032955 64.012959) + (xy 145.03295 64.012963) + (xy 144.87985 64.179272) + (xy 144.879842 64.179283) + (xy 144.756198 64.368533) + (xy 144.665388 64.57556) + (xy 144.609892 64.79471) + (xy 144.591225 65.019993) + (xy 144.591225 65.020006) + (xy 141.637764 65.020006) + (xy 141.755275 64.925445) + (xy 141.978585 64.695148) + (xy 142.171903 64.439155) + (xy 142.332296 64.161345) + (xy 142.457334 63.865931) + (xy 142.545122 63.55739) + (xy 142.594328 63.2404) + (xy 142.604206 62.919765) + (xy 142.574608 62.600347) + (xy 142.540063 62.44261) + (xy 142.505981 62.286986) + (xy 142.476974 62.204671) + (xy 142.399366 61.984436) + (xy 142.256379 61.697279) + (xy 142.197807 61.608884) + (xy 142.079191 61.429873) + (xy 142.079184 61.429865) + (xy 141.886255 61.204676) + (xy 141.857586 61.140959) + (xy 141.867917 61.071857) + (xy 141.913967 61.019311) + (xy 141.980421 61) + (xy 178.876 61) + (xy 178.943039 61.019685) + (xy 178.988794 61.072489) + (xy 179 61.124) + (xy 179 155.023505) + (xy 178.980315 155.090544) + (xy 178.927511 155.136299) + (xy 178.858353 155.146243) + (xy 178.794797 155.117218) + (xy 178.792462 155.115142) + (xy 178.63342 154.970156) + (xy 178.63341 154.970148) + (xy 178.371594 154.784812) + (xy 178.371584 154.784806) + (xy 178.088983 154.633051) + (xy 178.088973 154.633047) + (xy 178.088971 154.633046) + (xy 178.020805 154.606638) + (xy 177.789855 154.517167) + (xy 177.789851 154.517166) + (xy 177.478745 154.43892) + (xy 177.160398 154.3995) + (xy 177.160393 154.3995) + (xy 176.919874 154.3995) + (xy 176.867156 154.402751) + (xy 176.679824 154.414305) + (xy 176.364499 154.473249) + (xy 176.364497 154.47325) + (xy 176.058814 154.570495) + (xy 176.05881 154.570496) + (xy 176.058806 154.570498) + (xy 175.884928 154.650494) + (xy 175.767381 154.704574) + (xy 175.494656 154.873437) + (xy 175.494636 154.873451) + (xy 175.244728 155.074551) + (xy 175.021413 155.304853) + (xy 174.828095 155.560847) + (xy 174.667701 155.83866) + (xy 174.542668 156.134062) + (xy 174.54266 156.134086) + (xy 174.454879 156.442602) + (xy 174.454878 156.442607) + (xy 174.405672 156.759592) + (xy 174.405671 156.759603) + (xy 174.395793 157.080236) + (xy 174.425391 157.399651) + (xy 174.425392 157.399657) + (xy 174.494018 157.713013) + (xy 174.547899 157.865913) + (xy 174.595149 158) + (xy 174.600635 158.015566) + (xy 174.743621 158.302721) + (xy 174.920808 158.570126) + (xy 174.920815 158.570134) + (xy 175.113745 158.795324) + (xy 175.142414 158.859041) + (xy 175.132083 158.928143) + (xy 175.086033 158.980689) + (xy 175.019579 159) + (xy 84.975943 159) + (xy 84.908904 158.980315) + (xy 84.863149 158.927511) + (xy 84.853205 158.858353) + (xy 84.88223 158.794797) + (xy 84.886922 158.789679) + (xy 84.888463 158.788089) + (xy 84.978585 158.695148) + (xy 85.171903 158.439155) + (xy 85.332296 158.161345) + (xy 85.457334 157.865931) + (xy 85.545122 157.55739) + (xy 85.594328 157.2404) + (xy 85.604206 156.919765) + (xy 85.574608 156.600347) + (xy 85.574607 156.600342) + (xy 85.506094 156.287504) + (xy 88.035233 156.287504) + (xy 88.054273 156.541579) + (xy 88.110968 156.789977) + (xy 88.110973 156.789994) + (xy 88.204058 157.027171) + (xy 88.204057 157.027171) + (xy 88.331457 157.247832) + (xy 88.373452 157.300493) + (xy 89.177226 156.496719) + (xy 89.215901 156.590088) + (xy 89.312075 156.715425) + (xy 89.437412 156.811599) + (xy 89.530779 156.850272) + (xy 88.726813 157.654237) + (xy 88.887623 157.763875) + (xy 88.887624 157.763876) + (xy 89.117176 157.874421) + (xy 89.117174 157.874421) + (xy 89.360652 157.949524) + (xy 89.360658 157.949526) + (xy 89.612595 157.987499) + (xy 89.612604 157.9875) + (xy 89.867396 157.9875) + (xy 89.867404 157.987499) + (xy 90.119341 157.949526) + (xy 90.119347 157.949524) + (xy 90.362824 157.874421) + (xy 90.592381 157.763873) + (xy 90.753185 157.654237) + (xy 89.94922 156.850272) + (xy 90.042588 156.811599) + (xy 90.167925 156.715425) + (xy 90.264099 156.590089) + (xy 90.302773 156.49672) + (xy 91.106545 157.300493) + (xy 91.148545 157.247827) + (xy 91.275941 157.027171) + (xy 91.369026 156.789994) + (xy 91.3704 156.785544) + (xy 91.371574 156.785906) + (xy 91.402945 156.7298) + (xy 91.464601 156.696932) + (xy 91.534239 156.702615) + (xy 91.58975 156.745045) + (xy 91.60842 156.785912) + (xy 91.609122 156.785696) + (xy 91.61049 156.79013) + (xy 91.610492 156.790137) + (xy 91.703607 157.027388) + (xy 91.831041 157.248112) + (xy 91.98995 157.447377) + (xy 92.176783 157.620732) + (xy 92.387366 157.764305) + (xy 92.387371 157.764307) + (xy 92.387372 157.764308) + (xy 92.387373 157.764309) + (xy 92.509328 157.823038) + (xy 92.616992 157.874887) + (xy 92.616993 157.874887) + (xy 92.616996 157.874889) + (xy 92.860542 157.950013) + (xy 93.112565 157.988) + (xy 93.367435 157.988) + (xy 93.619458 157.950013) + (xy 93.863004 157.874889) + (xy 94.092634 157.764305) + (xy 94.303217 157.620732) + (xy 94.49005 157.447377) + (xy 94.648959 157.248112) + (xy 94.776393 157.027388) + (xy 94.869508 156.790137) + (xy 94.86951 156.790124) + (xy 94.870878 156.785696) + (xy 94.872324 156.786142) + (xy 94.903213 156.730912) + (xy 94.964873 156.698052) + (xy 95.03451 156.703743) + (xy 95.090016 156.74618) + (xy 95.108192 156.785982) + (xy 95.109122 156.785696) + (xy 95.11049 156.79013) + (xy 95.110492 156.790137) + (xy 95.203607 157.027388) + (xy 95.331041 157.248112) + (xy 95.48995 157.447377) + (xy 95.676783 157.620732) + (xy 95.887366 157.764305) + (xy 95.887371 157.764307) + (xy 95.887372 157.764308) + (xy 95.887373 157.764309) + (xy 96.009328 157.823038) + (xy 96.116992 157.874887) + (xy 96.116993 157.874887) + (xy 96.116996 157.874889) + (xy 96.360542 157.950013) + (xy 96.612565 157.988) + (xy 96.867435 157.988) + (xy 97.119458 157.950013) + (xy 97.363004 157.874889) + (xy 97.592634 157.764305) + (xy 97.803217 157.620732) + (xy 97.99005 157.447377) + (xy 98.148959 157.248112) + (xy 98.276393 157.027388) + (xy 98.369508 156.790137) + (xy 98.36951 156.790124) + (xy 98.370878 156.785696) + (xy 98.372008 156.786044) + (xy 98.403464 156.729795) + (xy 98.465121 156.69693) + (xy 98.534759 156.702617) + (xy 98.590268 156.745051) + (xy 98.608868 156.785769) + (xy 98.6096 156.785544) + (xy 98.610973 156.789994) + (xy 98.704058 157.027171) + (xy 98.704057 157.027171) + (xy 98.831457 157.247832) + (xy 98.873452 157.300493) + (xy 98.873453 157.300493) + (xy 99.677226 156.496719) + (xy 99.715901 156.590088) + (xy 99.812075 156.715425) + (xy 99.937412 156.811599) + (xy 100.030779 156.850272) + (xy 99.226813 157.654237) + (xy 99.387623 157.763875) + (xy 99.387624 157.763876) + (xy 99.617176 157.874421) + (xy 99.617174 157.874421) + (xy 99.860652 157.949524) + (xy 99.860658 157.949526) + (xy 100.112595 157.987499) + (xy 100.112604 157.9875) + (xy 100.367396 157.9875) + (xy 100.367404 157.987499) + (xy 100.619341 157.949526) + (xy 100.619347 157.949524) + (xy 100.862824 157.874421) + (xy 101.092381 157.763873) + (xy 101.253185 157.654237) + (xy 100.44922 156.850272) + (xy 100.542588 156.811599) + (xy 100.667925 156.715425) + (xy 100.764099 156.590089) + (xy 100.802773 156.49672) + (xy 101.606545 157.300493) + (xy 101.648545 157.247827) + (xy 101.775941 157.027171) + (xy 101.869026 156.789994) + (xy 101.8704 156.785544) + (xy 101.871574 156.785906) + (xy 101.902945 156.7298) + (xy 101.964601 156.696932) + (xy 102.034239 156.702615) + (xy 102.08975 156.745045) + (xy 102.10842 156.785912) + (xy 102.109122 156.785696) + (xy 102.11049 156.79013) + (xy 102.110492 156.790137) + (xy 102.203607 157.027388) + (xy 102.331041 157.248112) + (xy 102.48995 157.447377) + (xy 102.676783 157.620732) + (xy 102.887366 157.764305) + (xy 102.887371 157.764307) + (xy 102.887372 157.764308) + (xy 102.887373 157.764309) + (xy 103.009328 157.823038) + (xy 103.116992 157.874887) + (xy 103.116993 157.874887) + (xy 103.116996 157.874889) + (xy 103.360542 157.950013) + (xy 103.612565 157.988) + (xy 103.867435 157.988) + (xy 104.119458 157.950013) + (xy 104.363004 157.874889) + (xy 104.592634 157.764305) + (xy 104.803217 157.620732) + (xy 104.99005 157.447377) + (xy 105.148959 157.248112) + (xy 105.276393 157.027388) + (xy 105.369508 156.790137) + (xy 105.36951 156.790124) + (xy 105.370878 156.785696) + (xy 105.372324 156.786142) + (xy 105.403213 156.730912) + (xy 105.464873 156.698052) + (xy 105.53451 156.703743) + (xy 105.590016 156.74618) + (xy 105.608192 156.785982) + (xy 105.609122 156.785696) + (xy 105.61049 156.79013) + (xy 105.610492 156.790137) + (xy 105.703607 157.027388) + (xy 105.831041 157.248112) + (xy 105.98995 157.447377) + (xy 106.176783 157.620732) + (xy 106.387366 157.764305) + (xy 106.387371 157.764307) + (xy 106.387372 157.764308) + (xy 106.387373 157.764309) + (xy 106.509328 157.823038) + (xy 106.616992 157.874887) + (xy 106.616993 157.874887) + (xy 106.616996 157.874889) + (xy 106.860542 157.950013) + (xy 107.112565 157.988) + (xy 107.367435 157.988) + (xy 107.619458 157.950013) + (xy 107.863004 157.874889) + (xy 108.092634 157.764305) + (xy 108.303217 157.620732) + (xy 108.49005 157.447377) + (xy 108.648959 157.248112) + (xy 108.776393 157.027388) + (xy 108.869508 156.790137) + (xy 108.86951 156.790124) + (xy 108.870878 156.785696) + (xy 108.872008 156.786044) + (xy 108.903464 156.729795) + (xy 108.965121 156.69693) + (xy 109.034759 156.702617) + (xy 109.090268 156.745051) + (xy 109.108868 156.785769) + (xy 109.1096 156.785544) + (xy 109.110973 156.789994) + (xy 109.204058 157.027171) + (xy 109.204057 157.027171) + (xy 109.331457 157.247832) + (xy 109.373452 157.300493) + (xy 110.177226 156.496719) + (xy 110.215901 156.590088) + (xy 110.312075 156.715425) + (xy 110.437412 156.811599) + (xy 110.530779 156.850272) + (xy 109.726813 157.654237) + (xy 109.887623 157.763875) + (xy 109.887624 157.763876) + (xy 110.117176 157.874421) + (xy 110.117174 157.874421) + (xy 110.360652 157.949524) + (xy 110.360658 157.949526) + (xy 110.612595 157.987499) + (xy 110.612604 157.9875) + (xy 110.867396 157.9875) + (xy 110.867404 157.987499) + (xy 111.119341 157.949526) + (xy 111.119347 157.949524) + (xy 111.362824 157.874421) + (xy 111.592381 157.763873) + (xy 111.753185 157.654237) + (xy 110.94922 156.850272) + (xy 111.042588 156.811599) + (xy 111.167925 156.715425) + (xy 111.264099 156.590089) + (xy 111.302773 156.49672) + (xy 112.106545 157.300493) + (xy 112.148545 157.247827) + (xy 112.275941 157.027171) + (xy 112.369026 156.789994) + (xy 112.3704 156.785544) + (xy 112.371574 156.785906) + (xy 112.402945 156.7298) + (xy 112.464601 156.696932) + (xy 112.534239 156.702615) + (xy 112.58975 156.745045) + (xy 112.60842 156.785912) + (xy 112.609122 156.785696) + (xy 112.61049 156.79013) + (xy 112.610492 156.790137) + (xy 112.703607 157.027388) + (xy 112.831041 157.248112) + (xy 112.98995 157.447377) + (xy 113.176783 157.620732) + (xy 113.387366 157.764305) + (xy 113.387371 157.764307) + (xy 113.387372 157.764308) + (xy 113.387373 157.764309) + (xy 113.509328 157.823038) + (xy 113.616992 157.874887) + (xy 113.616993 157.874887) + (xy 113.616996 157.874889) + (xy 113.860542 157.950013) + (xy 114.112565 157.988) + (xy 114.367435 157.988) + (xy 114.619458 157.950013) + (xy 114.863004 157.874889) + (xy 115.092634 157.764305) + (xy 115.303217 157.620732) + (xy 115.49005 157.447377) + (xy 115.648959 157.248112) + (xy 115.776393 157.027388) + (xy 115.869508 156.790137) + (xy 115.86951 156.790124) + (xy 115.870878 156.785696) + (xy 115.872324 156.786142) + (xy 115.903213 156.730912) + (xy 115.964873 156.698052) + (xy 116.03451 156.703743) + (xy 116.090016 156.74618) + (xy 116.108192 156.785982) + (xy 116.109122 156.785696) + (xy 116.11049 156.79013) + (xy 116.110492 156.790137) + (xy 116.203607 157.027388) + (xy 116.331041 157.248112) + (xy 116.48995 157.447377) + (xy 116.676783 157.620732) + (xy 116.887366 157.764305) + (xy 116.887371 157.764307) + (xy 116.887372 157.764308) + (xy 116.887373 157.764309) + (xy 117.009328 157.823038) + (xy 117.116992 157.874887) + (xy 117.116993 157.874887) + (xy 117.116996 157.874889) + (xy 117.360542 157.950013) + (xy 117.612565 157.988) + (xy 117.867435 157.988) + (xy 118.119458 157.950013) + (xy 118.363004 157.874889) + (xy 118.592634 157.764305) + (xy 118.803217 157.620732) + (xy 118.99005 157.447377) + (xy 119.148959 157.248112) + (xy 119.276393 157.027388) + (xy 119.369508 156.790137) + (xy 119.36951 156.790124) + (xy 119.370878 156.785696) + (xy 119.372008 156.786044) + (xy 119.403464 156.729795) + (xy 119.465121 156.69693) + (xy 119.534759 156.702617) + (xy 119.590268 156.745051) + (xy 119.608868 156.785769) + (xy 119.6096 156.785544) + (xy 119.610973 156.789994) + (xy 119.704058 157.027171) + (xy 119.704057 157.027171) + (xy 119.831457 157.247832) + (xy 119.873452 157.300493) + (xy 119.873453 157.300493) + (xy 120.677226 156.496719) + (xy 120.715901 156.590088) + (xy 120.812075 156.715425) + (xy 120.937412 156.811599) + (xy 121.030779 156.850272) + (xy 120.226813 157.654237) + (xy 120.387623 157.763875) + (xy 120.387624 157.763876) + (xy 120.617176 157.874421) + (xy 120.617174 157.874421) + (xy 120.860652 157.949524) + (xy 120.860658 157.949526) + (xy 121.112595 157.987499) + (xy 121.112604 157.9875) + (xy 121.367396 157.9875) + (xy 121.367404 157.987499) + (xy 121.619341 157.949526) + (xy 121.619347 157.949524) + (xy 121.862824 157.874421) + (xy 122.092381 157.763873) + (xy 122.253185 157.654237) + (xy 121.44922 156.850272) + (xy 121.542588 156.811599) + (xy 121.667925 156.715425) + (xy 121.764099 156.590089) + (xy 121.802772 156.49672) + (xy 122.606545 157.300493) + (xy 122.648545 157.247827) + (xy 122.775941 157.027171) + (xy 122.869026 156.789994) + (xy 122.8704 156.785544) + (xy 122.871574 156.785906) + (xy 122.902945 156.7298) + (xy 122.964601 156.696932) + (xy 123.034239 156.702615) + (xy 123.08975 156.745045) + (xy 123.10842 156.785912) + (xy 123.109122 156.785696) + (xy 123.11049 156.79013) + (xy 123.110492 156.790137) + (xy 123.203607 157.027388) + (xy 123.331041 157.248112) + (xy 123.48995 157.447377) + (xy 123.676783 157.620732) + (xy 123.887366 157.764305) + (xy 123.887371 157.764307) + (xy 123.887372 157.764308) + (xy 123.887373 157.764309) + (xy 124.009328 157.823038) + (xy 124.116992 157.874887) + (xy 124.116993 157.874887) + (xy 124.116996 157.874889) + (xy 124.360542 157.950013) + (xy 124.612565 157.988) + (xy 124.867435 157.988) + (xy 125.119458 157.950013) + (xy 125.363004 157.874889) + (xy 125.592634 157.764305) + (xy 125.803217 157.620732) + (xy 125.99005 157.447377) + (xy 126.148959 157.248112) + (xy 126.276393 157.027388) + (xy 126.369508 156.790137) + (xy 126.36951 156.790124) + (xy 126.370878 156.785696) + (xy 126.372324 156.786142) + (xy 126.403213 156.730912) + (xy 126.464873 156.698052) + (xy 126.53451 156.703743) + (xy 126.590016 156.74618) + (xy 126.608192 156.785982) + (xy 126.609122 156.785696) + (xy 126.61049 156.79013) + (xy 126.610492 156.790137) + (xy 126.703607 157.027388) + (xy 126.831041 157.248112) + (xy 126.98995 157.447377) + (xy 127.176783 157.620732) + (xy 127.387366 157.764305) + (xy 127.387371 157.764307) + (xy 127.387372 157.764308) + (xy 127.387373 157.764309) + (xy 127.509328 157.823038) + (xy 127.616992 157.874887) + (xy 127.616993 157.874887) + (xy 127.616996 157.874889) + (xy 127.860542 157.950013) + (xy 128.112565 157.988) + (xy 128.367435 157.988) + (xy 128.619458 157.950013) + (xy 128.863004 157.874889) + (xy 129.092634 157.764305) + (xy 129.303217 157.620732) + (xy 129.49005 157.447377) + (xy 129.648959 157.248112) + (xy 129.776393 157.027388) + (xy 129.869508 156.790137) + (xy 129.86951 156.790124) + (xy 129.870878 156.785696) + (xy 129.872008 156.786044) + (xy 129.903464 156.729795) + (xy 129.965121 156.69693) + (xy 130.034759 156.702617) + (xy 130.090268 156.745051) + (xy 130.108868 156.785769) + (xy 130.1096 156.785544) + (xy 130.110973 156.789994) + (xy 130.204058 157.027171) + (xy 130.204057 157.027171) + (xy 130.331457 157.247832) + (xy 130.373452 157.300493) + (xy 131.177226 156.496719) + (xy 131.215901 156.590088) + (xy 131.312075 156.715425) + (xy 131.437412 156.811599) + (xy 131.530779 156.850272) + (xy 130.726813 157.654237) + (xy 130.887623 157.763875) + (xy 130.887624 157.763876) + (xy 131.117176 157.874421) + (xy 131.117174 157.874421) + (xy 131.360652 157.949524) + (xy 131.360658 157.949526) + (xy 131.612595 157.987499) + (xy 131.612604 157.9875) + (xy 131.867396 157.9875) + (xy 131.867404 157.987499) + (xy 132.119341 157.949526) + (xy 132.119347 157.949524) + (xy 132.362824 157.874421) + (xy 132.592381 157.763873) + (xy 132.753185 157.654237) + (xy 131.94922 156.850272) + (xy 132.042588 156.811599) + (xy 132.167925 156.715425) + (xy 132.264099 156.590089) + (xy 132.302772 156.49672) + (xy 133.106545 157.300493) + (xy 133.148545 157.247827) + (xy 133.275941 157.027171) + (xy 133.369026 156.789994) + (xy 133.3704 156.785544) + (xy 133.371574 156.785906) + (xy 133.402945 156.7298) + (xy 133.464601 156.696932) + (xy 133.534239 156.702615) + (xy 133.58975 156.745045) + (xy 133.60842 156.785912) + (xy 133.609122 156.785696) + (xy 133.61049 156.79013) + (xy 133.610492 156.790137) + (xy 133.703607 157.027388) + (xy 133.831041 157.248112) + (xy 133.98995 157.447377) + (xy 134.176783 157.620732) + (xy 134.387366 157.764305) + (xy 134.387371 157.764307) + (xy 134.387372 157.764308) + (xy 134.387373 157.764309) + (xy 134.509328 157.823038) + (xy 134.616992 157.874887) + (xy 134.616993 157.874887) + (xy 134.616996 157.874889) + (xy 134.860542 157.950013) + (xy 135.112565 157.988) + (xy 135.367435 157.988) + (xy 135.619458 157.950013) + (xy 135.863004 157.874889) + (xy 136.092634 157.764305) + (xy 136.303217 157.620732) + (xy 136.49005 157.447377) + (xy 136.648959 157.248112) + (xy 136.776393 157.027388) + (xy 136.869508 156.790137) + (xy 136.86951 156.790124) + (xy 136.870878 156.785696) + (xy 136.872324 156.786142) + (xy 136.903213 156.730912) + (xy 136.964873 156.698052) + (xy 137.03451 156.703743) + (xy 137.090016 156.74618) + (xy 137.108192 156.785982) + (xy 137.109122 156.785696) + (xy 137.11049 156.79013) + (xy 137.110492 156.790137) + (xy 137.203607 157.027388) + (xy 137.331041 157.248112) + (xy 137.48995 157.447377) + (xy 137.676783 157.620732) + (xy 137.887366 157.764305) + (xy 137.887371 157.764307) + (xy 137.887372 157.764308) + (xy 137.887373 157.764309) + (xy 138.009328 157.823038) + (xy 138.116992 157.874887) + (xy 138.116993 157.874887) + (xy 138.116996 157.874889) + (xy 138.360542 157.950013) + (xy 138.612565 157.988) + (xy 138.867435 157.988) + (xy 139.119458 157.950013) + (xy 139.363004 157.874889) + (xy 139.592634 157.764305) + (xy 139.803217 157.620732) + (xy 139.99005 157.447377) + (xy 140.148959 157.248112) + (xy 140.276393 157.027388) + (xy 140.369508 156.790137) + (xy 140.36951 156.790124) + (xy 140.370878 156.785696) + (xy 140.372008 156.786044) + (xy 140.403464 156.729795) + (xy 140.465121 156.69693) + (xy 140.534759 156.702617) + (xy 140.590268 156.745051) + (xy 140.608868 156.785769) + (xy 140.6096 156.785544) + (xy 140.610973 156.789994) + (xy 140.704058 157.027171) + (xy 140.704057 157.027171) + (xy 140.831457 157.247832) + (xy 140.873452 157.300493) + (xy 140.873453 157.300493) + (xy 141.677226 156.496719) + (xy 141.715901 156.590088) + (xy 141.812075 156.715425) + (xy 141.937412 156.811599) + (xy 142.030779 156.850272) + (xy 141.226813 157.654237) + (xy 141.387623 157.763875) + (xy 141.387624 157.763876) + (xy 141.617176 157.874421) + (xy 141.617174 157.874421) + (xy 141.860652 157.949524) + (xy 141.860658 157.949526) + (xy 142.112595 157.987499) + (xy 142.112604 157.9875) + (xy 142.367396 157.9875) + (xy 142.367404 157.987499) + (xy 142.619341 157.949526) + (xy 142.619347 157.949524) + (xy 142.862824 157.874421) + (xy 143.092381 157.763873) + (xy 143.253185 157.654237) + (xy 142.44922 156.850272) + (xy 142.542588 156.811599) + (xy 142.667925 156.715425) + (xy 142.764099 156.590089) + (xy 142.802773 156.49672) + (xy 143.606545 157.300493) + (xy 143.648545 157.247827) + (xy 143.775941 157.027171) + (xy 143.869026 156.789994) + (xy 143.8704 156.785544) + (xy 143.871574 156.785906) + (xy 143.902945 156.7298) + (xy 143.964601 156.696932) + (xy 144.034239 156.702615) + (xy 144.08975 156.745045) + (xy 144.10842 156.785912) + (xy 144.109122 156.785696) + (xy 144.11049 156.79013) + (xy 144.110492 156.790137) + (xy 144.203607 157.027388) + (xy 144.331041 157.248112) + (xy 144.48995 157.447377) + (xy 144.676783 157.620732) + (xy 144.887366 157.764305) + (xy 144.887371 157.764307) + (xy 144.887372 157.764308) + (xy 144.887373 157.764309) + (xy 145.009328 157.823038) + (xy 145.116992 157.874887) + (xy 145.116993 157.874887) + (xy 145.116996 157.874889) + (xy 145.360542 157.950013) + (xy 145.612565 157.988) + (xy 145.867435 157.988) + (xy 146.119458 157.950013) + (xy 146.363004 157.874889) + (xy 146.592634 157.764305) + (xy 146.803217 157.620732) + (xy 146.99005 157.447377) + (xy 147.148959 157.248112) + (xy 147.276393 157.027388) + (xy 147.369508 156.790137) + (xy 147.36951 156.790124) + (xy 147.370878 156.785696) + (xy 147.372324 156.786142) + (xy 147.403213 156.730912) + (xy 147.464873 156.698052) + (xy 147.53451 156.703743) + (xy 147.590016 156.74618) + (xy 147.608192 156.785982) + (xy 147.609122 156.785696) + (xy 147.61049 156.79013) + (xy 147.610492 156.790137) + (xy 147.703607 157.027388) + (xy 147.831041 157.248112) + (xy 147.98995 157.447377) + (xy 148.176783 157.620732) + (xy 148.387366 157.764305) + (xy 148.387371 157.764307) + (xy 148.387372 157.764308) + (xy 148.387373 157.764309) + (xy 148.509328 157.823038) + (xy 148.616992 157.874887) + (xy 148.616993 157.874887) + (xy 148.616996 157.874889) + (xy 148.860542 157.950013) + (xy 149.112565 157.988) + (xy 149.367435 157.988) + (xy 149.619458 157.950013) + (xy 149.863004 157.874889) + (xy 150.092634 157.764305) + (xy 150.303217 157.620732) + (xy 150.49005 157.447377) + (xy 150.648959 157.248112) + (xy 150.776393 157.027388) + (xy 150.869508 156.790137) + (xy 150.86951 156.790124) + (xy 150.870878 156.785696) + (xy 150.872008 156.786044) + (xy 150.903464 156.729795) + (xy 150.965121 156.69693) + (xy 151.034759 156.702617) + (xy 151.090268 156.745051) + (xy 151.108868 156.785769) + (xy 151.1096 156.785544) + (xy 151.110973 156.789994) + (xy 151.204058 157.027171) + (xy 151.204057 157.027171) + (xy 151.331457 157.247832) + (xy 151.373452 157.300493) + (xy 152.177226 156.496719) + (xy 152.215901 156.590088) + (xy 152.312075 156.715425) + (xy 152.437412 156.811599) + (xy 152.530779 156.850272) + (xy 151.726813 157.654237) + (xy 151.887623 157.763875) + (xy 151.887624 157.763876) + (xy 152.117176 157.874421) + (xy 152.117174 157.874421) + (xy 152.360652 157.949524) + (xy 152.360658 157.949526) + (xy 152.612595 157.987499) + (xy 152.612604 157.9875) + (xy 152.867396 157.9875) + (xy 152.867404 157.987499) + (xy 153.119341 157.949526) + (xy 153.119347 157.949524) + (xy 153.362824 157.874421) + (xy 153.592381 157.763873) + (xy 153.753185 157.654237) + (xy 152.94922 156.850272) + (xy 153.042588 156.811599) + (xy 153.167925 156.715425) + (xy 153.264099 156.590089) + (xy 153.302772 156.49672) + (xy 154.106545 157.300493) + (xy 154.148545 157.247827) + (xy 154.275941 157.027171) + (xy 154.369026 156.789994) + (xy 154.3704 156.785544) + (xy 154.371574 156.785906) + (xy 154.402945 156.7298) + (xy 154.464601 156.696932) + (xy 154.534239 156.702615) + (xy 154.58975 156.745045) + (xy 154.60842 156.785912) + (xy 154.609122 156.785696) + (xy 154.61049 156.79013) + (xy 154.610492 156.790137) + (xy 154.703607 157.027388) + (xy 154.831041 157.248112) + (xy 154.98995 157.447377) + (xy 155.176783 157.620732) + (xy 155.387366 157.764305) + (xy 155.387371 157.764307) + (xy 155.387372 157.764308) + (xy 155.387373 157.764309) + (xy 155.509328 157.823038) + (xy 155.616992 157.874887) + (xy 155.616993 157.874887) + (xy 155.616996 157.874889) + (xy 155.860542 157.950013) + (xy 156.112565 157.988) + (xy 156.367435 157.988) + (xy 156.619458 157.950013) + (xy 156.863004 157.874889) + (xy 157.092634 157.764305) + (xy 157.303217 157.620732) + (xy 157.49005 157.447377) + (xy 157.648959 157.248112) + (xy 157.776393 157.027388) + (xy 157.869508 156.790137) + (xy 157.86951 156.790124) + (xy 157.870878 156.785696) + (xy 157.872324 156.786142) + (xy 157.903213 156.730912) + (xy 157.964873 156.698052) + (xy 158.03451 156.703743) + (xy 158.090016 156.74618) + (xy 158.108192 156.785982) + (xy 158.109122 156.785696) + (xy 158.11049 156.79013) + (xy 158.110492 156.790137) + (xy 158.203607 157.027388) + (xy 158.331041 157.248112) + (xy 158.48995 157.447377) + (xy 158.676783 157.620732) + (xy 158.887366 157.764305) + (xy 158.887371 157.764307) + (xy 158.887372 157.764308) + (xy 158.887373 157.764309) + (xy 159.009328 157.823038) + (xy 159.116992 157.874887) + (xy 159.116993 157.874887) + (xy 159.116996 157.874889) + (xy 159.360542 157.950013) + (xy 159.612565 157.988) + (xy 159.867435 157.988) + (xy 160.119458 157.950013) + (xy 160.363004 157.874889) + (xy 160.592634 157.764305) + (xy 160.803217 157.620732) + (xy 160.99005 157.447377) + (xy 161.148959 157.248112) + (xy 161.276393 157.027388) + (xy 161.369508 156.790137) + (xy 161.36951 156.790124) + (xy 161.370878 156.785696) + (xy 161.372008 156.786044) + (xy 161.403464 156.729795) + (xy 161.465121 156.69693) + (xy 161.534759 156.702617) + (xy 161.590268 156.745051) + (xy 161.608868 156.785769) + (xy 161.6096 156.785544) + (xy 161.610973 156.789994) + (xy 161.704058 157.027171) + (xy 161.704057 157.027171) + (xy 161.831457 157.247832) + (xy 161.873452 157.300493) + (xy 162.677226 156.496719) + (xy 162.715901 156.590088) + (xy 162.812075 156.715425) + (xy 162.937412 156.811599) + (xy 163.030779 156.850272) + (xy 162.226813 157.654237) + (xy 162.387623 157.763875) + (xy 162.387624 157.763876) + (xy 162.617176 157.874421) + (xy 162.617174 157.874421) + (xy 162.860652 157.949524) + (xy 162.860658 157.949526) + (xy 163.112595 157.987499) + (xy 163.112604 157.9875) + (xy 163.367396 157.9875) + (xy 163.367404 157.987499) + (xy 163.619341 157.949526) + (xy 163.619347 157.949524) + (xy 163.862824 157.874421) + (xy 164.092381 157.763873) + (xy 164.253185 157.654237) + (xy 163.44922 156.850272) + (xy 163.542588 156.811599) + (xy 163.667925 156.715425) + (xy 163.764099 156.590089) + (xy 163.802772 156.496721) + (xy 164.606545 157.300493) + (xy 164.648545 157.247827) + (xy 164.775941 157.027171) + (xy 164.869026 156.789994) + (xy 164.8704 156.785544) + (xy 164.871574 156.785906) + (xy 164.902945 156.7298) + (xy 164.964601 156.696932) + (xy 165.034239 156.702615) + (xy 165.08975 156.745045) + (xy 165.10842 156.785912) + (xy 165.109122 156.785696) + (xy 165.11049 156.79013) + (xy 165.110492 156.790137) + (xy 165.203607 157.027388) + (xy 165.331041 157.248112) + (xy 165.48995 157.447377) + (xy 165.676783 157.620732) + (xy 165.887366 157.764305) + (xy 165.887371 157.764307) + (xy 165.887372 157.764308) + (xy 165.887373 157.764309) + (xy 166.009328 157.823038) + (xy 166.116992 157.874887) + (xy 166.116993 157.874887) + (xy 166.116996 157.874889) + (xy 166.360542 157.950013) + (xy 166.612565 157.988) + (xy 166.867435 157.988) + (xy 167.119458 157.950013) + (xy 167.363004 157.874889) + (xy 167.592634 157.764305) + (xy 167.803217 157.620732) + (xy 167.99005 157.447377) + (xy 168.148959 157.248112) + (xy 168.276393 157.027388) + (xy 168.369508 156.790137) + (xy 168.36951 156.790124) + (xy 168.370878 156.785696) + (xy 168.372324 156.786142) + (xy 168.403213 156.730912) + (xy 168.464873 156.698052) + (xy 168.53451 156.703743) + (xy 168.590016 156.74618) + (xy 168.608192 156.785982) + (xy 168.609122 156.785696) + (xy 168.61049 156.79013) + (xy 168.610492 156.790137) + (xy 168.703607 157.027388) + (xy 168.831041 157.248112) + (xy 168.98995 157.447377) + (xy 169.176783 157.620732) + (xy 169.387366 157.764305) + (xy 169.387371 157.764307) + (xy 169.387372 157.764308) + (xy 169.387373 157.764309) + (xy 169.509328 157.823038) + (xy 169.616992 157.874887) + (xy 169.616993 157.874887) + (xy 169.616996 157.874889) + (xy 169.860542 157.950013) + (xy 170.112565 157.988) + (xy 170.367435 157.988) + (xy 170.619458 157.950013) + (xy 170.863004 157.874889) + (xy 171.092634 157.764305) + (xy 171.303217 157.620732) + (xy 171.49005 157.447377) + (xy 171.648959 157.248112) + (xy 171.776393 157.027388) + (xy 171.869508 156.790137) + (xy 171.926222 156.541657) + (xy 171.945268 156.2875) + (xy 171.945229 156.286986) + (xy 171.926222 156.033345) + (xy 171.915167 155.984912) + (xy 171.869508 155.784863) + (xy 171.776393 155.547612) + (xy 171.648959 155.326888) + (xy 171.49005 155.127623) + (xy 171.303217 154.954268) + (xy 171.092634 154.810695) + (xy 171.09263 154.810693) + (xy 171.092627 154.810691) + (xy 171.092626 154.81069) + (xy 170.863006 154.700112) + (xy 170.863008 154.700112) + (xy 170.619466 154.624989) + (xy 170.619462 154.624988) + (xy 170.619458 154.624987) + (xy 170.498231 154.606714) + (xy 170.36744 154.587) + (xy 170.367435 154.587) + (xy 170.112565 154.587) + (xy 170.112559 154.587) + (xy 169.955609 154.610657) + (xy 169.860542 154.624987) + (xy 169.860538 154.624988) + (xy 169.860539 154.624988) + (xy 169.860533 154.624989) + (xy 169.616992 154.700112) + (xy 169.387373 154.81069) + (xy 169.387372 154.810691) + (xy 169.176782 154.954268) + (xy 168.989952 155.127621) + (xy 168.98995 155.127623) + (xy 168.831041 155.326888) + (xy 168.703608 155.547609) + (xy 168.610492 155.784862) + (xy 168.609122 155.789304) + (xy 168.607677 155.788858) + (xy 168.57678 155.844093) + (xy 168.515117 155.876949) + (xy 168.44548 155.871252) + (xy 168.389978 155.828811) + (xy 168.371805 155.789017) + (xy 168.370878 155.789304) + (xy 168.369509 155.784869) + (xy 168.369508 155.784863) + (xy 168.276393 155.547612) + (xy 168.148959 155.326888) + (xy 167.99005 155.127623) + (xy 167.803217 154.954268) + (xy 167.592634 154.810695) + (xy 167.59263 154.810693) + (xy 167.592627 154.810691) + (xy 167.592626 154.81069) + (xy 167.363006 154.700112) + (xy 167.363008 154.700112) + (xy 167.119466 154.624989) + (xy 167.119462 154.624988) + (xy 167.119458 154.624987) + (xy 166.998231 154.606714) + (xy 166.86744 154.587) + (xy 166.867435 154.587) + (xy 166.612565 154.587) + (xy 166.612559 154.587) + (xy 166.455609 154.610657) + (xy 166.360542 154.624987) + (xy 166.360538 154.624988) + (xy 166.360539 154.624988) + (xy 166.360533 154.624989) + (xy 166.116992 154.700112) + (xy 165.887373 154.81069) + (xy 165.887372 154.810691) + (xy 165.676782 154.954268) + (xy 165.489952 155.127621) + (xy 165.48995 155.127623) + (xy 165.331041 155.326888) + (xy 165.203608 155.547609) + (xy 165.110492 155.784862) + (xy 165.109122 155.789304) + (xy 165.107999 155.788957) + (xy 165.076509 155.84523) + (xy 165.014841 155.878076) + (xy 164.945205 155.872368) + (xy 164.889709 155.829918) + (xy 164.871134 155.789229) + (xy 164.8704 155.789456) + (xy 164.869026 155.785005) + (xy 164.775941 155.547828) + (xy 164.775942 155.547828) + (xy 164.648544 155.327171) + (xy 164.606545 155.274505) + (xy 163.802772 156.078278) + (xy 163.764099 155.984912) + (xy 163.667925 155.859575) + (xy 163.542588 155.763401) + (xy 163.44922 155.724727) + (xy 164.253185 154.920761) + (xy 164.092377 154.811124) + (xy 164.092376 154.811123) + (xy 163.862823 154.700578) + (xy 163.862825 154.700578) + (xy 163.619347 154.625475) + (xy 163.619341 154.625473) + (xy 163.367404 154.5875) + (xy 163.112595 154.5875) + (xy 162.860658 154.625473) + (xy 162.860652 154.625475) + (xy 162.617175 154.700578) + (xy 162.387624 154.811123) + (xy 162.387616 154.811128) + (xy 162.226813 154.920761) + (xy 163.030779 155.724727) + (xy 162.937412 155.763401) + (xy 162.812075 155.859575) + (xy 162.715901 155.984911) + (xy 162.677227 156.078279) + (xy 161.873453 155.274506) + (xy 161.831455 155.32717) + (xy 161.704058 155.547828) + (xy 161.610973 155.785005) + (xy 161.6096 155.789456) + (xy 161.608432 155.789095) + (xy 161.577026 155.845226) + (xy 161.51536 155.878075) + (xy 161.445724 155.872371) + (xy 161.390226 155.829923) + (xy 161.371581 155.789087) + (xy 161.370878 155.789304) + (xy 161.369509 155.784869) + (xy 161.369508 155.784863) + (xy 161.276393 155.547612) + (xy 161.148959 155.326888) + (xy 160.99005 155.127623) + (xy 160.803217 154.954268) + (xy 160.592634 154.810695) + (xy 160.59263 154.810693) + (xy 160.592627 154.810691) + (xy 160.592626 154.81069) + (xy 160.363006 154.700112) + (xy 160.363008 154.700112) + (xy 160.119466 154.624989) + (xy 160.119462 154.624988) + (xy 160.119458 154.624987) + (xy 159.998231 154.606714) + (xy 159.86744 154.587) + (xy 159.867435 154.587) + (xy 159.612565 154.587) + (xy 159.612559 154.587) + (xy 159.455609 154.610657) + (xy 159.360542 154.624987) + (xy 159.360538 154.624988) + (xy 159.360539 154.624988) + (xy 159.360533 154.624989) + (xy 159.116992 154.700112) + (xy 158.887373 154.81069) + (xy 158.887372 154.810691) + (xy 158.676782 154.954268) + (xy 158.489952 155.127621) + (xy 158.48995 155.127623) + (xy 158.331041 155.326888) + (xy 158.203608 155.547609) + (xy 158.110492 155.784862) + (xy 158.109122 155.789304) + (xy 158.107677 155.788858) + (xy 158.07678 155.844093) + (xy 158.015117 155.876949) + (xy 157.94548 155.871252) + (xy 157.889978 155.828811) + (xy 157.871805 155.789017) + (xy 157.870878 155.789304) + (xy 157.869509 155.784869) + (xy 157.869508 155.784863) + (xy 157.776393 155.547612) + (xy 157.648959 155.326888) + (xy 157.49005 155.127623) + (xy 157.303217 154.954268) + (xy 157.092634 154.810695) + (xy 157.09263 154.810693) + (xy 157.092627 154.810691) + (xy 157.092626 154.81069) + (xy 156.863006 154.700112) + (xy 156.863008 154.700112) + (xy 156.619466 154.624989) + (xy 156.619462 154.624988) + (xy 156.619458 154.624987) + (xy 156.498231 154.606714) + (xy 156.36744 154.587) + (xy 156.367435 154.587) + (xy 156.112565 154.587) + (xy 156.112559 154.587) + (xy 155.955609 154.610657) + (xy 155.860542 154.624987) + (xy 155.860538 154.624988) + (xy 155.860539 154.624988) + (xy 155.860533 154.624989) + (xy 155.616992 154.700112) + (xy 155.387373 154.81069) + (xy 155.387372 154.810691) + (xy 155.176782 154.954268) + (xy 154.989952 155.127621) + (xy 154.98995 155.127623) + (xy 154.831041 155.326888) + (xy 154.703608 155.547609) + (xy 154.610492 155.784862) + (xy 154.609122 155.789304) + (xy 154.607999 155.788957) + (xy 154.576509 155.84523) + (xy 154.514841 155.878076) + (xy 154.445205 155.872368) + (xy 154.389709 155.829918) + (xy 154.371134 155.789229) + (xy 154.3704 155.789456) + (xy 154.369026 155.785005) + (xy 154.275941 155.547828) + (xy 154.275942 155.547828) + (xy 154.148544 155.327171) + (xy 154.106546 155.274506) + (xy 153.302772 156.078279) + (xy 153.264099 155.984912) + (xy 153.167925 155.859575) + (xy 153.042588 155.763401) + (xy 152.94922 155.724727) + (xy 153.753185 154.920761) + (xy 153.592377 154.811124) + (xy 153.592376 154.811123) + (xy 153.362823 154.700578) + (xy 153.362825 154.700578) + (xy 153.119347 154.625475) + (xy 153.119341 154.625473) + (xy 152.867404 154.5875) + (xy 152.612595 154.5875) + (xy 152.360658 154.625473) + (xy 152.360652 154.625475) + (xy 152.117175 154.700578) + (xy 151.887624 154.811123) + (xy 151.887616 154.811128) + (xy 151.726813 154.920761) + (xy 152.530779 155.724727) + (xy 152.437412 155.763401) + (xy 152.312075 155.859575) + (xy 152.215901 155.984911) + (xy 152.177227 156.078279) + (xy 151.373453 155.274506) + (xy 151.331455 155.32717) + (xy 151.204058 155.547828) + (xy 151.110973 155.785005) + (xy 151.1096 155.789456) + (xy 151.108432 155.789095) + (xy 151.077026 155.845226) + (xy 151.01536 155.878075) + (xy 150.945724 155.872371) + (xy 150.890226 155.829923) + (xy 150.871581 155.789087) + (xy 150.870878 155.789304) + (xy 150.869509 155.784869) + (xy 150.869508 155.784863) + (xy 150.776393 155.547612) + (xy 150.648959 155.326888) + (xy 150.49005 155.127623) + (xy 150.303217 154.954268) + (xy 150.092634 154.810695) + (xy 150.09263 154.810693) + (xy 150.092627 154.810691) + (xy 150.092626 154.81069) + (xy 149.863006 154.700112) + (xy 149.863008 154.700112) + (xy 149.619466 154.624989) + (xy 149.619462 154.624988) + (xy 149.619458 154.624987) + (xy 149.498231 154.606714) + (xy 149.36744 154.587) + (xy 149.367435 154.587) + (xy 149.112565 154.587) + (xy 149.112559 154.587) + (xy 148.955609 154.610657) + (xy 148.860542 154.624987) + (xy 148.860538 154.624988) + (xy 148.860539 154.624988) + (xy 148.860533 154.624989) + (xy 148.616992 154.700112) + (xy 148.387373 154.81069) + (xy 148.387372 154.810691) + (xy 148.176782 154.954268) + (xy 147.989952 155.127621) + (xy 147.98995 155.127623) + (xy 147.831041 155.326888) + (xy 147.703608 155.547609) + (xy 147.610492 155.784862) + (xy 147.609122 155.789304) + (xy 147.607677 155.788858) + (xy 147.57678 155.844093) + (xy 147.515117 155.876949) + (xy 147.44548 155.871252) + (xy 147.389978 155.828811) + (xy 147.371805 155.789017) + (xy 147.370878 155.789304) + (xy 147.369509 155.784869) + (xy 147.369508 155.784863) + (xy 147.276393 155.547612) + (xy 147.148959 155.326888) + (xy 146.99005 155.127623) + (xy 146.803217 154.954268) + (xy 146.592634 154.810695) + (xy 146.59263 154.810693) + (xy 146.592627 154.810691) + (xy 146.592626 154.81069) + (xy 146.363006 154.700112) + (xy 146.363008 154.700112) + (xy 146.119466 154.624989) + (xy 146.119462 154.624988) + (xy 146.119458 154.624987) + (xy 145.998231 154.606714) + (xy 145.86744 154.587) + (xy 145.867435 154.587) + (xy 145.612565 154.587) + (xy 145.612559 154.587) + (xy 145.455609 154.610657) + (xy 145.360542 154.624987) + (xy 145.360538 154.624988) + (xy 145.360539 154.624988) + (xy 145.360533 154.624989) + (xy 145.116992 154.700112) + (xy 144.887373 154.81069) + (xy 144.887372 154.810691) + (xy 144.676782 154.954268) + (xy 144.489952 155.127621) + (xy 144.48995 155.127623) + (xy 144.331041 155.326888) + (xy 144.203608 155.547609) + (xy 144.110492 155.784862) + (xy 144.109122 155.789304) + (xy 144.107999 155.788957) + (xy 144.076509 155.84523) + (xy 144.014841 155.878076) + (xy 143.945205 155.872368) + (xy 143.889709 155.829918) + (xy 143.871134 155.789229) + (xy 143.8704 155.789456) + (xy 143.869026 155.785005) + (xy 143.775941 155.547828) + (xy 143.775942 155.547828) + (xy 143.648544 155.327171) + (xy 143.606546 155.274506) + (xy 142.802772 156.078279) + (xy 142.764099 155.984912) + (xy 142.667925 155.859575) + (xy 142.542588 155.763401) + (xy 142.44922 155.724727) + (xy 143.253185 154.920761) + (xy 143.092377 154.811124) + (xy 143.092376 154.811123) + (xy 142.862823 154.700578) + (xy 142.862825 154.700578) + (xy 142.619347 154.625475) + (xy 142.619341 154.625473) + (xy 142.367404 154.5875) + (xy 142.112595 154.5875) + (xy 141.860658 154.625473) + (xy 141.860652 154.625475) + (xy 141.617175 154.700578) + (xy 141.387624 154.811123) + (xy 141.387616 154.811128) + (xy 141.226813 154.920761) + (xy 142.030779 155.724727) + (xy 141.937412 155.763401) + (xy 141.812075 155.859575) + (xy 141.715901 155.984911) + (xy 141.677227 156.078279) + (xy 140.873453 155.274506) + (xy 140.831455 155.32717) + (xy 140.704058 155.547828) + (xy 140.610973 155.785005) + (xy 140.6096 155.789456) + (xy 140.608432 155.789095) + (xy 140.577026 155.845226) + (xy 140.51536 155.878075) + (xy 140.445724 155.872371) + (xy 140.390226 155.829923) + (xy 140.371581 155.789087) + (xy 140.370878 155.789304) + (xy 140.369509 155.784869) + (xy 140.369508 155.784863) + (xy 140.276393 155.547612) + (xy 140.148959 155.326888) + (xy 139.99005 155.127623) + (xy 139.803217 154.954268) + (xy 139.592634 154.810695) + (xy 139.59263 154.810693) + (xy 139.592627 154.810691) + (xy 139.592626 154.81069) + (xy 139.363006 154.700112) + (xy 139.363008 154.700112) + (xy 139.119466 154.624989) + (xy 139.119462 154.624988) + (xy 139.119458 154.624987) + (xy 138.998231 154.606714) + (xy 138.86744 154.587) + (xy 138.867435 154.587) + (xy 138.612565 154.587) + (xy 138.612559 154.587) + (xy 138.455609 154.610657) + (xy 138.360542 154.624987) + (xy 138.360538 154.624988) + (xy 138.360539 154.624988) + (xy 138.360533 154.624989) + (xy 138.116992 154.700112) + (xy 137.887373 154.81069) + (xy 137.887372 154.810691) + (xy 137.676782 154.954268) + (xy 137.489952 155.127621) + (xy 137.48995 155.127623) + (xy 137.331041 155.326888) + (xy 137.203608 155.547609) + (xy 137.110492 155.784862) + (xy 137.109122 155.789304) + (xy 137.107677 155.788858) + (xy 137.07678 155.844093) + (xy 137.015117 155.876949) + (xy 136.94548 155.871252) + (xy 136.889978 155.828811) + (xy 136.871805 155.789017) + (xy 136.870878 155.789304) + (xy 136.869509 155.784869) + (xy 136.869508 155.784863) + (xy 136.776393 155.547612) + (xy 136.648959 155.326888) + (xy 136.49005 155.127623) + (xy 136.303217 154.954268) + (xy 136.092634 154.810695) + (xy 136.09263 154.810693) + (xy 136.092627 154.810691) + (xy 136.092626 154.81069) + (xy 135.863006 154.700112) + (xy 135.863008 154.700112) + (xy 135.619466 154.624989) + (xy 135.619462 154.624988) + (xy 135.619458 154.624987) + (xy 135.498231 154.606714) + (xy 135.36744 154.587) + (xy 135.367435 154.587) + (xy 135.112565 154.587) + (xy 135.112559 154.587) + (xy 134.955609 154.610657) + (xy 134.860542 154.624987) + (xy 134.860538 154.624988) + (xy 134.860539 154.624988) + (xy 134.860533 154.624989) + (xy 134.616992 154.700112) + (xy 134.387373 154.81069) + (xy 134.387372 154.810691) + (xy 134.176782 154.954268) + (xy 133.989952 155.127621) + (xy 133.98995 155.127623) + (xy 133.831041 155.326888) + (xy 133.703608 155.547609) + (xy 133.610492 155.784862) + (xy 133.609122 155.789304) + (xy 133.607999 155.788957) + (xy 133.576509 155.84523) + (xy 133.514841 155.878076) + (xy 133.445205 155.872368) + (xy 133.389709 155.829918) + (xy 133.371134 155.789229) + (xy 133.3704 155.789456) + (xy 133.369026 155.785005) + (xy 133.275941 155.547828) + (xy 133.275942 155.547828) + (xy 133.148544 155.327171) + (xy 133.106545 155.274505) + (xy 132.302772 156.078278) + (xy 132.264099 155.984912) + (xy 132.167925 155.859575) + (xy 132.042588 155.763401) + (xy 131.949219 155.724726) + (xy 132.753185 154.920761) + (xy 132.592377 154.811124) + (xy 132.592376 154.811123) + (xy 132.362823 154.700578) + (xy 132.362825 154.700578) + (xy 132.119347 154.625475) + (xy 132.119341 154.625473) + (xy 131.867404 154.5875) + (xy 131.612595 154.5875) + (xy 131.360658 154.625473) + (xy 131.360652 154.625475) + (xy 131.117175 154.700578) + (xy 130.887624 154.811123) + (xy 130.887616 154.811128) + (xy 130.726813 154.920761) + (xy 131.530778 155.724727) + (xy 131.437412 155.763401) + (xy 131.312075 155.859575) + (xy 131.215901 155.984911) + (xy 131.177226 156.078279) + (xy 130.373453 155.274506) + (xy 130.331455 155.32717) + (xy 130.204058 155.547828) + (xy 130.110973 155.785005) + (xy 130.1096 155.789456) + (xy 130.108432 155.789095) + (xy 130.077026 155.845226) + (xy 130.01536 155.878075) + (xy 129.945724 155.872371) + (xy 129.890226 155.829923) + (xy 129.871581 155.789087) + (xy 129.870878 155.789304) + (xy 129.869509 155.784869) + (xy 129.869508 155.784863) + (xy 129.776393 155.547612) + (xy 129.648959 155.326888) + (xy 129.49005 155.127623) + (xy 129.303217 154.954268) + (xy 129.092634 154.810695) + (xy 129.09263 154.810693) + (xy 129.092627 154.810691) + (xy 129.092626 154.81069) + (xy 128.863006 154.700112) + (xy 128.863008 154.700112) + (xy 128.619466 154.624989) + (xy 128.619462 154.624988) + (xy 128.619458 154.624987) + (xy 128.498231 154.606714) + (xy 128.36744 154.587) + (xy 128.367435 154.587) + (xy 128.112565 154.587) + (xy 128.112559 154.587) + (xy 127.955609 154.610657) + (xy 127.860542 154.624987) + (xy 127.860538 154.624988) + (xy 127.860539 154.624988) + (xy 127.860533 154.624989) + (xy 127.616992 154.700112) + (xy 127.387373 154.81069) + (xy 127.387372 154.810691) + (xy 127.176782 154.954268) + (xy 126.989952 155.127621) + (xy 126.98995 155.127623) + (xy 126.831041 155.326888) + (xy 126.703608 155.547609) + (xy 126.610492 155.784862) + (xy 126.609122 155.789304) + (xy 126.607677 155.788858) + (xy 126.57678 155.844093) + (xy 126.515117 155.876949) + (xy 126.44548 155.871252) + (xy 126.389978 155.828811) + (xy 126.371805 155.789017) + (xy 126.370878 155.789304) + (xy 126.369509 155.784869) + (xy 126.369508 155.784863) + (xy 126.276393 155.547612) + (xy 126.148959 155.326888) + (xy 125.99005 155.127623) + (xy 125.803217 154.954268) + (xy 125.592634 154.810695) + (xy 125.59263 154.810693) + (xy 125.592627 154.810691) + (xy 125.592626 154.81069) + (xy 125.363006 154.700112) + (xy 125.363008 154.700112) + (xy 125.119466 154.624989) + (xy 125.119462 154.624988) + (xy 125.119458 154.624987) + (xy 124.998231 154.606714) + (xy 124.86744 154.587) + (xy 124.867435 154.587) + (xy 124.612565 154.587) + (xy 124.612559 154.587) + (xy 124.455609 154.610657) + (xy 124.360542 154.624987) + (xy 124.360538 154.624988) + (xy 124.360539 154.624988) + (xy 124.360533 154.624989) + (xy 124.116992 154.700112) + (xy 123.887373 154.81069) + (xy 123.887372 154.810691) + (xy 123.676782 154.954268) + (xy 123.489952 155.127621) + (xy 123.48995 155.127623) + (xy 123.331041 155.326888) + (xy 123.203608 155.547609) + (xy 123.110492 155.784862) + (xy 123.109122 155.789304) + (xy 123.107999 155.788957) + (xy 123.076509 155.84523) + (xy 123.014841 155.878076) + (xy 122.945205 155.872368) + (xy 122.889709 155.829918) + (xy 122.871134 155.789229) + (xy 122.8704 155.789456) + (xy 122.869026 155.785005) + (xy 122.775941 155.547828) + (xy 122.775942 155.547828) + (xy 122.648544 155.327171) + (xy 122.606546 155.274506) + (xy 121.802772 156.078279) + (xy 121.764099 155.984912) + (xy 121.667925 155.859575) + (xy 121.542588 155.763401) + (xy 121.44922 155.724727) + (xy 122.253185 154.920761) + (xy 122.092377 154.811124) + (xy 122.092376 154.811123) + (xy 121.862823 154.700578) + (xy 121.862825 154.700578) + (xy 121.619347 154.625475) + (xy 121.619341 154.625473) + (xy 121.367404 154.5875) + (xy 121.112595 154.5875) + (xy 120.860658 154.625473) + (xy 120.860652 154.625475) + (xy 120.617175 154.700578) + (xy 120.387624 154.811123) + (xy 120.387616 154.811128) + (xy 120.226813 154.920761) + (xy 121.030779 155.724727) + (xy 120.937412 155.763401) + (xy 120.812075 155.859575) + (xy 120.715901 155.984911) + (xy 120.677227 156.078279) + (xy 119.873453 155.274506) + (xy 119.831455 155.32717) + (xy 119.704058 155.547828) + (xy 119.610973 155.785005) + (xy 119.6096 155.789456) + (xy 119.608432 155.789095) + (xy 119.577026 155.845226) + (xy 119.51536 155.878075) + (xy 119.445724 155.872371) + (xy 119.390226 155.829923) + (xy 119.371581 155.789087) + (xy 119.370878 155.789304) + (xy 119.369509 155.784869) + (xy 119.369508 155.784863) + (xy 119.276393 155.547612) + (xy 119.148959 155.326888) + (xy 118.99005 155.127623) + (xy 118.803217 154.954268) + (xy 118.592634 154.810695) + (xy 118.59263 154.810693) + (xy 118.592627 154.810691) + (xy 118.592626 154.81069) + (xy 118.363006 154.700112) + (xy 118.363008 154.700112) + (xy 118.119466 154.624989) + (xy 118.119462 154.624988) + (xy 118.119458 154.624987) + (xy 117.998231 154.606714) + (xy 117.86744 154.587) + (xy 117.867435 154.587) + (xy 117.612565 154.587) + (xy 117.612559 154.587) + (xy 117.455609 154.610657) + (xy 117.360542 154.624987) + (xy 117.360538 154.624988) + (xy 117.360539 154.624988) + (xy 117.360533 154.624989) + (xy 117.116992 154.700112) + (xy 116.887373 154.81069) + (xy 116.887372 154.810691) + (xy 116.676782 154.954268) + (xy 116.489952 155.127621) + (xy 116.48995 155.127623) + (xy 116.331041 155.326888) + (xy 116.203608 155.547609) + (xy 116.110492 155.784862) + (xy 116.109122 155.789304) + (xy 116.107677 155.788858) + (xy 116.07678 155.844093) + (xy 116.015117 155.876949) + (xy 115.94548 155.871252) + (xy 115.889978 155.828811) + (xy 115.871805 155.789017) + (xy 115.870878 155.789304) + (xy 115.869509 155.784869) + (xy 115.869508 155.784863) + (xy 115.776393 155.547612) + (xy 115.648959 155.326888) + (xy 115.49005 155.127623) + (xy 115.303217 154.954268) + (xy 115.092634 154.810695) + (xy 115.09263 154.810693) + (xy 115.092627 154.810691) + (xy 115.092626 154.81069) + (xy 114.863006 154.700112) + (xy 114.863008 154.700112) + (xy 114.619466 154.624989) + (xy 114.619462 154.624988) + (xy 114.619458 154.624987) + (xy 114.498231 154.606714) + (xy 114.36744 154.587) + (xy 114.367435 154.587) + (xy 114.112565 154.587) + (xy 114.112559 154.587) + (xy 113.955609 154.610657) + (xy 113.860542 154.624987) + (xy 113.860538 154.624988) + (xy 113.860539 154.624988) + (xy 113.860533 154.624989) + (xy 113.616992 154.700112) + (xy 113.387373 154.81069) + (xy 113.387372 154.810691) + (xy 113.176782 154.954268) + (xy 112.989952 155.127621) + (xy 112.98995 155.127623) + (xy 112.831041 155.326888) + (xy 112.703608 155.547609) + (xy 112.610492 155.784862) + (xy 112.609122 155.789304) + (xy 112.607999 155.788957) + (xy 112.576509 155.84523) + (xy 112.514841 155.878076) + (xy 112.445205 155.872368) + (xy 112.389709 155.829918) + (xy 112.371134 155.789229) + (xy 112.3704 155.789456) + (xy 112.369026 155.785005) + (xy 112.275941 155.547828) + (xy 112.275942 155.547828) + (xy 112.148544 155.327171) + (xy 112.106546 155.274506) + (xy 111.302772 156.078279) + (xy 111.264099 155.984912) + (xy 111.167925 155.859575) + (xy 111.042588 155.763401) + (xy 110.94922 155.724727) + (xy 111.753185 154.920761) + (xy 111.592377 154.811124) + (xy 111.592376 154.811123) + (xy 111.362823 154.700578) + (xy 111.362825 154.700578) + (xy 111.119347 154.625475) + (xy 111.119341 154.625473) + (xy 110.867404 154.5875) + (xy 110.612595 154.5875) + (xy 110.360658 154.625473) + (xy 110.360652 154.625475) + (xy 110.117175 154.700578) + (xy 109.887624 154.811123) + (xy 109.887616 154.811128) + (xy 109.726813 154.920761) + (xy 110.530779 155.724727) + (xy 110.437412 155.763401) + (xy 110.312075 155.859575) + (xy 110.215901 155.984911) + (xy 110.177226 156.078279) + (xy 109.373453 155.274506) + (xy 109.331455 155.32717) + (xy 109.204058 155.547828) + (xy 109.110973 155.785005) + (xy 109.1096 155.789456) + (xy 109.108432 155.789095) + (xy 109.077026 155.845226) + (xy 109.01536 155.878075) + (xy 108.945724 155.872371) + (xy 108.890226 155.829923) + (xy 108.871581 155.789087) + (xy 108.870878 155.789304) + (xy 108.869509 155.784869) + (xy 108.869508 155.784863) + (xy 108.776393 155.547612) + (xy 108.648959 155.326888) + (xy 108.49005 155.127623) + (xy 108.303217 154.954268) + (xy 108.092634 154.810695) + (xy 108.09263 154.810693) + (xy 108.092627 154.810691) + (xy 108.092626 154.81069) + (xy 107.863006 154.700112) + (xy 107.863008 154.700112) + (xy 107.619466 154.624989) + (xy 107.619462 154.624988) + (xy 107.619458 154.624987) + (xy 107.498231 154.606714) + (xy 107.36744 154.587) + (xy 107.367435 154.587) + (xy 107.112565 154.587) + (xy 107.112559 154.587) + (xy 106.955609 154.610657) + (xy 106.860542 154.624987) + (xy 106.860538 154.624988) + (xy 106.860539 154.624988) + (xy 106.860533 154.624989) + (xy 106.616992 154.700112) + (xy 106.387373 154.81069) + (xy 106.387372 154.810691) + (xy 106.176782 154.954268) + (xy 105.989952 155.127621) + (xy 105.98995 155.127623) + (xy 105.831041 155.326888) + (xy 105.703608 155.547609) + (xy 105.610492 155.784862) + (xy 105.609122 155.789304) + (xy 105.607677 155.788858) + (xy 105.57678 155.844093) + (xy 105.515117 155.876949) + (xy 105.44548 155.871252) + (xy 105.389978 155.828811) + (xy 105.371805 155.789017) + (xy 105.370878 155.789304) + (xy 105.369509 155.784869) + (xy 105.369508 155.784863) + (xy 105.276393 155.547612) + (xy 105.148959 155.326888) + (xy 104.99005 155.127623) + (xy 104.803217 154.954268) + (xy 104.592634 154.810695) + (xy 104.59263 154.810693) + (xy 104.592627 154.810691) + (xy 104.592626 154.81069) + (xy 104.363006 154.700112) + (xy 104.363008 154.700112) + (xy 104.119466 154.624989) + (xy 104.119462 154.624988) + (xy 104.119458 154.624987) + (xy 103.998231 154.606714) + (xy 103.86744 154.587) + (xy 103.867435 154.587) + (xy 103.612565 154.587) + (xy 103.612559 154.587) + (xy 103.455609 154.610657) + (xy 103.360542 154.624987) + (xy 103.360538 154.624988) + (xy 103.360539 154.624988) + (xy 103.360533 154.624989) + (xy 103.116992 154.700112) + (xy 102.887373 154.81069) + (xy 102.887372 154.810691) + (xy 102.676782 154.954268) + (xy 102.489952 155.127621) + (xy 102.48995 155.127623) + (xy 102.331041 155.326888) + (xy 102.203608 155.547609) + (xy 102.110492 155.784862) + (xy 102.109122 155.789304) + (xy 102.107999 155.788957) + (xy 102.076509 155.84523) + (xy 102.014841 155.878076) + (xy 101.945205 155.872368) + (xy 101.889709 155.829918) + (xy 101.871134 155.789229) + (xy 101.8704 155.789456) + (xy 101.869026 155.785005) + (xy 101.775941 155.547828) + (xy 101.775942 155.547828) + (xy 101.648544 155.327171) + (xy 101.606546 155.274506) + (xy 100.802772 156.078279) + (xy 100.764099 155.984912) + (xy 100.667925 155.859575) + (xy 100.542588 155.763401) + (xy 100.44922 155.724727) + (xy 101.253185 154.920761) + (xy 101.092377 154.811124) + (xy 101.092376 154.811123) + (xy 100.862823 154.700578) + (xy 100.862825 154.700578) + (xy 100.619347 154.625475) + (xy 100.619341 154.625473) + (xy 100.367404 154.5875) + (xy 100.112595 154.5875) + (xy 99.860658 154.625473) + (xy 99.860652 154.625475) + (xy 99.617175 154.700578) + (xy 99.387624 154.811123) + (xy 99.387616 154.811128) + (xy 99.226813 154.920761) + (xy 100.030779 155.724727) + (xy 99.937412 155.763401) + (xy 99.812075 155.859575) + (xy 99.715901 155.984911) + (xy 99.677227 156.078279) + (xy 98.873453 155.274506) + (xy 98.831455 155.32717) + (xy 98.704058 155.547828) + (xy 98.610973 155.785005) + (xy 98.6096 155.789456) + (xy 98.608432 155.789095) + (xy 98.577026 155.845226) + (xy 98.51536 155.878075) + (xy 98.445724 155.872371) + (xy 98.390226 155.829923) + (xy 98.371581 155.789087) + (xy 98.370878 155.789304) + (xy 98.369509 155.784869) + (xy 98.369508 155.784863) + (xy 98.276393 155.547612) + (xy 98.148959 155.326888) + (xy 97.99005 155.127623) + (xy 97.803217 154.954268) + (xy 97.592634 154.810695) + (xy 97.59263 154.810693) + (xy 97.592627 154.810691) + (xy 97.592626 154.81069) + (xy 97.363006 154.700112) + (xy 97.363008 154.700112) + (xy 97.119466 154.624989) + (xy 97.119462 154.624988) + (xy 97.119458 154.624987) + (xy 96.998231 154.606714) + (xy 96.86744 154.587) + (xy 96.867435 154.587) + (xy 96.612565 154.587) + (xy 96.612559 154.587) + (xy 96.455609 154.610657) + (xy 96.360542 154.624987) + (xy 96.360538 154.624988) + (xy 96.360539 154.624988) + (xy 96.360533 154.624989) + (xy 96.116992 154.700112) + (xy 95.887373 154.81069) + (xy 95.887372 154.810691) + (xy 95.676782 154.954268) + (xy 95.489952 155.127621) + (xy 95.48995 155.127623) + (xy 95.331041 155.326888) + (xy 95.203608 155.547609) + (xy 95.110492 155.784862) + (xy 95.109122 155.789304) + (xy 95.107677 155.788858) + (xy 95.07678 155.844093) + (xy 95.015117 155.876949) + (xy 94.94548 155.871252) + (xy 94.889978 155.828811) + (xy 94.871805 155.789017) + (xy 94.870878 155.789304) + (xy 94.869509 155.784869) + (xy 94.869508 155.784863) + (xy 94.776393 155.547612) + (xy 94.648959 155.326888) + (xy 94.49005 155.127623) + (xy 94.303217 154.954268) + (xy 94.092634 154.810695) + (xy 94.09263 154.810693) + (xy 94.092627 154.810691) + (xy 94.092626 154.81069) + (xy 93.863006 154.700112) + (xy 93.863008 154.700112) + (xy 93.619466 154.624989) + (xy 93.619462 154.624988) + (xy 93.619458 154.624987) + (xy 93.498231 154.606714) + (xy 93.36744 154.587) + (xy 93.367435 154.587) + (xy 93.112565 154.587) + (xy 93.112559 154.587) + (xy 92.955609 154.610657) + (xy 92.860542 154.624987) + (xy 92.860538 154.624988) + (xy 92.860539 154.624988) + (xy 92.860533 154.624989) + (xy 92.616992 154.700112) + (xy 92.387373 154.81069) + (xy 92.387372 154.810691) + (xy 92.176782 154.954268) + (xy 91.989952 155.127621) + (xy 91.98995 155.127623) + (xy 91.831041 155.326888) + (xy 91.703608 155.547609) + (xy 91.610492 155.784862) + (xy 91.609122 155.789304) + (xy 91.607999 155.788957) + (xy 91.576509 155.84523) + (xy 91.514841 155.878076) + (xy 91.445205 155.872368) + (xy 91.389709 155.829918) + (xy 91.371134 155.789229) + (xy 91.3704 155.789456) + (xy 91.369026 155.785005) + (xy 91.275941 155.547828) + (xy 91.275942 155.547828) + (xy 91.148544 155.327171) + (xy 91.106546 155.274506) + (xy 90.302772 156.078279) + (xy 90.264099 155.984912) + (xy 90.167925 155.859575) + (xy 90.042588 155.763401) + (xy 89.94922 155.724727) + (xy 90.753185 154.920761) + (xy 90.592377 154.811124) + (xy 90.592376 154.811123) + (xy 90.362823 154.700578) + (xy 90.362825 154.700578) + (xy 90.119347 154.625475) + (xy 90.119341 154.625473) + (xy 89.867404 154.5875) + (xy 89.612595 154.5875) + (xy 89.360658 154.625473) + (xy 89.360652 154.625475) + (xy 89.117175 154.700578) + (xy 88.887624 154.811123) + (xy 88.887616 154.811128) + (xy 88.726813 154.920761) + (xy 89.530779 155.724727) + (xy 89.437412 155.763401) + (xy 89.312075 155.859575) + (xy 89.215901 155.984911) + (xy 89.177226 156.078279) + (xy 88.373453 155.274506) + (xy 88.331455 155.32717) + (xy 88.204058 155.547828) + (xy 88.110973 155.785005) + (xy 88.110968 155.785022) + (xy 88.054273 156.03342) + (xy 88.035233 156.287495) + (xy 88.035233 156.287504) + (xy 85.506094 156.287504) + (xy 85.505981 156.286986) + (xy 85.476974 156.204671) + (xy 85.399366 155.984436) + (xy 85.256379 155.697279) + (xy 85.079188 155.42987) + (xy 84.870478 155.186263) + (xy 84.689116 155.02093) + (xy 84.63342 154.970156) + (xy 84.63341 154.970148) + (xy 84.371594 154.784812) + (xy 84.371584 154.784806) + (xy 84.088983 154.633051) + (xy 84.088973 154.633047) + (xy 84.088971 154.633046) + (xy 84.020805 154.606638) + (xy 83.789855 154.517167) + (xy 83.789851 154.517166) + (xy 83.478745 154.43892) + (xy 83.160398 154.3995) + (xy 83.160393 154.3995) + (xy 82.919874 154.3995) + (xy 82.867156 154.402751) + (xy 82.679824 154.414305) + (xy 82.364499 154.473249) + (xy 82.364497 154.47325) + (xy 82.058814 154.570495) + (xy 82.05881 154.570496) + (xy 82.058806 154.570498) + (xy 81.884928 154.650494) + (xy 81.767381 154.704574) + (xy 81.494656 154.873437) + (xy 81.494636 154.873451) + (xy 81.244728 155.074551) + (xy 81.213021 155.107251) + (xy 81.152221 155.141676) + (xy 81.082461 155.137765) + (xy 81.025889 155.09676) + (xy 81.000467 155.03168) + (xy 81 155.02093) + (xy 81 145.360006) + (xy 96.391225 145.360006) + (xy 96.409892 145.585289) + (xy 96.465388 145.804439) + (xy 96.556198 146.011466) + (xy 96.679842 146.200716) + (xy 96.67985 146.200727) + (xy 96.83295 146.367036) + (xy 96.832954 146.36704) + (xy 97.011351 146.505893) + (xy 97.210169 146.613488) + (xy 97.210172 146.613489) + (xy 97.423982 146.68689) + (xy 97.423984 146.68689) + (xy 97.423986 146.686891) + (xy 97.646967 146.7241) + (xy 97.646968 146.7241) + (xy 97.873032 146.7241) + (xy 97.873033 146.7241) + (xy 98.096014 146.686891) + (xy 98.309831 146.613488) + (xy 98.508649 146.505893) + (xy 98.687046 146.36704) + (xy 98.840156 146.200719) + (xy 98.926193 146.069028) + (xy 98.979338 146.023675) + (xy 99.048569 146.014251) + (xy 99.111905 146.043753) + (xy 99.133804 146.069025) + (xy 99.219844 146.200719) + (xy 99.219849 146.200724) + (xy 99.21985 146.200727) + (xy 99.37295 146.367036) + (xy 99.372954 146.36704) + (xy 99.551351 146.505893) + (xy 99.750169 146.613488) + (xy 99.750172 146.613489) + (xy 99.963982 146.68689) + (xy 99.963984 146.68689) + (xy 99.963986 146.686891) + (xy 100.186967 146.7241) + (xy 100.186968 146.7241) + (xy 100.413032 146.7241) + (xy 100.413033 146.7241) + (xy 100.636014 146.686891) + (xy 100.849831 146.613488) + (xy 101.048649 146.505893) + (xy 101.227046 146.36704) + (xy 101.380156 146.200719) + (xy 101.466193 146.069028) + (xy 101.519338 146.023675) + (xy 101.588569 146.014251) + (xy 101.651905 146.043753) + (xy 101.673804 146.069025) + (xy 101.759844 146.200719) + (xy 101.759849 146.200724) + (xy 101.75985 146.200727) + (xy 101.91295 146.367036) + (xy 101.912954 146.36704) + (xy 102.091351 146.505893) + (xy 102.290169 146.613488) + (xy 102.290172 146.613489) + (xy 102.503982 146.68689) + (xy 102.503984 146.68689) + (xy 102.503986 146.686891) + (xy 102.726967 146.7241) + (xy 102.726968 146.7241) + (xy 102.953032 146.7241) + (xy 102.953033 146.7241) + (xy 103.176014 146.686891) + (xy 103.389831 146.613488) + (xy 103.588649 146.505893) + (xy 103.767046 146.36704) + (xy 103.920156 146.200719) + (xy 104.006193 146.069028) + (xy 104.059338 146.023675) + (xy 104.128569 146.014251) + (xy 104.191905 146.043753) + (xy 104.213804 146.069025) + (xy 104.299844 146.200719) + (xy 104.299849 146.200724) + (xy 104.29985 146.200727) + (xy 104.45295 146.367036) + (xy 104.452954 146.36704) + (xy 104.631351 146.505893) + (xy 104.830169 146.613488) + (xy 104.830172 146.613489) + (xy 105.043982 146.68689) + (xy 105.043984 146.68689) + (xy 105.043986 146.686891) + (xy 105.266967 146.7241) + (xy 105.266968 146.7241) + (xy 105.493032 146.7241) + (xy 105.493033 146.7241) + (xy 105.716014 146.686891) + (xy 105.929831 146.613488) + (xy 106.128649 146.505893) + (xy 106.307046 146.36704) + (xy 106.460156 146.200719) + (xy 106.546193 146.069029) + (xy 106.599336 146.023675) + (xy 106.668567 146.014251) + (xy 106.731903 146.043753) + (xy 106.753807 146.069031) + (xy 106.839842 146.200716) + (xy 106.83985 146.200727) + (xy 106.99295 146.367036) + (xy 106.992954 146.36704) + (xy 107.171351 146.505893) + (xy 107.370169 146.613488) + (xy 107.370172 146.613489) + (xy 107.583982 146.68689) + (xy 107.583984 146.68689) + (xy 107.583986 146.686891) + (xy 107.806967 146.7241) + (xy 107.806968 146.7241) + (xy 108.033032 146.7241) + (xy 108.033033 146.7241) + (xy 108.256014 146.686891) + (xy 108.469831 146.613488) + (xy 108.668649 146.505893) + (xy 108.847046 146.36704) + (xy 108.901815 146.307545) + (xy 108.961699 146.271557) + (xy 109.031537 146.273657) + (xy 109.089153 146.31318) + (xy 109.109224 146.348196) + (xy 109.153046 146.465688) + (xy 109.153049 146.465693) + (xy 109.239209 146.580787) + (xy 109.239212 146.58079) + (xy 109.354306 146.66695) + (xy 109.354313 146.666954) + (xy 109.48902 146.717196) + (xy 109.489027 146.717198) + (xy 109.548555 146.723599) + (xy 109.548572 146.7236) + (xy 110.21 146.7236) + (xy 110.209999 145.804297) + (xy 110.315408 145.852435) + (xy 110.423666 145.868) + (xy 110.496334 145.868) + (xy 110.604592 145.852435) + (xy 110.71 145.804297) + (xy 110.71 146.7236) + (xy 111.371428 146.7236) + (xy 111.371444 146.723599) + (xy 111.430972 146.717198) + (xy 111.430979 146.717196) + (xy 111.565686 146.666954) + (xy 111.565689 146.666952) + (xy 111.655688 146.599579) + (xy 111.721152 146.575161) + (xy 111.789426 146.590012) + (xy 111.804312 146.599579) + (xy 111.89431 146.666952) + (xy 111.894313 146.666954) + (xy 112.02902 146.717196) + (xy 112.029027 146.717198) + (xy 112.088555 146.723599) + (xy 112.088572 146.7236) + (xy 112.75 146.7236) + (xy 112.75 145.804297) + (xy 112.855408 145.852435) + (xy 112.963666 145.868) + (xy 113.036334 145.868) + (xy 113.144592 145.852435) + (xy 113.249999 145.804297) + (xy 113.25 146.7236) + (xy 113.911428 146.7236) + (xy 113.911444 146.723599) + (xy 113.970972 146.717198) + (xy 113.970979 146.717196) + (xy 114.105686 146.666954) + (xy 114.105693 146.66695) + (xy 114.220787 146.58079) + (xy 114.22079 146.580787) + (xy 114.30695 146.465693) + (xy 114.306954 146.465686) + (xy 114.350775 146.348197) + (xy 114.392646 146.292263) + (xy 114.45811 146.267846) + (xy 114.526383 146.282698) + (xy 114.558186 146.307547) + (xy 114.61295 146.367036) + (xy 114.612954 146.36704) + (xy 114.791351 146.505893) + (xy 114.990169 146.613488) + (xy 114.990172 146.613489) + (xy 115.203982 146.68689) + (xy 115.203984 146.68689) + (xy 115.203986 146.686891) + (xy 115.426967 146.7241) + (xy 115.426968 146.7241) + (xy 115.653032 146.7241) + (xy 115.653033 146.7241) + (xy 115.876014 146.686891) + (xy 116.089831 146.613488) + (xy 116.288649 146.505893) + (xy 116.467046 146.36704) + (xy 116.620156 146.200719) + (xy 116.743802 146.011465) + (xy 116.834611 145.804441) + (xy 116.890107 145.585293) + (xy 116.908775 145.360006) + (xy 119.251225 145.360006) + (xy 119.269892 145.585289) + (xy 119.325388 145.804439) + (xy 119.416198 146.011466) + (xy 119.539842 146.200716) + (xy 119.53985 146.200727) + (xy 119.69295 146.367036) + (xy 119.692954 146.36704) + (xy 119.871351 146.505893) + (xy 120.070169 146.613488) + (xy 120.070172 146.613489) + (xy 120.283982 146.68689) + (xy 120.283984 146.68689) + (xy 120.283986 146.686891) + (xy 120.506967 146.7241) + (xy 120.506968 146.7241) + (xy 120.733032 146.7241) + (xy 120.733033 146.7241) + (xy 120.956014 146.686891) + (xy 121.169831 146.613488) + (xy 121.368649 146.505893) + (xy 121.547046 146.36704) + (xy 121.700156 146.200719) + (xy 121.786193 146.069028) + (xy 121.839338 146.023675) + (xy 121.908569 146.014251) + (xy 121.971905 146.043753) + (xy 121.993804 146.069025) + (xy 122.079844 146.200719) + (xy 122.079849 146.200724) + (xy 122.07985 146.200727) + (xy 122.23295 146.367036) + (xy 122.232954 146.36704) + (xy 122.411351 146.505893) + (xy 122.610169 146.613488) + (xy 122.610172 146.613489) + (xy 122.823982 146.68689) + (xy 122.823984 146.68689) + (xy 122.823986 146.686891) + (xy 123.046967 146.7241) + (xy 123.046968 146.7241) + (xy 123.273032 146.7241) + (xy 123.273033 146.7241) + (xy 123.496014 146.686891) + (xy 123.709831 146.613488) + (xy 123.908649 146.505893) + (xy 124.087046 146.36704) + (xy 124.240156 146.200719) + (xy 124.326193 146.069029) + (xy 124.379336 146.023675) + (xy 124.448567 146.014251) + (xy 124.511903 146.043753) + (xy 124.533807 146.069031) + (xy 124.619842 146.200716) + (xy 124.61985 146.200727) + (xy 124.77295 146.367036) + (xy 124.772954 146.36704) + (xy 124.951351 146.505893) + (xy 125.150169 146.613488) + (xy 125.150172 146.613489) + (xy 125.363982 146.68689) + (xy 125.363984 146.68689) + (xy 125.363986 146.686891) + (xy 125.586967 146.7241) + (xy 125.586968 146.7241) + (xy 125.813032 146.7241) + (xy 125.813033 146.7241) + (xy 126.036014 146.686891) + (xy 126.249831 146.613488) + (xy 126.448649 146.505893) + (xy 126.627046 146.36704) + (xy 126.780156 146.200719) + (xy 126.866193 146.069028) + (xy 126.919338 146.023675) + (xy 126.988569 146.014251) + (xy 127.051905 146.043753) + (xy 127.073804 146.069025) + (xy 127.159844 146.200719) + (xy 127.159849 146.200724) + (xy 127.15985 146.200727) + (xy 127.31295 146.367036) + (xy 127.312954 146.36704) + (xy 127.491351 146.505893) + (xy 127.690169 146.613488) + (xy 127.690172 146.613489) + (xy 127.903982 146.68689) + (xy 127.903984 146.68689) + (xy 127.903986 146.686891) + (xy 128.126967 146.7241) + (xy 128.126968 146.7241) + (xy 128.353032 146.7241) + (xy 128.353033 146.7241) + (xy 128.576014 146.686891) + (xy 128.789831 146.613488) + (xy 128.988649 146.505893) + (xy 129.167046 146.36704) + (xy 129.320156 146.200719) + (xy 129.406193 146.069028) + (xy 129.459338 146.023675) + (xy 129.528569 146.014251) + (xy 129.591905 146.043753) + (xy 129.613804 146.069025) + (xy 129.699844 146.200719) + (xy 129.699849 146.200724) + (xy 129.69985 146.200727) + (xy 129.85295 146.367036) + (xy 129.852954 146.36704) + (xy 130.031351 146.505893) + (xy 130.230169 146.613488) + (xy 130.230172 146.613489) + (xy 130.443982 146.68689) + (xy 130.443984 146.68689) + (xy 130.443986 146.686891) + (xy 130.666967 146.7241) + (xy 130.666968 146.7241) + (xy 130.893032 146.7241) + (xy 130.893033 146.7241) + (xy 131.116014 146.686891) + (xy 131.329831 146.613488) + (xy 131.528649 146.505893) + (xy 131.707046 146.36704) + (xy 131.860156 146.200719) + (xy 131.946193 146.069028) + (xy 131.999338 146.023675) + (xy 132.068569 146.014251) + (xy 132.131905 146.043753) + (xy 132.153804 146.069025) + (xy 132.239844 146.200719) + (xy 132.239849 146.200724) + (xy 132.23985 146.200727) + (xy 132.39295 146.367036) + (xy 132.392954 146.36704) + (xy 132.571351 146.505893) + (xy 132.770169 146.613488) + (xy 132.770172 146.613489) + (xy 132.983982 146.68689) + (xy 132.983984 146.68689) + (xy 132.983986 146.686891) + (xy 133.206967 146.7241) + (xy 133.206968 146.7241) + (xy 133.433032 146.7241) + (xy 133.433033 146.7241) + (xy 133.656014 146.686891) + (xy 133.869831 146.613488) + (xy 134.068649 146.505893) + (xy 134.247046 146.36704) + (xy 134.400156 146.200719) + (xy 134.486193 146.069028) + (xy 134.539338 146.023675) + (xy 134.608569 146.014251) + (xy 134.671905 146.043753) + (xy 134.693804 146.069025) + (xy 134.779844 146.200719) + (xy 134.779849 146.200724) + (xy 134.77985 146.200727) + (xy 134.93295 146.367036) + (xy 134.932954 146.36704) + (xy 135.111351 146.505893) + (xy 135.310169 146.613488) + (xy 135.310172 146.613489) + (xy 135.523982 146.68689) + (xy 135.523984 146.68689) + (xy 135.523986 146.686891) + (xy 135.746967 146.7241) + (xy 135.746968 146.7241) + (xy 135.973032 146.7241) + (xy 135.973033 146.7241) + (xy 136.196014 146.686891) + (xy 136.409831 146.613488) + (xy 136.608649 146.505893) + (xy 136.787046 146.36704) + (xy 136.940156 146.200719) + (xy 137.026193 146.069028) + (xy 137.079338 146.023675) + (xy 137.148569 146.014251) + (xy 137.211905 146.043753) + (xy 137.233804 146.069025) + (xy 137.319844 146.200719) + (xy 137.319849 146.200724) + (xy 137.31985 146.200727) + (xy 137.47295 146.367036) + (xy 137.472954 146.36704) + (xy 137.651351 146.505893) + (xy 137.850169 146.613488) + (xy 137.850172 146.613489) + (xy 138.063982 146.68689) + (xy 138.063984 146.68689) + (xy 138.063986 146.686891) + (xy 138.286967 146.7241) + (xy 138.286968 146.7241) + (xy 138.513032 146.7241) + (xy 138.513033 146.7241) + (xy 138.736014 146.686891) + (xy 138.949831 146.613488) + (xy 139.148649 146.505893) + (xy 139.327046 146.36704) + (xy 139.480156 146.200719) + (xy 139.603802 146.011465) + (xy 139.694611 145.804441) + (xy 139.750107 145.585293) + (xy 139.768775 145.360006) + (xy 142.111225 145.360006) + (xy 142.129892 145.585289) + (xy 142.185388 145.804439) + (xy 142.276198 146.011466) + (xy 142.399842 146.200716) + (xy 142.39985 146.200727) + (xy 142.55295 146.367036) + (xy 142.552954 146.36704) + (xy 142.731351 146.505893) + (xy 142.930169 146.613488) + (xy 142.930172 146.613489) + (xy 143.143982 146.68689) + (xy 143.143984 146.68689) + (xy 143.143986 146.686891) + (xy 143.366967 146.7241) + (xy 143.366968 146.7241) + (xy 143.593032 146.7241) + (xy 143.593033 146.7241) + (xy 143.816014 146.686891) + (xy 144.029831 146.613488) + (xy 144.228649 146.505893) + (xy 144.407046 146.36704) + (xy 144.560156 146.200719) + (xy 144.646193 146.069028) + (xy 144.699338 146.023675) + (xy 144.768569 146.014251) + (xy 144.831905 146.043753) + (xy 144.853804 146.069025) + (xy 144.939844 146.200719) + (xy 144.939849 146.200724) + (xy 144.93985 146.200727) + (xy 145.09295 146.367036) + (xy 145.092954 146.36704) + (xy 145.271351 146.505893) + (xy 145.470169 146.613488) + (xy 145.470172 146.613489) + (xy 145.683982 146.68689) + (xy 145.683984 146.68689) + (xy 145.683986 146.686891) + (xy 145.906967 146.7241) + (xy 145.906968 146.7241) + (xy 146.133032 146.7241) + (xy 146.133033 146.7241) + (xy 146.356014 146.686891) + (xy 146.569831 146.613488) + (xy 146.768649 146.505893) + (xy 146.947046 146.36704) + (xy 147.100156 146.200719) + (xy 147.186193 146.069028) + (xy 147.239338 146.023675) + (xy 147.308569 146.014251) + (xy 147.371905 146.043753) + (xy 147.393804 146.069025) + (xy 147.479844 146.200719) + (xy 147.479849 146.200724) + (xy 147.47985 146.200727) + (xy 147.63295 146.367036) + (xy 147.632954 146.36704) + (xy 147.811351 146.505893) + (xy 148.010169 146.613488) + (xy 148.010172 146.613489) + (xy 148.223982 146.68689) + (xy 148.223984 146.68689) + (xy 148.223986 146.686891) + (xy 148.446967 146.7241) + (xy 148.446968 146.7241) + (xy 148.673032 146.7241) + (xy 148.673033 146.7241) + (xy 148.896014 146.686891) + (xy 149.109831 146.613488) + (xy 149.308649 146.505893) + (xy 149.487046 146.36704) + (xy 149.640156 146.200719) + (xy 149.726193 146.069028) + (xy 149.779338 146.023675) + (xy 149.848569 146.014251) + (xy 149.911905 146.043753) + (xy 149.933804 146.069025) + (xy 150.019844 146.200719) + (xy 150.019849 146.200724) + (xy 150.01985 146.200727) + (xy 150.17295 146.367036) + (xy 150.172954 146.36704) + (xy 150.351351 146.505893) + (xy 150.550169 146.613488) + (xy 150.550172 146.613489) + (xy 150.763982 146.68689) + (xy 150.763984 146.68689) + (xy 150.763986 146.686891) + (xy 150.986967 146.7241) + (xy 150.986968 146.7241) + (xy 151.213032 146.7241) + (xy 151.213033 146.7241) + (xy 151.436014 146.686891) + (xy 151.649831 146.613488) + (xy 151.848649 146.505893) + (xy 152.027046 146.36704) + (xy 152.180156 146.200719) + (xy 152.266193 146.069028) + (xy 152.319338 146.023675) + (xy 152.388569 146.014251) + (xy 152.451905 146.043753) + (xy 152.473804 146.069025) + (xy 152.559844 146.200719) + (xy 152.559849 146.200724) + (xy 152.55985 146.200727) + (xy 152.71295 146.367036) + (xy 152.712954 146.36704) + (xy 152.891351 146.505893) + (xy 153.090169 146.613488) + (xy 153.090172 146.613489) + (xy 153.303982 146.68689) + (xy 153.303984 146.68689) + (xy 153.303986 146.686891) + (xy 153.526967 146.7241) + (xy 153.526968 146.7241) + (xy 153.753032 146.7241) + (xy 153.753033 146.7241) + (xy 153.976014 146.686891) + (xy 154.189831 146.613488) + (xy 154.388649 146.505893) + (xy 154.567046 146.36704) + (xy 154.720156 146.200719) + (xy 154.806193 146.069028) + (xy 154.859338 146.023675) + (xy 154.928569 146.014251) + (xy 154.991905 146.043753) + (xy 155.013804 146.069025) + (xy 155.099844 146.200719) + (xy 155.099849 146.200724) + (xy 155.09985 146.200727) + (xy 155.25295 146.367036) + (xy 155.252954 146.36704) + (xy 155.431351 146.505893) + (xy 155.630169 146.613488) + (xy 155.630172 146.613489) + (xy 155.843982 146.68689) + (xy 155.843984 146.68689) + (xy 155.843986 146.686891) + (xy 156.066967 146.7241) + (xy 156.066968 146.7241) + (xy 156.293032 146.7241) + (xy 156.293033 146.7241) + (xy 156.516014 146.686891) + (xy 156.729831 146.613488) + (xy 156.928649 146.505893) + (xy 157.107046 146.36704) + (xy 157.260156 146.200719) + (xy 157.346193 146.069028) + (xy 157.399338 146.023675) + (xy 157.468569 146.014251) + (xy 157.531905 146.043753) + (xy 157.553804 146.069025) + (xy 157.639844 146.200719) + (xy 157.639849 146.200724) + (xy 157.63985 146.200727) + (xy 157.79295 146.367036) + (xy 157.792954 146.36704) + (xy 157.971351 146.505893) + (xy 158.170169 146.613488) + (xy 158.170172 146.613489) + (xy 158.383982 146.68689) + (xy 158.383984 146.68689) + (xy 158.383986 146.686891) + (xy 158.606967 146.7241) + (xy 158.606968 146.7241) + (xy 158.833032 146.7241) + (xy 158.833033 146.7241) + (xy 159.056014 146.686891) + (xy 159.269831 146.613488) + (xy 159.468649 146.505893) + (xy 159.647046 146.36704) + (xy 159.800156 146.200719) + (xy 159.886193 146.069028) + (xy 159.939338 146.023675) + (xy 160.008569 146.014251) + (xy 160.071905 146.043753) + (xy 160.093804 146.069025) + (xy 160.179844 146.200719) + (xy 160.179849 146.200724) + (xy 160.17985 146.200727) + (xy 160.33295 146.367036) + (xy 160.332954 146.36704) + (xy 160.511351 146.505893) + (xy 160.710169 146.613488) + (xy 160.710172 146.613489) + (xy 160.923982 146.68689) + (xy 160.923984 146.68689) + (xy 160.923986 146.686891) + (xy 161.146967 146.7241) + (xy 161.146968 146.7241) + (xy 161.373032 146.7241) + (xy 161.373033 146.7241) + (xy 161.596014 146.686891) + (xy 161.809831 146.613488) + (xy 162.008649 146.505893) + (xy 162.187046 146.36704) + (xy 162.340156 146.200719) + (xy 162.463802 146.011465) + (xy 162.554611 145.804441) + (xy 162.610107 145.585293) + (xy 162.628775 145.36) + (xy 162.628775 145.359995) + (xy 162.628775 145.359993) + (xy 162.610107 145.13471) + (xy 162.610107 145.134707) + (xy 162.554611 144.915559) + (xy 162.463802 144.708535) + (xy 162.340156 144.519281) + (xy 162.340153 144.519278) + (xy 162.340149 144.519272) + (xy 162.187049 144.352963) + (xy 162.187048 144.352962) + (xy 162.187046 144.35296) + (xy 162.008649 144.214107) + (xy 161.98239 144.199896) + (xy 161.809832 144.106512) + (xy 161.809827 144.10651) + (xy 161.596017 144.033109) + (xy 161.384107 143.997748) + (xy 161.373033 143.9959) + (xy 161.146967 143.9959) + (xy 161.135893 143.997748) + (xy 160.923982 144.033109) + (xy 160.710172 144.10651) + (xy 160.710167 144.106512) + (xy 160.511352 144.214106) + (xy 160.332955 144.352959) + (xy 160.33295 144.352963) + (xy 160.17985 144.519272) + (xy 160.179842 144.519283) + (xy 160.093808 144.650968) + (xy 160.040662 144.696325) + (xy 159.97143 144.705748) + (xy 159.908095 144.676246) + (xy 159.886192 144.650968) + (xy 159.834741 144.572217) + (xy 159.800156 144.519281) + (xy 159.800153 144.519278) + (xy 159.800149 144.519272) + (xy 159.647049 144.352963) + (xy 159.647048 144.352962) + (xy 159.647046 144.35296) + (xy 159.468649 144.214107) + (xy 159.44239 144.199896) + (xy 159.269832 144.106512) + (xy 159.269827 144.10651) + (xy 159.056017 144.033109) + (xy 158.844107 143.997748) + (xy 158.833033 143.9959) + (xy 158.606967 143.9959) + (xy 158.595893 143.997748) + (xy 158.383982 144.033109) + (xy 158.170172 144.10651) + (xy 158.170167 144.106512) + (xy 157.971352 144.214106) + (xy 157.792955 144.352959) + (xy 157.79295 144.352963) + (xy 157.63985 144.519272) + (xy 157.639842 144.519283) + (xy 157.553808 144.650968) + (xy 157.500662 144.696325) + (xy 157.43143 144.705748) + (xy 157.368095 144.676246) + (xy 157.346192 144.650968) + (xy 157.294741 144.572217) + (xy 157.260156 144.519281) + (xy 157.260153 144.519278) + (xy 157.260149 144.519272) + (xy 157.107049 144.352963) + (xy 157.107048 144.352962) + (xy 157.107046 144.35296) + (xy 156.928649 144.214107) + (xy 156.90239 144.199896) + (xy 156.729832 144.106512) + (xy 156.729827 144.10651) + (xy 156.516017 144.033109) + (xy 156.304107 143.997748) + (xy 156.293033 143.9959) + (xy 156.066967 143.9959) + (xy 156.055893 143.997748) + (xy 155.843982 144.033109) + (xy 155.630172 144.10651) + (xy 155.630167 144.106512) + (xy 155.431352 144.214106) + (xy 155.252955 144.352959) + (xy 155.25295 144.352963) + (xy 155.09985 144.519272) + (xy 155.099842 144.519283) + (xy 155.013808 144.650968) + (xy 154.960662 144.696325) + (xy 154.89143 144.705748) + (xy 154.828095 144.676246) + (xy 154.806192 144.650968) + (xy 154.754741 144.572217) + (xy 154.720156 144.519281) + (xy 154.720153 144.519278) + (xy 154.720149 144.519272) + (xy 154.567049 144.352963) + (xy 154.567048 144.352962) + (xy 154.567046 144.35296) + (xy 154.388649 144.214107) + (xy 154.36239 144.199896) + (xy 154.189832 144.106512) + (xy 154.189827 144.10651) + (xy 153.976017 144.033109) + (xy 153.764107 143.997748) + (xy 153.753033 143.9959) + (xy 153.526967 143.9959) + (xy 153.515893 143.997748) + (xy 153.303982 144.033109) + (xy 153.090172 144.10651) + (xy 153.090167 144.106512) + (xy 152.891352 144.214106) + (xy 152.712955 144.352959) + (xy 152.71295 144.352963) + (xy 152.55985 144.519272) + (xy 152.559842 144.519283) + (xy 152.473808 144.650968) + (xy 152.420662 144.696325) + (xy 152.35143 144.705748) + (xy 152.288095 144.676246) + (xy 152.266192 144.650968) + (xy 152.214741 144.572217) + (xy 152.180156 144.519281) + (xy 152.180153 144.519278) + (xy 152.180149 144.519272) + (xy 152.027049 144.352963) + (xy 152.027048 144.352962) + (xy 152.027046 144.35296) + (xy 151.848649 144.214107) + (xy 151.82239 144.199896) + (xy 151.649832 144.106512) + (xy 151.649827 144.10651) + (xy 151.436017 144.033109) + (xy 151.224107 143.997748) + (xy 151.213033 143.9959) + (xy 150.986967 143.9959) + (xy 150.975893 143.997748) + (xy 150.763982 144.033109) + (xy 150.550172 144.10651) + (xy 150.550167 144.106512) + (xy 150.351352 144.214106) + (xy 150.172955 144.352959) + (xy 150.17295 144.352963) + (xy 150.01985 144.519272) + (xy 150.019842 144.519283) + (xy 149.933808 144.650968) + (xy 149.880662 144.696325) + (xy 149.81143 144.705748) + (xy 149.748095 144.676246) + (xy 149.726192 144.650968) + (xy 149.674741 144.572217) + (xy 149.640156 144.519281) + (xy 149.640153 144.519278) + (xy 149.640149 144.519272) + (xy 149.487049 144.352963) + (xy 149.487048 144.352962) + (xy 149.487046 144.35296) + (xy 149.308649 144.214107) + (xy 149.28239 144.199896) + (xy 149.109832 144.106512) + (xy 149.109827 144.10651) + (xy 148.896017 144.033109) + (xy 148.684107 143.997748) + (xy 148.673033 143.9959) + (xy 148.446967 143.9959) + (xy 148.435893 143.997748) + (xy 148.223982 144.033109) + (xy 148.010172 144.10651) + (xy 148.010167 144.106512) + (xy 147.811352 144.214106) + (xy 147.632955 144.352959) + (xy 147.63295 144.352963) + (xy 147.47985 144.519272) + (xy 147.479842 144.519283) + (xy 147.393808 144.650968) + (xy 147.340662 144.696325) + (xy 147.27143 144.705748) + (xy 147.208095 144.676246) + (xy 147.186192 144.650968) + (xy 147.134741 144.572217) + (xy 147.100156 144.519281) + (xy 147.100153 144.519278) + (xy 147.100149 144.519272) + (xy 146.947049 144.352963) + (xy 146.947048 144.352962) + (xy 146.947046 144.35296) + (xy 146.768649 144.214107) + (xy 146.74239 144.199896) + (xy 146.569832 144.106512) + (xy 146.569827 144.10651) + (xy 146.356017 144.033109) + (xy 146.144107 143.997748) + (xy 146.133033 143.9959) + (xy 145.906967 143.9959) + (xy 145.895893 143.997748) + (xy 145.683982 144.033109) + (xy 145.470172 144.10651) + (xy 145.470167 144.106512) + (xy 145.271352 144.214106) + (xy 145.092955 144.352959) + (xy 145.09295 144.352963) + (xy 144.93985 144.519272) + (xy 144.939842 144.519283) + (xy 144.853808 144.650968) + (xy 144.800662 144.696325) + (xy 144.73143 144.705748) + (xy 144.668095 144.676246) + (xy 144.646192 144.650968) + (xy 144.594741 144.572217) + (xy 144.560156 144.519281) + (xy 144.560153 144.519278) + (xy 144.560149 144.519272) + (xy 144.407049 144.352963) + (xy 144.407048 144.352962) + (xy 144.407046 144.35296) + (xy 144.228649 144.214107) + (xy 144.20239 144.199896) + (xy 144.029832 144.106512) + (xy 144.029827 144.10651) + (xy 143.816017 144.033109) + (xy 143.604107 143.997748) + (xy 143.593033 143.9959) + (xy 143.366967 143.9959) + (xy 143.355893 143.997748) + (xy 143.143982 144.033109) + (xy 142.930172 144.10651) + (xy 142.930167 144.106512) + (xy 142.731352 144.214106) + (xy 142.552955 144.352959) + (xy 142.55295 144.352963) + (xy 142.39985 144.519272) + (xy 142.399842 144.519283) + (xy 142.276198 144.708533) + (xy 142.185388 144.91556) + (xy 142.129892 145.13471) + (xy 142.111225 145.359993) + (xy 142.111225 145.360006) + (xy 139.768775 145.360006) + (xy 139.768775 145.36) + (xy 139.768775 145.359995) + (xy 139.768775 145.359993) + (xy 139.750107 145.13471) + (xy 139.750107 145.134707) + (xy 139.694611 144.915559) + (xy 139.603802 144.708535) + (xy 139.480156 144.519281) + (xy 139.480153 144.519278) + (xy 139.480149 144.519272) + (xy 139.327049 144.352963) + (xy 139.327048 144.352962) + (xy 139.327046 144.35296) + (xy 139.148649 144.214107) + (xy 139.12239 144.199896) + (xy 138.949832 144.106512) + (xy 138.949827 144.10651) + (xy 138.736017 144.033109) + (xy 138.524107 143.997748) + (xy 138.513033 143.9959) + (xy 138.286967 143.9959) + (xy 138.275893 143.997748) + (xy 138.063982 144.033109) + (xy 137.850172 144.10651) + (xy 137.850167 144.106512) + (xy 137.651352 144.214106) + (xy 137.472955 144.352959) + (xy 137.47295 144.352963) + (xy 137.31985 144.519272) + (xy 137.319842 144.519283) + (xy 137.233808 144.650968) + (xy 137.180662 144.696325) + (xy 137.11143 144.705748) + (xy 137.048095 144.676246) + (xy 137.026192 144.650968) + (xy 136.974741 144.572217) + (xy 136.940156 144.519281) + (xy 136.940153 144.519278) + (xy 136.940149 144.519272) + (xy 136.787049 144.352963) + (xy 136.787048 144.352962) + (xy 136.787046 144.35296) + (xy 136.608649 144.214107) + (xy 136.58239 144.199896) + (xy 136.409832 144.106512) + (xy 136.409827 144.10651) + (xy 136.196017 144.033109) + (xy 135.984107 143.997748) + (xy 135.973033 143.9959) + (xy 135.746967 143.9959) + (xy 135.735893 143.997748) + (xy 135.523982 144.033109) + (xy 135.310172 144.10651) + (xy 135.310167 144.106512) + (xy 135.111352 144.214106) + (xy 134.932955 144.352959) + (xy 134.93295 144.352963) + (xy 134.77985 144.519272) + (xy 134.779842 144.519283) + (xy 134.693808 144.650968) + (xy 134.640662 144.696325) + (xy 134.57143 144.705748) + (xy 134.508095 144.676246) + (xy 134.486192 144.650968) + (xy 134.434741 144.572217) + (xy 134.400156 144.519281) + (xy 134.400153 144.519278) + (xy 134.400149 144.519272) + (xy 134.247049 144.352963) + (xy 134.247048 144.352962) + (xy 134.247046 144.35296) + (xy 134.068649 144.214107) + (xy 134.04239 144.199896) + (xy 133.869832 144.106512) + (xy 133.869827 144.10651) + (xy 133.656017 144.033109) + (xy 133.444107 143.997748) + (xy 133.433033 143.9959) + (xy 133.206967 143.9959) + (xy 133.195893 143.997748) + (xy 132.983982 144.033109) + (xy 132.770172 144.10651) + (xy 132.770167 144.106512) + (xy 132.571352 144.214106) + (xy 132.392955 144.352959) + (xy 132.39295 144.352963) + (xy 132.23985 144.519272) + (xy 132.239842 144.519283) + (xy 132.153808 144.650968) + (xy 132.100662 144.696325) + (xy 132.03143 144.705748) + (xy 131.968095 144.676246) + (xy 131.946192 144.650968) + (xy 131.894741 144.572217) + (xy 131.860156 144.519281) + (xy 131.860153 144.519278) + (xy 131.860149 144.519272) + (xy 131.707049 144.352963) + (xy 131.707048 144.352962) + (xy 131.707046 144.35296) + (xy 131.528649 144.214107) + (xy 131.50239 144.199896) + (xy 131.329832 144.106512) + (xy 131.329827 144.10651) + (xy 131.116017 144.033109) + (xy 130.904107 143.997748) + (xy 130.893033 143.9959) + (xy 130.666967 143.9959) + (xy 130.655893 143.997748) + (xy 130.443982 144.033109) + (xy 130.230172 144.10651) + (xy 130.230167 144.106512) + (xy 130.031352 144.214106) + (xy 129.852955 144.352959) + (xy 129.85295 144.352963) + (xy 129.69985 144.519272) + (xy 129.699846 144.519278) + (xy 129.613807 144.650969) + (xy 129.56066 144.696325) + (xy 129.491429 144.705748) + (xy 129.428093 144.676245) + (xy 129.406192 144.650969) + (xy 129.320156 144.519281) + (xy 129.320151 144.519276) + (xy 129.320149 144.519272) + (xy 129.167049 144.352963) + (xy 129.167048 144.352962) + (xy 129.167046 144.35296) + (xy 128.988649 144.214107) + (xy 128.96239 144.199896) + (xy 128.789832 144.106512) + (xy 128.789827 144.10651) + (xy 128.576017 144.033109) + (xy 128.364107 143.997748) + (xy 128.353033 143.9959) + (xy 128.126967 143.9959) + (xy 128.115893 143.997748) + (xy 127.903982 144.033109) + (xy 127.690172 144.10651) + (xy 127.690167 144.106512) + (xy 127.491352 144.214106) + (xy 127.312955 144.352959) + (xy 127.31295 144.352963) + (xy 127.15985 144.519272) + (xy 127.159842 144.519283) + (xy 127.073808 144.650968) + (xy 127.020662 144.696325) + (xy 126.95143 144.705748) + (xy 126.888095 144.676246) + (xy 126.866192 144.650968) + (xy 126.814741 144.572217) + (xy 126.780156 144.519281) + (xy 126.780153 144.519278) + (xy 126.780149 144.519272) + (xy 126.627049 144.352963) + (xy 126.627048 144.352962) + (xy 126.627046 144.35296) + (xy 126.448649 144.214107) + (xy 126.42239 144.199896) + (xy 126.249832 144.106512) + (xy 126.249827 144.10651) + (xy 126.036017 144.033109) + (xy 125.824107 143.997748) + (xy 125.813033 143.9959) + (xy 125.586967 143.9959) + (xy 125.575893 143.997748) + (xy 125.363982 144.033109) + (xy 125.150172 144.10651) + (xy 125.150167 144.106512) + (xy 124.951352 144.214106) + (xy 124.772955 144.352959) + (xy 124.77295 144.352963) + (xy 124.61985 144.519272) + (xy 124.619842 144.519283) + (xy 124.533808 144.650968) + (xy 124.480662 144.696325) + (xy 124.41143 144.705748) + (xy 124.348095 144.676246) + (xy 124.326192 144.650968) + (xy 124.274741 144.572217) + (xy 124.240156 144.519281) + (xy 124.240153 144.519278) + (xy 124.240149 144.519272) + (xy 124.087049 144.352963) + (xy 124.087048 144.352962) + (xy 124.087046 144.35296) + (xy 123.908649 144.214107) + (xy 123.88239 144.199896) + (xy 123.709832 144.106512) + (xy 123.709827 144.10651) + (xy 123.496017 144.033109) + (xy 123.284107 143.997748) + (xy 123.273033 143.9959) + (xy 123.046967 143.9959) + (xy 123.035893 143.997748) + (xy 122.823982 144.033109) + (xy 122.610172 144.10651) + (xy 122.610167 144.106512) + (xy 122.411352 144.214106) + (xy 122.232955 144.352959) + (xy 122.23295 144.352963) + (xy 122.07985 144.519272) + (xy 122.079842 144.519283) + (xy 121.993808 144.650968) + (xy 121.940662 144.696325) + (xy 121.87143 144.705748) + (xy 121.808095 144.676246) + (xy 121.786192 144.650968) + (xy 121.734741 144.572217) + (xy 121.700156 144.519281) + (xy 121.700153 144.519278) + (xy 121.700149 144.519272) + (xy 121.547049 144.352963) + (xy 121.547048 144.352962) + (xy 121.547046 144.35296) + (xy 121.368649 144.214107) + (xy 121.34239 144.199896) + (xy 121.169832 144.106512) + (xy 121.169827 144.10651) + (xy 120.956017 144.033109) + (xy 120.744107 143.997748) + (xy 120.733033 143.9959) + (xy 120.506967 143.9959) + (xy 120.495893 143.997748) + (xy 120.283982 144.033109) + (xy 120.070172 144.10651) + (xy 120.070167 144.106512) + (xy 119.871352 144.214106) + (xy 119.692955 144.352959) + (xy 119.69295 144.352963) + (xy 119.53985 144.519272) + (xy 119.539842 144.519283) + (xy 119.416198 144.708533) + (xy 119.325388 144.91556) + (xy 119.269892 145.13471) + (xy 119.251225 145.359993) + (xy 119.251225 145.360006) + (xy 116.908775 145.360006) + (xy 116.908775 145.36) + (xy 116.908774 145.359993) + (xy 116.903525 145.296644) + (xy 116.917605 145.228208) + (xy 116.939417 145.198725) + (xy 120.086324 142.051819) + (xy 120.147648 142.018334) + (xy 120.174006 142.0155) + (xy 141.067471 142.0155) + (xy 141.13451 142.035185) + (xy 141.1587 142.055517) + (xy 141.24295 142.147036) + (xy 141.242954 142.14704) + (xy 141.421351 142.285893) + (xy 141.620169 142.393488) + (xy 141.620172 142.393489) + (xy 141.833982 142.46689) + (xy 141.833984 142.46689) + (xy 141.833986 142.466891) + (xy 142.056967 142.5041) + (xy 142.056968 142.5041) + (xy 142.283032 142.5041) + (xy 142.283033 142.5041) + (xy 142.506014 142.466891) + (xy 142.719831 142.393488) + (xy 142.918649 142.285893) + (xy 143.097046 142.14704) + (xy 143.250156 141.980719) + (xy 143.373802 141.791465) + (xy 143.464611 141.584441) + (xy 143.520107 141.365293) + (xy 143.532723 141.213039) + (xy 143.538775 141.140006) + (xy 158.581727 141.140006) + (xy 158.600386 141.365202) + (xy 158.600388 141.365213) + (xy 158.655863 141.584278) + (xy 158.746639 141.791225) + (xy 158.825109 141.911334) + (xy 159.460477 141.275967) + (xy 159.483155 141.353201) + (xy 159.562131 141.47609) + (xy 159.67253 141.571752) + (xy 159.805408 141.632435) + (xy 159.810399 141.633152) + (xy 159.177139 142.266412) + (xy 159.17714 142.266413) + (xy 159.201622 142.285468) + (xy 159.201632 142.285475) + (xy 159.40036 142.393022) + (xy 159.400375 142.393029) + (xy 159.614106 142.466403) + (xy 159.83701 142.5036) + (xy 160.06299 142.5036) + (xy 160.285893 142.466403) + (xy 160.499624 142.393029) + (xy 160.499639 142.393022) + (xy 160.698366 142.285476) + (xy 160.698378 142.285468) + (xy 160.722859 142.266413) + (xy 160.722859 142.266412) + (xy 160.0896 141.633152) + (xy 160.094592 141.632435) + (xy 160.22747 141.571752) + (xy 160.337869 141.47609) + (xy 160.416845 141.353201) + (xy 160.439522 141.275969) + (xy 161.074888 141.911334) + (xy 161.153361 141.791222) + (xy 161.244136 141.584278) + (xy 161.299611 141.365213) + (xy 161.299613 141.365202) + (xy 161.318273 141.140006) + (xy 161.318273 141.139993) + (xy 161.299613 140.914797) + (xy 161.299611 140.914786) + (xy 161.244136 140.695721) + (xy 161.15336 140.488774) + (xy 161.074888 140.368663) + (xy 160.439522 141.00403) + (xy 160.416845 140.926799) + (xy 160.337869 140.80391) + (xy 160.22747 140.708248) + (xy 160.094592 140.647565) + (xy 160.089599 140.646847) + (xy 160.722859 140.013587) + (xy 160.722858 140.013585) + (xy 160.698378 139.994531) + (xy 160.698368 139.994524) + (xy 160.499639 139.886977) + (xy 160.499624 139.88697) + (xy 160.285893 139.813596) + (xy 160.06299 139.7764) + (xy 159.83701 139.7764) + (xy 159.614106 139.813596) + (xy 159.400375 139.88697) + (xy 159.400369 139.886972) + (xy 159.201623 139.994529) + (xy 159.201617 139.994533) + (xy 159.17714 140.013584) + (xy 159.17714 140.013586) + (xy 159.810401 140.646847) + (xy 159.805408 140.647565) + (xy 159.67253 140.708248) + (xy 159.562131 140.80391) + (xy 159.483155 140.926799) + (xy 159.460477 141.004031) + (xy 158.82511 140.368664) + (xy 158.746638 140.488777) + (xy 158.746637 140.488779) + (xy 158.655863 140.695721) + (xy 158.600388 140.914786) + (xy 158.600386 140.914797) + (xy 158.581727 141.139993) + (xy 158.581727 141.140006) + (xy 143.538775 141.140006) + (xy 143.538775 141.139993) + (xy 143.520114 140.914797) + (xy 143.520107 140.914707) + (xy 143.464611 140.695559) + (xy 143.373802 140.488535) + (xy 143.350978 140.453601) + (xy 143.295373 140.368491) + (xy 143.250156 140.299281) + (xy 143.250153 140.299278) + (xy 143.250149 140.299272) + (xy 143.097049 140.132963) + (xy 143.097048 140.132962) + (xy 143.097046 140.13296) + (xy 142.918649 139.994107) + (xy 142.886678 139.976805) + (xy 142.719832 139.886512) + (xy 142.719827 139.88651) + (xy 142.506017 139.813109) + (xy 142.338778 139.785202) + (xy 142.283033 139.7759) + (xy 142.056967 139.7759) + (xy 142.01237 139.783341) + (xy 141.833982 139.813109) + (xy 141.620172 139.88651) + (xy 141.620167 139.886512) + (xy 141.421352 139.994106) + (xy 141.242955 140.132959) + (xy 141.24295 140.132963) + (xy 141.1587 140.224483) + (xy 141.098813 140.260474) + (xy 141.067471 140.2645) + (xy 119.798099 140.2645) + (xy 119.793064 140.264295) + (xy 119.736154 140.25966) + (xy 119.736147 140.259661) + (xy 119.654381 140.270801) + (xy 119.652715 140.271005) + (xy 119.57068 140.279927) + (xy 119.57049 140.279992) + (xy 119.547665 140.285341) + (xy 119.547469 140.285367) + (xy 119.547463 140.285368) + (xy 119.547463 140.285369) + (xy 119.527966 140.292531) + (xy 119.469991 140.31383) + (xy 119.468409 140.314387) + (xy 119.390225 140.34073) + (xy 119.390217 140.340734) + (xy 119.39004 140.340841) + (xy 119.368911 140.350965) + (xy 119.368713 140.351037) + (xy 119.299185 140.395478) + (xy 119.29776 140.396362) + (xy 119.227046 140.43891) + (xy 119.227041 140.438914) + (xy 119.22689 140.439058) + (xy 119.208436 140.453485) + (xy 119.20826 140.453597) + (xy 119.208255 140.453601) + (xy 119.149901 140.511954) + (xy 119.148699 140.513124) + (xy 119.088792 140.569871) + (xy 119.088681 140.570036) + (xy 119.073737 140.588117) + (xy 115.702274 143.959581) + (xy 115.640951 143.993066) + (xy 115.614593 143.9959) + (xy 115.426967 143.9959) + (xy 115.415893 143.997748) + (xy 115.203982 144.033109) + (xy 114.990172 144.10651) + (xy 114.990167 144.106512) + (xy 114.791352 144.214106) + (xy 114.612955 144.352958) + (xy 114.558186 144.412453) + (xy 114.498298 144.448443) + (xy 114.42846 144.446342) + (xy 114.370845 144.406817) + (xy 114.350775 144.371802) + (xy 114.306954 144.254313) + (xy 114.30695 144.254306) + (xy 114.22079 144.139212) + (xy 114.220787 144.139209) + (xy 114.105693 144.053049) + (xy 114.105686 144.053045) + (xy 113.970979 144.002803) + (xy 113.970972 144.002801) + (xy 113.911444 143.9964) + (xy 113.25 143.9964) + (xy 113.249999 144.915702) + (xy 113.144592 144.867565) + (xy 113.036334 144.852) + (xy 112.963666 144.852) + (xy 112.855408 144.867565) + (xy 112.75 144.915702) + (xy 112.75 143.9964) + (xy 112.088555 143.9964) + (xy 112.029027 144.002801) + (xy 112.02902 144.002803) + (xy 111.894313 144.053045) + (xy 111.894307 144.053049) + (xy 111.804309 144.120421) + (xy 111.738845 144.144838) + (xy 111.670572 144.129986) + (xy 111.655688 144.12042) + (xy 111.565693 144.053049) + (xy 111.565686 144.053045) + (xy 111.430979 144.002803) + (xy 111.430972 144.002801) + (xy 111.371444 143.9964) + (xy 110.71 143.9964) + (xy 110.71 144.915702) + (xy 110.604592 144.867565) + (xy 110.496334 144.852) + (xy 110.423666 144.852) + (xy 110.315408 144.867565) + (xy 110.209999 144.915702) + (xy 110.21 143.9964) + (xy 109.548555 143.9964) + (xy 109.489027 144.002801) + (xy 109.48902 144.002803) + (xy 109.354313 144.053045) + (xy 109.354306 144.053049) + (xy 109.239212 144.139209) + (xy 109.239209 144.139212) + (xy 109.153049 144.254306) + (xy 109.153046 144.254312) + (xy 109.109224 144.371803) + (xy 109.067352 144.427736) + (xy 109.001887 144.452153) + (xy 108.933615 144.437301) + (xy 108.901813 144.412452) + (xy 108.847049 144.352963) + (xy 108.847048 144.352962) + (xy 108.847046 144.35296) + (xy 108.668649 144.214107) + (xy 108.64239 144.199896) + (xy 108.469832 144.106512) + (xy 108.469827 144.10651) + (xy 108.256017 144.033109) + (xy 108.044107 143.997748) + (xy 108.033033 143.9959) + (xy 107.806967 143.9959) + (xy 107.795893 143.997748) + (xy 107.583982 144.033109) + (xy 107.370172 144.10651) + (xy 107.370167 144.106512) + (xy 107.171352 144.214106) + (xy 106.992955 144.352959) + (xy 106.99295 144.352963) + (xy 106.83985 144.519272) + (xy 106.839842 144.519283) + (xy 106.753808 144.650968) + (xy 106.700662 144.696325) + (xy 106.63143 144.705748) + (xy 106.568095 144.676246) + (xy 106.546192 144.650968) + (xy 106.494741 144.572217) + (xy 106.460156 144.519281) + (xy 106.460153 144.519278) + (xy 106.460149 144.519272) + (xy 106.307049 144.352963) + (xy 106.307048 144.352962) + (xy 106.307046 144.35296) + (xy 106.128649 144.214107) + (xy 106.10239 144.199896) + (xy 105.929832 144.106512) + (xy 105.929827 144.10651) + (xy 105.716017 144.033109) + (xy 105.504107 143.997748) + (xy 105.493033 143.9959) + (xy 105.266967 143.9959) + (xy 105.255893 143.997748) + (xy 105.043982 144.033109) + (xy 104.830172 144.10651) + (xy 104.830167 144.106512) + (xy 104.631352 144.214106) + (xy 104.452955 144.352959) + (xy 104.45295 144.352963) + (xy 104.29985 144.519272) + (xy 104.299842 144.519283) + (xy 104.213808 144.650968) + (xy 104.160662 144.696325) + (xy 104.09143 144.705748) + (xy 104.028095 144.676246) + (xy 104.006192 144.650968) + (xy 103.954741 144.572217) + (xy 103.920156 144.519281) + (xy 103.920153 144.519278) + (xy 103.920149 144.519272) + (xy 103.767049 144.352963) + (xy 103.767048 144.352962) + (xy 103.767046 144.35296) + (xy 103.588649 144.214107) + (xy 103.56239 144.199896) + (xy 103.389832 144.106512) + (xy 103.389827 144.10651) + (xy 103.176017 144.033109) + (xy 102.964107 143.997748) + (xy 102.953033 143.9959) + (xy 102.726967 143.9959) + (xy 102.715893 143.997748) + (xy 102.503982 144.033109) + (xy 102.290172 144.10651) + (xy 102.290167 144.106512) + (xy 102.091352 144.214106) + (xy 101.912955 144.352959) + (xy 101.91295 144.352963) + (xy 101.75985 144.519272) + (xy 101.759846 144.519278) + (xy 101.673807 144.650969) + (xy 101.62066 144.696325) + (xy 101.551429 144.705748) + (xy 101.488093 144.676245) + (xy 101.466192 144.650969) + (xy 101.380156 144.519281) + (xy 101.380151 144.519276) + (xy 101.380149 144.519272) + (xy 101.227049 144.352963) + (xy 101.227048 144.352962) + (xy 101.227046 144.35296) + (xy 101.048649 144.214107) + (xy 101.02239 144.199896) + (xy 100.849832 144.106512) + (xy 100.849827 144.10651) + (xy 100.636017 144.033109) + (xy 100.424107 143.997748) + (xy 100.413033 143.9959) + (xy 100.186967 143.9959) + (xy 100.175893 143.997748) + (xy 99.963982 144.033109) + (xy 99.750172 144.10651) + (xy 99.750167 144.106512) + (xy 99.551352 144.214106) + (xy 99.372955 144.352959) + (xy 99.37295 144.352963) + (xy 99.21985 144.519272) + (xy 99.219842 144.519283) + (xy 99.133808 144.650968) + (xy 99.080662 144.696325) + (xy 99.01143 144.705748) + (xy 98.948095 144.676246) + (xy 98.926192 144.650968) + (xy 98.874741 144.572217) + (xy 98.840156 144.519281) + (xy 98.840153 144.519278) + (xy 98.840149 144.519272) + (xy 98.687049 144.352963) + (xy 98.687048 144.352962) + (xy 98.687046 144.35296) + (xy 98.508649 144.214107) + (xy 98.48239 144.199896) + (xy 98.309832 144.106512) + (xy 98.309827 144.10651) + (xy 98.096017 144.033109) + (xy 97.884107 143.997748) + (xy 97.873033 143.9959) + (xy 97.646967 143.9959) + (xy 97.635893 143.997748) + (xy 97.423982 144.033109) + (xy 97.210172 144.10651) + (xy 97.210167 144.106512) + (xy 97.011352 144.214106) + (xy 96.832955 144.352959) + (xy 96.83295 144.352963) + (xy 96.67985 144.519272) + (xy 96.679842 144.519283) + (xy 96.556198 144.708533) + (xy 96.465388 144.91556) + (xy 96.409892 145.13471) + (xy 96.391225 145.359993) + (xy 96.391225 145.360006) + (xy 81 145.360006) + (xy 81 135.000006) + (xy 84.131225 135.000006) + (xy 84.149892 135.225289) + (xy 84.205388 135.444439) + (xy 84.296198 135.651466) + (xy 84.419842 135.840716) + (xy 84.41985 135.840727) + (xy 84.556572 135.989245) + (xy 84.572954 136.00704) + (xy 84.751351 136.145893) + (xy 84.950169 136.253488) + (xy 84.950172 136.253489) + (xy 85.163982 136.32689) + (xy 85.163984 136.32689) + (xy 85.163986 136.326891) + (xy 85.386967 136.3641) + (xy 85.386968 136.3641) + (xy 85.613032 136.3641) + (xy 85.613033 136.3641) + (xy 85.836014 136.326891) + (xy 86.049831 136.253488) + (xy 86.248649 136.145893) + (xy 86.427046 136.00704) + (xy 86.551246 135.872124) + (xy 86.580149 135.840727) + (xy 86.58015 135.840725) + (xy 86.580156 135.840719) + (xy 86.703802 135.651465) + (xy 86.794611 135.444441) + (xy 86.850107 135.225293) + (xy 86.866038 135.03303) + (xy 86.868775 135.000006) + (xy 86.868775 134.999993) + (xy 86.861318 134.91) + (xy 93.188647 134.91) + (xy 93.209174 135.131535) + (xy 93.209175 135.131537) + (xy 93.270059 135.345523) + (xy 93.270065 135.345538) + (xy 93.369228 135.544683) + (xy 93.369233 135.544691) + (xy 93.50331 135.722238) + (xy 93.667727 135.872123) + (xy 93.667729 135.872125) + (xy 93.856885 135.989245) + (xy 93.856886 135.989245) + (xy 93.856889 135.989247) + (xy 94.06435 136.069618) + (xy 94.283047 136.1105) + (xy 94.283049 136.1105) + (xy 94.505531 136.1105) + (xy 94.505533 136.1105) + (xy 94.72423 136.069618) + (xy 94.931691 135.989247) + (xy 95.120852 135.872124) + (xy 95.285271 135.722236) + (xy 95.419348 135.544689) + (xy 95.518519 135.345528) + (xy 95.579405 135.131536) + (xy 95.599933 134.91) + (xy 96.272932 134.91) + (xy 96.293459 135.131535) + (xy 96.29346 135.131537) + (xy 96.354344 135.345523) + (xy 96.35435 135.345538) + (xy 96.453513 135.544683) + (xy 96.453518 135.544691) + (xy 96.587595 135.722238) + (xy 96.752012 135.872123) + (xy 96.752014 135.872125) + (xy 96.94117 135.989245) + (xy 96.941171 135.989245) + (xy 96.941174 135.989247) + (xy 97.148635 136.069618) + (xy 97.367332 136.1105) + (xy 97.367334 136.1105) + (xy 97.589816 136.1105) + (xy 97.589818 136.1105) + (xy 97.808515 136.069618) + (xy 98.015976 135.989247) + (xy 98.205137 135.872124) + (xy 98.369556 135.722236) + (xy 98.503633 135.544689) + (xy 98.602804 135.345528) + (xy 98.66369 135.131536) + (xy 98.684218 134.91) + (xy 99.357217 134.91) + (xy 99.377744 135.131535) + (xy 99.377745 135.131537) + (xy 99.438629 135.345523) + (xy 99.438635 135.345538) + (xy 99.537798 135.544683) + (xy 99.537803 135.544691) + (xy 99.67188 135.722238) + (xy 99.836297 135.872123) + (xy 99.836299 135.872125) + (xy 100.025455 135.989245) + (xy 100.025456 135.989245) + (xy 100.025459 135.989247) + (xy 100.23292 136.069618) + (xy 100.451617 136.1105) + (xy 100.451619 136.1105) + (xy 100.674101 136.1105) + (xy 100.674103 136.1105) + (xy 100.8928 136.069618) + (xy 101.100261 135.989247) + (xy 101.289422 135.872124) + (xy 101.453841 135.722236) + (xy 101.587918 135.544689) + (xy 101.687089 135.345528) + (xy 101.747975 135.131536) + (xy 101.768503 134.91) + (xy 102.441502 134.91) + (xy 102.462029 135.131535) + (xy 102.46203 135.131537) + (xy 102.522914 135.345523) + (xy 102.52292 135.345538) + (xy 102.622083 135.544683) + (xy 102.622088 135.544691) + (xy 102.756165 135.722238) + (xy 102.920582 135.872123) + (xy 102.920584 135.872125) + (xy 103.10974 135.989245) + (xy 103.109741 135.989245) + (xy 103.109744 135.989247) + (xy 103.317205 136.069618) + (xy 103.535902 136.1105) + (xy 103.535904 136.1105) + (xy 103.758386 136.1105) + (xy 103.758388 136.1105) + (xy 103.977085 136.069618) + (xy 104.184546 135.989247) + (xy 104.373707 135.872124) + (xy 104.538126 135.722236) + (xy 104.672203 135.544689) + (xy 104.771374 135.345528) + (xy 104.83226 135.131536) + (xy 104.852788 134.91) + (xy 105.525787 134.91) + (xy 105.546314 135.131535) + (xy 105.546315 135.131537) + (xy 105.607199 135.345523) + (xy 105.607205 135.345538) + (xy 105.706368 135.544683) + (xy 105.706373 135.544691) + (xy 105.84045 135.722238) + (xy 106.004867 135.872123) + (xy 106.004869 135.872125) + (xy 106.194025 135.989245) + (xy 106.194026 135.989245) + (xy 106.194029 135.989247) + (xy 106.40149 136.069618) + (xy 106.620187 136.1105) + (xy 106.620189 136.1105) + (xy 106.842671 136.1105) + (xy 106.842673 136.1105) + (xy 107.06137 136.069618) + (xy 107.268831 135.989247) + (xy 107.457992 135.872124) + (xy 107.622411 135.722236) + (xy 107.756488 135.544689) + (xy 107.855659 135.345528) + (xy 107.916545 135.131536) + (xy 107.937073 134.91) + (xy 108.610072 134.91) + (xy 108.630599 135.131535) + (xy 108.6306 135.131537) + (xy 108.691484 135.345523) + (xy 108.69149 135.345538) + (xy 108.790653 135.544683) + (xy 108.790658 135.544691) + (xy 108.924735 135.722238) + (xy 109.089152 135.872123) + (xy 109.089154 135.872125) + (xy 109.27831 135.989245) + (xy 109.278311 135.989245) + (xy 109.278314 135.989247) + (xy 109.485775 136.069618) + (xy 109.704472 136.1105) + (xy 109.704474 136.1105) + (xy 109.926956 136.1105) + (xy 109.926958 136.1105) + (xy 110.145655 136.069618) + (xy 110.353116 135.989247) + (xy 110.542277 135.872124) + (xy 110.706696 135.722236) + (xy 110.840773 135.544689) + (xy 110.939944 135.345528) + (xy 111.00083 135.131536) + (xy 111.021358 134.91) + (xy 111.694357 134.91) + (xy 111.714884 135.131535) + (xy 111.714885 135.131537) + (xy 111.775769 135.345523) + (xy 111.775775 135.345538) + (xy 111.874938 135.544683) + (xy 111.874943 135.544691) + (xy 112.00902 135.722238) + (xy 112.173437 135.872123) + (xy 112.173439 135.872125) + (xy 112.362595 135.989245) + (xy 112.362596 135.989245) + (xy 112.362599 135.989247) + (xy 112.57006 136.069618) + (xy 112.788757 136.1105) + (xy 112.788759 136.1105) + (xy 113.011241 136.1105) + (xy 113.011243 136.1105) + (xy 113.22994 136.069618) + (xy 113.437401 135.989247) + (xy 113.626562 135.872124) + (xy 113.790981 135.722236) + (xy 113.925058 135.544689) + (xy 114.024229 135.345528) + (xy 114.085115 135.131536) + (xy 114.105643 134.91) + (xy 114.778647 134.91) + (xy 114.799174 135.131535) + (xy 114.799175 135.131537) + (xy 114.860059 135.345523) + (xy 114.860065 135.345538) + (xy 114.959228 135.544683) + (xy 114.959233 135.544691) + (xy 115.09331 135.722238) + (xy 115.257727 135.872123) + (xy 115.257729 135.872125) + (xy 115.446885 135.989245) + (xy 115.446886 135.989245) + (xy 115.446889 135.989247) + (xy 115.65435 136.069618) + (xy 115.873047 136.1105) + (xy 115.873049 136.1105) + (xy 116.095531 136.1105) + (xy 116.095533 136.1105) + (xy 116.31423 136.069618) + (xy 116.521691 135.989247) + (xy 116.710852 135.872124) + (xy 116.875271 135.722236) + (xy 117.009348 135.544689) + (xy 117.108519 135.345528) + (xy 117.169405 135.131536) + (xy 117.189933 134.91) + (xy 117.180125 134.804158) + (xy 117.169405 134.688464) + (xy 117.169404 134.688462) + (xy 117.166867 134.679547) + (xy 117.108519 134.474472) + (xy 117.058739 134.3745) + (xy 117.009351 134.275316) + (xy 117.009346 134.275308) + (xy 116.875269 134.097761) + (xy 116.710852 133.947876) + (xy 116.71085 133.947874) + (xy 116.521694 133.830754) + (xy 116.521688 133.830752) + (xy 116.31423 133.750382) + (xy 116.095533 133.7095) + (xy 115.873047 133.7095) + (xy 115.65435 133.750382) + (xy 115.552505 133.789837) + (xy 115.446891 133.830752) + (xy 115.446885 133.830754) + (xy 115.257729 133.947874) + (xy 115.257727 133.947876) + (xy 115.09331 134.097761) + (xy 114.959233 134.275308) + (xy 114.959228 134.275316) + (xy 114.860065 134.474461) + (xy 114.860059 134.474476) + (xy 114.799175 134.688462) + (xy 114.799174 134.688464) + (xy 114.778647 134.909999) + (xy 114.778647 134.91) + (xy 114.105643 134.91) + (xy 114.095835 134.804158) + (xy 114.085115 134.688464) + (xy 114.085114 134.688462) + (xy 114.082577 134.679547) + (xy 114.024229 134.474472) + (xy 113.974449 134.3745) + (xy 113.925061 134.275316) + (xy 113.925056 134.275308) + (xy 113.790979 134.097761) + (xy 113.626562 133.947876) + (xy 113.62656 133.947874) + (xy 113.437404 133.830754) + (xy 113.437398 133.830752) + (xy 113.22994 133.750382) + (xy 113.011243 133.7095) + (xy 112.788757 133.7095) + (xy 112.57006 133.750382) + (xy 112.468215 133.789837) + (xy 112.362601 133.830752) + (xy 112.362595 133.830754) + (xy 112.173439 133.947874) + (xy 112.173437 133.947876) + (xy 112.00902 134.097761) + (xy 111.874943 134.275308) + (xy 111.874938 134.275316) + (xy 111.775775 134.474461) + (xy 111.775769 134.474476) + (xy 111.714885 134.688462) + (xy 111.714884 134.688464) + (xy 111.694357 134.909999) + (xy 111.694357 134.91) + (xy 111.021358 134.91) + (xy 111.01155 134.804158) + (xy 111.00083 134.688464) + (xy 111.000829 134.688462) + (xy 110.998292 134.679547) + (xy 110.939944 134.474472) + (xy 110.890164 134.3745) + (xy 110.840776 134.275316) + (xy 110.840771 134.275308) + (xy 110.706694 134.097761) + (xy 110.542277 133.947876) + (xy 110.542275 133.947874) + (xy 110.353119 133.830754) + (xy 110.353113 133.830752) + (xy 110.145655 133.750382) + (xy 109.926958 133.7095) + (xy 109.704472 133.7095) + (xy 109.485775 133.750382) + (xy 109.38393 133.789837) + (xy 109.278316 133.830752) + (xy 109.27831 133.830754) + (xy 109.089154 133.947874) + (xy 109.089152 133.947876) + (xy 108.924735 134.097761) + (xy 108.790658 134.275308) + (xy 108.790653 134.275316) + (xy 108.69149 134.474461) + (xy 108.691484 134.474476) + (xy 108.6306 134.688462) + (xy 108.630599 134.688464) + (xy 108.610072 134.909999) + (xy 108.610072 134.91) + (xy 107.937073 134.91) + (xy 107.927265 134.804158) + (xy 107.916545 134.688464) + (xy 107.916544 134.688462) + (xy 107.914007 134.679547) + (xy 107.855659 134.474472) + (xy 107.805879 134.3745) + (xy 107.756491 134.275316) + (xy 107.756486 134.275308) + (xy 107.622409 134.097761) + (xy 107.457992 133.947876) + (xy 107.45799 133.947874) + (xy 107.268834 133.830754) + (xy 107.268828 133.830752) + (xy 107.06137 133.750382) + (xy 106.842673 133.7095) + (xy 106.620187 133.7095) + (xy 106.40149 133.750382) + (xy 106.299645 133.789837) + (xy 106.194031 133.830752) + (xy 106.194025 133.830754) + (xy 106.004869 133.947874) + (xy 106.004867 133.947876) + (xy 105.84045 134.097761) + (xy 105.706373 134.275308) + (xy 105.706368 134.275316) + (xy 105.607205 134.474461) + (xy 105.607199 134.474476) + (xy 105.546315 134.688462) + (xy 105.546314 134.688464) + (xy 105.525787 134.909999) + (xy 105.525787 134.91) + (xy 104.852788 134.91) + (xy 104.84298 134.804158) + (xy 104.83226 134.688464) + (xy 104.832259 134.688462) + (xy 104.829722 134.679547) + (xy 104.771374 134.474472) + (xy 104.721594 134.3745) + (xy 104.672206 134.275316) + (xy 104.672201 134.275308) + (xy 104.538124 134.097761) + (xy 104.373707 133.947876) + (xy 104.373705 133.947874) + (xy 104.184549 133.830754) + (xy 104.184543 133.830752) + (xy 103.977085 133.750382) + (xy 103.758388 133.7095) + (xy 103.535902 133.7095) + (xy 103.317205 133.750382) + (xy 103.21536 133.789837) + (xy 103.109746 133.830752) + (xy 103.10974 133.830754) + (xy 102.920584 133.947874) + (xy 102.920582 133.947876) + (xy 102.756165 134.097761) + (xy 102.622088 134.275308) + (xy 102.622083 134.275316) + (xy 102.52292 134.474461) + (xy 102.522914 134.474476) + (xy 102.46203 134.688462) + (xy 102.462029 134.688464) + (xy 102.441502 134.909999) + (xy 102.441502 134.91) + (xy 101.768503 134.91) + (xy 101.758695 134.804158) + (xy 101.747975 134.688464) + (xy 101.747974 134.688462) + (xy 101.745437 134.679547) + (xy 101.687089 134.474472) + (xy 101.637309 134.3745) + (xy 101.587921 134.275316) + (xy 101.587916 134.275308) + (xy 101.453839 134.097761) + (xy 101.289422 133.947876) + (xy 101.28942 133.947874) + (xy 101.100264 133.830754) + (xy 101.100258 133.830752) + (xy 100.8928 133.750382) + (xy 100.674103 133.7095) + (xy 100.451617 133.7095) + (xy 100.23292 133.750382) + (xy 100.131075 133.789837) + (xy 100.025461 133.830752) + (xy 100.025455 133.830754) + (xy 99.836299 133.947874) + (xy 99.836297 133.947876) + (xy 99.67188 134.097761) + (xy 99.537803 134.275308) + (xy 99.537798 134.275316) + (xy 99.438635 134.474461) + (xy 99.438629 134.474476) + (xy 99.377745 134.688462) + (xy 99.377744 134.688464) + (xy 99.357217 134.909999) + (xy 99.357217 134.91) + (xy 98.684218 134.91) + (xy 98.67441 134.804158) + (xy 98.66369 134.688464) + (xy 98.663689 134.688462) + (xy 98.661152 134.679547) + (xy 98.602804 134.474472) + (xy 98.553024 134.3745) + (xy 98.503636 134.275316) + (xy 98.503631 134.275308) + (xy 98.369554 134.097761) + (xy 98.205137 133.947876) + (xy 98.205135 133.947874) + (xy 98.015979 133.830754) + (xy 98.015973 133.830752) + (xy 97.808515 133.750382) + (xy 97.589818 133.7095) + (xy 97.367332 133.7095) + (xy 97.148635 133.750382) + (xy 97.04679 133.789837) + (xy 96.941176 133.830752) + (xy 96.94117 133.830754) + (xy 96.752014 133.947874) + (xy 96.752012 133.947876) + (xy 96.587595 134.097761) + (xy 96.453518 134.275308) + (xy 96.453513 134.275316) + (xy 96.35435 134.474461) + (xy 96.354344 134.474476) + (xy 96.29346 134.688462) + (xy 96.293459 134.688464) + (xy 96.272932 134.909999) + (xy 96.272932 134.91) + (xy 95.599933 134.91) + (xy 95.590125 134.804158) + (xy 95.579405 134.688464) + (xy 95.579404 134.688462) + (xy 95.576867 134.679547) + (xy 95.518519 134.474472) + (xy 95.468739 134.3745) + (xy 95.419351 134.275316) + (xy 95.419346 134.275308) + (xy 95.285269 134.097761) + (xy 95.120852 133.947876) + (xy 95.12085 133.947874) + (xy 94.931694 133.830754) + (xy 94.931688 133.830752) + (xy 94.72423 133.750382) + (xy 94.505533 133.7095) + (xy 94.283047 133.7095) + (xy 94.06435 133.750382) + (xy 93.962505 133.789837) + (xy 93.856891 133.830752) + (xy 93.856885 133.830754) + (xy 93.667729 133.947874) + (xy 93.667727 133.947876) + (xy 93.50331 134.097761) + (xy 93.369233 134.275308) + (xy 93.369228 134.275316) + (xy 93.270065 134.474461) + (xy 93.270059 134.474476) + (xy 93.209175 134.688462) + (xy 93.209174 134.688464) + (xy 93.188647 134.909999) + (xy 93.188647 134.91) + (xy 86.861318 134.91) + (xy 86.850107 134.77471) + (xy 86.850107 134.774707) + (xy 86.794611 134.555559) + (xy 86.703802 134.348535) + (xy 86.697037 134.338181) + (xy 86.629308 134.234513) + (xy 86.580156 134.159281) + (xy 86.580153 134.159278) + (xy 86.580149 134.159272) + (xy 86.427049 133.992963) + (xy 86.427048 133.992962) + (xy 86.427046 133.99296) + (xy 86.248649 133.854107) + (xy 86.248647 133.854106) + (xy 86.248646 133.854105) + (xy 86.248639 133.8541) + (xy 86.220836 133.839055) + (xy 86.171244 133.789837) + (xy 86.156135 133.72162) + (xy 86.180306 133.656064) + (xy 86.220836 133.620945) + (xy 86.248639 133.605899) + (xy 86.248642 133.605896) + (xy 86.248649 133.605893) + (xy 86.427046 133.46704) + (xy 86.570264 133.311465) + (xy 86.580149 133.300727) + (xy 86.58015 133.300725) + (xy 86.580156 133.300719) + (xy 86.703802 133.111465) + (xy 86.794611 132.904441) + (xy 86.850107 132.685293) + (xy 86.858972 132.578309) + (xy 86.868775 132.460006) + (xy 86.868775 132.459993) + (xy 86.850107 132.23471) + (xy 86.850107 132.234707) + (xy 86.794611 132.015559) + (xy 86.703802 131.808535) + (xy 86.702031 131.805825) + (xy 86.641979 131.713908) + (xy 86.580156 131.619281) + (xy 86.580153 131.619278) + (xy 86.580149 131.619272) + (xy 86.427049 131.452963) + (xy 86.427048 131.452962) + (xy 86.427046 131.45296) + (xy 86.248649 131.314107) + (xy 86.248647 131.314106) + (xy 86.248646 131.314105) + (xy 86.248643 131.314103) + (xy 86.220833 131.299053) + (xy 86.171243 131.249833) + (xy 86.156136 131.181616) + (xy 86.180307 131.116061) + (xy 86.220835 131.080945) + (xy 86.248649 131.065893) + (xy 86.427046 130.92704) + (xy 86.553938 130.789199) + (xy 86.580149 130.760727) + (xy 86.58015 130.760725) + (xy 86.580156 130.760719) + (xy 86.703802 130.571465) + (xy 86.794611 130.364441) + (xy 86.850107 130.145293) + (xy 86.860224 130.023195) + (xy 86.868775 129.920006) + (xy 86.868775 129.919993) + (xy 86.850587 129.7005) + (xy 86.850107 129.694707) + (xy 86.794611 129.475559) + (xy 86.703802 129.268535) + (xy 86.580156 129.079281) + (xy 86.580153 129.079278) + (xy 86.580149 129.079272) + (xy 86.442755 128.930024) + (xy 86.411832 128.86737) + (xy 86.419692 128.797944) + (xy 86.463839 128.743788) + (xy 86.490652 128.729859) + (xy 86.605684 128.686955) + (xy 86.605693 128.68695) + (xy 86.720787 128.60079) + (xy 86.72079 128.600787) + (xy 86.80695 128.485693) + (xy 86.806954 128.485686) + (xy 86.857196 128.350979) + (xy 86.857198 128.350972) + (xy 86.863599 128.291444) + (xy 86.8636 128.291427) + (xy 86.8636 128.037827) + (xy 93.194289 128.037827) + (xy 93.19429 128.037844) + (xy 93.200691 128.097372) + (xy 93.200693 128.097379) + (xy 93.250935 128.232086) + (xy 93.250939 128.232093) + (xy 93.337099 128.347187) + (xy 93.337102 128.34719) + (xy 93.452196 128.43335) + (xy 93.452203 128.433354) + (xy 93.58691 128.483596) + (xy 93.586917 128.483598) + (xy 93.646445 128.489999) + (xy 93.646462 128.49) + (xy 94.14429 128.49) + (xy 94.14429 127.54) + (xy 93.19429 127.54) + (xy 93.194289 128.037827) + (xy 86.8636 128.037827) + (xy 86.8636 127.63) + (xy 85.943196 127.63) + (xy 85.966845 127.593201) + (xy 86.008 127.453039) + (xy 86.008 127.319302) + (xy 94.040662 127.319302) + (xy 94.069337 127.432538) + (xy 94.133226 127.530327) + (xy 94.225405 127.602072) + (xy 94.335885 127.64) + (xy 94.423295 127.64) + (xy 94.509506 127.625614) + (xy 94.612237 127.570019) + (xy 94.639871 127.54) + (xy 94.64429 127.54) + (xy 94.64429 128.49) + (xy 95.142118 128.49) + (xy 95.142134 128.489999) + (xy 95.201662 128.483598) + (xy 95.201669 128.483596) + (xy 95.336376 128.433354) + (xy 95.336383 128.43335) + (xy 95.451477 128.34719) + (xy 95.45148 128.347187) + (xy 95.53764 128.232093) + (xy 95.537644 128.232086) + (xy 95.587886 128.097379) + (xy 95.587888 128.097372) + (xy 95.594289 128.037844) + (xy 95.594289 128.037827) + (xy 95.59429 127.54) + (xy 96.278575 127.54) + (xy 96.278575 128.037844) + (xy 96.284976 128.097372) + (xy 96.284978 128.097379) + (xy 96.33522 128.232086) + (xy 96.335224 128.232093) + (xy 96.421384 128.347187) + (xy 96.421387 128.34719) + (xy 96.536481 128.43335) + (xy 96.536488 128.433354) + (xy 96.671195 128.483596) + (xy 96.671202 128.483598) + (xy 96.73073 128.489999) + (xy 96.730747 128.49) + (xy 97.228575 128.49) + (xy 97.228575 127.54) + (xy 96.278575 127.54) + (xy 95.59429 127.54) + (xy 94.64429 127.54) + (xy 94.639871 127.54) + (xy 94.69135 127.484079) + (xy 94.738272 127.377108) + (xy 94.743062 127.319302) + (xy 97.124947 127.319302) + (xy 97.153622 127.432538) + (xy 97.217511 127.530327) + (xy 97.30969 127.602072) + (xy 97.42017 127.64) + (xy 97.50758 127.64) + (xy 97.593791 127.625614) + (xy 97.696522 127.570019) + (xy 97.724156 127.54) + (xy 97.728575 127.54) + (xy 97.728575 128.49) + (xy 98.226403 128.49) + (xy 98.226419 128.489999) + (xy 98.285947 128.483598) + (xy 98.285954 128.483596) + (xy 98.420661 128.433354) + (xy 98.420668 128.43335) + (xy 98.535762 128.34719) + (xy 98.535765 128.347187) + (xy 98.621925 128.232093) + (xy 98.621929 128.232086) + (xy 98.672171 128.097379) + (xy 98.672173 128.097372) + (xy 98.678574 128.037844) + (xy 98.678575 128.037827) + (xy 98.678575 127.54) + (xy 99.36286 127.54) + (xy 99.36286 128.037844) + (xy 99.369261 128.097372) + (xy 99.369263 128.097379) + (xy 99.419505 128.232086) + (xy 99.419509 128.232093) + (xy 99.505669 128.347187) + (xy 99.505672 128.34719) + (xy 99.620766 128.43335) + (xy 99.620773 128.433354) + (xy 99.75548 128.483596) + (xy 99.755487 128.483598) + (xy 99.815015 128.489999) + (xy 99.815032 128.49) + (xy 100.31286 128.49) + (xy 100.31286 127.54) + (xy 99.36286 127.54) + (xy 98.678575 127.54) + (xy 97.728575 127.54) + (xy 97.724156 127.54) + (xy 97.775635 127.484079) + (xy 97.822557 127.377108) + (xy 97.827347 127.319302) + (xy 100.209232 127.319302) + (xy 100.237907 127.432538) + (xy 100.301796 127.530327) + (xy 100.393975 127.602072) + (xy 100.504455 127.64) + (xy 100.591865 127.64) + (xy 100.678076 127.625614) + (xy 100.780807 127.570019) + (xy 100.808441 127.54) + (xy 100.81286 127.54) + (xy 100.81286 128.49) + (xy 101.310688 128.49) + (xy 101.310704 128.489999) + (xy 101.370232 128.483598) + (xy 101.370239 128.483596) + (xy 101.504946 128.433354) + (xy 101.504953 128.43335) + (xy 101.620047 128.34719) + (xy 101.62005 128.347187) + (xy 101.70621 128.232093) + (xy 101.706214 128.232086) + (xy 101.756456 128.097379) + (xy 101.756458 128.097372) + (xy 101.762859 128.037844) + (xy 101.76286 128.037827) + (xy 101.76286 127.54) + (xy 102.447145 127.54) + (xy 102.447145 128.037844) + (xy 102.453546 128.097372) + (xy 102.453548 128.097379) + (xy 102.50379 128.232086) + (xy 102.503794 128.232093) + (xy 102.589954 128.347187) + (xy 102.589957 128.34719) + (xy 102.705051 128.43335) + (xy 102.705058 128.433354) + (xy 102.839765 128.483596) + (xy 102.839772 128.483598) + (xy 102.8993 128.489999) + (xy 102.899317 128.49) + (xy 103.397145 128.49) + (xy 103.397145 127.54) + (xy 102.447145 127.54) + (xy 101.76286 127.54) + (xy 100.81286 127.54) + (xy 100.808441 127.54) + (xy 100.85992 127.484079) + (xy 100.906842 127.377108) + (xy 100.911632 127.319302) + (xy 103.293517 127.319302) + (xy 103.322192 127.432538) + (xy 103.386081 127.530327) + (xy 103.47826 127.602072) + (xy 103.58874 127.64) + (xy 103.67615 127.64) + (xy 103.762361 127.625614) + (xy 103.865092 127.570019) + (xy 103.892726 127.54) + (xy 103.897145 127.54) + (xy 103.897145 128.49) + (xy 104.394973 128.49) + (xy 104.394989 128.489999) + (xy 104.454517 128.483598) + (xy 104.454524 128.483596) + (xy 104.589231 128.433354) + (xy 104.589238 128.43335) + (xy 104.704332 128.34719) + (xy 104.704335 128.347187) + (xy 104.790495 128.232093) + (xy 104.790499 128.232086) + (xy 104.840741 128.097379) + (xy 104.840743 128.097372) + (xy 104.847144 128.037844) + (xy 104.847145 128.037827) + (xy 104.847145 127.54) + (xy 105.53143 127.54) + (xy 105.53143 128.037844) + (xy 105.537831 128.097372) + (xy 105.537833 128.097379) + (xy 105.588075 128.232086) + (xy 105.588079 128.232093) + (xy 105.674239 128.347187) + (xy 105.674242 128.34719) + (xy 105.789336 128.43335) + (xy 105.789343 128.433354) + (xy 105.92405 128.483596) + (xy 105.924057 128.483598) + (xy 105.983585 128.489999) + (xy 105.983602 128.49) + (xy 106.48143 128.49) + (xy 106.48143 127.54) + (xy 105.53143 127.54) + (xy 104.847145 127.54) + (xy 103.897145 127.54) + (xy 103.892726 127.54) + (xy 103.944205 127.484079) + (xy 103.991127 127.377108) + (xy 103.995917 127.319302) + (xy 106.377802 127.319302) + (xy 106.406477 127.432538) + (xy 106.470366 127.530327) + (xy 106.562545 127.602072) + (xy 106.673025 127.64) + (xy 106.760435 127.64) + (xy 106.846646 127.625614) + (xy 106.949377 127.570019) + (xy 106.977011 127.54) + (xy 106.98143 127.54) + (xy 106.98143 128.49) + (xy 107.479258 128.49) + (xy 107.479274 128.489999) + (xy 107.538802 128.483598) + (xy 107.538809 128.483596) + (xy 107.673516 128.433354) + (xy 107.673523 128.43335) + (xy 107.788617 128.34719) + (xy 107.78862 128.347187) + (xy 107.87478 128.232093) + (xy 107.874784 128.232086) + (xy 107.925026 128.097379) + (xy 107.925028 128.097372) + (xy 107.931429 128.037844) + (xy 107.93143 128.037827) + (xy 107.93143 127.54) + (xy 108.615715 127.54) + (xy 108.615715 128.037844) + (xy 108.622116 128.097372) + (xy 108.622118 128.097379) + (xy 108.67236 128.232086) + (xy 108.672364 128.232093) + (xy 108.758524 128.347187) + (xy 108.758527 128.34719) + (xy 108.873621 128.43335) + (xy 108.873628 128.433354) + (xy 109.008335 128.483596) + (xy 109.008342 128.483598) + (xy 109.06787 128.489999) + (xy 109.067887 128.49) + (xy 109.565715 128.49) + (xy 109.565715 127.54) + (xy 108.615715 127.54) + (xy 107.93143 127.54) + (xy 106.98143 127.54) + (xy 106.977011 127.54) + (xy 107.02849 127.484079) + (xy 107.075412 127.377108) + (xy 107.080202 127.319302) + (xy 109.462087 127.319302) + (xy 109.490762 127.432538) + (xy 109.554651 127.530327) + (xy 109.64683 127.602072) + (xy 109.75731 127.64) + (xy 109.84472 127.64) + (xy 109.930931 127.625614) + (xy 110.033662 127.570019) + (xy 110.061296 127.54) + (xy 110.065715 127.54) + (xy 110.065715 128.49) + (xy 110.563543 128.49) + (xy 110.563559 128.489999) + (xy 110.623087 128.483598) + (xy 110.623094 128.483596) + (xy 110.757801 128.433354) + (xy 110.757808 128.43335) + (xy 110.872902 128.34719) + (xy 110.872905 128.347187) + (xy 110.959065 128.232093) + (xy 110.959069 128.232086) + (xy 111.009311 128.097379) + (xy 111.009313 128.097372) + (xy 111.015714 128.037844) + (xy 111.015715 128.037827) + (xy 111.015715 127.54) + (xy 111.7 127.54) + (xy 111.7 128.037844) + (xy 111.706401 128.097372) + (xy 111.706403 128.097379) + (xy 111.756645 128.232086) + (xy 111.756649 128.232093) + (xy 111.842809 128.347187) + (xy 111.842812 128.34719) + (xy 111.957906 128.43335) + (xy 111.957913 128.433354) + (xy 112.09262 128.483596) + (xy 112.092627 128.483598) + (xy 112.152155 128.489999) + (xy 112.152172 128.49) + (xy 112.65 128.49) + (xy 112.65 127.54) + (xy 111.7 127.54) + (xy 111.015715 127.54) + (xy 110.065715 127.54) + (xy 110.061296 127.54) + (xy 110.112775 127.484079) + (xy 110.159697 127.377108) + (xy 110.164487 127.319302) + (xy 112.546372 127.319302) + (xy 112.575047 127.432538) + (xy 112.638936 127.530327) + (xy 112.731115 127.602072) + (xy 112.841595 127.64) + (xy 112.929005 127.64) + (xy 113.015216 127.625614) + (xy 113.117947 127.570019) + (xy 113.145581 127.54) + (xy 113.15 127.54) + (xy 113.15 128.49) + (xy 113.647828 128.49) + (xy 113.647844 128.489999) + (xy 113.707372 128.483598) + (xy 113.707379 128.483596) + (xy 113.842086 128.433354) + (xy 113.842093 128.43335) + (xy 113.957187 128.34719) + (xy 113.95719 128.347187) + (xy 114.04335 128.232093) + (xy 114.043354 128.232086) + (xy 114.093596 128.097379) + (xy 114.093598 128.097372) + (xy 114.099999 128.037844) + (xy 114.1 128.037827) + (xy 114.784289 128.037827) + (xy 114.78429 128.037844) + (xy 114.790691 128.097372) + (xy 114.790693 128.097379) + (xy 114.840935 128.232086) + (xy 114.840939 128.232093) + (xy 114.927099 128.347187) + (xy 114.927102 128.34719) + (xy 115.042196 128.43335) + (xy 115.042203 128.433354) + (xy 115.17691 128.483596) + (xy 115.176917 128.483598) + (xy 115.236445 128.489999) + (xy 115.236462 128.49) + (xy 115.73429 128.49) + (xy 115.73429 127.54) + (xy 114.78429 127.54) + (xy 114.784289 128.037827) + (xy 114.1 128.037827) + (xy 114.1 127.54) + (xy 113.15 127.54) + (xy 113.145581 127.54) + (xy 113.19706 127.484079) + (xy 113.243982 127.377108) + (xy 113.248772 127.319302) + (xy 115.630662 127.319302) + (xy 115.659337 127.432538) + (xy 115.723226 127.530327) + (xy 115.815405 127.602072) + (xy 115.925885 127.64) + (xy 116.013295 127.64) + (xy 116.099506 127.625614) + (xy 116.202237 127.570019) + (xy 116.229871 127.54) + (xy 116.23429 127.54) + (xy 116.23429 128.49) + (xy 116.732118 128.49) + (xy 116.732134 128.489999) + (xy 116.791662 128.483598) + (xy 116.791669 128.483596) + (xy 116.926376 128.433354) + (xy 116.926383 128.43335) + (xy 117.041477 128.34719) + (xy 117.04148 128.347187) + (xy 117.12764 128.232093) + (xy 117.127644 128.232086) + (xy 117.177886 128.097379) + (xy 117.177888 128.097372) + (xy 117.184289 128.037844) + (xy 117.184289 128.037827) + (xy 117.18429 127.54) + (xy 116.23429 127.54) + (xy 116.229871 127.54) + (xy 116.28135 127.484079) + (xy 116.328272 127.377108) + (xy 116.337918 127.260698) + (xy 116.309243 127.147462) + (xy 116.245354 127.049673) + (xy 116.153175 126.977928) + (xy 116.042695 126.94) + (xy 115.955285 126.94) + (xy 115.869074 126.954386) + (xy 115.766343 127.009981) + (xy 115.68723 127.095921) + (xy 115.640308 127.202892) + (xy 115.630662 127.319302) + (xy 113.248772 127.319302) + (xy 113.253628 127.260698) + (xy 113.224953 127.147462) + (xy 113.161064 127.049673) + (xy 113.068885 126.977928) + (xy 112.958405 126.94) + (xy 112.870995 126.94) + (xy 112.784784 126.954386) + (xy 112.682053 127.009981) + (xy 112.60294 127.095921) + (xy 112.556018 127.202892) + (xy 112.546372 127.319302) + (xy 110.164487 127.319302) + (xy 110.169343 127.260698) + (xy 110.140668 127.147462) + (xy 110.076779 127.049673) + (xy 109.9846 126.977928) + (xy 109.87412 126.94) + (xy 109.78671 126.94) + (xy 109.700499 126.954386) + (xy 109.597768 127.009981) + (xy 109.518655 127.095921) + (xy 109.471733 127.202892) + (xy 109.462087 127.319302) + (xy 107.080202 127.319302) + (xy 107.085058 127.260698) + (xy 107.056383 127.147462) + (xy 106.992494 127.049673) + (xy 106.900315 126.977928) + (xy 106.789835 126.94) + (xy 106.702425 126.94) + (xy 106.616214 126.954386) + (xy 106.513483 127.009981) + (xy 106.43437 127.095921) + (xy 106.387448 127.202892) + (xy 106.377802 127.319302) + (xy 103.995917 127.319302) + (xy 104.000773 127.260698) + (xy 103.972098 127.147462) + (xy 103.908209 127.049673) + (xy 103.81603 126.977928) + (xy 103.70555 126.94) + (xy 103.61814 126.94) + (xy 103.531929 126.954386) + (xy 103.429198 127.009981) + (xy 103.350085 127.095921) + (xy 103.303163 127.202892) + (xy 103.293517 127.319302) + (xy 100.911632 127.319302) + (xy 100.916488 127.260698) + (xy 100.887813 127.147462) + (xy 100.823924 127.049673) + (xy 100.731745 126.977928) + (xy 100.621265 126.94) + (xy 100.533855 126.94) + (xy 100.447644 126.954386) + (xy 100.344913 127.009981) + (xy 100.2658 127.095921) + (xy 100.218878 127.202892) + (xy 100.209232 127.319302) + (xy 97.827347 127.319302) + (xy 97.832203 127.260698) + (xy 97.803528 127.147462) + (xy 97.739639 127.049673) + (xy 97.64746 126.977928) + (xy 97.53698 126.94) + (xy 97.44957 126.94) + (xy 97.363359 126.954386) + (xy 97.260628 127.009981) + (xy 97.181515 127.095921) + (xy 97.134593 127.202892) + (xy 97.124947 127.319302) + (xy 94.743062 127.319302) + (xy 94.747918 127.260698) + (xy 94.719243 127.147462) + (xy 94.655354 127.049673) + (xy 94.563175 126.977928) + (xy 94.452695 126.94) + (xy 94.365285 126.94) + (xy 94.279074 126.954386) + (xy 94.176343 127.009981) + (xy 94.09723 127.095921) + (xy 94.050308 127.202892) + (xy 94.040662 127.319302) + (xy 86.008 127.319302) + (xy 86.008 127.306961) + (xy 85.966845 127.166799) + (xy 85.943196 127.13) + (xy 86.8636 127.13) + (xy 86.8636 126.542172) + (xy 93.194289 126.542172) + (xy 93.19429 127.04) + (xy 94.14429 127.04) + (xy 94.14429 126.09) + (xy 94.64429 126.09) + (xy 94.64429 127.04) + (xy 95.59429 127.04) + (xy 96.278575 127.04) + (xy 97.228575 127.04) + (xy 97.228575 126.09) + (xy 97.728575 126.09) + (xy 97.728575 127.04) + (xy 98.678575 127.04) + (xy 99.36286 127.04) + (xy 100.31286 127.04) + (xy 100.31286 126.09) + (xy 100.81286 126.09) + (xy 100.81286 127.04) + (xy 101.76286 127.04) + (xy 102.447145 127.04) + (xy 103.397145 127.04) + (xy 103.397145 126.09) + (xy 103.897145 126.09) + (xy 103.897145 127.04) + (xy 104.847145 127.04) + (xy 105.53143 127.04) + (xy 106.48143 127.04) + (xy 106.48143 126.09) + (xy 106.98143 126.09) + (xy 106.98143 127.04) + (xy 107.93143 127.04) + (xy 108.615715 127.04) + (xy 109.565715 127.04) + (xy 109.565715 126.09) + (xy 110.065715 126.09) + (xy 110.065715 127.04) + (xy 111.015715 127.04) + (xy 111.7 127.04) + (xy 112.65 127.04) + (xy 112.65 126.09) + (xy 113.15 126.09) + (xy 113.15 127.04) + (xy 114.1 127.04) + (xy 114.1 126.542172) + (xy 114.784289 126.542172) + (xy 114.78429 127.04) + (xy 115.73429 127.04) + (xy 115.73429 126.09) + (xy 116.23429 126.09) + (xy 116.23429 127.04) + (xy 117.184289 127.04) + (xy 117.184289 126.542155) + (xy 117.177888 126.482627) + (xy 117.177886 126.48262) + (xy 117.127644 126.347913) + (xy 117.12764 126.347906) + (xy 117.04148 126.232812) + (xy 117.041477 126.232809) + (xy 116.926383 126.146649) + (xy 116.926376 126.146645) + (xy 116.791669 126.096403) + (xy 116.791662 126.096401) + (xy 116.732134 126.09) + (xy 116.23429 126.09) + (xy 115.73429 126.09) + (xy 115.236445 126.09) + (xy 115.176917 126.096401) + (xy 115.17691 126.096403) + (xy 115.042203 126.146645) + (xy 115.042196 126.146649) + (xy 114.927102 126.232809) + (xy 114.927099 126.232812) + (xy 114.840939 126.347906) + (xy 114.840935 126.347913) + (xy 114.790693 126.48262) + (xy 114.790691 126.482627) + (xy 114.78429 126.542155) + (xy 114.784289 126.542172) + (xy 114.1 126.542172) + (xy 114.099999 126.542155) + (xy 114.093598 126.482627) + (xy 114.093596 126.48262) + (xy 114.043354 126.347913) + (xy 114.04335 126.347906) + (xy 113.95719 126.232812) + (xy 113.957187 126.232809) + (xy 113.842093 126.146649) + (xy 113.842086 126.146645) + (xy 113.707379 126.096403) + (xy 113.707372 126.096401) + (xy 113.647844 126.09) + (xy 113.15 126.09) + (xy 112.65 126.09) + (xy 112.152155 126.09) + (xy 112.092627 126.096401) + (xy 112.09262 126.096403) + (xy 111.957913 126.146645) + (xy 111.957906 126.146649) + (xy 111.842812 126.232809) + (xy 111.842809 126.232812) + (xy 111.756649 126.347906) + (xy 111.756645 126.347913) + (xy 111.706403 126.48262) + (xy 111.706401 126.482627) + (xy 111.7 126.542155) + (xy 111.7 127.04) + (xy 111.015715 127.04) + (xy 111.015715 126.542172) + (xy 111.015714 126.542155) + (xy 111.009313 126.482627) + (xy 111.009311 126.48262) + (xy 110.959069 126.347913) + (xy 110.959065 126.347906) + (xy 110.872905 126.232812) + (xy 110.872902 126.232809) + (xy 110.757808 126.146649) + (xy 110.757801 126.146645) + (xy 110.623094 126.096403) + (xy 110.623087 126.096401) + (xy 110.563559 126.09) + (xy 110.065715 126.09) + (xy 109.565715 126.09) + (xy 109.06787 126.09) + (xy 109.008342 126.096401) + (xy 109.008335 126.096403) + (xy 108.873628 126.146645) + (xy 108.873621 126.146649) + (xy 108.758527 126.232809) + (xy 108.758524 126.232812) + (xy 108.672364 126.347906) + (xy 108.67236 126.347913) + (xy 108.622118 126.48262) + (xy 108.622116 126.482627) + (xy 108.615715 126.542155) + (xy 108.615715 127.04) + (xy 107.93143 127.04) + (xy 107.93143 126.542172) + (xy 107.931429 126.542155) + (xy 107.925028 126.482627) + (xy 107.925026 126.48262) + (xy 107.874784 126.347913) + (xy 107.87478 126.347906) + (xy 107.78862 126.232812) + (xy 107.788617 126.232809) + (xy 107.673523 126.146649) + (xy 107.673516 126.146645) + (xy 107.538809 126.096403) + (xy 107.538802 126.096401) + (xy 107.479274 126.09) + (xy 106.98143 126.09) + (xy 106.48143 126.09) + (xy 105.983585 126.09) + (xy 105.924057 126.096401) + (xy 105.92405 126.096403) + (xy 105.789343 126.146645) + (xy 105.789336 126.146649) + (xy 105.674242 126.232809) + (xy 105.674239 126.232812) + (xy 105.588079 126.347906) + (xy 105.588075 126.347913) + (xy 105.537833 126.48262) + (xy 105.537831 126.482627) + (xy 105.53143 126.542155) + (xy 105.53143 127.04) + (xy 104.847145 127.04) + (xy 104.847145 126.542172) + (xy 104.847144 126.542155) + (xy 104.840743 126.482627) + (xy 104.840741 126.48262) + (xy 104.790499 126.347913) + (xy 104.790495 126.347906) + (xy 104.704335 126.232812) + (xy 104.704332 126.232809) + (xy 104.589238 126.146649) + (xy 104.589231 126.146645) + (xy 104.454524 126.096403) + (xy 104.454517 126.096401) + (xy 104.394989 126.09) + (xy 103.897145 126.09) + (xy 103.397145 126.09) + (xy 102.8993 126.09) + (xy 102.839772 126.096401) + (xy 102.839765 126.096403) + (xy 102.705058 126.146645) + (xy 102.705051 126.146649) + (xy 102.589957 126.232809) + (xy 102.589954 126.232812) + (xy 102.503794 126.347906) + (xy 102.50379 126.347913) + (xy 102.453548 126.48262) + (xy 102.453546 126.482627) + (xy 102.447145 126.542155) + (xy 102.447145 127.04) + (xy 101.76286 127.04) + (xy 101.76286 126.542172) + (xy 101.762859 126.542155) + (xy 101.756458 126.482627) + (xy 101.756456 126.48262) + (xy 101.706214 126.347913) + (xy 101.70621 126.347906) + (xy 101.62005 126.232812) + (xy 101.620047 126.232809) + (xy 101.504953 126.146649) + (xy 101.504946 126.146645) + (xy 101.370239 126.096403) + (xy 101.370232 126.096401) + (xy 101.310704 126.09) + (xy 100.81286 126.09) + (xy 100.31286 126.09) + (xy 99.815015 126.09) + (xy 99.755487 126.096401) + (xy 99.75548 126.096403) + (xy 99.620773 126.146645) + (xy 99.620766 126.146649) + (xy 99.505672 126.232809) + (xy 99.505669 126.232812) + (xy 99.419509 126.347906) + (xy 99.419505 126.347913) + (xy 99.369263 126.48262) + (xy 99.369261 126.482627) + (xy 99.36286 126.542155) + (xy 99.36286 127.04) + (xy 98.678575 127.04) + (xy 98.678575 126.542172) + (xy 98.678574 126.542155) + (xy 98.672173 126.482627) + (xy 98.672171 126.48262) + (xy 98.621929 126.347913) + (xy 98.621925 126.347906) + (xy 98.535765 126.232812) + (xy 98.535762 126.232809) + (xy 98.420668 126.146649) + (xy 98.420661 126.146645) + (xy 98.285954 126.096403) + (xy 98.285947 126.096401) + (xy 98.226419 126.09) + (xy 97.728575 126.09) + (xy 97.228575 126.09) + (xy 96.73073 126.09) + (xy 96.671202 126.096401) + (xy 96.671195 126.096403) + (xy 96.536488 126.146645) + (xy 96.536481 126.146649) + (xy 96.421387 126.232809) + (xy 96.421384 126.232812) + (xy 96.335224 126.347906) + (xy 96.33522 126.347913) + (xy 96.284978 126.48262) + (xy 96.284976 126.482627) + (xy 96.278575 126.542155) + (xy 96.278575 127.04) + (xy 95.59429 127.04) + (xy 95.59429 127.039999) + (xy 95.594289 126.542172) + (xy 95.594289 126.542155) + (xy 95.587888 126.482627) + (xy 95.587886 126.48262) + (xy 95.537644 126.347913) + (xy 95.53764 126.347906) + (xy 95.45148 126.232812) + (xy 95.451477 126.232809) + (xy 95.336383 126.146649) + (xy 95.336376 126.146645) + (xy 95.201669 126.096403) + (xy 95.201662 126.096401) + (xy 95.142134 126.09) + (xy 94.64429 126.09) + (xy 94.14429 126.09) + (xy 93.646445 126.09) + (xy 93.586917 126.096401) + (xy 93.58691 126.096403) + (xy 93.452203 126.146645) + (xy 93.452196 126.146649) + (xy 93.337102 126.232809) + (xy 93.337099 126.232812) + (xy 93.250939 126.347906) + (xy 93.250935 126.347913) + (xy 93.200693 126.48262) + (xy 93.200691 126.482627) + (xy 93.19429 126.542155) + (xy 93.194289 126.542172) + (xy 86.8636 126.542172) + (xy 86.8636 126.468572) + (xy 86.863599 126.468555) + (xy 86.857198 126.409027) + (xy 86.857196 126.40902) + (xy 86.806954 126.274313) + (xy 86.80695 126.274306) + (xy 86.72079 126.159212) + (xy 86.720787 126.159209) + (xy 86.605693 126.073049) + (xy 86.605686 126.073045) + (xy 86.470979 126.022803) + (xy 86.470972 126.022801) + (xy 86.411444 126.0164) + (xy 85.75 126.0164) + (xy 85.75 126.935702) + (xy 85.644592 126.887565) + (xy 85.536334 126.872) + (xy 85.463666 126.872) + (xy 85.355408 126.887565) + (xy 85.25 126.935702) + (xy 85.25 126.0164) + (xy 84.588555 126.0164) + (xy 84.529027 126.022801) + (xy 84.52902 126.022803) + (xy 84.394313 126.073045) + (xy 84.394306 126.073049) + (xy 84.279212 126.159209) + (xy 84.279209 126.159212) + (xy 84.193049 126.274306) + (xy 84.193045 126.274313) + (xy 84.142803 126.40902) + (xy 84.142801 126.409027) + (xy 84.1364 126.468555) + (xy 84.1364 127.13) + (xy 85.056804 127.13) + (xy 85.033155 127.166799) + (xy 84.992 127.306961) + (xy 84.992 127.453039) + (xy 85.033155 127.593201) + (xy 85.056804 127.63) + (xy 84.1364 127.63) + (xy 84.1364 128.291444) + (xy 84.142801 128.350972) + (xy 84.142803 128.350979) + (xy 84.193045 128.485686) + (xy 84.193049 128.485693) + (xy 84.279209 128.600787) + (xy 84.279212 128.60079) + (xy 84.394306 128.68695) + (xy 84.394313 128.686954) + (xy 84.509348 128.729859) + (xy 84.565282 128.77173) + (xy 84.589699 128.837194) + (xy 84.574848 128.905467) + (xy 84.557245 128.930024) + (xy 84.419845 129.079279) + (xy 84.419842 129.079283) + (xy 84.296198 129.268533) + (xy 84.205388 129.47556) + (xy 84.149892 129.69471) + (xy 84.131225 129.919993) + (xy 84.131225 129.920006) + (xy 84.149892 130.145289) + (xy 84.205388 130.364439) + (xy 84.296198 130.571466) + (xy 84.419842 130.760716) + (xy 84.41985 130.760727) + (xy 84.565937 130.919418) + (xy 84.572954 130.92704) + (xy 84.751351 131.065893) + (xy 84.779159 131.080942) + (xy 84.779165 131.080945) + (xy 84.828755 131.130165) + (xy 84.843863 131.198382) + (xy 84.819692 131.263937) + (xy 84.779165 131.299055) + (xy 84.751352 131.314106) + (xy 84.572955 131.452959) + (xy 84.57295 131.452963) + (xy 84.41985 131.619272) + (xy 84.419842 131.619283) + (xy 84.296198 131.808533) + (xy 84.205388 132.01556) + (xy 84.149892 132.23471) + (xy 84.131225 132.459993) + (xy 84.131225 132.460006) + (xy 84.149892 132.685289) + (xy 84.205388 132.904439) + (xy 84.296198 133.111466) + (xy 84.419842 133.300716) + (xy 84.41985 133.300727) + (xy 84.522848 133.412611) + (xy 84.572954 133.46704) + (xy 84.751351 133.605893) + (xy 84.779165 133.620945) + (xy 84.828755 133.670165) + (xy 84.843863 133.738382) + (xy 84.819692 133.803937) + (xy 84.779165 133.839055) + (xy 84.751352 133.854106) + (xy 84.572955 133.992959) + (xy 84.57295 133.992963) + (xy 84.41985 134.159272) + (xy 84.419842 134.159283) + (xy 84.296198 134.348533) + (xy 84.205388 134.55556) + (xy 84.149892 134.77471) + (xy 84.131225 134.999993) + (xy 84.131225 135.000006) + (xy 81 135.000006) + (xy 81 117.620006) + (xy 84.141225 117.620006) + (xy 84.159892 117.845289) + (xy 84.215388 118.064439) + (xy 84.306198 118.271466) + (xy 84.429842 118.460716) + (xy 84.42985 118.460727) + (xy 84.58295 118.627036) + (xy 84.582954 118.62704) + (xy 84.761351 118.765893) + (xy 84.960169 118.873488) + (xy 84.960172 118.873489) + (xy 85.173982 118.94689) + (xy 85.173984 118.94689) + (xy 85.173986 118.946891) + (xy 85.396967 118.9841) + (xy 85.396968 118.9841) + (xy 85.623032 118.9841) + (xy 85.623033 118.9841) + (xy 85.846014 118.946891) + (xy 86.059831 118.873488) + (xy 86.258649 118.765893) + (xy 86.437046 118.62704) + (xy 86.590156 118.460719) + (xy 86.713802 118.271465) + (xy 86.804611 118.064441) + (xy 86.860107 117.845293) + (xy 86.876679 117.645295) + (xy 86.878775 117.620006) + (xy 86.878775 117.619993) + (xy 86.86966 117.51) + (xy 93.194357 117.51) + (xy 93.214884 117.731535) + (xy 93.214885 117.731537) + (xy 93.275769 117.945523) + (xy 93.275775 117.945538) + (xy 93.374938 118.144683) + (xy 93.374943 118.144691) + (xy 93.50902 118.322238) + (xy 93.673437 118.472123) + (xy 93.673439 118.472125) + (xy 93.862595 118.589245) + (xy 93.862596 118.589245) + (xy 93.862599 118.589247) + (xy 94.07006 118.669618) + (xy 94.288757 118.7105) + (xy 94.288759 118.7105) + (xy 94.511241 118.7105) + (xy 94.511243 118.7105) + (xy 94.72994 118.669618) + (xy 94.937401 118.589247) + (xy 95.126562 118.472124) + (xy 95.290981 118.322236) + (xy 95.425058 118.144689) + (xy 95.524229 117.945528) + (xy 95.585115 117.731536) + (xy 95.605643 117.51) + (xy 96.311499 117.51) + (xy 96.332026 117.731535) + (xy 96.332027 117.731537) + (xy 96.392911 117.945523) + (xy 96.392917 117.945538) + (xy 96.49208 118.144683) + (xy 96.492085 118.144691) + (xy 96.626162 118.322238) + (xy 96.790579 118.472123) + (xy 96.790581 118.472125) + (xy 96.979737 118.589245) + (xy 96.979738 118.589245) + (xy 96.979741 118.589247) + (xy 97.187202 118.669618) + (xy 97.405899 118.7105) + (xy 97.405901 118.7105) + (xy 97.628383 118.7105) + (xy 97.628385 118.7105) + (xy 97.847082 118.669618) + (xy 98.054543 118.589247) + (xy 98.243704 118.472124) + (xy 98.408123 118.322236) + (xy 98.5422 118.144689) + (xy 98.641371 117.945528) + (xy 98.702257 117.731536) + (xy 98.722785 117.51) + (xy 99.428641 117.51) + (xy 99.449168 117.731535) + (xy 99.449169 117.731537) + (xy 99.510053 117.945523) + (xy 99.510059 117.945538) + (xy 99.609222 118.144683) + (xy 99.609227 118.144691) + (xy 99.743304 118.322238) + (xy 99.907721 118.472123) + (xy 99.907723 118.472125) + (xy 100.096879 118.589245) + (xy 100.09688 118.589245) + (xy 100.096883 118.589247) + (xy 100.304344 118.669618) + (xy 100.523041 118.7105) + (xy 100.523043 118.7105) + (xy 100.745525 118.7105) + (xy 100.745527 118.7105) + (xy 100.964224 118.669618) + (xy 101.171685 118.589247) + (xy 101.360846 118.472124) + (xy 101.525265 118.322236) + (xy 101.659342 118.144689) + (xy 101.758513 117.945528) + (xy 101.819399 117.731536) + (xy 101.839927 117.51) + (xy 102.545783 117.51) + (xy 102.56631 117.731535) + (xy 102.566311 117.731537) + (xy 102.627195 117.945523) + (xy 102.627201 117.945538) + (xy 102.726364 118.144683) + (xy 102.726369 118.144691) + (xy 102.860446 118.322238) + (xy 103.024863 118.472123) + (xy 103.024865 118.472125) + (xy 103.214021 118.589245) + (xy 103.214022 118.589245) + (xy 103.214025 118.589247) + (xy 103.421486 118.669618) + (xy 103.640183 118.7105) + (xy 103.640185 118.7105) + (xy 103.862667 118.7105) + (xy 103.862669 118.7105) + (xy 104.081366 118.669618) + (xy 104.288827 118.589247) + (xy 104.477988 118.472124) + (xy 104.642407 118.322236) + (xy 104.776484 118.144689) + (xy 104.875655 117.945528) + (xy 104.936541 117.731536) + (xy 104.957069 117.51) + (xy 105.662925 117.51) + (xy 105.683452 117.731535) + (xy 105.683453 117.731537) + (xy 105.744337 117.945523) + (xy 105.744343 117.945538) + (xy 105.843506 118.144683) + (xy 105.843511 118.144691) + (xy 105.977588 118.322238) + (xy 106.142005 118.472123) + (xy 106.142007 118.472125) + (xy 106.331163 118.589245) + (xy 106.331164 118.589245) + (xy 106.331167 118.589247) + (xy 106.538628 118.669618) + (xy 106.757325 118.7105) + (xy 106.757327 118.7105) + (xy 106.979809 118.7105) + (xy 106.979811 118.7105) + (xy 107.198508 118.669618) + (xy 107.405969 118.589247) + (xy 107.59513 118.472124) + (xy 107.759549 118.322236) + (xy 107.893626 118.144689) + (xy 107.992797 117.945528) + (xy 108.053683 117.731536) + (xy 108.074211 117.51) + (xy 108.780067 117.51) + (xy 108.800594 117.731535) + (xy 108.800595 117.731537) + (xy 108.861479 117.945523) + (xy 108.861485 117.945538) + (xy 108.960648 118.144683) + (xy 108.960653 118.144691) + (xy 109.09473 118.322238) + (xy 109.259147 118.472123) + (xy 109.259149 118.472125) + (xy 109.448305 118.589245) + (xy 109.448306 118.589245) + (xy 109.448309 118.589247) + (xy 109.65577 118.669618) + (xy 109.874467 118.7105) + (xy 109.874469 118.7105) + (xy 110.096951 118.7105) + (xy 110.096953 118.7105) + (xy 110.31565 118.669618) + (xy 110.523111 118.589247) + (xy 110.712272 118.472124) + (xy 110.876691 118.322236) + (xy 111.010768 118.144689) + (xy 111.109939 117.945528) + (xy 111.170825 117.731536) + (xy 111.191353 117.51) + (xy 111.897209 117.51) + (xy 111.917736 117.731535) + (xy 111.917737 117.731537) + (xy 111.978621 117.945523) + (xy 111.978627 117.945538) + (xy 112.07779 118.144683) + (xy 112.077795 118.144691) + (xy 112.211872 118.322238) + (xy 112.376289 118.472123) + (xy 112.376291 118.472125) + (xy 112.565447 118.589245) + (xy 112.565448 118.589245) + (xy 112.565451 118.589247) + (xy 112.772912 118.669618) + (xy 112.991609 118.7105) + (xy 112.991611 118.7105) + (xy 113.214093 118.7105) + (xy 113.214095 118.7105) + (xy 113.432792 118.669618) + (xy 113.640253 118.589247) + (xy 113.829414 118.472124) + (xy 113.993833 118.322236) + (xy 114.12791 118.144689) + (xy 114.227081 117.945528) + (xy 114.287967 117.731536) + (xy 114.308495 117.51) + (xy 115.014357 117.51) + (xy 115.034884 117.731535) + (xy 115.034885 117.731537) + (xy 115.095769 117.945523) + (xy 115.095775 117.945538) + (xy 115.194938 118.144683) + (xy 115.194943 118.144691) + (xy 115.32902 118.322238) + (xy 115.493437 118.472123) + (xy 115.493439 118.472125) + (xy 115.682595 118.589245) + (xy 115.682596 118.589245) + (xy 115.682599 118.589247) + (xy 115.89006 118.669618) + (xy 116.108757 118.7105) + (xy 116.108759 118.7105) + (xy 116.331241 118.7105) + (xy 116.331243 118.7105) + (xy 116.54994 118.669618) + (xy 116.757401 118.589247) + (xy 116.946562 118.472124) + (xy 117.110981 118.322236) + (xy 117.245058 118.144689) + (xy 117.344229 117.945528) + (xy 117.405115 117.731536) + (xy 117.41545 117.620006) + (xy 124.541225 117.620006) + (xy 124.559892 117.845289) + (xy 124.615388 118.064439) + (xy 124.706198 118.271466) + (xy 124.829842 118.460716) + (xy 124.82985 118.460727) + (xy 124.98295 118.627036) + (xy 124.982954 118.62704) + (xy 125.161351 118.765893) + (xy 125.360169 118.873488) + (xy 125.360172 118.873489) + (xy 125.573982 118.94689) + (xy 125.573984 118.94689) + (xy 125.573986 118.946891) + (xy 125.796967 118.9841) + (xy 125.796968 118.9841) + (xy 126.023032 118.9841) + (xy 126.023033 118.9841) + (xy 126.246014 118.946891) + (xy 126.459831 118.873488) + (xy 126.658649 118.765893) + (xy 126.837046 118.62704) + (xy 126.990156 118.460719) + (xy 127.113802 118.271465) + (xy 127.204611 118.064441) + (xy 127.260107 117.845293) + (xy 127.278775 117.62) + (xy 127.260107 117.394707) + (xy 127.204611 117.175559) + (xy 127.113802 116.968535) + (xy 127.102071 116.95058) + (xy 126.990157 116.779283) + (xy 126.990149 116.779272) + (xy 126.837049 116.612963) + (xy 126.837048 116.612962) + (xy 126.837046 116.61296) + (xy 126.658649 116.474107) + (xy 126.658647 116.474106) + (xy 126.658646 116.474105) + (xy 126.658639 116.4741) + (xy 126.630836 116.459055) + (xy 126.581244 116.409837) + (xy 126.566135 116.34162) + (xy 126.590306 116.276064) + (xy 126.630836 116.240945) + (xy 126.658639 116.225899) + (xy 126.658642 116.225896) + (xy 126.658649 116.225893) + (xy 126.837046 116.08704) + (xy 126.990156 115.920719) + (xy 127.113802 115.731465) + (xy 127.204611 115.524441) + (xy 127.260107 115.305293) + (xy 127.278775 115.08) + (xy 127.260107 114.854707) + (xy 127.204611 114.635559) + (xy 127.113802 114.428535) + (xy 126.990156 114.239281) + (xy 126.990153 114.239278) + (xy 126.990149 114.239272) + (xy 126.837049 114.072963) + (xy 126.837048 114.072962) + (xy 126.837046 114.07296) + (xy 126.658649 113.934107) + (xy 126.658647 113.934106) + (xy 126.658646 113.934105) + (xy 126.658639 113.9341) + (xy 126.630836 113.919055) + (xy 126.581244 113.869837) + (xy 126.566135 113.80162) + (xy 126.590306 113.736064) + (xy 126.630836 113.700945) + (xy 126.658639 113.685899) + (xy 126.658642 113.685896) + (xy 126.658649 113.685893) + (xy 126.837046 113.54704) + (xy 126.957815 113.415851) + (xy 126.990149 113.380727) + (xy 126.99015 113.380725) + (xy 126.990156 113.380719) + (xy 127.113802 113.191465) + (xy 127.204611 112.984441) + (xy 127.260107 112.765293) + (xy 127.278775 112.54) + (xy 127.260107 112.314707) + (xy 127.204611 112.095559) + (xy 127.113802 111.888535) + (xy 126.990156 111.699281) + (xy 126.990153 111.699278) + (xy 126.990149 111.699272) + (xy 126.837049 111.532963) + (xy 126.837048 111.532962) + (xy 126.837046 111.53296) + (xy 126.658649 111.394107) + (xy 126.658647 111.394106) + (xy 126.658646 111.394105) + (xy 126.658639 111.3941) + (xy 126.630836 111.379055) + (xy 126.581244 111.329837) + (xy 126.566135 111.26162) + (xy 126.590306 111.196064) + (xy 126.630836 111.160945) + (xy 126.658639 111.145899) + (xy 126.658642 111.145896) + (xy 126.658649 111.145893) + (xy 126.837046 111.00704) + (xy 126.936832 110.898643) + (xy 126.990149 110.840727) + (xy 126.99015 110.840725) + (xy 126.990156 110.840719) + (xy 127.113802 110.651465) + (xy 127.204611 110.444441) + (xy 127.260107 110.225293) + (xy 127.278775 110) + (xy 127.260107 109.774707) + (xy 127.204611 109.555559) + (xy 127.113802 109.348535) + (xy 126.990156 109.159281) + (xy 126.990153 109.159278) + (xy 126.990149 109.159272) + (xy 126.837045 108.992959) + (xy 126.779161 108.947906) + (xy 126.658649 108.854107) + (xy 126.613957 108.829921) + (xy 126.459832 108.746512) + (xy 126.459827 108.74651) + (xy 126.246017 108.673109) + (xy 126.064388 108.642801) + (xy 126.023033 108.6359) + (xy 125.796967 108.6359) + (xy 125.755612 108.642801) + (xy 125.573982 108.673109) + (xy 125.360172 108.74651) + (xy 125.360167 108.746512) + (xy 125.161352 108.854106) + (xy 124.982955 108.992959) + (xy 124.82985 109.159272) + (xy 124.829842 109.159283) + (xy 124.706198 109.348533) + (xy 124.615388 109.55556) + (xy 124.559892 109.77471) + (xy 124.541225 109.999993) + (xy 124.541225 110.000006) + (xy 124.559892 110.225289) + (xy 124.615388 110.444439) + (xy 124.706198 110.651466) + (xy 124.829842 110.840716) + (xy 124.82985 110.840727) + (xy 124.98295 111.007036) + (xy 124.982954 111.00704) + (xy 125.161351 111.145893) + (xy 125.189165 111.160945) + (xy 125.238755 111.210165) + (xy 125.253863 111.278382) + (xy 125.229692 111.343937) + (xy 125.189165 111.379055) + (xy 125.161352 111.394106) + (xy 124.982955 111.532959) + (xy 124.98295 111.532963) + (xy 124.82985 111.699272) + (xy 124.829842 111.699283) + (xy 124.706198 111.888533) + (xy 124.615388 112.09556) + (xy 124.559892 112.31471) + (xy 124.541225 112.539993) + (xy 124.541225 112.540006) + (xy 124.559892 112.765289) + (xy 124.615388 112.984439) + (xy 124.706198 113.191466) + (xy 124.829842 113.380716) + (xy 124.82985 113.380727) + (xy 124.98295 113.547036) + (xy 124.982954 113.54704) + (xy 125.161351 113.685893) + (xy 125.189159 113.700942) + (xy 125.189165 113.700945) + (xy 125.238755 113.750165) + (xy 125.253863 113.818382) + (xy 125.229692 113.883937) + (xy 125.189165 113.919055) + (xy 125.161352 113.934106) + (xy 124.982955 114.072959) + (xy 124.98295 114.072963) + (xy 124.82985 114.239272) + (xy 124.829842 114.239283) + (xy 124.706198 114.428533) + (xy 124.615388 114.63556) + (xy 124.559892 114.85471) + (xy 124.541225 115.079993) + (xy 124.541225 115.080006) + (xy 124.559892 115.305289) + (xy 124.615388 115.524439) + (xy 124.706198 115.731466) + (xy 124.829842 115.920716) + (xy 124.82985 115.920727) + (xy 124.98295 116.087036) + (xy 124.982954 116.08704) + (xy 125.161351 116.225893) + (xy 125.189159 116.240942) + (xy 125.189165 116.240945) + (xy 125.238755 116.290165) + (xy 125.253863 116.358382) + (xy 125.229692 116.423937) + (xy 125.189165 116.459055) + (xy 125.161352 116.474106) + (xy 124.982955 116.612959) + (xy 124.98295 116.612963) + (xy 124.82985 116.779272) + (xy 124.829842 116.779283) + (xy 124.706198 116.968533) + (xy 124.615388 117.17556) + (xy 124.559892 117.39471) + (xy 124.541225 117.619993) + (xy 124.541225 117.620006) + (xy 117.41545 117.620006) + (xy 117.425643 117.51) + (xy 117.405115 117.288464) + (xy 117.344229 117.074472) + (xy 117.344224 117.074461) + (xy 117.245061 116.875316) + (xy 117.245056 116.875308) + (xy 117.110979 116.697761) + (xy 116.946562 116.547876) + (xy 116.94656 116.547874) + (xy 116.757404 116.430754) + (xy 116.757398 116.430752) + (xy 116.54994 116.350382) + (xy 116.331243 116.3095) + (xy 116.108757 116.3095) + (xy 115.89006 116.350382) + (xy 115.848424 116.366512) + (xy 115.682601 116.430752) + (xy 115.682595 116.430754) + (xy 115.493439 116.547874) + (xy 115.493437 116.547876) + (xy 115.32902 116.697761) + (xy 115.194943 116.875308) + (xy 115.194938 116.875316) + (xy 115.095775 117.074461) + (xy 115.095769 117.074476) + (xy 115.034885 117.288462) + (xy 115.034884 117.288464) + (xy 115.014357 117.509999) + (xy 115.014357 117.51) + (xy 114.308495 117.51) + (xy 114.287967 117.288464) + (xy 114.227081 117.074472) + (xy 114.227076 117.074461) + (xy 114.127913 116.875316) + (xy 114.127908 116.875308) + (xy 113.993831 116.697761) + (xy 113.829414 116.547876) + (xy 113.829412 116.547874) + (xy 113.640256 116.430754) + (xy 113.64025 116.430752) + (xy 113.432792 116.350382) + (xy 113.214095 116.3095) + (xy 112.991609 116.3095) + (xy 112.772912 116.350382) + (xy 112.731276 116.366512) + (xy 112.565453 116.430752) + (xy 112.565447 116.430754) + (xy 112.376291 116.547874) + (xy 112.376289 116.547876) + (xy 112.211872 116.697761) + (xy 112.077795 116.875308) + (xy 112.07779 116.875316) + (xy 111.978627 117.074461) + (xy 111.978621 117.074476) + (xy 111.917737 117.288462) + (xy 111.917736 117.288464) + (xy 111.897209 117.509999) + (xy 111.897209 117.51) + (xy 111.191353 117.51) + (xy 111.170825 117.288464) + (xy 111.109939 117.074472) + (xy 111.109934 117.074461) + (xy 111.010771 116.875316) + (xy 111.010766 116.875308) + (xy 110.876689 116.697761) + (xy 110.712272 116.547876) + (xy 110.71227 116.547874) + (xy 110.523114 116.430754) + (xy 110.523108 116.430752) + (xy 110.31565 116.350382) + (xy 110.096953 116.3095) + (xy 109.874467 116.3095) + (xy 109.65577 116.350382) + (xy 109.614134 116.366512) + (xy 109.448311 116.430752) + (xy 109.448305 116.430754) + (xy 109.259149 116.547874) + (xy 109.259147 116.547876) + (xy 109.09473 116.697761) + (xy 108.960653 116.875308) + (xy 108.960648 116.875316) + (xy 108.861485 117.074461) + (xy 108.861479 117.074476) + (xy 108.800595 117.288462) + (xy 108.800594 117.288464) + (xy 108.780067 117.509999) + (xy 108.780067 117.51) + (xy 108.074211 117.51) + (xy 108.053683 117.288464) + (xy 107.992797 117.074472) + (xy 107.992792 117.074461) + (xy 107.893629 116.875316) + (xy 107.893624 116.875308) + (xy 107.759547 116.697761) + (xy 107.59513 116.547876) + (xy 107.595128 116.547874) + (xy 107.405972 116.430754) + (xy 107.405966 116.430752) + (xy 107.198508 116.350382) + (xy 106.979811 116.3095) + (xy 106.757325 116.3095) + (xy 106.538628 116.350382) + (xy 106.496992 116.366512) + (xy 106.331169 116.430752) + (xy 106.331163 116.430754) + (xy 106.142007 116.547874) + (xy 106.142005 116.547876) + (xy 105.977588 116.697761) + (xy 105.843511 116.875308) + (xy 105.843506 116.875316) + (xy 105.744343 117.074461) + (xy 105.744337 117.074476) + (xy 105.683453 117.288462) + (xy 105.683452 117.288464) + (xy 105.662925 117.509999) + (xy 105.662925 117.51) + (xy 104.957069 117.51) + (xy 104.936541 117.288464) + (xy 104.875655 117.074472) + (xy 104.87565 117.074461) + (xy 104.776487 116.875316) + (xy 104.776482 116.875308) + (xy 104.642405 116.697761) + (xy 104.477988 116.547876) + (xy 104.477986 116.547874) + (xy 104.28883 116.430754) + (xy 104.288824 116.430752) + (xy 104.081366 116.350382) + (xy 103.862669 116.3095) + (xy 103.640183 116.3095) + (xy 103.421486 116.350382) + (xy 103.37985 116.366512) + (xy 103.214027 116.430752) + (xy 103.214021 116.430754) + (xy 103.024865 116.547874) + (xy 103.024863 116.547876) + (xy 102.860446 116.697761) + (xy 102.726369 116.875308) + (xy 102.726364 116.875316) + (xy 102.627201 117.074461) + (xy 102.627195 117.074476) + (xy 102.566311 117.288462) + (xy 102.56631 117.288464) + (xy 102.545783 117.509999) + (xy 102.545783 117.51) + (xy 101.839927 117.51) + (xy 101.819399 117.288464) + (xy 101.758513 117.074472) + (xy 101.758508 117.074461) + (xy 101.659345 116.875316) + (xy 101.65934 116.875308) + (xy 101.525263 116.697761) + (xy 101.360846 116.547876) + (xy 101.360844 116.547874) + (xy 101.171688 116.430754) + (xy 101.171682 116.430752) + (xy 100.964224 116.350382) + (xy 100.745527 116.3095) + (xy 100.523041 116.3095) + (xy 100.304344 116.350382) + (xy 100.262708 116.366512) + (xy 100.096885 116.430752) + (xy 100.096879 116.430754) + (xy 99.907723 116.547874) + (xy 99.907721 116.547876) + (xy 99.743304 116.697761) + (xy 99.609227 116.875308) + (xy 99.609222 116.875316) + (xy 99.510059 117.074461) + (xy 99.510053 117.074476) + (xy 99.449169 117.288462) + (xy 99.449168 117.288464) + (xy 99.428641 117.509999) + (xy 99.428641 117.51) + (xy 98.722785 117.51) + (xy 98.702257 117.288464) + (xy 98.641371 117.074472) + (xy 98.641366 117.074461) + (xy 98.542203 116.875316) + (xy 98.542198 116.875308) + (xy 98.408121 116.697761) + (xy 98.243704 116.547876) + (xy 98.243702 116.547874) + (xy 98.054546 116.430754) + (xy 98.05454 116.430752) + (xy 97.847082 116.350382) + (xy 97.628385 116.3095) + (xy 97.405899 116.3095) + (xy 97.187202 116.350382) + (xy 97.145566 116.366512) + (xy 96.979743 116.430752) + (xy 96.979737 116.430754) + (xy 96.790581 116.547874) + (xy 96.790579 116.547876) + (xy 96.626162 116.697761) + (xy 96.492085 116.875308) + (xy 96.49208 116.875316) + (xy 96.392917 117.074461) + (xy 96.392911 117.074476) + (xy 96.332027 117.288462) + (xy 96.332026 117.288464) + (xy 96.311499 117.509999) + (xy 96.311499 117.51) + (xy 95.605643 117.51) + (xy 95.585115 117.288464) + (xy 95.524229 117.074472) + (xy 95.524224 117.074461) + (xy 95.425061 116.875316) + (xy 95.425056 116.875308) + (xy 95.290979 116.697761) + (xy 95.126562 116.547876) + (xy 95.12656 116.547874) + (xy 94.937404 116.430754) + (xy 94.937398 116.430752) + (xy 94.72994 116.350382) + (xy 94.511243 116.3095) + (xy 94.288757 116.3095) + (xy 94.07006 116.350382) + (xy 94.028424 116.366512) + (xy 93.862601 116.430752) + (xy 93.862595 116.430754) + (xy 93.673439 116.547874) + (xy 93.673437 116.547876) + (xy 93.50902 116.697761) + (xy 93.374943 116.875308) + (xy 93.374938 116.875316) + (xy 93.275775 117.074461) + (xy 93.275769 117.074476) + (xy 93.214885 117.288462) + (xy 93.214884 117.288464) + (xy 93.194357 117.509999) + (xy 93.194357 117.51) + (xy 86.86966 117.51) + (xy 86.860107 117.39471) + (xy 86.860107 117.394707) + (xy 86.804611 117.175559) + (xy 86.713802 116.968535) + (xy 86.702071 116.95058) + (xy 86.590157 116.779283) + (xy 86.590149 116.779272) + (xy 86.437049 116.612963) + (xy 86.437048 116.612962) + (xy 86.437046 116.61296) + (xy 86.258649 116.474107) + (xy 86.258647 116.474106) + (xy 86.258646 116.474105) + (xy 86.258643 116.474103) + (xy 86.230833 116.459053) + (xy 86.181243 116.409833) + (xy 86.166136 116.341616) + (xy 86.190307 116.276061) + (xy 86.230835 116.240945) + (xy 86.258649 116.225893) + (xy 86.437046 116.08704) + (xy 86.590156 115.920719) + (xy 86.713802 115.731465) + (xy 86.804611 115.524441) + (xy 86.860107 115.305293) + (xy 86.872156 115.159878) + (xy 86.878775 115.080006) + (xy 86.878775 115.079993) + (xy 86.861358 114.869804) + (xy 86.860107 114.854707) + (xy 86.804611 114.635559) + (xy 86.713802 114.428535) + (xy 86.590156 114.239281) + (xy 86.590153 114.239278) + (xy 86.590149 114.239272) + (xy 86.437049 114.072963) + (xy 86.437048 114.072962) + (xy 86.437046 114.07296) + (xy 86.258649 113.934107) + (xy 86.258647 113.934106) + (xy 86.258646 113.934105) + (xy 86.258643 113.934103) + (xy 86.230833 113.919053) + (xy 86.181243 113.869833) + (xy 86.166136 113.801616) + (xy 86.190307 113.736061) + (xy 86.230835 113.700945) + (xy 86.258649 113.685893) + (xy 86.437046 113.54704) + (xy 86.557815 113.415851) + (xy 86.590149 113.380727) + (xy 86.59015 113.380725) + (xy 86.590156 113.380719) + (xy 86.713802 113.191465) + (xy 86.804611 112.984441) + (xy 86.860107 112.765293) + (xy 86.876633 112.565851) + (xy 86.878775 112.540006) + (xy 86.878775 112.539993) + (xy 86.862202 112.339993) + (xy 86.860107 112.314707) + (xy 86.804611 112.095559) + (xy 86.713802 111.888535) + (xy 86.590156 111.699281) + (xy 86.590153 111.699278) + (xy 86.590149 111.699272) + (xy 86.452755 111.550024) + (xy 86.421832 111.48737) + (xy 86.429692 111.417944) + (xy 86.473839 111.363788) + (xy 86.500652 111.349859) + (xy 86.615684 111.306955) + (xy 86.615693 111.30695) + (xy 86.730787 111.22079) + (xy 86.73079 111.220787) + (xy 86.81695 111.105693) + (xy 86.816954 111.105686) + (xy 86.867196 110.970979) + (xy 86.867198 110.970972) + (xy 86.873599 110.911444) + (xy 86.8736 110.911427) + (xy 86.8736 110.25) + (xy 85.953196 110.25) + (xy 85.976845 110.213201) + (xy 85.998339 110.14) + (xy 93.2 110.14) + (xy 93.2 110.637844) + (xy 93.206401 110.697372) + (xy 93.206403 110.697379) + (xy 93.256645 110.832086) + (xy 93.256649 110.832093) + (xy 93.342809 110.947187) + (xy 93.342812 110.94719) + (xy 93.457906 111.03335) + (xy 93.457913 111.033354) + (xy 93.59262 111.083596) + (xy 93.592627 111.083598) + (xy 93.652155 111.089999) + (xy 93.652172 111.09) + (xy 94.15 111.09) + (xy 94.15 110.14) + (xy 93.2 110.14) + (xy 85.998339 110.14) + (xy 86.018 110.073039) + (xy 86.018 109.926961) + (xy 86.015751 109.919302) + (xy 94.046372 109.919302) + (xy 94.075047 110.032538) + (xy 94.138936 110.130327) + (xy 94.231115 110.202072) + (xy 94.341595 110.24) + (xy 94.429005 110.24) + (xy 94.515216 110.225614) + (xy 94.617947 110.170019) + (xy 94.645581 110.14) + (xy 94.65 110.14) + (xy 94.65 111.09) + (xy 95.147828 111.09) + (xy 95.147844 111.089999) + (xy 95.207372 111.083598) + (xy 95.207379 111.083596) + (xy 95.342086 111.033354) + (xy 95.342093 111.03335) + (xy 95.457187 110.94719) + (xy 95.45719 110.947187) + (xy 95.54335 110.832093) + (xy 95.543354 110.832086) + (xy 95.593596 110.697379) + (xy 95.593598 110.697372) + (xy 95.599999 110.637844) + (xy 95.6 110.637827) + (xy 95.6 110.14) + (xy 96.317142 110.14) + (xy 96.317142 110.637844) + (xy 96.323543 110.697372) + (xy 96.323545 110.697379) + (xy 96.373787 110.832086) + (xy 96.373791 110.832093) + (xy 96.459951 110.947187) + (xy 96.459954 110.94719) + (xy 96.575048 111.03335) + (xy 96.575055 111.033354) + (xy 96.709762 111.083596) + (xy 96.709769 111.083598) + (xy 96.769297 111.089999) + (xy 96.769314 111.09) + (xy 97.267142 111.09) + (xy 97.267142 110.14) + (xy 96.317142 110.14) + (xy 95.6 110.14) + (xy 94.65 110.14) + (xy 94.645581 110.14) + (xy 94.69706 110.084079) + (xy 94.743982 109.977108) + (xy 94.748772 109.919302) + (xy 97.163514 109.919302) + (xy 97.192189 110.032538) + (xy 97.256078 110.130327) + (xy 97.348257 110.202072) + (xy 97.458737 110.24) + (xy 97.546147 110.24) + (xy 97.632358 110.225614) + (xy 97.735089 110.170019) + (xy 97.762723 110.14) + (xy 97.767142 110.14) + (xy 97.767142 111.09) + (xy 98.26497 111.09) + (xy 98.264986 111.089999) + (xy 98.324514 111.083598) + (xy 98.324521 111.083596) + (xy 98.459228 111.033354) + (xy 98.459235 111.03335) + (xy 98.574329 110.94719) + (xy 98.574332 110.947187) + (xy 98.660492 110.832093) + (xy 98.660496 110.832086) + (xy 98.710738 110.697379) + (xy 98.71074 110.697372) + (xy 98.717141 110.637844) + (xy 98.717142 110.637827) + (xy 98.717142 110.14) + (xy 99.434284 110.14) + (xy 99.434284 110.637844) + (xy 99.440685 110.697372) + (xy 99.440687 110.697379) + (xy 99.490929 110.832086) + (xy 99.490933 110.832093) + (xy 99.577093 110.947187) + (xy 99.577096 110.94719) + (xy 99.69219 111.03335) + (xy 99.692197 111.033354) + (xy 99.826904 111.083596) + (xy 99.826911 111.083598) + (xy 99.886439 111.089999) + (xy 99.886456 111.09) + (xy 100.384284 111.09) + (xy 100.384284 110.14) + (xy 99.434284 110.14) + (xy 98.717142 110.14) + (xy 97.767142 110.14) + (xy 97.762723 110.14) + (xy 97.814202 110.084079) + (xy 97.861124 109.977108) + (xy 97.865914 109.919302) + (xy 100.280656 109.919302) + (xy 100.309331 110.032538) + (xy 100.37322 110.130327) + (xy 100.465399 110.202072) + (xy 100.575879 110.24) + (xy 100.663289 110.24) + (xy 100.7495 110.225614) + (xy 100.852231 110.170019) + (xy 100.879865 110.14) + (xy 100.884284 110.14) + (xy 100.884284 111.09) + (xy 101.382112 111.09) + (xy 101.382128 111.089999) + (xy 101.441656 111.083598) + (xy 101.441663 111.083596) + (xy 101.57637 111.033354) + (xy 101.576377 111.03335) + (xy 101.691471 110.94719) + (xy 101.691474 110.947187) + (xy 101.777634 110.832093) + (xy 101.777638 110.832086) + (xy 101.82788 110.697379) + (xy 101.827882 110.697372) + (xy 101.834283 110.637844) + (xy 101.834284 110.637827) + (xy 102.551425 110.637827) + (xy 102.551426 110.637844) + (xy 102.557827 110.697372) + (xy 102.557829 110.697379) + (xy 102.608071 110.832086) + (xy 102.608075 110.832093) + (xy 102.694235 110.947187) + (xy 102.694238 110.94719) + (xy 102.809332 111.03335) + (xy 102.809339 111.033354) + (xy 102.944046 111.083596) + (xy 102.944053 111.083598) + (xy 103.003581 111.089999) + (xy 103.003598 111.09) + (xy 103.501426 111.09) + (xy 103.501426 110.14) + (xy 102.551426 110.14) + (xy 102.551425 110.637827) + (xy 101.834284 110.637827) + (xy 101.834284 110.14) + (xy 100.884284 110.14) + (xy 100.879865 110.14) + (xy 100.931344 110.084079) + (xy 100.978266 109.977108) + (xy 100.983056 109.919302) + (xy 103.397798 109.919302) + (xy 103.426473 110.032538) + (xy 103.490362 110.130327) + (xy 103.582541 110.202072) + (xy 103.693021 110.24) + (xy 103.780431 110.24) + (xy 103.866642 110.225614) + (xy 103.969373 110.170019) + (xy 103.997007 110.14) + (xy 104.001426 110.14) + (xy 104.001426 111.09) + (xy 104.499254 111.09) + (xy 104.49927 111.089999) + (xy 104.558798 111.083598) + (xy 104.558805 111.083596) + (xy 104.693512 111.033354) + (xy 104.693519 111.03335) + (xy 104.808613 110.94719) + (xy 104.808616 110.947187) + (xy 104.894776 110.832093) + (xy 104.89478 110.832086) + (xy 104.945022 110.697379) + (xy 104.945024 110.697372) + (xy 104.951425 110.637844) + (xy 104.951425 110.637827) + (xy 104.951426 110.14) + (xy 105.668568 110.14) + (xy 105.668568 110.637844) + (xy 105.674969 110.697372) + (xy 105.674971 110.697379) + (xy 105.725213 110.832086) + (xy 105.725217 110.832093) + (xy 105.811377 110.947187) + (xy 105.81138 110.94719) + (xy 105.926474 111.03335) + (xy 105.926481 111.033354) + (xy 106.061188 111.083596) + (xy 106.061195 111.083598) + (xy 106.120723 111.089999) + (xy 106.12074 111.09) + (xy 106.618568 111.09) + (xy 106.618568 110.14) + (xy 105.668568 110.14) + (xy 104.951426 110.14) + (xy 104.001426 110.14) + (xy 103.997007 110.14) + (xy 104.048486 110.084079) + (xy 104.095408 109.977108) + (xy 104.100198 109.919302) + (xy 106.51494 109.919302) + (xy 106.543615 110.032538) + (xy 106.607504 110.130327) + (xy 106.699683 110.202072) + (xy 106.810163 110.24) + (xy 106.897573 110.24) + (xy 106.983784 110.225614) + (xy 107.086515 110.170019) + (xy 107.114149 110.14) + (xy 107.118568 110.14) + (xy 107.118568 111.09) + (xy 107.616396 111.09) + (xy 107.616412 111.089999) + (xy 107.67594 111.083598) + (xy 107.675947 111.083596) + (xy 107.810654 111.033354) + (xy 107.810661 111.03335) + (xy 107.925755 110.94719) + (xy 107.925758 110.947187) + (xy 108.011918 110.832093) + (xy 108.011922 110.832086) + (xy 108.062164 110.697379) + (xy 108.062166 110.697372) + (xy 108.068567 110.637844) + (xy 108.068568 110.637827) + (xy 108.068568 110.14) + (xy 108.78571 110.14) + (xy 108.78571 110.637844) + (xy 108.792111 110.697372) + (xy 108.792113 110.697379) + (xy 108.842355 110.832086) + (xy 108.842359 110.832093) + (xy 108.928519 110.947187) + (xy 108.928522 110.94719) + (xy 109.043616 111.03335) + (xy 109.043623 111.033354) + (xy 109.17833 111.083596) + (xy 109.178337 111.083598) + (xy 109.237865 111.089999) + (xy 109.237882 111.09) + (xy 109.73571 111.09) + (xy 109.73571 110.14) + (xy 108.78571 110.14) + (xy 108.068568 110.14) + (xy 107.118568 110.14) + (xy 107.114149 110.14) + (xy 107.165628 110.084079) + (xy 107.21255 109.977108) + (xy 107.21734 109.919302) + (xy 109.632082 109.919302) + (xy 109.660757 110.032538) + (xy 109.724646 110.130327) + (xy 109.816825 110.202072) + (xy 109.927305 110.24) + (xy 110.014715 110.24) + (xy 110.100926 110.225614) + (xy 110.203657 110.170019) + (xy 110.231291 110.14) + (xy 110.23571 110.14) + (xy 110.23571 111.09) + (xy 110.733538 111.09) + (xy 110.733554 111.089999) + (xy 110.793082 111.083598) + (xy 110.793089 111.083596) + (xy 110.927796 111.033354) + (xy 110.927803 111.03335) + (xy 111.042897 110.94719) + (xy 111.0429 110.947187) + (xy 111.12906 110.832093) + (xy 111.129064 110.832086) + (xy 111.179306 110.697379) + (xy 111.179308 110.697372) + (xy 111.185709 110.637844) + (xy 111.18571 110.637827) + (xy 111.18571 110.14) + (xy 111.902852 110.14) + (xy 111.902852 110.637844) + (xy 111.909253 110.697372) + (xy 111.909255 110.697379) + (xy 111.959497 110.832086) + (xy 111.959501 110.832093) + (xy 112.045661 110.947187) + (xy 112.045664 110.94719) + (xy 112.160758 111.03335) + (xy 112.160765 111.033354) + (xy 112.295472 111.083596) + (xy 112.295479 111.083598) + (xy 112.355007 111.089999) + (xy 112.355024 111.09) + (xy 112.852852 111.09) + (xy 112.852852 110.14) + (xy 111.902852 110.14) + (xy 111.18571 110.14) + (xy 110.23571 110.14) + (xy 110.231291 110.14) + (xy 110.28277 110.084079) + (xy 110.329692 109.977108) + (xy 110.334482 109.919302) + (xy 112.749224 109.919302) + (xy 112.777899 110.032538) + (xy 112.841788 110.130327) + (xy 112.933967 110.202072) + (xy 113.044447 110.24) + (xy 113.131857 110.24) + (xy 113.218068 110.225614) + (xy 113.320799 110.170019) + (xy 113.348433 110.14) + (xy 113.352852 110.14) + (xy 113.352852 111.09) + (xy 113.85068 111.09) + (xy 113.850696 111.089999) + (xy 113.910224 111.083598) + (xy 113.910231 111.083596) + (xy 114.044938 111.033354) + (xy 114.044945 111.03335) + (xy 114.160039 110.94719) + (xy 114.160042 110.947187) + (xy 114.246202 110.832093) + (xy 114.246206 110.832086) + (xy 114.296448 110.697379) + (xy 114.29645 110.697372) + (xy 114.302851 110.637844) + (xy 114.302852 110.637827) + (xy 114.302852 110.14) + (xy 115.02 110.14) + (xy 115.02 110.637844) + (xy 115.026401 110.697372) + (xy 115.026403 110.697379) + (xy 115.076645 110.832086) + (xy 115.076649 110.832093) + (xy 115.162809 110.947187) + (xy 115.162812 110.94719) + (xy 115.277906 111.03335) + (xy 115.277913 111.033354) + (xy 115.41262 111.083596) + (xy 115.412627 111.083598) + (xy 115.472155 111.089999) + (xy 115.472172 111.09) + (xy 115.97 111.09) + (xy 115.97 110.14) + (xy 115.02 110.14) + (xy 114.302852 110.14) + (xy 113.352852 110.14) + (xy 113.348433 110.14) + (xy 113.399912 110.084079) + (xy 113.446834 109.977108) + (xy 113.451624 109.919302) + (xy 115.866372 109.919302) + (xy 115.895047 110.032538) + (xy 115.958936 110.130327) + (xy 116.051115 110.202072) + (xy 116.161595 110.24) + (xy 116.249005 110.24) + (xy 116.335216 110.225614) + (xy 116.437947 110.170019) + (xy 116.465581 110.14) + (xy 116.47 110.14) + (xy 116.47 111.09) + (xy 116.967828 111.09) + (xy 116.967844 111.089999) + (xy 117.027372 111.083598) + (xy 117.027379 111.083596) + (xy 117.162086 111.033354) + (xy 117.162093 111.03335) + (xy 117.277187 110.94719) + (xy 117.27719 110.947187) + (xy 117.36335 110.832093) + (xy 117.363354 110.832086) + (xy 117.413596 110.697379) + (xy 117.413598 110.697372) + (xy 117.419999 110.637844) + (xy 117.42 110.637827) + (xy 117.42 110.14) + (xy 116.47 110.14) + (xy 116.465581 110.14) + (xy 116.51706 110.084079) + (xy 116.563982 109.977108) + (xy 116.573628 109.860698) + (xy 116.544953 109.747462) + (xy 116.481064 109.649673) + (xy 116.388885 109.577928) + (xy 116.278405 109.54) + (xy 116.190995 109.54) + (xy 116.104784 109.554386) + (xy 116.002053 109.609981) + (xy 115.92294 109.695921) + (xy 115.876018 109.802892) + (xy 115.866372 109.919302) + (xy 113.451624 109.919302) + (xy 113.45648 109.860698) + (xy 113.427805 109.747462) + (xy 113.363916 109.649673) + (xy 113.271737 109.577928) + (xy 113.161257 109.54) + (xy 113.073847 109.54) + (xy 112.987636 109.554386) + (xy 112.884905 109.609981) + (xy 112.805792 109.695921) + (xy 112.75887 109.802892) + (xy 112.749224 109.919302) + (xy 110.334482 109.919302) + (xy 110.339338 109.860698) + (xy 110.310663 109.747462) + (xy 110.246774 109.649673) + (xy 110.154595 109.577928) + (xy 110.044115 109.54) + (xy 109.956705 109.54) + (xy 109.870494 109.554386) + (xy 109.767763 109.609981) + (xy 109.68865 109.695921) + (xy 109.641728 109.802892) + (xy 109.632082 109.919302) + (xy 107.21734 109.919302) + (xy 107.222196 109.860698) + (xy 107.193521 109.747462) + (xy 107.129632 109.649673) + (xy 107.037453 109.577928) + (xy 106.926973 109.54) + (xy 106.839563 109.54) + (xy 106.753352 109.554386) + (xy 106.650621 109.609981) + (xy 106.571508 109.695921) + (xy 106.524586 109.802892) + (xy 106.51494 109.919302) + (xy 104.100198 109.919302) + (xy 104.105054 109.860698) + (xy 104.076379 109.747462) + (xy 104.01249 109.649673) + (xy 103.920311 109.577928) + (xy 103.809831 109.54) + (xy 103.722421 109.54) + (xy 103.63621 109.554386) + (xy 103.533479 109.609981) + (xy 103.454366 109.695921) + (xy 103.407444 109.802892) + (xy 103.397798 109.919302) + (xy 100.983056 109.919302) + (xy 100.987912 109.860698) + (xy 100.959237 109.747462) + (xy 100.895348 109.649673) + (xy 100.803169 109.577928) + (xy 100.692689 109.54) + (xy 100.605279 109.54) + (xy 100.519068 109.554386) + (xy 100.416337 109.609981) + (xy 100.337224 109.695921) + (xy 100.290302 109.802892) + (xy 100.280656 109.919302) + (xy 97.865914 109.919302) + (xy 97.87077 109.860698) + (xy 97.842095 109.747462) + (xy 97.778206 109.649673) + (xy 97.686027 109.577928) + (xy 97.575547 109.54) + (xy 97.488137 109.54) + (xy 97.401926 109.554386) + (xy 97.299195 109.609981) + (xy 97.220082 109.695921) + (xy 97.17316 109.802892) + (xy 97.163514 109.919302) + (xy 94.748772 109.919302) + (xy 94.753628 109.860698) + (xy 94.724953 109.747462) + (xy 94.661064 109.649673) + (xy 94.568885 109.577928) + (xy 94.458405 109.54) + (xy 94.370995 109.54) + (xy 94.284784 109.554386) + (xy 94.182053 109.609981) + (xy 94.10294 109.695921) + (xy 94.056018 109.802892) + (xy 94.046372 109.919302) + (xy 86.015751 109.919302) + (xy 85.976845 109.786799) + (xy 85.953196 109.75) + (xy 86.8736 109.75) + (xy 86.8736 109.64) + (xy 93.2 109.64) + (xy 94.15 109.64) + (xy 94.15 108.69) + (xy 94.65 108.69) + (xy 94.65 109.64) + (xy 95.6 109.64) + (xy 96.317142 109.64) + (xy 97.267142 109.64) + (xy 97.267142 108.69) + (xy 97.767142 108.69) + (xy 97.767142 109.64) + (xy 98.717142 109.64) + (xy 99.434284 109.64) + (xy 100.384284 109.64) + (xy 100.384284 108.69) + (xy 100.884284 108.69) + (xy 100.884284 109.64) + (xy 101.834284 109.64) + (xy 101.834284 109.142172) + (xy 102.551425 109.142172) + (xy 102.551426 109.64) + (xy 103.501426 109.64) + (xy 103.501426 108.69) + (xy 104.001426 108.69) + (xy 104.001426 109.64) + (xy 104.951426 109.64) + (xy 105.668568 109.64) + (xy 106.618568 109.64) + (xy 106.618568 108.69) + (xy 107.118568 108.69) + (xy 107.118568 109.64) + (xy 108.068568 109.64) + (xy 108.78571 109.64) + (xy 109.73571 109.64) + (xy 109.73571 108.69) + (xy 110.23571 108.69) + (xy 110.23571 109.64) + (xy 111.18571 109.64) + (xy 111.902852 109.64) + (xy 112.852852 109.64) + (xy 112.852852 108.69) + (xy 113.352852 108.69) + (xy 113.352852 109.64) + (xy 114.302852 109.64) + (xy 114.302852 109.639999) + (xy 115.019999 109.639999) + (xy 115.02 109.64) + (xy 115.97 109.64) + (xy 115.97 108.69) + (xy 116.47 108.69) + (xy 116.47 109.64) + (xy 117.42 109.64) + (xy 117.42 109.142172) + (xy 117.419999 109.142155) + (xy 117.413598 109.082627) + (xy 117.413596 109.08262) + (xy 117.363354 108.947913) + (xy 117.36335 108.947906) + (xy 117.27719 108.832812) + (xy 117.277187 108.832809) + (xy 117.162093 108.746649) + (xy 117.162086 108.746645) + (xy 117.027379 108.696403) + (xy 117.027372 108.696401) + (xy 116.967844 108.69) + (xy 116.47 108.69) + (xy 115.97 108.69) + (xy 115.472155 108.69) + (xy 115.412627 108.696401) + (xy 115.41262 108.696403) + (xy 115.277913 108.746645) + (xy 115.277906 108.746649) + (xy 115.162812 108.832809) + (xy 115.162809 108.832812) + (xy 115.076649 108.947906) + (xy 115.076645 108.947913) + (xy 115.026403 109.08262) + (xy 115.026401 109.082627) + (xy 115.02 109.142155) + (xy 115.02 109.142172) + (xy 115.019999 109.639999) + (xy 114.302852 109.639999) + (xy 114.302852 109.142172) + (xy 114.302851 109.142155) + (xy 114.29645 109.082627) + (xy 114.296448 109.08262) + (xy 114.246206 108.947913) + (xy 114.246202 108.947906) + (xy 114.160042 108.832812) + (xy 114.160039 108.832809) + (xy 114.044945 108.746649) + (xy 114.044938 108.746645) + (xy 113.910231 108.696403) + (xy 113.910224 108.696401) + (xy 113.850696 108.69) + (xy 113.352852 108.69) + (xy 112.852852 108.69) + (xy 112.355007 108.69) + (xy 112.295479 108.696401) + (xy 112.295472 108.696403) + (xy 112.160765 108.746645) + (xy 112.160758 108.746649) + (xy 112.045664 108.832809) + (xy 112.045661 108.832812) + (xy 111.959501 108.947906) + (xy 111.959497 108.947913) + (xy 111.909255 109.08262) + (xy 111.909253 109.082627) + (xy 111.902852 109.142155) + (xy 111.902852 109.64) + (xy 111.18571 109.64) + (xy 111.18571 109.142172) + (xy 111.185709 109.142155) + (xy 111.179308 109.082627) + (xy 111.179306 109.08262) + (xy 111.129064 108.947913) + (xy 111.12906 108.947906) + (xy 111.0429 108.832812) + (xy 111.042897 108.832809) + (xy 110.927803 108.746649) + (xy 110.927796 108.746645) + (xy 110.793089 108.696403) + (xy 110.793082 108.696401) + (xy 110.733554 108.69) + (xy 110.23571 108.69) + (xy 109.73571 108.69) + (xy 109.237865 108.69) + (xy 109.178337 108.696401) + (xy 109.17833 108.696403) + (xy 109.043623 108.746645) + (xy 109.043616 108.746649) + (xy 108.928522 108.832809) + (xy 108.928519 108.832812) + (xy 108.842359 108.947906) + (xy 108.842355 108.947913) + (xy 108.792113 109.08262) + (xy 108.792111 109.082627) + (xy 108.78571 109.142155) + (xy 108.78571 109.64) + (xy 108.068568 109.64) + (xy 108.068568 109.142172) + (xy 108.068567 109.142155) + (xy 108.062166 109.082627) + (xy 108.062164 109.08262) + (xy 108.011922 108.947913) + (xy 108.011918 108.947906) + (xy 107.925758 108.832812) + (xy 107.925755 108.832809) + (xy 107.810661 108.746649) + (xy 107.810654 108.746645) + (xy 107.675947 108.696403) + (xy 107.67594 108.696401) + (xy 107.616412 108.69) + (xy 107.118568 108.69) + (xy 106.618568 108.69) + (xy 106.120723 108.69) + (xy 106.061195 108.696401) + (xy 106.061188 108.696403) + (xy 105.926481 108.746645) + (xy 105.926474 108.746649) + (xy 105.81138 108.832809) + (xy 105.811377 108.832812) + (xy 105.725217 108.947906) + (xy 105.725213 108.947913) + (xy 105.674971 109.08262) + (xy 105.674969 109.082627) + (xy 105.668568 109.142155) + (xy 105.668568 109.64) + (xy 104.951426 109.64) + (xy 104.951425 109.142172) + (xy 104.951425 109.142155) + (xy 104.945024 109.082627) + (xy 104.945022 109.08262) + (xy 104.89478 108.947913) + (xy 104.894776 108.947906) + (xy 104.808616 108.832812) + (xy 104.808613 108.832809) + (xy 104.693519 108.746649) + (xy 104.693512 108.746645) + (xy 104.558805 108.696403) + (xy 104.558798 108.696401) + (xy 104.49927 108.69) + (xy 104.001426 108.69) + (xy 103.501426 108.69) + (xy 103.003581 108.69) + (xy 102.944053 108.696401) + (xy 102.944046 108.696403) + (xy 102.809339 108.746645) + (xy 102.809332 108.746649) + (xy 102.694238 108.832809) + (xy 102.694235 108.832812) + (xy 102.608075 108.947906) + (xy 102.608071 108.947913) + (xy 102.557829 109.08262) + (xy 102.557827 109.082627) + (xy 102.551426 109.142155) + (xy 102.551425 109.142172) + (xy 101.834284 109.142172) + (xy 101.834283 109.142155) + (xy 101.827882 109.082627) + (xy 101.82788 109.08262) + (xy 101.777638 108.947913) + (xy 101.777634 108.947906) + (xy 101.691474 108.832812) + (xy 101.691471 108.832809) + (xy 101.576377 108.746649) + (xy 101.57637 108.746645) + (xy 101.441663 108.696403) + (xy 101.441656 108.696401) + (xy 101.382128 108.69) + (xy 100.884284 108.69) + (xy 100.384284 108.69) + (xy 99.886439 108.69) + (xy 99.826911 108.696401) + (xy 99.826904 108.696403) + (xy 99.692197 108.746645) + (xy 99.69219 108.746649) + (xy 99.577096 108.832809) + (xy 99.577093 108.832812) + (xy 99.490933 108.947906) + (xy 99.490929 108.947913) + (xy 99.440687 109.08262) + (xy 99.440685 109.082627) + (xy 99.434284 109.142155) + (xy 99.434284 109.64) + (xy 98.717142 109.64) + (xy 98.717142 109.142172) + (xy 98.717141 109.142155) + (xy 98.71074 109.082627) + (xy 98.710738 109.08262) + (xy 98.660496 108.947913) + (xy 98.660492 108.947906) + (xy 98.574332 108.832812) + (xy 98.574329 108.832809) + (xy 98.459235 108.746649) + (xy 98.459228 108.746645) + (xy 98.324521 108.696403) + (xy 98.324514 108.696401) + (xy 98.264986 108.69) + (xy 97.767142 108.69) + (xy 97.267142 108.69) + (xy 96.769297 108.69) + (xy 96.709769 108.696401) + (xy 96.709762 108.696403) + (xy 96.575055 108.746645) + (xy 96.575048 108.746649) + (xy 96.459954 108.832809) + (xy 96.459951 108.832812) + (xy 96.373791 108.947906) + (xy 96.373787 108.947913) + (xy 96.323545 109.08262) + (xy 96.323543 109.082627) + (xy 96.317142 109.142155) + (xy 96.317142 109.64) + (xy 95.6 109.64) + (xy 95.6 109.142172) + (xy 95.599999 109.142155) + (xy 95.593598 109.082627) + (xy 95.593596 109.08262) + (xy 95.543354 108.947913) + (xy 95.54335 108.947906) + (xy 95.45719 108.832812) + (xy 95.457187 108.832809) + (xy 95.342093 108.746649) + (xy 95.342086 108.746645) + (xy 95.207379 108.696403) + (xy 95.207372 108.696401) + (xy 95.147844 108.69) + (xy 94.65 108.69) + (xy 94.15 108.69) + (xy 93.652155 108.69) + (xy 93.592627 108.696401) + (xy 93.59262 108.696403) + (xy 93.457913 108.746645) + (xy 93.457906 108.746649) + (xy 93.342812 108.832809) + (xy 93.342809 108.832812) + (xy 93.256649 108.947906) + (xy 93.256645 108.947913) + (xy 93.206403 109.08262) + (xy 93.206401 109.082627) + (xy 93.2 109.142155) + (xy 93.2 109.64) + (xy 86.8736 109.64) + (xy 86.8736 109.088572) + (xy 86.873599 109.088555) + (xy 86.867198 109.029027) + (xy 86.867196 109.02902) + (xy 86.816954 108.894313) + (xy 86.81695 108.894306) + (xy 86.73079 108.779212) + (xy 86.730787 108.779209) + (xy 86.615693 108.693049) + (xy 86.615686 108.693045) + (xy 86.480979 108.642803) + (xy 86.480972 108.642801) + (xy 86.421444 108.6364) + (xy 85.76 108.6364) + (xy 85.76 109.555702) + (xy 85.654592 109.507565) + (xy 85.546334 109.492) + (xy 85.473666 109.492) + (xy 85.365408 109.507565) + (xy 85.26 109.555702) + (xy 85.26 108.6364) + (xy 84.598555 108.6364) + (xy 84.539027 108.642801) + (xy 84.53902 108.642803) + (xy 84.404313 108.693045) + (xy 84.404306 108.693049) + (xy 84.289212 108.779209) + (xy 84.289209 108.779212) + (xy 84.203049 108.894306) + (xy 84.203045 108.894313) + (xy 84.152803 109.02902) + (xy 84.152801 109.029027) + (xy 84.1464 109.088555) + (xy 84.1464 109.75) + (xy 85.066804 109.75) + (xy 85.043155 109.786799) + (xy 85.002 109.926961) + (xy 85.002 110.073039) + (xy 85.043155 110.213201) + (xy 85.066804 110.25) + (xy 84.1464 110.25) + (xy 84.1464 110.911444) + (xy 84.152801 110.970972) + (xy 84.152803 110.970979) + (xy 84.203045 111.105686) + (xy 84.203049 111.105693) + (xy 84.289209 111.220787) + (xy 84.289212 111.22079) + (xy 84.404306 111.30695) + (xy 84.404313 111.306954) + (xy 84.519348 111.349859) + (xy 84.575282 111.39173) + (xy 84.599699 111.457194) + (xy 84.584848 111.525467) + (xy 84.567245 111.550024) + (xy 84.429845 111.699279) + (xy 84.429842 111.699283) + (xy 84.306198 111.888533) + (xy 84.215388 112.09556) + (xy 84.159892 112.31471) + (xy 84.141225 112.539993) + (xy 84.141225 112.540006) + (xy 84.159892 112.765289) + (xy 84.215388 112.984439) + (xy 84.306198 113.191466) + (xy 84.429842 113.380716) + (xy 84.42985 113.380727) + (xy 84.58295 113.547036) + (xy 84.582954 113.54704) + (xy 84.761351 113.685893) + (xy 84.789159 113.700942) + (xy 84.789165 113.700945) + (xy 84.838755 113.750165) + (xy 84.853863 113.818382) + (xy 84.829692 113.883937) + (xy 84.789165 113.919055) + (xy 84.761352 113.934106) + (xy 84.582955 114.072959) + (xy 84.58295 114.072963) + (xy 84.42985 114.239272) + (xy 84.429842 114.239283) + (xy 84.306198 114.428533) + (xy 84.215388 114.63556) + (xy 84.159892 114.85471) + (xy 84.141225 115.079993) + (xy 84.141225 115.080006) + (xy 84.159892 115.305289) + (xy 84.215388 115.524439) + (xy 84.306198 115.731466) + (xy 84.429842 115.920716) + (xy 84.42985 115.920727) + (xy 84.58295 116.087036) + (xy 84.582954 116.08704) + (xy 84.761351 116.225893) + (xy 84.789159 116.240942) + (xy 84.789165 116.240945) + (xy 84.838755 116.290165) + (xy 84.853863 116.358382) + (xy 84.829692 116.423937) + (xy 84.789165 116.459055) + (xy 84.761352 116.474106) + (xy 84.582955 116.612959) + (xy 84.58295 116.612963) + (xy 84.42985 116.779272) + (xy 84.429842 116.779283) + (xy 84.306198 116.968533) + (xy 84.215388 117.17556) + (xy 84.159892 117.39471) + (xy 84.141225 117.619993) + (xy 84.141225 117.620006) + (xy 81 117.620006) + (xy 81 104.480004) + (xy 82.004732 104.480004) + (xy 82.023777 104.734154) + (xy 82.079161 104.976809) + (xy 82.080492 104.982637) + (xy 82.173607 105.219888) + (xy 82.301041 105.440612) + (xy 82.45995 105.639877) + (xy 82.646783 105.813232) + (xy 82.857366 105.956805) + (xy 82.857371 105.956807) + (xy 82.857372 105.956808) + (xy 82.857373 105.956809) + (xy 82.979328 106.015538) + (xy 83.086992 106.067387) + (xy 83.086993 106.067387) + (xy 83.086996 106.067389) + (xy 83.330542 106.142513) + (xy 83.582565 106.1805) + (xy 83.837435 106.1805) + (xy 84.089458 106.142513) + (xy 84.333004 106.067389) + (xy 84.562634 105.956805) + (xy 84.773217 105.813232) + (xy 84.96005 105.639877) + (xy 85.118959 105.440612) + (xy 85.246393 105.219888) + (xy 85.339508 104.982637) + (xy 85.396222 104.734157) + (xy 85.415268 104.48) + (xy 85.396222 104.225843) + (xy 85.339508 103.977363) + (xy 85.30088 103.878943) + (xy 85.294712 103.809348) + (xy 85.327149 103.747464) + (xy 85.328566 103.746023) + (xy 86.583788 102.490801) + (xy 86.596042 102.480986) + (xy 86.595859 102.480764) + (xy 86.601868 102.475791) + (xy 86.601877 102.475786) + (xy 86.648607 102.426022) + (xy 86.649846 102.424743) + (xy 86.67012 102.404471) + (xy 86.674379 102.398978) + (xy 86.678152 102.394561) + (xy 86.710062 102.360582) + (xy 86.719713 102.343024) + (xy 86.730396 102.326761) + (xy 86.742673 102.310936) + (xy 86.761185 102.268153) + (xy 86.763738 102.262941) + (xy 86.786197 102.222092) + (xy 86.79118 102.20268) + (xy 86.797481 102.18428) + (xy 86.805437 102.165896) + (xy 86.812729 102.119852) + (xy 86.813906 102.114171) + (xy 86.8255 102.069019) + (xy 86.8255 102.048982) + (xy 86.827027 102.029582) + (xy 86.83016 102.009804) + (xy 86.825775 101.963415) + (xy 86.8255 101.957577) + (xy 86.8255 101.3573) + (xy 108.02 101.3573) + (xy 108.02 101.855144) + (xy 108.026401 101.914672) + (xy 108.026403 101.914679) + (xy 108.076645 102.049386) + (xy 108.076649 102.049393) + (xy 108.162809 102.164487) + (xy 108.162812 102.16449) + (xy 108.277906 102.25065) + (xy 108.277913 102.250654) + (xy 108.41262 102.300896) + (xy 108.412627 102.300898) + (xy 108.472155 102.307299) + (xy 108.472172 102.3073) + (xy 108.97 102.3073) + (xy 108.97 101.3573) + (xy 108.02 101.3573) + (xy 86.8255 101.3573) + (xy 86.8255 101.136602) + (xy 108.866372 101.136602) + (xy 108.895047 101.249838) + (xy 108.958936 101.347627) + (xy 109.051115 101.419372) + (xy 109.161595 101.4573) + (xy 109.249005 101.4573) + (xy 109.335216 101.442914) + (xy 109.437947 101.387319) + (xy 109.465581 101.3573) + (xy 109.47 101.3573) + (xy 109.47 102.3073) + (xy 109.967828 102.3073) + (xy 109.967844 102.307299) + (xy 110.027372 102.300898) + (xy 110.027379 102.300896) + (xy 110.162086 102.250654) + (xy 110.162093 102.25065) + (xy 110.277187 102.16449) + (xy 110.27719 102.164487) + (xy 110.36335 102.049393) + (xy 110.363354 102.049386) + (xy 110.413596 101.914679) + (xy 110.413598 101.914672) + (xy 110.419999 101.855144) + (xy 110.42 101.855127) + (xy 110.42 101.3573) + (xy 109.47 101.3573) + (xy 109.465581 101.3573) + (xy 109.51706 101.301379) + (xy 109.563982 101.194408) + (xy 109.5712 101.107302) + (xy 129.734723 101.107302) + (xy 129.742321 101.194153) + (xy 129.751531 101.299427) + (xy 129.753793 101.325275) + (xy 129.753793 101.325279) + (xy 129.810422 101.536622) + (xy 129.810424 101.536626) + (xy 129.810425 101.53663) + (xy 129.835592 101.5906) + (xy 129.902897 101.734938) + (xy 129.923683 101.764623) + (xy 130.028402 101.914177) + (xy 130.183123 102.068898) + (xy 130.362361 102.194402) + (xy 130.56067 102.286875) + (xy 130.772023 102.343507) + (xy 130.954926 102.359508) + (xy 130.989998 102.362577) + (xy 130.99 102.362577) + (xy 130.990002 102.362577) + (xy 131.018254 102.360105) + (xy 131.207977 102.343507) + (xy 131.41933 102.286875) + (xy 131.617639 102.194402) + (xy 131.796877 102.068898) + (xy 131.846656 102.019119) + (xy 131.907979 101.985634) + (xy 131.934337 101.9828) + (xy 141.037369 101.9828) + (xy 141.104408 102.002485) + (xy 141.128596 102.022814) (xy 141.242954 102.14704) (xy 141.421351 102.285893) (xy 141.620169 102.393488) @@ -32876,19 +14448,22 @@ (xy 142.719831 102.393488) (xy 142.918649 102.285893) (xy 143.097046 102.14704) + (xy 143.230119 102.002485) + (xy 143.250149 101.980727) + (xy 143.25015 101.980725) (xy 143.250156 101.980719) (xy 143.373802 101.791465) (xy 143.464611 101.584441) (xy 143.520107 101.365293) - (xy 143.538775 101.14) - (xy 143.538775 101.139999) + (xy 143.530973 101.234154) + (xy 143.538775 101.140006) (xy 143.538775 101.139993) - (xy 143.520114 100.914797) + (xy 143.522138 100.939214) (xy 143.520107 100.914707) (xy 143.464611 100.695559) (xy 143.373802 100.488535) (xy 143.368004 100.479661) - (xy 143.281668 100.347514) + (xy 143.266144 100.323753) (xy 143.250156 100.299281) (xy 143.250153 100.299278) (xy 143.250149 100.299272) @@ -32896,7 +14471,7 @@ (xy 143.097048 100.132962) (xy 143.097046 100.13296) (xy 142.918649 99.994107) - (xy 142.89239 99.979896) + (xy 142.795986 99.927725) (xy 142.719832 99.886512) (xy 142.719827 99.88651) (xy 142.506017 99.813109) @@ -32908,22 +14483,1073 @@ (xy 141.620172 99.88651) (xy 141.620167 99.886512) (xy 141.421352 99.994106) - (xy 141.242955 100.132959) - (xy 141.24295 100.132963) - (xy 141.08985 100.299272) - (xy 141.089842 100.299283) - (xy 140.966198 100.488533) - (xy 140.875388 100.69556) - (xy 140.819892 100.91471) - (xy 140.801225 101.139993) - (xy 140.801225 101.140006) - (xy 137.2255 101.140006) - (xy 137.2255 98.156017) - (xy 137.245185 98.088978) - (xy 137.297989 98.043223) - (xy 137.367147 98.033279) - (xy 137.430703 98.062304) - (xy 137.440725 98.07203) + (xy 141.242956 100.132958) + (xy 141.242954 100.132959) + (xy 141.242954 100.13296) + (xy 141.188802 100.191783) + (xy 141.128916 100.227774) + (xy 141.097574 100.2318) + (xy 131.934337 100.2318) + (xy 131.867298 100.212115) + (xy 131.846656 100.195481) + (xy 131.796881 100.145706) + (xy 131.796877 100.145702) + (xy 131.617639 100.020198) + (xy 131.61764 100.020198) + (xy 131.617638 100.020197) + (xy 131.518484 99.973961) + (xy 131.41933 99.927725) + (xy 131.419326 99.927724) + (xy 131.419322 99.927722) + (xy 131.207977 99.871093) + (xy 130.990002 99.852023) + (xy 130.989998 99.852023) + (xy 130.844682 99.864736) + (xy 130.772023 99.871093) + (xy 130.77202 99.871093) + (xy 130.560677 99.927722) + (xy 130.560668 99.927726) + (xy 130.362361 100.020198) + (xy 130.362357 100.0202) + (xy 130.183121 100.145702) + (xy 130.028402 100.300421) + (xy 129.9029 100.479657) + (xy 129.902898 100.479661) + (xy 129.810426 100.677968) + (xy 129.810422 100.677977) + (xy 129.753793 100.88932) + (xy 129.753793 100.889323) + (xy 129.751572 100.914707) + (xy 129.734723 101.107297) + (xy 129.734723 101.107302) + (xy 109.5712 101.107302) + (xy 109.573628 101.077998) + (xy 109.544953 100.964762) + (xy 109.481064 100.866973) + (xy 109.388885 100.795228) + (xy 109.278405 100.7573) + (xy 109.190995 100.7573) + (xy 109.104784 100.771686) + (xy 109.002053 100.827281) + (xy 108.92294 100.913221) + (xy 108.876018 101.020192) + (xy 108.866372 101.136602) + (xy 86.8255 101.136602) + (xy 86.8255 100.8573) + (xy 108.02 100.8573) + (xy 108.97 100.8573) + (xy 108.97 99.9073) + (xy 109.47 99.9073) + (xy 109.47 100.8573) + (xy 110.42 100.8573) + (xy 110.42 100.359472) + (xy 110.419999 100.359455) + (xy 110.413598 100.299927) + (xy 110.413596 100.29992) + (xy 110.363354 100.165213) + (xy 110.36335 100.165206) + (xy 110.27719 100.050112) + (xy 110.277187 100.050109) + (xy 110.162093 99.963949) + (xy 110.162086 99.963945) + (xy 110.027379 99.913703) + (xy 110.027372 99.913701) + (xy 109.967844 99.9073) + (xy 109.47 99.9073) + (xy 108.97 99.9073) + (xy 108.472155 99.9073) + (xy 108.412627 99.913701) + (xy 108.41262 99.913703) + (xy 108.277913 99.963945) + (xy 108.277906 99.963949) + (xy 108.162812 100.050109) + (xy 108.162809 100.050112) + (xy 108.076649 100.165206) + (xy 108.076645 100.165213) + (xy 108.026403 100.29992) + (xy 108.026401 100.299927) + (xy 108.02 100.359455) + (xy 108.02 100.8573) + (xy 86.8255 100.8573) + (xy 86.8255 97.100006) + (xy 87.247225 97.100006) + (xy 87.265892 97.325289) + (xy 87.321388 97.544439) + (xy 87.412198 97.751466) + (xy 87.535842 97.940716) + (xy 87.53585 97.940727) + (xy 87.68895 98.107036) + (xy 87.688954 98.10704) + (xy 87.867351 98.245893) + (xy 88.066169 98.353488) + (xy 88.066172 98.353489) + (xy 88.279982 98.42689) + (xy 88.279984 98.42689) + (xy 88.279986 98.426891) + (xy 88.502967 98.4641) + (xy 88.502968 98.4641) + (xy 88.729032 98.4641) + (xy 88.729033 98.4641) + (xy 88.952014 98.426891) + (xy 89.165831 98.353488) + (xy 89.364649 98.245893) + (xy 89.543046 98.10704) + (xy 89.696156 97.940719) + (xy 89.782193 97.809028) + (xy 89.835338 97.763675) + (xy 89.904569 97.754251) + (xy 89.967905 97.783753) + (xy 89.989804 97.809025) + (xy 90.075844 97.940719) + (xy 90.075849 97.940724) + (xy 90.07585 97.940727) + (xy 90.22895 98.107036) + (xy 90.228954 98.10704) + (xy 90.407351 98.245893) + (xy 90.606169 98.353488) + (xy 90.606172 98.353489) + (xy 90.819982 98.42689) + (xy 90.819984 98.42689) + (xy 90.819986 98.426891) + (xy 91.042967 98.4641) + (xy 91.042968 98.4641) + (xy 91.269032 98.4641) + (xy 91.269033 98.4641) + (xy 91.492014 98.426891) + (xy 91.705831 98.353488) + (xy 91.904649 98.245893) + (xy 92.083046 98.10704) + (xy 92.236156 97.940719) + (xy 92.322193 97.809028) + (xy 92.375338 97.763675) + (xy 92.444569 97.754251) + (xy 92.507905 97.783753) + (xy 92.529804 97.809025) + (xy 92.615844 97.940719) + (xy 92.615849 97.940724) + (xy 92.61585 97.940727) + (xy 92.76895 98.107036) + (xy 92.768954 98.10704) + (xy 92.947351 98.245893) + (xy 93.146169 98.353488) + (xy 93.146172 98.353489) + (xy 93.359982 98.42689) + (xy 93.359984 98.42689) + (xy 93.359986 98.426891) + (xy 93.582967 98.4641) + (xy 93.582968 98.4641) + (xy 93.809032 98.4641) + (xy 93.809033 98.4641) + (xy 94.032014 98.426891) + (xy 94.245831 98.353488) + (xy 94.444649 98.245893) + (xy 94.623046 98.10704) + (xy 94.677815 98.047545) + (xy 94.737699 98.011557) + (xy 94.807537 98.013657) + (xy 94.865153 98.05318) + (xy 94.885224 98.088196) + (xy 94.929046 98.205688) + (xy 94.929049 98.205693) + (xy 95.015209 98.320787) + (xy 95.015212 98.32079) + (xy 95.130306 98.40695) + (xy 95.130313 98.406954) + (xy 95.26502 98.457196) + (xy 95.265027 98.457198) + (xy 95.324555 98.463599) + (xy 95.324572 98.4636) + (xy 95.986 98.4636) + (xy 95.986 97.544297) + (xy 96.091408 97.592435) + (xy 96.199666 97.608) + (xy 96.272334 97.608) + (xy 96.380592 97.592435) + (xy 96.486 97.544297) + (xy 96.486 98.4636) + (xy 97.147428 98.4636) + (xy 97.147444 98.463599) + (xy 97.206972 98.457198) + (xy 97.206979 98.457196) + (xy 97.341686 98.406954) + (xy 97.341693 98.40695) + (xy 97.456787 98.32079) + (xy 97.45679 98.320787) + (xy 97.54295 98.205693) + (xy 97.542954 98.205686) + (xy 97.586775 98.088197) + (xy 97.628646 98.032263) + (xy 97.69411 98.007846) + (xy 97.762383 98.022698) + (xy 97.794186 98.047547) + (xy 97.84895 98.107036) + (xy 97.848954 98.10704) + (xy 98.027351 98.245893) + (xy 98.226169 98.353488) + (xy 98.226172 98.353489) + (xy 98.439982 98.42689) + (xy 98.439984 98.42689) + (xy 98.439986 98.426891) + (xy 98.662967 98.4641) + (xy 98.662968 98.4641) + (xy 98.889032 98.4641) + (xy 98.889033 98.4641) + (xy 99.112014 98.426891) + (xy 99.325831 98.353488) + (xy 99.524649 98.245893) + (xy 99.703046 98.10704) + (xy 99.856156 97.940719) + (xy 99.942193 97.809029) + (xy 99.995336 97.763675) + (xy 100.064567 97.754251) + (xy 100.127903 97.783753) + (xy 100.149807 97.809031) + (xy 100.235842 97.940716) + (xy 100.23585 97.940727) + (xy 100.38895 98.107036) + (xy 100.388954 98.10704) + (xy 100.567351 98.245893) + (xy 100.766169 98.353488) + (xy 100.766172 98.353489) + (xy 100.979982 98.42689) + (xy 100.979984 98.42689) + (xy 100.979986 98.426891) + (xy 101.202967 98.4641) + (xy 101.202968 98.4641) + (xy 101.429032 98.4641) + (xy 101.429033 98.4641) + (xy 101.652014 98.426891) + (xy 101.865831 98.353488) + (xy 102.064649 98.245893) + (xy 102.243046 98.10704) + (xy 102.396156 97.940719) + (xy 102.482193 97.809028) + (xy 102.535338 97.763675) + (xy 102.604569 97.754251) + (xy 102.667905 97.783753) + (xy 102.689804 97.809025) + (xy 102.775844 97.940719) + (xy 102.775849 97.940724) + (xy 102.77585 97.940727) + (xy 102.92895 98.107036) + (xy 102.928954 98.10704) + (xy 103.107351 98.245893) + (xy 103.306169 98.353488) + (xy 103.306172 98.353489) + (xy 103.519982 98.42689) + (xy 103.519984 98.42689) + (xy 103.519986 98.426891) + (xy 103.742967 98.4641) + (xy 103.742968 98.4641) + (xy 103.969032 98.4641) + (xy 103.969033 98.4641) + (xy 104.192014 98.426891) + (xy 104.405831 98.353488) + (xy 104.604649 98.245893) + (xy 104.783046 98.10704) + (xy 104.936156 97.940719) + (xy 105.022193 97.809029) + (xy 105.075336 97.763675) + (xy 105.144567 97.754251) + (xy 105.207903 97.783753) + (xy 105.229807 97.809031) + (xy 105.315842 97.940716) + (xy 105.31585 97.940727) + (xy 105.46895 98.107036) + (xy 105.468954 98.10704) + (xy 105.647351 98.245893) + (xy 105.846169 98.353488) + (xy 105.846172 98.353489) + (xy 106.059982 98.42689) + (xy 106.059984 98.42689) + (xy 106.059986 98.426891) + (xy 106.282967 98.4641) + (xy 106.282968 98.4641) + (xy 106.509032 98.4641) + (xy 106.509033 98.4641) + (xy 106.732014 98.426891) + (xy 106.945831 98.353488) + (xy 107.144649 98.245893) + (xy 107.323046 98.10704) + (xy 107.476156 97.940719) + (xy 107.562193 97.809028) + (xy 107.615338 97.763675) + (xy 107.684569 97.754251) + (xy 107.747905 97.783753) + (xy 107.769804 97.809025) + (xy 107.855844 97.940719) + (xy 107.855849 97.940724) + (xy 107.85585 97.940727) + (xy 108.00895 98.107036) + (xy 108.008954 98.10704) + (xy 108.187351 98.245893) + (xy 108.386169 98.353488) + (xy 108.386172 98.353489) + (xy 108.599982 98.42689) + (xy 108.599984 98.42689) + (xy 108.599986 98.426891) + (xy 108.822967 98.4641) + (xy 108.822968 98.4641) + (xy 109.049032 98.4641) + (xy 109.049033 98.4641) + (xy 109.272014 98.426891) + (xy 109.485831 98.353488) + (xy 109.684649 98.245893) + (xy 109.863046 98.10704) + (xy 110.016156 97.940719) + (xy 110.102193 97.809028) + (xy 110.155338 97.763675) + (xy 110.224569 97.754251) + (xy 110.287905 97.783753) + (xy 110.309804 97.809025) + (xy 110.395844 97.940719) + (xy 110.395849 97.940724) + (xy 110.39585 97.940727) + (xy 110.54895 98.107036) + (xy 110.548954 98.10704) + (xy 110.727351 98.245893) + (xy 110.926169 98.353488) + (xy 110.926172 98.353489) + (xy 111.139982 98.42689) + (xy 111.139984 98.42689) + (xy 111.139986 98.426891) + (xy 111.362967 98.4641) + (xy 111.362968 98.4641) + (xy 111.589032 98.4641) + (xy 111.589033 98.4641) + (xy 111.812014 98.426891) + (xy 112.025831 98.353488) + (xy 112.224649 98.245893) + (xy 112.403046 98.10704) + (xy 112.556156 97.940719) + (xy 112.679802 97.751465) + (xy 112.770611 97.544441) + (xy 112.826107 97.325293) + (xy 112.844775 97.100006) + (xy 114.171225 97.100006) + (xy 114.189892 97.325289) + (xy 114.245388 97.544439) + (xy 114.336198 97.751466) + (xy 114.459842 97.940716) + (xy 114.45985 97.940727) + (xy 114.61295 98.107036) + (xy 114.612954 98.10704) + (xy 114.791351 98.245893) + (xy 114.990169 98.353488) + (xy 114.990172 98.353489) + (xy 115.203982 98.42689) + (xy 115.203984 98.42689) + (xy 115.203986 98.426891) + (xy 115.426967 98.4641) + (xy 115.426968 98.4641) + (xy 115.653032 98.4641) + (xy 115.653033 98.4641) + (xy 115.876014 98.426891) + (xy 116.089831 98.353488) + (xy 116.288649 98.245893) + (xy 116.467046 98.10704) + (xy 116.620156 97.940719) + (xy 116.706193 97.809028) + (xy 116.759338 97.763675) + (xy 116.828569 97.754251) + (xy 116.891905 97.783753) + (xy 116.913804 97.809025) + (xy 116.999844 97.940719) + (xy 116.999849 97.940724) + (xy 116.99985 97.940727) + (xy 117.15295 98.107036) + (xy 117.152954 98.10704) + (xy 117.331351 98.245893) + (xy 117.530169 98.353488) + (xy 117.530172 98.353489) + (xy 117.743982 98.42689) + (xy 117.743984 98.42689) + (xy 117.743986 98.426891) + (xy 117.966967 98.4641) + (xy 117.966968 98.4641) + (xy 118.193032 98.4641) + (xy 118.193033 98.4641) + (xy 118.416014 98.426891) + (xy 118.629831 98.353488) + (xy 118.828649 98.245893) + (xy 119.007046 98.10704) + (xy 119.160156 97.940719) + (xy 119.246193 97.809028) + (xy 119.299338 97.763675) + (xy 119.368569 97.754251) + (xy 119.431905 97.783753) + (xy 119.453804 97.809025) + (xy 119.539844 97.940719) + (xy 119.539849 97.940724) + (xy 119.53985 97.940727) + (xy 119.69295 98.107036) + (xy 119.692954 98.10704) + (xy 119.871351 98.245893) + (xy 120.070169 98.353488) + (xy 120.070172 98.353489) + (xy 120.283982 98.42689) + (xy 120.283984 98.42689) + (xy 120.283986 98.426891) + (xy 120.506967 98.4641) + (xy 120.506968 98.4641) + (xy 120.733032 98.4641) + (xy 120.733033 98.4641) + (xy 120.956014 98.426891) + (xy 121.169831 98.353488) + (xy 121.368649 98.245893) + (xy 121.547046 98.10704) + (xy 121.700156 97.940719) + (xy 121.786193 97.809028) + (xy 121.839338 97.763675) + (xy 121.908569 97.754251) + (xy 121.971905 97.783753) + (xy 121.993804 97.809025) + (xy 122.079844 97.940719) + (xy 122.079849 97.940724) + (xy 122.07985 97.940727) + (xy 122.23295 98.107036) + (xy 122.232954 98.10704) + (xy 122.411351 98.245893) + (xy 122.610169 98.353488) + (xy 122.610172 98.353489) + (xy 122.823982 98.42689) + (xy 122.823984 98.42689) + (xy 122.823986 98.426891) + (xy 123.046967 98.4641) + (xy 123.046968 98.4641) + (xy 123.273032 98.4641) + (xy 123.273033 98.4641) + (xy 123.496014 98.426891) + (xy 123.709831 98.353488) + (xy 123.908649 98.245893) + (xy 124.087046 98.10704) + (xy 124.240156 97.940719) + (xy 124.326193 97.809028) + (xy 124.379338 97.763675) + (xy 124.448569 97.754251) + (xy 124.511905 97.783753) + (xy 124.533804 97.809025) + (xy 124.619844 97.940719) + (xy 124.619849 97.940724) + (xy 124.61985 97.940727) + (xy 124.77295 98.107036) + (xy 124.772954 98.10704) + (xy 124.951351 98.245893) + (xy 125.150169 98.353488) + (xy 125.150172 98.353489) + (xy 125.363982 98.42689) + (xy 125.363984 98.42689) + (xy 125.363986 98.426891) + (xy 125.586967 98.4641) + (xy 125.586968 98.4641) + (xy 125.813032 98.4641) + (xy 125.813033 98.4641) + (xy 126.036014 98.426891) + (xy 126.249831 98.353488) + (xy 126.448649 98.245893) + (xy 126.627046 98.10704) + (xy 126.780156 97.940719) + (xy 126.866193 97.809028) + (xy 126.919338 97.763675) + (xy 126.988569 97.754251) + (xy 127.051905 97.783753) + (xy 127.073804 97.809025) + (xy 127.159844 97.940719) + (xy 127.159849 97.940724) + (xy 127.15985 97.940727) + (xy 127.31295 98.107036) + (xy 127.312954 98.10704) + (xy 127.491351 98.245893) + (xy 127.690169 98.353488) + (xy 127.690172 98.353489) + (xy 127.903982 98.42689) + (xy 127.903984 98.42689) + (xy 127.903986 98.426891) + (xy 128.126967 98.4641) + (xy 128.126968 98.4641) + (xy 128.353032 98.4641) + (xy 128.353033 98.4641) + (xy 128.576014 98.426891) + (xy 128.789831 98.353488) + (xy 128.988649 98.245893) + (xy 129.167046 98.10704) + (xy 129.320156 97.940719) + (xy 129.406193 97.809029) + (xy 129.459336 97.763675) + (xy 129.528567 97.754251) + (xy 129.591903 97.783753) + (xy 129.613807 97.809031) + (xy 129.699842 97.940716) + (xy 129.69985 97.940727) + (xy 129.85295 98.107036) + (xy 129.852954 98.10704) + (xy 130.031351 98.245893) + (xy 130.230169 98.353488) + (xy 130.230172 98.353489) + (xy 130.443982 98.42689) + (xy 130.443984 98.42689) + (xy 130.443986 98.426891) + (xy 130.666967 98.4641) + (xy 130.666968 98.4641) + (xy 130.893032 98.4641) + (xy 130.893033 98.4641) + (xy 131.116014 98.426891) + (xy 131.329831 98.353488) + (xy 131.528649 98.245893) + (xy 131.707046 98.10704) + (xy 131.860156 97.940719) + (xy 131.946193 97.809028) + (xy 131.999338 97.763675) + (xy 132.068569 97.754251) + (xy 132.131905 97.783753) + (xy 132.153804 97.809025) + (xy 132.239844 97.940719) + (xy 132.239849 97.940724) + (xy 132.23985 97.940727) + (xy 132.39295 98.107036) + (xy 132.392954 98.10704) + (xy 132.571351 98.245893) + (xy 132.770169 98.353488) + (xy 132.770172 98.353489) + (xy 132.983982 98.42689) + (xy 132.983984 98.42689) + (xy 132.983986 98.426891) + (xy 133.206967 98.4641) + (xy 133.206968 98.4641) + (xy 133.433032 98.4641) + (xy 133.433033 98.4641) + (xy 133.656014 98.426891) + (xy 133.869831 98.353488) + (xy 134.068649 98.245893) + (xy 134.247046 98.10704) + (xy 134.400156 97.940719) + (xy 134.523802 97.751465) + (xy 134.614611 97.544441) + (xy 134.670107 97.325293) + (xy 134.685031 97.145185) + (xy 134.688775 97.100006) + (xy 134.688775 97.099993) + (xy 134.670107 96.87471) + (xy 134.670107 96.874707) + (xy 134.614611 96.655559) + (xy 134.523802 96.448535) + (xy 134.400156 96.259281) + (xy 134.400153 96.259278) + (xy 134.400149 96.259272) + (xy 134.247049 96.092963) + (xy 134.247048 96.092962) + (xy 134.247046 96.09296) + (xy 134.068649 95.954107) + (xy 134.001 95.917497) + (xy 133.869832 95.846512) + (xy 133.869827 95.84651) + (xy 133.656017 95.773109) + (xy 133.474388 95.742801) + (xy 133.433033 95.7359) + (xy 133.206967 95.7359) + (xy 133.165612 95.742801) + (xy 132.983982 95.773109) + (xy 132.770172 95.84651) + (xy 132.770167 95.846512) + (xy 132.571352 95.954106) + (xy 132.392955 96.092959) + (xy 132.39295 96.092963) + (xy 132.23985 96.259272) + (xy 132.239846 96.259278) + (xy 132.153807 96.390969) + (xy 132.10066 96.436325) + (xy 132.031429 96.445748) + (xy 131.968093 96.416245) + (xy 131.946192 96.390969) + (xy 131.860156 96.259281) + (xy 131.860151 96.259276) + (xy 131.860149 96.259272) + (xy 131.707049 96.092963) + (xy 131.707048 96.092962) + (xy 131.707046 96.09296) + (xy 131.528649 95.954107) + (xy 131.461 95.917497) + (xy 131.329832 95.846512) + (xy 131.329827 95.84651) + (xy 131.116017 95.773109) + (xy 130.934388 95.742801) + (xy 130.893033 95.7359) + (xy 130.666967 95.7359) + (xy 130.625612 95.742801) + (xy 130.443982 95.773109) + (xy 130.230172 95.84651) + (xy 130.230167 95.846512) + (xy 130.031352 95.954106) + (xy 129.852955 96.092959) + (xy 129.85295 96.092963) + (xy 129.69985 96.259272) + (xy 129.699842 96.259283) + (xy 129.613808 96.390968) + (xy 129.560662 96.436325) + (xy 129.49143 96.445748) + (xy 129.428095 96.416246) + (xy 129.406192 96.390968) + (xy 129.320157 96.259283) + (xy 129.320149 96.259272) + (xy 129.167049 96.092963) + (xy 129.167048 96.092962) + (xy 129.167046 96.09296) + (xy 128.988649 95.954107) + (xy 128.921 95.917497) + (xy 128.789832 95.846512) + (xy 128.789827 95.84651) + (xy 128.576017 95.773109) + (xy 128.394388 95.742801) + (xy 128.353033 95.7359) + (xy 128.126967 95.7359) + (xy 128.085612 95.742801) + (xy 127.903982 95.773109) + (xy 127.690172 95.84651) + (xy 127.690167 95.846512) + (xy 127.491352 95.954106) + (xy 127.312955 96.092959) + (xy 127.31295 96.092963) + (xy 127.15985 96.259272) + (xy 127.159842 96.259283) + (xy 127.073808 96.390968) + (xy 127.020662 96.436325) + (xy 126.95143 96.445748) + (xy 126.888095 96.416246) + (xy 126.866192 96.390968) + (xy 126.780157 96.259283) + (xy 126.780149 96.259272) + (xy 126.627049 96.092963) + (xy 126.627048 96.092962) + (xy 126.627046 96.09296) + (xy 126.448649 95.954107) + (xy 126.381 95.917497) + (xy 126.249832 95.846512) + (xy 126.249827 95.84651) + (xy 126.036017 95.773109) + (xy 125.854388 95.742801) + (xy 125.813033 95.7359) + (xy 125.586967 95.7359) + (xy 125.545612 95.742801) + (xy 125.363982 95.773109) + (xy 125.150172 95.84651) + (xy 125.150167 95.846512) + (xy 124.951352 95.954106) + (xy 124.772955 96.092959) + (xy 124.77295 96.092963) + (xy 124.61985 96.259272) + (xy 124.619846 96.259278) + (xy 124.533807 96.390969) + (xy 124.48066 96.436325) + (xy 124.411429 96.445748) + (xy 124.348093 96.416245) + (xy 124.326192 96.390969) + (xy 124.240156 96.259281) + (xy 124.240151 96.259276) + (xy 124.240149 96.259272) + (xy 124.087049 96.092963) + (xy 124.087048 96.092962) + (xy 124.087046 96.09296) + (xy 123.908649 95.954107) + (xy 123.841 95.917497) + (xy 123.709832 95.846512) + (xy 123.709827 95.84651) + (xy 123.496017 95.773109) + (xy 123.314388 95.742801) + (xy 123.273033 95.7359) + (xy 123.046967 95.7359) + (xy 123.005612 95.742801) + (xy 122.823982 95.773109) + (xy 122.610172 95.84651) + (xy 122.610167 95.846512) + (xy 122.411352 95.954106) + (xy 122.232955 96.092959) + (xy 122.23295 96.092963) + (xy 122.07985 96.259272) + (xy 122.079842 96.259283) + (xy 121.993808 96.390968) + (xy 121.940662 96.436325) + (xy 121.87143 96.445748) + (xy 121.808095 96.416246) + (xy 121.786192 96.390968) + (xy 121.700157 96.259283) + (xy 121.700149 96.259272) + (xy 121.547049 96.092963) + (xy 121.547048 96.092962) + (xy 121.547046 96.09296) + (xy 121.368649 95.954107) + (xy 121.301 95.917497) + (xy 121.169832 95.846512) + (xy 121.169827 95.84651) + (xy 120.956017 95.773109) + (xy 120.774388 95.742801) + (xy 120.733033 95.7359) + (xy 120.506967 95.7359) + (xy 120.465612 95.742801) + (xy 120.283982 95.773109) + (xy 120.070172 95.84651) + (xy 120.070167 95.846512) + (xy 119.871352 95.954106) + (xy 119.692955 96.092959) + (xy 119.69295 96.092963) + (xy 119.53985 96.259272) + (xy 119.539842 96.259283) + (xy 119.453808 96.390968) + (xy 119.400662 96.436325) + (xy 119.33143 96.445748) + (xy 119.268095 96.416246) + (xy 119.246192 96.390968) + (xy 119.160157 96.259283) + (xy 119.160149 96.259272) + (xy 119.007049 96.092963) + (xy 119.007048 96.092962) + (xy 119.007046 96.09296) + (xy 118.828649 95.954107) + (xy 118.761 95.917497) + (xy 118.629832 95.846512) + (xy 118.629827 95.84651) + (xy 118.416017 95.773109) + (xy 118.234388 95.742801) + (xy 118.193033 95.7359) + (xy 117.966967 95.7359) + (xy 117.925612 95.742801) + (xy 117.743982 95.773109) + (xy 117.530172 95.84651) + (xy 117.530167 95.846512) + (xy 117.331352 95.954106) + (xy 117.152955 96.092959) + (xy 117.15295 96.092963) + (xy 116.99985 96.259272) + (xy 116.999842 96.259283) + (xy 116.913808 96.390968) + (xy 116.860662 96.436325) + (xy 116.79143 96.445748) + (xy 116.728095 96.416246) + (xy 116.706192 96.390968) + (xy 116.620157 96.259283) + (xy 116.620149 96.259272) + (xy 116.467049 96.092963) + (xy 116.467048 96.092962) + (xy 116.467046 96.09296) + (xy 116.288649 95.954107) + (xy 116.221 95.917497) + (xy 116.089832 95.846512) + (xy 116.089827 95.84651) + (xy 115.876017 95.773109) + (xy 115.694388 95.742801) + (xy 115.653033 95.7359) + (xy 115.426967 95.7359) + (xy 115.385612 95.742801) + (xy 115.203982 95.773109) + (xy 114.990172 95.84651) + (xy 114.990167 95.846512) + (xy 114.791352 95.954106) + (xy 114.612955 96.092959) + (xy 114.61295 96.092963) + (xy 114.45985 96.259272) + (xy 114.459842 96.259283) + (xy 114.336198 96.448533) + (xy 114.245388 96.65556) + (xy 114.189892 96.87471) + (xy 114.171225 97.099993) + (xy 114.171225 97.100006) + (xy 112.844775 97.100006) + (xy 112.844775 97.1) + (xy 112.826107 96.874707) + (xy 112.770611 96.655559) + (xy 112.679802 96.448535) + (xy 112.556156 96.259281) + (xy 112.556153 96.259278) + (xy 112.556149 96.259272) + (xy 112.403049 96.092963) + (xy 112.403048 96.092962) + (xy 112.403046 96.09296) + (xy 112.224649 95.954107) + (xy 112.157 95.917497) + (xy 112.025832 95.846512) + (xy 112.025827 95.84651) + (xy 111.812017 95.773109) + (xy 111.630388 95.742801) + (xy 111.589033 95.7359) + (xy 111.362967 95.7359) + (xy 111.321612 95.742801) + (xy 111.139982 95.773109) + (xy 110.926172 95.84651) + (xy 110.926167 95.846512) + (xy 110.727352 95.954106) + (xy 110.548955 96.092959) + (xy 110.54895 96.092963) + (xy 110.39585 96.259272) + (xy 110.395842 96.259283) + (xy 110.309808 96.390968) + (xy 110.256662 96.436325) + (xy 110.18743 96.445748) + (xy 110.124095 96.416246) + (xy 110.102192 96.390968) + (xy 110.016157 96.259283) + (xy 110.016149 96.259272) + (xy 109.863049 96.092963) + (xy 109.863048 96.092962) + (xy 109.863046 96.09296) + (xy 109.684649 95.954107) + (xy 109.617 95.917497) + (xy 109.485832 95.846512) + (xy 109.485827 95.84651) + (xy 109.272017 95.773109) + (xy 109.090388 95.742801) + (xy 109.049033 95.7359) + (xy 108.822967 95.7359) + (xy 108.781612 95.742801) + (xy 108.599982 95.773109) + (xy 108.386172 95.84651) + (xy 108.386167 95.846512) + (xy 108.187352 95.954106) + (xy 108.008955 96.092959) + (xy 108.00895 96.092963) + (xy 107.85585 96.259272) + (xy 107.855842 96.259283) + (xy 107.769808 96.390968) + (xy 107.716662 96.436325) + (xy 107.64743 96.445748) + (xy 107.584095 96.416246) + (xy 107.562192 96.390968) + (xy 107.476157 96.259283) + (xy 107.476149 96.259272) + (xy 107.323049 96.092963) + (xy 107.323048 96.092962) + (xy 107.323046 96.09296) + (xy 107.144649 95.954107) + (xy 107.077 95.917497) + (xy 106.945832 95.846512) + (xy 106.945827 95.84651) + (xy 106.732017 95.773109) + (xy 106.550388 95.742801) + (xy 106.509033 95.7359) + (xy 106.282967 95.7359) + (xy 106.241612 95.742801) + (xy 106.059982 95.773109) + (xy 105.846172 95.84651) + (xy 105.846167 95.846512) + (xy 105.647352 95.954106) + (xy 105.468955 96.092959) + (xy 105.46895 96.092963) + (xy 105.31585 96.259272) + (xy 105.315846 96.259278) + (xy 105.229807 96.390969) + (xy 105.17666 96.436325) + (xy 105.107429 96.445748) + (xy 105.044093 96.416245) + (xy 105.022192 96.390969) + (xy 104.936156 96.259281) + (xy 104.936151 96.259276) + (xy 104.936149 96.259272) + (xy 104.783049 96.092963) + (xy 104.783048 96.092962) + (xy 104.783046 96.09296) + (xy 104.604649 95.954107) + (xy 104.537 95.917497) + (xy 104.405832 95.846512) + (xy 104.405827 95.84651) + (xy 104.192017 95.773109) + (xy 104.010388 95.742801) + (xy 103.969033 95.7359) + (xy 103.742967 95.7359) + (xy 103.701612 95.742801) + (xy 103.519982 95.773109) + (xy 103.306172 95.84651) + (xy 103.306167 95.846512) + (xy 103.107352 95.954106) + (xy 102.928955 96.092959) + (xy 102.92895 96.092963) + (xy 102.77585 96.259272) + (xy 102.775842 96.259283) + (xy 102.689808 96.390968) + (xy 102.636662 96.436325) + (xy 102.56743 96.445748) + (xy 102.504095 96.416246) + (xy 102.482192 96.390968) + (xy 102.396157 96.259283) + (xy 102.396149 96.259272) + (xy 102.243049 96.092963) + (xy 102.243048 96.092962) + (xy 102.243046 96.09296) + (xy 102.064649 95.954107) + (xy 101.997 95.917497) + (xy 101.865832 95.846512) + (xy 101.865827 95.84651) + (xy 101.652017 95.773109) + (xy 101.470388 95.742801) + (xy 101.429033 95.7359) + (xy 101.202967 95.7359) + (xy 101.161612 95.742801) + (xy 100.979982 95.773109) + (xy 100.766172 95.84651) + (xy 100.766167 95.846512) + (xy 100.567352 95.954106) + (xy 100.388955 96.092959) + (xy 100.38895 96.092963) + (xy 100.23585 96.259272) + (xy 100.235842 96.259283) + (xy 100.149808 96.390968) + (xy 100.096662 96.436325) + (xy 100.02743 96.445748) + (xy 99.964095 96.416246) + (xy 99.942192 96.390968) + (xy 99.856157 96.259283) + (xy 99.856149 96.259272) + (xy 99.703049 96.092963) + (xy 99.703048 96.092962) + (xy 99.703046 96.09296) + (xy 99.524649 95.954107) + (xy 99.457 95.917497) + (xy 99.325832 95.846512) + (xy 99.325827 95.84651) + (xy 99.112017 95.773109) + (xy 98.930388 95.742801) + (xy 98.889033 95.7359) + (xy 98.662967 95.7359) + (xy 98.621612 95.742801) + (xy 98.439982 95.773109) + (xy 98.226172 95.84651) + (xy 98.226167 95.846512) + (xy 98.027352 95.954106) + (xy 97.848955 96.092958) + (xy 97.794186 96.152453) + (xy 97.734298 96.188443) + (xy 97.66446 96.186342) + (xy 97.606845 96.146817) + (xy 97.586775 96.111802) + (xy 97.542954 95.994313) + (xy 97.54295 95.994306) + (xy 97.45679 95.879212) + (xy 97.456787 95.879209) + (xy 97.341693 95.793049) + (xy 97.341686 95.793045) + (xy 97.206979 95.742803) + (xy 97.206972 95.742801) + (xy 97.147444 95.7364) + (xy 96.486 95.7364) + (xy 96.486 96.655702) + (xy 96.380592 96.607565) + (xy 96.272334 96.592) + (xy 96.199666 96.592) + (xy 96.091408 96.607565) + (xy 95.986 96.655702) + (xy 95.986 95.7364) + (xy 95.324555 95.7364) + (xy 95.265027 95.742801) + (xy 95.26502 95.742803) + (xy 95.130313 95.793045) + (xy 95.130306 95.793049) + (xy 95.015212 95.879209) + (xy 95.015209 95.879212) + (xy 94.929049 95.994306) + (xy 94.929046 95.994312) + (xy 94.885224 96.111803) + (xy 94.843352 96.167736) + (xy 94.777887 96.192153) + (xy 94.709615 96.177301) + (xy 94.677813 96.152452) + (xy 94.623049 96.092963) + (xy 94.623048 96.092962) + (xy 94.623046 96.09296) + (xy 94.444649 95.954107) + (xy 94.377 95.917497) + (xy 94.245832 95.846512) + (xy 94.245827 95.84651) + (xy 94.032017 95.773109) + (xy 93.850388 95.742801) + (xy 93.809033 95.7359) + (xy 93.582967 95.7359) + (xy 93.541612 95.742801) + (xy 93.359982 95.773109) + (xy 93.146172 95.84651) + (xy 93.146167 95.846512) + (xy 92.947352 95.954106) + (xy 92.768955 96.092959) + (xy 92.76895 96.092963) + (xy 92.61585 96.259272) + (xy 92.615842 96.259283) + (xy 92.529808 96.390968) + (xy 92.476662 96.436325) + (xy 92.40743 96.445748) + (xy 92.344095 96.416246) + (xy 92.322192 96.390968) + (xy 92.236157 96.259283) + (xy 92.236149 96.259272) + (xy 92.083049 96.092963) + (xy 92.083048 96.092962) + (xy 92.083046 96.09296) + (xy 91.904649 95.954107) + (xy 91.837 95.917497) + (xy 91.705832 95.846512) + (xy 91.705827 95.84651) + (xy 91.492017 95.773109) + (xy 91.310388 95.742801) + (xy 91.269033 95.7359) + (xy 91.042967 95.7359) + (xy 91.001612 95.742801) + (xy 90.819982 95.773109) + (xy 90.606172 95.84651) + (xy 90.606167 95.846512) + (xy 90.407352 95.954106) + (xy 90.228955 96.092959) + (xy 90.22895 96.092963) + (xy 90.07585 96.259272) + (xy 90.075842 96.259283) + (xy 89.989808 96.390968) + (xy 89.936662 96.436325) + (xy 89.86743 96.445748) + (xy 89.804095 96.416246) + (xy 89.782192 96.390968) + (xy 89.696157 96.259283) + (xy 89.696149 96.259272) + (xy 89.543049 96.092963) + (xy 89.543048 96.092962) + (xy 89.543046 96.09296) + (xy 89.364649 95.954107) + (xy 89.297 95.917497) + (xy 89.165832 95.846512) + (xy 89.165827 95.84651) + (xy 88.952017 95.773109) + (xy 88.770388 95.742801) + (xy 88.729033 95.7359) + (xy 88.502967 95.7359) + (xy 88.461612 95.742801) + (xy 88.279982 95.773109) + (xy 88.066172 95.84651) + (xy 88.066167 95.846512) + (xy 87.867352 95.954106) + (xy 87.688955 96.092959) + (xy 87.68895 96.092963) + (xy 87.53585 96.259272) + (xy 87.535842 96.259283) + (xy 87.412198 96.448533) + (xy 87.321388 96.65556) + (xy 87.265892 96.87471) + (xy 87.247225 97.099993) + (xy 87.247225 97.100006) + (xy 86.8255 97.100006) + (xy 86.8255 96.446847) + (xy 86.845185 96.379808) + (xy 86.861819 96.359166) + (xy 87.859167 95.361819) + (xy 87.92049 95.328334) + (xy 87.946848 95.3255) + (xy 135.689548 95.3255) + (xy 135.756587 95.345185) + (xy 135.777229 95.361819) + (xy 137.048612 96.633202) + (xy 137.082097 96.694525) + (xy 137.081137 96.751322) + (xy 137.049892 96.874708) + (xy 137.031225 97.099993) + (xy 137.031225 97.100006) + (xy 137.049892 97.325289) + (xy 137.105388 97.544439) + (xy 137.196198 97.751466) + (xy 137.319842 97.940716) + (xy 137.31985 97.940727) + (xy 137.47295 98.107036) (xy 137.472954 98.10704) (xy 137.651351 98.245893) (xy 137.850169 98.353488) @@ -32936,8 +15562,6 @@ (xy 138.513032 98.4641) (xy 138.513033 98.4641) (xy 138.736014 98.426891) - (xy 138.741919 98.424864) - (xy 138.769492 98.415398) (xy 138.949831 98.353488) (xy 139.148649 98.245893) (xy 139.327046 98.10704) @@ -32950,7 +15574,7 @@ (xy 139.859844 97.940719) (xy 139.859849 97.940724) (xy 139.85985 97.940727) - (xy 139.99662 98.089297) + (xy 140.01295 98.107036) (xy 140.012954 98.10704) (xy 140.191351 98.245893) (xy 140.390169 98.353488) @@ -32963,8 +15587,6 @@ (xy 141.053032 98.4641) (xy 141.053033 98.4641) (xy 141.276014 98.426891) - (xy 141.281919 98.424864) - (xy 141.309492 98.415398) (xy 141.489831 98.353488) (xy 141.688649 98.245893) (xy 141.867046 98.10704) @@ -32977,7 +15599,7 @@ (xy 142.399844 97.940719) (xy 142.399849 97.940724) (xy 142.39985 97.940727) - (xy 142.53662 98.089297) + (xy 142.55295 98.107036) (xy 142.552954 98.10704) (xy 142.731351 98.245893) (xy 142.930169 98.353488) @@ -32990,178 +15612,6904 @@ (xy 143.593032 98.4641) (xy 143.593033 98.4641) (xy 143.816014 98.426891) - (xy 143.821918 98.424863) - (xy 143.891714 98.421708) - (xy 143.94987 98.454461) - (xy 144.908181 99.412771) - (xy 144.941666 99.474094) - (xy 144.9445 99.500452) - (xy 144.9445 116.196754) - (xy 144.924815 116.263793) - (xy 144.908181 116.284435) - (xy 143.654436 117.538181) - (xy 143.593113 117.571666) - (xy 143.566755 117.5745) - (xy 135.889452 117.5745) - (xy 135.822413 117.554815) - (xy 135.801771 117.538181) - (xy 132.439267 114.175677) - (xy 129.065303 110.801712) - (xy 129.05548 110.78945) - (xy 129.055259 110.789634) - (xy 129.050286 110.783622) - (xy 129.000566 110.736932) - (xy 128.999166 110.735575) - (xy 128.978976 110.715384) - (xy 128.973486 110.711125) - (xy 128.969061 110.707347) - (xy 128.935082 110.675438) - (xy 128.93508 110.675436) - (xy 128.935077 110.675435) - (xy 128.917529 110.665788) - (xy 128.901263 110.655104) - (xy 128.885433 110.642825) - (xy 128.842668 110.624318) - (xy 128.837422 110.621748) - (xy 128.796593 110.599303) - (xy 128.796592 110.599302) - (xy 128.777193 110.594322) - (xy 128.758781 110.588018) - (xy 128.740398 110.580062) - (xy 128.740392 110.58006) - (xy 128.694374 110.572772) - (xy 128.688652 110.571587) - (xy 128.643521 110.56) - (xy 128.643519 110.56) - (xy 128.623484 110.56) - (xy 128.604086 110.558473) - (xy 128.596662 110.557297) - (xy 128.584305 110.55534) - (xy 128.584304 110.55534) - (xy 128.537916 110.559725) - (xy 128.532078 110.56) - (xy 127.197871 110.56) - (xy 127.130832 110.540315) - (xy 127.094063 110.503822) - (xy 126.990157 110.344783) - (xy 126.990149 110.344772) - (xy 126.837045 110.178459) - (xy 126.695346 110.06817) - (xy 126.658649 110.039607) - (xy 126.56581 109.989365) - (xy 126.459832 109.932012) - (xy 126.459827 109.93201) - (xy 126.246017 109.858609) - (xy 126.064388 109.828301) - (xy 126.023033 109.8214) - (xy 125.796967 109.8214) - (xy 125.755612 109.828301) - (xy 125.573982 109.858609) - (xy 125.360172 109.93201) - (xy 125.360167 109.932012) - (xy 125.161352 110.039606) - (xy 124.982955 110.178459) - (xy 124.82985 110.344772) - (xy 124.829842 110.344783) - (xy 124.706198 110.534033) - (xy 124.615388 110.74106) - (xy 124.559892 110.96021) - (xy 124.541225 111.185493) - (xy 124.541225 111.185506) - (xy 124.559892 111.410789) - (xy 124.615388 111.629939) - (xy 124.706198 111.836966) - (xy 124.829842 112.026216) - (xy 124.82985 112.026227) - (xy 124.949757 112.156479) - (xy 124.982954 112.19254) - (xy 125.161351 112.331393) - (xy 125.189165 112.346445) - (xy 125.238755 112.395665) - (xy 125.253863 112.463882) - (xy 125.229692 112.529437) - (xy 125.189165 112.564554) - (xy 125.186774 112.565849) - (xy 125.161352 112.579606) - (xy 124.982955 112.718459) - (xy 124.98295 112.718463) - (xy 124.82985 112.884772) - (xy 124.829842 112.884783) - (xy 124.725937 113.043822) - (xy 124.672791 113.089178) - (xy 124.622129 113.1) - (xy 123.907243 113.1) - (xy 123.891622 113.098275) - (xy 123.891595 113.098561) - (xy 123.883833 113.097826) - (xy 123.81564 113.099969) - (xy 123.813693 113.1) - (xy 123.785149 113.1) - (xy 123.778278 113.100867) - (xy 123.772459 113.101325) - (xy 123.725874 113.102789) - (xy 123.725868 113.10279) - (xy 123.706626 113.10838) - (xy 123.687587 113.112323) - (xy 123.667717 113.114834) - (xy 123.667703 113.114837) - (xy 123.624383 113.131988) - (xy 123.618858 113.13388) - (xy 123.574113 113.14688) - (xy 123.57411 113.146881) - (xy 123.556866 113.157079) - (xy 123.539405 113.165633) - (xy 123.520774 113.17301) - (xy 123.520762 113.173017) - (xy 123.48307 113.200402) - (xy 123.478187 113.203609) - (xy 123.43808 113.227329) - (xy 123.423914 113.241495) - (xy 123.409124 113.254127) - (xy 123.392914 113.265904) - (xy 123.392911 113.265907) - (xy 123.36321 113.301809) - (xy 123.359277 113.306131) - (xy 122.066208 114.599199) - (xy 122.053951 114.60902) - (xy 122.054134 114.609241) - (xy 122.048122 114.614214) - (xy 122.001432 114.663932) - (xy 122.000079 114.665329) - (xy 121.979889 114.685519) - (xy 121.979877 114.685532) - (xy 121.975621 114.691017) - (xy 121.971837 114.695447) - (xy 121.939937 114.729418) - (xy 121.939936 114.72942) - (xy 121.930284 114.746976) - (xy 121.91961 114.763226) - (xy 121.907329 114.779061) - (xy 121.907324 114.779068) - (xy 121.888815 114.821838) - (xy 121.886245 114.827084) - (xy 121.863803 114.867906) - (xy 121.858822 114.887307) - (xy 121.852521 114.90571) - (xy 121.844562 114.924102) - (xy 121.844561 114.924105) - (xy 121.837271 114.970127) - (xy 121.836087 114.975846) - (xy 121.824501 115.020972) - (xy 121.8245 115.020982) - (xy 121.8245 115.041016) - (xy 121.822973 115.060415) - (xy 121.81984 115.080194) - (xy 121.819839 115.080197) - (xy 121.824224 115.126585) - (xy 121.824499 115.132421) - (xy 121.8245 117.620981) - (xy 121.8245 117.641016) - (xy 121.822973 117.660415) - (xy 121.81984 117.680194) - (xy 121.81984 117.680195) - (xy 121.824225 117.726583) - (xy 121.8245 117.732421) + (xy 144.029831 98.353488) + (xy 144.228649 98.245893) + (xy 144.407046 98.10704) + (xy 144.560156 97.940719) + (xy 144.646193 97.809028) + (xy 144.699338 97.763675) + (xy 144.768569 97.754251) + (xy 144.831905 97.783753) + (xy 144.853804 97.809025) + (xy 144.939844 97.940719) + (xy 144.939849 97.940724) + (xy 144.93985 97.940727) + (xy 145.09295 98.107036) + (xy 145.092954 98.10704) + (xy 145.271351 98.245893) + (xy 145.470169 98.353488) + (xy 145.470172 98.353489) + (xy 145.683982 98.42689) + (xy 145.683984 98.42689) + (xy 145.683986 98.426891) + (xy 145.906967 98.4641) + (xy 145.906968 98.4641) + (xy 146.133032 98.4641) + (xy 146.133033 98.4641) + (xy 146.356014 98.426891) + (xy 146.569831 98.353488) + (xy 146.768649 98.245893) + (xy 146.947046 98.10704) + (xy 147.100156 97.940719) + (xy 147.186193 97.809028) + (xy 147.239338 97.763675) + (xy 147.308569 97.754251) + (xy 147.371905 97.783753) + (xy 147.393804 97.809025) + (xy 147.479844 97.940719) + (xy 147.479849 97.940724) + (xy 147.47985 97.940727) + (xy 147.63295 98.107036) + (xy 147.632954 98.10704) + (xy 147.811351 98.245893) + (xy 147.869517 98.27737) + (xy 147.919107 98.326588) + (xy 147.9345 98.386425) + (xy 147.9345 102.539546) + (xy 147.914815 102.606585) + (xy 147.898181 102.627227) + (xy 125.516208 125.009199) + (xy 125.503951 125.01902) + (xy 125.504134 125.019241) + (xy 125.498122 125.024214) + (xy 125.451432 125.073932) + (xy 125.450079 125.075329) + (xy 125.429889 125.095519) + (xy 125.429877 125.095532) + (xy 125.425621 125.101017) + (xy 125.421837 125.105447) + (xy 125.389937 125.139418) + (xy 125.389936 125.13942) + (xy 125.380284 125.156976) + (xy 125.36961 125.173226) + (xy 125.357329 125.189061) + (xy 125.357324 125.189068) + (xy 125.338815 125.231838) + (xy 125.336245 125.237084) + (xy 125.313803 125.277906) + (xy 125.308822 125.297307) + (xy 125.302521 125.31571) + (xy 125.294562 125.334102) + (xy 125.294561 125.334106) + (xy 125.287271 125.380127) + (xy 125.286087 125.385846) + (xy 125.274499 125.430983) + (xy 125.274499 125.451019) + (xy 125.272973 125.470407) + (xy 125.26984 125.490192) + (xy 125.26984 125.490195) + (xy 125.274225 125.536583) + (xy 125.2745 125.542421) + (xy 125.2745 126.093573) + (xy 125.254815 126.160612) + (xy 125.209519 126.202627) + (xy 125.151356 126.234103) + (xy 125.151353 126.234105) + (xy 124.972955 126.372959) + (xy 124.81985 126.539272) + (xy 124.819842 126.539283) + (xy 124.696198 126.728533) + (xy 124.605388 126.93556) + (xy 124.549892 127.15471) + (xy 124.531225 127.379993) + (xy 124.531225 127.380006) + (xy 124.549892 127.605289) + (xy 124.605388 127.824439) + (xy 124.696198 128.031466) + (xy 124.819842 128.220716) + (xy 124.81985 128.220727) + (xy 124.939757 128.350979) + (xy 124.972954 128.38704) + (xy 125.151351 128.525893) + (xy 125.151353 128.525894) + (xy 125.151356 128.525896) + (xy 125.160803 128.531008) + (xy 125.179163 128.540944) + (xy 125.228754 128.590161) + (xy 125.243864 128.658378) + (xy 125.219694 128.723934) + (xy 125.179167 128.759052) + (xy 125.151361 128.7741) + (xy 125.151353 128.774105) + (xy 124.972955 128.912959) + (xy 124.97295 128.912963) + (xy 124.81985 129.079272) + (xy 124.819842 129.079283) + (xy 124.715937 129.238322) + (xy 124.662791 129.283678) + (xy 124.612129 129.2945) + (xy 123.852743 129.2945) + (xy 123.837122 129.292775) + (xy 123.837095 129.293061) + (xy 123.829333 129.292326) + (xy 123.76114 129.294469) + (xy 123.759193 129.2945) + (xy 123.730649 129.2945) + (xy 123.723778 129.295367) + (xy 123.717959 129.295825) + (xy 123.671374 129.297289) + (xy 123.671368 129.29729) + (xy 123.652126 129.30288) + (xy 123.633087 129.306823) + (xy 123.613217 129.309334) + (xy 123.613203 129.309337) + (xy 123.569883 129.326488) + (xy 123.564358 129.32838) + (xy 123.519613 129.34138) + (xy 123.51961 129.341381) + (xy 123.502366 129.351579) + (xy 123.484905 129.360133) + (xy 123.466274 129.36751) + (xy 123.466262 129.367517) + (xy 123.42857 129.394902) + (xy 123.423687 129.398109) + (xy 123.38358 129.421829) + (xy 123.369414 129.435995) + (xy 123.354624 129.448627) + (xy 123.338414 129.460404) + (xy 123.338411 129.460407) + (xy 123.30871 129.496309) + (xy 123.304777 129.500631) + (xy 122.016208 130.789199) + (xy 122.003951 130.79902) + (xy 122.004134 130.799241) + (xy 121.998122 130.804214) + (xy 121.951432 130.853932) + (xy 121.950079 130.855329) + (xy 121.929889 130.875519) + (xy 121.929877 130.875532) + (xy 121.925621 130.881017) + (xy 121.921837 130.885447) + (xy 121.889937 130.919418) + (xy 121.889936 130.91942) + (xy 121.880284 130.936976) + (xy 121.86961 130.953226) + (xy 121.857329 130.969061) + (xy 121.857324 130.969068) + (xy 121.838815 131.011838) + (xy 121.836245 131.017084) + (xy 121.813803 131.057906) + (xy 121.808822 131.077307) + (xy 121.802521 131.09571) + (xy 121.794562 131.114102) + (xy 121.794561 131.114105) + (xy 121.787271 131.160127) + (xy 121.786087 131.165846) + (xy 121.774501 131.210972) + (xy 121.7745 131.210982) + (xy 121.7745 131.231016) + (xy 121.772973 131.250415) + (xy 121.76984 131.270194) + (xy 121.76984 131.270195) + (xy 121.774225 131.316583) + (xy 121.7745 131.322421) + (xy 121.7745 133.821016) + (xy 121.772973 133.840415) + (xy 121.76984 133.860194) + (xy 121.769839 133.860197) + (xy 121.774224 133.906584) + (xy 121.774499 133.91242) + (xy 121.7745 134.02098) + (xy 121.7745 134.907255) + (xy 121.772775 134.922872) + (xy 121.773061 134.922899) + (xy 121.772326 134.930666) + (xy 121.774469 134.998846) + (xy 121.7745 135.000793) + (xy 121.7745 135.029343) + (xy 121.774501 135.02936) + (xy 121.775368 135.036231) + (xy 121.775826 135.04205) + (xy 121.77729 135.088624) + (xy 121.777291 135.088627) + (xy 121.78288 135.107867) + (xy 121.786824 135.126911) + (xy 121.787409 135.131535) + (xy 121.789336 135.146791) + (xy 121.80649 135.190119) + (xy 121.808382 135.195647) + (xy 121.816995 135.225293) + (xy 121.821382 135.24039) + (xy 121.829523 135.254157) + (xy 121.83158 135.257634) + (xy 121.840138 135.275103) + (xy 121.847514 135.293732) + (xy 121.874898 135.331423) + (xy 121.878106 135.336307) + (xy 121.901827 135.376416) + (xy 121.901833 135.376424) + (xy 121.91599 135.39058) + (xy 121.928628 135.405376) + (xy 121.940405 135.421586) + (xy 121.940406 135.421587) + (xy 121.976309 135.451288) + (xy 121.98062 135.45521) + (xy 123.86553 137.340121) + (xy 124.489197 137.963788) + (xy 124.499022 137.976051) + (xy 124.499243 137.975869) + (xy 124.504211 137.981874) + (xy 124.553932 138.028566) + (xy 124.555332 138.029923) + (xy 124.575523 138.050115) + (xy 124.575527 138.050118) + (xy 124.575529 138.05012) + (xy 124.581011 138.054373) + (xy 124.585443 138.058157) + (xy 124.619418 138.090062) + (xy 124.636976 138.099714) + (xy 124.653235 138.110395) + (xy 124.669064 138.122673) + (xy 124.711838 138.141182) + (xy 124.717056 138.143738) + (xy 124.757908 138.166197) + (xy 124.777316 138.17118) + (xy 124.795717 138.17748) + (xy 124.814104 138.185437) + (xy 124.857488 138.192308) + (xy 124.860119 138.192725) + (xy 124.865839 138.193909) + (xy 124.910981 138.2055) + (xy 124.931016 138.2055) + (xy 124.950414 138.207026) + (xy 124.970194 138.210159) + (xy 124.970195 138.21016) + (xy 124.970195 138.210159) + (xy 124.970196 138.21016) + (xy 125.016583 138.205775) + (xy 125.022422 138.2055) + (xy 127.787257 138.2055) + (xy 127.802877 138.207224) + (xy 127.802904 138.206939) + (xy 127.810666 138.207673) + (xy 127.810666 138.207672) + (xy 127.810667 138.207673) + (xy 127.813999 138.207568) + (xy 127.878847 138.205531) + (xy 127.880794 138.2055) + (xy 127.909347 138.2055) + (xy 127.90935 138.2055) + (xy 127.916228 138.20463) + (xy 127.922041 138.204172) + (xy 127.968627 138.202709) + (xy 127.987869 138.197117) + (xy 128.006912 138.193174) + (xy 128.026792 138.190664) + (xy 128.070122 138.173507) + (xy 128.075646 138.171617) + (xy 128.079396 138.170527) + (xy 128.12039 138.158618) + (xy 128.137629 138.148422) + (xy 128.155103 138.139862) + (xy 128.173727 138.132488) + (xy 128.173727 138.132487) + (xy 128.173732 138.132486) + (xy 128.211449 138.105082) + (xy 128.216305 138.101892) + (xy 128.25642 138.07817) + (xy 128.270589 138.063999) + (xy 128.285379 138.051368) + (xy 128.301587 138.039594) + (xy 128.331299 138.003676) + (xy 128.335212 137.999376) + (xy 131.153788 135.180801) + (xy 131.166042 135.170986) + (xy 131.165859 135.170764) + (xy 131.171868 135.165791) + (xy 131.171877 135.165786) + (xy 131.218607 135.116022) + (xy 131.219846 135.114743) + (xy 131.24012 135.094471) + (xy 131.244379 135.088978) + (xy 131.248152 135.084561) + (xy 131.280062 135.050582) + (xy 131.289713 135.033024) + (xy 131.300396 135.016761) + (xy 131.312673 135.000936) + (xy 131.331185 134.958153) + (xy 131.333738 134.952941) + (xy 131.356197 134.912092) + (xy 131.36118 134.89268) + (xy 131.367481 134.87428) + (xy 131.375437 134.855896) + (xy 131.382729 134.809852) + (xy 131.383906 134.804171) + (xy 131.3955 134.759019) + (xy 131.3955 134.738982) + (xy 131.397027 134.719582) + (xy 131.40016 134.699804) + (xy 131.395775 134.653415) + (xy 131.3955 134.647577) + (xy 131.3955 122.223244) + (xy 131.415185 122.156205) + (xy 131.431819 122.135563) + (xy 149.905564 103.661819) + (xy 149.966887 103.628334) + (xy 149.993245 103.6255) + (xy 160.267257 103.6255) + (xy 160.282877 103.627224) + (xy 160.282904 103.626939) + (xy 160.290666 103.627673) + (xy 160.290666 103.627672) + (xy 160.290667 103.627673) + (xy 160.293999 103.627568) + (xy 160.358847 103.625531) + (xy 160.360794 103.6255) + (xy 160.389347 103.6255) + (xy 160.38935 103.6255) + (xy 160.396228 103.62463) + (xy 160.402041 103.624172) + (xy 160.448627 103.622709) + (xy 160.467869 103.617117) + (xy 160.486912 103.613174) + (xy 160.506792 103.610664) + (xy 160.550122 103.593507) + (xy 160.555646 103.591617) + (xy 160.559396 103.590527) + (xy 160.60039 103.578618) + (xy 160.617629 103.568422) + (xy 160.635103 103.559862) + (xy 160.653727 103.552488) + (xy 160.653727 103.552487) + (xy 160.653732 103.552486) + (xy 160.691449 103.525082) + (xy 160.696305 103.521892) + (xy 160.73642 103.49817) + (xy 160.750589 103.483999) + (xy 160.765379 103.471368) + (xy 160.781587 103.459594) + (xy 160.811299 103.423676) + (xy 160.815212 103.419376) + (xy 162.226064 102.008524) + (xy 162.287385 101.975041) + (xy 162.357077 101.980025) + (xy 162.41301 102.021897) + (xy 162.437427 102.087361) + (xy 162.43732 102.106442) + (xy 162.432322 102.166768) + (xy 162.431225 102.180004) + (xy 162.431225 102.180006) + (xy 162.449892 102.405289) + (xy 162.505388 102.624439) + (xy 162.596198 102.831466) + (xy 162.719842 103.020716) + (xy 162.71985 103.020727) + (xy 162.87295 103.187036) + (xy 162.872954 103.18704) + (xy 163.051351 103.325893) + (xy 163.051353 103.325894) + (xy 163.051356 103.325896) + (xy 163.060803 103.331008) + (xy 163.079163 103.340944) + (xy 163.128754 103.390161) + (xy 163.143864 103.458378) + (xy 163.119694 103.523934) + (xy 163.079167 103.559052) + (xy 163.051361 103.5741) + (xy 163.051353 103.574105) + (xy 162.872955 103.712959) + (xy 162.87295 103.712963) + (xy 162.71985 103.879272) + (xy 162.719842 103.879283) + (xy 162.596198 104.068533) + (xy 162.505388 104.27556) + (xy 162.449892 104.49471) + (xy 162.431225 104.719993) + (xy 162.431225 104.720006) + (xy 162.449892 104.945289) + (xy 162.505388 105.164439) + (xy 162.596198 105.371466) + (xy 162.719842 105.560716) + (xy 162.71985 105.560727) + (xy 162.817469 105.666768) + (xy 162.872954 105.72704) + (xy 163.051351 105.865893) + (xy 163.079165 105.880945) + (xy 163.128755 105.930165) + (xy 163.143863 105.998382) + (xy 163.119692 106.063937) + (xy 163.079165 106.099055) + (xy 163.051352 106.114106) + (xy 162.872955 106.252959) + (xy 162.87295 106.252963) + (xy 162.71985 106.419272) + (xy 162.719842 106.419283) + (xy 162.596198 106.608533) + (xy 162.505388 106.81556) + (xy 162.449892 107.03471) + (xy 162.431225 107.259993) + (xy 162.431225 107.260006) + (xy 162.449892 107.485289) + (xy 162.505388 107.704439) + (xy 162.596198 107.911466) + (xy 162.719842 108.100716) + (xy 162.71985 108.100727) + (xy 162.87295 108.267036) + (xy 162.872954 108.26704) + (xy 163.051351 108.405893) + (xy 163.079165 108.420945) + (xy 163.128755 108.470165) + (xy 163.143863 108.538382) + (xy 163.119692 108.603937) + (xy 163.079165 108.639055) + (xy 163.051352 108.654106) + (xy 162.872955 108.792959) + (xy 162.87295 108.792963) + (xy 162.71985 108.959272) + (xy 162.719842 108.959283) + (xy 162.596198 109.148533) + (xy 162.505388 109.35556) + (xy 162.449892 109.57471) + (xy 162.431225 109.799993) + (xy 162.431225 109.800006) + (xy 162.449892 110.025289) + (xy 162.505388 110.244439) + (xy 162.596198 110.451466) + (xy 162.719842 110.640716) + (xy 162.71985 110.640727) + (xy 162.87295 110.807036) + (xy 162.872954 110.80704) + (xy 163.051351 110.945893) + (xy 163.079159 110.960942) + (xy 163.079165 110.960945) + (xy 163.128755 111.010165) + (xy 163.143863 111.078382) + (xy 163.119692 111.143937) + (xy 163.079165 111.179055) + (xy 163.051352 111.194106) + (xy 162.872955 111.332959) + (xy 162.87295 111.332963) + (xy 162.71985 111.499272) + (xy 162.719842 111.499283) + (xy 162.596198 111.688533) + (xy 162.505388 111.89556) + (xy 162.449892 112.11471) + (xy 162.431225 112.339993) + (xy 162.431225 112.340006) + (xy 162.449892 112.565289) + (xy 162.505388 112.784439) + (xy 162.596198 112.991466) + (xy 162.719842 113.180716) + (xy 162.71985 113.180727) + (xy 162.865418 113.338854) + (xy 162.872954 113.34704) + (xy 163.051351 113.485893) + (xy 163.072544 113.497362) + (xy 163.079165 113.500945) + (xy 163.128755 113.550165) + (xy 163.143863 113.618382) + (xy 163.119692 113.683937) + (xy 163.079165 113.719055) + (xy 163.051352 113.734106) + (xy 162.872955 113.872959) + (xy 162.87295 113.872963) + (xy 162.71985 114.039272) + (xy 162.719842 114.039283) + (xy 162.596198 114.228533) + (xy 162.505388 114.43556) + (xy 162.449892 114.65471) + (xy 162.431225 114.879993) + (xy 162.431225 114.880006) + (xy 162.449892 115.105289) + (xy 162.505388 115.324439) + (xy 162.596198 115.531466) + (xy 162.719842 115.720716) + (xy 162.71985 115.720727) + (xy 162.855877 115.86849) + (xy 162.872954 115.88704) + (xy 163.051351 116.025893) + (xy 163.051353 116.025894) + (xy 163.051356 116.025896) + (xy 163.060803 116.031008) + (xy 163.079163 116.040944) + (xy 163.128754 116.090161) + (xy 163.143864 116.158378) + (xy 163.119694 116.223934) + (xy 163.079167 116.259052) + (xy 163.051361 116.2741) + (xy 163.051353 116.274105) + (xy 162.872955 116.412959) + (xy 162.87295 116.412963) + (xy 162.71985 116.579272) + (xy 162.719842 116.579283) + (xy 162.596198 116.768533) + (xy 162.505388 116.97556) + (xy 162.449892 117.19471) + (xy 162.431225 117.419993) + (xy 162.431225 117.420006) + (xy 162.449892 117.645289) + (xy 162.505388 117.864439) + (xy 162.596198 118.071466) + (xy 162.719842 118.260716) + (xy 162.71985 118.260727) + (xy 162.87295 118.427036) + (xy 162.872954 118.42704) + (xy 163.051351 118.565893) + (xy 163.079165 118.580945) + (xy 163.128755 118.630165) + (xy 163.143863 118.698382) + (xy 163.119692 118.763937) + (xy 163.079165 118.799055) + (xy 163.051352 118.814106) + (xy 162.872955 118.952959) + (xy 162.87295 118.952963) + (xy 162.71985 119.119272) + (xy 162.719842 119.119283) + (xy 162.596198 119.308533) + (xy 162.505388 119.51556) + (xy 162.449892 119.73471) + (xy 162.431225 119.959993) + (xy 162.431225 119.960006) + (xy 162.449892 120.185289) + (xy 162.505388 120.404439) + (xy 162.596198 120.611466) + (xy 162.719842 120.800716) + (xy 162.71985 120.800727) + (xy 162.87295 120.967036) + (xy 162.872954 120.96704) + (xy 163.051351 121.105893) + (xy 163.079165 121.120945) + (xy 163.128755 121.170165) + (xy 163.143863 121.238382) + (xy 163.119692 121.303937) + (xy 163.079165 121.339055) + (xy 163.051352 121.354106) + (xy 162.872955 121.492959) + (xy 162.87295 121.492963) + (xy 162.71985 121.659272) + (xy 162.719842 121.659283) + (xy 162.596198 121.848533) + (xy 162.505388 122.05556) + (xy 162.449892 122.27471) + (xy 162.431225 122.499993) + (xy 162.431225 122.500006) + (xy 162.449892 122.725289) + (xy 162.505388 122.944439) + (xy 162.596198 123.151466) + (xy 162.719842 123.340716) + (xy 162.71985 123.340727) + (xy 162.87295 123.507036) + (xy 162.872954 123.50704) + (xy 163.051351 123.645893) + (xy 163.079159 123.660942) + (xy 163.079165 123.660945) + (xy 163.128755 123.710165) + (xy 163.143863 123.778382) + (xy 163.119692 123.843937) + (xy 163.079165 123.879055) + (xy 163.051352 123.894106) + (xy 162.872955 124.032959) + (xy 162.87295 124.032963) + (xy 162.71985 124.199272) + (xy 162.719842 124.199283) + (xy 162.596198 124.388533) + (xy 162.505388 124.59556) + (xy 162.449892 124.81471) + (xy 162.431225 125.039993) + (xy 162.431225 125.040006) + (xy 162.449892 125.265289) + (xy 162.505388 125.484439) + (xy 162.596198 125.691466) + (xy 162.719842 125.880716) + (xy 162.71985 125.880727) + (xy 162.85064 126.022801) + (xy 162.872954 126.04704) + (xy 163.051351 126.185893) + (xy 163.079165 126.200945) + (xy 163.128755 126.250165) + (xy 163.143863 126.318382) + (xy 163.119692 126.383937) + (xy 163.079165 126.419055) + (xy 163.051352 126.434106) + (xy 162.872955 126.572959) + (xy 162.87295 126.572963) + (xy 162.71985 126.739272) + (xy 162.719842 126.739283) + (xy 162.596198 126.928533) + (xy 162.505388 127.13556) + (xy 162.449892 127.35471) + (xy 162.431225 127.579993) + (xy 162.431225 127.580006) + (xy 162.449892 127.805289) + (xy 162.505388 128.024439) + (xy 162.596198 128.231466) + (xy 162.719842 128.420716) + (xy 162.71985 128.420727) + (xy 162.844287 128.5559) + (xy 162.872954 128.58704) + (xy 163.051351 128.725893) + (xy 163.051353 128.725894) + (xy 163.051356 128.725896) + (xy 163.060803 128.731008) + (xy 163.079163 128.740944) + (xy 163.128754 128.790161) + (xy 163.143864 128.858378) + (xy 163.119694 128.923934) + (xy 163.079167 128.959052) + (xy 163.051361 128.9741) + (xy 163.051353 128.974105) + (xy 162.872955 129.112959) + (xy 162.87295 129.112963) + (xy 162.71985 129.279272) + (xy 162.719842 129.279283) + (xy 162.596198 129.468533) + (xy 162.505388 129.67556) + (xy 162.449892 129.89471) + (xy 162.431225 130.119993) + (xy 162.431225 130.120006) + (xy 162.449892 130.345289) + (xy 162.505388 130.564439) + (xy 162.596198 130.771466) + (xy 162.719842 130.960716) + (xy 162.71985 130.960727) + (xy 162.861046 131.114105) + (xy 162.872954 131.12704) + (xy 163.051351 131.265893) + (xy 163.079159 131.280942) + (xy 163.079165 131.280945) + (xy 163.128755 131.330165) + (xy 163.143863 131.398382) + (xy 163.119692 131.463937) + (xy 163.079165 131.499054) + (xy 163.077411 131.500004) + (xy 163.051352 131.514106) + (xy 162.872955 131.652959) + (xy 162.87295 131.652963) + (xy 162.71985 131.819272) + (xy 162.719842 131.819283) + (xy 162.596198 132.008533) + (xy 162.505388 132.21556) + (xy 162.449892 132.43471) + (xy 162.437993 132.578309) + (xy 162.41284 132.643494) + (xy 162.356438 132.684732) + (xy 162.286694 132.68893) + (xy 162.226736 132.65575) + (xy 152.722452 123.151466) + (xy 143.039248 113.468261) + (xy 143.005763 113.406938) + (xy 143.003608 113.367619) + (xy 143.00546 113.35) + (xy 142.985674 113.161744) + (xy 142.927179 112.981716) + (xy 142.832533 112.817784) + (xy 142.705871 112.677112) + (xy 142.691634 112.666768) + (xy 142.552734 112.565851) + (xy 142.552729 112.565848) + (xy 142.379807 112.488857) + (xy 142.379802 112.488855) + (xy 142.234001 112.457865) + (xy 142.194646 112.4495) + (xy 142.005354 112.4495) + (xy 141.972897 112.456398) + (xy 141.820197 112.488855) + (xy 141.820192 112.488857) + (xy 141.64727 112.565848) + (xy 141.647265 112.565851) + (xy 141.494129 112.677111) + (xy 141.367466 112.817785) + (xy 141.272821 112.981715) + (xy 141.272818 112.981722) + (xy 141.214327 113.161739) + (xy 141.214327 113.16174) + (xy 141.214326 113.161744) + (xy 141.211202 113.191466) + (xy 141.206798 113.233368) + (xy 141.180213 113.297982) + (xy 141.125966 113.335836) + (xy 141.126134 113.336212) + (xy 141.124184 113.337079) + (xy 141.122915 113.337966) + (xy 141.121801 113.338334) + (xy 141.120197 113.338854) + (xy 140.94727 113.415848) + (xy 140.947265 113.415851) + (xy 140.794129 113.527111) + (xy 140.667466 113.667785) + (xy 140.572821 113.831715) + (xy 140.572818 113.831722) + (xy 140.56239 113.863818) + (xy 140.522952 113.921494) + (xy 140.458594 113.948692) + (xy 140.444459 113.9495) + (xy 140.405354 113.9495) + (xy 140.372897 113.956398) + (xy 140.220197 113.988855) + (xy 140.220192 113.988857) + (xy 140.04727 114.065848) + (xy 140.047265 114.065851) + (xy 139.894129 114.177111) + (xy 139.767466 114.317785) + (xy 139.672821 114.481715) + (xy 139.672818 114.481722) + (xy 139.616612 114.654707) + (xy 139.614326 114.661744) + (xy 139.59454 114.85) + (xy 139.614326 115.038256) + (xy 139.614327 115.038259) + (xy 139.672818 115.218277) + (xy 139.672821 115.218284) + (xy 139.767467 115.382216) + (xy 139.810772 115.43031) + (xy 139.84265 115.465715) + (xy 139.87288 115.528706) + (xy 139.8745 115.548687) + (xy 139.8745 116.467255) + (xy 139.872775 116.482872) + (xy 139.873061 116.482899) + (xy 139.872326 116.490666) + (xy 139.874469 116.558846) + (xy 139.8745 116.560793) + (xy 139.8745 116.589343) + (xy 139.874501 116.58936) + (xy 139.875368 116.596231) + (xy 139.875826 116.60205) + (xy 139.87729 116.648624) + (xy 139.877291 116.648627) + (xy 139.88288 116.667867) + (xy 139.886824 116.686911) + (xy 139.888195 116.697761) + (xy 139.889336 116.706791) + (xy 139.90649 116.750119) + (xy 139.908382 116.755647) + (xy 139.921381 116.800388) + (xy 139.93158 116.817634) + (xy 139.940138 116.835103) + (xy 139.947514 116.853732) + (xy 139.974898 116.891423) + (xy 139.978106 116.896307) + (xy 140.001827 116.936416) + (xy 140.001833 116.936424) + (xy 140.01599 116.95058) + (xy 140.028627 116.965375) + (xy 140.040406 116.981587) + (xy 140.059483 116.997369) + (xy 140.076309 117.011288) + (xy 140.08062 117.01521) + (xy 155.943739 132.87833) + (xy 161.189197 138.123788) + (xy 161.199022 138.136051) + (xy 161.199243 138.135869) + (xy 161.204211 138.141874) + (xy 161.253932 138.188566) + (xy 161.255332 138.189923) + (xy 161.275523 138.210115) + (xy 161.275527 138.210118) + (xy 161.275529 138.21012) + (xy 161.281011 138.214373) + (xy 161.285443 138.218157) + (xy 161.319418 138.250062) + (xy 161.336976 138.259714) + (xy 161.353235 138.270395) + (xy 161.369064 138.282673) + (xy 161.411838 138.301182) + (xy 161.417056 138.303738) + (xy 161.457908 138.326197) + (xy 161.477316 138.33118) + (xy 161.495717 138.33748) + (xy 161.514104 138.345437) + (xy 161.557488 138.352308) + (xy 161.560119 138.352725) + (xy 161.565839 138.353909) + (xy 161.610981 138.3655) + (xy 161.631016 138.3655) + (xy 161.650414 138.367026) + (xy 161.670194 138.370159) + (xy 161.670195 138.37016) + (xy 161.670195 138.370159) + (xy 161.670196 138.37016) + (xy 161.716583 138.365775) + (xy 161.722422 138.3655) + (xy 162.512129 138.3655) + (xy 162.579168 138.385185) + (xy 162.615937 138.421678) + (xy 162.66711 138.500004) + (xy 162.719844 138.580719) + (xy 162.857245 138.729976) + (xy 162.888167 138.792629) + (xy 162.880307 138.862055) + (xy 162.83616 138.916211) + (xy 162.809349 138.93014) + (xy 162.694311 138.973046) + (xy 162.694306 138.973049) + (xy 162.579212 139.059209) + (xy 162.579209 139.059212) + (xy 162.493049 139.174306) + (xy 162.493045 139.174313) + (xy 162.442803 139.30902) + (xy 162.442801 139.309027) + (xy 162.4364 139.368555) + (xy 162.4364 140.03) + (xy 163.356804 140.03) + (xy 163.333155 140.066799) + (xy 163.292 140.206961) + (xy 163.292 140.353039) + (xy 163.333155 140.493201) + (xy 163.356804 140.53) + (xy 162.4364 140.53) + (xy 162.4364 141.191444) + (xy 162.442801 141.250972) + (xy 162.442803 141.250979) + (xy 162.493045 141.385686) + (xy 162.493049 141.385693) + (xy 162.579209 141.500787) + (xy 162.579212 141.50079) + (xy 162.694306 141.58695) + (xy 162.694313 141.586954) + (xy 162.82902 141.637196) + (xy 162.829027 141.637198) + (xy 162.888555 141.643599) + (xy 162.888572 141.6436) + (xy 163.55 141.6436) + (xy 163.55 140.724297) + (xy 163.655408 140.772435) + (xy 163.763666 140.788) + (xy 163.836334 140.788) + (xy 163.944592 140.772435) + (xy 164.05 140.724297) + (xy 164.05 141.6436) + (xy 164.711428 141.6436) + (xy 164.711444 141.643599) + (xy 164.770972 141.637198) + (xy 164.770979 141.637196) + (xy 164.905686 141.586954) + (xy 164.905689 141.586952) + (xy 164.995688 141.519579) + (xy 165.061152 141.495161) + (xy 165.129426 141.510012) + (xy 165.144312 141.519579) + (xy 165.23431 141.586952) + (xy 165.234313 141.586954) + (xy 165.36902 141.637196) + (xy 165.369027 141.637198) + (xy 165.428555 141.643599) + (xy 165.428572 141.6436) + (xy 166.09 141.6436) + (xy 166.09 140.724297) + (xy 166.195408 140.772435) + (xy 166.303666 140.788) + (xy 166.376334 140.788) + (xy 166.484592 140.772435) + (xy 166.59 140.724297) + (xy 166.59 141.6436) + (xy 167.251428 141.6436) + (xy 167.251444 141.643599) + (xy 167.310972 141.637198) + (xy 167.310979 141.637196) + (xy 167.445686 141.586954) + (xy 167.445693 141.58695) + (xy 167.560787 141.50079) + (xy 167.56079 141.500787) + (xy 167.64695 141.385693) + (xy 167.646954 141.385686) + (xy 167.697196 141.250979) + (xy 167.697198 141.250972) + (xy 167.703599 141.191444) + (xy 167.7036 141.191427) + (xy 167.7036 140.53) + (xy 166.783196 140.53) + (xy 166.806845 140.493201) + (xy 166.848 140.353039) + (xy 166.848 140.206961) + (xy 166.806845 140.066799) + (xy 166.783196 140.03) + (xy 167.7036 140.03) + (xy 167.7036 139.368572) + (xy 167.703599 139.368555) + (xy 167.697198 139.309027) + (xy 167.697196 139.30902) + (xy 167.646954 139.174313) + (xy 167.64695 139.174306) + (xy 167.56079 139.059212) + (xy 167.560787 139.059209) + (xy 167.445693 138.973049) + (xy 167.445686 138.973045) + (xy 167.330651 138.93014) + (xy 167.274717 138.888269) + (xy 167.2503 138.822804) + (xy 167.265152 138.754531) + (xy 167.282749 138.729981) + (xy 167.420156 138.580719) + (xy 167.543802 138.391465) + (xy 167.634611 138.184441) + (xy 167.690107 137.965293) + (xy 167.697574 137.875175) + (xy 167.708775 137.740006) + (xy 167.708775 137.739993) + (xy 167.690107 137.51471) + (xy 167.690107 137.514707) + (xy 167.634611 137.295559) + (xy 167.543802 137.088535) + (xy 167.420156 136.899281) + (xy 167.420153 136.899278) + (xy 167.420149 136.899272) + (xy 167.267049 136.732963) + (xy 167.267048 136.732962) + (xy 167.267046 136.73296) + (xy 167.088649 136.594107) + (xy 167.088647 136.594106) + (xy 167.088646 136.594105) + (xy 167.088639 136.5941) + (xy 167.060836 136.579055) + (xy 167.011244 136.529837) + (xy 166.996135 136.46162) + (xy 167.020306 136.396064) + (xy 167.060836 136.360945) + (xy 167.088639 136.345899) + (xy 167.088642 136.345896) + (xy 167.088649 136.345893) + (xy 167.267046 136.20704) + (xy 167.366832 136.098643) + (xy 167.420149 136.040727) + (xy 167.42015 136.040725) + (xy 167.420156 136.040719) + (xy 167.543802 135.851465) + (xy 167.634611 135.644441) + (xy 167.690107 135.425293) + (xy 167.703304 135.266032) + (xy 167.708775 135.200006) + (xy 167.708775 135.199993) + (xy 167.69228 135.000935) + (xy 167.690107 134.974707) + (xy 167.634611 134.755559) + (xy 167.543802 134.548535) + (xy 167.420156 134.359281) + (xy 167.420153 134.359278) + (xy 167.420149 134.359272) + (xy 167.267049 134.192963) + (xy 167.267048 134.192962) + (xy 167.267046 134.19296) + (xy 167.088649 134.054107) + (xy 167.088647 134.054106) + (xy 167.088646 134.054105) + (xy 167.088639 134.0541) + (xy 167.060836 134.039055) + (xy 167.011244 133.989837) + (xy 166.996135 133.92162) + (xy 167.020306 133.856064) + (xy 167.060836 133.820945) + (xy 167.088639 133.805899) + (xy 167.088642 133.805896) + (xy 167.088649 133.805893) + (xy 167.267046 133.66704) + (xy 167.366832 133.558643) + (xy 167.420149 133.500727) + (xy 167.42015 133.500725) + (xy 167.420156 133.500719) + (xy 167.543802 133.311465) + (xy 167.634611 133.104441) + (xy 167.690107 132.885293) + (xy 167.706378 132.68893) + (xy 167.708775 132.660006) + (xy 167.708775 132.659993) + (xy 167.695707 132.502294) + (xy 167.690107 132.434707) + (xy 167.634611 132.215559) + (xy 167.543802 132.008535) + (xy 167.511195 131.958627) + (xy 167.476095 131.904902) + (xy 167.420156 131.819281) + (xy 167.420153 131.819278) + (xy 167.420149 131.819272) + (xy 167.267049 131.652963) + (xy 167.267048 131.652962) + (xy 167.267046 131.65296) + (xy 167.088649 131.514107) + (xy 167.088647 131.514106) + (xy 167.088646 131.514105) + (xy 167.088639 131.5141) + (xy 167.060836 131.499055) + (xy 167.011244 131.449837) + (xy 166.996135 131.38162) + (xy 167.020306 131.316064) + (xy 167.060836 131.280945) + (xy 167.088639 131.265899) + (xy 167.088642 131.265896) + (xy 167.088649 131.265893) + (xy 167.267046 131.12704) + (xy 167.420156 130.960719) + (xy 167.543802 130.771465) + (xy 167.634611 130.564441) + (xy 167.690107 130.345293) + (xy 167.7049 130.166768) + (xy 167.708775 130.120006) + (xy 167.708775 130.119993) + (xy 167.691591 129.912613) + (xy 167.690107 129.894707) + (xy 167.634611 129.675559) + (xy 167.543802 129.468535) + (xy 167.530795 129.448627) + (xy 167.452234 129.32838) + (xy 167.420156 129.279281) + (xy 167.420153 129.279278) + (xy 167.420149 129.279272) + (xy 167.267049 129.112963) + (xy 167.267048 129.112962) + (xy 167.267046 129.11296) + (xy 167.088649 128.974107) + (xy 167.088647 128.974106) + (xy 167.088646 128.974105) + (xy 167.088639 128.9741) + (xy 167.060836 128.959055) + (xy 167.011244 128.909837) + (xy 166.996135 128.84162) + (xy 167.020306 128.776064) + (xy 167.060836 128.740945) + (xy 167.088639 128.725899) + (xy 167.088642 128.725896) + (xy 167.088649 128.725893) + (xy 167.267046 128.58704) + (xy 167.408525 128.433354) + (xy 167.420149 128.420727) + (xy 167.420151 128.420724) + (xy 167.420156 128.420719) + (xy 167.543802 128.231465) + (xy 167.634611 128.024441) + (xy 167.690107 127.805293) + (xy 167.697574 127.715175) + (xy 167.708775 127.580006) + (xy 167.708775 127.579993) + (xy 167.690107 127.35471) + (xy 167.690107 127.354707) + (xy 167.634611 127.135559) + (xy 167.543802 126.928535) + (xy 167.420156 126.739281) + (xy 167.420153 126.739278) + (xy 167.420149 126.739272) + (xy 167.267049 126.572963) + (xy 167.267048 126.572962) + (xy 167.267046 126.57296) + (xy 167.088649 126.434107) + (xy 167.088647 126.434106) + (xy 167.088646 126.434105) + (xy 167.088639 126.4341) + (xy 167.060836 126.419055) + (xy 167.011244 126.369837) + (xy 166.996135 126.30162) + (xy 167.020306 126.236064) + (xy 167.060836 126.200945) + (xy 167.088639 126.185899) + (xy 167.088642 126.185896) + (xy 167.088649 126.185893) + (xy 167.267046 126.04704) + (xy 167.420156 125.880719) + (xy 167.543802 125.691465) + (xy 167.634611 125.484441) + (xy 167.690107 125.265293) + (xy 167.703352 125.105447) + (xy 167.708775 125.040006) + (xy 167.708775 125.039993) + (xy 167.690107 124.81471) + (xy 167.690107 124.814707) + (xy 167.634611 124.595559) + (xy 167.543802 124.388535) + (xy 167.420156 124.199281) + (xy 167.420153 124.199278) + (xy 167.420149 124.199272) + (xy 167.267049 124.032963) + (xy 167.267048 124.032962) + (xy 167.267046 124.03296) + (xy 167.088649 123.894107) + (xy 167.088647 123.894106) + (xy 167.088646 123.894105) + (xy 167.088643 123.894103) + (xy 167.060833 123.879053) + (xy 167.011243 123.829833) + (xy 166.996136 123.761616) + (xy 167.020307 123.696061) + (xy 167.060835 123.660945) + (xy 167.088649 123.645893) + (xy 167.267046 123.50704) + (xy 167.420156 123.340719) + (xy 167.543802 123.151465) + (xy 167.634611 122.944441) + (xy 167.690107 122.725293) + (xy 167.697878 122.631509) + (xy 167.708775 122.500006) + (xy 167.708775 122.499993) + (xy 167.690107 122.27471) + (xy 167.690107 122.274707) + (xy 167.634611 122.055559) + (xy 167.543802 121.848535) + (xy 167.420156 121.659281) + (xy 167.420153 121.659278) + (xy 167.420149 121.659272) + (xy 167.267049 121.492963) + (xy 167.267048 121.492962) + (xy 167.267046 121.49296) + (xy 167.088649 121.354107) + (xy 167.088647 121.354106) + (xy 167.088646 121.354105) + (xy 167.088639 121.3541) + (xy 167.060836 121.339055) + (xy 167.011244 121.289837) + (xy 166.996135 121.22162) + (xy 167.020306 121.156064) + (xy 167.060836 121.120945) + (xy 167.088639 121.105899) + (xy 167.088642 121.105896) + (xy 167.088649 121.105893) + (xy 167.267046 120.96704) + (xy 167.420156 120.800719) + (xy 167.543802 120.611465) + (xy 167.634611 120.404441) + (xy 167.690107 120.185293) + (xy 167.708775 119.96) + (xy 167.708775 119.959993) + (xy 167.690107 119.73471) + (xy 167.690107 119.734707) + (xy 167.634611 119.515559) + (xy 167.543802 119.308535) + (xy 167.495121 119.234024) + (xy 167.448401 119.162513) + (xy 167.420156 119.119281) + (xy 167.420153 119.119278) + (xy 167.420149 119.119272) + (xy 167.267049 118.952963) + (xy 167.267048 118.952962) + (xy 167.267046 118.95296) + (xy 167.088649 118.814107) + (xy 167.088647 118.814106) + (xy 167.088646 118.814105) + (xy 167.088639 118.8141) + (xy 167.060836 118.799055) + (xy 167.011244 118.749837) + (xy 166.996135 118.68162) + (xy 167.020306 118.616064) + (xy 167.060836 118.580945) + (xy 167.088639 118.565899) + (xy 167.088642 118.565896) + (xy 167.088649 118.565893) + (xy 167.267046 118.42704) + (xy 167.420156 118.260719) + (xy 167.543802 118.071465) + (xy 167.634611 117.864441) + (xy 167.690107 117.645293) + (xy 167.708775 117.42) + (xy 167.708774 117.419991) + (xy 167.709012 117.417122) + (xy 167.734165 117.351937) + (xy 167.7449 117.339688) + (xy 169.733786 115.350802) + (xy 169.746048 115.34098) + (xy 169.745865 115.340759) + (xy 169.751873 115.335788) + (xy 169.751877 115.335786) + (xy 169.798649 115.285977) + (xy 169.799891 115.284697) + (xy 169.82012 115.26447) + (xy 169.824373 115.258986) + (xy 169.82815 115.254563) + (xy 169.860062 115.220582) + (xy 169.869714 115.203023) + (xy 169.880389 115.186772) + (xy 169.892674 115.170936) + (xy 169.911186 115.128152) + (xy 169.913742 115.122935) + (xy 169.936197 115.082092) + (xy 169.94118 115.06268) + (xy 169.947477 115.044291) + (xy 169.955438 115.025895) + (xy 169.962729 114.979853) + (xy 169.963908 114.974162) + (xy 169.9755 114.929019) + (xy 169.9755 114.908974) + (xy 169.977025 114.889591) + (xy 169.98016 114.869804) + (xy 169.975772 114.823394) + (xy 169.975499 114.817599) + (xy 169.975499 108.021847) + (xy 169.995184 107.954809) + (xy 170.011818 107.934167) + (xy 170.945982 107.000004) + (xy 172.814477 105.131509) + (xy 173.784168 104.161819) + (xy 173.845491 104.128334) + (xy 173.871849 104.1255) + (xy 174.759172 104.1255) + (xy 174.826211 104.145185) + (xy 174.871966 104.197989) + (xy 174.874588 104.20417) + (xy 174.888607 104.239888) + (xy 175.016041 104.460612) + (xy 175.17495 104.659877) + (xy 175.361783 104.833232) + (xy 175.572366 104.976805) + (xy 175.572371 104.976807) + (xy 175.572372 104.976808) + (xy 175.572373 104.976809) + (xy 175.694328 105.035538) + (xy 175.801992 105.087387) + (xy 175.801993 105.087387) + (xy 175.801996 105.087389) + (xy 175.90836 105.120197) + (xy 175.945029 105.131509) + (xy 176.003288 105.17008) + (xy 176.031446 105.234024) + (xy 176.020562 105.303041) + (xy 175.974093 105.355218) + (xy 175.945029 105.368491) + (xy 175.801992 105.412612) + (xy 175.572373 105.52319) + (xy 175.572372 105.523191) + (xy 175.361782 105.666768) + (xy 175.174952 105.840121) + (xy 175.17495 105.840123) + (xy 175.016041 106.039388) + (xy 174.888608 106.260109) + (xy 174.795492 106.497362) + (xy 174.79549 106.497369) + (xy 174.738777 106.745845) + (xy 174.719732 106.999995) + (xy 174.719732 107.000004) + (xy 174.738777 107.254154) + (xy 174.740111 107.26) + (xy 174.795492 107.502637) + (xy 174.888607 107.739888) + (xy 175.016041 107.960612) + (xy 175.17495 108.159877) + (xy 175.361783 108.333232) + (xy 175.572366 108.476805) + (xy 175.572371 108.476807) + (xy 175.572372 108.476808) + (xy 175.572373 108.476809) + (xy 175.694328 108.535538) + (xy 175.801992 108.587387) + (xy 175.801993 108.587387) + (xy 175.801996 108.587389) + (xy 175.90836 108.620197) + (xy 175.945029 108.631509) + (xy 176.003288 108.67008) + (xy 176.031446 108.734024) + (xy 176.020562 108.803041) + (xy 175.974093 108.855218) + (xy 175.945029 108.868491) + (xy 175.801992 108.912612) + (xy 175.572373 109.02319) + (xy 175.572372 109.023191) + (xy 175.361782 109.166768) + (xy 175.174952 109.340121) + (xy 175.17495 109.340123) + (xy 175.016041 109.539388) + (xy 174.888608 109.760109) + (xy 174.795492 109.997362) + (xy 174.79549 109.997369) + (xy 174.738777 110.245845) + (xy 174.719732 110.499995) + (xy 174.719732 110.500004) + (xy 174.738777 110.754154) + (xy 174.793991 110.996064) + (xy 174.795492 111.002637) + (xy 174.888607 111.239888) + (xy 175.016041 111.460612) + (xy 175.17495 111.659877) + (xy 175.361783 111.833232) + (xy 175.572366 111.976805) + (xy 175.572371 111.976807) + (xy 175.572372 111.976808) + (xy 175.572373 111.976809) + (xy 175.694328 112.035538) + (xy 175.801992 112.087387) + (xy 175.801993 112.087387) + (xy 175.801996 112.087389) + (xy 175.90836 112.120197) + (xy 175.945029 112.131509) + (xy 176.003288 112.17008) + (xy 176.031446 112.234024) + (xy 176.020562 112.303041) + (xy 175.974093 112.355218) + (xy 175.945029 112.368491) + (xy 175.801992 112.412612) + (xy 175.572373 112.52319) + (xy 175.572372 112.523191) + (xy 175.361782 112.666768) + (xy 175.174952 112.840121) + (xy 175.17495 112.840123) + (xy 175.016041 113.039388) + (xy 174.888608 113.260109) + (xy 174.795492 113.497362) + (xy 174.79549 113.497369) + (xy 174.738777 113.745845) + (xy 174.719732 113.999995) + (xy 174.719732 114.000004) + (xy 174.738777 114.254154) + (xy 174.790716 114.481715) + (xy 174.795492 114.502637) + (xy 174.888607 114.739888) + (xy 175.016041 114.960612) + (xy 175.17495 115.159877) + (xy 175.361783 115.333232) + (xy 175.572366 115.476805) + (xy 175.572371 115.476807) + (xy 175.572372 115.476808) + (xy 175.572373 115.476809) + (xy 175.685869 115.531465) + (xy 175.801996 115.587389) + (xy 175.945029 115.631508) + (xy 176.003287 115.670078) + (xy 176.031445 115.734023) + (xy 176.020562 115.803039) + (xy 175.974094 115.855216) + (xy 175.94503 115.86849) + (xy 175.80199 115.912613) + (xy 175.572373 116.02319) + (xy 175.572372 116.023191) + (xy 175.361782 116.166768) + (xy 175.174952 116.340121) + (xy 175.17495 116.340123) + (xy 175.016041 116.539388) + (xy 174.888608 116.760109) + (xy 174.795492 116.997362) + (xy 174.79549 116.997369) + (xy 174.738777 117.245845) + (xy 174.719732 117.499995) + (xy 174.719732 117.500004) + (xy 174.738777 117.754154) + (xy 174.782459 117.945538) + (xy 174.795492 118.002637) + (xy 174.851241 118.144683) + (xy 174.888608 118.23989) + (xy 174.900638 118.260727) + (xy 175.016041 118.460612) + (xy 175.17495 118.659877) + (xy 175.361783 118.833232) + (xy 175.572366 118.976805) + (xy 175.572371 118.976807) + (xy 175.572372 118.976808) + (xy 175.572373 118.976809) + (xy 175.694328 119.035538) + (xy 175.801992 119.087387) + (xy 175.801993 119.087387) + (xy 175.801996 119.087389) + (xy 175.905358 119.119272) + (xy 175.945029 119.131509) + (xy 176.003288 119.17008) + (xy 176.031446 119.234024) + (xy 176.020562 119.303041) + (xy 175.974093 119.355218) + (xy 175.945029 119.368491) + (xy 175.801992 119.412612) + (xy 175.572373 119.52319) + (xy 175.572372 119.523191) + (xy 175.361782 119.666768) + (xy 175.174952 119.840121) + (xy 175.17495 119.840123) + (xy 175.016041 120.039388) + (xy 174.888608 120.260109) + (xy 174.795492 120.497362) + (xy 174.79549 120.497369) + (xy 174.738777 120.745845) + (xy 174.719732 120.999995) + (xy 174.719732 121.000004) + (xy 174.738777 121.254154) + (xy 174.76159 121.354106) + (xy 174.795492 121.502637) + (xy 174.888607 121.739888) + (xy 175.016041 121.960612) + (xy 175.17495 122.159877) + (xy 175.361783 122.333232) + (xy 175.572366 122.476805) + (xy 175.572371 122.476807) + (xy 175.572372 122.476808) + (xy 175.572373 122.476809) + (xy 175.620543 122.500006) + (xy 175.801992 122.587387) + (xy 175.801993 122.587387) + (xy 175.801996 122.587389) + (xy 175.90836 122.620197) + (xy 175.945029 122.631509) + (xy 176.003288 122.67008) + (xy 176.031446 122.734024) + (xy 176.020562 122.803041) + (xy 175.974093 122.855218) + (xy 175.945029 122.868491) + (xy 175.801992 122.912612) + (xy 175.572373 123.02319) + (xy 175.572372 123.023191) + (xy 175.361782 123.166768) + (xy 175.174952 123.340121) + (xy 175.17495 123.340123) + (xy 175.016041 123.539388) + (xy 174.888608 123.760109) + (xy 174.795492 123.997362) + (xy 174.79549 123.997369) + (xy 174.738777 124.245845) + (xy 174.719732 124.499995) + (xy 174.719732 124.500004) + (xy 174.738777 124.754154) + (xy 174.738778 124.754157) + (xy 174.795492 125.002637) + (xy 174.868661 125.189068) + (xy 174.888608 125.23989) + (xy 174.910558 125.277908) + (xy 175.016041 125.460612) + (xy 175.17495 125.659877) + (xy 175.361783 125.833232) + (xy 175.572366 125.976805) + (xy 175.572371 125.976807) + (xy 175.572372 125.976808) + (xy 175.572373 125.976809) + (xy 175.667882 126.022803) + (xy 175.801992 126.087387) + (xy 175.801993 126.087387) + (xy 175.801996 126.087389) + (xy 175.90836 126.120197) + (xy 175.945029 126.131509) + (xy 176.003288 126.17008) + (xy 176.031446 126.234024) + (xy 176.020562 126.303041) + (xy 175.974093 126.355218) + (xy 175.945029 126.368491) + (xy 175.801992 126.412612) + (xy 175.572373 126.52319) + (xy 175.572372 126.523191) + (xy 175.361782 126.666768) + (xy 175.174952 126.840121) + (xy 175.17495 126.840123) + (xy 175.016041 127.039388) + (xy 174.888608 127.260109) + (xy 174.795492 127.497362) + (xy 174.79549 127.497369) + (xy 174.738777 127.745845) + (xy 174.719732 127.999995) + (xy 174.719732 128.000004) + (xy 174.738777 128.254154) + (xy 174.792607 128.49) + (xy 174.795492 128.502637) + (xy 174.883115 128.725896) + (xy 174.888608 128.73989) + (xy 174.889216 128.740943) + (xy 175.016041 128.960612) + (xy 175.17495 129.159877) + (xy 175.361783 129.333232) + (xy 175.572366 129.476805) + (xy 175.572371 129.476807) + (xy 175.572372 129.476808) + (xy 175.572373 129.476809) + (xy 175.694328 129.535538) + (xy 175.801996 129.587389) + (xy 175.945029 129.631508) + (xy 176.003287 129.670078) + (xy 176.031445 129.734023) + (xy 176.020562 129.803039) + (xy 175.974094 129.855216) + (xy 175.94503 129.86849) + (xy 175.80199 129.912613) + (xy 175.572373 130.02319) + (xy 175.572372 130.023191) + (xy 175.361782 130.166768) + (xy 175.174952 130.340121) + (xy 175.17495 130.340123) + (xy 175.016041 130.539388) + (xy 174.888608 130.760109) + (xy 174.795492 130.997362) + (xy 174.79549 130.997369) + (xy 174.738777 131.245845) + (xy 174.719732 131.499995) + (xy 174.719732 131.500004) + (xy 174.738777 131.754154) + (xy 174.788135 131.970407) + (xy 174.795492 132.002637) + (xy 174.888607 132.239888) + (xy 175.016041 132.460612) + (xy 175.17495 132.659877) + (xy 175.361783 132.833232) + (xy 175.572366 132.976805) + (xy 175.572371 132.976807) + (xy 175.572372 132.976808) + (xy 175.572373 132.976809) + (xy 175.694328 133.035538) + (xy 175.801992 133.087387) + (xy 175.801993 133.087387) + (xy 175.801996 133.087389) + (xy 175.880052 133.111466) + (xy 175.945029 133.131509) + (xy 176.003288 133.17008) + (xy 176.031446 133.234024) + (xy 176.020562 133.303041) + (xy 175.974093 133.355218) + (xy 175.945029 133.368491) + (xy 175.801992 133.412612) + (xy 175.572373 133.52319) + (xy 175.572372 133.523191) + (xy 175.361782 133.666768) + (xy 175.174952 133.840121) + (xy 175.17495 133.840123) + (xy 175.016041 134.039388) + (xy 174.888608 134.260109) + (xy 174.795492 134.497362) + (xy 174.79549 134.497369) + (xy 174.738777 134.745845) + (xy 174.719732 134.999995) + (xy 174.719732 135.000004) + (xy 174.738777 135.254154) + (xy 174.784669 135.455221) + (xy 174.795492 135.502637) + (xy 174.888607 135.739888) + (xy 175.016041 135.960612) + (xy 175.17495 136.159877) + (xy 175.361783 136.333232) + (xy 175.572366 136.476805) + (xy 175.572371 136.476807) + (xy 175.572372 136.476808) + (xy 175.572373 136.476809) + (xy 175.682488 136.529837) + (xy 175.801992 136.587387) + (xy 175.801993 136.587387) + (xy 175.801996 136.587389) + (xy 175.90836 136.620197) + (xy 175.945029 136.631509) + (xy 176.003288 136.67008) + (xy 176.031446 136.734024) + (xy 176.020562 136.803041) + (xy 175.974093 136.855218) + (xy 175.945029 136.868491) + (xy 175.801992 136.912612) + (xy 175.572373 137.02319) + (xy 175.572372 137.023191) + (xy 175.361782 137.166768) + (xy 175.174952 137.340121) + (xy 175.17495 137.340123) + (xy 175.016041 137.539388) + (xy 174.888608 137.760109) + (xy 174.795492 137.997362) + (xy 174.79549 137.997369) + (xy 174.738777 138.245845) + (xy 174.719732 138.499995) + (xy 174.719732 138.500004) + (xy 174.738777 138.754154) + (xy 174.793403 138.993488) + (xy 174.795492 139.002637) + (xy 174.888607 139.239888) + (xy 175.016041 139.460612) + (xy 175.17495 139.659877) + (xy 175.361783 139.833232) + (xy 175.572366 139.976805) + (xy 175.572371 139.976807) + (xy 175.572372 139.976808) + (xy 175.572373 139.976809) + (xy 175.694328 140.035538) + (xy 175.801992 140.087387) + (xy 175.801993 140.087387) + (xy 175.801996 140.087389) + (xy 175.90836 140.120197) + (xy 175.945029 140.131509) + (xy 176.003288 140.17008) + (xy 176.031446 140.234024) + (xy 176.020562 140.303041) + (xy 175.974093 140.355218) + (xy 175.945029 140.368491) + (xy 175.801992 140.412612) + (xy 175.572373 140.52319) + (xy 175.572372 140.523191) + (xy 175.361782 140.666768) + (xy 175.174952 140.840121) + (xy 175.17495 140.840123) + (xy 175.016041 141.039388) + (xy 174.888608 141.260109) + (xy 174.795492 141.497362) + (xy 174.79549 141.497369) + (xy 174.738777 141.745845) + (xy 174.719732 141.999995) + (xy 174.719732 142.000004) + (xy 174.738777 142.254154) + (xy 174.787221 142.466403) + (xy 174.795492 142.502637) + (xy 174.888607 142.739888) + (xy 175.016041 142.960612) + (xy 175.17495 143.159877) + (xy 175.361783 143.333232) + (xy 175.572366 143.476805) + (xy 175.572371 143.476807) + (xy 175.572372 143.476808) + (xy 175.572373 143.476809) + (xy 175.694328 143.535538) + (xy 175.801992 143.587387) + (xy 175.801993 143.587387) + (xy 175.801996 143.587389) + (xy 175.90836 143.620197) + (xy 175.945029 143.631509) + (xy 176.003288 143.67008) + (xy 176.031446 143.734024) + (xy 176.020562 143.803041) + (xy 175.974093 143.855218) + (xy 175.945029 143.868491) + (xy 175.801992 143.912612) + (xy 175.572373 144.02319) + (xy 175.572372 144.023191) + (xy 175.361782 144.166768) + (xy 175.174952 144.340121) + (xy 175.17495 144.340123) + (xy 175.016041 144.539388) + (xy 174.888608 144.760109) + (xy 174.795492 144.997362) + (xy 174.79549 144.997369) + (xy 174.738777 145.245845) + (xy 174.719732 145.499995) + (xy 174.719732 145.500004) + (xy 174.738777 145.754154) + (xy 174.750254 145.804439) + (xy 174.795492 146.002637) + (xy 174.888607 146.239888) + (xy 175.016041 146.460612) + (xy 175.17495 146.659877) + (xy 175.361783 146.833232) + (xy 175.572366 146.976805) + (xy 175.572371 146.976807) + (xy 175.572372 146.976808) + (xy 175.572373 146.976809) + (xy 175.694328 147.035538) + (xy 175.801992 147.087387) + (xy 175.801993 147.087387) + (xy 175.801996 147.087389) + (xy 176.045542 147.162513) + (xy 176.297565 147.2005) + (xy 176.552435 147.2005) + (xy 176.804458 147.162513) + (xy 177.048004 147.087389) + (xy 177.277634 146.976805) + (xy 177.488217 146.833232) + (xy 177.67505 146.659877) + (xy 177.833959 146.460612) + (xy 177.961393 146.239888) + (xy 178.054508 146.002637) + (xy 178.111222 145.754157) + (xy 178.123877 145.585289) + (xy 178.130268 145.500004) + (xy 178.130268 145.499995) + (xy 178.111222 145.245845) + (xy 178.107196 145.228208) + (xy 178.054508 144.997363) + (xy 177.961393 144.760112) + (xy 177.833959 144.539388) + (xy 177.67505 144.340123) + (xy 177.488217 144.166768) + (xy 177.277634 144.023195) + (xy 177.27763 144.023193) + (xy 177.277627 144.023191) + (xy 177.277626 144.02319) + (xy 177.048006 143.912612) + (xy 177.048008 143.912612) + (xy 176.90497 143.868491) + (xy 176.846711 143.829921) + (xy 176.818553 143.765976) + (xy 176.829437 143.696959) + (xy 176.875906 143.644782) + (xy 176.90497 143.631509) + (xy 177.048004 143.587389) + (xy 177.277634 143.476805) + (xy 177.488217 143.333232) + (xy 177.67505 143.159877) + (xy 177.833959 142.960612) + (xy 177.961393 142.739888) + (xy 178.054508 142.502637) + (xy 178.111222 142.254157) + (xy 178.126385 142.051819) + (xy 178.130268 142.000004) + (xy 178.130268 141.999995) + (xy 178.111222 141.745845) + (xy 178.087885 141.6436) + (xy 178.054508 141.497363) + (xy 177.961393 141.260112) + (xy 177.833959 141.039388) + (xy 177.67505 140.840123) + (xy 177.488217 140.666768) + (xy 177.277634 140.523195) + (xy 177.27763 140.523193) + (xy 177.277627 140.523191) + (xy 177.277626 140.52319) + (xy 177.048006 140.412612) + (xy 177.048008 140.412612) + (xy 176.90497 140.368491) + (xy 176.846711 140.329921) + (xy 176.818553 140.265976) + (xy 176.829437 140.196959) + (xy 176.875906 140.144782) + (xy 176.90497 140.131509) + (xy 177.048004 140.087389) + (xy 177.229458 140.000005) + (xy 177.277626 139.976809) + (xy 177.277626 139.976808) + (xy 177.277634 139.976805) + (xy 177.488217 139.833232) + (xy 177.67505 139.659877) + (xy 177.833959 139.460612) + (xy 177.961393 139.239888) + (xy 178.054508 139.002637) + (xy 178.111222 138.754157) + (xy 178.130268 138.5) + (xy 178.126448 138.449031) + (xy 178.111222 138.245845) + (xy 178.104903 138.218161) + (xy 178.054508 137.997363) + (xy 177.961393 137.760112) + (xy 177.833959 137.539388) + (xy 177.67505 137.340123) + (xy 177.488217 137.166768) + (xy 177.277634 137.023195) + (xy 177.27763 137.023193) + (xy 177.277627 137.023191) + (xy 177.277626 137.02319) + (xy 177.048006 136.912612) + (xy 177.048008 136.912612) + (xy 176.90497 136.868491) + (xy 176.846711 136.829921) + (xy 176.818553 136.765976) + (xy 176.829437 136.696959) + (xy 176.875906 136.644782) + (xy 176.90497 136.631509) + (xy 177.048004 136.587389) + (xy 177.277634 136.476805) + (xy 177.488217 136.333232) + (xy 177.67505 136.159877) + (xy 177.833959 135.960612) + (xy 177.961393 135.739888) + (xy 178.054508 135.502637) + (xy 178.111222 135.254157) + (xy 178.123189 135.094471) + (xy 178.130268 135.000004) + (xy 178.130268 134.999995) + (xy 178.113385 134.774707) + (xy 178.111222 134.745843) + (xy 178.054508 134.497363) + (xy 177.961393 134.260112) + (xy 177.833959 134.039388) + (xy 177.67505 133.840123) + (xy 177.488217 133.666768) + (xy 177.277634 133.523195) + (xy 177.27763 133.523193) + (xy 177.277627 133.523191) + (xy 177.277626 133.52319) + (xy 177.048006 133.412612) + (xy 177.048008 133.412612) + (xy 176.90497 133.368491) + (xy 176.846711 133.329921) + (xy 176.818553 133.265976) + (xy 176.829437 133.196959) + (xy 176.875906 133.144782) + (xy 176.90497 133.131509) + (xy 177.048004 133.087389) + (xy 177.277634 132.976805) + (xy 177.488217 132.833232) + (xy 177.67505 132.659877) + (xy 177.833959 132.460612) + (xy 177.961393 132.239888) + (xy 178.054508 132.002637) + (xy 178.111222 131.754157) + (xy 178.12133 131.619272) + (xy 178.130268 131.500004) + (xy 178.130268 131.499995) + (xy 178.112725 131.265899) + (xy 178.111222 131.245843) + (xy 178.054508 130.997363) + (xy 177.961393 130.760112) + (xy 177.833959 130.539388) + (xy 177.67505 130.340123) + (xy 177.488217 130.166768) + (xy 177.277634 130.023195) + (xy 177.27763 130.023193) + (xy 177.277627 130.023191) + (xy 177.277626 130.02319) + (xy 177.048006 129.912612) + (xy 177.048008 129.912612) + (xy 176.90497 129.868491) + (xy 176.846711 129.829921) + (xy 176.818553 129.765976) + (xy 176.829437 129.696959) + (xy 176.875906 129.644782) + (xy 176.90497 129.631509) + (xy 177.048004 129.587389) + (xy 177.277634 129.476805) + (xy 177.488217 129.333232) + (xy 177.67505 129.159877) + (xy 177.833959 128.960612) + (xy 177.961393 128.739888) + (xy 178.054508 128.502637) + (xy 178.111222 128.254157) + (xy 178.127432 128.037844) + (xy 178.130268 128.000004) + (xy 178.130268 127.999995) + (xy 178.111222 127.745845) + (xy 178.084781 127.63) + (xy 178.054508 127.497363) + (xy 177.961393 127.260112) + (xy 177.833959 127.039388) + (xy 177.67505 126.840123) + (xy 177.488217 126.666768) + (xy 177.277634 126.523195) + (xy 177.27763 126.523193) + (xy 177.277627 126.523191) + (xy 177.277626 126.52319) + (xy 177.048009 126.412613) + (xy 177.048006 126.412612) + (xy 177.048004 126.412611) + (xy 176.982445 126.392388) + (xy 176.904969 126.36849) + (xy 176.846711 126.329919) + (xy 176.818553 126.265974) + (xy 176.829437 126.196957) + (xy 176.875906 126.144781) + (xy 176.904965 126.13151) + (xy 177.048004 126.087389) + (xy 177.277634 125.976805) + (xy 177.488217 125.833232) + (xy 177.67505 125.659877) + (xy 177.833959 125.460612) + (xy 177.961393 125.239888) + (xy 178.054508 125.002637) + (xy 178.111222 124.754157) + (xy 178.130268 124.5) + (xy 178.111222 124.245843) + (xy 178.054508 123.997363) + (xy 177.961393 123.760112) + (xy 177.833959 123.539388) + (xy 177.67505 123.340123) + (xy 177.488217 123.166768) + (xy 177.277634 123.023195) + (xy 177.27763 123.023193) + (xy 177.277627 123.023191) + (xy 177.277626 123.02319) + (xy 177.048006 122.912612) + (xy 177.048008 122.912612) + (xy 176.90497 122.868491) + (xy 176.846711 122.829921) + (xy 176.818553 122.765976) + (xy 176.829437 122.696959) + (xy 176.875906 122.644782) + (xy 176.90497 122.631509) + (xy 177.048004 122.587389) + (xy 177.277634 122.476805) + (xy 177.488217 122.333232) + (xy 177.67505 122.159877) + (xy 177.833959 121.960612) + (xy 177.961393 121.739888) + (xy 178.054508 121.502637) + (xy 178.111222 121.254157) + (xy 178.130268 121) + (xy 178.111222 120.745843) + (xy 178.054508 120.497363) + (xy 177.961393 120.260112) + (xy 177.833959 120.039388) + (xy 177.67505 119.840123) + (xy 177.488217 119.666768) + (xy 177.277634 119.523195) + (xy 177.27763 119.523193) + (xy 177.277627 119.523191) + (xy 177.277626 119.52319) + (xy 177.048006 119.412612) + (xy 177.048008 119.412612) + (xy 176.90497 119.368491) + (xy 176.846711 119.329921) + (xy 176.818553 119.265976) + (xy 176.829437 119.196959) + (xy 176.875906 119.144782) + (xy 176.90497 119.131509) + (xy 177.048004 119.087389) + (xy 177.277634 118.976805) + (xy 177.488217 118.833232) + (xy 177.67505 118.659877) + (xy 177.833959 118.460612) + (xy 177.961393 118.239888) + (xy 178.054508 118.002637) + (xy 178.111222 117.754157) + (xy 178.121275 117.620006) + (xy 178.130268 117.500004) + (xy 178.130268 117.499995) + (xy 178.111222 117.245845) + (xy 178.09955 117.194707) + (xy 178.054508 116.997363) + (xy 177.961393 116.760112) + (xy 177.833959 116.539388) + (xy 177.67505 116.340123) + (xy 177.488217 116.166768) + (xy 177.277634 116.023195) + (xy 177.27763 116.023193) + (xy 177.277627 116.023191) + (xy 177.277626 116.02319) + (xy 177.048006 115.912612) + (xy 177.048008 115.912612) + (xy 176.90497 115.868491) + (xy 176.846711 115.829921) + (xy 176.818553 115.765976) + (xy 176.829437 115.696959) + (xy 176.875906 115.644782) + (xy 176.90497 115.631509) + (xy 177.048004 115.587389) + (xy 177.277634 115.476805) + (xy 177.488217 115.333232) + (xy 177.67505 115.159877) + (xy 177.833959 114.960612) + (xy 177.961393 114.739888) + (xy 178.054508 114.502637) + (xy 178.111222 114.254157) + (xy 178.125333 114.065851) + (xy 178.130268 114.000004) + (xy 178.130268 113.999995) + (xy 178.115402 113.80162) + (xy 178.111222 113.745843) + (xy 178.054508 113.497363) + (xy 177.961393 113.260112) + (xy 177.833959 113.039388) + (xy 177.67505 112.840123) + (xy 177.488217 112.666768) + (xy 177.277634 112.523195) + (xy 177.27763 112.523193) + (xy 177.277627 112.523191) + (xy 177.277626 112.52319) + (xy 177.048006 112.412612) + (xy 177.048008 112.412612) + (xy 176.90497 112.368491) + (xy 176.846711 112.329921) + (xy 176.818553 112.265976) + (xy 176.829437 112.196959) + (xy 176.875906 112.144782) + (xy 176.90497 112.131509) + (xy 177.048004 112.087389) + (xy 177.277634 111.976805) + (xy 177.488217 111.833232) + (xy 177.67505 111.659877) + (xy 177.833959 111.460612) + (xy 177.961393 111.239888) + (xy 178.054508 111.002637) + (xy 178.111222 110.754157) + (xy 178.11994 110.637827) + (xy 178.130268 110.500004) + (xy 178.130268 110.499995) + (xy 178.115321 110.300548) + (xy 178.111222 110.245843) + (xy 178.054508 109.997363) + (xy 177.961393 109.760112) + (xy 177.833959 109.539388) + (xy 177.67505 109.340123) + (xy 177.488217 109.166768) + (xy 177.277634 109.023195) + (xy 177.27763 109.023193) + (xy 177.277627 109.023191) + (xy 177.277626 109.02319) + (xy 177.048006 108.912612) + (xy 177.048008 108.912612) + (xy 176.90497 108.868491) + (xy 176.846711 108.829921) + (xy 176.818553 108.765976) + (xy 176.829437 108.696959) + (xy 176.875906 108.644782) + (xy 176.90497 108.631509) + (xy 177.048004 108.587389) + (xy 177.277634 108.476805) + (xy 177.488217 108.333232) + (xy 177.67505 108.159877) + (xy 177.833959 107.960612) + (xy 177.961393 107.739888) + (xy 178.054508 107.502637) + (xy 178.111222 107.254157) + (xy 178.130268 107) + (xy 178.111222 106.745843) + (xy 178.054508 106.497363) + (xy 177.961393 106.260112) + (xy 177.833959 106.039388) + (xy 177.67505 105.840123) + (xy 177.488217 105.666768) + (xy 177.277634 105.523195) + (xy 177.27763 105.523193) + (xy 177.277627 105.523191) + (xy 177.277626 105.52319) + (xy 177.048006 105.412612) + (xy 177.048008 105.412612) + (xy 176.90497 105.368491) + (xy 176.846711 105.329921) + (xy 176.818553 105.265976) + (xy 176.829437 105.196959) + (xy 176.875906 105.144782) + (xy 176.90497 105.131509) + (xy 177.048004 105.087389) + (xy 177.277634 104.976805) + (xy 177.488217 104.833232) + (xy 177.67505 104.659877) + (xy 177.833959 104.460612) + (xy 177.961393 104.239888) + (xy 178.054508 104.002637) + (xy 178.111222 103.754157) + (xy 178.123341 103.592433) + (xy 178.130268 103.500004) + (xy 178.130268 103.499995) + (xy 178.111222 103.245845) + (xy 178.0978 103.18704) + (xy 178.054508 102.997363) + (xy 177.961393 102.760112) + (xy 177.833959 102.539388) + (xy 177.67505 102.340123) + (xy 177.488217 102.166768) + (xy 177.277634 102.023195) + (xy 177.27763 102.023193) + (xy 177.277627 102.023191) + (xy 177.277626 102.02319) + (xy 177.048006 101.912612) + (xy 177.048008 101.912612) + (xy 176.90497 101.868491) + (xy 176.846711 101.829921) + (xy 176.818553 101.765976) + (xy 176.829437 101.696959) + (xy 176.875906 101.644782) + (xy 176.90497 101.631509) + (xy 177.048004 101.587389) + (xy 177.242055 101.493939) + (xy 177.277626 101.476809) + (xy 177.277626 101.476808) + (xy 177.277634 101.476805) + (xy 177.488217 101.333232) + (xy 177.67505 101.159877) + (xy 177.833959 100.960612) + (xy 177.961393 100.739888) + (xy 178.054508 100.502637) + (xy 178.111222 100.254157) + (xy 178.127647 100.034981) + (xy 178.130268 100.000004) + (xy 178.130268 99.999995) + (xy 178.111222 99.745845) + (xy 178.088608 99.646768) + (xy 178.054508 99.497363) + (xy 177.961393 99.260112) + (xy 177.833959 99.039388) + (xy 177.67505 98.840123) + (xy 177.488217 98.666768) + (xy 177.277634 98.523195) + (xy 177.27763 98.523193) + (xy 177.277627 98.523191) + (xy 177.277626 98.52319) + (xy 177.048006 98.412612) + (xy 177.048008 98.412612) + (xy 176.937036 98.378382) + (xy 176.904969 98.36849) + (xy 176.846711 98.329921) + (xy 176.818553 98.265976) + (xy 176.829437 98.196959) + (xy 176.875906 98.144782) + (xy 176.90497 98.131509) + (xy 177.048004 98.087389) + (xy 177.277634 97.976805) + (xy 177.488217 97.833232) + (xy 177.67505 97.659877) + (xy 177.833959 97.460612) + (xy 177.961393 97.239888) + (xy 178.054508 97.002637) + (xy 178.111222 96.754157) + (xy 178.130268 96.5) + (xy 178.126411 96.448535) + (xy 178.111222 96.245845) + (xy 178.098967 96.192153) + (xy 178.054508 95.997363) + (xy 177.961393 95.760112) + (xy 177.833959 95.539388) + (xy 177.67505 95.340123) + (xy 177.488217 95.166768) + (xy 177.277634 95.023195) + (xy 177.27763 95.023193) + (xy 177.277627 95.023191) + (xy 177.277626 95.02319) + (xy 177.048006 94.912612) + (xy 177.048008 94.912612) + (xy 176.96102 94.88578) + (xy 176.904969 94.86849) + (xy 176.846711 94.829921) + (xy 176.818553 94.765976) + (xy 176.829437 94.696959) + (xy 176.875906 94.644782) + (xy 176.90497 94.631509) + (xy 177.048004 94.587389) + (xy 177.277634 94.476805) + (xy 177.488217 94.333232) + (xy 177.67505 94.159877) + (xy 177.833959 93.960612) + (xy 177.961393 93.739888) + (xy 178.054508 93.502637) + (xy 178.111222 93.254157) + (xy 178.125691 93.061079) + (xy 178.130268 93.000004) + (xy 178.130268 92.999995) + (xy 178.111222 92.745845) + (xy 178.104225 92.715191) + (xy 178.054508 92.497363) + (xy 177.961393 92.260112) + (xy 177.833959 92.039388) + (xy 177.67505 91.840123) + (xy 177.488217 91.666768) + (xy 177.277634 91.523195) + (xy 177.27763 91.523193) + (xy 177.277627 91.523191) + (xy 177.277626 91.52319) + (xy 177.048006 91.412612) + (xy 177.048008 91.412612) + (xy 176.804466 91.337489) + (xy 176.804462 91.337488) + (xy 176.804458 91.337487) + (xy 176.683231 91.319214) + (xy 176.55244 91.2995) + (xy 176.552435 91.2995) + (xy 176.297565 91.2995) + (xy 176.297559 91.2995) + (xy 176.140609 91.323157) + (xy 176.045542 91.337487) + (xy 176.045538 91.337488) + (xy 176.045539 91.337488) + (xy 176.045533 91.337489) + (xy 175.801992 91.412612) + (xy 175.572373 91.52319) + (xy 175.572372 91.523191) + (xy 175.361782 91.666768) + (xy 175.174952 91.840121) + (xy 175.17495 91.840123) + (xy 175.016041 92.039388) + (xy 174.888608 92.260109) + (xy 174.795492 92.497362) + (xy 174.79549 92.497369) + (xy 174.738777 92.745845) + (xy 174.719732 92.999995) + (xy 174.719732 93.000004) + (xy 174.738777 93.254154) + (xy 174.789531 93.47652) + (xy 174.795492 93.502637) + (xy 174.815271 93.553032) + (xy 174.834118 93.601055) + (xy 174.840286 93.670651) + (xy 174.807847 93.732535) + (xy 174.80637 93.734037) + (xy 167.616208 100.924199) + (xy 167.603951 100.93402) + (xy 167.604134 100.934241) + (xy 167.598122 100.939214) + (xy 167.551432 100.988932) + (xy 167.550079 100.990329) + (xy 167.529889 101.010519) + (xy 167.529877 101.010532) + (xy 167.525621 101.016017) + (xy 167.521837 101.020447) + (xy 167.489937 101.054418) + (xy 167.489936 101.05442) + (xy 167.480284 101.071976) + (xy 167.46961 101.088226) + (xy 167.457329 101.104061) + (xy 167.457323 101.10407) + (xy 167.450676 101.11943) + (xy 167.405983 101.173136) + (xy 167.33935 101.194153) + (xy 167.271931 101.17581) + (xy 167.260715 101.168031) + (xy 167.088653 101.03411) + (xy 167.088643 101.034103) + (xy 167.060833 101.019053) + (xy 167.011243 100.969833) + (xy 166.996136 100.901616) + (xy 167.020307 100.836061) + (xy 167.060835 100.800945) + (xy 167.088649 100.785893) + (xy 167.267046 100.64704) + (xy 167.366832 100.538643) + (xy 167.420149 100.480727) + (xy 167.420151 100.480724) + (xy 167.420156 100.480719) + (xy 167.543802 100.291465) + (xy 167.634611 100.084441) + (xy 167.690107 99.865293) + (xy 167.700005 99.745843) + (xy 167.708775 99.640006) + (xy 167.708775 99.639993) + (xy 167.690107 99.41471) + (xy 167.690107 99.414707) + (xy 167.634611 99.195559) + (xy 167.543802 98.988535) + (xy 167.420156 98.799281) + (xy 167.420153 98.799278) + (xy 167.420149 98.799272) + (xy 167.267049 98.632963) + (xy 167.267048 98.632962) + (xy 167.267046 98.63296) + (xy 167.088649 98.494107) + (xy 167.088647 98.494106) + (xy 167.088646 98.494105) + (xy 167.088639 98.4941) + (xy 167.060836 98.479055) + (xy 167.011244 98.429837) + (xy 166.996135 98.36162) + (xy 167.020306 98.296064) + (xy 167.060836 98.260945) + (xy 167.088639 98.245899) + (xy 167.088642 98.245896) + (xy 167.088649 98.245893) + (xy 167.267046 98.10704) + (xy 167.420156 97.940719) + (xy 167.543802 97.751465) + (xy 167.634611 97.544441) + (xy 167.690107 97.325293) + (xy 167.705031 97.145185) + (xy 167.708775 97.100006) + (xy 167.708775 97.099993) + (xy 167.690107 96.87471) + (xy 167.690107 96.874707) + (xy 167.634611 96.655559) + (xy 167.543802 96.448535) + (xy 167.420156 96.259281) + (xy 167.420153 96.259278) + (xy 167.420149 96.259272) + (xy 167.267049 96.092963) + (xy 167.267048 96.092962) + (xy 167.267046 96.09296) + (xy 167.088649 95.954107) + (xy 167.021 95.917497) + (xy 166.889832 95.846512) + (xy 166.889827 95.84651) + (xy 166.676017 95.773109) + (xy 166.494388 95.742801) + (xy 166.453033 95.7359) + (xy 166.226967 95.7359) + (xy 166.185612 95.742801) + (xy 166.003982 95.773109) + (xy 165.790172 95.84651) + (xy 165.790167 95.846512) + (xy 165.591352 95.954106) + (xy 165.412955 96.092959) + (xy 165.41295 96.092963) + (xy 165.25985 96.259272) + (xy 165.259842 96.259283) + (xy 165.173808 96.390968) + (xy 165.120662 96.436325) + (xy 165.05143 96.445748) + (xy 164.988095 96.416246) + (xy 164.966192 96.390968) + (xy 164.880157 96.259283) + (xy 164.880149 96.259272) + (xy 164.727049 96.092963) + (xy 164.727048 96.092962) + (xy 164.727046 96.09296) + (xy 164.548649 95.954107) + (xy 164.481 95.917497) + (xy 164.349832 95.846512) + (xy 164.349827 95.84651) + (xy 164.136017 95.773109) + (xy 163.954388 95.742801) + (xy 163.913033 95.7359) + (xy 163.686967 95.7359) + (xy 163.645612 95.742801) + (xy 163.463982 95.773109) + (xy 163.250172 95.84651) + (xy 163.250167 95.846512) + (xy 163.051352 95.954106) + (xy 162.872955 96.092959) + (xy 162.87295 96.092963) + (xy 162.71985 96.259272) + (xy 162.719842 96.259283) + (xy 162.596198 96.448533) + (xy 162.505388 96.65556) + (xy 162.449892 96.87471) + (xy 162.431225 97.099993) + (xy 162.431225 97.100006) + (xy 162.449892 97.325289) + (xy 162.505388 97.544439) + (xy 162.596198 97.751466) + (xy 162.719842 97.940716) + (xy 162.71985 97.940727) + (xy 162.87295 98.107036) + (xy 162.872954 98.10704) + (xy 163.051351 98.245893) + (xy 163.079165 98.260945) + (xy 163.128755 98.310165) + (xy 163.143863 98.378382) + (xy 163.119692 98.443937) + (xy 163.079165 98.479055) + (xy 163.051352 98.494106) + (xy 162.872955 98.632959) + (xy 162.87295 98.632963) + (xy 162.71985 98.799272) + (xy 162.719842 98.799283) + (xy 162.596198 98.988533) + (xy 162.505388 99.19556) + (xy 162.449892 99.41471) + (xy 162.431225 99.639993) + (xy 162.431225 99.640006) + (xy 162.449892 99.865291) + (xy 162.462951 99.916861) + (xy 162.460325 99.986681) + (xy 162.430426 100.034981) + (xy 161.504645 100.960762) + (xy 161.443322 100.994247) + (xy 161.37363 100.989263) + (xy 161.317697 100.947391) + (xy 161.296758 100.903521) + (xy 161.244136 100.695721) + (xy 161.15336 100.488774) + (xy 161.074888 100.368663) + (xy 160.439521 101.00403) + (xy 160.416845 100.926799) + (xy 160.337869 100.80391) + (xy 160.22747 100.708248) + (xy 160.094592 100.647565) + (xy 160.089599 100.646847) + (xy 160.722859 100.013587) + (xy 160.722858 100.013585) + (xy 160.698378 99.994531) + (xy 160.698368 99.994524) + (xy 160.499639 99.886977) + (xy 160.499624 99.88697) + (xy 160.285893 99.813596) + (xy 160.06299 99.7764) + (xy 159.83701 99.7764) + (xy 159.614106 99.813596) + (xy 159.400375 99.88697) + (xy 159.400369 99.886972) + (xy 159.201623 99.994529) + (xy 159.201617 99.994533) + (xy 159.17714 100.013584) + (xy 159.17714 100.013586) + (xy 159.810401 100.646847) + (xy 159.805408 100.647565) + (xy 159.67253 100.708248) + (xy 159.562131 100.80391) + (xy 159.483155 100.926799) + (xy 159.460477 101.00403) + (xy 158.82511 100.368664) + (xy 158.746638 100.488777) + (xy 158.746637 100.488779) + (xy 158.655863 100.695721) + (xy 158.600388 100.914786) + (xy 158.600386 100.914797) + (xy 158.581727 101.139993) + (xy 158.581727 101.140006) + (xy 158.600386 101.365202) + (xy 158.600388 101.365213) + (xy 158.655863 101.584278) + (xy 158.746639 101.791225) + (xy 158.825109 101.911334) + (xy 159.460477 101.275967) + (xy 159.483155 101.353201) + (xy 159.562131 101.47609) + (xy 159.67253 101.571752) + (xy 159.805408 101.632435) + (xy 159.810399 101.633152) + (xy 159.168298 102.275253) + (xy 159.160181 102.310949) + (xy 159.110313 102.359887) + (xy 159.051913 102.3745) + (xy 150.855849 102.3745) + (xy 150.78881 102.354815) + (xy 150.743055 102.302011) + (xy 150.733111 102.232853) + (xy 150.762136 102.169297) + (xy 150.768168 102.162819) + (xy 150.945353 101.985634) + (xy 151.483788 101.447197) + (xy 151.496042 101.437382) + (xy 151.495859 101.43716) + (xy 151.501868 101.432187) + (xy 151.501877 101.432182) + (xy 151.548607 101.382418) + (xy 151.549846 101.381139) + (xy 151.57012 101.360867) + (xy 151.574379 101.355374) + (xy 151.578152 101.350957) + (xy 151.610062 101.316978) + (xy 151.619715 101.299416) + (xy 151.630389 101.283166) + (xy 151.642673 101.267332) + (xy 151.66118 101.224563) + (xy 151.663749 101.21932) + (xy 151.667202 101.213039) + (xy 151.686197 101.178488) + (xy 151.691177 101.159087) + (xy 151.697478 101.140684) + (xy 151.705438 101.122292) + (xy 151.71273 101.076245) + (xy 151.713911 101.070548) + (xy 151.714832 101.066961) + (xy 151.7255 101.025415) + (xy 151.7255 101.005378) + (xy 151.727027 100.985978) + (xy 151.727351 100.983934) + (xy 151.73016 100.9662) + (xy 151.725775 100.919811) + (xy 151.7255 100.913973) + (xy 151.7255 98.386425) + (xy 151.745185 98.319386) + (xy 151.790481 98.277371) + (xy 151.848649 98.245893) + (xy 152.027046 98.10704) + (xy 152.180156 97.940719) + (xy 152.266193 97.809028) + (xy 152.319338 97.763675) + (xy 152.388569 97.754251) + (xy 152.451905 97.783753) + (xy 152.473804 97.809025) + (xy 152.559844 97.940719) + (xy 152.559849 97.940724) + (xy 152.55985 97.940727) + (xy 152.71295 98.107036) + (xy 152.712954 98.10704) + (xy 152.891351 98.245893) + (xy 153.090169 98.353488) + (xy 153.090172 98.353489) + (xy 153.303982 98.42689) + (xy 153.303984 98.42689) + (xy 153.303986 98.426891) + (xy 153.526967 98.4641) + (xy 153.526968 98.4641) + (xy 153.753032 98.4641) + (xy 153.753033 98.4641) + (xy 153.976014 98.426891) + (xy 154.189831 98.353488) + (xy 154.388649 98.245893) + (xy 154.567046 98.10704) + (xy 154.720156 97.940719) + (xy 154.806193 97.809028) + (xy 154.859338 97.763675) + (xy 154.928569 97.754251) + (xy 154.991905 97.783753) + (xy 155.013804 97.809025) + (xy 155.099844 97.940719) + (xy 155.099849 97.940724) + (xy 155.09985 97.940727) + (xy 155.25295 98.107036) + (xy 155.252954 98.10704) + (xy 155.431351 98.245893) + (xy 155.630169 98.353488) + (xy 155.630172 98.353489) + (xy 155.843982 98.42689) + (xy 155.843984 98.42689) + (xy 155.843986 98.426891) + (xy 156.066967 98.4641) + (xy 156.066968 98.4641) + (xy 156.293032 98.4641) + (xy 156.293033 98.4641) + (xy 156.516014 98.426891) + (xy 156.729831 98.353488) + (xy 156.928649 98.245893) + (xy 157.107046 98.10704) + (xy 157.260156 97.940719) + (xy 157.383802 97.751465) + (xy 157.474611 97.544441) + (xy 157.530107 97.325293) + (xy 157.545031 97.145185) + (xy 157.548775 97.100006) + (xy 157.548775 97.099993) + (xy 157.530107 96.87471) + (xy 157.530107 96.874707) + (xy 157.474611 96.655559) + (xy 157.383802 96.448535) + (xy 157.260156 96.259281) + (xy 157.260153 96.259278) + (xy 157.260149 96.259272) + (xy 157.107049 96.092963) + (xy 157.107048 96.092962) + (xy 157.107046 96.09296) + (xy 156.928649 95.954107) + (xy 156.861 95.917497) + (xy 156.729832 95.846512) + (xy 156.729827 95.84651) + (xy 156.516017 95.773109) + (xy 156.334388 95.742801) + (xy 156.293033 95.7359) + (xy 156.066967 95.7359) + (xy 156.025612 95.742801) + (xy 155.843982 95.773109) + (xy 155.630172 95.84651) + (xy 155.630167 95.846512) + (xy 155.431352 95.954106) + (xy 155.252955 96.092959) + (xy 155.25295 96.092963) + (xy 155.09985 96.259272) + (xy 155.099842 96.259283) + (xy 155.013808 96.390968) + (xy 154.960662 96.436325) + (xy 154.89143 96.445748) + (xy 154.828095 96.416246) + (xy 154.806192 96.390968) + (xy 154.720157 96.259283) + (xy 154.720149 96.259272) + (xy 154.567049 96.092963) + (xy 154.567048 96.092962) + (xy 154.567046 96.09296) + (xy 154.388649 95.954107) + (xy 154.263019 95.886119) + (xy 154.21343 95.8369) + (xy 154.198278 95.784777) + (xy 154.198216 95.783789) + (xy 154.19812 95.78224) + (xy 154.198 95.778384) + (xy 154.198 94.277952) + (xy 154.217685 94.210913) + (xy 154.234319 94.190271) + (xy 155.481179 92.943411) + (xy 155.481192 92.943396) + (xy 158.457725 89.966864) + (xy 158.519046 89.933381) + (xy 158.565815 89.932239) + (xy 158.576967 89.9341) + (xy 158.576968 89.9341) + (xy 158.803032 89.9341) + (xy 158.803033 89.9341) + (xy 159.026014 89.896891) + (xy 159.239831 89.823488) + (xy 159.438649 89.715893) + (xy 159.617046 89.57704) + (xy 159.770156 89.410719) + (xy 159.856193 89.279028) + (xy 159.909338 89.233675) + (xy 159.978569 89.224251) + (xy 160.041905 89.253753) + (xy 160.063804 89.279025) + (xy 160.149844 89.410719) + (xy 160.149849 89.410724) + (xy 160.14985 89.410727) + (xy 160.30295 89.577036) + (xy 160.302954 89.57704) + (xy 160.481351 89.715893) + (xy 160.680169 89.823488) + (xy 160.680172 89.823489) + (xy 160.893982 89.89689) + (xy 160.893984 89.89689) + (xy 160.893986 89.896891) + (xy 161.116967 89.9341) + (xy 161.116968 89.9341) + (xy 161.343032 89.9341) + (xy 161.343033 89.9341) + (xy 161.566014 89.896891) + (xy 161.779831 89.823488) + (xy 161.978649 89.715893) + (xy 162.157046 89.57704) + (xy 162.211815 89.517545) + (xy 162.271699 89.481557) + (xy 162.341537 89.483657) + (xy 162.399153 89.52318) + (xy 162.419224 89.558196) + (xy 162.463046 89.675688) + (xy 162.463049 89.675693) + (xy 162.549209 89.790787) + (xy 162.549212 89.79079) + (xy 162.664306 89.87695) + (xy 162.664313 89.876954) + (xy 162.79902 89.927196) + (xy 162.799027 89.927198) + (xy 162.858555 89.933599) + (xy 162.858572 89.9336) + (xy 163.52 89.9336) + (xy 163.52 89.014297) + (xy 163.625408 89.062435) + (xy 163.733666 89.078) + (xy 163.806334 89.078) + (xy 163.914592 89.062435) + (xy 164.02 89.014297) + (xy 164.02 89.9336) + (xy 164.681428 89.9336) + (xy 164.681444 89.933599) + (xy 164.740972 89.927198) + (xy 164.740979 89.927196) + (xy 164.875686 89.876954) + (xy 164.875693 89.87695) + (xy 164.990787 89.79079) + (xy 164.99079 89.790787) + (xy 165.07695 89.675693) + (xy 165.076954 89.675686) + (xy 165.120775 89.558197) + (xy 165.162646 89.502263) + (xy 165.22811 89.477846) + (xy 165.296383 89.492698) + (xy 165.328186 89.517547) + (xy 165.369578 89.56251) + (xy 165.382954 89.57704) + (xy 165.561351 89.715893) + (xy 165.760169 89.823488) + (xy 165.760172 89.823489) + (xy 165.973982 89.89689) + (xy 165.973984 89.89689) + (xy 165.973986 89.896891) + (xy 166.196967 89.9341) + (xy 166.196968 89.9341) + (xy 166.423032 89.9341) + (xy 166.423033 89.9341) + (xy 166.646014 89.896891) + (xy 166.859831 89.823488) + (xy 167.058649 89.715893) + (xy 167.237046 89.57704) + (xy 167.390156 89.410719) + (xy 167.513802 89.221465) + (xy 167.604611 89.014441) + (xy 167.660107 88.795293) + (xy 167.678775 88.57) + (xy 167.678775 88.569993) + (xy 167.662488 88.373446) + (xy 167.660107 88.344707) + (xy 167.604611 88.125559) + (xy 167.513802 87.918535) + (xy 167.511038 87.914305) + (xy 167.501695 87.900004) + (xy 174.719732 87.900004) + (xy 174.738777 88.154154) + (xy 174.785029 88.356799) + (xy 174.795492 88.402637) + (xy 174.888607 88.639888) + (xy 175.016041 88.860612) + (xy 175.17495 89.059877) + (xy 175.361783 89.233232) + (xy 175.572366 89.376805) + (xy 175.572371 89.376807) + (xy 175.572372 89.376808) + (xy 175.572373 89.376809) + (xy 175.694328 89.435538) + (xy 175.801992 89.487387) + (xy 175.801993 89.487387) + (xy 175.801996 89.487389) + (xy 176.045542 89.562513) + (xy 176.297565 89.6005) + (xy 176.552435 89.6005) + (xy 176.804458 89.562513) + (xy 177.048004 89.487389) + (xy 177.277634 89.376805) + (xy 177.488217 89.233232) + (xy 177.67505 89.059877) + (xy 177.833959 88.860612) + (xy 177.961393 88.639888) + (xy 178.054508 88.402637) + (xy 178.111222 88.154157) + (xy 178.124779 87.973249) + (xy 178.130268 87.900004) + (xy 178.130268 87.899995) + (xy 178.111222 87.645845) + (xy 178.109371 87.637736) + (xy 178.054508 87.397363) + (xy 177.961393 87.160112) + (xy 177.833959 86.939388) + (xy 177.67505 86.740123) + (xy 177.488217 86.566768) + (xy 177.277634 86.423195) + (xy 177.27763 86.423193) + (xy 177.277627 86.423191) + (xy 177.277626 86.42319) + (xy 177.048006 86.312612) + (xy 177.048008 86.312612) + (xy 176.96102 86.28578) + (xy 176.904969 86.26849) + (xy 176.846711 86.229921) + (xy 176.818553 86.165976) + (xy 176.829437 86.096959) + (xy 176.875906 86.044782) + (xy 176.90497 86.031509) + (xy 177.048004 85.987389) + (xy 177.277634 85.876805) + (xy 177.488217 85.733232) + (xy 177.67505 85.559877) + (xy 177.833959 85.360612) + (xy 177.961393 85.139888) + (xy 178.054508 84.902637) + (xy 178.111222 84.654157) + (xy 178.119384 84.545232) + (xy 178.130268 84.400004) + (xy 178.130268 84.399995) + (xy 178.111222 84.145845) + (xy 178.054509 83.897369) + (xy 178.054508 83.897363) + (xy 177.961393 83.660112) + (xy 177.833959 83.439388) + (xy 177.67505 83.240123) + (xy 177.488217 83.066768) + (xy 177.277634 82.923195) + (xy 177.27763 82.923193) + (xy 177.277627 82.923191) + (xy 177.277626 82.92319) + (xy 177.048006 82.812612) + (xy 177.048008 82.812612) + (xy 176.90497 82.768491) + (xy 176.846711 82.729921) + (xy 176.818553 82.665976) + (xy 176.829437 82.596959) + (xy 176.875906 82.544782) + (xy 176.90497 82.531509) + (xy 177.048004 82.487389) + (xy 177.277634 82.376805) + (xy 177.488217 82.233232) + (xy 177.67505 82.059877) + (xy 177.833959 81.860612) + (xy 177.961393 81.639888) + (xy 178.054508 81.402637) + (xy 178.111222 81.154157) + (xy 178.123577 80.989283) + (xy 178.130268 80.900004) + (xy 178.130268 80.899995) + (xy 178.111222 80.645845) + (xy 178.108504 80.633937) + (xy 178.054508 80.397363) + (xy 177.961393 80.160112) + (xy 177.833959 79.939388) + (xy 177.67505 79.740123) + (xy 177.488217 79.566768) + (xy 177.277634 79.423195) + (xy 177.27763 79.423193) + (xy 177.277627 79.423191) + (xy 177.277626 79.42319) + (xy 177.048009 79.312613) + (xy 177.048006 79.312612) + (xy 177.048004 79.312611) + (xy 176.982445 79.292388) + (xy 176.904969 79.26849) + (xy 176.846711 79.229919) + (xy 176.818553 79.165974) + (xy 176.829437 79.096957) + (xy 176.875906 79.044781) + (xy 176.904965 79.03151) + (xy 177.048004 78.987389) + (xy 177.277634 78.876805) + (xy 177.488217 78.733232) + (xy 177.67505 78.559877) + (xy 177.833959 78.360612) + (xy 177.961393 78.139888) + (xy 178.054508 77.902637) + (xy 178.111222 77.654157) + (xy 178.119384 77.545232) + (xy 178.130268 77.400004) + (xy 178.130268 77.399995) + (xy 178.111222 77.145845) + (xy 178.054509 76.897369) + (xy 178.054508 76.897363) + (xy 177.961393 76.660112) + (xy 177.833959 76.439388) + (xy 177.67505 76.240123) + (xy 177.488217 76.066768) + (xy 177.277634 75.923195) + (xy 177.27763 75.923193) + (xy 177.277627 75.923191) + (xy 177.277626 75.92319) + (xy 177.048006 75.812612) + (xy 177.048008 75.812612) + (xy 176.90497 75.768491) + (xy 176.846711 75.729921) + (xy 176.818553 75.665976) + (xy 176.829437 75.596959) + (xy 176.875906 75.544782) + (xy 176.90497 75.531509) + (xy 177.048004 75.487389) + (xy 177.277634 75.376805) + (xy 177.488217 75.233232) + (xy 177.67505 75.059877) + (xy 177.833959 74.860612) + (xy 177.961393 74.639888) + (xy 178.054508 74.402637) + (xy 178.111222 74.154157) + (xy 178.130268 73.9) + (xy 178.128547 73.87704) + (xy 178.111222 73.645845) + (xy 178.095972 73.579031) + (xy 178.054508 73.397363) + (xy 177.961393 73.160112) + (xy 177.833959 72.939388) + (xy 177.67505 72.740123) + (xy 177.488217 72.566768) + (xy 177.277634 72.423195) + (xy 177.27763 72.423193) + (xy 177.277627 72.423191) + (xy 177.277626 72.42319) + (xy 177.048006 72.312612) + (xy 177.048008 72.312612) + (xy 176.90497 72.268491) + (xy 176.846711 72.229921) + (xy 176.818553 72.165976) + (xy 176.829437 72.096959) + (xy 176.875906 72.044782) + (xy 176.90497 72.031509) + (xy 177.048004 71.987389) + (xy 177.277634 71.876805) + (xy 177.488217 71.733232) + (xy 177.67505 71.559877) + (xy 177.833959 71.360612) + (xy 177.961393 71.139888) + (xy 178.054508 70.902637) + (xy 178.111222 70.654157) + (xy 178.12658 70.449212) + (xy 178.130268 70.400004) + (xy 178.130268 70.399995) + (xy 178.111222 70.145845) + (xy 178.054509 69.897369) + (xy 178.054508 69.897363) + (xy 177.961393 69.660112) + (xy 177.833959 69.439388) + (xy 177.67505 69.240123) + (xy 177.488217 69.066768) + (xy 177.277634 68.923195) + (xy 177.27763 68.923193) + (xy 177.277627 68.923191) + (xy 177.277626 68.92319) + (xy 177.048006 68.812612) + (xy 177.048008 68.812612) + (xy 176.90497 68.768491) + (xy 176.846711 68.729921) + (xy 176.818553 68.665976) + (xy 176.829437 68.596959) + (xy 176.875906 68.544782) + (xy 176.90497 68.531509) + (xy 177.048004 68.487389) + (xy 177.277634 68.376805) + (xy 177.488217 68.233232) + (xy 177.67505 68.059877) + (xy 177.833959 67.860612) + (xy 177.961393 67.639888) + (xy 178.054508 67.402637) + (xy 178.111222 67.154157) + (xy 178.123402 66.991618) + (xy 178.130268 66.900004) + (xy 178.130268 66.899995) + (xy 178.116663 66.718459) + (xy 178.111222 66.645843) + (xy 178.054508 66.397363) + (xy 177.961393 66.160112) + (xy 177.833959 65.939388) + (xy 177.67505 65.740123) + (xy 177.488217 65.566768) + (xy 177.277634 65.423195) + (xy 177.27763 65.423193) + (xy 177.277627 65.423191) + (xy 177.277626 65.42319) + (xy 177.048009 65.312613) + (xy 177.048006 65.312612) + (xy 177.048004 65.312611) + (xy 176.982445 65.292388) + (xy 176.904969 65.26849) + (xy 176.846711 65.229919) + (xy 176.818553 65.165974) + (xy 176.829437 65.096957) + (xy 176.875906 65.044781) + (xy 176.904965 65.03151) + (xy 177.048004 64.987389) + (xy 177.277634 64.876805) + (xy 177.488217 64.733232) + (xy 177.67505 64.559877) + (xy 177.833959 64.360612) + (xy 177.961393 64.139888) + (xy 178.054508 63.902637) + (xy 178.111222 63.654157) + (xy 178.130268 63.4) + (xy 178.130242 63.399657) + (xy 178.111222 63.145845) + (xy 178.096247 63.080236) + (xy 178.054508 62.897363) + (xy 177.961393 62.660112) + (xy 177.833959 62.439388) + (xy 177.67505 62.240123) + (xy 177.488217 62.066768) + (xy 177.277634 61.923195) + (xy 177.27763 61.923193) + (xy 177.277627 61.923191) + (xy 177.277626 61.92319) + (xy 177.048006 61.812612) + (xy 177.048008 61.812612) + (xy 176.804466 61.737489) + (xy 176.804462 61.737488) + (xy 176.804458 61.737487) + (xy 176.683231 61.719214) + (xy 176.55244 61.6995) + (xy 176.552435 61.6995) + (xy 176.297565 61.6995) + (xy 176.297559 61.6995) + (xy 176.140609 61.723157) + (xy 176.045542 61.737487) + (xy 176.045538 61.737488) + (xy 176.045539 61.737488) + (xy 176.045533 61.737489) + (xy 175.801992 61.812612) + (xy 175.572373 61.92319) + (xy 175.572372 61.923191) + (xy 175.361782 62.066768) + (xy 175.174952 62.240121) + (xy 175.17495 62.240123) + (xy 175.016041 62.439388) + (xy 174.888608 62.660109) + (xy 174.795492 62.897362) + (xy 174.79549 62.897369) + (xy 174.738777 63.145845) + (xy 174.719732 63.399995) + (xy 174.719732 63.400004) + (xy 174.738777 63.654154) + (xy 174.752219 63.713049) + (xy 174.795492 63.902637) + (xy 174.888607 64.139888) + (xy 175.016041 64.360612) + (xy 175.17495 64.559877) + (xy 175.361783 64.733232) + (xy 175.572366 64.876805) + (xy 175.572371 64.876807) + (xy 175.572372 64.876808) + (xy 175.572373 64.876809) + (xy 175.673368 64.925445) + (xy 175.801992 64.987387) + (xy 175.801993 64.987387) + (xy 175.801996 64.987389) + (xy 175.907696 65.019993) + (xy 175.945029 65.031509) + (xy 176.003288 65.07008) + (xy 176.031446 65.134024) + (xy 176.020562 65.203041) + (xy 175.974093 65.255218) + (xy 175.945029 65.268491) + (xy 175.801992 65.312612) + (xy 175.572373 65.42319) + (xy 175.572372 65.423191) + (xy 175.361782 65.566768) + (xy 175.174952 65.740121) + (xy 175.17495 65.740123) + (xy 175.016041 65.939388) + (xy 174.888608 66.160109) + (xy 174.795492 66.397362) + (xy 174.79549 66.397369) + (xy 174.738777 66.645845) + (xy 174.719732 66.899995) + (xy 174.719732 66.900004) + (xy 174.738777 67.154154) + (xy 174.7786 67.328631) + (xy 174.795492 67.402637) + (xy 174.888607 67.639888) + (xy 175.016041 67.860612) + (xy 175.17495 68.059877) + (xy 175.361783 68.233232) + (xy 175.572366 68.376805) + (xy 175.572371 68.376807) + (xy 175.572372 68.376808) + (xy 175.572373 68.376809) + (xy 175.694328 68.435538) + (xy 175.801992 68.487387) + (xy 175.801993 68.487387) + (xy 175.801996 68.487389) + (xy 175.90836 68.520197) + (xy 175.945029 68.531509) + (xy 176.003288 68.57008) + (xy 176.031446 68.634024) + (xy 176.020562 68.703041) + (xy 175.974093 68.755218) + (xy 175.945029 68.768491) + (xy 175.801992 68.812612) + (xy 175.572373 68.92319) + (xy 175.572372 68.923191) + (xy 175.361782 69.066768) + (xy 175.174952 69.240121) + (xy 175.17495 69.240123) + (xy 175.016041 69.439388) + (xy 174.888608 69.660109) + (xy 174.795492 69.897362) + (xy 174.79549 69.897369) + (xy 174.738777 70.145845) + (xy 174.719732 70.399995) + (xy 174.719732 70.400004) + (xy 174.738777 70.654154) + (xy 174.76258 70.758443) + (xy 174.795492 70.902637) + (xy 174.888607 71.139888) + (xy 175.016041 71.360612) + (xy 175.17495 71.559877) + (xy 175.361783 71.733232) + (xy 175.572366 71.876805) + (xy 175.572371 71.876807) + (xy 175.572372 71.876808) + (xy 175.572373 71.876809) + (xy 175.662061 71.92) + (xy 175.801996 71.987389) + (xy 175.945029 72.031508) + (xy 176.003287 72.070078) + (xy 176.031445 72.134023) + (xy 176.020562 72.203039) + (xy 175.974094 72.255216) + (xy 175.94503 72.26849) + (xy 175.80199 72.312613) + (xy 175.572373 72.42319) + (xy 175.572372 72.423191) + (xy 175.361782 72.566768) + (xy 175.174952 72.740121) + (xy 175.17495 72.740123) + (xy 175.016041 72.939388) + (xy 174.888608 73.160109) + (xy 174.795492 73.397362) + (xy 174.79549 73.397369) + (xy 174.738777 73.645845) + (xy 174.719732 73.899995) + (xy 174.719732 73.900004) + (xy 174.738777 74.154154) + (xy 174.755448 74.227196) + (xy 174.795492 74.402637) + (xy 174.888607 74.639888) + (xy 175.016041 74.860612) + (xy 175.17495 75.059877) + (xy 175.361783 75.233232) + (xy 175.572366 75.376805) + (xy 175.572371 75.376807) + (xy 175.572372 75.376808) + (xy 175.572373 75.376809) + (xy 175.662404 75.420165) + (xy 175.801992 75.487387) + (xy 175.801993 75.487387) + (xy 175.801996 75.487389) + (xy 175.90836 75.520197) + (xy 175.945029 75.531509) + (xy 176.003288 75.57008) + (xy 176.031446 75.634024) + (xy 176.020562 75.703041) + (xy 175.974093 75.755218) + (xy 175.945029 75.768491) + (xy 175.801992 75.812612) + (xy 175.572373 75.92319) + (xy 175.572372 75.923191) + (xy 175.361782 76.066768) + (xy 175.174952 76.240121) + (xy 175.17495 76.240123) + (xy 175.016041 76.439388) + (xy 174.888608 76.660109) + (xy 174.795492 76.897362) + (xy 174.79549 76.897369) + (xy 174.738777 77.145845) + (xy 174.719732 77.399995) + (xy 174.719732 77.400004) + (xy 174.738777 77.654154) + (xy 174.793952 77.895893) + (xy 174.795492 77.902637) + (xy 174.888607 78.139888) + (xy 175.016041 78.360612) + (xy 175.17495 78.559877) + (xy 175.361783 78.733232) + (xy 175.572366 78.876805) + (xy 175.572371 78.876807) + (xy 175.572372 78.876808) + (xy 175.572373 78.876809) + (xy 175.694328 78.935538) + (xy 175.801992 78.987387) + (xy 175.801993 78.987387) + (xy 175.801996 78.987389) + (xy 175.90836 79.020197) + (xy 175.945029 79.031509) + (xy 176.003288 79.07008) + (xy 176.031446 79.134024) + (xy 176.020562 79.203041) + (xy 175.974093 79.255218) + (xy 175.945029 79.268491) + (xy 175.801992 79.312612) + (xy 175.572373 79.42319) + (xy 175.572372 79.423191) + (xy 175.361782 79.566768) + (xy 175.174952 79.740121) + (xy 175.17495 79.740123) + (xy 175.016041 79.939388) + (xy 174.888608 80.160109) + (xy 174.795492 80.397362) + (xy 174.79549 80.397369) + (xy 174.738777 80.645845) + (xy 174.719732 80.899995) + (xy 174.719732 80.900004) + (xy 174.738777 81.154154) + (xy 174.778787 81.329451) + (xy 174.795492 81.402637) + (xy 174.888607 81.639888) + (xy 175.016041 81.860612) + (xy 175.17495 82.059877) + (xy 175.361783 82.233232) + (xy 175.572366 82.376805) + (xy 175.572371 82.376807) + (xy 175.572372 82.376808) + (xy 175.572373 82.376809) + (xy 175.694328 82.435538) + (xy 175.801992 82.487387) + (xy 175.801993 82.487387) + (xy 175.801996 82.487389) + (xy 175.887466 82.513753) + (xy 175.945029 82.531509) + (xy 176.003288 82.57008) + (xy 176.031446 82.634024) + (xy 176.020562 82.703041) + (xy 175.974093 82.755218) + (xy 175.945029 82.768491) + (xy 175.801992 82.812612) + (xy 175.572373 82.92319) + (xy 175.572372 82.923191) + (xy 175.361782 83.066768) + (xy 175.174952 83.240121) + (xy 175.17495 83.240123) + (xy 175.016041 83.439388) + (xy 174.888608 83.660109) + (xy 174.795492 83.897362) + (xy 174.79549 83.897369) + (xy 174.738777 84.145845) + (xy 174.719732 84.399995) + (xy 174.719732 84.400004) + (xy 174.738777 84.654154) + (xy 174.738778 84.654157) + (xy 174.795492 84.902637) + (xy 174.888607 85.139888) + (xy 175.016041 85.360612) + (xy 175.17495 85.559877) + (xy 175.361783 85.733232) + (xy 175.572366 85.876805) + (xy 175.572371 85.876807) + (xy 175.572372 85.876808) + (xy 175.572373 85.876809) + (xy 175.676439 85.926924) + (xy 175.801996 85.987389) + (xy 175.945029 86.031508) + (xy 176.003287 86.070078) + (xy 176.031445 86.134023) + (xy 176.020562 86.203039) + (xy 175.974094 86.255216) + (xy 175.94503 86.26849) + (xy 175.80199 86.312613) + (xy 175.572373 86.42319) + (xy 175.572372 86.423191) + (xy 175.361782 86.566768) + (xy 175.174952 86.740121) + (xy 175.17495 86.740123) + (xy 175.016041 86.939388) + (xy 174.888608 87.160109) + (xy 174.795492 87.397362) + (xy 174.79549 87.397369) + (xy 174.738777 87.645845) + (xy 174.719732 87.899995) + (xy 174.719732 87.900004) + (xy 167.501695 87.900004) + (xy 167.451978 87.823908) + (xy 167.390156 87.729281) + (xy 167.390153 87.729278) + (xy 167.390149 87.729272) + (xy 167.237049 87.562963) + (xy 167.237048 87.562962) + (xy 167.237046 87.56296) + (xy 167.058649 87.424107) + (xy 167.009242 87.397369) + (xy 166.859832 87.316512) + (xy 166.859827 87.31651) + (xy 166.646017 87.243109) + (xy 166.464388 87.212801) + (xy 166.423033 87.2059) + (xy 166.196967 87.2059) + (xy 166.155612 87.212801) + (xy 165.973982 87.243109) + (xy 165.760172 87.31651) + (xy 165.760167 87.316512) + (xy 165.561352 87.424106) + (xy 165.382955 87.562958) + (xy 165.328186 87.622453) + (xy 165.268298 87.658443) + (xy 165.19846 87.656342) + (xy 165.140845 87.616817) + (xy 165.120775 87.581802) + (xy 165.076954 87.464313) + (xy 165.07695 87.464306) + (xy 164.99079 87.349212) + (xy 164.990787 87.349209) + (xy 164.875693 87.263049) + (xy 164.875686 87.263045) + (xy 164.740979 87.212803) + (xy 164.740972 87.212801) + (xy 164.681444 87.2064) + (xy 164.02 87.2064) + (xy 164.02 88.125702) + (xy 163.914592 88.077565) + (xy 163.806334 88.062) + (xy 163.733666 88.062) + (xy 163.625408 88.077565) + (xy 163.52 88.125702) + (xy 163.52 87.2064) + (xy 162.858555 87.2064) + (xy 162.799027 87.212801) + (xy 162.79902 87.212803) + (xy 162.664313 87.263045) + (xy 162.664306 87.263049) + (xy 162.549212 87.349209) + (xy 162.549209 87.349212) + (xy 162.463049 87.464306) + (xy 162.463046 87.464312) + (xy 162.419224 87.581803) + (xy 162.377352 87.637736) + (xy 162.311887 87.662153) + (xy 162.243615 87.647301) + (xy 162.211813 87.622452) + (xy 162.157049 87.562963) + (xy 162.157048 87.562962) + (xy 162.157046 87.56296) + (xy 161.978649 87.424107) + (xy 161.929242 87.397369) + (xy 161.779832 87.316512) + (xy 161.779827 87.31651) + (xy 161.566017 87.243109) + (xy 161.384388 87.212801) + (xy 161.343033 87.2059) + (xy 161.116967 87.2059) + (xy 161.075612 87.212801) + (xy 160.893982 87.243109) + (xy 160.680172 87.31651) + (xy 160.680167 87.316512) + (xy 160.481352 87.424106) + (xy 160.302955 87.562959) + (xy 160.30295 87.562963) + (xy 160.14985 87.729272) + (xy 160.149842 87.729283) + (xy 160.063808 87.860968) + (xy 160.010662 87.906325) + (xy 159.94143 87.915748) + (xy 159.878095 87.886246) + (xy 159.856192 87.860968) + (xy 159.804741 87.782217) + (xy 159.770156 87.729281) + (xy 159.770153 87.729278) + (xy 159.770149 87.729272) + (xy 159.617049 87.562963) + (xy 159.617048 87.562962) + (xy 159.617046 87.56296) + (xy 159.438649 87.424107) + (xy 159.389242 87.397369) + (xy 159.239832 87.316512) + (xy 159.239827 87.31651) + (xy 159.026017 87.243109) + (xy 158.844388 87.212801) + (xy 158.803033 87.2059) + (xy 158.576967 87.2059) + (xy 158.535612 87.212801) + (xy 158.353982 87.243109) + (xy 158.140172 87.31651) + (xy 158.140167 87.316512) + (xy 157.941352 87.424106) + (xy 157.762955 87.562959) + (xy 157.76295 87.562963) + (xy 157.60985 87.729272) + (xy 157.609842 87.729283) + (xy 157.486198 87.918533) + (xy 157.395388 88.12556) + (xy 157.339892 88.34471) + (xy 157.321225 88.569993) + (xy 157.321225 88.570006) + (xy 157.339892 88.795289) + (xy 157.395388 89.014441) + (xy 157.436234 89.107558) + (xy 157.445137 89.176858) + (xy 157.41516 89.23997) + (xy 157.410359 89.245049) + (xy 154.48238 92.173029) + (xy 154.482376 92.173033) + (xy 153.188708 93.466699) + (xy 153.176451 93.47652) + (xy 153.176634 93.476741) + (xy 153.170622 93.481714) + (xy 153.123932 93.531432) + (xy 153.122579 93.532829) + (xy 153.102389 93.553019) + (xy 153.102377 93.553032) + (xy 153.098121 93.558517) + (xy 153.094337 93.562947) + (xy 153.062437 93.596918) + (xy 153.062436 93.59692) + (xy 153.052784 93.614476) + (xy 153.04211 93.630726) + (xy 153.029829 93.646561) + (xy 153.029824 93.646568) + (xy 153.011315 93.689338) + (xy 153.008745 93.694584) + (xy 152.986303 93.735406) + (xy 152.981322 93.754807) + (xy 152.97502 93.773211) + (xy 152.964498 93.797527) + (xy 152.919809 93.851236) + (xy 152.853177 93.872258) + (xy 152.785757 93.853919) + (xy 152.777812 93.848602) + (xy 152.732733 93.81585) + (xy 152.732729 93.815848) + (xy 152.559807 93.738857) + (xy 152.559802 93.738855) + (xy 152.41146 93.707325) + (xy 152.374646 93.6995) + (xy 152.185354 93.6995) + (xy 152.152897 93.706398) + (xy 152.000197 93.738855) + (xy 152.000192 93.738857) + (xy 151.82727 93.815848) + (xy 151.827265 93.815851) + (xy 151.674129 93.927111) + (xy 151.547466 94.067785) + (xy 151.452821 94.231715) + (xy 151.452818 94.231722) + (xy 151.419836 94.333232) + (xy 151.394326 94.411744) + (xy 151.37454 94.6) + (xy 151.394326 94.788256) + (xy 151.394327 94.788259) + (xy 151.452818 94.968277) + (xy 151.452821 94.968284) + (xy 151.547467 95.132216) + (xy 151.578578 95.166768) + (xy 151.674129 95.272888) + (xy 151.827265 95.384148) + (xy 151.82727 95.384151) + (xy 152.000192 95.461142) + (xy 152.000197 95.461144) + (xy 152.185354 95.5005) + (xy 152.244548 95.5005) + (xy 152.311587 95.520185) + (xy 152.332229 95.536819) + (xy 152.712907 95.917497) + (xy 152.746392 95.97882) + (xy 152.741408 96.048512) + (xy 152.715042 96.087912) + (xy 152.716427 96.089187) + (xy 152.55985 96.259272) + (xy 152.559842 96.259283) + (xy 152.473808 96.390968) + (xy 152.420662 96.436325) + (xy 152.35143 96.445748) + (xy 152.288095 96.416246) + (xy 152.266192 96.390968) + (xy 152.180157 96.259283) + (xy 152.180149 96.259272) + (xy 152.027049 96.092963) + (xy 152.027048 96.092962) + (xy 152.027046 96.09296) + (xy 151.848649 95.954107) + (xy 151.781 95.917497) + (xy 151.649832 95.846512) + (xy 151.649827 95.84651) + (xy 151.436017 95.773109) + (xy 151.254388 95.742801) + (xy 151.213033 95.7359) + (xy 150.986967 95.7359) + (xy 150.945612 95.742801) + (xy 150.763982 95.773109) + (xy 150.550172 95.84651) + (xy 150.550167 95.846512) + (xy 150.351352 95.954106) + (xy 150.172955 96.092959) + (xy 150.17295 96.092963) + (xy 150.01985 96.259272) + (xy 150.019846 96.259278) + (xy 149.933807 96.390969) + (xy 149.88066 96.436325) + (xy 149.811429 96.445748) + (xy 149.748093 96.416245) + (xy 149.726192 96.390969) + (xy 149.640156 96.259281) + (xy 149.640151 96.259276) + (xy 149.640149 96.259272) + (xy 149.487049 96.092963) + (xy 149.487048 96.092962) + (xy 149.487046 96.09296) + (xy 149.308649 95.954107) + (xy 149.241 95.917497) + (xy 149.109832 95.846512) + (xy 149.109827 95.84651) + (xy 148.896017 95.773109) + (xy 148.714388 95.742801) + (xy 148.673033 95.7359) + (xy 148.446967 95.7359) + (xy 148.405612 95.742801) + (xy 148.223982 95.773109) + (xy 148.010172 95.84651) + (xy 148.010167 95.846512) + (xy 147.811352 95.954106) + (xy 147.632955 96.092959) + (xy 147.63295 96.092963) + (xy 147.47985 96.259272) + (xy 147.479842 96.259283) + (xy 147.393808 96.390968) + (xy 147.340662 96.436325) + (xy 147.27143 96.445748) + (xy 147.208095 96.416246) + (xy 147.186192 96.390968) + (xy 147.100157 96.259283) + (xy 147.100149 96.259272) + (xy 146.947049 96.092963) + (xy 146.947048 96.092962) + (xy 146.947046 96.09296) + (xy 146.768649 95.954107) + (xy 146.701 95.917497) + (xy 146.569832 95.846512) + (xy 146.569827 95.84651) + (xy 146.356017 95.773109) + (xy 146.174388 95.742801) + (xy 146.133033 95.7359) + (xy 145.906967 95.7359) + (xy 145.865612 95.742801) + (xy 145.683982 95.773109) + (xy 145.470172 95.84651) + (xy 145.470167 95.846512) + (xy 145.271352 95.954106) + (xy 145.092955 96.092959) + (xy 145.09295 96.092963) + (xy 144.93985 96.259272) + (xy 144.939842 96.259283) + (xy 144.853808 96.390968) + (xy 144.800662 96.436325) + (xy 144.73143 96.445748) + (xy 144.668095 96.416246) + (xy 144.646192 96.390968) + (xy 144.560157 96.259283) + (xy 144.560149 96.259272) + (xy 144.407049 96.092963) + (xy 144.407048 96.092962) + (xy 144.407046 96.09296) + (xy 144.228649 95.954107) + (xy 144.161 95.917497) + (xy 144.029832 95.846512) + (xy 144.029827 95.84651) + (xy 143.816017 95.773109) + (xy 143.634388 95.742801) + (xy 143.593033 95.7359) + (xy 143.366967 95.7359) + (xy 143.325612 95.742801) + (xy 143.143982 95.773109) + (xy 142.930172 95.84651) + (xy 142.930167 95.846512) + (xy 142.731352 95.954106) + (xy 142.552955 96.092959) + (xy 142.55295 96.092963) + (xy 142.39985 96.259272) + (xy 142.399842 96.259283) + (xy 142.313808 96.390968) + (xy 142.260662 96.436325) + (xy 142.19143 96.445748) + (xy 142.128095 96.416246) + (xy 142.106192 96.390968) + (xy 142.020157 96.259283) + (xy 142.020149 96.259272) + (xy 141.867049 96.092963) + (xy 141.867048 96.092962) + (xy 141.867046 96.09296) + (xy 141.688649 95.954107) + (xy 141.621 95.917497) + (xy 141.489832 95.846512) + (xy 141.489827 95.84651) + (xy 141.276017 95.773109) + (xy 141.094388 95.742801) + (xy 141.053033 95.7359) + (xy 140.826967 95.7359) + (xy 140.795112 95.741215) + (xy 140.60398 95.773109) + (xy 140.598066 95.77514) + (xy 140.528267 95.778286) + (xy 140.470128 95.745538) + (xy 139.552554 94.827964) + (xy 138.590803 93.866212) + (xy 138.58098 93.85395) + (xy 138.580759 93.854134) + (xy 138.575786 93.848122) + (xy 138.526066 93.801432) + (xy 138.524666 93.800075) + (xy 138.504476 93.779884) + (xy 138.498986 93.775625) + (xy 138.494561 93.771847) + (xy 138.460582 93.739938) + (xy 138.46058 93.739936) + (xy 138.460577 93.739935) + (xy 138.443029 93.730288) + (xy 138.426763 93.719604) + (xy 138.410933 93.707325) + (xy 138.368168 93.688818) + (xy 138.362922 93.686248) + (xy 138.322093 93.663803) + (xy 138.322092 93.663802) + (xy 138.302693 93.658822) + (xy 138.284281 93.652518) + (xy 138.265898 93.644562) + (xy 138.265892 93.64456) + (xy 138.219874 93.637272) + (xy 138.214152 93.636087) + (xy 138.169021 93.6245) + (xy 138.169019 93.6245) + (xy 138.148984 93.6245) + (xy 138.129586 93.622973) + (xy 138.122162 93.621797) + (xy 138.109805 93.61984) + (xy 138.109804 93.61984) + (xy 138.063416 93.624225) + (xy 138.057578 93.6245) + (xy 87.532743 93.6245) + (xy 87.517122 93.622775) + (xy 87.517095 93.623061) + (xy 87.509333 93.622326) + (xy 87.44114 93.624469) + (xy 87.439193 93.6245) + (xy 87.410649 93.6245) + (xy 87.403778 93.625367) + (xy 87.397959 93.625825) + (xy 87.351374 93.627289) + (xy 87.351368 93.62729) + (xy 87.332126 93.63288) + (xy 87.313087 93.636823) + (xy 87.293217 93.639334) + (xy 87.293203 93.639337) + (xy 87.249883 93.656488) + (xy 87.244358 93.65838) + (xy 87.199613 93.67138) + (xy 87.19961 93.671381) + (xy 87.182366 93.681579) + (xy 87.164905 93.690133) + (xy 87.146274 93.69751) + (xy 87.146262 93.697517) + (xy 87.10857 93.724902) + (xy 87.103687 93.728109) + (xy 87.06358 93.751829) + (xy 87.049414 93.765995) + (xy 87.034624 93.778627) + (xy 87.018414 93.790404) + (xy 87.018411 93.790407) + (xy 86.98871 93.826309) + (xy 86.984777 93.830631) + (xy 83.336208 97.479199) + (xy 83.323951 97.48902) + (xy 83.324134 97.489241) + (xy 83.318122 97.494214) + (xy 83.271432 97.543932) + (xy 83.270079 97.545329) + (xy 83.249889 97.565519) + (xy 83.249877 97.565532) + (xy 83.245621 97.571017) + (xy 83.241837 97.575447) + (xy 83.209937 97.609418) + (xy 83.209936 97.60942) + (xy 83.200284 97.626976) + (xy 83.18961 97.643226) + (xy 83.177329 97.659061) + (xy 83.177324 97.659068) + (xy 83.158815 97.701838) + (xy 83.156245 97.707084) + (xy 83.133803 97.747906) + (xy 83.128822 97.767307) + (xy 83.122521 97.78571) + (xy 83.114562 97.804102) + (xy 83.114561 97.804105) + (xy 83.107271 97.850127) + (xy 83.106087 97.855846) + (xy 83.094501 97.900972) + (xy 83.0945 97.900982) + (xy 83.0945 97.921016) + (xy 83.092973 97.940413) + (xy 83.08984 97.960196) + (xy 83.093831 98.002415) + (xy 83.094225 98.006583) + (xy 83.0945 98.012421) + (xy 83.0945 99.311082) + (xy 83.074815 99.378121) + (xy 83.024302 99.422802) + (xy 82.85737 99.503192) + (xy 82.646782 99.646768) + (xy 82.459952 99.820121) + (xy 82.45995 99.820123) + (xy 82.301041 100.019388) + (xy 82.173608 100.240109) + (xy 82.080492 100.477362) + (xy 82.08049 100.477369) + (xy 82.023777 100.725845) + (xy 82.004732 100.979995) + (xy 82.004732 100.980004) + (xy 82.023777 101.234154) + (xy 82.079161 101.476809) + (xy 82.080492 101.482637) + (xy 82.13892 101.631509) + (xy 82.173608 101.71989) + (xy 82.18902 101.746585) + (xy 82.301041 101.940612) + (xy 82.45995 102.139877) + (xy 82.646783 102.313232) + (xy 82.857366 102.456805) + (xy 82.857371 102.456807) + (xy 82.857372 102.456808) + (xy 82.857373 102.456809) + (xy 82.955575 102.5041) + (xy 83.086992 102.567387) + (xy 83.086993 102.567387) + (xy 83.086996 102.567389) + (xy 83.163246 102.590909) + (xy 83.230029 102.611509) + (xy 83.288288 102.65008) + (xy 83.316446 102.714024) + (xy 83.305562 102.783041) + (xy 83.259093 102.835218) + (xy 83.230029 102.848491) + (xy 83.086992 102.892612) + (xy 82.857373 103.00319) + (xy 82.857372 103.003191) + (xy 82.646782 103.146768) + (xy 82.459952 103.320121) + (xy 82.45995 103.320123) + (xy 82.301041 103.519388) + (xy 82.173608 103.740109) + (xy 82.080492 103.977362) + (xy 82.08049 103.977369) + (xy 82.023777 104.225845) + (xy 82.004732 104.479995) + (xy 82.004732 104.480004) + (xy 81 104.480004) + (xy 81 91.588842) + (xy 81.019685 91.521803) + (xy 81.072489 91.476048) + (xy 81.141647 91.466104) + (xy 81.205203 91.495129) + (xy 81.235 91.53357) + (xy 81.369021 91.802721) + (xy 81.525841 92.039388) + (xy 81.546212 92.07013) + (xy 81.754922 92.313737) + (xy 81.991986 92.529849) + (xy 81.991989 92.529851) + (xy 82.253805 92.715187) + (xy 82.253815 92.715193) + (xy 82.536416 92.866948) + (xy 82.536422 92.86695) + (xy 82.536429 92.866954) + (xy 82.69789 92.929504) + (xy 82.835544 92.982832) + (xy 82.835547 92.982832) + (xy 82.835553 92.982835) + (xy 83.146651 93.061079) + (xy 83.266034 93.075861) + (xy 83.465002 93.1005) + (xy 83.465007 93.1005) + (xy 83.705512 93.1005) + (xy 83.705526 93.1005) + (xy 83.945578 93.085694) + (xy 84.260903 93.02675) + (xy 84.566594 92.929502) + (xy 84.858018 92.795426) + (xy 85.130756 92.626554) + (xy 85.380675 92.425445) + (xy 85.603985 92.195148) + (xy 85.797303 91.939155) + (xy 85.957696 91.661345) + (xy 86.082734 91.365931) + (xy 86.170522 91.05739) + (xy 86.219728 90.7404) + (xy 86.224662 90.580236) + (xy 129.395793 90.580236) + (xy 129.425391 90.899651) + (xy 129.425392 90.899657) + (xy 129.494018 91.213013) + (xy 129.600635 91.515566) + (xy 129.743621 91.802721) + (xy 129.900441 92.039388) + (xy 129.920812 92.07013) + (xy 130.129522 92.313737) + (xy 130.366586 92.529849) + (xy 130.366589 92.529851) + (xy 130.628405 92.715187) + (xy 130.628415 92.715193) + (xy 130.911016 92.866948) + (xy 130.911022 92.86695) + (xy 130.911029 92.866954) + (xy 131.07249 92.929504) + (xy 131.210144 92.982832) + (xy 131.210147 92.982832) + (xy 131.210153 92.982835) + (xy 131.521251 93.061079) + (xy 131.640634 93.075861) + (xy 131.839602 93.1005) + (xy 131.839607 93.1005) + (xy 132.080112 93.1005) + (xy 132.080126 93.1005) + (xy 132.320178 93.085694) + (xy 132.635503 93.02675) + (xy 132.941194 92.929502) + (xy 133.232618 92.795426) + (xy 133.505356 92.626554) + (xy 133.755275 92.425445) + (xy 133.978585 92.195148) + (xy 134.171903 91.939155) + (xy 134.332296 91.661345) + (xy 134.457334 91.365931) + (xy 134.545122 91.05739) + (xy 134.594328 90.7404) + (xy 134.599262 90.580236) + (xy 137.395793 90.580236) + (xy 137.425391 90.899651) + (xy 137.425392 90.899657) + (xy 137.494018 91.213013) + (xy 137.600635 91.515566) + (xy 137.743621 91.802721) + (xy 137.900441 92.039388) + (xy 137.920812 92.07013) + (xy 138.129522 92.313737) + (xy 138.366586 92.529849) + (xy 138.366589 92.529851) + (xy 138.628405 92.715187) + (xy 138.628415 92.715193) + (xy 138.911016 92.866948) + (xy 138.911022 92.86695) + (xy 138.911029 92.866954) + (xy 139.07249 92.929504) + (xy 139.210144 92.982832) + (xy 139.210147 92.982832) + (xy 139.210153 92.982835) + (xy 139.521251 93.061079) + (xy 139.640634 93.075861) + (xy 139.839602 93.1005) + (xy 139.839607 93.1005) + (xy 140.080112 93.1005) + (xy 140.080126 93.1005) + (xy 140.320178 93.085694) + (xy 140.635503 93.02675) + (xy 140.941194 92.929502) + (xy 141.232618 92.795426) + (xy 141.505356 92.626554) + (xy 141.755275 92.425445) + (xy 141.978585 92.195148) + (xy 142.171903 91.939155) + (xy 142.332296 91.661345) + (xy 142.457334 91.365931) + (xy 142.545122 91.05739) + (xy 142.594328 90.7404) + (xy 142.604206 90.419765) + (xy 142.574608 90.100347) + (xy 142.540063 89.94261) + (xy 142.505981 89.786986) + (xy 142.46676 89.675686) + (xy 142.399366 89.484436) + (xy 142.256379 89.197279) + (xy 142.079188 88.92987) + (xy 141.870478 88.686263) + (xy 141.74295 88.570006) + (xy 144.591225 88.570006) + (xy 144.609892 88.795289) + (xy 144.665388 89.014439) + (xy 144.756198 89.221466) + (xy 144.879842 89.410716) + (xy 144.87985 89.410727) + (xy 145.03295 89.577036) + (xy 145.032954 89.57704) + (xy 145.211351 89.715893) + (xy 145.410169 89.823488) + (xy 145.410172 89.823489) + (xy 145.623982 89.89689) + (xy 145.623984 89.89689) + (xy 145.623986 89.896891) + (xy 145.846967 89.9341) + (xy 145.846968 89.9341) + (xy 146.073032 89.9341) + (xy 146.073033 89.9341) + (xy 146.296014 89.896891) + (xy 146.509831 89.823488) + (xy 146.708649 89.715893) + (xy 146.887046 89.57704) + (xy 147.040156 89.410719) + (xy 147.126193 89.279028) + (xy 147.179338 89.233675) + (xy 147.248569 89.224251) + (xy 147.311905 89.253753) + (xy 147.333804 89.279025) + (xy 147.419844 89.410719) + (xy 147.419849 89.410724) + (xy 147.41985 89.410727) + (xy 147.57295 89.577036) + (xy 147.572954 89.57704) + (xy 147.751351 89.715893) + (xy 147.950169 89.823488) + (xy 147.950172 89.823489) + (xy 148.163982 89.89689) + (xy 148.163984 89.89689) + (xy 148.163986 89.896891) + (xy 148.386967 89.9341) + (xy 148.386968 89.9341) + (xy 148.613032 89.9341) + (xy 148.613033 89.9341) + (xy 148.836014 89.896891) + (xy 149.049831 89.823488) + (xy 149.248649 89.715893) + (xy 149.427046 89.57704) + (xy 149.481815 89.517545) + (xy 149.541699 89.481557) + (xy 149.611537 89.483657) + (xy 149.669153 89.52318) + (xy 149.689224 89.558196) + (xy 149.733046 89.675688) + (xy 149.733049 89.675693) + (xy 149.819209 89.790787) + (xy 149.819212 89.79079) + (xy 149.934306 89.87695) + (xy 149.934313 89.876954) + (xy 150.06902 89.927196) + (xy 150.069027 89.927198) + (xy 150.128555 89.933599) + (xy 150.128572 89.9336) + (xy 150.79 89.9336) + (xy 150.79 89.014297) + (xy 150.895408 89.062435) + (xy 151.003666 89.078) + (xy 151.076334 89.078) + (xy 151.184592 89.062435) + (xy 151.29 89.014297) + (xy 151.29 89.9336) + (xy 151.951428 89.9336) + (xy 151.951444 89.933599) + (xy 152.010972 89.927198) + (xy 152.010979 89.927196) + (xy 152.145686 89.876954) + (xy 152.145693 89.87695) + (xy 152.260787 89.79079) + (xy 152.26079 89.790787) + (xy 152.34695 89.675693) + (xy 152.346954 89.675686) + (xy 152.390775 89.558197) + (xy 152.432646 89.502263) + (xy 152.49811 89.477846) + (xy 152.566383 89.492698) + (xy 152.598186 89.517547) + (xy 152.639578 89.56251) + (xy 152.652954 89.57704) + (xy 152.831351 89.715893) + (xy 153.030169 89.823488) + (xy 153.030172 89.823489) + (xy 153.243982 89.89689) + (xy 153.243984 89.89689) + (xy 153.243986 89.896891) + (xy 153.466967 89.9341) + (xy 153.466968 89.9341) + (xy 153.693032 89.9341) + (xy 153.693033 89.9341) + (xy 153.916014 89.896891) + (xy 154.129831 89.823488) + (xy 154.328649 89.715893) + (xy 154.507046 89.57704) + (xy 154.660156 89.410719) + (xy 154.783802 89.221465) + (xy 154.874611 89.014441) + (xy 154.930107 88.795293) + (xy 154.948775 88.57) + (xy 154.948775 88.569993) + (xy 154.932488 88.373446) + (xy 154.930107 88.344707) + (xy 154.874611 88.125559) + (xy 154.783802 87.918535) + (xy 154.781038 87.914305) + (xy 154.721979 87.823908) + (xy 154.660156 87.729281) + (xy 154.660153 87.729278) + (xy 154.660149 87.729272) + (xy 154.507049 87.562963) + (xy 154.507048 87.562962) + (xy 154.507046 87.56296) + (xy 154.328649 87.424107) + (xy 154.279242 87.397369) + (xy 154.129832 87.316512) + (xy 154.129827 87.31651) + (xy 153.916017 87.243109) + (xy 153.734388 87.212801) + (xy 153.693033 87.2059) + (xy 153.466967 87.2059) + (xy 153.425612 87.212801) + (xy 153.243982 87.243109) + (xy 153.030172 87.31651) + (xy 153.030167 87.316512) + (xy 152.831352 87.424106) + (xy 152.652955 87.562958) + (xy 152.598186 87.622453) + (xy 152.538298 87.658443) + (xy 152.46846 87.656342) + (xy 152.410845 87.616817) + (xy 152.390775 87.581802) + (xy 152.346954 87.464313) + (xy 152.34695 87.464306) + (xy 152.26079 87.349212) + (xy 152.260787 87.349209) + (xy 152.145693 87.263049) + (xy 152.145686 87.263045) + (xy 152.010979 87.212803) + (xy 152.010972 87.212801) + (xy 151.951444 87.2064) + (xy 151.29 87.2064) + (xy 151.29 88.125702) + (xy 151.184592 88.077565) + (xy 151.076334 88.062) + (xy 151.003666 88.062) + (xy 150.895408 88.077565) + (xy 150.79 88.125702) + (xy 150.79 87.2064) + (xy 150.128555 87.2064) + (xy 150.069027 87.212801) + (xy 150.06902 87.212803) + (xy 149.934313 87.263045) + (xy 149.934306 87.263049) + (xy 149.819212 87.349209) + (xy 149.819209 87.349212) + (xy 149.733049 87.464306) + (xy 149.733046 87.464312) + (xy 149.689224 87.581803) + (xy 149.647352 87.637736) + (xy 149.581887 87.662153) + (xy 149.513615 87.647301) + (xy 149.481813 87.622452) + (xy 149.427049 87.562963) + (xy 149.427048 87.562962) + (xy 149.427046 87.56296) + (xy 149.248649 87.424107) + (xy 149.199242 87.397369) + (xy 149.049832 87.316512) + (xy 149.049827 87.31651) + (xy 148.836017 87.243109) + (xy 148.654388 87.212801) + (xy 148.613033 87.2059) + (xy 148.386967 87.2059) + (xy 148.345612 87.212801) + (xy 148.163982 87.243109) + (xy 147.950172 87.31651) + (xy 147.950167 87.316512) + (xy 147.751352 87.424106) + (xy 147.572955 87.562959) + (xy 147.57295 87.562963) + (xy 147.41985 87.729272) + (xy 147.419842 87.729283) + (xy 147.333808 87.860968) + (xy 147.280662 87.906325) + (xy 147.21143 87.915748) + (xy 147.148095 87.886246) + (xy 147.126192 87.860968) + (xy 147.074741 87.782217) + (xy 147.040156 87.729281) + (xy 147.040153 87.729278) + (xy 147.040149 87.729272) + (xy 146.887049 87.562963) + (xy 146.887048 87.562962) + (xy 146.887046 87.56296) + (xy 146.708649 87.424107) + (xy 146.659242 87.397369) + (xy 146.509832 87.316512) + (xy 146.509827 87.31651) + (xy 146.296017 87.243109) + (xy 146.114388 87.212801) + (xy 146.073033 87.2059) + (xy 145.846967 87.2059) + (xy 145.805612 87.212801) + (xy 145.623982 87.243109) + (xy 145.410172 87.31651) + (xy 145.410167 87.316512) + (xy 145.211352 87.424106) + (xy 145.032955 87.562959) + (xy 145.03295 87.562963) + (xy 144.87985 87.729272) + (xy 144.879842 87.729283) + (xy 144.756198 87.918533) + (xy 144.665388 88.12556) + (xy 144.609892 88.34471) + (xy 144.591225 88.569993) + (xy 144.591225 88.570006) + (xy 141.74295 88.570006) + (xy 141.701049 88.531808) + (xy 141.63342 88.470156) + (xy 141.63341 88.470148) + (xy 141.371594 88.284812) + (xy 141.371584 88.284806) + (xy 141.088983 88.133051) + (xy 141.088973 88.133047) + (xy 141.088971 88.133046) + (xy 141.020805 88.106638) + (xy 140.789855 88.017167) + (xy 140.789851 88.017166) + (xy 140.478745 87.93892) + (xy 140.160398 87.8995) + (xy 140.160393 87.8995) + (xy 139.919874 87.8995) + (xy 139.867156 87.902751) + (xy 139.679824 87.914305) + (xy 139.364499 87.973249) + (xy 139.364497 87.97325) + (xy 139.058814 88.070495) + (xy 139.05881 88.070496) + (xy 139.058806 88.070498) + (xy 138.884928 88.150494) + (xy 138.767381 88.204574) + (xy 138.494656 88.373437) + (xy 138.494636 88.373451) + (xy 138.244728 88.574551) + (xy 138.021413 88.804853) + (xy 137.828095 89.060847) + (xy 137.667701 89.33866) + (xy 137.542668 89.634062) + (xy 137.54266 89.634086) + (xy 137.454879 89.942602) + (xy 137.454878 89.942607) + (xy 137.405672 90.259592) + (xy 137.405671 90.259603) + (xy 137.395793 90.580236) + (xy 134.599262 90.580236) + (xy 134.604206 90.419765) + (xy 134.574608 90.100347) + (xy 134.540063 89.94261) + (xy 134.505981 89.786986) + (xy 134.46676 89.675686) + (xy 134.399366 89.484436) + (xy 134.256379 89.197279) + (xy 134.079188 88.92987) + (xy 133.870478 88.686263) + (xy 133.701049 88.531808) + (xy 133.63342 88.470156) + (xy 133.63341 88.470148) + (xy 133.371594 88.284812) + (xy 133.371584 88.284806) + (xy 133.088983 88.133051) + (xy 133.088973 88.133047) + (xy 133.088971 88.133046) + (xy 133.020805 88.106638) + (xy 132.789855 88.017167) + (xy 132.789851 88.017166) + (xy 132.478745 87.93892) + (xy 132.160398 87.8995) + (xy 132.160393 87.8995) + (xy 131.919874 87.8995) + (xy 131.867156 87.902751) + (xy 131.679824 87.914305) + (xy 131.364499 87.973249) + (xy 131.364497 87.97325) + (xy 131.058814 88.070495) + (xy 131.05881 88.070496) + (xy 131.058806 88.070498) + (xy 130.884928 88.150494) + (xy 130.767381 88.204574) + (xy 130.494656 88.373437) + (xy 130.494636 88.373451) + (xy 130.244728 88.574551) + (xy 130.021413 88.804853) + (xy 129.828095 89.060847) + (xy 129.667701 89.33866) + (xy 129.542668 89.634062) + (xy 129.54266 89.634086) + (xy 129.454879 89.942602) + (xy 129.454878 89.942607) + (xy 129.405672 90.259592) + (xy 129.405671 90.259603) + (xy 129.395793 90.580236) + (xy 86.224662 90.580236) + (xy 86.229606 90.419765) + (xy 86.200008 90.100347) + (xy 86.165463 89.94261) + (xy 86.131381 89.786986) + (xy 86.09216 89.675686) + (xy 86.024766 89.484436) + (xy 85.881779 89.197279) + (xy 85.704588 88.92987) + (xy 85.495878 88.686263) + (xy 85.326449 88.531808) + (xy 85.25882 88.470156) + (xy 85.25881 88.470148) + (xy 84.996994 88.284812) + (xy 84.996984 88.284806) + (xy 84.714383 88.133051) + (xy 84.714373 88.133047) + (xy 84.714371 88.133046) + (xy 84.646205 88.106638) + (xy 84.415255 88.017167) + (xy 84.415251 88.017166) + (xy 84.104145 87.93892) + (xy 83.785798 87.8995) + (xy 83.785793 87.8995) + (xy 83.545274 87.8995) + (xy 83.492556 87.902751) + (xy 83.305224 87.914305) + (xy 82.989899 87.973249) + (xy 82.989897 87.97325) + (xy 82.684214 88.070495) + (xy 82.68421 88.070496) + (xy 82.684206 88.070498) + (xy 82.510328 88.150494) + (xy 82.392781 88.204574) + (xy 82.120056 88.373437) + (xy 82.120036 88.373451) + (xy 81.870128 88.574551) + (xy 81.646813 88.804853) + (xy 81.453495 89.060847) + (xy 81.293101 89.33866) + (xy 81.238192 89.468389) + (xy 81.193934 89.522454) + (xy 81.127472 89.544007) + (xy 81.059907 89.526207) + (xy 81.012692 89.474705) + (xy 81 89.420056) + (xy 81 87.624) + (xy 81.019685 87.556961) + (xy 81.072489 87.511206) + (xy 81.124 87.5) + (xy 101 87.5) + (xy 101 81.830006) + (xy 130.656625 81.830006) + (xy 130.675292 82.055289) + (xy 130.730788 82.274439) + (xy 130.821598 82.481466) + (xy 130.945242 82.670716) + (xy 130.94525 82.670727) + (xy 131.075865 82.812611) + (xy 131.098354 82.83704) + (xy 131.276751 82.975893) + (xy 131.475569 83.083488) + (xy 131.475572 83.083489) + (xy 131.689382 83.15689) + (xy 131.689384 83.15689) + (xy 131.689386 83.156891) + (xy 131.912367 83.1941) + (xy 131.912368 83.1941) + (xy 132.138432 83.1941) + (xy 132.138433 83.1941) + (xy 132.361414 83.156891) + (xy 132.575231 83.083488) + (xy 132.774049 82.975893) + (xy 132.952446 82.83704) + (xy 133.052232 82.728643) + (xy 133.105549 82.670727) + (xy 133.105549 82.670726) + (xy 133.105556 82.670719) + (xy 133.191593 82.539028) + (xy 133.244738 82.493675) + (xy 133.313969 82.484251) + (xy 133.377305 82.513753) + (xy 133.399204 82.539025) + (xy 133.485244 82.670719) + (xy 133.485249 82.670724) + (xy 133.48525 82.670727) + (xy 133.615865 82.812611) + (xy 133.638354 82.83704) + (xy 133.816751 82.975893) + (xy 134.015569 83.083488) + (xy 134.015572 83.083489) + (xy 134.229382 83.15689) + (xy 134.229384 83.15689) + (xy 134.229386 83.156891) + (xy 134.452367 83.1941) + (xy 134.452368 83.1941) + (xy 134.678432 83.1941) + (xy 134.678433 83.1941) + (xy 134.901414 83.156891) + (xy 135.115231 83.083488) + (xy 135.314049 82.975893) + (xy 135.492446 82.83704) + (xy 135.592232 82.728643) + (xy 135.645549 82.670727) + (xy 135.645551 82.670724) + (xy 135.645556 82.670719) + (xy 135.769202 82.481465) + (xy 135.860011 82.274441) + (xy 135.915507 82.055293) + (xy 135.931201 81.865893) + (xy 135.934175 81.830006) + (xy 135.934175 81.829993) + (xy 135.920714 81.667547) + (xy 135.915507 81.604707) + (xy 135.860011 81.385559) + (xy 135.769202 81.178535) + (xy 135.645556 80.989281) + (xy 135.645553 80.989278) + (xy 135.645549 80.989272) + (xy 135.492449 80.822963) + (xy 135.492448 80.822962) + (xy 135.492446 80.82296) + (xy 135.360172 80.720006) + (xy 144.591225 80.720006) + (xy 144.609892 80.945289) + (xy 144.665388 81.164439) + (xy 144.756198 81.371466) + (xy 144.879842 81.560716) + (xy 144.87985 81.560727) + (xy 145.03295 81.727036) + (xy 145.032954 81.72704) + (xy 145.211351 81.865893) + (xy 145.410169 81.973488) + (xy 145.410172 81.973489) + (xy 145.623982 82.04689) + (xy 145.623984 82.04689) + (xy 145.623986 82.046891) + (xy 145.846967 82.0841) + (xy 145.846968 82.0841) + (xy 146.073032 82.0841) + (xy 146.073033 82.0841) + (xy 146.296014 82.046891) + (xy 146.509831 81.973488) + (xy 146.708649 81.865893) + (xy 146.887046 81.72704) + (xy 147.040156 81.560719) + (xy 147.126193 81.429028) + (xy 147.179338 81.383675) + (xy 147.248569 81.374251) + (xy 147.311905 81.403753) + (xy 147.333804 81.429025) + (xy 147.419844 81.560719) + (xy 147.419849 81.560724) + (xy 147.41985 81.560727) + (xy 147.57295 81.727036) + (xy 147.572954 81.72704) + (xy 147.751351 81.865893) + (xy 147.950169 81.973488) + (xy 147.950172 81.973489) + (xy 148.163982 82.04689) + (xy 148.163984 82.04689) + (xy 148.163986 82.046891) + (xy 148.386967 82.0841) + (xy 148.386968 82.0841) + (xy 148.613032 82.0841) + (xy 148.613033 82.0841) + (xy 148.836014 82.046891) + (xy 149.049831 81.973488) + (xy 149.248649 81.865893) + (xy 149.427046 81.72704) + (xy 149.481815 81.667545) + (xy 149.541699 81.631557) + (xy 149.611537 81.633657) + (xy 149.669153 81.67318) + (xy 149.689224 81.708196) + (xy 149.733046 81.825688) + (xy 149.733049 81.825693) + (xy 149.819209 81.940787) + (xy 149.819212 81.94079) + (xy 149.934306 82.02695) + (xy 149.934313 82.026954) + (xy 150.06902 82.077196) + (xy 150.069027 82.077198) + (xy 150.128555 82.083599) + (xy 150.128572 82.0836) + (xy 150.79 82.0836) + (xy 150.79 81.164297) + (xy 150.895408 81.212435) + (xy 151.003666 81.228) + (xy 151.076334 81.228) + (xy 151.184592 81.212435) + (xy 151.29 81.164297) + (xy 151.29 82.0836) + (xy 151.951428 82.0836) + (xy 151.951444 82.083599) + (xy 152.010972 82.077198) + (xy 152.010979 82.077196) + (xy 152.145686 82.026954) + (xy 152.145693 82.02695) + (xy 152.260787 81.94079) + (xy 152.26079 81.940787) + (xy 152.34695 81.825693) + (xy 152.346954 81.825686) + (xy 152.390775 81.708197) + (xy 152.432646 81.652263) + (xy 152.49811 81.627846) + (xy 152.566383 81.642698) + (xy 152.598186 81.667547) + (xy 152.65295 81.727036) + (xy 152.652954 81.72704) + (xy 152.831351 81.865893) + (xy 153.030169 81.973488) + (xy 153.030172 81.973489) + (xy 153.243982 82.04689) + (xy 153.243984 82.04689) + (xy 153.243986 82.046891) + (xy 153.466967 82.0841) + (xy 153.466968 82.0841) + (xy 153.693032 82.0841) + (xy 153.693033 82.0841) + (xy 153.916014 82.046891) + (xy 154.129831 81.973488) + (xy 154.328649 81.865893) + (xy 154.507046 81.72704) + (xy 154.660156 81.560719) + (xy 154.783802 81.371465) + (xy 154.874611 81.164441) + (xy 154.930107 80.945293) + (xy 154.937574 80.855175) + (xy 154.948775 80.720006) + (xy 157.321225 80.720006) + (xy 157.339892 80.945289) + (xy 157.395388 81.164439) + (xy 157.486198 81.371466) + (xy 157.609842 81.560716) + (xy 157.60985 81.560727) + (xy 157.76295 81.727036) + (xy 157.762954 81.72704) + (xy 157.941351 81.865893) + (xy 158.140169 81.973488) + (xy 158.140172 81.973489) + (xy 158.353982 82.04689) + (xy 158.353984 82.04689) + (xy 158.353986 82.046891) + (xy 158.576967 82.0841) + (xy 158.576968 82.0841) + (xy 158.803032 82.0841) + (xy 158.803033 82.0841) + (xy 159.026014 82.046891) + (xy 159.239831 81.973488) + (xy 159.438649 81.865893) + (xy 159.617046 81.72704) + (xy 159.770156 81.560719) + (xy 159.856193 81.429029) + (xy 159.909336 81.383675) + (xy 159.978567 81.374251) + (xy 160.041903 81.403753) + (xy 160.063807 81.429031) + (xy 160.149842 81.560716) + (xy 160.14985 81.560727) + (xy 160.30295 81.727036) + (xy 160.302954 81.72704) + (xy 160.481351 81.865893) + (xy 160.680169 81.973488) + (xy 160.680172 81.973489) + (xy 160.893982 82.04689) + (xy 160.893984 82.04689) + (xy 160.893986 82.046891) + (xy 161.116967 82.0841) + (xy 161.116968 82.0841) + (xy 161.343032 82.0841) + (xy 161.343033 82.0841) + (xy 161.566014 82.046891) + (xy 161.779831 81.973488) + (xy 161.978649 81.865893) + (xy 162.157046 81.72704) + (xy 162.211815 81.667545) + (xy 162.271699 81.631557) + (xy 162.341537 81.633657) + (xy 162.399153 81.67318) + (xy 162.419224 81.708196) + (xy 162.463046 81.825688) + (xy 162.463049 81.825693) + (xy 162.549209 81.940787) + (xy 162.549212 81.94079) + (xy 162.664306 82.02695) + (xy 162.664313 82.026954) + (xy 162.79902 82.077196) + (xy 162.799027 82.077198) + (xy 162.858555 82.083599) + (xy 162.858572 82.0836) + (xy 163.52 82.0836) + (xy 163.52 81.164297) + (xy 163.625408 81.212435) + (xy 163.733666 81.228) + (xy 163.806334 81.228) + (xy 163.914592 81.212435) + (xy 164.02 81.164297) + (xy 164.02 82.0836) + (xy 164.681428 82.0836) + (xy 164.681444 82.083599) + (xy 164.740972 82.077198) + (xy 164.740979 82.077196) + (xy 164.875686 82.026954) + (xy 164.875693 82.02695) + (xy 164.990787 81.94079) + (xy 164.99079 81.940787) + (xy 165.07695 81.825693) + (xy 165.076954 81.825686) + (xy 165.120775 81.708197) + (xy 165.162646 81.652263) + (xy 165.22811 81.627846) + (xy 165.296383 81.642698) + (xy 165.328186 81.667547) + (xy 165.38295 81.727036) + (xy 165.382954 81.72704) + (xy 165.561351 81.865893) + (xy 165.760169 81.973488) + (xy 165.760172 81.973489) + (xy 165.973982 82.04689) + (xy 165.973984 82.04689) + (xy 165.973986 82.046891) + (xy 166.196967 82.0841) + (xy 166.196968 82.0841) + (xy 166.423032 82.0841) + (xy 166.423033 82.0841) + (xy 166.646014 82.046891) + (xy 166.859831 81.973488) + (xy 167.058649 81.865893) + (xy 167.237046 81.72704) + (xy 167.390156 81.560719) + (xy 167.513802 81.371465) + (xy 167.604611 81.164441) + (xy 167.660107 80.945293) + (xy 167.667574 80.855175) + (xy 167.678775 80.720006) + (xy 167.678775 80.719993) + (xy 167.665517 80.559999) + (xy 167.660107 80.494707) + (xy 167.604611 80.275559) + (xy 167.513802 80.068535) + (xy 167.390156 79.879281) + (xy 167.390153 79.879278) + (xy 167.390149 79.879272) + (xy 167.237049 79.712963) + (xy 167.237048 79.712962) + (xy 167.237046 79.71296) + (xy 167.058649 79.574107) + (xy 167.03239 79.559896) + (xy 166.859832 79.466512) + (xy 166.859827 79.46651) + (xy 166.646017 79.393109) + (xy 166.464388 79.362801) + (xy 166.423033 79.3559) + (xy 166.196967 79.3559) + (xy 166.155612 79.362801) + (xy 165.973982 79.393109) + (xy 165.760172 79.46651) + (xy 165.760167 79.466512) + (xy 165.561352 79.574106) + (xy 165.382955 79.712958) + (xy 165.328186 79.772453) + (xy 165.268298 79.808443) + (xy 165.19846 79.806342) + (xy 165.140845 79.766817) + (xy 165.120775 79.731802) + (xy 165.076954 79.614313) + (xy 165.07695 79.614306) + (xy 164.99079 79.499212) + (xy 164.990787 79.499209) + (xy 164.875693 79.413049) + (xy 164.875686 79.413045) + (xy 164.740979 79.362803) + (xy 164.740972 79.362801) + (xy 164.681444 79.3564) + (xy 164.02 79.3564) + (xy 164.02 80.275702) + (xy 163.914592 80.227565) + (xy 163.806334 80.212) + (xy 163.733666 80.212) + (xy 163.625408 80.227565) + (xy 163.52 80.275702) + (xy 163.52 79.3564) + (xy 162.858555 79.3564) + (xy 162.799027 79.362801) + (xy 162.79902 79.362803) + (xy 162.664313 79.413045) + (xy 162.664306 79.413049) + (xy 162.549212 79.499209) + (xy 162.549209 79.499212) + (xy 162.463049 79.614306) + (xy 162.463046 79.614312) + (xy 162.419224 79.731803) + (xy 162.377352 79.787736) + (xy 162.311887 79.812153) + (xy 162.243615 79.797301) + (xy 162.211813 79.772452) + (xy 162.157049 79.712963) + (xy 162.157048 79.712962) + (xy 162.157046 79.71296) + (xy 161.978649 79.574107) + (xy 161.95239 79.559896) + (xy 161.779832 79.466512) + (xy 161.779827 79.46651) + (xy 161.566017 79.393109) + (xy 161.384388 79.362801) + (xy 161.343033 79.3559) + (xy 161.116967 79.3559) + (xy 161.075612 79.362801) + (xy 160.893982 79.393109) + (xy 160.680172 79.46651) + (xy 160.680167 79.466512) + (xy 160.481352 79.574106) + (xy 160.302955 79.712959) + (xy 160.30295 79.712963) + (xy 160.14985 79.879272) + (xy 160.149842 79.879283) + (xy 160.063808 80.010968) + (xy 160.010662 80.056325) + (xy 159.94143 80.065748) + (xy 159.878095 80.036246) + (xy 159.856192 80.010968) + (xy 159.770157 79.879283) + (xy 159.770149 79.879272) + (xy 159.617049 79.712963) + (xy 159.617048 79.712962) + (xy 159.617046 79.71296) + (xy 159.438649 79.574107) + (xy 159.41239 79.559896) + (xy 159.239832 79.466512) + (xy 159.239827 79.46651) + (xy 159.026017 79.393109) + (xy 158.844388 79.362801) + (xy 158.803033 79.3559) + (xy 158.576967 79.3559) + (xy 158.535612 79.362801) + (xy 158.353982 79.393109) + (xy 158.140172 79.46651) + (xy 158.140167 79.466512) + (xy 157.941352 79.574106) + (xy 157.762955 79.712959) + (xy 157.76295 79.712963) + (xy 157.60985 79.879272) + (xy 157.609842 79.879283) + (xy 157.486198 80.068533) + (xy 157.395388 80.27556) + (xy 157.339892 80.49471) + (xy 157.321225 80.719993) + (xy 157.321225 80.720006) + (xy 154.948775 80.720006) + (xy 154.948775 80.719993) + (xy 154.935517 80.559999) + (xy 154.930107 80.494707) + (xy 154.874611 80.275559) + (xy 154.783802 80.068535) + (xy 154.660156 79.879281) + (xy 154.660153 79.879278) + (xy 154.660149 79.879272) + (xy 154.507049 79.712963) + (xy 154.507048 79.712962) + (xy 154.507046 79.71296) + (xy 154.328649 79.574107) + (xy 154.30239 79.559896) + (xy 154.129832 79.466512) + (xy 154.129827 79.46651) + (xy 153.916017 79.393109) + (xy 153.734388 79.362801) + (xy 153.693033 79.3559) + (xy 153.466967 79.3559) + (xy 153.425612 79.362801) + (xy 153.243982 79.393109) + (xy 153.030172 79.46651) + (xy 153.030167 79.466512) + (xy 152.831352 79.574106) + (xy 152.652955 79.712958) + (xy 152.598186 79.772453) + (xy 152.538298 79.808443) + (xy 152.46846 79.806342) + (xy 152.410845 79.766817) + (xy 152.390775 79.731802) + (xy 152.346954 79.614313) + (xy 152.34695 79.614306) + (xy 152.26079 79.499212) + (xy 152.260787 79.499209) + (xy 152.145693 79.413049) + (xy 152.145686 79.413045) + (xy 152.010979 79.362803) + (xy 152.010972 79.362801) + (xy 151.951444 79.3564) + (xy 151.29 79.3564) + (xy 151.29 80.275702) + (xy 151.184592 80.227565) + (xy 151.076334 80.212) + (xy 151.003666 80.212) + (xy 150.895408 80.227565) + (xy 150.79 80.275702) + (xy 150.79 79.3564) + (xy 150.128555 79.3564) + (xy 150.069027 79.362801) + (xy 150.06902 79.362803) + (xy 149.934313 79.413045) + (xy 149.934306 79.413049) + (xy 149.819212 79.499209) + (xy 149.819209 79.499212) + (xy 149.733049 79.614306) + (xy 149.733046 79.614312) + (xy 149.689224 79.731803) + (xy 149.647352 79.787736) + (xy 149.581887 79.812153) + (xy 149.513615 79.797301) + (xy 149.481813 79.772452) + (xy 149.427049 79.712963) + (xy 149.427048 79.712962) + (xy 149.427046 79.71296) + (xy 149.248649 79.574107) + (xy 149.22239 79.559896) + (xy 149.049832 79.466512) + (xy 149.049827 79.46651) + (xy 148.836017 79.393109) + (xy 148.654388 79.362801) + (xy 148.613033 79.3559) + (xy 148.386967 79.3559) + (xy 148.345612 79.362801) + (xy 148.163982 79.393109) + (xy 147.950172 79.46651) + (xy 147.950167 79.466512) + (xy 147.751352 79.574106) + (xy 147.572955 79.712959) + (xy 147.57295 79.712963) + (xy 147.41985 79.879272) + (xy 147.419842 79.879283) + (xy 147.333808 80.010968) + (xy 147.280662 80.056325) + (xy 147.21143 80.065748) + (xy 147.148095 80.036246) + (xy 147.126192 80.010968) + (xy 147.040157 79.879283) + (xy 147.040149 79.879272) + (xy 146.887049 79.712963) + (xy 146.887048 79.712962) + (xy 146.887046 79.71296) + (xy 146.708649 79.574107) + (xy 146.68239 79.559896) + (xy 146.509832 79.466512) + (xy 146.509827 79.46651) + (xy 146.296017 79.393109) + (xy 146.114388 79.362801) + (xy 146.073033 79.3559) + (xy 145.846967 79.3559) + (xy 145.805612 79.362801) + (xy 145.623982 79.393109) + (xy 145.410172 79.46651) + (xy 145.410167 79.466512) + (xy 145.211352 79.574106) + (xy 145.032955 79.712959) + (xy 145.03295 79.712963) + (xy 144.87985 79.879272) + (xy 144.879842 79.879283) + (xy 144.756198 80.068533) + (xy 144.665388 80.27556) + (xy 144.609892 80.49471) + (xy 144.591225 80.719993) + (xy 144.591225 80.720006) + (xy 135.360172 80.720006) + (xy 135.314049 80.684107) + (xy 135.314047 80.684106) + (xy 135.314046 80.684105) + (xy 135.314043 80.684103) + (xy 135.286233 80.669053) + (xy 135.236643 80.619833) + (xy 135.221536 80.551616) + (xy 135.245707 80.486061) + (xy 135.286235 80.450945) + (xy 135.314049 80.435893) + (xy 135.492446 80.29704) + (xy 135.618498 80.160112) + (xy 135.645549 80.130727) + (xy 135.645551 80.130724) + (xy 135.645556 80.130719) + (xy 135.769202 79.941465) + (xy 135.860011 79.734441) + (xy 135.915507 79.515293) + (xy 135.925631 79.393109) + (xy 135.934175 79.290006) + (xy 135.934175 79.289993) + (xy 135.915507 79.06471) + (xy 135.915507 79.064707) + (xy 135.860011 78.845559) + (xy 135.769202 78.638535) + (xy 135.645556 78.449281) + (xy 135.645553 78.449278) + (xy 135.645549 78.449272) + (xy 135.492449 78.282963) + (xy 135.492448 78.282962) + (xy 135.492446 78.28296) + (xy 135.314049 78.144107) + (xy 135.314047 78.144106) + (xy 135.314046 78.144105) + (xy 135.314039 78.1441) + (xy 135.286236 78.129055) + (xy 135.236644 78.079837) + (xy 135.221535 78.01162) + (xy 135.245706 77.946064) + (xy 135.286236 77.910945) + (xy 135.314039 77.895899) + (xy 135.314042 77.895896) + (xy 135.314049 77.895893) + (xy 135.492446 77.75704) + (xy 135.645556 77.590719) + (xy 135.769202 77.401465) + (xy 135.860011 77.194441) + (xy 135.915507 76.975293) + (xy 135.934175 76.75) + (xy 135.934175 76.749993) + (xy 135.915507 76.52471) + (xy 135.915507 76.524707) + (xy 135.860011 76.305559) + (xy 135.769202 76.098535) + (xy 135.645556 75.909281) + (xy 135.645553 75.909278) + (xy 135.645549 75.909272) + (xy 135.492449 75.742963) + (xy 135.492448 75.742962) + (xy 135.492446 75.74296) + (xy 135.314049 75.604107) + (xy 135.314047 75.604106) + (xy 135.314046 75.604105) + (xy 135.314039 75.6041) + (xy 135.286236 75.589055) + (xy 135.236644 75.539837) + (xy 135.221535 75.47162) + (xy 135.245706 75.406064) + (xy 135.286236 75.370945) + (xy 135.314039 75.355899) + (xy 135.314042 75.355896) + (xy 135.314049 75.355893) + (xy 135.492446 75.21704) + (xy 135.637125 75.059878) + (xy 135.645549 75.050727) + (xy 135.645551 75.050724) + (xy 135.645556 75.050719) + (xy 135.769202 74.861465) + (xy 135.860011 74.654441) + (xy 135.915507 74.435293) + (xy 135.932178 74.2341) + (xy 135.934175 74.210006) + (xy 135.934175 74.209993) + (xy 135.915507 73.98471) + (xy 135.915507 73.984707) + (xy 135.860011 73.765559) + (xy 135.769202 73.558535) + (xy 135.645556 73.369281) + (xy 135.645553 73.369278) + (xy 135.645549 73.369272) + (xy 135.492449 73.202963) + (xy 135.492448 73.202962) + (xy 135.492446 73.20296) + (xy 135.314049 73.064107) + (xy 135.314047 73.064106) + (xy 135.314046 73.064105) + (xy 135.314039 73.0641) + (xy 135.286236 73.049055) + (xy 135.236644 72.999837) + (xy 135.221535 72.93162) + (xy 135.244253 72.870006) + (xy 144.591225 72.870006) + (xy 144.609892 73.095289) + (xy 144.665388 73.314439) + (xy 144.756198 73.521466) + (xy 144.879842 73.710716) + (xy 144.87985 73.710727) + (xy 145.03295 73.877036) + (xy 145.032954 73.87704) + (xy 145.211351 74.015893) + (xy 145.410169 74.123488) + (xy 145.410172 74.123489) + (xy 145.623982 74.19689) + (xy 145.623984 74.19689) + (xy 145.623986 74.196891) + (xy 145.846967 74.2341) + (xy 145.846968 74.2341) + (xy 146.073032 74.2341) + (xy 146.073033 74.2341) + (xy 146.296014 74.196891) + (xy 146.509831 74.123488) + (xy 146.708649 74.015893) + (xy 146.887046 73.87704) + (xy 147.040156 73.710719) + (xy 147.126193 73.579028) + (xy 147.179338 73.533675) + (xy 147.248569 73.524251) + (xy 147.311905 73.553753) + (xy 147.333804 73.579025) + (xy 147.419844 73.710719) + (xy 147.419849 73.710724) + (xy 147.41985 73.710727) + (xy 147.57295 73.877036) + (xy 147.572954 73.87704) + (xy 147.751351 74.015893) + (xy 147.950169 74.123488) + (xy 147.950172 74.123489) + (xy 148.163982 74.19689) + (xy 148.163984 74.19689) + (xy 148.163986 74.196891) + (xy 148.386967 74.2341) + (xy 148.386968 74.2341) + (xy 148.613032 74.2341) + (xy 148.613033 74.2341) + (xy 148.836014 74.196891) + (xy 149.049831 74.123488) + (xy 149.248649 74.015893) + (xy 149.427046 73.87704) + (xy 149.481815 73.817545) + (xy 149.541699 73.781557) + (xy 149.611537 73.783657) + (xy 149.669153 73.82318) + (xy 149.689224 73.858196) + (xy 149.733046 73.975688) + (xy 149.733049 73.975693) + (xy 149.819209 74.090787) + (xy 149.819212 74.09079) + (xy 149.934306 74.17695) + (xy 149.934313 74.176954) + (xy 150.06902 74.227196) + (xy 150.069027 74.227198) + (xy 150.128555 74.233599) + (xy 150.128572 74.2336) + (xy 150.79 74.2336) + (xy 150.79 73.314297) + (xy 150.895408 73.362435) + (xy 151.003666 73.378) + (xy 151.076334 73.378) + (xy 151.184592 73.362435) + (xy 151.29 73.314297) + (xy 151.29 74.2336) + (xy 151.951428 74.2336) + (xy 151.951444 74.233599) + (xy 152.010972 74.227198) + (xy 152.010979 74.227196) + (xy 152.145686 74.176954) + (xy 152.145693 74.17695) + (xy 152.260787 74.09079) + (xy 152.26079 74.090787) + (xy 152.34695 73.975693) + (xy 152.346954 73.975686) + (xy 152.390775 73.858197) + (xy 152.432646 73.802263) + (xy 152.49811 73.777846) + (xy 152.566383 73.792698) + (xy 152.598186 73.817547) + (xy 152.65295 73.877036) + (xy 152.652954 73.87704) + (xy 152.831351 74.015893) + (xy 153.030169 74.123488) + (xy 153.030172 74.123489) + (xy 153.243982 74.19689) + (xy 153.243984 74.19689) + (xy 153.243986 74.196891) + (xy 153.466967 74.2341) + (xy 153.466968 74.2341) + (xy 153.693032 74.2341) + (xy 153.693033 74.2341) + (xy 153.916014 74.196891) + (xy 154.129831 74.123488) + (xy 154.328649 74.015893) + (xy 154.507046 73.87704) + (xy 154.660156 73.710719) + (xy 154.783802 73.521465) + (xy 154.874611 73.314441) + (xy 154.930107 73.095293) + (xy 154.942975 72.94) + (xy 154.948775 72.870006) + (xy 157.321225 72.870006) + (xy 157.339892 73.095289) + (xy 157.395388 73.314439) + (xy 157.486198 73.521466) + (xy 157.609842 73.710716) + (xy 157.60985 73.710727) + (xy 157.76295 73.877036) + (xy 157.762954 73.87704) + (xy 157.941351 74.015893) + (xy 158.140169 74.123488) + (xy 158.140172 74.123489) + (xy 158.353982 74.19689) + (xy 158.353984 74.19689) + (xy 158.353986 74.196891) + (xy 158.576967 74.2341) + (xy 158.576968 74.2341) + (xy 158.803032 74.2341) + (xy 158.803033 74.2341) + (xy 159.026014 74.196891) + (xy 159.239831 74.123488) + (xy 159.438649 74.015893) + (xy 159.617046 73.87704) + (xy 159.770156 73.710719) + (xy 159.856193 73.579028) + (xy 159.909338 73.533675) + (xy 159.978569 73.524251) + (xy 160.041905 73.553753) + (xy 160.063804 73.579025) + (xy 160.149844 73.710719) + (xy 160.149849 73.710724) + (xy 160.14985 73.710727) + (xy 160.30295 73.877036) + (xy 160.302954 73.87704) + (xy 160.481351 74.015893) + (xy 160.680169 74.123488) + (xy 160.680172 74.123489) + (xy 160.893982 74.19689) + (xy 160.893984 74.19689) + (xy 160.893986 74.196891) + (xy 161.116967 74.2341) + (xy 161.116968 74.2341) + (xy 161.343032 74.2341) + (xy 161.343033 74.2341) + (xy 161.566014 74.196891) + (xy 161.779831 74.123488) + (xy 161.978649 74.015893) + (xy 162.157046 73.87704) + (xy 162.211815 73.817545) + (xy 162.271699 73.781557) + (xy 162.341537 73.783657) + (xy 162.399153 73.82318) + (xy 162.419224 73.858196) + (xy 162.463046 73.975688) + (xy 162.463049 73.975693) + (xy 162.549209 74.090787) + (xy 162.549212 74.09079) + (xy 162.664306 74.17695) + (xy 162.664313 74.176954) + (xy 162.79902 74.227196) + (xy 162.799027 74.227198) + (xy 162.858555 74.233599) + (xy 162.858572 74.2336) + (xy 163.52 74.2336) + (xy 163.52 73.314297) + (xy 163.625408 73.362435) + (xy 163.733666 73.378) + (xy 163.806334 73.378) + (xy 163.914592 73.362435) + (xy 164.02 73.314297) + (xy 164.02 74.2336) + (xy 164.681428 74.2336) + (xy 164.681444 74.233599) + (xy 164.740972 74.227198) + (xy 164.740979 74.227196) + (xy 164.875686 74.176954) + (xy 164.875693 74.17695) + (xy 164.990787 74.09079) + (xy 164.99079 74.090787) + (xy 165.07695 73.975693) + (xy 165.076954 73.975686) + (xy 165.120775 73.858197) + (xy 165.162646 73.802263) + (xy 165.22811 73.777846) + (xy 165.296383 73.792698) + (xy 165.328186 73.817547) + (xy 165.38295 73.877036) + (xy 165.382954 73.87704) + (xy 165.561351 74.015893) + (xy 165.760169 74.123488) + (xy 165.760172 74.123489) + (xy 165.973982 74.19689) + (xy 165.973984 74.19689) + (xy 165.973986 74.196891) + (xy 166.196967 74.2341) + (xy 166.196968 74.2341) + (xy 166.423032 74.2341) + (xy 166.423033 74.2341) + (xy 166.646014 74.196891) + (xy 166.859831 74.123488) + (xy 167.058649 74.015893) + (xy 167.237046 73.87704) + (xy 167.390156 73.710719) + (xy 167.513802 73.521465) + (xy 167.604611 73.314441) + (xy 167.660107 73.095293) + (xy 167.672975 72.94) + (xy 167.678775 72.870006) + (xy 167.678775 72.869993) + (xy 167.660107 72.64471) + (xy 167.660107 72.644707) + (xy 167.604611 72.425559) + (xy 167.513802 72.218535) + (xy 167.479463 72.165976) + (xy 167.41681 72.070078) + (xy 167.390156 72.029281) + (xy 167.390153 72.029278) + (xy 167.390149 72.029272) + (xy 167.237049 71.862963) + (xy 167.237048 71.862962) + (xy 167.237046 71.86296) + (xy 167.058649 71.724107) + (xy 167.03239 71.709896) + (xy 166.859832 71.616512) + (xy 166.859827 71.61651) + (xy 166.646017 71.543109) + (xy 166.464388 71.512801) + (xy 166.423033 71.5059) + (xy 166.196967 71.5059) + (xy 166.155612 71.512801) + (xy 165.973982 71.543109) + (xy 165.760172 71.61651) + (xy 165.760167 71.616512) + (xy 165.561352 71.724106) + (xy 165.382955 71.862958) + (xy 165.328186 71.922453) + (xy 165.268298 71.958443) + (xy 165.19846 71.956342) + (xy 165.140845 71.916817) + (xy 165.120775 71.881802) + (xy 165.076954 71.764313) + (xy 165.07695 71.764306) + (xy 164.99079 71.649212) + (xy 164.990787 71.649209) + (xy 164.875693 71.563049) + (xy 164.875686 71.563045) + (xy 164.740979 71.512803) + (xy 164.740972 71.512801) + (xy 164.681444 71.5064) + (xy 164.02 71.5064) + (xy 164.02 72.425702) + (xy 163.914592 72.377565) + (xy 163.806334 72.362) + (xy 163.733666 72.362) + (xy 163.625408 72.377565) + (xy 163.52 72.425702) + (xy 163.52 71.5064) + (xy 162.858555 71.5064) + (xy 162.799027 71.512801) + (xy 162.79902 71.512803) + (xy 162.664313 71.563045) + (xy 162.664306 71.563049) + (xy 162.549212 71.649209) + (xy 162.549209 71.649212) + (xy 162.463049 71.764306) + (xy 162.463046 71.764312) + (xy 162.419224 71.881803) + (xy 162.377352 71.937736) + (xy 162.311887 71.962153) + (xy 162.243615 71.947301) + (xy 162.211813 71.922452) + (xy 162.157049 71.862963) + (xy 162.157048 71.862962) + (xy 162.157046 71.86296) + (xy 161.978649 71.724107) + (xy 161.95239 71.709896) + (xy 161.779832 71.616512) + (xy 161.779827 71.61651) + (xy 161.566017 71.543109) + (xy 161.384388 71.512801) + (xy 161.343033 71.5059) + (xy 161.116967 71.5059) + (xy 161.075612 71.512801) + (xy 160.893982 71.543109) + (xy 160.680172 71.61651) + (xy 160.680167 71.616512) + (xy 160.481352 71.724106) + (xy 160.302955 71.862959) + (xy 160.30295 71.862963) + (xy 160.14985 72.029272) + (xy 160.149842 72.029283) + (xy 160.063808 72.160968) + (xy 160.010662 72.206325) + (xy 159.94143 72.215748) + (xy 159.878095 72.186246) + (xy 159.856192 72.160968) + (xy 159.79681 72.070078) + (xy 159.770156 72.029281) + (xy 159.770153 72.029278) + (xy 159.770149 72.029272) + (xy 159.617049 71.862963) + (xy 159.617048 71.862962) + (xy 159.617046 71.86296) + (xy 159.438649 71.724107) + (xy 159.41239 71.709896) + (xy 159.239832 71.616512) + (xy 159.239827 71.61651) + (xy 159.026017 71.543109) + (xy 158.844388 71.512801) + (xy 158.803033 71.5059) + (xy 158.576967 71.5059) + (xy 158.535612 71.512801) + (xy 158.353982 71.543109) + (xy 158.140172 71.61651) + (xy 158.140167 71.616512) + (xy 157.941352 71.724106) + (xy 157.762955 71.862959) + (xy 157.76295 71.862963) + (xy 157.60985 72.029272) + (xy 157.609842 72.029283) + (xy 157.486198 72.218533) + (xy 157.395388 72.42556) + (xy 157.339892 72.64471) + (xy 157.321225 72.869993) + (xy 157.321225 72.870006) + (xy 154.948775 72.870006) + (xy 154.948775 72.869993) + (xy 154.930107 72.64471) + (xy 154.930107 72.644707) + (xy 154.874611 72.425559) + (xy 154.783802 72.218535) + (xy 154.749463 72.165976) + (xy 154.68681 72.070078) + (xy 154.660156 72.029281) + (xy 154.660153 72.029278) + (xy 154.660149 72.029272) + (xy 154.507049 71.862963) + (xy 154.507048 71.862962) + (xy 154.507046 71.86296) + (xy 154.328649 71.724107) + (xy 154.30239 71.709896) + (xy 154.129832 71.616512) + (xy 154.129827 71.61651) + (xy 153.916017 71.543109) + (xy 153.734388 71.512801) + (xy 153.693033 71.5059) + (xy 153.466967 71.5059) + (xy 153.425612 71.512801) + (xy 153.243982 71.543109) + (xy 153.030172 71.61651) + (xy 153.030167 71.616512) + (xy 152.831352 71.724106) + (xy 152.652955 71.862958) + (xy 152.598186 71.922453) + (xy 152.538298 71.958443) + (xy 152.46846 71.956342) + (xy 152.410845 71.916817) + (xy 152.390775 71.881802) + (xy 152.346954 71.764313) + (xy 152.34695 71.764306) + (xy 152.26079 71.649212) + (xy 152.260787 71.649209) + (xy 152.145693 71.563049) + (xy 152.145686 71.563045) + (xy 152.010979 71.512803) + (xy 152.010972 71.512801) + (xy 151.951444 71.5064) + (xy 151.29 71.5064) + (xy 151.29 72.425702) + (xy 151.184592 72.377565) + (xy 151.076334 72.362) + (xy 151.003666 72.362) + (xy 150.895408 72.377565) + (xy 150.79 72.425702) + (xy 150.79 71.5064) + (xy 150.128555 71.5064) + (xy 150.069027 71.512801) + (xy 150.06902 71.512803) + (xy 149.934313 71.563045) + (xy 149.934306 71.563049) + (xy 149.819212 71.649209) + (xy 149.819209 71.649212) + (xy 149.733049 71.764306) + (xy 149.733046 71.764312) + (xy 149.689224 71.881803) + (xy 149.647352 71.937736) + (xy 149.581887 71.962153) + (xy 149.513615 71.947301) + (xy 149.481813 71.922452) + (xy 149.427049 71.862963) + (xy 149.427048 71.862962) + (xy 149.427046 71.86296) + (xy 149.248649 71.724107) + (xy 149.22239 71.709896) + (xy 149.049832 71.616512) + (xy 149.049827 71.61651) + (xy 148.836017 71.543109) + (xy 148.654388 71.512801) + (xy 148.613033 71.5059) + (xy 148.386967 71.5059) + (xy 148.345612 71.512801) + (xy 148.163982 71.543109) + (xy 147.950172 71.61651) + (xy 147.950167 71.616512) + (xy 147.751352 71.724106) + (xy 147.572955 71.862959) + (xy 147.57295 71.862963) + (xy 147.41985 72.029272) + (xy 147.419842 72.029283) + (xy 147.333808 72.160968) + (xy 147.280662 72.206325) + (xy 147.21143 72.215748) + (xy 147.148095 72.186246) + (xy 147.126192 72.160968) + (xy 147.06681 72.070078) + (xy 147.040156 72.029281) + (xy 147.040153 72.029278) + (xy 147.040149 72.029272) + (xy 146.887049 71.862963) + (xy 146.887048 71.862962) + (xy 146.887046 71.86296) + (xy 146.708649 71.724107) + (xy 146.68239 71.709896) + (xy 146.509832 71.616512) + (xy 146.509827 71.61651) + (xy 146.296017 71.543109) + (xy 146.114388 71.512801) + (xy 146.073033 71.5059) + (xy 145.846967 71.5059) + (xy 145.805612 71.512801) + (xy 145.623982 71.543109) + (xy 145.410172 71.61651) + (xy 145.410167 71.616512) + (xy 145.211352 71.724106) + (xy 145.032955 71.862959) + (xy 145.03295 71.862963) + (xy 144.87985 72.029272) + (xy 144.879842 72.029283) + (xy 144.756198 72.218533) + (xy 144.665388 72.42556) + (xy 144.609892 72.64471) + (xy 144.591225 72.869993) + (xy 144.591225 72.870006) + (xy 135.244253 72.870006) + (xy 135.245706 72.866064) + (xy 135.286236 72.830945) + (xy 135.314039 72.815899) + (xy 135.314042 72.815896) + (xy 135.314049 72.815893) + (xy 135.492446 72.67704) + (xy 135.645556 72.510719) + (xy 135.769202 72.321465) + (xy 135.860011 72.114441) + (xy 135.915507 71.895293) + (xy 135.934175 71.67) + (xy 135.934175 71.669993) + (xy 135.920619 71.5064) + (xy 135.915507 71.444707) + (xy 135.860011 71.225559) + (xy 135.769202 71.018535) + (xy 135.645556 70.829281) + (xy 135.645553 70.829278) + (xy 135.645549 70.829272) + (xy 135.492445 70.662959) + (xy 135.365696 70.564306) + (xy 135.314049 70.524107) + (xy 135.28779 70.509896) + (xy 135.115232 70.416512) + (xy 135.115227 70.41651) + (xy 134.901417 70.343109) + (xy 134.719788 70.312801) + (xy 134.678433 70.3059) + (xy 134.452367 70.3059) + (xy 134.411012 70.312801) + (xy 134.229382 70.343109) + (xy 134.015572 70.41651) + (xy 134.015567 70.416512) + (xy 133.816752 70.524106) + (xy 133.638355 70.662958) + (xy 133.583586 70.722453) + (xy 133.523698 70.758443) + (xy 133.45386 70.756342) + (xy 133.396245 70.716817) + (xy 133.376175 70.681802) + (xy 133.332354 70.564313) + (xy 133.33235 70.564306) + (xy 133.24619 70.449212) + (xy 133.246187 70.449209) + (xy 133.131093 70.363049) + (xy 133.131086 70.363045) + (xy 132.996379 70.312803) + (xy 132.996372 70.312801) + (xy 132.936844 70.3064) + (xy 132.2754 70.3064) + (xy 132.2754 71.225702) + (xy 132.169992 71.177565) + (xy 132.061734 71.162) + (xy 131.989066 71.162) + (xy 131.880808 71.177565) + (xy 131.7754 71.225702) + (xy 131.7754 70.3064) + (xy 131.113955 70.3064) + (xy 131.054427 70.312801) + (xy 131.05442 70.312803) + (xy 130.919713 70.363045) + (xy 130.919706 70.363049) + (xy 130.804612 70.449209) + (xy 130.804609 70.449212) + (xy 130.718449 70.564306) + (xy 130.718445 70.564313) + (xy 130.668203 70.69902) + (xy 130.668201 70.699027) + (xy 130.6618 70.758555) + (xy 130.6618 71.42) + (xy 131.582204 71.42) + (xy 131.558555 71.456799) + (xy 131.5174 71.596961) + (xy 131.5174 71.743039) + (xy 131.558555 71.883201) + (xy 131.582204 71.92) + (xy 130.6618 71.92) + (xy 130.6618 72.581444) + (xy 130.668201 72.640972) + (xy 130.668203 72.640979) + (xy 130.718445 72.775686) + (xy 130.718449 72.775693) + (xy 130.804609 72.890787) + (xy 130.804612 72.89079) + (xy 130.919706 72.97695) + (xy 130.919713 72.976954) + (xy 131.034748 73.019859) + (xy 131.090682 73.06173) + (xy 131.115099 73.127194) + (xy 131.100248 73.195467) + (xy 131.082645 73.220024) + (xy 130.945245 73.369279) + (xy 130.945242 73.369283) + (xy 130.821598 73.558533) + (xy 130.730788 73.76556) + (xy 130.675292 73.98471) + (xy 130.656625 74.209993) + (xy 130.656625 74.210006) + (xy 130.675292 74.435289) + (xy 130.730788 74.654439) + (xy 130.821598 74.861466) + (xy 130.945242 75.050716) + (xy 130.94525 75.050727) + (xy 131.09835 75.217036) + (xy 131.098354 75.21704) + (xy 131.276751 75.355893) + (xy 131.304565 75.370945) + (xy 131.354155 75.420165) + (xy 131.369263 75.488382) + (xy 131.345092 75.553937) + (xy 131.304565 75.589055) + (xy 131.276752 75.604106) + (xy 131.098355 75.742959) + (xy 131.09835 75.742963) + (xy 130.94525 75.909272) + (xy 130.945242 75.909283) + (xy 130.821598 76.098533) + (xy 130.730788 76.30556) + (xy 130.675292 76.52471) + (xy 130.656625 76.749993) + (xy 130.656625 76.750006) + (xy 130.675292 76.975289) + (xy 130.730788 77.194439) + (xy 130.821598 77.401466) + (xy 130.945242 77.590716) + (xy 130.94525 77.590727) + (xy 131.09835 77.757036) + (xy 131.098354 77.75704) + (xy 131.276751 77.895893) + (xy 131.304561 77.910943) + (xy 131.304565 77.910945) + (xy 131.354155 77.960165) + (xy 131.369263 78.028382) + (xy 131.345092 78.093937) + (xy 131.304565 78.129055) + (xy 131.276752 78.144106) + (xy 131.098355 78.282959) + (xy 131.09835 78.282963) + (xy 130.94525 78.449272) + (xy 130.945242 78.449283) + (xy 130.821598 78.638533) + (xy 130.730788 78.84556) + (xy 130.675292 79.06471) + (xy 130.656625 79.289993) + (xy 130.656625 79.290006) + (xy 130.675292 79.515289) + (xy 130.730788 79.734439) + (xy 130.821598 79.941466) + (xy 130.945242 80.130716) + (xy 130.94525 80.130727) + (xy 131.034397 80.227565) + (xy 131.098354 80.29704) + (xy 131.276751 80.435893) + (xy 131.304559 80.450942) + (xy 131.304565 80.450945) + (xy 131.354155 80.500165) + (xy 131.369263 80.568382) + (xy 131.345092 80.633937) + (xy 131.304565 80.669055) + (xy 131.276752 80.684106) + (xy 131.098355 80.822959) + (xy 131.09835 80.822963) + (xy 130.94525 80.989272) + (xy 130.945242 80.989283) + (xy 130.821598 81.178533) + (xy 130.730788 81.38556) + (xy 130.675292 81.60471) + (xy 130.656625 81.829993) + (xy 130.656625 81.830006) + (xy 101 81.830006) + (xy 101 66) + (xy 81.124 66) + (xy 81.056961 65.980315) + (xy 81.011206 65.927511) + (xy 81 65.876) + (xy 81 64.088842) + (xy 81.019685 64.021803) + (xy 81.072489 63.976048) + (xy 81.141647 63.966104) + (xy 81.205203 63.995129) + (xy 81.235 64.03357) + (xy 81.369021 64.302721) + (xy 81.539418 64.559878) + (xy 81.546212 64.57013) + (xy 81.754922 64.813737) + (xy 81.901062 64.946961) + (xy 81.981188 65.020006) + (xy 81.991986 65.029849) + (xy 81.991989 65.029851) + (xy 82.253805 65.215187) + (xy 82.253815 65.215193) + (xy 82.536416 65.366948) + (xy 82.536422 65.36695) + (xy 82.536429 65.366954) + (xy 82.69789 65.429504) + (xy 82.835544 65.482832) + (xy 82.835547 65.482832) + (xy 82.835553 65.482835) + (xy 83.146651 65.561079) + (xy 83.266034 65.575861) + (xy 83.465002 65.6005) + (xy 83.465007 65.6005) + (xy 83.705512 65.6005) + (xy 83.705526 65.6005) + (xy 83.945578 65.585694) + (xy 84.260903 65.52675) + (xy 84.566594 65.429502) + (xy 84.858018 65.295426) + (xy 85.130756 65.126554) + (xy 85.380675 64.925445) + (xy 85.603985 64.695148) + (xy 85.797303 64.439155) + (xy 85.957696 64.161345) + (xy 86.082734 63.865931) + (xy 86.170522 63.55739) + (xy 86.219728 63.2404) + (xy 86.229606 62.919765) + (xy 86.200008 62.600347) + (xy 86.165463 62.44261) + (xy 86.131381 62.286986) + (xy 86.102374 62.204671) + (xy 86.024766 61.984436) + (xy 85.881779 61.697279) + (xy 85.823207 61.608884) + (xy 85.704591 61.429873) + (xy 85.704584 61.429865) + (xy 85.511655 61.204676) + (xy 85.482986 61.140959) + (xy 85.493317 61.071857) + (xy 85.539367 61.019311) + (xy 85.605821 61) + (xy 130.024057 61) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 130.091096 61.019685) + (xy 130.136851 61.072489) + (xy 130.146795 61.141647) + (xy 130.11777 61.205203) + (xy 130.113078 61.210321) + (xy 130.021413 61.304853) + (xy 129.828095 61.560847) + (xy 129.667701 61.83866) + (xy 129.542668 62.134062) + (xy 129.54266 62.134086) + (xy 129.454879 62.442602) + (xy 129.454878 62.442607) + (xy 129.405672 62.759592) + (xy 129.405671 62.759603) + (xy 129.395793 63.080236) + (xy 129.425391 63.399651) + (xy 129.425392 63.399657) + (xy 129.494018 63.713013) + (xy 129.56084 63.902637) + (xy 129.599717 64.012963) + (xy 129.600635 64.015566) + (xy 129.743621 64.302721) + (xy 129.914018 64.559878) + (xy 129.920812 64.57013) + (xy 130.129522 64.813737) + (xy 130.275662 64.946961) + (xy 130.355788 65.020006) + (xy 130.366586 65.029849) + (xy 130.366589 65.029851) + (xy 130.628405 65.215187) + (xy 130.628415 65.215193) + (xy 130.911016 65.366948) + (xy 130.911022 65.36695) + (xy 130.911029 65.366954) + (xy 131.07249 65.429504) + (xy 131.210144 65.482832) + (xy 131.210147 65.482832) + (xy 131.210153 65.482835) + (xy 131.521251 65.561079) + (xy 131.640634 65.575861) + (xy 131.839602 65.6005) + (xy 131.839607 65.6005) + (xy 132.080112 65.6005) + (xy 132.080126 65.6005) + (xy 132.320178 65.585694) + (xy 132.635503 65.52675) + (xy 132.941194 65.429502) + (xy 133.232618 65.295426) + (xy 133.505356 65.126554) + (xy 133.755275 64.925445) + (xy 133.978585 64.695148) + (xy 134.171903 64.439155) + (xy 134.332296 64.161345) + (xy 134.457334 63.865931) + (xy 134.545122 63.55739) + (xy 134.594328 63.2404) + (xy 134.604206 62.919765) + (xy 134.593765 62.807092) + (xy 134.574608 62.600348) + (xy 134.574607 62.600342) + (xy 134.505981 62.286986) + (xy 134.459846 62.156065) + (xy 134.399366 61.984436) + (xy 134.256379 61.697279) + (xy 134.202872 61.616528) + (xy 134.079191 61.429873) + (xy 134.079184 61.429865) + (xy 133.886255 61.204676) + (xy 133.857586 61.140959) + (xy 133.867917 61.071857) + (xy 133.913967 61.019311) + (xy 133.980421 61) + (xy 138.024057 61) + (xy 138.091096 61.019685) + (xy 138.136851 61.072489) + (xy 138.146795 61.141647) + (xy 138.11777 61.205203) + (xy 138.113078 61.210321) + (xy 138.021413 61.304853) + (xy 137.828095 61.560847) + (xy 137.667701 61.83866) + (xy 137.542668 62.134062) + (xy 137.54266 62.134086) + (xy 137.454879 62.442602) + (xy 137.454878 62.442607) + (xy 137.405672 62.759592) + (xy 137.405671 62.759603) + (xy 137.395793 63.080236) + (xy 137.425391 63.399651) + (xy 137.425392 63.399657) + (xy 137.494018 63.713013) + (xy 137.56084 63.902637) + (xy 137.599717 64.012963) + (xy 137.600635 64.015566) + (xy 137.743621 64.302721) + (xy 137.914018 64.559878) + (xy 137.920812 64.57013) + (xy 138.129522 64.813737) + (xy 138.275662 64.946961) + (xy 138.355788 65.020006) + (xy 138.366586 65.029849) + (xy 138.366589 65.029851) + (xy 138.628405 65.215187) + (xy 138.628415 65.215193) + (xy 138.911016 65.366948) + (xy 138.911022 65.36695) + (xy 138.911029 65.366954) + (xy 139.07249 65.429504) + (xy 139.210144 65.482832) + (xy 139.210147 65.482832) + (xy 139.210153 65.482835) + (xy 139.521251 65.561079) + (xy 139.640634 65.575861) + (xy 139.839602 65.6005) + (xy 139.839607 65.6005) + (xy 140.080112 65.6005) + (xy 140.080126 65.6005) + (xy 140.320178 65.585694) + (xy 140.635503 65.52675) + (xy 140.941194 65.429502) + (xy 141.232618 65.295426) + (xy 141.40204 65.190524) + (xy 141.469401 65.171969) + (xy 141.536101 65.192777) + (xy 141.580962 65.246342) + (xy 141.589742 65.315658) + (xy 141.559653 65.378717) + (xy 141.554999 65.383632) + (xy 135.936802 71.001829) + (xy 135.875479 71.035314) + (xy 135.805787 71.03033) + (xy 135.749854 70.988458) + (xy 135.745313 70.98197) + (xy 135.645557 70.829283) + (xy 135.645549 70.829272) + (xy 135.492445 70.662959) + (xy 135.365696 70.564306) + (xy 135.314049 70.524107) + (xy 135.28779 70.509896) + (xy 135.115232 70.416512) + (xy 135.115227 70.41651) + (xy 134.901417 70.343109) + (xy 134.719788 70.312801) + (xy 134.678433 70.3059) + (xy 134.452367 70.3059) + (xy 134.411012 70.312801) + (xy 134.229382 70.343109) + (xy 134.015572 70.41651) + (xy 134.015567 70.416512) + (xy 133.816752 70.524106) + (xy 133.638355 70.662958) + (xy 133.583586 70.722453) + (xy 133.523698 70.758443) + (xy 133.45386 70.756342) + (xy 133.396245 70.716817) + (xy 133.376175 70.681802) + (xy 133.332354 70.564313) + (xy 133.33235 70.564306) + (xy 133.24619 70.449212) + (xy 133.246187 70.449209) + (xy 133.131093 70.363049) + (xy 133.131086 70.363045) + (xy 132.996379 70.312803) + (xy 132.996372 70.312801) + (xy 132.936844 70.3064) + (xy 132.2754 70.3064) + (xy 132.2754 71.225702) + (xy 132.169992 71.177565) + (xy 132.061734 71.162) + (xy 131.989066 71.162) + (xy 131.880808 71.177565) + (xy 131.7754 71.225702) + (xy 131.7754 70.3064) + (xy 131.113955 70.3064) + (xy 131.054427 70.312801) + (xy 131.05442 70.312803) + (xy 130.919713 70.363045) + (xy 130.919706 70.363049) + (xy 130.804612 70.449209) + (xy 130.804609 70.449212) + (xy 130.718449 70.564306) + (xy 130.718445 70.564313) + (xy 130.668203 70.69902) + (xy 130.668201 70.699027) + (xy 130.6618 70.758555) + (xy 130.6618 71.42) + (xy 131.582204 71.42) + (xy 131.558555 71.456799) + (xy 131.5174 71.596961) + (xy 131.5174 71.743039) + (xy 131.558555 71.883201) + (xy 131.582204 71.92) + (xy 130.6618 71.92) + (xy 130.6618 72.581444) + (xy 130.668201 72.640972) + (xy 130.668203 72.640979) + (xy 130.718445 72.775686) + (xy 130.718449 72.775693) + (xy 130.804609 72.890787) + (xy 130.804612 72.89079) + (xy 130.919706 72.97695) + (xy 130.919713 72.976954) + (xy 131.034748 73.019859) + (xy 131.090682 73.06173) + (xy 131.115099 73.127194) + (xy 131.100248 73.195467) + (xy 131.082645 73.220024) + (xy 130.945245 73.369279) + (xy 130.945242 73.369283) + (xy 130.821598 73.558533) + (xy 130.730788 73.76556) + (xy 130.675292 73.98471) + (xy 130.656625 74.209993) + (xy 130.656625 74.210006) + (xy 130.675292 74.435289) + (xy 130.730788 74.654439) + (xy 130.821598 74.861466) + (xy 130.945242 75.050716) + (xy 130.94525 75.050727) + (xy 131.09835 75.217036) + (xy 131.098354 75.21704) + (xy 131.276751 75.355893) + (xy 131.304565 75.370945) + (xy 131.354155 75.420165) + (xy 131.369263 75.488382) + (xy 131.345092 75.553937) + (xy 131.304565 75.589055) + (xy 131.276752 75.604106) + (xy 131.098355 75.742959) + (xy 131.09835 75.742963) + (xy 130.94525 75.909272) + (xy 130.945242 75.909283) + (xy 130.821598 76.098533) + (xy 130.730788 76.30556) + (xy 130.675292 76.52471) + (xy 130.656625 76.749993) + (xy 130.656625 76.750006) + (xy 130.675292 76.975289) + (xy 130.730788 77.194438) + (xy 130.738127 77.211171) + (xy 130.747027 77.280472) + (xy 130.717048 77.343583) + (xy 130.71225 77.348658) + (xy 129.366208 78.694699) + (xy 129.353951 78.70452) + (xy 129.354134 78.704741) + (xy 129.348122 78.709714) + (xy 129.301432 78.759432) + (xy 129.300079 78.760829) + (xy 129.279889 78.781019) + (xy 129.279877 78.781032) + (xy 129.275621 78.786517) + (xy 129.271837 78.790947) + (xy 129.239937 78.824918) + (xy 129.239936 78.82492) + (xy 129.230284 78.842476) + (xy 129.21961 78.858726) + (xy 129.207329 78.874561) + (xy 129.207324 78.874568) + (xy 129.188815 78.917338) + (xy 129.186245 78.922584) + (xy 129.163803 78.963406) + (xy 129.158822 78.982807) + (xy 129.152521 79.00121) + (xy 129.144562 79.019602) + (xy 129.144561 79.019605) + (xy 129.137271 79.065627) + (xy 129.136087 79.071346) + (xy 129.124501 79.116472) + (xy 129.1245 79.116482) + (xy 129.1245 79.136516) + (xy 129.122973 79.155915) + (xy 129.11984 79.175694) + (xy 129.11984 79.175695) + (xy 129.124225 79.222083) + (xy 129.1245 79.227921) + (xy 129.1245 83.567254) + (xy 129.122775 83.582871) + (xy 129.123061 83.582898) + (xy 129.122326 83.590665) + (xy 129.124469 83.658845) + (xy 129.1245 83.660792) + (xy 129.1245 83.689342) + (xy 129.124501 83.689359) + (xy 129.125368 83.69623) + (xy 129.125826 83.702049) + (xy 129.12729 83.748623) + (xy 129.127291 83.748626) + (xy 129.13288 83.767866) + (xy 129.136824 83.78691) + (xy 129.139336 83.80679) + (xy 129.15649 83.850118) + (xy 129.158382 83.855646) + (xy 129.171381 83.900387) + (xy 129.18158 83.917633) + (xy 129.190138 83.935102) + (xy 129.197514 83.953731) + (xy 129.224898 83.991422) + (xy 129.228106 83.996306) + (xy 129.251827 84.036415) + (xy 129.251833 84.036423) + (xy 129.26599 84.050579) + (xy 129.278628 84.065375) + (xy 129.290405 84.081585) + (xy 129.290406 84.081586) + (xy 129.326309 84.111287) + (xy 129.33062 84.115209) + (xy 131.242715 86.027304) + (xy 133.0969 87.881489) + (xy 133.130385 87.942812) + (xy 133.125401 88.012504) + (xy 133.083529 88.068437) + (xy 133.018065 88.092854) + (xy 132.964426 88.084797) + (xy 132.86903 88.04784) + (xy 132.789845 88.017164) + (xy 132.478745 87.93892) + (xy 132.160398 87.8995) + (xy 132.160393 87.8995) + (xy 131.919874 87.8995) + (xy 131.867156 87.902751) + (xy 131.679824 87.914305) + (xy 131.364499 87.973249) + (xy 131.364497 87.97325) + (xy 131.058814 88.070495) + (xy 131.05881 88.070496) + (xy 131.058806 88.070498) + (xy 130.884928 88.150494) + (xy 130.767381 88.204574) + (xy 130.494656 88.373437) + (xy 130.494636 88.373451) + (xy 130.244728 88.574551) + (xy 130.021413 88.804853) + (xy 129.828095 89.060847) + (xy 129.667701 89.33866) + (xy 129.542668 89.634062) + (xy 129.54266 89.634086) + (xy 129.454879 89.942602) + (xy 129.454878 89.942607) + (xy 129.405672 90.259592) + (xy 129.405671 90.259603) + (xy 129.395793 90.580236) + (xy 129.425391 90.899651) + (xy 129.425392 90.899657) + (xy 129.494018 91.213013) + (xy 129.600635 91.515566) + (xy 129.743621 91.802721) + (xy 129.918353 92.06642) + (xy 129.920812 92.07013) + (xy 130.129522 92.313737) + (xy 130.366586 92.529849) + (xy 130.366589 92.529851) + (xy 130.628405 92.715187) + (xy 130.628415 92.715193) + (xy 130.911016 92.866948) + (xy 130.911022 92.86695) + (xy 130.911029 92.866954) + (xy 131.07249 92.929504) + (xy 131.210144 92.982832) + (xy 131.210147 92.982832) + (xy 131.210153 92.982835) + (xy 131.521251 93.061079) + (xy 131.640634 93.075861) + (xy 131.839602 93.1005) + (xy 131.839607 93.1005) + (xy 132.080112 93.1005) + (xy 132.080126 93.1005) + (xy 132.320178 93.085694) + (xy 132.635503 93.02675) + (xy 132.941194 92.929502) + (xy 133.232618 92.795426) + (xy 133.505356 92.626554) + (xy 133.755275 92.425445) + (xy 133.978585 92.195148) + (xy 134.171903 91.939155) + (xy 134.332296 91.661345) + (xy 134.386307 91.533737) + (xy 134.430566 91.479672) + (xy 134.497028 91.458119) + (xy 134.564593 91.475918) + (xy 134.611808 91.527421) + (xy 134.6245 91.58207) + (xy 134.6245 96.186319) + (xy 134.604815 96.253358) + (xy 134.552011 96.299113) + (xy 134.482853 96.309057) + (xy 134.419297 96.280032) + (xy 134.402644 96.262478) + (xy 134.400151 96.259274) + (xy 134.247049 96.092963) + (xy 134.247048 96.092962) + (xy 134.247046 96.09296) + (xy 134.068649 95.954107) + (xy 133.9455 95.887462) + (xy 133.869832 95.846512) + (xy 133.869827 95.84651) + (xy 133.656017 95.773109) + (xy 133.474388 95.742801) + (xy 133.433033 95.7359) + (xy 133.206967 95.7359) + (xy 133.165612 95.742801) + (xy 132.983982 95.773109) + (xy 132.770172 95.84651) + (xy 132.770167 95.846512) + (xy 132.571352 95.954106) + (xy 132.392955 96.092959) + (xy 132.39295 96.092963) + (xy 132.23985 96.259272) + (xy 132.239846 96.259278) + (xy 132.153807 96.390969) + (xy 132.10066 96.436325) + (xy 132.031429 96.445748) + (xy 131.968093 96.416245) + (xy 131.946192 96.390969) + (xy 131.860156 96.259281) + (xy 131.86015 96.259274) + (xy 131.860149 96.259272) + (xy 131.707049 96.092963) + (xy 131.707048 96.092962) + (xy 131.707046 96.09296) + (xy 131.528649 95.954107) + (xy 131.4055 95.887462) + (xy 131.329832 95.846512) + (xy 131.329827 95.84651) + (xy 131.116017 95.773109) + (xy 130.934388 95.742801) + (xy 130.893033 95.7359) + (xy 130.666967 95.7359) + (xy 130.625612 95.742801) + (xy 130.443982 95.773109) + (xy 130.230172 95.84651) + (xy 130.230167 95.846512) + (xy 130.031352 95.954106) + (xy 129.852955 96.092959) + (xy 129.85295 96.092963) + (xy 129.69985 96.259272) + (xy 129.699842 96.259283) + (xy 129.613808 96.390968) + (xy 129.560662 96.436325) + (xy 129.49143 96.445748) + (xy 129.428095 96.416246) + (xy 129.406192 96.390968) + (xy 129.333713 96.280032) + (xy 129.320156 96.259281) + (xy 129.32015 96.259274) + (xy 129.320149 96.259272) + (xy 129.167049 96.092963) + (xy 129.167048 96.092962) + (xy 129.167046 96.09296) + (xy 128.988649 95.954107) + (xy 128.8655 95.887462) + (xy 128.789832 95.846512) + (xy 128.789827 95.84651) + (xy 128.576017 95.773109) + (xy 128.394388 95.742801) + (xy 128.353033 95.7359) + (xy 128.126967 95.7359) + (xy 128.085612 95.742801) + (xy 127.903982 95.773109) + (xy 127.690172 95.84651) + (xy 127.690167 95.846512) + (xy 127.491352 95.954106) + (xy 127.312955 96.092959) + (xy 127.31295 96.092963) + (xy 127.15985 96.259272) + (xy 127.159842 96.259283) + (xy 127.073808 96.390968) + (xy 127.020662 96.436325) + (xy 126.95143 96.445748) + (xy 126.888095 96.416246) + (xy 126.866192 96.390968) + (xy 126.793713 96.280032) + (xy 126.780156 96.259281) + (xy 126.78015 96.259274) + (xy 126.780149 96.259272) + (xy 126.627049 96.092963) + (xy 126.627048 96.092962) + (xy 126.627046 96.09296) + (xy 126.448649 95.954107) + (xy 126.3255 95.887462) + (xy 126.249832 95.846512) + (xy 126.249827 95.84651) + (xy 126.036017 95.773109) + (xy 125.854388 95.742801) + (xy 125.813033 95.7359) + (xy 125.586967 95.7359) + (xy 125.545612 95.742801) + (xy 125.363982 95.773109) + (xy 125.150172 95.84651) + (xy 125.150167 95.846512) + (xy 124.951352 95.954106) + (xy 124.772955 96.092959) + (xy 124.77295 96.092963) + (xy 124.61985 96.259272) + (xy 124.619846 96.259278) + (xy 124.533807 96.390969) + (xy 124.48066 96.436325) + (xy 124.411429 96.445748) + (xy 124.348093 96.416245) + (xy 124.326192 96.390969) + (xy 124.240156 96.259281) + (xy 124.24015 96.259274) + (xy 124.240149 96.259272) + (xy 124.087049 96.092963) + (xy 124.087048 96.092962) + (xy 124.087046 96.09296) + (xy 123.908649 95.954107) + (xy 123.7855 95.887462) + (xy 123.709832 95.846512) + (xy 123.709827 95.84651) + (xy 123.496017 95.773109) + (xy 123.314388 95.742801) + (xy 123.273033 95.7359) + (xy 123.046967 95.7359) + (xy 123.005612 95.742801) + (xy 122.823982 95.773109) + (xy 122.610172 95.84651) + (xy 122.610167 95.846512) + (xy 122.411352 95.954106) + (xy 122.232955 96.092959) + (xy 122.23295 96.092963) + (xy 122.07985 96.259272) + (xy 122.079842 96.259283) + (xy 121.993808 96.390968) + (xy 121.940662 96.436325) + (xy 121.87143 96.445748) + (xy 121.808095 96.416246) + (xy 121.786192 96.390968) + (xy 121.713713 96.280032) + (xy 121.700156 96.259281) + (xy 121.70015 96.259274) + (xy 121.700149 96.259272) + (xy 121.547049 96.092963) + (xy 121.547048 96.092962) + (xy 121.547046 96.09296) + (xy 121.368649 95.954107) + (xy 121.2455 95.887462) + (xy 121.169832 95.846512) + (xy 121.169827 95.84651) + (xy 120.956017 95.773109) + (xy 120.774388 95.742801) + (xy 120.733033 95.7359) + (xy 120.506967 95.7359) + (xy 120.465612 95.742801) + (xy 120.283982 95.773109) + (xy 120.070172 95.84651) + (xy 120.070167 95.846512) + (xy 119.871352 95.954106) + (xy 119.692955 96.092959) + (xy 119.69295 96.092963) + (xy 119.53985 96.259272) + (xy 119.539842 96.259283) + (xy 119.453808 96.390968) + (xy 119.400662 96.436325) + (xy 119.33143 96.445748) + (xy 119.268095 96.416246) + (xy 119.246192 96.390968) + (xy 119.173713 96.280032) + (xy 119.160156 96.259281) + (xy 119.16015 96.259274) + (xy 119.160149 96.259272) + (xy 119.007049 96.092963) + (xy 119.007048 96.092962) + (xy 119.007046 96.09296) + (xy 118.828649 95.954107) + (xy 118.7055 95.887462) + (xy 118.629832 95.846512) + (xy 118.629827 95.84651) + (xy 118.416017 95.773109) + (xy 118.234388 95.742801) + (xy 118.193033 95.7359) + (xy 117.966967 95.7359) + (xy 117.925612 95.742801) + (xy 117.743982 95.773109) + (xy 117.530172 95.84651) + (xy 117.530167 95.846512) + (xy 117.331352 95.954106) + (xy 117.152955 96.092959) + (xy 117.15295 96.092963) + (xy 116.99985 96.259272) + (xy 116.999842 96.259283) + (xy 116.913808 96.390968) + (xy 116.860662 96.436325) + (xy 116.79143 96.445748) + (xy 116.728095 96.416246) + (xy 116.706192 96.390968) + (xy 116.633713 96.280032) + (xy 116.620156 96.259281) + (xy 116.62015 96.259274) + (xy 116.620149 96.259272) + (xy 116.467049 96.092963) + (xy 116.467048 96.092962) + (xy 116.467046 96.09296) + (xy 116.288649 95.954107) + (xy 116.1655 95.887462) + (xy 116.089832 95.846512) + (xy 116.089827 95.84651) + (xy 115.876017 95.773109) + (xy 115.694388 95.742801) + (xy 115.653033 95.7359) + (xy 115.426967 95.7359) + (xy 115.385612 95.742801) + (xy 115.203982 95.773109) + (xy 114.990172 95.84651) + (xy 114.990167 95.846512) + (xy 114.791352 95.954106) + (xy 114.612955 96.092959) + (xy 114.61295 96.092963) + (xy 114.45985 96.259272) + (xy 114.459842 96.259283) + (xy 114.336198 96.448533) + (xy 114.245388 96.65556) + (xy 114.189892 96.87471) + (xy 114.171225 97.099993) + (xy 114.171225 97.100006) + (xy 114.189892 97.325289) + (xy 114.245388 97.544439) + (xy 114.336198 97.751466) + (xy 114.459842 97.940716) + (xy 114.45985 97.940727) + (xy 114.594061 98.086517) + (xy 114.624984 98.149171) + (xy 114.617124 98.218597) + (xy 114.572977 98.272753) + (xy 114.50656 98.294444) + (xy 114.502832 98.2945) + (xy 112.513168 98.2945) + (xy 112.446129 98.274815) + (xy 112.400374 98.222011) + (xy 112.39043 98.152853) + (xy 112.419455 98.089297) + (xy 112.421939 98.086517) + (xy 112.556149 97.940727) + (xy 112.556151 97.940724) + (xy 112.556156 97.940719) + (xy 112.679802 97.751465) + (xy 112.770611 97.544441) + (xy 112.826107 97.325293) + (xy 112.844775 97.1) + (xy 112.826107 96.874707) + (xy 112.770611 96.655559) + (xy 112.679802 96.448535) + (xy 112.556156 96.259281) + (xy 112.55615 96.259274) + (xy 112.556149 96.259272) + (xy 112.403049 96.092963) + (xy 112.403048 96.092962) + (xy 112.403046 96.09296) + (xy 112.224649 95.954107) + (xy 112.1015 95.887462) + (xy 112.025832 95.846512) + (xy 112.025827 95.84651) + (xy 111.812017 95.773109) + (xy 111.630388 95.742801) + (xy 111.589033 95.7359) + (xy 111.362967 95.7359) + (xy 111.321612 95.742801) + (xy 111.139982 95.773109) + (xy 110.926172 95.84651) + (xy 110.926167 95.846512) + (xy 110.727352 95.954106) + (xy 110.548955 96.092959) + (xy 110.54895 96.092963) + (xy 110.39585 96.259272) + (xy 110.395842 96.259283) + (xy 110.309808 96.390968) + (xy 110.256662 96.436325) + (xy 110.18743 96.445748) + (xy 110.124095 96.416246) + (xy 110.102192 96.390968) + (xy 110.029713 96.280032) + (xy 110.016156 96.259281) + (xy 110.01615 96.259274) + (xy 110.016149 96.259272) + (xy 109.863049 96.092963) + (xy 109.863048 96.092962) + (xy 109.863046 96.09296) + (xy 109.684649 95.954107) + (xy 109.5615 95.887462) + (xy 109.485832 95.846512) + (xy 109.485827 95.84651) + (xy 109.272017 95.773109) + (xy 109.090388 95.742801) + (xy 109.049033 95.7359) + (xy 108.822967 95.7359) + (xy 108.781612 95.742801) + (xy 108.599982 95.773109) + (xy 108.386172 95.84651) + (xy 108.386167 95.846512) + (xy 108.187352 95.954106) + (xy 108.008955 96.092959) + (xy 108.00895 96.092963) + (xy 107.85585 96.259272) + (xy 107.855842 96.259283) + (xy 107.769808 96.390968) + (xy 107.716662 96.436325) + (xy 107.64743 96.445748) + (xy 107.584095 96.416246) + (xy 107.562192 96.390968) + (xy 107.489713 96.280032) + (xy 107.476156 96.259281) + (xy 107.47615 96.259274) + (xy 107.476149 96.259272) + (xy 107.323049 96.092963) + (xy 107.323048 96.092962) + (xy 107.323046 96.09296) + (xy 107.144649 95.954107) + (xy 107.0215 95.887462) + (xy 106.945832 95.846512) + (xy 106.945827 95.84651) + (xy 106.732017 95.773109) + (xy 106.550388 95.742801) + (xy 106.509033 95.7359) + (xy 106.282967 95.7359) + (xy 106.241612 95.742801) + (xy 106.059982 95.773109) + (xy 105.846172 95.84651) + (xy 105.846167 95.846512) + (xy 105.647352 95.954106) + (xy 105.468955 96.092959) + (xy 105.46895 96.092963) + (xy 105.31585 96.259272) + (xy 105.315846 96.259278) + (xy 105.229807 96.390969) + (xy 105.17666 96.436325) + (xy 105.107429 96.445748) + (xy 105.044093 96.416245) + (xy 105.022192 96.390969) + (xy 104.936156 96.259281) + (xy 104.93615 96.259274) + (xy 104.936149 96.259272) + (xy 104.783049 96.092963) + (xy 104.783048 96.092962) + (xy 104.783046 96.09296) + (xy 104.604649 95.954107) + (xy 104.4815 95.887462) + (xy 104.405832 95.846512) + (xy 104.405827 95.84651) + (xy 104.192017 95.773109) + (xy 104.010388 95.742801) + (xy 103.969033 95.7359) + (xy 103.742967 95.7359) + (xy 103.701612 95.742801) + (xy 103.519982 95.773109) + (xy 103.306172 95.84651) + (xy 103.306167 95.846512) + (xy 103.107352 95.954106) + (xy 102.928955 96.092959) + (xy 102.92895 96.092963) + (xy 102.77585 96.259272) + (xy 102.775842 96.259283) + (xy 102.689808 96.390968) + (xy 102.636662 96.436325) + (xy 102.56743 96.445748) + (xy 102.504095 96.416246) + (xy 102.482192 96.390968) + (xy 102.409713 96.280032) + (xy 102.396156 96.259281) + (xy 102.39615 96.259274) + (xy 102.396149 96.259272) + (xy 102.243049 96.092963) + (xy 102.243048 96.092962) + (xy 102.243046 96.09296) + (xy 102.064649 95.954107) + (xy 101.9415 95.887462) + (xy 101.865832 95.846512) + (xy 101.865827 95.84651) + (xy 101.652017 95.773109) + (xy 101.470388 95.742801) + (xy 101.429033 95.7359) + (xy 101.202967 95.7359) + (xy 101.161612 95.742801) + (xy 100.979982 95.773109) + (xy 100.766172 95.84651) + (xy 100.766167 95.846512) + (xy 100.567352 95.954106) + (xy 100.388955 96.092959) + (xy 100.38895 96.092963) + (xy 100.23585 96.259272) + (xy 100.235842 96.259283) + (xy 100.149808 96.390968) + (xy 100.096662 96.436325) + (xy 100.02743 96.445748) + (xy 99.964095 96.416246) + (xy 99.942192 96.390968) + (xy 99.869713 96.280032) + (xy 99.856156 96.259281) + (xy 99.85615 96.259274) + (xy 99.856149 96.259272) + (xy 99.703049 96.092963) + (xy 99.703048 96.092962) + (xy 99.703046 96.09296) + (xy 99.524649 95.954107) + (xy 99.4015 95.887462) + (xy 99.325832 95.846512) + (xy 99.325827 95.84651) + (xy 99.112017 95.773109) + (xy 98.930388 95.742801) + (xy 98.889033 95.7359) + (xy 98.662967 95.7359) + (xy 98.621612 95.742801) + (xy 98.439982 95.773109) + (xy 98.226172 95.84651) + (xy 98.226167 95.846512) + (xy 98.027352 95.954106) + (xy 97.848955 96.092958) + (xy 97.794186 96.152453) + (xy 97.734298 96.188443) + (xy 97.66446 96.186342) + (xy 97.606845 96.146817) + (xy 97.586775 96.111802) + (xy 97.542954 95.994313) + (xy 97.54295 95.994306) + (xy 97.45679 95.879212) + (xy 97.456787 95.879209) + (xy 97.341693 95.793049) + (xy 97.341686 95.793045) + (xy 97.206979 95.742803) + (xy 97.206972 95.742801) + (xy 97.147444 95.7364) + (xy 96.486 95.7364) + (xy 96.486 96.655702) + (xy 96.380592 96.607565) + (xy 96.272334 96.592) + (xy 96.199666 96.592) + (xy 96.091408 96.607565) + (xy 95.985999 96.655702) + (xy 95.986 95.7364) + (xy 95.324555 95.7364) + (xy 95.265027 95.742801) + (xy 95.26502 95.742803) + (xy 95.130313 95.793045) + (xy 95.130306 95.793049) + (xy 95.015212 95.879209) + (xy 95.015209 95.879212) + (xy 94.929049 95.994306) + (xy 94.929046 95.994312) + (xy 94.885224 96.111803) + (xy 94.843352 96.167736) + (xy 94.777887 96.192153) + (xy 94.709615 96.177301) + (xy 94.677813 96.152452) + (xy 94.623049 96.092963) + (xy 94.623048 96.092962) + (xy 94.623046 96.09296) + (xy 94.444649 95.954107) + (xy 94.3215 95.887462) + (xy 94.245832 95.846512) + (xy 94.245827 95.84651) + (xy 94.032017 95.773109) + (xy 93.850388 95.742801) + (xy 93.809033 95.7359) + (xy 93.582967 95.7359) + (xy 93.541612 95.742801) + (xy 93.359982 95.773109) + (xy 93.146172 95.84651) + (xy 93.146167 95.846512) + (xy 92.947352 95.954106) + (xy 92.768955 96.092959) + (xy 92.76895 96.092963) + (xy 92.61585 96.259272) + (xy 92.615842 96.259283) + (xy 92.529808 96.390968) + (xy 92.476662 96.436325) + (xy 92.40743 96.445748) + (xy 92.344095 96.416246) + (xy 92.322192 96.390968) + (xy 92.249713 96.280032) + (xy 92.236156 96.259281) + (xy 92.23615 96.259274) + (xy 92.236149 96.259272) + (xy 92.083049 96.092963) + (xy 92.083048 96.092962) + (xy 92.083046 96.09296) + (xy 91.904649 95.954107) + (xy 91.7815 95.887462) + (xy 91.705832 95.846512) + (xy 91.705827 95.84651) + (xy 91.492017 95.773109) + (xy 91.310388 95.742801) + (xy 91.269033 95.7359) + (xy 91.042967 95.7359) + (xy 91.001612 95.742801) + (xy 90.819982 95.773109) + (xy 90.606172 95.84651) + (xy 90.606167 95.846512) + (xy 90.407352 95.954106) + (xy 90.228955 96.092959) + (xy 90.22895 96.092963) + (xy 90.07585 96.259272) + (xy 90.075842 96.259283) + (xy 89.989808 96.390968) + (xy 89.936662 96.436325) + (xy 89.86743 96.445748) + (xy 89.804095 96.416246) + (xy 89.782192 96.390968) + (xy 89.709713 96.280032) + (xy 89.696156 96.259281) + (xy 89.69615 96.259274) + (xy 89.696149 96.259272) + (xy 89.543049 96.092963) + (xy 89.543048 96.092962) + (xy 89.543046 96.09296) + (xy 89.364649 95.954107) + (xy 89.2415 95.887462) + (xy 89.165832 95.846512) + (xy 89.165827 95.84651) + (xy 88.952017 95.773109) + (xy 88.770388 95.742801) + (xy 88.729033 95.7359) + (xy 88.502967 95.7359) + (xy 88.461612 95.742801) + (xy 88.279982 95.773109) + (xy 88.066172 95.84651) + (xy 88.066167 95.846512) + (xy 87.867352 95.954106) + (xy 87.688955 96.092959) + (xy 87.68895 96.092963) + (xy 87.53585 96.259272) + (xy 87.535842 96.259283) + (xy 87.412198 96.448533) + (xy 87.321388 96.65556) + (xy 87.265892 96.87471) + (xy 87.247225 97.099993) + (xy 87.247225 97.100006) + (xy 87.265892 97.325289) + (xy 87.321388 97.544439) + (xy 87.412198 97.751466) + (xy 87.535842 97.940716) + (xy 87.53585 97.940727) + (xy 87.67262 98.089297) + (xy 87.688954 98.10704) + (xy 87.867351 98.245893) + (xy 88.066169 98.353488) + (xy 88.066172 98.353489) + (xy 88.279982 98.42689) + (xy 88.279984 98.42689) + (xy 88.279986 98.426891) + (xy 88.502967 98.4641) + (xy 88.502968 98.4641) + (xy 88.729032 98.4641) + (xy 88.729033 98.4641) + (xy 88.952014 98.426891) + (xy 88.957919 98.424864) + (xy 88.985492 98.415398) + (xy 89.165831 98.353488) + (xy 89.364649 98.245893) + (xy 89.543046 98.10704) + (xy 89.696156 97.940719) + (xy 89.782193 97.809028) + (xy 89.835338 97.763675) + (xy 89.904569 97.754251) + (xy 89.967905 97.783753) + (xy 89.989804 97.809025) + (xy 90.075844 97.940719) + (xy 90.075849 97.940724) + (xy 90.07585 97.940727) + (xy 90.21262 98.089297) + (xy 90.228954 98.10704) + (xy 90.407351 98.245893) + (xy 90.606169 98.353488) + (xy 90.606172 98.353489) + (xy 90.819982 98.42689) + (xy 90.819984 98.42689) + (xy 90.819986 98.426891) + (xy 91.042967 98.4641) + (xy 91.042968 98.4641) + (xy 91.269032 98.4641) + (xy 91.269033 98.4641) + (xy 91.492014 98.426891) + (xy 91.497919 98.424864) + (xy 91.525492 98.415398) + (xy 91.705831 98.353488) + (xy 91.904649 98.245893) + (xy 92.083046 98.10704) + (xy 92.236156 97.940719) + (xy 92.322193 97.809028) + (xy 92.375338 97.763675) + (xy 92.444569 97.754251) + (xy 92.507905 97.783753) + (xy 92.529804 97.809025) + (xy 92.615844 97.940719) + (xy 92.615849 97.940724) + (xy 92.61585 97.940727) + (xy 92.75262 98.089297) + (xy 92.768954 98.10704) + (xy 92.772658 98.109923) + (xy 92.813473 98.166629) + (xy 92.8205 98.207779) + (xy 92.8205 98.467897) + (xy 92.820295 98.472931) + (xy 92.81566 98.529844) + (xy 92.826801 98.611621) + (xy 92.827005 98.613286) + (xy 92.835927 98.695316) + (xy 92.835929 98.695327) + (xy 92.83599 98.695506) + (xy 92.84134 98.718331) + (xy 92.841366 98.718525) + (xy 92.841369 98.718536) + (xy 92.86983 98.796007) + (xy 92.870387 98.79759) + (xy 92.896731 98.875776) + (xy 92.896734 98.875782) + (xy 92.896832 98.875945) + (xy 92.906969 98.897099) + (xy 92.907036 98.897283) + (xy 92.90704 98.89729) + (xy 92.951498 98.966846) + (xy 92.952382 98.968272) + (xy 92.994912 99.038955) + (xy 92.995042 99.039092) + (xy 93.009495 99.057579) + (xy 93.009601 99.057745) + (xy 93.067952 99.116096) + (xy 93.069124 99.1173) + (xy 93.125866 99.177203) + (xy 93.125868 99.177204) + (xy 93.125871 99.177207) + (xy 93.126028 99.177314) + (xy 93.144121 99.192265) + (xy 93.713992 99.762136) + (xy 93.717396 99.765829) + (xy 93.754362 99.80935) + (xy 93.754366 99.809354) + (xy 93.754369 99.809357) + (xy 93.820123 99.859341) + (xy 93.821335 99.860288) + (xy 93.85453 99.886972) + (xy 93.885702 99.91203) + (xy 93.885872 99.912114) + (xy 93.905814 99.924483) + (xy 93.905971 99.924602) + (xy 93.980905 99.95927) + (xy 93.982366 99.95997) + (xy 94.056307 99.996641) + (xy 94.056481 99.996684) + (xy 94.078626 100.00448) + (xy 94.078803 100.004562) + (xy 94.078806 100.004562) + (xy 94.078807 100.004563) + (xy 94.0911 100.007268) + (xy 94.159432 100.022309) + (xy 94.161023 100.022683) + (xy 94.188959 100.02963) + (xy 94.241111 100.0426) + (xy 94.241284 100.042604) + (xy 94.264602 100.04546) + (xy 94.264784 100.0455) + (xy 94.347303 100.0455) + (xy 94.348982 100.045523) + (xy 94.384385 100.046481) + (xy 94.431473 100.047757) + (xy 94.431655 100.047721) + (xy 94.455023 100.0455) + (xy 107.942703 100.0455) + (xy 108.009742 100.065185) + (xy 108.055497 100.117989) + (xy 108.065441 100.187147) + (xy 108.058885 100.212833) + (xy 108.026403 100.29992) + (xy 108.026401 100.299927) + (xy 108.02 100.359455) + (xy 108.02 100.8573) + (xy 108.974419 100.8573) + (xy 108.92294 100.913221) + (xy 108.876018 101.020192) + (xy 108.866372 101.136602) + (xy 108.895047 101.249838) + (xy 108.958936 101.347627) + (xy 109.051115 101.419372) + (xy 109.161595 101.4573) + (xy 109.249005 101.4573) + (xy 109.335216 101.442914) + (xy 109.437947 101.387319) + (xy 109.465581 101.3573) + (xy 109.47 101.3573) + (xy 109.47 102.3073) + (xy 109.967828 102.3073) + (xy 109.967844 102.307299) + (xy 110.027372 102.300898) + (xy 110.027379 102.300896) + (xy 110.162086 102.250654) + (xy 110.162093 102.25065) + (xy 110.277187 102.16449) + (xy 110.27719 102.164487) + (xy 110.36335 102.049393) + (xy 110.363354 102.049386) + (xy 110.413596 101.914679) + (xy 110.413598 101.914672) + (xy 110.419999 101.855144) + (xy 110.42 101.855127) + (xy 110.42 101.3573) + (xy 109.47 101.3573) + (xy 109.465581 101.3573) + (xy 109.51706 101.301379) + (xy 109.563982 101.194408) + (xy 109.573628 101.077998) + (xy 109.544953 100.964762) + (xy 109.481064 100.866973) + (xy 109.468636 100.8573) + (xy 110.42 100.8573) + (xy 110.42 100.359472) + (xy 110.419999 100.359455) + (xy 110.413598 100.299927) + (xy 110.413596 100.29992) + (xy 110.381115 100.212833) + (xy 110.376131 100.143142) + (xy 110.409616 100.081819) + (xy 110.470939 100.048334) + (xy 110.497297 100.0455) + (xy 128.655994 100.0455) + (xy 128.723033 100.065185) + (xy 128.743675 100.081819) + (xy 129.699508 101.037652) + (xy 129.732993 101.098975) + (xy 129.735355 101.114526) + (xy 129.753793 101.325275) + (xy 129.753793 101.325279) + (xy 129.810422 101.536622) + (xy 129.810424 101.536626) + (xy 129.810425 101.53663) + (xy 129.854667 101.631508) + (xy 129.902897 101.734938) + (xy 129.902898 101.734939) + (xy 130.028402 101.914177) + (xy 130.183123 102.068898) + (xy 130.362361 102.194402) + (xy 130.56067 102.286875) + (xy 130.772023 102.343507) + (xy 130.954926 102.359508) + (xy 130.989998 102.362577) + (xy 130.99 102.362577) + (xy 130.990002 102.362577) + (xy 131.018254 102.360105) + (xy 131.207977 102.343507) + (xy 131.41933 102.286875) + (xy 131.617639 102.194402) + (xy 131.796877 102.068898) + (xy 131.951598 101.914177) + (xy 132.077102 101.734939) + (xy 132.169575 101.53663) + (xy 132.226207 101.325277) + (xy 132.245277 101.1073) + (xy 132.242713 101.077998) + (xy 132.239184 101.037652) + (xy 132.226207 100.889323) + (xy 132.169575 100.67797) + (xy 132.077102 100.479662) + (xy 132.0771 100.479659) + (xy 132.077099 100.479657) + (xy 131.951599 100.300424) + (xy 131.884758 100.233583) + (xy 131.796877 100.145702) + (xy 131.621188 100.022683) + (xy 131.617638 100.020197) + (xy 131.518484 99.973961) + (xy 131.41933 99.927725) + (xy 131.419326 99.927724) + (xy 131.419322 99.927722) + (xy 131.207977 99.871093) + (xy 131.035143 99.855972) + (xy 130.970074 99.83052) + (xy 130.958269 99.820125) + (xy 130.398253 99.260109) + (xy 129.715999 98.577855) + (xy 129.712608 98.574176) + (xy 129.675631 98.530643) + (xy 129.609932 98.4807) + (xy 129.608615 98.47967) + (xy 129.544302 98.427973) + (xy 129.544294 98.427968) + (xy 129.54412 98.427882) + (xy 129.524182 98.415514) + (xy 129.524029 98.415398) + (xy 129.449136 98.380748) + (xy 129.447623 98.380023) + (xy 129.3737 98.343362) + (xy 129.373696 98.34336) + (xy 129.373693 98.343359) + (xy 129.373687 98.343357) + (xy 129.37368 98.343355) + (xy 129.373488 98.343307) + (xy 129.351385 98.335525) + (xy 129.351198 98.335438) + (xy 129.351195 98.335437) + (xy 129.270593 98.317694) + (xy 129.268959 98.317311) + (xy 129.231455 98.307985) + (xy 129.171148 98.272704) + (xy 129.139488 98.210419) + (xy 129.146529 98.140904) + (xy 129.170151 98.103667) + (xy 129.320149 97.940727) + (xy 129.320151 97.940724) + (xy 129.320156 97.940719) + (xy 129.406193 97.809029) + (xy 129.459336 97.763675) + (xy 129.528567 97.754251) + (xy 129.591903 97.783753) + (xy 129.613807 97.809031) + (xy 129.699842 97.940716) + (xy 129.69985 97.940727) + (xy 129.83662 98.089297) + (xy 129.852954 98.10704) + (xy 130.031351 98.245893) + (xy 130.230169 98.353488) + (xy 130.230172 98.353489) + (xy 130.443982 98.42689) + (xy 130.443984 98.42689) + (xy 130.443986 98.426891) + (xy 130.666967 98.4641) + (xy 130.666968 98.4641) + (xy 130.893032 98.4641) + (xy 130.893033 98.4641) + (xy 131.116014 98.426891) + (xy 131.121919 98.424864) + (xy 131.149492 98.415398) + (xy 131.329831 98.353488) + (xy 131.528649 98.245893) + (xy 131.707046 98.10704) + (xy 131.860156 97.940719) + (xy 131.946193 97.809028) + (xy 131.999338 97.763675) + (xy 132.068569 97.754251) + (xy 132.131905 97.783753) + (xy 132.153804 97.809025) + (xy 132.239844 97.940719) + (xy 132.239849 97.940724) + (xy 132.23985 97.940727) + (xy 132.37662 98.089297) + (xy 132.392954 98.10704) + (xy 132.571351 98.245893) + (xy 132.770169 98.353488) + (xy 132.770172 98.353489) + (xy 132.983982 98.42689) + (xy 132.983984 98.42689) + (xy 132.983986 98.426891) + (xy 133.206967 98.4641) + (xy 133.206968 98.4641) + (xy 133.433032 98.4641) + (xy 133.433033 98.4641) + (xy 133.656014 98.426891) + (xy 133.661919 98.424864) + (xy 133.689492 98.415398) + (xy 133.869831 98.353488) + (xy 134.068649 98.245893) + (xy 134.247046 98.10704) + (xy 134.400156 97.940719) + (xy 134.400163 97.940707) + (xy 134.402639 97.937527) + (xy 134.459346 97.896709) + (xy 134.529118 97.893028) + (xy 134.589805 97.927653) + (xy 134.622138 97.989591) + (xy 134.6245 98.01368) + (xy 134.6245 108.603651) + (xy 134.622775 108.619268) + (xy 134.623061 108.619295) + (xy 134.622326 108.627062) + (xy 134.624469 108.695242) + (xy 134.6245 108.697189) + (xy 134.6245 108.725739) + (xy 134.624501 108.725756) + (xy 134.625368 108.732627) + (xy 134.625826 108.738446) + (xy 134.62729 108.78502) + (xy 134.627291 108.785023) + (xy 134.63288 108.804263) + (xy 134.636824 108.823307) + (xy 134.638616 108.837487) + (xy 134.639336 108.843187) + (xy 134.65649 108.886515) + (xy 134.658382 108.892043) + (xy 134.664358 108.912612) + (xy 134.671382 108.936786) + (xy 134.677962 108.947913) + (xy 134.68158 108.95403) + (xy 134.690138 108.971499) + (xy 134.697514 108.990128) + (xy 134.724898 109.027819) + (xy 134.728106 109.032703) + (xy 134.751827 109.072812) + (xy 134.751833 109.07282) + (xy 134.76599 109.086976) + (xy 134.778628 109.101772) + (xy 134.790405 109.117982) + (xy 134.790406 109.117983) + (xy 134.826309 109.147684) + (xy 134.83062 109.151606) + (xy 137.33889 111.659876) + (xy 139.792916 114.113902) + (xy 139.826401 114.175225) + (xy 139.821417 114.244917) + (xy 139.797387 114.284553) + (xy 139.767466 114.317785) + (xy 139.672821 114.481715) + (xy 139.672818 114.481722) + (xy 139.614688 114.66063) + (xy 139.614326 114.661744) + (xy 139.59454 114.85) + (xy 139.614326 115.038256) + (xy 139.614327 115.038259) + (xy 139.672818 115.218277) + (xy 139.672821 115.218284) + (xy 139.767467 115.382216) + (xy 139.891843 115.520349) + (xy 139.894129 115.522888) + (xy 140.047265 115.634148) + (xy 140.04727 115.634151) + (xy 140.220192 115.711142) + (xy 140.220197 115.711144) + (xy 140.405354 115.7505) + (xy 140.405355 115.7505) + (xy 140.594644 115.7505) + (xy 140.594646 115.7505) + (xy 140.709843 115.726014) + (xy 140.779508 115.73133) + (xy 140.835242 115.773467) + (xy 140.853553 115.808985) + (xy 140.872819 115.86828) + (xy 140.872821 115.868284) + (xy 140.967467 116.032216) + (xy 141.081064 116.158378) + (xy 141.094129 116.172888) + (xy 141.247265 116.284148) + (xy 141.24727 116.284151) + (xy 141.388925 116.347221) + (xy 141.442162 116.392471) + (xy 141.462483 116.45932) + (xy 141.443437 116.526544) + (xy 141.391071 116.572799) + (xy 141.338489 116.5845) + (xy 134.899453 116.5845) + (xy 134.832414 116.564815) + (xy 134.811772 116.548181) + (xy 127.919803 109.656212) + (xy 127.90998 109.64395) + (xy 127.909759 109.644134) + (xy 127.904786 109.638122) + (xy 127.855066 109.591432) + (xy 127.853666 109.590075) + (xy 127.833476 109.569884) + (xy 127.827986 109.565625) + (xy 127.823561 109.561847) + (xy 127.789582 109.529938) + (xy 127.78958 109.529936) + (xy 127.789577 109.529935) + (xy 127.772029 109.520288) + (xy 127.755763 109.509604) + (xy 127.739936 109.497327) + (xy 127.739935 109.497326) + (xy 127.739933 109.497325) + (xy 127.697168 109.478818) + (xy 127.691922 109.476248) + (xy 127.651093 109.453803) + (xy 127.651092 109.453802) + (xy 127.631693 109.448822) + (xy 127.613281 109.442518) + (xy 127.594898 109.434562) + (xy 127.594892 109.43456) + (xy 127.548874 109.427272) + (xy 127.543152 109.426087) + (xy 127.498021 109.4145) + (xy 127.498019 109.4145) + (xy 127.477984 109.4145) + (xy 127.458586 109.412973) + (xy 127.451162 109.411797) + (xy 127.438805 109.40984) + (xy 127.438804 109.40984) + (xy 127.392416 109.414225) + (xy 127.386578 109.4145) + (xy 127.223389 109.4145) + (xy 127.15635 109.394815) + (xy 127.117103 109.352505) + (xy 127.116608 109.352829) + (xy 127.114712 109.349927) + (xy 127.114337 109.349523) + (xy 127.1138 109.348532) + (xy 126.998917 109.172691) + (xy 126.990156 109.159281) + (xy 126.990153 109.159278) + (xy 126.990149 109.159272) + (xy 126.837045 108.992959) + (xy 126.764874 108.936786) + (xy 126.658649 108.854107) + (xy 126.601749 108.823314) + (xy 126.459832 108.746512) + (xy 126.459827 108.74651) + (xy 126.246017 108.673109) + (xy 126.064388 108.642801) + (xy 126.023033 108.6359) + (xy 125.796967 108.6359) + (xy 125.755612 108.642801) + (xy 125.573982 108.673109) + (xy 125.360172 108.74651) + (xy 125.360167 108.746512) + (xy 125.161352 108.854106) + (xy 124.982955 108.992959) + (xy 124.82985 109.159272) + (xy 124.829842 109.159283) + (xy 124.706198 109.348533) + (xy 124.615388 109.55556) + (xy 124.559892 109.77471) + (xy 124.541225 109.999993) + (xy 124.541225 110.000006) + (xy 124.559892 110.225289) + (xy 124.615388 110.444439) + (xy 124.706198 110.651466) + (xy 124.829842 110.840716) + (xy 124.82985 110.840727) + (xy 124.98295 111.007036) + (xy 124.982954 111.00704) + (xy 125.161351 111.145893) + (xy 125.177241 111.154492) + (xy 125.189165 111.160945) + (xy 125.238755 111.210165) + (xy 125.253863 111.278382) + (xy 125.229692 111.343937) + (xy 125.189165 111.379055) + (xy 125.161352 111.394106) + (xy 124.982955 111.532959) + (xy 124.98295 111.532963) + (xy 124.82985 111.699272) + (xy 124.829842 111.699283) + (xy 124.725937 111.858322) + (xy 124.672791 111.903678) + (xy 124.622129 111.9145) + (xy 123.822737 111.9145) + (xy 123.80712 111.912776) + (xy 123.807093 111.913062) + (xy 123.799331 111.912327) + (xy 123.731171 111.914469) + (xy 123.729224 111.9145) + (xy 123.70065 111.9145) + (xy 123.699929 111.91459) + (xy 123.693757 111.915369) + (xy 123.687945 111.915826) + (xy 123.641372 111.91729) + (xy 123.641369 111.917291) + (xy 123.622126 111.922881) + (xy 123.603083 111.926825) + (xy 123.583204 111.929336) + (xy 123.583203 111.929337) + (xy 123.539878 111.94649) + (xy 123.534352 111.948382) + (xy 123.489608 111.961383) + (xy 123.489604 111.961385) + (xy 123.472365 111.97158) + (xy 123.454898 111.980137) + (xy 123.436269 111.987512) + (xy 123.436267 111.987513) + (xy 123.398564 112.014906) + (xy 123.393682 112.018112) + (xy 123.35358 112.041828) + (xy 123.339408 112.056) + (xy 123.324623 112.068628) + (xy 123.308412 112.080407) + (xy 123.278709 112.11631) + (xy 123.274777 112.120631) + (xy 122.066208 113.329199) + (xy 122.053951 113.33902) + (xy 122.054134 113.339241) + (xy 122.048122 113.344214) + (xy 122.001432 113.393932) + (xy 122.000079 113.395329) + (xy 121.979889 113.415519) + (xy 121.979877 113.415532) + (xy 121.975621 113.421017) + (xy 121.971837 113.425447) + (xy 121.939937 113.459418) + (xy 121.939936 113.45942) + (xy 121.930284 113.476976) + (xy 121.91961 113.493226) + (xy 121.907329 113.509061) + (xy 121.907324 113.509068) + (xy 121.888815 113.551838) + (xy 121.886245 113.557084) + (xy 121.863803 113.597906) + (xy 121.858822 113.617307) + (xy 121.852521 113.63571) + (xy 121.844562 113.654102) + (xy 121.844561 113.654105) + (xy 121.837271 113.700127) + (xy 121.836087 113.705846) + (xy 121.824501 113.750972) + (xy 121.8245 113.750982) + (xy 121.8245 113.771016) + (xy 121.822973 113.790415) + (xy 121.81984 113.810194) + (xy 121.819839 113.810197) + (xy 121.824224 113.856585) + (xy 121.824499 113.862421) + (xy 121.824499 116.381022) + (xy 121.822972 116.400419) + (xy 121.822552 116.403071) + (xy 121.819839 116.420194) + (xy 121.824224 116.46658) + (xy 121.824499 116.472417) + (xy 121.8245 117.62098) (xy 121.8245 118.967255) (xy 121.822775 118.982872) (xy 121.823061 118.982899) @@ -33176,7 +22524,8 @@ (xy 121.827291 119.148627) (xy 121.83288 119.167867) (xy 121.836824 119.186911) - (xy 121.839336 119.206792) + (xy 121.838094 119.196959) + (xy 121.839336 119.206791) (xy 121.85649 119.250119) (xy 121.858382 119.255647) (xy 121.871381 119.300388) @@ -33212,10 +22561,7 @@ (xy 117.405112 117.731545) (xy 117.405115 117.731536) (xy 117.425643 117.51) - (xy 117.422461 117.475665) (xy 117.405115 117.288464) - (xy 117.405114 117.288462) - (xy 117.392988 117.245845) (xy 117.344229 117.074472) (xy 117.344224 117.074461) (xy 117.245061 116.875316) @@ -33229,7 +22575,7 @@ (xy 116.331243 116.3095) (xy 116.108757 116.3095) (xy 115.89006 116.350382) - (xy 115.760691 116.4005) + (xy 115.785799 116.390773) (xy 115.682601 116.430752) (xy 115.682595 116.430754) (xy 115.493439 116.547874) @@ -33281,10 +22627,7 @@ (xy 114.287962 117.731551) (xy 114.287967 117.731536) (xy 114.308495 117.51) - (xy 114.305313 117.475665) (xy 114.287967 117.288464) - (xy 114.287966 117.288462) - (xy 114.27584 117.245845) (xy 114.227081 117.074472) (xy 114.227076 117.074461) (xy 114.127913 116.875316) @@ -33298,7 +22641,7 @@ (xy 113.214095 116.3095) (xy 112.991609 116.3095) (xy 112.772912 116.350382) - (xy 112.643543 116.4005) + (xy 112.668651 116.390773) (xy 112.565453 116.430752) (xy 112.565447 116.430754) (xy 112.376291 116.547874) @@ -33350,10 +22693,7 @@ (xy 111.17082 117.731551) (xy 111.170825 117.731536) (xy 111.191353 117.51) - (xy 111.188171 117.475665) (xy 111.170825 117.288464) - (xy 111.170824 117.288462) - (xy 111.158698 117.245845) (xy 111.109939 117.074472) (xy 111.109934 117.074461) (xy 111.010771 116.875316) @@ -33367,7 +22707,7 @@ (xy 110.096953 116.3095) (xy 109.874467 116.3095) (xy 109.65577 116.350382) - (xy 109.526401 116.4005) + (xy 109.551509 116.390773) (xy 109.448311 116.430752) (xy 109.448305 116.430754) (xy 109.259149 116.547874) @@ -33419,10 +22759,7 @@ (xy 108.053678 117.731551) (xy 108.053683 117.731536) (xy 108.074211 117.51) - (xy 108.071029 117.475665) (xy 108.053683 117.288464) - (xy 108.053682 117.288462) - (xy 108.041556 117.245845) (xy 107.992797 117.074472) (xy 107.992792 117.074461) (xy 107.893629 116.875316) @@ -33436,7 +22773,7 @@ (xy 106.979811 116.3095) (xy 106.757325 116.3095) (xy 106.538628 116.350382) - (xy 106.409259 116.4005) + (xy 106.434367 116.390773) (xy 106.331169 116.430752) (xy 106.331163 116.430754) (xy 106.142007 116.547874) @@ -33488,10 +22825,7 @@ (xy 104.936536 117.731551) (xy 104.936541 117.731536) (xy 104.957069 117.51) - (xy 104.953887 117.475665) (xy 104.936541 117.288464) - (xy 104.93654 117.288462) - (xy 104.924414 117.245845) (xy 104.875655 117.074472) (xy 104.87565 117.074461) (xy 104.776487 116.875316) @@ -33505,7 +22839,7 @@ (xy 103.862669 116.3095) (xy 103.640183 116.3095) (xy 103.421486 116.350382) - (xy 103.292117 116.4005) + (xy 103.317225 116.390773) (xy 103.214027 116.430752) (xy 103.214021 116.430754) (xy 103.024865 116.547874) @@ -33557,10 +22891,7 @@ (xy 101.819394 117.731551) (xy 101.819399 117.731536) (xy 101.839927 117.51) - (xy 101.836745 117.475665) (xy 101.819399 117.288464) - (xy 101.819398 117.288462) - (xy 101.807272 117.245845) (xy 101.758513 117.074472) (xy 101.758508 117.074461) (xy 101.659345 116.875316) @@ -33574,7 +22905,7 @@ (xy 100.745527 116.3095) (xy 100.523041 116.3095) (xy 100.304344 116.350382) - (xy 100.174975 116.4005) + (xy 100.200083 116.390773) (xy 100.096885 116.430752) (xy 100.096879 116.430754) (xy 99.907723 116.547874) @@ -33626,10 +22957,7 @@ (xy 98.702252 117.731551) (xy 98.702257 117.731536) (xy 98.722785 117.51) - (xy 98.719603 117.475665) (xy 98.702257 117.288464) - (xy 98.702256 117.288462) - (xy 98.69013 117.245845) (xy 98.641371 117.074472) (xy 98.641366 117.074461) (xy 98.542203 116.875316) @@ -33643,7 +22971,7 @@ (xy 97.628385 116.3095) (xy 97.405899 116.3095) (xy 97.187202 116.350382) - (xy 97.057833 116.4005) + (xy 97.082941 116.390773) (xy 96.979743 116.430752) (xy 96.979737 116.430754) (xy 96.790581 116.547874) @@ -33695,10 +23023,7 @@ (xy 95.585112 117.731545) (xy 95.585115 117.731536) (xy 95.605643 117.51) - (xy 95.602461 117.475665) (xy 95.585115 117.288464) - (xy 95.585114 117.288462) - (xy 95.572988 117.245845) (xy 95.524229 117.074472) (xy 95.524224 117.074461) (xy 95.425061 116.875316) @@ -33712,7 +23037,7 @@ (xy 94.511243 116.3095) (xy 94.288757 116.3095) (xy 94.07006 116.350382) - (xy 93.940691 116.4005) + (xy 93.965799 116.390773) (xy 93.862601 116.430752) (xy 93.862595 116.430754) (xy 93.673439 116.547874) @@ -33786,82 +23111,81 @@ (xy 119.488181 126.509167) (xy 119.521666 126.57049) (xy 119.5245 126.596848) - (xy 119.5245 134.417255) - (xy 119.522775 134.432872) - (xy 119.523061 134.432899) - (xy 119.522326 134.440666) - (xy 119.524469 134.508846) - (xy 119.5245 134.510793) - (xy 119.5245 134.539343) - (xy 119.524501 134.53936) - (xy 119.525368 134.546231) - (xy 119.525826 134.55205) - (xy 119.52729 134.598624) - (xy 119.527291 134.598627) - (xy 119.53288 134.617867) - (xy 119.536824 134.636911) - (xy 119.539336 134.656792) - (xy 119.55649 134.700119) - (xy 119.558382 134.705647) - (xy 119.570061 134.745845) - (xy 119.571382 134.75039) - (xy 119.577216 134.760256) - (xy 119.58158 134.767634) - (xy 119.590138 134.785103) - (xy 119.597514 134.803732) - (xy 119.624898 134.841423) - (xy 119.628106 134.846307) - (xy 119.651827 134.886416) - (xy 119.651833 134.886424) - (xy 119.66599 134.90058) - (xy 119.678628 134.915376) - (xy 119.690405 134.931586) - (xy 119.690406 134.931587) - (xy 119.726309 134.961288) - (xy 119.73062 134.96521) - (xy 121.780445 137.015036) - (xy 122.449197 137.683788) - (xy 122.459022 137.696051) - (xy 122.459243 137.695869) - (xy 122.464211 137.701874) - (xy 122.513932 137.748566) - (xy 122.515332 137.749923) - (xy 122.535523 137.770115) - (xy 122.535527 137.770118) - (xy 122.535529 137.77012) - (xy 122.541011 137.774373) - (xy 122.545443 137.778157) - (xy 122.579418 137.810062) - (xy 122.596976 137.819714) - (xy 122.613233 137.830393) - (xy 122.629064 137.842673) - (xy 122.648737 137.851186) - (xy 122.671833 137.861182) - (xy 122.677077 137.86375) - (xy 122.717908 137.886197) - (xy 122.730523 137.889435) - (xy 122.737305 137.891177) - (xy 122.755719 137.897481) - (xy 122.774104 137.905438) - (xy 122.820157 137.912732) - (xy 122.825826 137.913906) - (xy 122.870981 137.9255) - (xy 122.891016 137.9255) - (xy 122.910413 137.927026) - (xy 122.930196 137.93016) - (xy 122.976583 137.925775) - (xy 122.982422 137.9255) - (xy 132.989548 137.9255) - (xy 133.056587 137.945185) - (xy 133.077229 137.961819) - (xy 138.985166 143.869757) - (xy 139.018651 143.93108) - (xy 139.013667 144.000772) - (xy 138.971795 144.056705) - (xy 138.906331 144.081122) - (xy 138.857222 144.074719) - (xy 138.736017 144.033109) - (xy 138.568778 144.005202) + (xy 119.5245 135.567255) + (xy 119.522775 135.582872) + (xy 119.523061 135.582899) + (xy 119.522326 135.590666) + (xy 119.524469 135.658846) + (xy 119.5245 135.660793) + (xy 119.5245 135.689343) + (xy 119.524501 135.68936) + (xy 119.525368 135.696231) + (xy 119.525826 135.70205) + (xy 119.52729 135.748624) + (xy 119.527291 135.748627) + (xy 119.53288 135.767867) + (xy 119.536824 135.786911) + (xy 119.539336 135.806792) + (xy 119.555183 135.846819) + (xy 119.55649 135.850119) + (xy 119.558382 135.855647) + (xy 119.571381 135.900388) + (xy 119.58158 135.917634) + (xy 119.590138 135.935103) + (xy 119.597514 135.953732) + (xy 119.624898 135.991423) + (xy 119.628106 135.996307) + (xy 119.651827 136.036416) + (xy 119.651833 136.036424) + (xy 119.66599 136.05058) + (xy 119.678627 136.065375) + (xy 119.690406 136.081587) + (xy 119.699005 136.088701) + (xy 119.726309 136.111288) + (xy 119.73062 136.11521) + (xy 121.458524 137.843115) + (xy 122.009197 138.393788) + (xy 122.019022 138.406051) + (xy 122.019243 138.405869) + (xy 122.024211 138.411874) + (xy 122.073932 138.458566) + (xy 122.075332 138.459923) + (xy 122.095523 138.480115) + (xy 122.095527 138.480118) + (xy 122.095529 138.48012) + (xy 122.101011 138.484373) + (xy 122.105443 138.488157) + (xy 122.139418 138.520062) + (xy 122.156976 138.529714) + (xy 122.173233 138.540393) + (xy 122.189064 138.552673) + (xy 122.208737 138.561186) + (xy 122.231833 138.571182) + (xy 122.237077 138.57375) + (xy 122.277908 138.596197) + (xy 122.290523 138.599435) + (xy 122.297305 138.601177) + (xy 122.315719 138.607481) + (xy 122.334104 138.615438) + (xy 122.380157 138.622732) + (xy 122.385826 138.623906) + (xy 122.430981 138.6355) + (xy 122.451016 138.6355) + (xy 122.470413 138.637026) + (xy 122.490196 138.64016) + (xy 122.536583 138.635775) + (xy 122.542422 138.6355) + (xy 133.699548 138.6355) + (xy 133.766587 138.655185) + (xy 133.787229 138.671819) + (xy 138.985167 143.869757) + (xy 139.018652 143.93108) + (xy 139.013668 144.000772) + (xy 138.971796 144.056705) + (xy 138.906332 144.081122) + (xy 138.857224 144.074719) + (xy 138.736019 144.033109) + (xy 138.542229 144.000772) (xy 138.513033 143.9959) (xy 138.286967 143.9959) (xy 138.257771 144.000772) @@ -33914,9 +23238,9 @@ (xy 117.17598 134.759426) (xy 117.169405 134.688464) (xy 117.169404 134.688462) - (xy 117.160393 134.656792) + (xy 117.13159 134.55556) (xy 117.108519 134.474472) - (xy 117.099802 134.456966) + (xy 117.058739 134.3745) (xy 117.009351 134.275316) (xy 117.009346 134.275308) (xy 116.875269 134.097761) @@ -33928,7 +23252,7 @@ (xy 116.095533 133.7095) (xy 115.873047 133.7095) (xy 115.65435 133.750382) - (xy 115.523154 133.801207) + (xy 115.552505 133.789837) (xy 115.446891 133.830752) (xy 115.446885 133.830754) (xy 115.257729 133.947874) @@ -33979,9 +23303,9 @@ (xy 114.09169 134.759426) (xy 114.085115 134.688464) (xy 114.085114 134.688462) - (xy 114.076103 134.656792) + (xy 114.0473 134.55556) (xy 114.024229 134.474472) - (xy 114.015512 134.456966) + (xy 113.974449 134.3745) (xy 113.925061 134.275316) (xy 113.925056 134.275308) (xy 113.790979 134.097761) @@ -33993,7 +23317,7 @@ (xy 113.011243 133.7095) (xy 112.788757 133.7095) (xy 112.57006 133.750382) - (xy 112.438864 133.801207) + (xy 112.468215 133.789837) (xy 112.362601 133.830752) (xy 112.362595 133.830754) (xy 112.173439 133.947874) @@ -34041,14 +23365,13 @@ (xy 111.001691 135.137525) (xy 110.999777 135.137168) (xy 111.00083 135.131535) - (xy 111.007553 135.058987) (xy 111.021358 134.91) - (xy 111.007405 134.759426) + (xy 111.021358 134.909999) (xy 111.00083 134.688464) (xy 111.000829 134.688462) - (xy 110.991818 134.656792) + (xy 110.963015 134.55556) (xy 110.939944 134.474472) - (xy 110.931227 134.456966) + (xy 110.890164 134.3745) (xy 110.840776 134.275316) (xy 110.840771 134.275308) (xy 110.706694 134.097761) @@ -34060,7 +23383,7 @@ (xy 109.926958 133.7095) (xy 109.704472 133.7095) (xy 109.485775 133.750382) - (xy 109.354579 133.801207) + (xy 109.38393 133.789837) (xy 109.278316 133.830752) (xy 109.27831 133.830754) (xy 109.089154 133.947874) @@ -34111,9 +23434,9 @@ (xy 107.92312 134.759426) (xy 107.916545 134.688464) (xy 107.916544 134.688462) - (xy 107.907533 134.656792) + (xy 107.87873 134.55556) (xy 107.855659 134.474472) - (xy 107.846942 134.456966) + (xy 107.805879 134.3745) (xy 107.756491 134.275316) (xy 107.756486 134.275308) (xy 107.622409 134.097761) @@ -34125,7 +23448,7 @@ (xy 106.842673 133.7095) (xy 106.620187 133.7095) (xy 106.40149 133.750382) - (xy 106.270294 133.801207) + (xy 106.299645 133.789837) (xy 106.194031 133.830752) (xy 106.194025 133.830754) (xy 106.004869 133.947874) @@ -34176,9 +23499,9 @@ (xy 104.838835 134.759426) (xy 104.83226 134.688464) (xy 104.832259 134.688462) - (xy 104.823248 134.656792) + (xy 104.794445 134.55556) (xy 104.771374 134.474472) - (xy 104.762657 134.456966) + (xy 104.721594 134.3745) (xy 104.672206 134.275316) (xy 104.672201 134.275308) (xy 104.538124 134.097761) @@ -34190,7 +23513,7 @@ (xy 103.758388 133.7095) (xy 103.535902 133.7095) (xy 103.317205 133.750382) - (xy 103.186009 133.801207) + (xy 103.21536 133.789837) (xy 103.109746 133.830752) (xy 103.10974 133.830754) (xy 102.920584 133.947874) @@ -34240,9 +23563,9 @@ (xy 101.75455 134.759426) (xy 101.747975 134.688464) (xy 101.747974 134.688462) - (xy 101.738963 134.656792) + (xy 101.71016 134.55556) (xy 101.687089 134.474472) - (xy 101.678372 134.456966) + (xy 101.637309 134.3745) (xy 101.587921 134.275316) (xy 101.587916 134.275308) (xy 101.453839 134.097761) @@ -34254,7 +23577,7 @@ (xy 100.674103 133.7095) (xy 100.451617 133.7095) (xy 100.23292 133.750382) - (xy 100.101724 133.801207) + (xy 100.131075 133.789837) (xy 100.025461 133.830752) (xy 100.025455 133.830754) (xy 99.836299 133.947874) @@ -34300,14 +23623,13 @@ (xy 98.700817 135.216226) (xy 98.667332 135.154903) (xy 98.665027 135.117104) - (xy 98.670413 135.058987) (xy 98.684218 134.91) - (xy 98.670265 134.759426) + (xy 98.684218 134.909999) (xy 98.66369 134.688464) (xy 98.663689 134.688462) - (xy 98.654678 134.656792) + (xy 98.625875 134.55556) (xy 98.602804 134.474472) - (xy 98.594087 134.456966) + (xy 98.553024 134.3745) (xy 98.503636 134.275316) (xy 98.503631 134.275308) (xy 98.369554 134.097761) @@ -34319,7 +23641,7 @@ (xy 97.589818 133.7095) (xy 97.367332 133.7095) (xy 97.148635 133.750382) - (xy 97.017439 133.801207) + (xy 97.04679 133.789837) (xy 96.941176 133.830752) (xy 96.94117 133.830754) (xy 96.752014 133.947874) @@ -34369,9 +23691,9 @@ (xy 95.58598 134.759426) (xy 95.579405 134.688464) (xy 95.579404 134.688462) - (xy 95.570393 134.656792) + (xy 95.54159 134.55556) (xy 95.518519 134.474472) - (xy 95.509802 134.456966) + (xy 95.468739 134.3745) (xy 95.419351 134.275316) (xy 95.419346 134.275308) (xy 95.285269 134.097761) @@ -34383,7 +23705,7 @@ (xy 94.505533 133.7095) (xy 94.283047 133.7095) (xy 94.06435 133.750382) - (xy 93.933154 133.801207) + (xy 93.962505 133.789837) (xy 93.856891 133.830752) (xy 93.856885 133.830754) (xy 93.667729 133.947874) @@ -34423,12 +23745,12 @@ (xy 101.179857 142.764767) (xy 101.114393 142.789184) (xy 101.105547 142.7895) - (xy 98.95223 142.7895) - (xy 98.885191 142.769815) - (xy 98.864549 142.753181) - (xy 89.556819 133.445451) - (xy 89.523334 133.384128) - (xy 89.5205 133.35777) + (xy 97.642229 142.7895) + (xy 97.57519 142.769815) + (xy 97.554548 142.753181) + (xy 89.556819 134.755451) + (xy 89.523334 134.694128) + (xy 89.5205 134.66777) (xy 89.5205 128.037827) (xy 93.194289 128.037827) (xy 93.19429 128.037844) @@ -35245,7 +24567,7 @@ (xy 87.549449 118.30623) (xy 87.541982 118.296201) (xy 87.535112 118.286972) - (xy 87.53511 118.28697) + (xy 87.516633 118.271466) (xy 87.495087 118.253386) (xy 87.491112 118.249744) (xy 87.48819 118.246822) @@ -35281,104 +24603,100 @@ (xy 87.05136 118.052765) (xy 86.975468 118.054974) (xy 86.973665 118.055) - (xy 86.716204 118.055) - (xy 86.649165 118.035315) - (xy 86.612396 117.998822) - (xy 86.590157 117.964783) - (xy 86.590149 117.964772) - (xy 86.437049 117.798463) - (xy 86.437048 117.798462) - (xy 86.437046 117.79846) - (xy 86.258649 117.659607) - (xy 86.258647 117.659606) - (xy 86.258646 117.659605) - (xy 86.258643 117.659603) - (xy 86.230833 117.644553) - (xy 86.181243 117.595333) - (xy 86.166136 117.527116) - (xy 86.190307 117.461561) - (xy 86.230835 117.426445) - (xy 86.258649 117.411393) - (xy 86.437046 117.27254) - (xy 86.590156 117.106219) - (xy 86.713802 116.916965) - (xy 86.804611 116.709941) - (xy 86.860107 116.490793) - (xy 86.878062 116.274105) - (xy 86.878775 116.265506) - (xy 86.878775 116.265493) - (xy 86.860107 116.04021) - (xy 86.860107 116.040207) - (xy 86.804611 115.821059) - (xy 86.713802 115.614035) - (xy 86.701272 115.594857) - (xy 86.624145 115.476805) - (xy 86.590156 115.424781) - (xy 86.590153 115.424778) - (xy 86.590149 115.424772) - (xy 86.437049 115.258463) - (xy 86.437048 115.258462) - (xy 86.437046 115.25846) - (xy 86.258649 115.119607) - (xy 86.258647 115.119606) - (xy 86.258646 115.119605) - (xy 86.258639 115.1196) - (xy 86.230836 115.104555) - (xy 86.181244 115.055337) - (xy 86.166135 114.98712) - (xy 86.190306 114.921564) - (xy 86.230836 114.886445) - (xy 86.258639 114.871399) - (xy 86.258642 114.871396) - (xy 86.258649 114.871393) - (xy 86.437046 114.73254) - (xy 86.439919 114.72942) - (xy 86.590149 114.566227) - (xy 86.59015 114.566225) - (xy 86.590156 114.566219) - (xy 86.713802 114.376965) - (xy 86.804611 114.169941) - (xy 86.860107 113.950793) - (xy 86.871891 113.808581) - (xy 86.878775 113.725506) - (xy 86.878775 113.725493) - (xy 86.860107 113.50021) - (xy 86.860107 113.500207) - (xy 86.804611 113.281059) - (xy 86.713802 113.074035) - (xy 86.667833 113.003675) - (xy 86.651979 112.979408) - (xy 86.590156 112.884781) - (xy 86.590153 112.884778) - (xy 86.590149 112.884772) - (xy 86.452755 112.735524) - (xy 86.421832 112.67287) - (xy 86.429692 112.603444) - (xy 86.473839 112.549288) - (xy 86.500652 112.535359) - (xy 86.615684 112.492455) - (xy 86.615693 112.49245) - (xy 86.730787 112.40629) - (xy 86.73079 112.406287) - (xy 86.81695 112.291193) - (xy 86.816954 112.291186) - (xy 86.867196 112.156479) - (xy 86.867198 112.156472) - (xy 86.873599 112.096944) - (xy 86.8736 112.096927) - (xy 86.8736 111.4355) - (xy 85.953196 111.4355) - (xy 85.976845 111.398701) - (xy 86.018 111.258539) - (xy 86.018 111.112461) - (xy 85.976845 110.972299) - (xy 85.953196 110.9355) - (xy 86.8736 110.9355) - (xy 86.8736 110.274072) - (xy 86.873599 110.274055) - (xy 86.867198 110.214527) - (xy 86.867196 110.21452) - (xy 86.839402 110.14) + (xy 86.966317 118.055) + (xy 86.899278 118.035315) + (xy 86.853523 117.982511) + (xy 86.843579 117.913353) + (xy 86.846112 117.900559) + (xy 86.860107 117.845295) + (xy 86.860107 117.845291) + (xy 86.878775 117.620006) + (xy 86.878775 117.619993) + (xy 86.860107 117.39471) + (xy 86.860107 117.394707) + (xy 86.804611 117.175559) + (xy 86.713802 116.968535) + (xy 86.704197 116.953834) + (xy 86.590157 116.779283) + (xy 86.590149 116.779272) + (xy 86.437049 116.612963) + (xy 86.437048 116.612962) + (xy 86.437046 116.61296) + (xy 86.258649 116.474107) + (xy 86.258647 116.474106) + (xy 86.258646 116.474105) + (xy 86.258643 116.474103) + (xy 86.230833 116.459053) + (xy 86.181243 116.409833) + (xy 86.166136 116.341616) + (xy 86.190307 116.276061) + (xy 86.230835 116.240945) + (xy 86.258649 116.225893) + (xy 86.437046 116.08704) + (xy 86.590156 115.920719) + (xy 86.713802 115.731465) + (xy 86.804611 115.524441) + (xy 86.860107 115.305293) + (xy 86.869985 115.186082) + (xy 86.878775 115.080006) + (xy 86.878775 115.079993) + (xy 86.862202 114.879993) + (xy 86.860107 114.854707) + (xy 86.804611 114.635559) + (xy 86.713802 114.428535) + (xy 86.590156 114.239281) + (xy 86.590153 114.239278) + (xy 86.590149 114.239272) + (xy 86.437049 114.072963) + (xy 86.437048 114.072962) + (xy 86.437046 114.07296) + (xy 86.258649 113.934107) + (xy 86.258647 113.934106) + (xy 86.258646 113.934105) + (xy 86.258643 113.934103) + (xy 86.230833 113.919053) + (xy 86.181243 113.869833) + (xy 86.166136 113.801616) + (xy 86.190307 113.736061) + (xy 86.230835 113.700945) + (xy 86.258649 113.685893) + (xy 86.437046 113.54704) + (xy 86.55812 113.415519) + (xy 86.590149 113.380727) + (xy 86.59015 113.380725) + (xy 86.590156 113.380719) + (xy 86.713802 113.191465) + (xy 86.804611 112.984441) + (xy 86.860107 112.765293) + (xy 86.871161 112.631888) + (xy 86.878775 112.540006) + (xy 86.878775 112.539993) + (xy 86.862202 112.339993) + (xy 86.860107 112.314707) + (xy 86.804611 112.095559) + (xy 86.713802 111.888535) + (xy 86.695454 111.860452) + (xy 86.590157 111.699283) + (xy 86.590149 111.699272) + (xy 86.452755 111.550024) + (xy 86.421832 111.48737) + (xy 86.429692 111.417944) + (xy 86.473839 111.363788) + (xy 86.500652 111.349859) + (xy 86.615684 111.306955) + (xy 86.615693 111.30695) + (xy 86.730787 111.22079) + (xy 86.73079 111.220787) + (xy 86.81695 111.105693) + (xy 86.816954 111.105686) + (xy 86.867196 110.970979) + (xy 86.867198 110.970972) + (xy 86.873599 110.911444) + (xy 86.8736 110.911427) + (xy 86.8736 110.25) + (xy 85.953196 110.25) + (xy 85.976845 110.213201) + (xy 85.998339 110.14) (xy 93.2 110.14) (xy 93.2 110.637844) (xy 93.206401 110.697372) @@ -35396,12 +24714,10 @@ (xy 94.15 111.09) (xy 94.15 110.14) (xy 93.2 110.14) - (xy 86.839402 110.14) - (xy 86.816954 110.079813) - (xy 86.81695 110.079806) - (xy 86.73079 109.964712) - (xy 86.730787 109.964709) - (xy 86.670132 109.919302) + (xy 85.998339 110.14) + (xy 86.018 110.073039) + (xy 86.018 109.926961) + (xy 86.015751 109.919302) (xy 94.046372 109.919302) (xy 94.075047 110.032538) (xy 94.138936 110.130327) @@ -35871,347 +25187,11 @@ (xy 94.10294 109.695921) (xy 94.056018 109.802892) (xy 94.046372 109.919302) - (xy 86.670132 109.919302) - (xy 86.615693 109.878549) - (xy 86.615686 109.878545) - (xy 86.480979 109.828303) - (xy 86.480972 109.828301) - (xy 86.421444 109.8219) - (xy 85.76 109.8219) - (xy 85.76 110.741202) - (xy 85.654592 110.693065) - (xy 85.546334 110.6775) - (xy 85.473666 110.6775) - (xy 85.365408 110.693065) - (xy 85.26 110.741202) - (xy 85.26 109.8219) - (xy 84.598555 109.8219) - (xy 84.539027 109.828301) - (xy 84.53902 109.828303) - (xy 84.404313 109.878545) - (xy 84.404306 109.878549) - (xy 84.289212 109.964709) - (xy 84.289209 109.964712) - (xy 84.203049 110.079806) - (xy 84.203045 110.079813) - (xy 84.152803 110.21452) - (xy 84.152801 110.214527) - (xy 84.1464 110.274055) - (xy 84.1464 110.9355) - (xy 85.066804 110.9355) - (xy 85.043155 110.972299) - (xy 85.002 111.112461) - (xy 85.002 111.258539) - (xy 85.043155 111.398701) - (xy 85.066804 111.4355) - (xy 84.1464 111.4355) - (xy 84.1464 112.096944) - (xy 84.152801 112.156472) - (xy 84.152803 112.156479) - (xy 84.203045 112.291186) - (xy 84.203049 112.291193) - (xy 84.289209 112.406287) - (xy 84.289212 112.40629) - (xy 84.404306 112.49245) - (xy 84.404313 112.492454) - (xy 84.519348 112.535359) - (xy 84.575282 112.57723) - (xy 84.599699 112.642694) - (xy 84.584848 112.710967) - (xy 84.567245 112.735524) - (xy 84.429845 112.884779) - (xy 84.429842 112.884783) - (xy 84.306198 113.074033) - (xy 84.215388 113.28106) - (xy 84.159892 113.50021) - (xy 84.141225 113.725493) - (xy 84.141225 113.725506) - (xy 84.159892 113.950789) - (xy 84.215388 114.169939) - (xy 84.306198 114.376966) - (xy 84.429842 114.566216) - (xy 84.42985 114.566227) - (xy 84.582949 114.732535) - (xy 84.582954 114.73254) - (xy 84.761351 114.871393) - (xy 84.789165 114.886445) - (xy 84.838755 114.935665) - (xy 84.853863 115.003882) - (xy 84.829692 115.069437) - (xy 84.789165 115.104554) - (xy 84.787801 115.105293) - (xy 84.761352 115.119606) - (xy 84.582955 115.258459) - (xy 84.58295 115.258463) - (xy 84.42985 115.424772) - (xy 84.429842 115.424783) - (xy 84.306198 115.614033) - (xy 84.215388 115.82106) - (xy 84.159892 116.04021) - (xy 84.141225 116.265493) - (xy 84.141225 116.265506) - (xy 84.159892 116.490789) - (xy 84.215388 116.709939) - (xy 84.306198 116.916966) - (xy 84.429842 117.106216) - (xy 84.42985 117.106227) - (xy 84.558379 117.245845) - (xy 84.582954 117.27254) - (xy 84.761351 117.411393) - (xy 84.789159 117.426442) - (xy 84.789165 117.426445) - (xy 84.838755 117.475665) - (xy 84.853863 117.543882) - (xy 84.829692 117.609437) - (xy 84.789165 117.644554) - (xy 84.787801 117.645293) - (xy 84.761352 117.659606) - (xy 84.582955 117.798459) - (xy 84.58295 117.798463) - (xy 84.42985 117.964772) - (xy 84.429842 117.964783) - (xy 84.306198 118.154033) - (xy 84.215388 118.36106) - (xy 84.159892 118.58021) - (xy 84.141225 118.805493) - (xy 84.141225 118.805506) - (xy 84.159892 119.030789) - (xy 84.215388 119.249939) - (xy 84.306198 119.456966) - (xy 84.429842 119.646216) - (xy 84.42985 119.646227) - (xy 84.58295 119.812536) - (xy 84.582954 119.81254) - (xy 84.761351 119.951393) - (xy 84.960169 120.058988) - (xy 84.960172 120.058989) - (xy 85.173982 120.13239) - (xy 85.173984 120.13239) - (xy 85.173986 120.132391) - (xy 85.396967 120.1696) - (xy 85.396968 120.1696) - (xy 85.623032 120.1696) - (xy 85.623033 120.1696) - (xy 85.846014 120.132391) - (xy 86.059831 120.058988) - (xy 86.258649 119.951393) - (xy 86.437046 119.81254) - (xy 86.586364 119.650337) - (xy 86.646249 119.614349) - (xy 86.716087 119.616449) - (xy 86.765273 119.646641) - (xy 87.983181 120.864548) - (xy 88.016666 120.925871) - (xy 88.0195 120.952229) - (xy 88.0195 132.931) - (xy 87.999815 132.998039) - (xy 87.947011 133.043794) - (xy 87.8955 133.055) - (xy 86.716204 133.055) - (xy 86.649165 133.035315) - (xy 86.612396 132.998822) - (xy 86.590156 132.964781) - (xy 86.590153 132.964778) - (xy 86.590149 132.964772) - (xy 86.437049 132.798463) - (xy 86.437048 132.798462) - (xy 86.437046 132.79846) - (xy 86.258649 132.659607) - (xy 86.258647 132.659606) - (xy 86.258646 132.659605) - (xy 86.258639 132.6596) - (xy 86.230836 132.644555) - (xy 86.181244 132.595337) - (xy 86.166135 132.52712) - (xy 86.190306 132.461564) - (xy 86.230836 132.426445) - (xy 86.258639 132.411399) - (xy 86.258642 132.411396) - (xy 86.258649 132.411393) - (xy 86.437046 132.27254) - (xy 86.590156 132.106219) - (xy 86.713802 131.916965) - (xy 86.804611 131.709941) - (xy 86.860107 131.490793) - (xy 86.873417 131.330165) - (xy 86.878775 131.265506) - (xy 86.878775 131.265493) - (xy 86.860107 131.04021) - (xy 86.860107 131.040207) - (xy 86.804611 130.821059) - (xy 86.713802 130.614035) - (xy 86.590156 130.424781) - (xy 86.590153 130.424778) - (xy 86.590149 130.424772) - (xy 86.437049 130.258463) - (xy 86.437048 130.258462) - (xy 86.437046 130.25846) - (xy 86.258649 130.119607) - (xy 86.258647 130.119606) - (xy 86.258646 130.119605) - (xy 86.258643 130.119603) - (xy 86.230833 130.104553) - (xy 86.181243 130.055333) - (xy 86.166136 129.987116) - (xy 86.190307 129.921561) - (xy 86.230833 129.886446) - (xy 86.258649 129.871393) - (xy 86.437046 129.73254) - (xy 86.570668 129.587389) - (xy 86.590149 129.566227) - (xy 86.59015 129.566225) - (xy 86.590156 129.566219) - (xy 86.713802 129.376965) - (xy 86.804611 129.169941) - (xy 86.860107 128.950793) - (xy 86.873417 128.790161) - (xy 86.878775 128.725506) - (xy 86.878775 128.725493) - (xy 86.860107 128.50021) - (xy 86.860107 128.500207) - (xy 86.804611 128.281059) - (xy 86.713802 128.074035) - (xy 86.665432 128) - (xy 86.590157 127.884783) - (xy 86.590149 127.884772) - (xy 86.452755 127.735524) - (xy 86.421832 127.67287) - (xy 86.429692 127.603444) - (xy 86.473839 127.549288) - (xy 86.500652 127.535359) - (xy 86.615684 127.492455) - (xy 86.615693 127.49245) - (xy 86.730787 127.40629) - (xy 86.73079 127.406287) - (xy 86.81695 127.291193) - (xy 86.816954 127.291186) - (xy 86.867196 127.156479) - (xy 86.867198 127.156472) - (xy 86.873599 127.096944) - (xy 86.8736 127.096927) - (xy 86.8736 126.4355) - (xy 85.953196 126.4355) - (xy 85.976845 126.398701) - (xy 86.018 126.258539) - (xy 86.018 126.112461) - (xy 85.976845 125.972299) - (xy 85.953196 125.9355) - (xy 86.8736 125.9355) - (xy 86.8736 125.274072) - (xy 86.873599 125.274055) - (xy 86.867198 125.214527) - (xy 86.867196 125.21452) - (xy 86.816954 125.079813) - (xy 86.81695 125.079806) - (xy 86.73079 124.964712) - (xy 86.730787 124.964709) - (xy 86.615693 124.878549) - (xy 86.615686 124.878545) - (xy 86.480979 124.828303) - (xy 86.480972 124.828301) - (xy 86.421444 124.8219) - (xy 85.76 124.8219) - (xy 85.76 125.741202) - (xy 85.654592 125.693065) - (xy 85.546334 125.6775) - (xy 85.473666 125.6775) - (xy 85.365408 125.693065) - (xy 85.26 125.741202) - (xy 85.26 124.8219) - (xy 84.598555 124.8219) - (xy 84.539027 124.828301) - (xy 84.53902 124.828303) - (xy 84.404313 124.878545) - (xy 84.404306 124.878549) - (xy 84.289212 124.964709) - (xy 84.289209 124.964712) - (xy 84.203049 125.079806) - (xy 84.203045 125.079813) - (xy 84.152803 125.21452) - (xy 84.152801 125.214527) - (xy 84.1464 125.274055) - (xy 84.1464 125.9355) - (xy 85.066804 125.9355) - (xy 85.043155 125.972299) - (xy 85.002 126.112461) - (xy 85.002 126.258539) - (xy 85.043155 126.398701) - (xy 85.066804 126.4355) - (xy 84.1464 126.4355) - (xy 84.1464 127.096944) - (xy 84.152801 127.156472) - (xy 84.152803 127.156479) - (xy 84.203045 127.291186) - (xy 84.203049 127.291193) - (xy 84.289209 127.406287) - (xy 84.289212 127.40629) - (xy 84.404306 127.49245) - (xy 84.404313 127.492454) - (xy 84.519348 127.535359) - (xy 84.575282 127.57723) - (xy 84.599699 127.642694) - (xy 84.584848 127.710967) - (xy 84.567245 127.735524) - (xy 84.429845 127.884779) - (xy 84.429842 127.884783) - (xy 84.306198 128.074033) - (xy 84.215388 128.28106) - (xy 84.159892 128.50021) - (xy 84.141225 128.725493) - (xy 84.141225 128.725506) - (xy 84.159892 128.950789) - (xy 84.215388 129.169939) - (xy 84.306198 129.376966) - (xy 84.429842 129.566216) - (xy 84.42985 129.566227) - (xy 84.582833 129.732409) - (xy 84.582954 129.73254) - (xy 84.761351 129.871393) - (xy 84.761353 129.871394) - (xy 84.761356 129.871396) - (xy 84.770803 129.876508) - (xy 84.789163 129.886444) - (xy 84.838754 129.935661) - (xy 84.853864 130.003878) - (xy 84.829694 130.069434) - (xy 84.789167 130.104552) - (xy 84.761361 130.1196) - (xy 84.761353 130.119605) - (xy 84.582955 130.258459) - (xy 84.58295 130.258463) - (xy 84.42985 130.424772) - (xy 84.429842 130.424783) - (xy 84.306198 130.614033) - (xy 84.215388 130.82106) - (xy 84.159892 131.04021) - (xy 84.141225 131.265493) - (xy 84.141225 131.265506) - (xy 84.159892 131.490789) - (xy 84.215388 131.709939) - (xy 84.306198 131.916966) - (xy 84.429842 132.106216) - (xy 84.42985 132.106227) - (xy 84.552897 132.23989) - (xy 84.582954 132.27254) - (xy 84.761351 132.411393) - (xy 84.789165 132.426445) - (xy 84.838755 132.475665) - (xy 84.853863 132.543882) - (xy 84.829692 132.609437) - (xy 84.789165 132.644554) - (xy 84.780866 132.649045) - (xy 84.761352 132.659606) - (xy 84.582955 132.798459) - (xy 84.58295 132.798463) - (xy 84.42985 132.964772) - (xy 84.429842 132.964783) - (xy 84.306198 133.154033) - (xy 84.215388 133.36106) - (xy 84.159892 133.58021) - (xy 84.141225 133.805493) - (xy 84.141225 133.805506) - (xy 81 133.805506) - (xy 81 109.64) + (xy 86.015751 109.919302) + (xy 85.976845 109.786799) + (xy 85.953196 109.75) + (xy 86.8736 109.75) + (xy 86.8736 109.64) (xy 93.2 109.64) (xy 94.15 109.64) (xy 94.15 108.69) @@ -36495,70 +25475,3800 @@ (xy 93.206401 109.082627) (xy 93.2 109.142155) (xy 93.2 109.64) - (xy 81 109.64) - (xy 81 104.890004) - (xy 82.024732 104.890004) - (xy 82.043777 105.144154) - (xy 82.10049 105.39263) - (xy 82.100492 105.392637) - (xy 82.193608 105.62989) - (xy 82.220536 105.676531) - (xy 82.321041 105.850612) - (xy 82.47995 106.049877) - (xy 82.666783 106.223232) - (xy 82.877366 106.366805) - (xy 82.877371 106.366807) - (xy 82.877372 106.366808) - (xy 82.877373 106.366809) - (xy 82.986338 106.419283) - (xy 83.106992 106.477387) - (xy 83.106993 106.477387) - (xy 83.106996 106.477389) - (xy 83.350542 106.552513) - (xy 83.602565 106.5905) - (xy 83.857435 106.5905) - (xy 84.109458 106.552513) - (xy 84.353004 106.477389) - (xy 84.582634 106.366805) - (xy 84.793217 106.223232) - (xy 84.98005 106.049877) - (xy 85.138959 105.850612) - (xy 85.266393 105.629888) - (xy 85.359508 105.392637) - (xy 85.416222 105.144157) - (xy 85.428763 104.976805) - (xy 85.435268 104.890004) - (xy 85.435268 104.889995) - (xy 85.416222 104.635845) - (xy 85.397034 104.551778) - (xy 85.359508 104.387363) - (xy 85.266393 104.150112) - (xy 85.138959 103.929388) - (xy 84.98005 103.730123) - (xy 84.793217 103.556768) - (xy 84.582634 103.413195) - (xy 84.58263 103.413193) - (xy 84.582627 103.413191) - (xy 84.582626 103.41319) - (xy 84.353006 103.302612) - (xy 84.353008 103.302612) - (xy 84.20997 103.258491) - (xy 84.151711 103.219921) - (xy 84.123553 103.155976) - (xy 84.134437 103.086959) - (xy 84.180906 103.034782) - (xy 84.20997 103.021509) - (xy 84.353004 102.977389) - (xy 84.582634 102.866805) - (xy 84.793217 102.723232) - (xy 84.98005 102.549877) - (xy 85.138959 102.350612) - (xy 85.266393 102.129888) - (xy 85.359508 101.892637) - (xy 85.416222 101.644157) - (xy 85.435268 101.39) - (xy 85.433416 101.365289) - (xy 85.432817 101.3573) + (xy 86.8736 109.64) + (xy 86.8736 109.088572) + (xy 86.873599 109.088555) + (xy 86.867198 109.029027) + (xy 86.867196 109.02902) + (xy 86.816954 108.894313) + (xy 86.81695 108.894306) + (xy 86.73079 108.779212) + (xy 86.730787 108.779209) + (xy 86.615693 108.693049) + (xy 86.615686 108.693045) + (xy 86.480979 108.642803) + (xy 86.480972 108.642801) + (xy 86.421444 108.6364) + (xy 85.76 108.6364) + (xy 85.76 109.555702) + (xy 85.654592 109.507565) + (xy 85.546334 109.492) + (xy 85.473666 109.492) + (xy 85.365408 109.507565) + (xy 85.26 109.555702) + (xy 85.26 108.6364) + (xy 84.598555 108.6364) + (xy 84.539027 108.642801) + (xy 84.53902 108.642803) + (xy 84.404313 108.693045) + (xy 84.404306 108.693049) + (xy 84.289212 108.779209) + (xy 84.289209 108.779212) + (xy 84.203049 108.894306) + (xy 84.203045 108.894313) + (xy 84.152803 109.02902) + (xy 84.152801 109.029027) + (xy 84.1464 109.088555) + (xy 84.1464 109.75) + (xy 85.066804 109.75) + (xy 85.043155 109.786799) + (xy 85.002 109.926961) + (xy 85.002 110.073039) + (xy 85.043155 110.213201) + (xy 85.066804 110.25) + (xy 84.1464 110.25) + (xy 84.1464 110.911444) + (xy 84.152801 110.970972) + (xy 84.152803 110.970979) + (xy 84.203045 111.105686) + (xy 84.203049 111.105693) + (xy 84.289209 111.220787) + (xy 84.289212 111.22079) + (xy 84.404306 111.30695) + (xy 84.404313 111.306954) + (xy 84.519348 111.349859) + (xy 84.575282 111.39173) + (xy 84.599699 111.457194) + (xy 84.584848 111.525467) + (xy 84.567245 111.550024) + (xy 84.429845 111.699279) + (xy 84.429842 111.699283) + (xy 84.306198 111.888533) + (xy 84.215388 112.09556) + (xy 84.159892 112.31471) + (xy 84.141225 112.539993) + (xy 84.141225 112.540006) + (xy 84.159892 112.765289) + (xy 84.215388 112.984439) + (xy 84.306198 113.191466) + (xy 84.429842 113.380716) + (xy 84.42985 113.380727) + (xy 84.58295 113.547036) + (xy 84.582954 113.54704) + (xy 84.761351 113.685893) + (xy 84.789159 113.700942) + (xy 84.789165 113.700945) + (xy 84.838755 113.750165) + (xy 84.853863 113.818382) + (xy 84.829692 113.883937) + (xy 84.789165 113.919055) + (xy 84.761352 113.934106) + (xy 84.582955 114.072959) + (xy 84.58295 114.072963) + (xy 84.42985 114.239272) + (xy 84.429842 114.239283) + (xy 84.306198 114.428533) + (xy 84.215388 114.63556) + (xy 84.159892 114.85471) + (xy 84.141225 115.079993) + (xy 84.141225 115.080006) + (xy 84.159892 115.305289) + (xy 84.215388 115.524439) + (xy 84.306198 115.731466) + (xy 84.429842 115.920716) + (xy 84.42985 115.920727) + (xy 84.58295 116.087036) + (xy 84.582954 116.08704) + (xy 84.761351 116.225893) + (xy 84.789159 116.240942) + (xy 84.789165 116.240945) + (xy 84.838755 116.290165) + (xy 84.853863 116.358382) + (xy 84.829692 116.423937) + (xy 84.789165 116.459055) + (xy 84.761352 116.474106) + (xy 84.582955 116.612959) + (xy 84.58295 116.612963) + (xy 84.42985 116.779272) + (xy 84.429842 116.779283) + (xy 84.306198 116.968533) + (xy 84.215388 117.17556) + (xy 84.159892 117.39471) + (xy 84.141225 117.619993) + (xy 84.141225 117.620006) + (xy 84.159892 117.845289) + (xy 84.215388 118.064439) + (xy 84.306198 118.271466) + (xy 84.429842 118.460716) + (xy 84.42985 118.460727) + (xy 84.58295 118.627036) + (xy 84.582954 118.62704) + (xy 84.674614 118.698382) + (xy 84.709154 118.725266) + (xy 84.749967 118.781976) + (xy 84.756781 118.830326) + (xy 84.755668 118.84943) + (xy 84.755668 118.849433) + (xy 84.780573 118.990667) + (xy 84.786135 119.022211) + (xy 84.855623 119.183304) + (xy 84.855624 119.183306) + (xy 84.855626 119.183309) + (xy 84.944764 119.303041) + (xy 84.96039 119.32403) + (xy 85.094786 119.436802) + (xy 85.151682 119.465376) + (xy 85.251562 119.515538) + (xy 85.251563 119.515538) + (xy 85.251567 119.51554) + (xy 85.422279 119.556) + (xy 86.62327 119.556) + (xy 86.690309 119.575685) + (xy 86.710951 119.592319) + (xy 87.983181 120.864548) + (xy 88.016666 120.925871) + (xy 88.0195 120.952229) + (xy 88.0195 134.1855) + (xy 87.999815 134.252539) + (xy 87.947011 134.298294) + (xy 87.8955 134.3095) + (xy 86.745405 134.3095) + (xy 86.678366 134.289815) + (xy 86.641597 134.253322) + (xy 86.580157 134.159283) + (xy 86.580149 134.159272) + (xy 86.427049 133.992963) + (xy 86.427048 133.992962) + (xy 86.427046 133.99296) + (xy 86.248649 133.854107) + (xy 86.248647 133.854106) + (xy 86.248646 133.854105) + (xy 86.248639 133.8541) + (xy 86.220836 133.839055) + (xy 86.171244 133.789837) + (xy 86.156135 133.72162) + (xy 86.180306 133.656064) + (xy 86.220836 133.620945) + (xy 86.248639 133.605899) + (xy 86.248642 133.605896) + (xy 86.248649 133.605893) + (xy 86.427046 133.46704) + (xy 86.553274 133.329921) + (xy 86.580149 133.300727) + (xy 86.58015 133.300725) + (xy 86.580156 133.300719) + (xy 86.703802 133.111465) + (xy 86.794611 132.904441) + (xy 86.850107 132.685293) + (xy 86.86655 132.486851) + (xy 86.868775 132.460006) + (xy 86.868775 132.459993) + (xy 86.850107 132.23471) + (xy 86.850107 132.234707) + (xy 86.794611 132.015559) + (xy 86.703802 131.808535) + (xy 86.580156 131.619281) + (xy 86.580153 131.619278) + (xy 86.580149 131.619272) + (xy 86.427049 131.452963) + (xy 86.427048 131.452962) + (xy 86.427046 131.45296) + (xy 86.248649 131.314107) + (xy 86.248647 131.314106) + (xy 86.248646 131.314105) + (xy 86.248643 131.314103) + (xy 86.220833 131.299053) + (xy 86.171243 131.249833) + (xy 86.156136 131.181616) + (xy 86.180307 131.116061) + (xy 86.220835 131.080945) + (xy 86.248649 131.065893) + (xy 86.427046 130.92704) + (xy 86.570264 130.771465) + (xy 86.580149 130.760727) + (xy 86.58015 130.760725) + (xy 86.580156 130.760719) + (xy 86.703802 130.571465) + (xy 86.794611 130.364441) + (xy 86.850107 130.145293) + (xy 86.860224 130.023195) + (xy 86.868775 129.920006) + (xy 86.868775 129.919993) + (xy 86.850587 129.7005) + (xy 86.850107 129.694707) + (xy 86.794611 129.475559) + (xy 86.703802 129.268535) + (xy 86.580156 129.079281) + (xy 86.580153 129.079278) + (xy 86.580149 129.079272) + (xy 86.442755 128.930024) + (xy 86.411832 128.86737) + (xy 86.419692 128.797944) + (xy 86.463839 128.743788) + (xy 86.490652 128.729859) + (xy 86.605684 128.686955) + (xy 86.605693 128.68695) + (xy 86.720787 128.60079) + (xy 86.72079 128.600787) + (xy 86.80695 128.485693) + (xy 86.806954 128.485686) + (xy 86.857196 128.350979) + (xy 86.857198 128.350972) + (xy 86.863599 128.291444) + (xy 86.8636 128.291427) + (xy 86.8636 127.63) + (xy 85.943196 127.63) + (xy 85.966845 127.593201) + (xy 86.008 127.453039) + (xy 86.008 127.306961) + (xy 85.966845 127.166799) + (xy 85.943196 127.13) + (xy 86.8636 127.13) + (xy 86.8636 126.468572) + (xy 86.863599 126.468555) + (xy 86.857198 126.409027) + (xy 86.857196 126.40902) + (xy 86.806954 126.274313) + (xy 86.80695 126.274306) + (xy 86.72079 126.159212) + (xy 86.720787 126.159209) + (xy 86.605693 126.073049) + (xy 86.605686 126.073045) + (xy 86.470979 126.022803) + (xy 86.470972 126.022801) + (xy 86.411444 126.0164) + (xy 85.75 126.0164) + (xy 85.75 126.935702) + (xy 85.644592 126.887565) + (xy 85.536334 126.872) + (xy 85.463666 126.872) + (xy 85.355408 126.887565) + (xy 85.25 126.935702) + (xy 85.25 126.0164) + (xy 84.588555 126.0164) + (xy 84.529027 126.022801) + (xy 84.52902 126.022803) + (xy 84.394313 126.073045) + (xy 84.394306 126.073049) + (xy 84.279212 126.159209) + (xy 84.279209 126.159212) + (xy 84.193049 126.274306) + (xy 84.193045 126.274313) + (xy 84.142803 126.40902) + (xy 84.142801 126.409027) + (xy 84.1364 126.468555) + (xy 84.1364 127.13) + (xy 85.056804 127.13) + (xy 85.033155 127.166799) + (xy 84.992 127.306961) + (xy 84.992 127.453039) + (xy 85.033155 127.593201) + (xy 85.056804 127.63) + (xy 84.1364 127.63) + (xy 84.1364 128.291444) + (xy 84.142801 128.350972) + (xy 84.142803 128.350979) + (xy 84.193045 128.485686) + (xy 84.193049 128.485693) + (xy 84.279209 128.600787) + (xy 84.279212 128.60079) + (xy 84.394306 128.68695) + (xy 84.394313 128.686954) + (xy 84.509348 128.729859) + (xy 84.565282 128.77173) + (xy 84.589699 128.837194) + (xy 84.574848 128.905467) + (xy 84.557245 128.930024) + (xy 84.419845 129.079279) + (xy 84.419842 129.079283) + (xy 84.296198 129.268533) + (xy 84.205388 129.47556) + (xy 84.149892 129.69471) + (xy 84.131225 129.919993) + (xy 84.131225 129.920006) + (xy 84.149892 130.145289) + (xy 84.205388 130.364439) + (xy 84.296198 130.571466) + (xy 84.419842 130.760716) + (xy 84.41985 130.760727) + (xy 84.53444 130.885203) + (xy 84.572954 130.92704) + (xy 84.751351 131.065893) + (xy 84.779159 131.080942) + (xy 84.779165 131.080945) + (xy 84.828755 131.130165) + (xy 84.843863 131.198382) + (xy 84.819692 131.263937) + (xy 84.779165 131.299055) + (xy 84.751352 131.314106) + (xy 84.572955 131.452959) + (xy 84.57295 131.452963) + (xy 84.41985 131.619272) + (xy 84.419842 131.619283) + (xy 84.296198 131.808533) + (xy 84.205388 132.01556) + (xy 84.149892 132.23471) + (xy 84.131225 132.459993) + (xy 84.131225 132.460006) + (xy 84.149892 132.685289) + (xy 84.205388 132.904439) + (xy 84.296198 133.111466) + (xy 84.419842 133.300716) + (xy 84.41985 133.300727) + (xy 84.57295 133.467036) + (xy 84.572954 133.46704) + (xy 84.751351 133.605893) + (xy 84.779165 133.620945) + (xy 84.828755 133.670165) + (xy 84.843863 133.738382) + (xy 84.819692 133.803937) + (xy 84.779165 133.839055) + (xy 84.751352 133.854106) + (xy 84.572955 133.992959) + (xy 84.57295 133.992963) + (xy 84.41985 134.159272) + (xy 84.419842 134.159283) + (xy 84.296198 134.348533) + (xy 84.205388 134.55556) + (xy 84.149892 134.77471) + (xy 84.131225 134.999993) + (xy 84.131225 135.000006) + (xy 84.149892 135.225289) + (xy 84.205388 135.444439) + (xy 84.296198 135.651466) + (xy 84.419842 135.840716) + (xy 84.41985 135.840727) + (xy 84.57295 136.007036) + (xy 84.572954 136.00704) + (xy 84.751351 136.145893) + (xy 84.950169 136.253488) + (xy 84.950172 136.253489) + (xy 85.163982 136.32689) + (xy 85.163984 136.32689) + (xy 85.163986 136.326891) + (xy 85.386967 136.3641) + (xy 85.386968 136.3641) + (xy 85.613032 136.3641) + (xy 85.613033 136.3641) + (xy 85.836014 136.326891) + (xy 86.049831 136.253488) + (xy 86.248649 136.145893) + (xy 86.427046 136.00704) + (xy 86.496285 135.931826) + (xy 86.571137 135.850517) + (xy 86.631024 135.814526) + (xy 86.662366 135.8105) + (xy 88.43777 135.8105) + (xy 88.504809 135.830185) + (xy 88.525451 135.846819) + (xy 96.704267 144.025634) + (xy 96.716048 144.039266) + (xy 96.717222 144.040843) + (xy 96.73039 144.05853) + (xy 96.77042 144.092119) + (xy 96.774392 144.095759) + (xy 96.777313 144.09868) + (xy 96.780223 144.101591) + (xy 96.805246 144.121375) + (xy 96.806628 144.122501) + (xy 96.844259 144.154078) + (xy 96.88296 144.212249) + (xy 96.884068 144.28211) + (xy 96.84723 144.34148) + (xy 96.840717 144.346918) + (xy 96.832952 144.352961) + (xy 96.83295 144.352963) + (xy 96.67985 144.519272) + (xy 96.679842 144.519283) + (xy 96.556198 144.708533) + (xy 96.465388 144.91556) + (xy 96.409892 145.13471) + (xy 96.391225 145.359993) + (xy 96.391225 145.360006) + (xy 96.409892 145.585289) + (xy 96.465388 145.804439) + (xy 96.556198 146.011466) + (xy 96.679842 146.200716) + (xy 96.67985 146.200727) + (xy 96.83295 146.367036) + (xy 96.832954 146.36704) + (xy 97.011351 146.505893) + (xy 97.210169 146.613488) + (xy 97.210172 146.613489) + (xy 97.423982 146.68689) + (xy 97.423984 146.68689) + (xy 97.423986 146.686891) + (xy 97.646967 146.7241) + (xy 97.646968 146.7241) + (xy 97.873032 146.7241) + (xy 97.873033 146.7241) + (xy 98.096014 146.686891) + (xy 98.309831 146.613488) + (xy 98.508649 146.505893) + (xy 98.687046 146.36704) + (xy 98.840156 146.200719) + (xy 98.926193 146.069028) + (xy 98.979338 146.023675) + (xy 99.048569 146.014251) + (xy 99.111905 146.043753) + (xy 99.133804 146.069025) + (xy 99.219844 146.200719) + (xy 99.219849 146.200724) + (xy 99.21985 146.200727) + (xy 99.37295 146.367036) + (xy 99.372954 146.36704) + (xy 99.551351 146.505893) + (xy 99.750169 146.613488) + (xy 99.750172 146.613489) + (xy 99.963982 146.68689) + (xy 99.963984 146.68689) + (xy 99.963986 146.686891) + (xy 100.186967 146.7241) + (xy 100.186968 146.7241) + (xy 100.413032 146.7241) + (xy 100.413033 146.7241) + (xy 100.636014 146.686891) + (xy 100.849831 146.613488) + (xy 101.048649 146.505893) + (xy 101.227046 146.36704) + (xy 101.380156 146.200719) + (xy 101.466193 146.069028) + (xy 101.519338 146.023675) + (xy 101.588569 146.014251) + (xy 101.651905 146.043753) + (xy 101.673804 146.069025) + (xy 101.759844 146.200719) + (xy 101.759849 146.200724) + (xy 101.75985 146.200727) + (xy 101.91295 146.367036) + (xy 101.912954 146.36704) + (xy 101.912957 146.367042) + (xy 101.91296 146.367045) + (xy 102.01196 146.4441) + (xy 102.052773 146.50081) + (xy 102.056448 146.570583) + (xy 102.021816 146.631266) + (xy 101.959875 146.663593) + (xy 101.954792 146.664392) + (xy 101.95324 146.66476) + (xy 101.881885 146.690729) + (xy 101.880185 146.69132) + (xy 101.808168 146.715184) + (xy 101.801626 146.718235) + (xy 101.801601 146.718183) + (xy 101.794808 146.721471) + (xy 101.794834 146.721522) + (xy 101.788386 146.72476) + (xy 101.724976 146.766465) + (xy 101.723457 146.767432) + (xy 101.658844 146.807288) + (xy 101.653177 146.811769) + (xy 101.653141 146.811723) + (xy 101.647298 146.816484) + (xy 101.647335 146.816528) + (xy 101.641809 146.821164) + (xy 101.589729 146.876364) + (xy 101.588474 146.877657) + (xy 93.841716 154.624414) + (xy 93.780393 154.657899) + (xy 93.717485 154.655224) + (xy 93.619466 154.624989) + (xy 93.619462 154.624988) + (xy 93.619458 154.624987) + (xy 93.498231 154.606714) + (xy 93.36744 154.587) + (xy 93.367435 154.587) + (xy 93.112565 154.587) + (xy 93.112559 154.587) + (xy 92.955609 154.610657) + (xy 92.860542 154.624987) + (xy 92.860538 154.624988) + (xy 92.860539 154.624988) + (xy 92.860533 154.624989) + (xy 92.616992 154.700112) + (xy 92.387373 154.81069) + (xy 92.387372 154.810691) + (xy 92.176782 154.954268) + (xy 91.989952 155.127621) + (xy 91.98995 155.127623) + (xy 91.831041 155.326888) + (xy 91.703608 155.547609) + (xy 91.610492 155.784862) + (xy 91.609122 155.789304) + (xy 91.607999 155.788957) + (xy 91.576509 155.84523) + (xy 91.514841 155.878076) + (xy 91.445205 155.872368) + (xy 91.389709 155.829918) + (xy 91.371134 155.789229) + (xy 91.3704 155.789456) + (xy 91.369026 155.785005) + (xy 91.275941 155.547828) + (xy 91.275942 155.547828) + (xy 91.148544 155.327171) + (xy 91.106546 155.274506) + (xy 90.302772 156.078279) + (xy 90.264099 155.984912) + (xy 90.167925 155.859575) + (xy 90.042588 155.763401) + (xy 89.94922 155.724727) + (xy 90.753185 154.920761) + (xy 90.592377 154.811124) + (xy 90.592376 154.811123) + (xy 90.362823 154.700578) + (xy 90.362825 154.700578) + (xy 90.119347 154.625475) + (xy 90.119341 154.625473) + (xy 89.867404 154.5875) + (xy 89.612595 154.5875) + (xy 89.360658 154.625473) + (xy 89.360652 154.625475) + (xy 89.117175 154.700578) + (xy 88.887624 154.811123) + (xy 88.887616 154.811128) + (xy 88.726813 154.920761) + (xy 89.530779 155.724727) + (xy 89.437412 155.763401) + (xy 89.312075 155.859575) + (xy 89.215901 155.984911) + (xy 89.177226 156.078279) + (xy 88.373453 155.274506) + (xy 88.331455 155.32717) + (xy 88.204058 155.547828) + (xy 88.110973 155.785005) + (xy 88.110968 155.785022) + (xy 88.054273 156.03342) + (xy 88.035233 156.287495) + (xy 88.035233 156.287504) + (xy 88.054273 156.541579) + (xy 88.110968 156.789977) + (xy 88.110973 156.789994) + (xy 88.204058 157.027171) + (xy 88.204057 157.027171) + (xy 88.331457 157.247832) + (xy 88.373452 157.300493) + (xy 89.177226 156.496719) + (xy 89.215901 156.590088) + (xy 89.312075 156.715425) + (xy 89.437412 156.811599) + (xy 89.530779 156.850272) + (xy 88.726813 157.654237) + (xy 88.887623 157.763875) + (xy 88.887624 157.763876) + (xy 89.117176 157.874421) + (xy 89.117174 157.874421) + (xy 89.360652 157.949524) + (xy 89.360658 157.949526) + (xy 89.612595 157.987499) + (xy 89.612604 157.9875) + (xy 89.867396 157.9875) + (xy 89.867404 157.987499) + (xy 90.119341 157.949526) + (xy 90.119347 157.949524) + (xy 90.362824 157.874421) + (xy 90.592381 157.763873) + (xy 90.753185 157.654237) + (xy 89.94922 156.850272) + (xy 90.042588 156.811599) + (xy 90.167925 156.715425) + (xy 90.264099 156.590089) + (xy 90.302773 156.49672) + (xy 91.106545 157.300493) + (xy 91.148545 157.247827) + (xy 91.275941 157.027171) + (xy 91.369026 156.789994) + (xy 91.3704 156.785544) + (xy 91.371574 156.785906) + (xy 91.402945 156.7298) + (xy 91.464601 156.696932) + (xy 91.534239 156.702615) + (xy 91.58975 156.745045) + (xy 91.60842 156.785912) + (xy 91.609122 156.785696) + (xy 91.61049 156.79013) + (xy 91.610492 156.790137) + (xy 91.703607 157.027388) + (xy 91.831041 157.248112) + (xy 91.98995 157.447377) + (xy 92.176783 157.620732) + (xy 92.387366 157.764305) + (xy 92.387371 157.764307) + (xy 92.387372 157.764308) + (xy 92.387373 157.764309) + (xy 92.509328 157.823038) + (xy 92.616992 157.874887) + (xy 92.616993 157.874887) + (xy 92.616996 157.874889) + (xy 92.860542 157.950013) + (xy 93.112565 157.988) + (xy 93.367435 157.988) + (xy 93.619458 157.950013) + (xy 93.863004 157.874889) + (xy 94.092634 157.764305) + (xy 94.303217 157.620732) + (xy 94.49005 157.447377) + (xy 94.648959 157.248112) + (xy 94.776393 157.027388) + (xy 94.869508 156.790137) + (xy 94.86951 156.790124) + (xy 94.870878 156.785696) + (xy 94.872324 156.786142) + (xy 94.903213 156.730912) + (xy 94.964873 156.698052) + (xy 95.03451 156.703743) + (xy 95.090016 156.74618) + (xy 95.108192 156.785982) + (xy 95.109122 156.785696) + (xy 95.11049 156.79013) + (xy 95.110492 156.790137) + (xy 95.203607 157.027388) + (xy 95.331041 157.248112) + (xy 95.48995 157.447377) + (xy 95.676783 157.620732) + (xy 95.887366 157.764305) + (xy 95.887371 157.764307) + (xy 95.887372 157.764308) + (xy 95.887373 157.764309) + (xy 96.009328 157.823038) + (xy 96.116992 157.874887) + (xy 96.116993 157.874887) + (xy 96.116996 157.874889) + (xy 96.360542 157.950013) + (xy 96.612565 157.988) + (xy 96.867435 157.988) + (xy 97.119458 157.950013) + (xy 97.363004 157.874889) + (xy 97.592634 157.764305) + (xy 97.803217 157.620732) + (xy 97.99005 157.447377) + (xy 98.148959 157.248112) + (xy 98.276393 157.027388) + (xy 98.369508 156.790137) + (xy 98.36951 156.790124) + (xy 98.370878 156.785696) + (xy 98.372008 156.786044) + (xy 98.403464 156.729795) + (xy 98.465121 156.69693) + (xy 98.534759 156.702617) + (xy 98.590268 156.745051) + (xy 98.608868 156.785769) + (xy 98.6096 156.785544) + (xy 98.610973 156.789994) + (xy 98.704058 157.027171) + (xy 98.704057 157.027171) + (xy 98.831457 157.247832) + (xy 98.873452 157.300493) + (xy 98.873453 157.300493) + (xy 99.677226 156.496719) + (xy 99.715901 156.590088) + (xy 99.812075 156.715425) + (xy 99.937412 156.811599) + (xy 100.030779 156.850272) + (xy 99.226813 157.654237) + (xy 99.387623 157.763875) + (xy 99.387624 157.763876) + (xy 99.617176 157.874421) + (xy 99.617174 157.874421) + (xy 99.860652 157.949524) + (xy 99.860658 157.949526) + (xy 100.112595 157.987499) + (xy 100.112604 157.9875) + (xy 100.367396 157.9875) + (xy 100.367404 157.987499) + (xy 100.619341 157.949526) + (xy 100.619347 157.949524) + (xy 100.862824 157.874421) + (xy 101.092381 157.763873) + (xy 101.253185 157.654237) + (xy 100.44922 156.850272) + (xy 100.542588 156.811599) + (xy 100.667925 156.715425) + (xy 100.764099 156.590089) + (xy 100.802773 156.49672) + (xy 101.606545 157.300493) + (xy 101.648545 157.247827) + (xy 101.775941 157.027171) + (xy 101.869026 156.789994) + (xy 101.8704 156.785544) + (xy 101.871574 156.785906) + (xy 101.902945 156.7298) + (xy 101.964601 156.696932) + (xy 102.034239 156.702615) + (xy 102.08975 156.745045) + (xy 102.10842 156.785912) + (xy 102.109122 156.785696) + (xy 102.11049 156.79013) + (xy 102.110492 156.790137) + (xy 102.203607 157.027388) + (xy 102.331041 157.248112) + (xy 102.48995 157.447377) + (xy 102.676783 157.620732) + (xy 102.887366 157.764305) + (xy 102.887371 157.764307) + (xy 102.887372 157.764308) + (xy 102.887373 157.764309) + (xy 103.009328 157.823038) + (xy 103.116992 157.874887) + (xy 103.116993 157.874887) + (xy 103.116996 157.874889) + (xy 103.360542 157.950013) + (xy 103.612565 157.988) + (xy 103.867435 157.988) + (xy 104.119458 157.950013) + (xy 104.363004 157.874889) + (xy 104.592634 157.764305) + (xy 104.803217 157.620732) + (xy 104.99005 157.447377) + (xy 105.148959 157.248112) + (xy 105.276393 157.027388) + (xy 105.369508 156.790137) + (xy 105.36951 156.790124) + (xy 105.370878 156.785696) + (xy 105.372324 156.786142) + (xy 105.403213 156.730912) + (xy 105.464873 156.698052) + (xy 105.53451 156.703743) + (xy 105.590016 156.74618) + (xy 105.608192 156.785982) + (xy 105.609122 156.785696) + (xy 105.61049 156.79013) + (xy 105.610492 156.790137) + (xy 105.703607 157.027388) + (xy 105.831041 157.248112) + (xy 105.98995 157.447377) + (xy 106.176783 157.620732) + (xy 106.387366 157.764305) + (xy 106.387371 157.764307) + (xy 106.387372 157.764308) + (xy 106.387373 157.764309) + (xy 106.509328 157.823038) + (xy 106.616992 157.874887) + (xy 106.616993 157.874887) + (xy 106.616996 157.874889) + (xy 106.860542 157.950013) + (xy 107.112565 157.988) + (xy 107.367435 157.988) + (xy 107.619458 157.950013) + (xy 107.863004 157.874889) + (xy 108.092634 157.764305) + (xy 108.303217 157.620732) + (xy 108.49005 157.447377) + (xy 108.648959 157.248112) + (xy 108.776393 157.027388) + (xy 108.869508 156.790137) + (xy 108.86951 156.790124) + (xy 108.870878 156.785696) + (xy 108.872008 156.786044) + (xy 108.903464 156.729795) + (xy 108.965121 156.69693) + (xy 109.034759 156.702617) + (xy 109.090268 156.745051) + (xy 109.108868 156.785769) + (xy 109.1096 156.785544) + (xy 109.110973 156.789994) + (xy 109.204058 157.027171) + (xy 109.204057 157.027171) + (xy 109.331457 157.247832) + (xy 109.373452 157.300493) + (xy 110.177226 156.496719) + (xy 110.215901 156.590088) + (xy 110.312075 156.715425) + (xy 110.437412 156.811599) + (xy 110.530779 156.850272) + (xy 109.726813 157.654237) + (xy 109.887623 157.763875) + (xy 109.887624 157.763876) + (xy 110.117176 157.874421) + (xy 110.117174 157.874421) + (xy 110.360652 157.949524) + (xy 110.360658 157.949526) + (xy 110.612595 157.987499) + (xy 110.612604 157.9875) + (xy 110.867396 157.9875) + (xy 110.867404 157.987499) + (xy 111.119341 157.949526) + (xy 111.119347 157.949524) + (xy 111.362824 157.874421) + (xy 111.592381 157.763873) + (xy 111.753185 157.654237) + (xy 110.94922 156.850272) + (xy 111.042588 156.811599) + (xy 111.167925 156.715425) + (xy 111.264099 156.590089) + (xy 111.302773 156.49672) + (xy 112.106545 157.300493) + (xy 112.148545 157.247827) + (xy 112.275941 157.027171) + (xy 112.369026 156.789994) + (xy 112.3704 156.785544) + (xy 112.371574 156.785906) + (xy 112.402945 156.7298) + (xy 112.464601 156.696932) + (xy 112.534239 156.702615) + (xy 112.58975 156.745045) + (xy 112.60842 156.785912) + (xy 112.609122 156.785696) + (xy 112.61049 156.79013) + (xy 112.610492 156.790137) + (xy 112.703607 157.027388) + (xy 112.831041 157.248112) + (xy 112.98995 157.447377) + (xy 113.176783 157.620732) + (xy 113.387366 157.764305) + (xy 113.387371 157.764307) + (xy 113.387372 157.764308) + (xy 113.387373 157.764309) + (xy 113.509328 157.823038) + (xy 113.616992 157.874887) + (xy 113.616993 157.874887) + (xy 113.616996 157.874889) + (xy 113.860542 157.950013) + (xy 114.112565 157.988) + (xy 114.367435 157.988) + (xy 114.619458 157.950013) + (xy 114.863004 157.874889) + (xy 115.092634 157.764305) + (xy 115.303217 157.620732) + (xy 115.49005 157.447377) + (xy 115.648959 157.248112) + (xy 115.776393 157.027388) + (xy 115.869508 156.790137) + (xy 115.86951 156.790124) + (xy 115.870878 156.785696) + (xy 115.872324 156.786142) + (xy 115.903213 156.730912) + (xy 115.964873 156.698052) + (xy 116.03451 156.703743) + (xy 116.090016 156.74618) + (xy 116.108192 156.785982) + (xy 116.109122 156.785696) + (xy 116.11049 156.79013) + (xy 116.110492 156.790137) + (xy 116.203607 157.027388) + (xy 116.331041 157.248112) + (xy 116.48995 157.447377) + (xy 116.676783 157.620732) + (xy 116.887366 157.764305) + (xy 116.887371 157.764307) + (xy 116.887372 157.764308) + (xy 116.887373 157.764309) + (xy 117.009328 157.823038) + (xy 117.116992 157.874887) + (xy 117.116993 157.874887) + (xy 117.116996 157.874889) + (xy 117.360542 157.950013) + (xy 117.612565 157.988) + (xy 117.867435 157.988) + (xy 118.119458 157.950013) + (xy 118.363004 157.874889) + (xy 118.592634 157.764305) + (xy 118.803217 157.620732) + (xy 118.99005 157.447377) + (xy 119.148959 157.248112) + (xy 119.276393 157.027388) + (xy 119.369508 156.790137) + (xy 119.36951 156.790124) + (xy 119.370878 156.785696) + (xy 119.372008 156.786044) + (xy 119.403464 156.729795) + (xy 119.465121 156.69693) + (xy 119.534759 156.702617) + (xy 119.590268 156.745051) + (xy 119.608868 156.785769) + (xy 119.6096 156.785544) + (xy 119.610973 156.789994) + (xy 119.704058 157.027171) + (xy 119.704057 157.027171) + (xy 119.831457 157.247832) + (xy 119.873452 157.300493) + (xy 119.873453 157.300493) + (xy 120.677226 156.496719) + (xy 120.715901 156.590088) + (xy 120.812075 156.715425) + (xy 120.937412 156.811599) + (xy 121.030779 156.850272) + (xy 120.226813 157.654237) + (xy 120.387623 157.763875) + (xy 120.387624 157.763876) + (xy 120.617176 157.874421) + (xy 120.617174 157.874421) + (xy 120.860652 157.949524) + (xy 120.860658 157.949526) + (xy 121.112595 157.987499) + (xy 121.112604 157.9875) + (xy 121.367396 157.9875) + (xy 121.367404 157.987499) + (xy 121.619341 157.949526) + (xy 121.619347 157.949524) + (xy 121.862824 157.874421) + (xy 122.092381 157.763873) + (xy 122.253185 157.654237) + (xy 121.44922 156.850272) + (xy 121.542588 156.811599) + (xy 121.667925 156.715425) + (xy 121.764099 156.590089) + (xy 121.802772 156.49672) + (xy 122.606545 157.300493) + (xy 122.648545 157.247827) + (xy 122.775941 157.027171) + (xy 122.869026 156.789994) + (xy 122.8704 156.785544) + (xy 122.871574 156.785906) + (xy 122.902945 156.7298) + (xy 122.964601 156.696932) + (xy 123.034239 156.702615) + (xy 123.08975 156.745045) + (xy 123.10842 156.785912) + (xy 123.109122 156.785696) + (xy 123.11049 156.79013) + (xy 123.110492 156.790137) + (xy 123.203607 157.027388) + (xy 123.331041 157.248112) + (xy 123.48995 157.447377) + (xy 123.676783 157.620732) + (xy 123.887366 157.764305) + (xy 123.887371 157.764307) + (xy 123.887372 157.764308) + (xy 123.887373 157.764309) + (xy 124.009328 157.823038) + (xy 124.116992 157.874887) + (xy 124.116993 157.874887) + (xy 124.116996 157.874889) + (xy 124.360542 157.950013) + (xy 124.612565 157.988) + (xy 124.867435 157.988) + (xy 125.119458 157.950013) + (xy 125.363004 157.874889) + (xy 125.592634 157.764305) + (xy 125.803217 157.620732) + (xy 125.99005 157.447377) + (xy 126.148959 157.248112) + (xy 126.276393 157.027388) + (xy 126.369508 156.790137) + (xy 126.36951 156.790124) + (xy 126.370878 156.785696) + (xy 126.372324 156.786142) + (xy 126.403213 156.730912) + (xy 126.464873 156.698052) + (xy 126.53451 156.703743) + (xy 126.590016 156.74618) + (xy 126.608192 156.785982) + (xy 126.609122 156.785696) + (xy 126.61049 156.79013) + (xy 126.610492 156.790137) + (xy 126.703607 157.027388) + (xy 126.831041 157.248112) + (xy 126.98995 157.447377) + (xy 127.176783 157.620732) + (xy 127.387366 157.764305) + (xy 127.387371 157.764307) + (xy 127.387372 157.764308) + (xy 127.387373 157.764309) + (xy 127.509328 157.823038) + (xy 127.616992 157.874887) + (xy 127.616993 157.874887) + (xy 127.616996 157.874889) + (xy 127.860542 157.950013) + (xy 128.112565 157.988) + (xy 128.367435 157.988) + (xy 128.619458 157.950013) + (xy 128.863004 157.874889) + (xy 129.092634 157.764305) + (xy 129.303217 157.620732) + (xy 129.49005 157.447377) + (xy 129.648959 157.248112) + (xy 129.776393 157.027388) + (xy 129.869508 156.790137) + (xy 129.86951 156.790124) + (xy 129.870878 156.785696) + (xy 129.872008 156.786044) + (xy 129.903464 156.729795) + (xy 129.965121 156.69693) + (xy 130.034759 156.702617) + (xy 130.090268 156.745051) + (xy 130.108868 156.785769) + (xy 130.1096 156.785544) + (xy 130.110973 156.789994) + (xy 130.204058 157.027171) + (xy 130.204057 157.027171) + (xy 130.331457 157.247832) + (xy 130.373452 157.300493) + (xy 131.177226 156.496719) + (xy 131.215901 156.590088) + (xy 131.312075 156.715425) + (xy 131.437412 156.811599) + (xy 131.530779 156.850272) + (xy 130.726813 157.654237) + (xy 130.887623 157.763875) + (xy 130.887624 157.763876) + (xy 131.117176 157.874421) + (xy 131.117174 157.874421) + (xy 131.360652 157.949524) + (xy 131.360658 157.949526) + (xy 131.612595 157.987499) + (xy 131.612604 157.9875) + (xy 131.867396 157.9875) + (xy 131.867404 157.987499) + (xy 132.119341 157.949526) + (xy 132.119347 157.949524) + (xy 132.362824 157.874421) + (xy 132.592381 157.763873) + (xy 132.753185 157.654237) + (xy 131.94922 156.850272) + (xy 132.042588 156.811599) + (xy 132.167925 156.715425) + (xy 132.264099 156.590089) + (xy 132.302772 156.49672) + (xy 133.106545 157.300493) + (xy 133.148545 157.247827) + (xy 133.275941 157.027171) + (xy 133.369026 156.789994) + (xy 133.3704 156.785544) + (xy 133.371574 156.785906) + (xy 133.402945 156.7298) + (xy 133.464601 156.696932) + (xy 133.534239 156.702615) + (xy 133.58975 156.745045) + (xy 133.60842 156.785912) + (xy 133.609122 156.785696) + (xy 133.61049 156.79013) + (xy 133.610492 156.790137) + (xy 133.703607 157.027388) + (xy 133.831041 157.248112) + (xy 133.98995 157.447377) + (xy 134.176783 157.620732) + (xy 134.387366 157.764305) + (xy 134.387371 157.764307) + (xy 134.387372 157.764308) + (xy 134.387373 157.764309) + (xy 134.509328 157.823038) + (xy 134.616992 157.874887) + (xy 134.616993 157.874887) + (xy 134.616996 157.874889) + (xy 134.860542 157.950013) + (xy 135.112565 157.988) + (xy 135.367435 157.988) + (xy 135.619458 157.950013) + (xy 135.863004 157.874889) + (xy 136.092634 157.764305) + (xy 136.303217 157.620732) + (xy 136.49005 157.447377) + (xy 136.648959 157.248112) + (xy 136.776393 157.027388) + (xy 136.869508 156.790137) + (xy 136.86951 156.790124) + (xy 136.870878 156.785696) + (xy 136.872324 156.786142) + (xy 136.903213 156.730912) + (xy 136.964873 156.698052) + (xy 137.03451 156.703743) + (xy 137.090016 156.74618) + (xy 137.108192 156.785982) + (xy 137.109122 156.785696) + (xy 137.11049 156.79013) + (xy 137.110492 156.790137) + (xy 137.203607 157.027388) + (xy 137.331041 157.248112) + (xy 137.48995 157.447377) + (xy 137.676783 157.620732) + (xy 137.887366 157.764305) + (xy 137.887371 157.764307) + (xy 137.887372 157.764308) + (xy 137.887373 157.764309) + (xy 138.009328 157.823038) + (xy 138.116992 157.874887) + (xy 138.116993 157.874887) + (xy 138.116996 157.874889) + (xy 138.360542 157.950013) + (xy 138.612565 157.988) + (xy 138.867435 157.988) + (xy 139.119458 157.950013) + (xy 139.363004 157.874889) + (xy 139.592634 157.764305) + (xy 139.803217 157.620732) + (xy 139.99005 157.447377) + (xy 140.148959 157.248112) + (xy 140.276393 157.027388) + (xy 140.369508 156.790137) + (xy 140.36951 156.790124) + (xy 140.370878 156.785696) + (xy 140.372008 156.786044) + (xy 140.403464 156.729795) + (xy 140.465121 156.69693) + (xy 140.534759 156.702617) + (xy 140.590268 156.745051) + (xy 140.608868 156.785769) + (xy 140.6096 156.785544) + (xy 140.610973 156.789994) + (xy 140.704058 157.027171) + (xy 140.704057 157.027171) + (xy 140.831457 157.247832) + (xy 140.873452 157.300493) + (xy 140.873453 157.300493) + (xy 141.677226 156.496719) + (xy 141.715901 156.590088) + (xy 141.812075 156.715425) + (xy 141.937412 156.811599) + (xy 142.030779 156.850272) + (xy 141.226813 157.654237) + (xy 141.387623 157.763875) + (xy 141.387624 157.763876) + (xy 141.617176 157.874421) + (xy 141.617174 157.874421) + (xy 141.860652 157.949524) + (xy 141.860658 157.949526) + (xy 142.112595 157.987499) + (xy 142.112604 157.9875) + (xy 142.367396 157.9875) + (xy 142.367404 157.987499) + (xy 142.619341 157.949526) + (xy 142.619347 157.949524) + (xy 142.862824 157.874421) + (xy 143.092381 157.763873) + (xy 143.253185 157.654237) + (xy 142.44922 156.850272) + (xy 142.542588 156.811599) + (xy 142.667925 156.715425) + (xy 142.764099 156.590089) + (xy 142.802773 156.49672) + (xy 143.606545 157.300493) + (xy 143.648545 157.247827) + (xy 143.775941 157.027171) + (xy 143.869026 156.789994) + (xy 143.8704 156.785544) + (xy 143.871574 156.785906) + (xy 143.902945 156.7298) + (xy 143.964601 156.696932) + (xy 144.034239 156.702615) + (xy 144.08975 156.745045) + (xy 144.10842 156.785912) + (xy 144.109122 156.785696) + (xy 144.11049 156.79013) + (xy 144.110492 156.790137) + (xy 144.203607 157.027388) + (xy 144.331041 157.248112) + (xy 144.48995 157.447377) + (xy 144.676783 157.620732) + (xy 144.887366 157.764305) + (xy 144.887371 157.764307) + (xy 144.887372 157.764308) + (xy 144.887373 157.764309) + (xy 145.009328 157.823038) + (xy 145.116992 157.874887) + (xy 145.116993 157.874887) + (xy 145.116996 157.874889) + (xy 145.360542 157.950013) + (xy 145.612565 157.988) + (xy 145.867435 157.988) + (xy 146.119458 157.950013) + (xy 146.363004 157.874889) + (xy 146.592634 157.764305) + (xy 146.803217 157.620732) + (xy 146.99005 157.447377) + (xy 147.148959 157.248112) + (xy 147.276393 157.027388) + (xy 147.369508 156.790137) + (xy 147.36951 156.790124) + (xy 147.370878 156.785696) + (xy 147.372324 156.786142) + (xy 147.403213 156.730912) + (xy 147.464873 156.698052) + (xy 147.53451 156.703743) + (xy 147.590016 156.74618) + (xy 147.608192 156.785982) + (xy 147.609122 156.785696) + (xy 147.61049 156.79013) + (xy 147.610492 156.790137) + (xy 147.703607 157.027388) + (xy 147.831041 157.248112) + (xy 147.98995 157.447377) + (xy 148.176783 157.620732) + (xy 148.387366 157.764305) + (xy 148.387371 157.764307) + (xy 148.387372 157.764308) + (xy 148.387373 157.764309) + (xy 148.509328 157.823038) + (xy 148.616992 157.874887) + (xy 148.616993 157.874887) + (xy 148.616996 157.874889) + (xy 148.860542 157.950013) + (xy 149.112565 157.988) + (xy 149.367435 157.988) + (xy 149.619458 157.950013) + (xy 149.863004 157.874889) + (xy 150.092634 157.764305) + (xy 150.303217 157.620732) + (xy 150.49005 157.447377) + (xy 150.648959 157.248112) + (xy 150.776393 157.027388) + (xy 150.869508 156.790137) + (xy 150.86951 156.790124) + (xy 150.870878 156.785696) + (xy 150.872008 156.786044) + (xy 150.903464 156.729795) + (xy 150.965121 156.69693) + (xy 151.034759 156.702617) + (xy 151.090268 156.745051) + (xy 151.108868 156.785769) + (xy 151.1096 156.785544) + (xy 151.110973 156.789994) + (xy 151.204058 157.027171) + (xy 151.204057 157.027171) + (xy 151.331457 157.247832) + (xy 151.373452 157.300493) + (xy 152.177226 156.496719) + (xy 152.215901 156.590088) + (xy 152.312075 156.715425) + (xy 152.437412 156.811599) + (xy 152.530779 156.850272) + (xy 151.726813 157.654237) + (xy 151.887623 157.763875) + (xy 151.887624 157.763876) + (xy 152.117176 157.874421) + (xy 152.117174 157.874421) + (xy 152.360652 157.949524) + (xy 152.360658 157.949526) + (xy 152.612595 157.987499) + (xy 152.612604 157.9875) + (xy 152.867396 157.9875) + (xy 152.867404 157.987499) + (xy 153.119341 157.949526) + (xy 153.119347 157.949524) + (xy 153.362824 157.874421) + (xy 153.592381 157.763873) + (xy 153.753185 157.654237) + (xy 152.94922 156.850272) + (xy 153.042588 156.811599) + (xy 153.167925 156.715425) + (xy 153.264099 156.590089) + (xy 153.302772 156.49672) + (xy 154.106545 157.300493) + (xy 154.148545 157.247827) + (xy 154.275941 157.027171) + (xy 154.369026 156.789994) + (xy 154.3704 156.785544) + (xy 154.371574 156.785906) + (xy 154.402945 156.7298) + (xy 154.464601 156.696932) + (xy 154.534239 156.702615) + (xy 154.58975 156.745045) + (xy 154.60842 156.785912) + (xy 154.609122 156.785696) + (xy 154.61049 156.79013) + (xy 154.610492 156.790137) + (xy 154.703607 157.027388) + (xy 154.831041 157.248112) + (xy 154.98995 157.447377) + (xy 155.176783 157.620732) + (xy 155.387366 157.764305) + (xy 155.387371 157.764307) + (xy 155.387372 157.764308) + (xy 155.387373 157.764309) + (xy 155.509328 157.823038) + (xy 155.616992 157.874887) + (xy 155.616993 157.874887) + (xy 155.616996 157.874889) + (xy 155.860542 157.950013) + (xy 156.112565 157.988) + (xy 156.367435 157.988) + (xy 156.619458 157.950013) + (xy 156.863004 157.874889) + (xy 157.092634 157.764305) + (xy 157.303217 157.620732) + (xy 157.49005 157.447377) + (xy 157.648959 157.248112) + (xy 157.776393 157.027388) + (xy 157.869508 156.790137) + (xy 157.86951 156.790124) + (xy 157.870878 156.785696) + (xy 157.872324 156.786142) + (xy 157.903213 156.730912) + (xy 157.964873 156.698052) + (xy 158.03451 156.703743) + (xy 158.090016 156.74618) + (xy 158.108192 156.785982) + (xy 158.109122 156.785696) + (xy 158.11049 156.79013) + (xy 158.110492 156.790137) + (xy 158.203607 157.027388) + (xy 158.331041 157.248112) + (xy 158.48995 157.447377) + (xy 158.676783 157.620732) + (xy 158.887366 157.764305) + (xy 158.887371 157.764307) + (xy 158.887372 157.764308) + (xy 158.887373 157.764309) + (xy 159.009328 157.823038) + (xy 159.116992 157.874887) + (xy 159.116993 157.874887) + (xy 159.116996 157.874889) + (xy 159.360542 157.950013) + (xy 159.612565 157.988) + (xy 159.867435 157.988) + (xy 160.119458 157.950013) + (xy 160.363004 157.874889) + (xy 160.592634 157.764305) + (xy 160.803217 157.620732) + (xy 160.99005 157.447377) + (xy 161.148959 157.248112) + (xy 161.276393 157.027388) + (xy 161.369508 156.790137) + (xy 161.36951 156.790124) + (xy 161.370878 156.785696) + (xy 161.372008 156.786044) + (xy 161.403464 156.729795) + (xy 161.465121 156.69693) + (xy 161.534759 156.702617) + (xy 161.590268 156.745051) + (xy 161.608868 156.785769) + (xy 161.6096 156.785544) + (xy 161.610973 156.789994) + (xy 161.704058 157.027171) + (xy 161.704057 157.027171) + (xy 161.831457 157.247832) + (xy 161.873452 157.300493) + (xy 162.677226 156.496719) + (xy 162.715901 156.590088) + (xy 162.812075 156.715425) + (xy 162.937412 156.811599) + (xy 163.030779 156.850272) + (xy 162.226813 157.654237) + (xy 162.387623 157.763875) + (xy 162.387624 157.763876) + (xy 162.617176 157.874421) + (xy 162.617174 157.874421) + (xy 162.860652 157.949524) + (xy 162.860658 157.949526) + (xy 163.112595 157.987499) + (xy 163.112604 157.9875) + (xy 163.367396 157.9875) + (xy 163.367404 157.987499) + (xy 163.619341 157.949526) + (xy 163.619347 157.949524) + (xy 163.862824 157.874421) + (xy 164.092381 157.763873) + (xy 164.253185 157.654237) + (xy 163.44922 156.850272) + (xy 163.542588 156.811599) + (xy 163.667925 156.715425) + (xy 163.764099 156.590089) + (xy 163.802772 156.496721) + (xy 164.606545 157.300493) + (xy 164.648545 157.247827) + (xy 164.775941 157.027171) + (xy 164.869026 156.789994) + (xy 164.8704 156.785544) + (xy 164.871574 156.785906) + (xy 164.902945 156.7298) + (xy 164.964601 156.696932) + (xy 165.034239 156.702615) + (xy 165.08975 156.745045) + (xy 165.10842 156.785912) + (xy 165.109122 156.785696) + (xy 165.11049 156.79013) + (xy 165.110492 156.790137) + (xy 165.203607 157.027388) + (xy 165.331041 157.248112) + (xy 165.48995 157.447377) + (xy 165.676783 157.620732) + (xy 165.887366 157.764305) + (xy 165.887371 157.764307) + (xy 165.887372 157.764308) + (xy 165.887373 157.764309) + (xy 166.009328 157.823038) + (xy 166.116992 157.874887) + (xy 166.116993 157.874887) + (xy 166.116996 157.874889) + (xy 166.360542 157.950013) + (xy 166.612565 157.988) + (xy 166.867435 157.988) + (xy 167.119458 157.950013) + (xy 167.363004 157.874889) + (xy 167.592634 157.764305) + (xy 167.803217 157.620732) + (xy 167.99005 157.447377) + (xy 168.148959 157.248112) + (xy 168.276393 157.027388) + (xy 168.369508 156.790137) + (xy 168.36951 156.790124) + (xy 168.370878 156.785696) + (xy 168.372324 156.786142) + (xy 168.403213 156.730912) + (xy 168.464873 156.698052) + (xy 168.53451 156.703743) + (xy 168.590016 156.74618) + (xy 168.608192 156.785982) + (xy 168.609122 156.785696) + (xy 168.61049 156.79013) + (xy 168.610492 156.790137) + (xy 168.703607 157.027388) + (xy 168.831041 157.248112) + (xy 168.98995 157.447377) + (xy 169.176783 157.620732) + (xy 169.387366 157.764305) + (xy 169.387371 157.764307) + (xy 169.387372 157.764308) + (xy 169.387373 157.764309) + (xy 169.509328 157.823038) + (xy 169.616992 157.874887) + (xy 169.616993 157.874887) + (xy 169.616996 157.874889) + (xy 169.860542 157.950013) + (xy 170.112565 157.988) + (xy 170.367435 157.988) + (xy 170.619458 157.950013) + (xy 170.863004 157.874889) + (xy 171.092634 157.764305) + (xy 171.303217 157.620732) + (xy 171.49005 157.447377) + (xy 171.648959 157.248112) + (xy 171.776393 157.027388) + (xy 171.869508 156.790137) + (xy 171.926222 156.541657) + (xy 171.945268 156.2875) + (xy 171.945229 156.286986) + (xy 171.926222 156.033345) + (xy 171.915167 155.984912) + (xy 171.869508 155.784863) + (xy 171.776393 155.547612) + (xy 171.648959 155.326888) + (xy 171.49005 155.127623) + (xy 171.303217 154.954268) + (xy 171.092634 154.810695) + (xy 171.092628 154.810692) + (xy 171.092627 154.810691) + (xy 171.092626 154.81069) + (xy 170.863006 154.700112) + (xy 170.863008 154.700112) + (xy 170.619466 154.624989) + (xy 170.619462 154.624988) + (xy 170.619458 154.624987) + (xy 170.498231 154.606714) + (xy 170.36744 154.587) + (xy 170.367435 154.587) + (xy 170.112565 154.587) + (xy 170.112559 154.587) + (xy 169.955609 154.610657) + (xy 169.860542 154.624987) + (xy 169.860538 154.624988) + (xy 169.860539 154.624988) + (xy 169.860525 154.624991) + (xy 169.7606 154.655813) + (xy 169.690737 154.656763) + (xy 169.636371 154.625003) + (xy 162.046819 147.035451) + (xy 162.013334 146.974128) + (xy 162.0105 146.94777) + (xy 162.0105 146.565071) + (xy 162.030185 146.498032) + (xy 162.058338 146.467218) + (xy 162.08804 146.4441) + (xy 162.187046 146.36704) + (xy 162.340156 146.200719) + (xy 162.463802 146.011465) + (xy 162.554611 145.804441) + (xy 162.610107 145.585293) + (xy 162.628775 145.36) + (xy 162.628775 145.359993) + (xy 162.610107 145.13471) + (xy 162.610107 145.134707) + (xy 162.554611 144.915559) + (xy 162.463802 144.708535) + (xy 162.340156 144.519281) + (xy 162.340153 144.519278) + (xy 162.340149 144.519272) + (xy 162.187049 144.352963) + (xy 162.187047 144.352961) + (xy 162.187046 144.35296) + (xy 162.008649 144.214107) + (xy 161.938716 144.176261) + (xy 161.809832 144.106512) + (xy 161.809827 144.10651) + (xy 161.596017 144.033109) + (xy 161.428778 144.005202) + (xy 161.373033 143.9959) + (xy 161.146967 143.9959) + (xy 161.117771 144.000772) + (xy 160.923982 144.033109) + (xy 160.918067 144.03514) + (xy 160.848268 144.038286) + (xy 160.790129 144.005538) + (xy 159.440166 142.655575) + (xy 159.406681 142.594252) + (xy 159.411665 142.52456) + (xy 159.453537 142.468627) + (xy 159.519001 142.44421) + (xy 159.56811 142.450613) + (xy 159.614106 142.466403) + (xy 159.83701 142.5036) + (xy 160.06299 142.5036) + (xy 160.285893 142.466403) + (xy 160.499624 142.393029) + (xy 160.499639 142.393022) + (xy 160.698366 142.285476) + (xy 160.698378 142.285468) + (xy 160.722859 142.266413) + (xy 160.722859 142.266412) + (xy 160.089599 141.633152) + (xy 160.094592 141.632435) + (xy 160.22747 141.571752) + (xy 160.337869 141.47609) + (xy 160.416845 141.353201) + (xy 160.439522 141.275969) + (xy 161.074888 141.911334) + (xy 161.153361 141.791222) + (xy 161.244136 141.584278) + (xy 161.299611 141.365213) + (xy 161.299613 141.365202) + (xy 161.318273 141.140006) + (xy 161.318273 141.139993) + (xy 161.299613 140.914797) + (xy 161.299611 140.914786) + (xy 161.244136 140.695721) + (xy 161.15336 140.488774) + (xy 161.074888 140.368663) + (xy 160.439522 141.00403) + (xy 160.416845 140.926799) + (xy 160.337869 140.80391) + (xy 160.22747 140.708248) + (xy 160.094592 140.647565) + (xy 160.089599 140.646847) + (xy 160.722859 140.013587) + (xy 160.722858 140.013585) + (xy 160.698378 139.994531) + (xy 160.698368 139.994524) + (xy 160.499639 139.886977) + (xy 160.499624 139.88697) + (xy 160.285893 139.813596) + (xy 160.06299 139.7764) + (xy 159.83701 139.7764) + (xy 159.614106 139.813596) + (xy 159.400375 139.88697) + (xy 159.400369 139.886972) + (xy 159.201623 139.994529) + (xy 159.201617 139.994533) + (xy 159.17714 140.013584) + (xy 159.17714 140.013586) + (xy 159.810401 140.646847) + (xy 159.805408 140.647565) + (xy 159.67253 140.708248) + (xy 159.562131 140.80391) + (xy 159.483155 140.926799) + (xy 159.460477 141.004031) + (xy 158.82511 140.368664) + (xy 158.746638 140.488777) + (xy 158.746637 140.488779) + (xy 158.655863 140.695721) + (xy 158.600388 140.914786) + (xy 158.600386 140.914797) + (xy 158.581727 141.139993) + (xy 158.581727 141.140006) + (xy 158.600386 141.365202) + (xy 158.600388 141.365213) + (xy 158.642634 141.532035) + (xy 158.640009 141.601855) + (xy 158.600053 141.659172) + (xy 158.535452 141.685789) + (xy 158.466715 141.673255) + (xy 158.434747 141.650156) + (xy 138.771772 121.987181) + (xy 138.738287 121.925858) + (xy 138.743271 121.856166) + (xy 138.785143 121.800233) + (xy 138.850607 121.775816) + (xy 138.859453 121.7755) + (xy 142.117257 121.7755) + (xy 142.132877 121.777224) + (xy 142.132904 121.776939) + (xy 142.140666 121.777673) + (xy 142.140666 121.777672) + (xy 142.140667 121.777673) + (xy 142.143999 121.777568) + (xy 142.208847 121.775531) + (xy 142.210794 121.7755) + (xy 142.239347 121.7755) + (xy 142.23935 121.7755) + (xy 142.246228 121.77463) + (xy 142.252041 121.774172) + (xy 142.298627 121.772709) + (xy 142.317869 121.767117) + (xy 142.336912 121.763174) + (xy 142.356792 121.760664) + (xy 142.400122 121.743507) + (xy 142.405646 121.741617) + (xy 142.411597 121.739888) + (xy 142.45039 121.728618) + (xy 142.467629 121.718422) + (xy 142.485103 121.709862) + (xy 142.503727 121.702488) + (xy 142.503727 121.702487) + (xy 142.503732 121.702486) + (xy 142.541449 121.675082) + (xy 142.546305 121.671892) + (xy 142.58642 121.64817) + (xy 142.600589 121.633999) + (xy 142.615379 121.621368) + (xy 142.631587 121.609594) + (xy 142.661299 121.573676) + (xy 142.665212 121.569376) + (xy 162.226064 102.008524) + (xy 162.287385 101.975041) + (xy 162.357077 101.980025) + (xy 162.41301 102.021897) + (xy 162.437427 102.087361) + (xy 162.43732 102.106442) + (xy 162.432322 102.166768) + (xy 162.431225 102.180004) + (xy 162.431225 102.180006) + (xy 162.449892 102.405289) + (xy 162.505388 102.624439) + (xy 162.596198 102.831466) + (xy 162.719842 103.020716) + (xy 162.71985 103.020727) + (xy 162.87295 103.187036) + (xy 162.872954 103.18704) + (xy 163.051351 103.325893) + (xy 163.051353 103.325894) + (xy 163.051356 103.325896) + (xy 163.060803 103.331008) + (xy 163.079163 103.340944) + (xy 163.128754 103.390161) + (xy 163.143864 103.458378) + (xy 163.119694 103.523934) + (xy 163.079167 103.559052) + (xy 163.051361 103.5741) + (xy 163.051353 103.574105) + (xy 162.872955 103.712959) + (xy 162.87295 103.712963) + (xy 162.71985 103.879272) + (xy 162.719842 103.879283) + (xy 162.596198 104.068533) + (xy 162.505388 104.27556) + (xy 162.449892 104.49471) + (xy 162.431225 104.719993) + (xy 162.431225 104.720006) + (xy 162.449892 104.945289) + (xy 162.505388 105.164439) + (xy 162.596198 105.371466) + (xy 162.719842 105.560716) + (xy 162.71985 105.560727) + (xy 162.817469 105.666768) + (xy 162.872954 105.72704) + (xy 163.051351 105.865893) + (xy 163.079165 105.880945) + (xy 163.128755 105.930165) + (xy 163.143863 105.998382) + (xy 163.119692 106.063937) + (xy 163.079165 106.099055) + (xy 163.051352 106.114106) + (xy 162.872955 106.252959) + (xy 162.87295 106.252963) + (xy 162.71985 106.419272) + (xy 162.719842 106.419283) + (xy 162.596198 106.608533) + (xy 162.505388 106.81556) + (xy 162.449892 107.03471) + (xy 162.431225 107.259993) + (xy 162.431225 107.260006) + (xy 162.449892 107.485289) + (xy 162.505388 107.704439) + (xy 162.596198 107.911466) + (xy 162.719842 108.100716) + (xy 162.71985 108.100727) + (xy 162.87295 108.267036) + (xy 162.872954 108.26704) + (xy 163.051351 108.405893) + (xy 163.079165 108.420945) + (xy 163.128755 108.470165) + (xy 163.143863 108.538382) + (xy 163.119692 108.603937) + (xy 163.079165 108.639055) + (xy 163.051352 108.654106) + (xy 162.872955 108.792959) + (xy 162.87295 108.792963) + (xy 162.71985 108.959272) + (xy 162.719842 108.959283) + (xy 162.596198 109.148533) + (xy 162.505388 109.35556) + (xy 162.449892 109.57471) + (xy 162.431225 109.799993) + (xy 162.431225 109.800006) + (xy 162.449892 110.025289) + (xy 162.505388 110.244439) + (xy 162.596198 110.451466) + (xy 162.719842 110.640716) + (xy 162.71985 110.640727) + (xy 162.870214 110.804064) + (xy 162.872954 110.80704) + (xy 163.051351 110.945893) + (xy 163.079165 110.960945) + (xy 163.128755 111.010165) + (xy 163.143863 111.078382) + (xy 163.119692 111.143937) + (xy 163.079165 111.179055) + (xy 163.051352 111.194106) + (xy 162.872955 111.332959) + (xy 162.87295 111.332963) + (xy 162.71985 111.499272) + (xy 162.719842 111.499283) + (xy 162.596198 111.688533) + (xy 162.505388 111.89556) + (xy 162.449892 112.11471) + (xy 162.431225 112.339993) + (xy 162.431225 112.340006) + (xy 162.449892 112.565289) + (xy 162.505388 112.784439) + (xy 162.596198 112.991466) + (xy 162.719842 113.180716) + (xy 162.71985 113.180727) + (xy 162.85653 113.329199) + (xy 162.872954 113.34704) + (xy 163.051351 113.485893) + (xy 163.072544 113.497362) + (xy 163.079165 113.500945) + (xy 163.128755 113.550165) + (xy 163.143863 113.618382) + (xy 163.119692 113.683937) + (xy 163.079165 113.719055) + (xy 163.051352 113.734106) + (xy 162.872955 113.872959) + (xy 162.87295 113.872963) + (xy 162.71985 114.039272) + (xy 162.719842 114.039283) + (xy 162.596198 114.228533) + (xy 162.505388 114.43556) + (xy 162.449892 114.65471) + (xy 162.431225 114.879993) + (xy 162.431225 114.880006) + (xy 162.449892 115.105289) + (xy 162.505388 115.324439) + (xy 162.596198 115.531466) + (xy 162.719842 115.720716) + (xy 162.71985 115.720727) + (xy 162.855877 115.86849) + (xy 162.872954 115.88704) + (xy 163.051351 116.025893) + (xy 163.051353 116.025894) + (xy 163.051356 116.025896) + (xy 163.051362 116.025899) + (xy 163.079163 116.040944) + (xy 163.128754 116.090161) + (xy 163.143864 116.158378) + (xy 163.119694 116.223934) + (xy 163.079167 116.259052) + (xy 163.051361 116.2741) + (xy 163.051353 116.274105) + (xy 162.872955 116.412959) + (xy 162.87295 116.412963) + (xy 162.71985 116.579272) + (xy 162.719842 116.579283) + (xy 162.596198 116.768533) + (xy 162.505388 116.97556) + (xy 162.449892 117.19471) + (xy 162.431225 117.419993) + (xy 162.431225 117.420006) + (xy 162.449892 117.645289) + (xy 162.505388 117.864439) + (xy 162.596198 118.071466) + (xy 162.719842 118.260716) + (xy 162.71985 118.260727) + (xy 162.87295 118.427036) + (xy 162.872954 118.42704) + (xy 163.051351 118.565893) + (xy 163.079165 118.580945) + (xy 163.128755 118.630165) + (xy 163.143863 118.698382) + (xy 163.119692 118.763937) + (xy 163.079165 118.799055) + (xy 163.051352 118.814106) + (xy 162.872955 118.952959) + (xy 162.87295 118.952963) + (xy 162.71985 119.119272) + (xy 162.719842 119.119283) + (xy 162.596198 119.308533) + (xy 162.505388 119.51556) + (xy 162.449892 119.73471) + (xy 162.431225 119.959993) + (xy 162.431225 119.960006) + (xy 162.449892 120.185289) + (xy 162.505388 120.404439) + (xy 162.596198 120.611466) + (xy 162.719842 120.800716) + (xy 162.71985 120.800727) + (xy 162.835055 120.925871) + (xy 162.872954 120.96704) + (xy 163.051351 121.105893) + (xy 163.079165 121.120945) + (xy 163.128755 121.170165) + (xy 163.143863 121.238382) + (xy 163.119692 121.303937) + (xy 163.079165 121.339055) + (xy 163.051352 121.354106) + (xy 162.872955 121.492959) + (xy 162.87295 121.492963) + (xy 162.71985 121.659272) + (xy 162.719842 121.659283) + (xy 162.596198 121.848533) + (xy 162.505388 122.05556) + (xy 162.449892 122.27471) + (xy 162.431225 122.499993) + (xy 162.431225 122.500006) + (xy 162.449892 122.725289) + (xy 162.505388 122.944439) + (xy 162.596198 123.151466) + (xy 162.719842 123.340716) + (xy 162.71985 123.340727) + (xy 162.87295 123.507036) + (xy 162.872954 123.50704) + (xy 163.051351 123.645893) + (xy 163.079165 123.660945) + (xy 163.128755 123.710165) + (xy 163.143863 123.778382) + (xy 163.119692 123.843937) + (xy 163.079165 123.879055) + (xy 163.051352 123.894106) + (xy 162.872955 124.032959) + (xy 162.87295 124.032963) + (xy 162.71985 124.199272) + (xy 162.719842 124.199283) + (xy 162.596198 124.388533) + (xy 162.505388 124.59556) + (xy 162.449892 124.81471) + (xy 162.431225 125.039993) + (xy 162.431225 125.040006) + (xy 162.449892 125.265289) + (xy 162.505388 125.484439) + (xy 162.596196 125.691462) + (xy 162.596196 125.691463) + (xy 162.719842 125.880716) + (xy 162.71985 125.880727) + (xy 162.85064 126.022801) + (xy 162.872954 126.04704) + (xy 163.051351 126.185893) + (xy 163.079165 126.200945) + (xy 163.128755 126.250165) + (xy 163.143863 126.318382) + (xy 163.119692 126.383937) + (xy 163.079165 126.419055) + (xy 163.051352 126.434106) + (xy 162.872955 126.572959) + (xy 162.87295 126.572963) + (xy 162.71985 126.739272) + (xy 162.719842 126.739283) + (xy 162.596198 126.928533) + (xy 162.505388 127.13556) + (xy 162.449892 127.35471) + (xy 162.431225 127.579993) + (xy 162.431225 127.580006) + (xy 162.449892 127.805289) + (xy 162.505388 128.024439) + (xy 162.596198 128.231466) + (xy 162.719842 128.420716) + (xy 162.71985 128.420727) + (xy 162.844287 128.5559) + (xy 162.872954 128.58704) + (xy 163.051351 128.725893) + (xy 163.051353 128.725894) + (xy 163.051356 128.725896) + (xy 163.060803 128.731008) + (xy 163.079163 128.740944) + (xy 163.128754 128.790161) + (xy 163.143864 128.858378) + (xy 163.119694 128.923934) + (xy 163.079167 128.959052) + (xy 163.051361 128.9741) + (xy 163.051353 128.974105) + (xy 162.872955 129.112959) + (xy 162.87295 129.112963) + (xy 162.71985 129.279272) + (xy 162.719842 129.279283) + (xy 162.596198 129.468533) + (xy 162.505388 129.67556) + (xy 162.449892 129.89471) + (xy 162.431225 130.119993) + (xy 162.431225 130.120006) + (xy 162.449892 130.345289) + (xy 162.505388 130.564439) + (xy 162.596198 130.771466) + (xy 162.719842 130.960716) + (xy 162.71985 130.960727) + (xy 162.83052 131.080945) + (xy 162.872954 131.12704) + (xy 163.051351 131.265893) + (xy 163.079165 131.280945) + (xy 163.128755 131.330165) + (xy 163.143863 131.398382) + (xy 163.119692 131.463937) + (xy 163.079165 131.499054) + (xy 163.077411 131.500004) + (xy 163.051352 131.514106) + (xy 162.872955 131.652959) + (xy 162.87295 131.652963) + (xy 162.71985 131.819272) + (xy 162.719842 131.819283) + (xy 162.596198 132.008533) + (xy 162.505388 132.21556) + (xy 162.449892 132.43471) + (xy 162.431225 132.659993) + (xy 162.431225 132.660006) + (xy 162.449892 132.885289) + (xy 162.505388 133.104439) + (xy 162.596198 133.311466) + (xy 162.719842 133.500716) + (xy 162.71985 133.500727) + (xy 162.87295 133.667036) + (xy 162.872954 133.66704) + (xy 163.051351 133.805893) + (xy 163.079165 133.820945) + (xy 163.128755 133.870165) + (xy 163.143863 133.938382) + (xy 163.119692 134.003937) + (xy 163.079165 134.039054) + (xy 163.070866 134.043545) + (xy 163.051352 134.054106) + (xy 162.872955 134.192959) + (xy 162.87295 134.192963) + (xy 162.71985 134.359272) + (xy 162.719842 134.359283) + (xy 162.596198 134.548533) + (xy 162.505388 134.75556) + (xy 162.449892 134.97471) + (xy 162.431225 135.199993) + (xy 162.431225 135.200006) + (xy 162.449892 135.425289) + (xy 162.505388 135.644439) + (xy 162.596198 135.851466) + (xy 162.719842 136.040716) + (xy 162.71985 136.040727) + (xy 162.87295 136.207036) + (xy 162.872954 136.20704) + (xy 163.051351 136.345893) + (xy 163.079161 136.360943) + (xy 163.079165 136.360945) + (xy 163.128755 136.410165) + (xy 163.143863 136.478382) + (xy 163.119692 136.543937) + (xy 163.079165 136.579055) + (xy 163.051352 136.594106) + (xy 162.872955 136.732959) + (xy 162.87295 136.732963) + (xy 162.71985 136.899272) + (xy 162.719842 136.899283) + (xy 162.596198 137.088533) + (xy 162.505388 137.29556) + (xy 162.449892 137.51471) + (xy 162.431225 137.739993) + (xy 162.431225 137.740006) + (xy 162.449892 137.965289) + (xy 162.505388 138.184439) + (xy 162.596198 138.391466) + (xy 162.711522 138.567982) + (xy 162.719844 138.580719) + (xy 162.857245 138.729976) + (xy 162.888167 138.792629) + (xy 162.880307 138.862055) + (xy 162.83616 138.916211) + (xy 162.809349 138.93014) + (xy 162.694311 138.973046) + (xy 162.694306 138.973049) + (xy 162.579212 139.059209) + (xy 162.579209 139.059212) + (xy 162.493049 139.174306) + (xy 162.493045 139.174313) + (xy 162.442803 139.30902) + (xy 162.442801 139.309027) + (xy 162.4364 139.368555) + (xy 162.4364 140.03) + (xy 163.356804 140.03) + (xy 163.333155 140.066799) + (xy 163.292 140.206961) + (xy 163.292 140.353039) + (xy 163.333155 140.493201) + (xy 163.356804 140.53) + (xy 162.4364 140.53) + (xy 162.4364 141.191444) + (xy 162.442801 141.250972) + (xy 162.442803 141.250979) + (xy 162.493045 141.385686) + (xy 162.493049 141.385693) + (xy 162.579209 141.500787) + (xy 162.579212 141.50079) + (xy 162.694306 141.58695) + (xy 162.694313 141.586954) + (xy 162.82902 141.637196) + (xy 162.829027 141.637198) + (xy 162.888555 141.643599) + (xy 162.888572 141.6436) + (xy 163.55 141.6436) + (xy 163.55 140.724297) + (xy 163.655408 140.772435) + (xy 163.763666 140.788) + (xy 163.836334 140.788) + (xy 163.944592 140.772435) + (xy 164.05 140.724297) + (xy 164.05 141.6436) + (xy 164.711428 141.6436) + (xy 164.711444 141.643599) + (xy 164.770972 141.637198) + (xy 164.770979 141.637196) + (xy 164.905686 141.586954) + (xy 164.905689 141.586952) + (xy 164.995688 141.519579) + (xy 165.061152 141.495161) + (xy 165.129426 141.510012) + (xy 165.144312 141.519579) + (xy 165.23431 141.586952) + (xy 165.234313 141.586954) + (xy 165.36902 141.637196) + (xy 165.369027 141.637198) + (xy 165.428555 141.643599) + (xy 165.428572 141.6436) + (xy 166.09 141.6436) + (xy 166.09 140.724297) + (xy 166.195408 140.772435) + (xy 166.303666 140.788) + (xy 166.376334 140.788) + (xy 166.484592 140.772435) + (xy 166.59 140.724297) + (xy 166.59 141.6436) + (xy 167.251428 141.6436) + (xy 167.251444 141.643599) + (xy 167.310972 141.637198) + (xy 167.310979 141.637196) + (xy 167.445686 141.586954) + (xy 167.445693 141.58695) + (xy 167.560787 141.50079) + (xy 167.56079 141.500787) + (xy 167.64695 141.385693) + (xy 167.646954 141.385686) + (xy 167.697196 141.250979) + (xy 167.697198 141.250972) + (xy 167.703599 141.191444) + (xy 167.7036 141.191427) + (xy 167.7036 140.53) + (xy 166.783196 140.53) + (xy 166.806845 140.493201) + (xy 166.848 140.353039) + (xy 166.848 140.206961) + (xy 166.806845 140.066799) + (xy 166.783196 140.03) + (xy 167.7036 140.03) + (xy 167.7036 139.368572) + (xy 167.703599 139.368555) + (xy 167.697198 139.309027) + (xy 167.697196 139.30902) + (xy 167.646954 139.174313) + (xy 167.64695 139.174306) + (xy 167.56079 139.059212) + (xy 167.560787 139.059209) + (xy 167.445693 138.973049) + (xy 167.445686 138.973045) + (xy 167.330651 138.93014) + (xy 167.274717 138.888269) + (xy 167.2503 138.822804) + (xy 167.265152 138.754531) + (xy 167.282749 138.729981) + (xy 167.420156 138.580719) + (xy 167.543802 138.391465) + (xy 167.634611 138.184441) + (xy 167.634612 138.184436) + (xy 167.635539 138.181738) + (xy 167.636214 138.180783) + (xy 167.636671 138.179744) + (xy 167.636884 138.179837) + (xy 167.675925 138.124722) + (xy 167.740725 138.098592) + (xy 167.809364 138.111644) + (xy 167.860052 138.159733) + (xy 167.876759 138.218105) + (xy 167.87729 138.23502) + (xy 167.877291 138.235023) + (xy 167.88288 138.254263) + (xy 167.886824 138.273307) + (xy 167.889336 138.293187) + (xy 167.90649 138.336515) + (xy 167.908382 138.342043) + (xy 167.921381 138.386784) + (xy 167.93158 138.40403) + (xy 167.940138 138.421499) + (xy 167.947514 138.440128) + (xy 167.974898 138.477819) + (xy 167.978106 138.482703) + (xy 168.001827 138.522812) + (xy 168.001833 138.52282) + (xy 168.01599 138.536976) + (xy 168.028627 138.551771) + (xy 168.040406 138.567983) + (xy 168.074512 138.596198) + (xy 168.076309 138.597684) + (xy 168.08062 138.601606) + (xy 171.390348 141.911334) + (xy 174.697584 145.21857) + (xy 174.731069 145.279893) + (xy 174.733556 145.315517) + (xy 174.719732 145.499996) + (xy 174.719732 145.500004) + (xy 174.738777 145.754154) + (xy 174.79158 145.9855) + (xy 174.795492 146.002637) + (xy 174.888607 146.239888) + (xy 175.016041 146.460612) + (xy 175.17495 146.659877) + (xy 175.361783 146.833232) + (xy 175.572366 146.976805) + (xy 175.572371 146.976807) + (xy 175.572372 146.976808) + (xy 175.572373 146.976809) + (xy 175.694146 147.035451) + (xy 175.801992 147.087387) + (xy 175.801993 147.087387) + (xy 175.801996 147.087389) + (xy 176.045542 147.162513) + (xy 176.297565 147.2005) + (xy 176.552435 147.2005) + (xy 176.804458 147.162513) + (xy 177.048004 147.087389) + (xy 177.277634 146.976805) + (xy 177.488217 146.833232) + (xy 177.67505 146.659877) + (xy 177.833959 146.460612) + (xy 177.961393 146.239888) + (xy 178.054508 146.002637) + (xy 178.111222 145.754157) + (xy 178.123877 145.585289) + (xy 178.130268 145.500004) + (xy 178.130268 145.499995) + (xy 178.111222 145.245845) + (xy 178.088615 145.146799) + (xy 178.054508 144.997363) + (xy 177.961393 144.760112) + (xy 177.833959 144.539388) + (xy 177.67505 144.340123) + (xy 177.488217 144.166768) + (xy 177.277634 144.023195) + (xy 177.27763 144.023193) + (xy 177.277627 144.023191) + (xy 177.277626 144.02319) + (xy 177.048006 143.912612) + (xy 177.048008 143.912612) + (xy 176.96102 143.88578) + (xy 176.904969 143.86849) + (xy 176.846711 143.829921) + (xy 176.818553 143.765976) + (xy 176.829437 143.696959) + (xy 176.875906 143.644782) + (xy 176.90497 143.631509) + (xy 177.048004 143.587389) + (xy 177.277634 143.476805) + (xy 177.488217 143.333232) + (xy 177.67505 143.159877) + (xy 177.833959 142.960612) + (xy 177.961393 142.739888) + (xy 178.054508 142.502637) + (xy 178.111222 142.254157) + (xy 178.130268 142) + (xy 178.121987 141.8895) + (xy 178.114592 141.790816) + (xy 178.111222 141.745843) + (xy 178.054508 141.497363) + (xy 177.961393 141.260112) + (xy 177.833959 141.039388) + (xy 177.67505 140.840123) + (xy 177.488217 140.666768) + (xy 177.277634 140.523195) + (xy 177.27763 140.523193) + (xy 177.277627 140.523191) + (xy 177.277626 140.52319) + (xy 177.048006 140.412612) + (xy 177.048008 140.412612) + (xy 176.90497 140.368491) + (xy 176.846711 140.329921) + (xy 176.818553 140.265976) + (xy 176.829437 140.196959) + (xy 176.875906 140.144782) + (xy 176.90497 140.131509) + (xy 177.048004 140.087389) + (xy 177.229458 140.000005) + (xy 177.277626 139.976809) + (xy 177.277626 139.976808) + (xy 177.277634 139.976805) + (xy 177.488217 139.833232) + (xy 177.67505 139.659877) + (xy 177.833959 139.460612) + (xy 177.961393 139.239888) + (xy 178.054508 139.002637) + (xy 178.111222 138.754157) + (xy 178.123059 138.596197) + (xy 178.130268 138.500004) + (xy 178.130268 138.499995) + (xy 178.111222 138.245845) + (xy 178.108751 138.23502) + (xy 178.054508 137.997363) + (xy 177.961393 137.760112) + (xy 177.833959 137.539388) + (xy 177.67505 137.340123) + (xy 177.488217 137.166768) + (xy 177.277634 137.023195) + (xy 177.27763 137.023193) + (xy 177.277627 137.023191) + (xy 177.277626 137.02319) + (xy 177.048006 136.912612) + (xy 177.048008 136.912612) + (xy 176.90497 136.868491) + (xy 176.846711 136.829921) + (xy 176.818553 136.765976) + (xy 176.829437 136.696959) + (xy 176.875906 136.644782) + (xy 176.90497 136.631509) + (xy 177.048004 136.587389) + (xy 177.257477 136.486512) + (xy 177.277626 136.476809) + (xy 177.277626 136.476808) + (xy 177.277634 136.476805) + (xy 177.488217 136.333232) + (xy 177.67505 136.159877) + (xy 177.833959 135.960612) + (xy 177.961393 135.739888) + (xy 178.054508 135.502637) + (xy 178.111222 135.254157) + (xy 178.120415 135.131486) + (xy 178.130268 135.000004) + (xy 178.130268 134.999995) + (xy 178.111222 134.745845) + (xy 178.098125 134.688464) + (xy 178.054508 134.497363) + (xy 177.961393 134.260112) + (xy 177.833959 134.039388) + (xy 177.67505 133.840123) + (xy 177.488217 133.666768) + (xy 177.277634 133.523195) + (xy 177.27763 133.523193) + (xy 177.277627 133.523191) + (xy 177.277626 133.52319) + (xy 177.048006 133.412612) + (xy 177.048008 133.412612) + (xy 176.90497 133.368491) + (xy 176.846711 133.329921) + (xy 176.818553 133.265976) + (xy 176.829437 133.196959) + (xy 176.875906 133.144782) + (xy 176.90497 133.131509) + (xy 177.048004 133.087389) + (xy 177.277634 132.976805) + (xy 177.488217 132.833232) + (xy 177.67505 132.659877) + (xy 177.833959 132.460612) + (xy 177.961393 132.239888) + (xy 178.054508 132.002637) + (xy 178.111222 131.754157) + (xy 178.130268 131.5) + (xy 178.130197 131.499055) + (xy 178.113852 131.280945) + (xy 178.111222 131.245843) + (xy 178.054508 130.997363) + (xy 177.961393 130.760112) + (xy 177.833959 130.539388) + (xy 177.67505 130.340123) + (xy 177.488217 130.166768) + (xy 177.277634 130.023195) + (xy 177.27763 130.023193) + (xy 177.277627 130.023191) + (xy 177.277626 130.02319) + (xy 177.048006 129.912612) + (xy 177.048008 129.912612) + (xy 176.90497 129.868491) + (xy 176.846711 129.829921) + (xy 176.818553 129.765976) + (xy 176.829437 129.696959) + (xy 176.875906 129.644782) + (xy 176.90497 129.631509) + (xy 177.048004 129.587389) + (xy 177.277634 129.476805) + (xy 177.488217 129.333232) + (xy 177.67505 129.159877) + (xy 177.833959 128.960612) + (xy 177.961393 128.739888) + (xy 178.054508 128.502637) + (xy 178.111222 128.254157) + (xy 178.124232 128.080548) + (xy 178.130268 128.000004) + (xy 178.130268 127.999995) + (xy 178.111222 127.745845) + (xy 178.084781 127.63) + (xy 178.054508 127.497363) + (xy 177.961393 127.260112) + (xy 177.833959 127.039388) + (xy 177.67505 126.840123) + (xy 177.488217 126.666768) + (xy 177.277634 126.523195) + (xy 177.27763 126.523193) + (xy 177.277627 126.523191) + (xy 177.277626 126.52319) + (xy 177.048009 126.412613) + (xy 177.048006 126.412612) + (xy 177.048004 126.412611) + (xy 176.982445 126.392388) + (xy 176.904969 126.36849) + (xy 176.846711 126.329919) + (xy 176.818553 126.265974) + (xy 176.829437 126.196957) + (xy 176.875906 126.144781) + (xy 176.904965 126.13151) + (xy 177.048004 126.087389) + (xy 177.277634 125.976805) + (xy 177.488217 125.833232) + (xy 177.67505 125.659877) + (xy 177.833959 125.460612) + (xy 177.961393 125.239888) + (xy 178.054508 125.002637) + (xy 178.111222 124.754157) + (xy 178.119384 124.645232) + (xy 178.130268 124.500004) + (xy 178.130268 124.499995) + (xy 178.111222 124.245845) + (xy 178.100594 124.199281) + (xy 178.054508 123.997363) + (xy 177.961393 123.760112) + (xy 177.833959 123.539388) + (xy 177.67505 123.340123) + (xy 177.488217 123.166768) + (xy 177.277634 123.023195) + (xy 177.27763 123.023193) + (xy 177.277627 123.023191) + (xy 177.277626 123.02319) + (xy 177.048006 122.912612) + (xy 177.048008 122.912612) + (xy 176.90497 122.868491) + (xy 176.846711 122.829921) + (xy 176.818553 122.765976) + (xy 176.829437 122.696959) + (xy 176.875906 122.644782) + (xy 176.90497 122.631509) + (xy 177.048004 122.587389) + (xy 177.277634 122.476805) + (xy 177.488217 122.333232) + (xy 177.67505 122.159877) + (xy 177.833959 121.960612) + (xy 177.961393 121.739888) + (xy 178.054508 121.502637) + (xy 178.111222 121.254157) + (xy 178.130268 121) + (xy 178.128333 120.974184) + (xy 178.111222 120.745845) + (xy 178.08609 120.635735) + (xy 178.054508 120.497363) + (xy 177.961393 120.260112) + (xy 177.833959 120.039388) + (xy 177.67505 119.840123) + (xy 177.488217 119.666768) + (xy 177.277634 119.523195) + (xy 177.27763 119.523193) + (xy 177.277627 119.523191) + (xy 177.277626 119.52319) + (xy 177.048006 119.412612) + (xy 177.048008 119.412612) + (xy 176.90497 119.368491) + (xy 176.846711 119.329921) + (xy 176.818553 119.265976) + (xy 176.829437 119.196959) + (xy 176.875906 119.144782) + (xy 176.90497 119.131509) + (xy 177.048004 119.087389) + (xy 177.277634 118.976805) + (xy 177.488217 118.833232) + (xy 177.67505 118.659877) + (xy 177.833959 118.460612) + (xy 177.961393 118.239888) + (xy 178.054508 118.002637) + (xy 178.111222 117.754157) + (xy 178.121275 117.620006) + (xy 178.130268 117.500004) + (xy 178.130268 117.499995) + (xy 178.111222 117.245845) + (xy 178.09955 117.194707) + (xy 178.054508 116.997363) + (xy 177.961393 116.760112) + (xy 177.833959 116.539388) + (xy 177.67505 116.340123) + (xy 177.488217 116.166768) + (xy 177.277634 116.023195) + (xy 177.27763 116.023193) + (xy 177.277627 116.023191) + (xy 177.277626 116.02319) + (xy 177.048006 115.912612) + (xy 177.048008 115.912612) + (xy 176.90497 115.868491) + (xy 176.846711 115.829921) + (xy 176.818553 115.765976) + (xy 176.829437 115.696959) + (xy 176.875906 115.644782) + (xy 176.90497 115.631509) + (xy 177.048004 115.587389) + (xy 177.277634 115.476805) + (xy 177.488217 115.333232) + (xy 177.67505 115.159877) + (xy 177.833959 114.960612) + (xy 177.961393 114.739888) + (xy 178.054508 114.502637) + (xy 178.111222 114.254157) + (xy 178.124801 114.072959) + (xy 178.130268 114.000004) + (xy 178.130268 113.999995) + (xy 178.115402 113.80162) + (xy 178.111222 113.745843) + (xy 178.054508 113.497363) + (xy 177.961393 113.260112) + (xy 177.833959 113.039388) + (xy 177.67505 112.840123) + (xy 177.488217 112.666768) + (xy 177.277634 112.523195) + (xy 177.27763 112.523193) + (xy 177.277627 112.523191) + (xy 177.277626 112.52319) + (xy 177.048006 112.412612) + (xy 177.048008 112.412612) + (xy 176.90497 112.368491) + (xy 176.846711 112.329921) + (xy 176.818553 112.265976) + (xy 176.829437 112.196959) + (xy 176.875906 112.144782) + (xy 176.90497 112.131509) + (xy 177.048004 112.087389) + (xy 177.277634 111.976805) + (xy 177.488217 111.833232) + (xy 177.67505 111.659877) + (xy 177.833959 111.460612) + (xy 177.961393 111.239888) + (xy 178.054508 111.002637) + (xy 178.111222 110.754157) + (xy 178.120961 110.624199) + (xy 178.130268 110.500004) + (xy 178.130268 110.499995) + (xy 178.11302 110.269841) + (xy 178.111222 110.245843) + (xy 178.054508 109.997363) + (xy 177.961393 109.760112) + (xy 177.833959 109.539388) + (xy 177.67505 109.340123) + (xy 177.488217 109.166768) + (xy 177.277634 109.023195) + (xy 177.27763 109.023193) + (xy 177.277627 109.023191) + (xy 177.277626 109.02319) + (xy 177.048006 108.912612) + (xy 177.048008 108.912612) + (xy 176.90497 108.868491) + (xy 176.846711 108.829921) + (xy 176.818553 108.765976) + (xy 176.829437 108.696959) + (xy 176.875906 108.644782) + (xy 176.90497 108.631509) + (xy 177.048004 108.587389) + (xy 177.277634 108.476805) + (xy 177.488217 108.333232) + (xy 177.67505 108.159877) + (xy 177.833959 107.960612) + (xy 177.961393 107.739888) + (xy 178.054508 107.502637) + (xy 178.111222 107.254157) + (xy 178.130268 107) + (xy 178.111222 106.745843) + (xy 178.054508 106.497363) + (xy 177.961393 106.260112) + (xy 177.833959 106.039388) + (xy 177.67505 105.840123) + (xy 177.488217 105.666768) + (xy 177.277634 105.523195) + (xy 177.27763 105.523193) + (xy 177.277627 105.523191) + (xy 177.277626 105.52319) + (xy 177.048006 105.412612) + (xy 177.048008 105.412612) + (xy 176.90497 105.368491) + (xy 176.846711 105.329921) + (xy 176.818553 105.265976) + (xy 176.829437 105.196959) + (xy 176.875906 105.144782) + (xy 176.90497 105.131509) + (xy 177.048004 105.087389) + (xy 177.277634 104.976805) + (xy 177.488217 104.833232) + (xy 177.67505 104.659877) + (xy 177.833959 104.460612) + (xy 177.961393 104.239888) + (xy 178.054508 104.002637) + (xy 178.111222 103.754157) + (xy 178.125843 103.559052) + (xy 178.130268 103.500004) + (xy 178.130268 103.499995) + (xy 178.111222 103.245845) + (xy 178.0978 103.18704) + (xy 178.054508 102.997363) + (xy 177.961393 102.760112) + (xy 177.833959 102.539388) + (xy 177.67505 102.340123) + (xy 177.488217 102.166768) + (xy 177.277634 102.023195) + (xy 177.27763 102.023193) + (xy 177.277627 102.023191) + (xy 177.277626 102.02319) + (xy 177.048006 101.912612) + (xy 177.048008 101.912612) + (xy 176.90497 101.868491) + (xy 176.846711 101.829921) + (xy 176.818553 101.765976) + (xy 176.829437 101.696959) + (xy 176.875906 101.644782) + (xy 176.90497 101.631509) + (xy 177.048004 101.587389) + (xy 177.229458 101.500005) + (xy 177.277626 101.476809) + (xy 177.277626 101.476808) + (xy 177.277634 101.476805) + (xy 177.488217 101.333232) + (xy 177.67505 101.159877) + (xy 177.833959 100.960612) + (xy 177.961393 100.739888) + (xy 178.054508 100.502637) + (xy 178.111222 100.254157) + (xy 178.121426 100.117989) + (xy 178.130268 100.000004) + (xy 178.130268 99.999995) + (xy 178.111222 99.745845) + (xy 178.088608 99.646768) + (xy 178.054508 99.497363) + (xy 177.961393 99.260112) + (xy 177.833959 99.039388) + (xy 177.67505 98.840123) + (xy 177.488217 98.666768) + (xy 177.277634 98.523195) + (xy 177.27763 98.523193) + (xy 177.277627 98.523191) + (xy 177.277626 98.52319) + (xy 177.048006 98.412612) + (xy 177.048008 98.412612) + (xy 176.937036 98.378382) + (xy 176.904969 98.36849) + (xy 176.846711 98.329921) + (xy 176.818553 98.265976) + (xy 176.829437 98.196959) + (xy 176.875906 98.144782) + (xy 176.90497 98.131509) + (xy 177.048004 98.087389) + (xy 177.277634 97.976805) + (xy 177.488217 97.833232) + (xy 177.67505 97.659877) + (xy 177.833959 97.460612) + (xy 177.961393 97.239888) + (xy 178.054508 97.002637) + (xy 178.111222 96.754157) + (xy 178.130268 96.5) + (xy 178.126411 96.448535) + (xy 178.113784 96.280032) + (xy 178.111222 96.245843) + (xy 178.054508 95.997363) + (xy 177.961393 95.760112) + (xy 177.833959 95.539388) + (xy 177.67505 95.340123) + (xy 177.488217 95.166768) + (xy 177.277634 95.023195) + (xy 177.27763 95.023193) + (xy 177.277627 95.023191) + (xy 177.277626 95.02319) + (xy 177.048006 94.912612) + (xy 177.048008 94.912612) + (xy 176.90497 94.868491) + (xy 176.846711 94.829921) + (xy 176.818553 94.765976) + (xy 176.829437 94.696959) + (xy 176.875906 94.644782) + (xy 176.90497 94.631509) + (xy 177.048004 94.587389) + (xy 177.277634 94.476805) + (xy 177.488217 94.333232) + (xy 177.67505 94.159877) + (xy 177.833959 93.960612) + (xy 177.961393 93.739888) + (xy 178.054508 93.502637) + (xy 178.111222 93.254157) + (xy 178.125802 93.059594) + (xy 178.130268 93.000004) + (xy 178.130268 92.999995) + (xy 178.111222 92.745845) + (xy 178.104225 92.715191) + (xy 178.054508 92.497363) + (xy 177.961393 92.260112) + (xy 177.833959 92.039388) + (xy 177.67505 91.840123) + (xy 177.488217 91.666768) + (xy 177.277634 91.523195) + (xy 177.27763 91.523193) + (xy 177.277627 91.523191) + (xy 177.277626 91.52319) + (xy 177.048006 91.412612) + (xy 177.048008 91.412612) + (xy 176.804466 91.337489) + (xy 176.804462 91.337488) + (xy 176.804458 91.337487) + (xy 176.683231 91.319214) + (xy 176.55244 91.2995) + (xy 176.552435 91.2995) + (xy 176.297565 91.2995) + (xy 176.297559 91.2995) + (xy 176.140609 91.323157) + (xy 176.045542 91.337487) + (xy 176.045538 91.337488) + (xy 176.045539 91.337488) + (xy 176.045533 91.337489) + (xy 175.801992 91.412612) + (xy 175.572373 91.52319) + (xy 175.572372 91.523191) + (xy 175.361782 91.666768) + (xy 175.174952 91.840121) + (xy 175.17495 91.840123) + (xy 175.016041 92.039388) + (xy 174.888608 92.260109) + (xy 174.795492 92.497362) + (xy 174.79549 92.497369) + (xy 174.738777 92.745845) + (xy 174.719732 92.999995) + (xy 174.719732 93.000004) + (xy 174.738777 93.254154) + (xy 174.794875 93.499937) + (xy 174.795492 93.502637) + (xy 174.888607 93.739888) + (xy 175.016041 93.960612) + (xy 175.17495 94.159877) + (xy 175.361783 94.333232) + (xy 175.572366 94.476805) + (xy 175.572371 94.476807) + (xy 175.572372 94.476808) + (xy 175.572373 94.476809) + (xy 175.694328 94.535538) + (xy 175.801992 94.587387) + (xy 175.801993 94.587387) + (xy 175.801996 94.587389) + (xy 175.865418 94.606952) + (xy 175.945029 94.631509) + (xy 176.003288 94.67008) + (xy 176.031446 94.734024) + (xy 176.020562 94.803041) + (xy 175.974093 94.855218) + (xy 175.945029 94.868491) + (xy 175.801992 94.912612) + (xy 175.572373 95.02319) + (xy 175.572372 95.023191) + (xy 175.361782 95.166768) + (xy 175.174952 95.340121) + (xy 175.17495 95.340123) + (xy 175.016041 95.539388) + (xy 174.888608 95.760109) + (xy 174.795492 95.997362) + (xy 174.79549 95.997369) + (xy 174.738777 96.245845) + (xy 174.719732 96.499995) + (xy 174.719732 96.500004) + (xy 174.738777 96.754154) + (xy 174.769052 96.886799) + (xy 174.795492 97.002637) + (xy 174.888607 97.239888) + (xy 175.016041 97.460612) + (xy 175.17495 97.659877) + (xy 175.361783 97.833232) + (xy 175.572366 97.976805) + (xy 175.572371 97.976807) + (xy 175.572372 97.976808) + (xy 175.572373 97.976809) + (xy 175.689635 98.033279) + (xy 175.801992 98.087387) + (xy 175.801993 98.087387) + (xy 175.801996 98.087389) + (xy 175.875043 98.109921) + (xy 175.945029 98.131509) + (xy 176.003288 98.17008) + (xy 176.031446 98.234024) + (xy 176.020562 98.303041) + (xy 175.974093 98.355218) + (xy 175.945029 98.368491) + (xy 175.801992 98.412612) + (xy 175.572373 98.52319) + (xy 175.572372 98.523191) + (xy 175.361782 98.666768) + (xy 175.174952 98.840121) + (xy 175.17495 98.840123) + (xy 175.016041 99.039388) + (xy 174.888608 99.260109) + (xy 174.795492 99.497362) + (xy 174.79549 99.497369) + (xy 174.738777 99.745845) + (xy 174.719732 99.999995) + (xy 174.719732 100.000004) + (xy 174.738777 100.254154) + (xy 174.792328 100.488777) + (xy 174.795492 100.502637) + (xy 174.888607 100.739888) + (xy 175.016041 100.960612) + (xy 175.17495 101.159877) + (xy 175.361783 101.333232) + (xy 175.572366 101.476805) + (xy 175.572371 101.476807) + (xy 175.572372 101.476808) + (xy 175.572373 101.476809) + (xy 175.673482 101.5255) + (xy 175.801996 101.587389) + (xy 175.945029 101.631508) + (xy 176.003287 101.670078) + (xy 176.031445 101.734023) + (xy 176.020562 101.803039) + (xy 175.974094 101.855216) + (xy 175.94503 101.86849) + (xy 175.80199 101.912613) + (xy 175.572373 102.02319) + (xy 175.572372 102.023191) + (xy 175.361782 102.166768) + (xy 175.174952 102.340121) + (xy 175.17495 102.340123) + (xy 175.016041 102.539388) + (xy 174.888608 102.760109) + (xy 174.795492 102.997362) + (xy 174.79549 102.997369) + (xy 174.738777 103.245845) + (xy 174.719732 103.499995) + (xy 174.719732 103.500004) + (xy 174.738777 103.754154) + (xy 174.789724 103.977369) + (xy 174.795492 104.002637) + (xy 174.888607 104.239888) + (xy 175.016041 104.460612) + (xy 175.17495 104.659877) + (xy 175.361783 104.833232) + (xy 175.572366 104.976805) + (xy 175.572371 104.976807) + (xy 175.572372 104.976808) + (xy 175.572373 104.976809) + (xy 175.694328 105.035538) + (xy 175.801992 105.087387) + (xy 175.801993 105.087387) + (xy 175.801996 105.087389) + (xy 175.90836 105.120197) + (xy 175.945029 105.131509) + (xy 176.003288 105.17008) + (xy 176.031446 105.234024) + (xy 176.020562 105.303041) + (xy 175.974093 105.355218) + (xy 175.945029 105.368491) + (xy 175.801992 105.412612) + (xy 175.572373 105.52319) + (xy 175.572372 105.523191) + (xy 175.361782 105.666768) + (xy 175.174952 105.840121) + (xy 175.17495 105.840123) + (xy 175.016041 106.039388) + (xy 174.888608 106.260109) + (xy 174.795492 106.497362) + (xy 174.79549 106.497369) + (xy 174.738777 106.745845) + (xy 174.719732 106.999995) + (xy 174.719732 107.000004) + (xy 174.738777 107.254154) + (xy 174.795489 107.502625) + (xy 174.795492 107.502637) + (xy 174.812668 107.5464) + (xy 174.834118 107.601055) + (xy 174.840286 107.670651) + (xy 174.807847 107.732535) + (xy 174.80637 107.734037) + (xy 171.916208 110.624199) + (xy 171.903951 110.63402) + (xy 171.904134 110.634241) + (xy 171.898122 110.639214) + (xy 171.851432 110.688932) + (xy 171.850079 110.690329) + (xy 171.829889 110.710519) + (xy 171.829877 110.710532) + (xy 171.825621 110.716017) + (xy 171.821837 110.720447) + (xy 171.789937 110.754418) + (xy 171.789936 110.75442) + (xy 171.780284 110.771976) + (xy 171.76961 110.788226) + (xy 171.757329 110.804061) + (xy 171.757324 110.804068) + (xy 171.738815 110.846838) + (xy 171.736245 110.852084) + (xy 171.713803 110.892906) + (xy 171.708822 110.912307) + (xy 171.702521 110.93071) + (xy 171.694562 110.949102) + (xy 171.694561 110.949105) + (xy 171.687271 110.995127) + (xy 171.686087 111.000846) + (xy 171.674501 111.045972) + (xy 171.674499 111.045984) + (xy 171.674499 111.06602) + (xy 171.672973 111.085411) + (xy 171.66984 111.105194) + (xy 171.66984 111.105195) + (xy 171.674225 111.151583) + (xy 171.6745 111.157421) + (xy 171.6745 114.253151) + (xy 171.654815 114.32019) + (xy 171.638181 114.340832) + (xy 167.940832 118.038181) + (xy 167.879509 118.071666) + (xy 167.853151 118.0745) + (xy 167.732266 118.0745) + (xy 167.665227 118.054815) + (xy 167.619472 118.002011) + (xy 167.609528 117.932853) + (xy 167.618711 117.900689) + (xy 167.618768 117.900559) + (xy 167.634611 117.864441) + (xy 167.690107 117.645293) + (xy 167.708775 117.42) + (xy 167.708775 117.419993) + (xy 167.690107 117.19471) + (xy 167.690107 117.194707) + (xy 167.634611 116.975559) + (xy 167.543802 116.768535) + (xy 167.420156 116.579281) + (xy 167.420153 116.579278) + (xy 167.420149 116.579272) + (xy 167.267049 116.412963) + (xy 167.267048 116.412962) + (xy 167.267046 116.41296) + (xy 167.088649 116.274107) + (xy 167.088647 116.274106) + (xy 167.088646 116.274105) + (xy 167.088639 116.2741) + (xy 167.060836 116.259055) + (xy 167.011244 116.209837) + (xy 166.996135 116.14162) + (xy 167.020306 116.076064) + (xy 167.060836 116.040945) + (xy 167.088639 116.025899) + (xy 167.088642 116.025896) + (xy 167.088649 116.025893) + (xy 167.267046 115.88704) + (xy 167.378494 115.765976) + (xy 167.420149 115.720727) + (xy 167.420151 115.720724) + (xy 167.420156 115.720719) + (xy 167.543802 115.531465) + (xy 167.634611 115.324441) + (xy 167.690107 115.105293) + (xy 167.697574 115.015175) + (xy 167.708775 114.880006) + (xy 167.708775 114.879993) + (xy 167.690107 114.65471) + (xy 167.690107 114.654707) + (xy 167.634611 114.435559) + (xy 167.543802 114.228535) + (xy 167.524448 114.198912) + (xy 167.452698 114.08909) + (xy 167.420156 114.039281) + (xy 167.420153 114.039278) + (xy 167.420149 114.039272) + (xy 167.267049 113.872963) + (xy 167.267048 113.872962) + (xy 167.267046 113.87296) + (xy 167.088649 113.734107) + (xy 167.088647 113.734106) + (xy 167.088646 113.734105) + (xy 167.088643 113.734103) + (xy 167.060833 113.719053) + (xy 167.011243 113.669833) + (xy 166.996136 113.601616) + (xy 167.020307 113.536061) + (xy 167.060835 113.500945) + (xy 167.088649 113.485893) + (xy 167.267046 113.34704) + (xy 167.366832 113.238643) + (xy 167.420149 113.180727) + (xy 167.420151 113.180724) + (xy 167.420156 113.180719) + (xy 167.543802 112.991465) + (xy 167.610188 112.840121) + (xy 167.623536 112.80969) + (xy 167.668492 112.756204) + (xy 167.735228 112.735514) + (xy 167.737092 112.7355) + (xy 168.057257 112.7355) + (xy 168.072877 112.737224) + (xy 168.072904 112.736939) + (xy 168.080666 112.737673) + (xy 168.080666 112.737672) + (xy 168.080667 112.737673) + (xy 168.083999 112.737568) + (xy 168.148847 112.735531) + (xy 168.150794 112.7355) + (xy 168.179347 112.7355) + (xy 168.17935 112.7355) + (xy 168.186228 112.73463) + (xy 168.192041 112.734172) + (xy 168.238627 112.732709) + (xy 168.257869 112.727117) + (xy 168.276912 112.723174) + (xy 168.296792 112.720664) + (xy 168.340122 112.703507) + (xy 168.345646 112.701617) + (xy 168.349396 112.700527) + (xy 168.39039 112.688618) + (xy 168.407629 112.678422) + (xy 168.425103 112.669862) + (xy 168.443727 112.662488) + (xy 168.443727 112.662487) + (xy 168.443732 112.662486) + (xy 168.481449 112.635082) + (xy 168.486305 112.631892) + (xy 168.52642 112.60817) + (xy 168.540589 112.593999) + (xy 168.555379 112.581368) + (xy 168.571587 112.569594) + (xy 168.601299 112.533676) + (xy 168.605212 112.529376) + (xy 173.133786 108.000802) + (xy 173.146048 107.99098) + (xy 173.145865 107.990759) + (xy 173.151873 107.985788) + (xy 173.151877 107.985786) + (xy 173.198649 107.935977) + (xy 173.199891 107.934697) + (xy 173.22012 107.91447) + (xy 173.224373 107.908986) + (xy 173.22815 107.904563) + (xy 173.260062 107.870582) + (xy 173.269714 107.853023) + (xy 173.280389 107.836772) + (xy 173.292674 107.820936) + (xy 173.311186 107.778152) + (xy 173.313742 107.772935) + (xy 173.335779 107.732853) + (xy 173.336194 107.732098) + (xy 173.336194 107.732097) + (xy 173.336197 107.732092) + (xy 173.34118 107.71268) + (xy 173.347477 107.694291) + (xy 173.355438 107.675895) + (xy 173.362729 107.629853) + (xy 173.363908 107.624162) + (xy 173.3755 107.579019) + (xy 173.3755 107.558974) + (xy 173.377025 107.539591) + (xy 173.38016 107.519804) + (xy 173.375775 107.473415) + (xy 173.3755 107.467577) + (xy 173.3755 89.046847) + (xy 173.395185 88.979808) + (xy 173.411814 88.959171) + (xy 173.809167 88.561818) + (xy 173.87049 88.528334) + (xy 173.896848 88.5255) + (xy 174.759172 88.5255) + (xy 174.826211 88.545185) + (xy 174.871966 88.597989) + (xy 174.874588 88.60417) + (xy 174.888607 88.639888) + (xy 175.016041 88.860612) + (xy 175.17495 89.059877) + (xy 175.361783 89.233232) + (xy 175.572366 89.376805) + (xy 175.572371 89.376807) + (xy 175.572372 89.376808) + (xy 175.572373 89.376809) + (xy 175.694328 89.435538) + (xy 175.801992 89.487387) + (xy 175.801993 89.487387) + (xy 175.801996 89.487389) + (xy 176.045542 89.562513) + (xy 176.297565 89.6005) + (xy 176.552435 89.6005) + (xy 176.804458 89.562513) + (xy 177.048004 89.487389) + (xy 177.277634 89.376805) + (xy 177.488217 89.233232) + (xy 177.67505 89.059877) + (xy 177.833959 88.860612) + (xy 177.961393 88.639888) + (xy 178.054508 88.402637) + (xy 178.111222 88.154157) + (xy 178.12706 87.942812) + (xy 178.130268 87.900004) + (xy 178.130268 87.899995) + (xy 178.111222 87.645845) + (xy 178.109371 87.637736) + (xy 178.054508 87.397363) + (xy 177.961393 87.160112) + (xy 177.833959 86.939388) + (xy 177.67505 86.740123) + (xy 177.488217 86.566768) + (xy 177.277634 86.423195) + (xy 177.27763 86.423193) + (xy 177.277627 86.423191) + (xy 177.277626 86.42319) + (xy 177.048006 86.312612) + (xy 177.048008 86.312612) + (xy 176.96102 86.28578) + (xy 176.904969 86.26849) + (xy 176.846711 86.229921) + (xy 176.818553 86.165976) + (xy 176.829437 86.096959) + (xy 176.875906 86.044782) + (xy 176.90497 86.031509) + (xy 177.048004 85.987389) + (xy 177.277634 85.876805) + (xy 177.488217 85.733232) + (xy 177.67505 85.559877) + (xy 177.833959 85.360612) + (xy 177.961393 85.139888) + (xy 178.054508 84.902637) + (xy 178.111222 84.654157) + (xy 178.119384 84.545232) + (xy 178.130268 84.400004) + (xy 178.130268 84.399995) + (xy 178.111222 84.145845) + (xy 178.103334 84.111287) + (xy 178.054508 83.897363) + (xy 177.961393 83.660112) + (xy 177.833959 83.439388) + (xy 177.67505 83.240123) + (xy 177.488217 83.066768) + (xy 177.277634 82.923195) + (xy 177.27763 82.923193) + (xy 177.277627 82.923191) + (xy 177.277626 82.92319) + (xy 177.048006 82.812612) + (xy 177.048008 82.812612) + (xy 176.90497 82.768491) + (xy 176.846711 82.729921) + (xy 176.818553 82.665976) + (xy 176.829437 82.596959) + (xy 176.875906 82.544782) + (xy 176.90497 82.531509) + (xy 177.048004 82.487389) + (xy 177.277634 82.376805) + (xy 177.488217 82.233232) + (xy 177.67505 82.059877) + (xy 177.833959 81.860612) + (xy 177.961393 81.639888) + (xy 178.054508 81.402637) + (xy 178.111222 81.154157) + (xy 178.123577 80.989283) + (xy 178.130268 80.900004) + (xy 178.130268 80.899995) + (xy 178.111222 80.645845) + (xy 178.108504 80.633937) + (xy 178.054508 80.397363) + (xy 177.961393 80.160112) + (xy 177.833959 79.939388) + (xy 177.67505 79.740123) + (xy 177.488217 79.566768) + (xy 177.277634 79.423195) + (xy 177.27763 79.423193) + (xy 177.277627 79.423191) + (xy 177.277626 79.42319) + (xy 177.048009 79.312613) + (xy 177.048006 79.312612) + (xy 177.048004 79.312611) + (xy 176.974701 79.29) + (xy 176.904969 79.26849) + (xy 176.846711 79.229919) + (xy 176.818553 79.165974) + (xy 176.829437 79.096957) + (xy 176.875906 79.044781) + (xy 176.904965 79.03151) + (xy 177.048004 78.987389) + (xy 177.277634 78.876805) + (xy 177.488217 78.733232) + (xy 177.67505 78.559877) + (xy 177.833959 78.360612) + (xy 177.961393 78.139888) + (xy 178.054508 77.902637) + (xy 178.111222 77.654157) + (xy 178.122444 77.504409) + (xy 178.130268 77.400004) + (xy 178.130268 77.399995) + (xy 178.111222 77.145845) + (xy 178.054509 76.897369) + (xy 178.054508 76.897363) + (xy 177.961393 76.660112) + (xy 177.833959 76.439388) + (xy 177.67505 76.240123) + (xy 177.488217 76.066768) + (xy 177.277634 75.923195) + (xy 177.27763 75.923193) + (xy 177.277627 75.923191) + (xy 177.277626 75.92319) + (xy 177.048006 75.812612) + (xy 177.048008 75.812612) + (xy 176.90497 75.768491) + (xy 176.846711 75.729921) + (xy 176.818553 75.665976) + (xy 176.829437 75.596959) + (xy 176.875906 75.544782) + (xy 176.90497 75.531509) + (xy 177.048004 75.487389) + (xy 177.277634 75.376805) + (xy 177.488217 75.233232) + (xy 177.67505 75.059877) + (xy 177.833959 74.860612) + (xy 177.961393 74.639888) + (xy 178.054508 74.402637) + (xy 178.111222 74.154157) + (xy 178.12392 73.984707) + (xy 178.130268 73.900004) + (xy 178.130268 73.899995) + (xy 178.111222 73.645845) + (xy 178.095972 73.579031) + (xy 178.054508 73.397363) + (xy 177.961393 73.160112) + (xy 177.833959 72.939388) + (xy 177.67505 72.740123) + (xy 177.488217 72.566768) + (xy 177.277634 72.423195) + (xy 177.27763 72.423193) + (xy 177.277627 72.423191) + (xy 177.277626 72.42319) + (xy 177.048006 72.312612) + (xy 177.048008 72.312612) + (xy 176.90497 72.268491) + (xy 176.846711 72.229921) + (xy 176.818553 72.165976) + (xy 176.829437 72.096959) + (xy 176.875906 72.044782) + (xy 176.90497 72.031509) + (xy 177.048004 71.987389) + (xy 177.277634 71.876805) + (xy 177.488217 71.733232) + (xy 177.67505 71.559877) + (xy 177.833959 71.360612) + (xy 177.961393 71.139888) + (xy 178.054508 70.902637) + (xy 178.111222 70.654157) + (xy 178.12658 70.449212) + (xy 178.130268 70.400004) + (xy 178.130268 70.399995) + (xy 178.111222 70.145845) + (xy 178.106657 70.125846) + (xy 178.054508 69.897363) + (xy 177.961393 69.660112) + (xy 177.833959 69.439388) + (xy 177.67505 69.240123) + (xy 177.488217 69.066768) + (xy 177.277634 68.923195) + (xy 177.27763 68.923193) + (xy 177.277627 68.923191) + (xy 177.277626 68.92319) + (xy 177.048006 68.812612) + (xy 177.048008 68.812612) + (xy 176.90497 68.768491) + (xy 176.846711 68.729921) + (xy 176.818553 68.665976) + (xy 176.829437 68.596959) + (xy 176.875906 68.544782) + (xy 176.90497 68.531509) + (xy 177.048004 68.487389) + (xy 177.277634 68.376805) + (xy 177.488217 68.233232) + (xy 177.67505 68.059877) + (xy 177.833959 67.860612) + (xy 177.961393 67.639888) + (xy 178.054508 67.402637) + (xy 178.111222 67.154157) + (xy 178.123402 66.991618) + (xy 178.130268 66.900004) + (xy 178.130268 66.899995) + (xy 178.116663 66.718459) + (xy 178.111222 66.645843) + (xy 178.054508 66.397363) + (xy 177.961393 66.160112) + (xy 177.833959 65.939388) + (xy 177.67505 65.740123) + (xy 177.488217 65.566768) + (xy 177.277634 65.423195) + (xy 177.27763 65.423193) + (xy 177.277627 65.423191) + (xy 177.277626 65.42319) + (xy 177.048009 65.312613) + (xy 177.048006 65.312612) + (xy 177.048004 65.312611) + (xy 176.982445 65.292388) + (xy 176.904969 65.26849) + (xy 176.846711 65.229919) + (xy 176.818553 65.165974) + (xy 176.829437 65.096957) + (xy 176.875906 65.044781) + (xy 176.904965 65.03151) + (xy 177.048004 64.987389) + (xy 177.277634 64.876805) + (xy 177.488217 64.733232) + (xy 177.67505 64.559877) + (xy 177.833959 64.360612) + (xy 177.961393 64.139888) + (xy 178.054508 63.902637) + (xy 178.111222 63.654157) + (xy 178.126981 63.443867) + (xy 178.130268 63.400004) + (xy 178.130268 63.399995) + (xy 178.115033 63.196705) + (xy 178.111222 63.145843) + (xy 178.054508 62.897363) + (xy 177.961393 62.660112) + (xy 177.833959 62.439388) + (xy 177.67505 62.240123) + (xy 177.488217 62.066768) + (xy 177.277634 61.923195) + (xy 177.27763 61.923193) + (xy 177.277627 61.923191) + (xy 177.277626 61.92319) + (xy 177.048006 61.812612) + (xy 177.048008 61.812612) + (xy 176.804466 61.737489) + (xy 176.804462 61.737488) + (xy 176.804458 61.737487) + (xy 176.683231 61.719214) + (xy 176.55244 61.6995) + (xy 176.552435 61.6995) + (xy 176.297565 61.6995) + (xy 176.297559 61.6995) + (xy 176.140609 61.723157) + (xy 176.045542 61.737487) + (xy 176.045538 61.737488) + (xy 176.045539 61.737488) + (xy 176.045533 61.737489) + (xy 175.801992 61.812612) + (xy 175.572373 61.92319) + (xy 175.572372 61.923191) + (xy 175.361782 62.066768) + (xy 175.174952 62.240121) + (xy 175.17495 62.240123) + (xy 175.016041 62.439388) + (xy 174.888608 62.660109) + (xy 174.795492 62.897362) + (xy 174.79549 62.897369) + (xy 174.738777 63.145845) + (xy 174.719732 63.399995) + (xy 174.719732 63.400004) + (xy 174.738777 63.654154) + (xy 174.79549 63.90263) + (xy 174.795493 63.902642) + (xy 174.841164 64.019008) + (xy 174.847333 64.088605) + (xy 174.814895 64.150488) + (xy 174.813417 64.151991) + (xy 169.216208 69.749199) + (xy 169.203951 69.75902) + (xy 169.204134 69.759241) + (xy 169.198122 69.764214) + (xy 169.151432 69.813932) + (xy 169.150079 69.815329) + (xy 169.129889 69.835519) + (xy 169.129877 69.835532) + (xy 169.125621 69.841017) + (xy 169.121837 69.845447) + (xy 169.089937 69.879418) + (xy 169.089936 69.87942) + (xy 169.080284 69.896976) + (xy 169.06961 69.913226) + (xy 169.057329 69.929061) + (xy 169.057324 69.929068) + (xy 169.038815 69.971838) + (xy 169.036245 69.977084) + (xy 169.013803 70.017906) + (xy 169.008822 70.037307) + (xy 169.002521 70.05571) + (xy 168.994562 70.074102) + (xy 168.994561 70.074105) + (xy 168.987271 70.120127) + (xy 168.986087 70.125846) + (xy 168.974501 70.170972) + (xy 168.974499 70.170984) + (xy 168.974499 70.19102) + (xy 168.972973 70.210411) + (xy 168.96984 70.230194) + (xy 168.96984 70.230195) + (xy 168.974225 70.276583) + (xy 168.9745 70.282421) + (xy 168.9745 100.753149) + (xy 168.954815 100.820188) + (xy 168.938181 100.84083) + (xy 167.871537 101.907474) + (xy 167.810214 101.940959) + (xy 167.740522 101.935975) + (xy 167.684589 101.894103) + (xy 167.66365 101.850233) + (xy 167.660422 101.837487) + (xy 167.634611 101.735559) + (xy 167.543802 101.528535) + (xy 167.420156 101.339281) + (xy 167.420153 101.339278) + (xy 167.420149 101.339272) + (xy 167.267049 101.172963) + (xy 167.267048 101.172962) + (xy 167.267046 101.17296) + (xy 167.088649 101.034107) + (xy 167.088647 101.034106) + (xy 167.088646 101.034105) + (xy 167.088643 101.034103) + (xy 167.060833 101.019053) + (xy 167.011243 100.969833) + (xy 166.996136 100.901616) + (xy 167.020307 100.836061) + (xy 167.060833 100.800946) + (xy 167.088649 100.785893) + (xy 167.267046 100.64704) + (xy 167.399979 100.502637) + (xy 167.420149 100.480727) + (xy 167.42015 100.480725) + (xy 167.420156 100.480719) + (xy 167.543802 100.291465) + (xy 167.634611 100.084441) + (xy 167.690107 99.865293) + (xy 167.700005 99.745843) + (xy 167.708775 99.640006) + (xy 167.708775 99.639993) + (xy 167.690107 99.41471) + (xy 167.690107 99.414707) + (xy 167.634611 99.195559) + (xy 167.543802 98.988535) + (xy 167.420156 98.799281) + (xy 167.420153 98.799278) + (xy 167.420149 98.799272) + (xy 167.267049 98.632963) + (xy 167.267048 98.632962) + (xy 167.267046 98.63296) + (xy 167.088649 98.494107) + (xy 167.088647 98.494106) + (xy 167.088646 98.494105) + (xy 167.088639 98.4941) + (xy 167.060836 98.479055) + (xy 167.011244 98.429837) + (xy 166.996135 98.36162) + (xy 167.020306 98.296064) + (xy 167.060836 98.260945) + (xy 167.088639 98.245899) + (xy 167.088642 98.245896) + (xy 167.088649 98.245893) + (xy 167.267046 98.10704) + (xy 167.420156 97.940719) + (xy 167.543802 97.751465) + (xy 167.634611 97.544441) + (xy 167.690107 97.325293) + (xy 167.708775 97.1) + (xy 167.708775 97.099993) + (xy 167.690107 96.87471) + (xy 167.690107 96.874707) + (xy 167.634611 96.655559) + (xy 167.543802 96.448535) + (xy 167.420156 96.259281) + (xy 167.42015 96.259274) + (xy 167.420149 96.259272) + (xy 167.267049 96.092963) + (xy 167.267044 96.092958) + (xy 167.108337 95.96943) + (xy 167.067524 95.912719) + (xy 167.0605 95.871577) + (xy 167.0605 89.775071) + (xy 167.080185 89.708032) + (xy 167.108338 89.677218) + (xy 167.110719 89.675364) + (xy 167.237046 89.57704) + (xy 167.390156 89.410719) + (xy 167.513802 89.221465) + (xy 167.604611 89.014441) + (xy 167.660107 88.795293) + (xy 167.672984 88.639888) + (xy 167.678775 88.570006) + (xy 167.678775 88.569993) + (xy 167.662488 88.373446) + (xy 167.660107 88.344707) + (xy 167.604611 88.125559) + (xy 167.513802 87.918535) + (xy 167.511038 87.914305) + (xy 167.451978 87.823908) + (xy 167.390156 87.729281) + (xy 167.390153 87.729278) + (xy 167.390149 87.729272) + (xy 167.237049 87.562963) + (xy 167.237044 87.562958) + (xy 167.108337 87.46278) + (xy 167.067524 87.406069) + (xy 167.0605 87.364927) + (xy 167.0605 81.925071) + (xy 167.080185 81.858032) + (xy 167.108338 81.827218) + (xy 167.110719 81.825364) + (xy 167.237046 81.72704) + (xy 167.35013 81.604199) + (xy 167.390149 81.560727) + (xy 167.390151 81.560724) + (xy 167.390156 81.560719) + (xy 167.513802 81.371465) + (xy 167.604611 81.164441) + (xy 167.660107 80.945293) + (xy 167.667574 80.855175) + (xy 167.678775 80.720006) + (xy 167.678775 80.719993) + (xy 167.665517 80.559999) + (xy 167.660107 80.494707) + (xy 167.604611 80.275559) + (xy 167.513802 80.068535) + (xy 167.390156 79.879281) + (xy 167.390153 79.879278) + (xy 167.390149 79.879272) + (xy 167.237049 79.712963) + (xy 167.237044 79.712958) + (xy 167.108337 79.61278) + (xy 167.067524 79.556069) + (xy 167.0605 79.514927) + (xy 167.0605 74.075071) + (xy 167.080185 74.008032) + (xy 167.108338 73.977218) + (xy 167.207547 73.9) + (xy 167.237046 73.87704) + (xy 167.390156 73.710719) + (xy 167.513802 73.521465) + (xy 167.604611 73.314441) + (xy 167.660107 73.095293) + (xy 167.672975 72.94) + (xy 167.678775 72.870006) + (xy 167.678775 72.869993) + (xy 167.660107 72.64471) + (xy 167.660107 72.644707) + (xy 167.604611 72.425559) + (xy 167.513802 72.218535) + (xy 167.504789 72.20474) + (xy 167.416811 72.07008) + (xy 167.390156 72.029281) + (xy 167.390153 72.029278) + (xy 167.390149 72.029272) + (xy 167.237049 71.862963) + (xy 167.237044 71.862958) + (xy 167.108337 71.76278) + (xy 167.067524 71.706069) + (xy 167.0605 71.664927) + (xy 167.0605 66.225071) + (xy 167.080185 66.158032) + (xy 167.108338 66.127218) + (xy 167.110719 66.125364) + (xy 167.237046 66.02704) + (xy 167.390156 65.860719) + (xy 167.513802 65.671465) + (xy 167.604611 65.464441) + (xy 167.660107 65.245293) + (xy 167.672723 65.093039) + (xy 167.678775 65.020006) + (xy 167.678775 65.019993) + (xy 167.661684 64.813737) + (xy 167.660107 64.794707) + (xy 167.604611 64.575559) + (xy 167.513802 64.368535) + (xy 167.390156 64.179281) + (xy 167.390153 64.179278) + (xy 167.390149 64.179272) + (xy 167.237049 64.012963) + (xy 167.237048 64.012962) + (xy 167.237046 64.01296) + (xy 167.058649 63.874107) + (xy 167.058647 63.874106) + (xy 167.058646 63.874105) + (xy 167.058643 63.874103) + (xy 166.995481 63.839921) + (xy 166.945891 63.790701) + (xy 166.9305 63.730867) + (xy 166.9305 63.196705) + (xy 166.931809 63.178735) + (xy 166.935289 63.154974) + (xy 166.930736 63.102939) + (xy 166.9305 63.097532) + (xy 166.9305 63.089296) + (xy 166.9305 63.089291) + (xy 166.926787 63.057534) + (xy 166.92662 63.055898) + (xy 166.920577 62.986819) + (xy 166.919999 62.980208) + (xy 166.918538 62.973135) + (xy 166.918598 62.973122) + (xy 166.916965 62.965757) + (xy 166.916906 62.965772) + (xy 166.915241 62.958749) + (xy 166.915241 62.958745) + (xy 166.889274 62.887403) + (xy 166.888698 62.885746) + (xy 166.864814 62.813665) + (xy 166.864809 62.813658) + (xy 166.861761 62.807118) + (xy 166.861815 62.807092) + (xy 166.858533 62.800312) + (xy 166.85848 62.80034) + (xy 166.855238 62.793885) + (xy 166.855237 62.793883) + (xy 166.813527 62.730466) + (xy 166.81258 62.72898) + (xy 166.772714 62.664347) + (xy 166.768234 62.658681) + (xy 166.76828 62.658643) + (xy 166.763519 62.652799) + (xy 166.763474 62.652838) + (xy 166.758831 62.647305) + (xy 166.703634 62.595229) + (xy 166.702374 62.594006) + (xy 166.312594 62.204225) + (xy 166.279109 62.142903) + (xy 166.278159 62.138078) + (xy 166.265585 62.066768) + (xy 166.250865 61.983289) + (xy 166.181377 61.822196) + (xy 166.174241 61.812611) + (xy 166.088379 61.697279) + (xy 166.07661 61.68147) + (xy 166.004747 61.62117) + (xy 165.942214 61.568698) + (xy 165.942212 61.568697) + (xy 165.785437 61.489961) + (xy 165.785433 61.48996) + (xy 165.614721 61.4495) + (xy 165.614718 61.4495) + (xy 165.336345 61.4495) + (xy 165.320055 61.447835) + (xy 165.32005 61.447895) + (xy 165.31286 61.447265) + (xy 165.236968 61.449474) + (xy 165.235165 61.4495) + (xy 154.795705 61.4495) + (xy 154.777735 61.448191) + (xy 154.753972 61.44471) + (xy 154.708533 61.448686) + (xy 154.701931 61.449264) + (xy 154.69653 61.4495) + (xy 145.863705 61.4495) + (xy 145.845735 61.448191) + (xy 145.821972 61.44471) + (xy 145.77689 61.448655) + (xy 145.769933 61.449264) + (xy 145.764532 61.4495) + (xy 145.756281 61.4495) + (xy 145.724594 61.453203) + (xy 145.722802 61.453386) + (xy 145.647201 61.460001) + (xy 145.640134 61.461461) + (xy 145.640122 61.461404) + (xy 145.632753 61.463038) + (xy 145.632767 61.463095) + (xy 145.625739 61.46476) + (xy 145.554425 61.490716) + (xy 145.552723 61.491308) + (xy 145.480668 61.515185) + (xy 145.474122 61.518237) + (xy 145.474097 61.518185) + (xy 145.467308 61.521471) + (xy 145.467334 61.521522) + (xy 145.460886 61.52476) + (xy 145.397476 61.566465) + (xy 145.395957 61.567432) + (xy 145.331344 61.607288) + (xy 145.325677 61.611769) + (xy 145.325641 61.611723) + (xy 145.319798 61.616484) + (xy 145.319835 61.616528) + (xy 145.314309 61.621164) + (xy 145.262229 61.676364) + (xy 145.260974 61.677657) + (xy 142.390432 64.548198) + (xy 142.329109 64.581683) + (xy 142.259417 64.576699) + (xy 142.203484 64.534827) + (xy 142.179067 64.469363) + (xy 142.193919 64.40109) + (xy 142.195319 64.398597) + (xy 142.332296 64.161345) + (xy 142.457334 63.865931) + (xy 142.545122 63.55739) + (xy 142.594328 63.2404) + (xy 142.604206 62.919765) + (xy 142.593765 62.807092) + (xy 142.574608 62.600348) + (xy 142.574607 62.600342) + (xy 142.505981 62.286986) + (xy 142.459846 62.156065) + (xy 142.399366 61.984436) + (xy 142.256379 61.697279) + (xy 142.202872 61.616528) + (xy 142.079191 61.429873) + (xy 142.079184 61.429865) + (xy 141.886255 61.204676) + (xy 141.857586 61.140959) + (xy 141.867917 61.071857) + (xy 141.913967 61.019311) + (xy 141.980421 61) + (xy 178.876 61) + (xy 178.943039 61.019685) + (xy 178.988794 61.072489) + (xy 179 61.124) + (xy 179 155.023505) + (xy 178.980315 155.090544) + (xy 178.927511 155.136299) + (xy 178.858353 155.146243) + (xy 178.794797 155.117218) + (xy 178.792462 155.115142) + (xy 178.63342 154.970156) + (xy 178.63341 154.970148) + (xy 178.371594 154.784812) + (xy 178.371584 154.784806) + (xy 178.088983 154.633051) + (xy 178.088973 154.633047) + (xy 178.088971 154.633046) + (xy 178.002038 154.599368) + (xy 177.789855 154.517167) + (xy 177.789851 154.517166) + (xy 177.478745 154.43892) + (xy 177.160398 154.3995) + (xy 177.160393 154.3995) + (xy 176.919874 154.3995) + (xy 176.867156 154.402751) + (xy 176.679824 154.414305) + (xy 176.364499 154.473249) + (xy 176.364497 154.47325) + (xy 176.058814 154.570495) + (xy 176.05881 154.570496) + (xy 176.058806 154.570498) + (xy 175.888739 154.648741) + (xy 175.767381 154.704574) + (xy 175.494656 154.873437) + (xy 175.494636 154.873451) + (xy 175.244728 155.074551) + (xy 175.021413 155.304853) + (xy 174.828095 155.560847) + (xy 174.667701 155.83866) + (xy 174.542668 156.134062) + (xy 174.54266 156.134086) + (xy 174.454879 156.442602) + (xy 174.454878 156.442607) + (xy 174.405672 156.759592) + (xy 174.405671 156.759603) + (xy 174.395793 157.080236) + (xy 174.425391 157.399651) + (xy 174.425392 157.399657) + (xy 174.494018 157.713013) + (xy 174.547899 157.865913) + (xy 174.595149 158) + (xy 174.600635 158.015566) + (xy 174.743621 158.302721) + (xy 174.920808 158.570126) + (xy 174.920815 158.570134) + (xy 175.113745 158.795324) + (xy 175.142414 158.859041) + (xy 175.132083 158.928143) + (xy 175.086033 158.980689) + (xy 175.019579 159) + (xy 84.975943 159) + (xy 84.908904 158.980315) + (xy 84.863149 158.927511) + (xy 84.853205 158.858353) + (xy 84.88223 158.794797) + (xy 84.886922 158.789679) + (xy 84.888463 158.788089) + (xy 84.978585 158.695148) + (xy 85.171903 158.439155) + (xy 85.332296 158.161345) + (xy 85.457334 157.865931) + (xy 85.545122 157.55739) + (xy 85.594328 157.2404) + (xy 85.604206 156.919765) + (xy 85.574608 156.600347) + (xy 85.574607 156.600342) + (xy 85.505981 156.286986) + (xy 85.476974 156.204671) + (xy 85.399366 155.984436) + (xy 85.256379 155.697279) + (xy 85.079188 155.42987) + (xy 84.870478 155.186263) + (xy 84.689116 155.02093) + (xy 84.63342 154.970156) + (xy 84.63341 154.970148) + (xy 84.371594 154.784812) + (xy 84.371584 154.784806) + (xy 84.088983 154.633051) + (xy 84.088973 154.633047) + (xy 84.088971 154.633046) + (xy 84.002038 154.599368) + (xy 83.789855 154.517167) + (xy 83.789851 154.517166) + (xy 83.478745 154.43892) + (xy 83.160398 154.3995) + (xy 83.160393 154.3995) + (xy 82.919874 154.3995) + (xy 82.867156 154.402751) + (xy 82.679824 154.414305) + (xy 82.364499 154.473249) + (xy 82.364497 154.47325) + (xy 82.058814 154.570495) + (xy 82.05881 154.570496) + (xy 82.058806 154.570498) + (xy 81.888739 154.648741) + (xy 81.767381 154.704574) + (xy 81.494656 154.873437) + (xy 81.494636 154.873451) + (xy 81.244728 155.074551) + (xy 81.213021 155.107251) + (xy 81.152221 155.141676) + (xy 81.082461 155.137765) + (xy 81.025889 155.09676) + (xy 81.000467 155.03168) + (xy 81 155.02093) + (xy 81 104.480004) + (xy 82.004732 104.480004) + (xy 82.023777 104.734154) + (xy 82.079161 104.976809) + (xy 82.080492 104.982637) + (xy 82.173607 105.219888) + (xy 82.301041 105.440612) + (xy 82.45995 105.639877) + (xy 82.646783 105.813232) + (xy 82.857366 105.956805) + (xy 82.857371 105.956807) + (xy 82.857372 105.956808) + (xy 82.857373 105.956809) + (xy 82.979328 106.015538) + (xy 83.086992 106.067387) + (xy 83.086993 106.067387) + (xy 83.086996 106.067389) + (xy 83.330542 106.142513) + (xy 83.582565 106.1805) + (xy 83.837435 106.1805) + (xy 84.089458 106.142513) + (xy 84.333004 106.067389) + (xy 84.562634 105.956805) + (xy 84.773217 105.813232) + (xy 84.96005 105.639877) + (xy 85.118959 105.440612) + (xy 85.246393 105.219888) + (xy 85.339508 104.982637) + (xy 85.396222 104.734157) + (xy 85.414166 104.494707) + (xy 85.415268 104.480004) + (xy 85.415268 104.479995) + (xy 85.397275 104.23989) + (xy 85.396222 104.225843) + (xy 85.339508 103.977363) + (xy 85.246393 103.740112) + (xy 85.118959 103.519388) + (xy 84.96005 103.320123) + (xy 84.773217 103.146768) + (xy 84.562634 103.003195) + (xy 84.56263 103.003193) + (xy 84.562627 103.003191) + (xy 84.562626 103.00319) + (xy 84.333006 102.892612) + (xy 84.333008 102.892612) + (xy 84.18997 102.848491) + (xy 84.131711 102.809921) + (xy 84.103553 102.745976) + (xy 84.114437 102.676959) + (xy 84.160906 102.624782) + (xy 84.18997 102.611509) + (xy 84.196642 102.609451) + (xy 84.333004 102.567389) + (xy 84.541692 102.46689) + (xy 84.562626 102.456809) + (xy 84.562626 102.456808) + (xy 84.562634 102.456805) + (xy 84.773217 102.313232) + (xy 84.96005 102.139877) + (xy 85.118959 101.940612) + (xy 85.246393 101.719888) + (xy 85.339508 101.482637) + (xy 85.368115 101.3573) (xy 108.02 101.3573) (xy 108.02 101.855144) (xy 108.026401 101.914672) @@ -36576,238 +29286,6527 @@ (xy 108.97 102.3073) (xy 108.97 101.3573) (xy 108.02 101.3573) - (xy 85.432817 101.3573) - (xy 85.416534 101.140006) - (xy 85.416222 101.135843) - (xy 85.359508 100.887363) - (xy 85.266393 100.650112) - (xy 85.138959 100.429388) - (xy 84.98005 100.230123) - (xy 84.793217 100.056768) - (xy 84.582634 99.913195) - (xy 84.58263 99.913193) - (xy 84.582627 99.913191) - (xy 84.582626 99.91319) - (xy 84.353006 99.802612) - (xy 84.353008 99.802612) - (xy 84.109466 99.727489) - (xy 84.109462 99.727488) - (xy 84.109458 99.727487) - (xy 83.988231 99.709214) - (xy 83.85744 99.6895) - (xy 83.857435 99.6895) - (xy 83.602565 99.6895) - (xy 83.602559 99.6895) - (xy 83.445609 99.713157) - (xy 83.350542 99.727487) - (xy 83.350538 99.727488) - (xy 83.350539 99.727488) - (xy 83.350533 99.727489) - (xy 83.106992 99.802612) - (xy 82.877373 99.91319) - (xy 82.877372 99.913191) - (xy 82.666782 100.056768) - (xy 82.479952 100.230121) - (xy 82.47995 100.230123) - (xy 82.321041 100.429388) - (xy 82.193608 100.650109) - (xy 82.100492 100.887362) - (xy 82.10049 100.887369) - (xy 82.043777 101.135845) - (xy 82.024732 101.389995) - (xy 82.024732 101.390004) - (xy 82.043777 101.644154) - (xy 82.09498 101.868491) - (xy 82.100492 101.892637) - (xy 82.145975 102.008526) - (xy 82.193608 102.12989) - (xy 82.220536 102.176531) - (xy 82.321041 102.350612) - (xy 82.47995 102.549877) - (xy 82.666783 102.723232) - (xy 82.877366 102.866805) - (xy 82.877371 102.866807) - (xy 82.877372 102.866808) - (xy 82.877373 102.866809) - (xy 82.981086 102.916754) - (xy 83.106992 102.977387) - (xy 83.106993 102.977387) - (xy 83.106996 102.977389) - (xy 83.17177 102.997369) - (xy 83.250029 103.021509) - (xy 83.308288 103.06008) - (xy 83.336446 103.124024) - (xy 83.325562 103.193041) - (xy 83.279093 103.245218) - (xy 83.250029 103.258491) - (xy 83.106992 103.302612) - (xy 82.877373 103.41319) - (xy 82.877372 103.413191) - (xy 82.666782 103.556768) - (xy 82.479952 103.730121) - (xy 82.47995 103.730123) - (xy 82.321041 103.929388) - (xy 82.193608 104.150109) - (xy 82.100492 104.387362) - (xy 82.10049 104.387369) - (xy 82.043777 104.635845) - (xy 82.024732 104.889995) - (xy 82.024732 104.890004) - (xy 81 104.890004) - (xy 81 91.848889) - (xy 81.019685 91.78185) - (xy 81.072489 91.736095) - (xy 81.141647 91.726151) - (xy 81.205203 91.755176) - (xy 81.234999 91.793615) - (xy 81.322748 91.96984) - (xy 81.339121 92.002721) - (xy 81.480584 92.216212) - (xy 81.516312 92.27013) - (xy 81.725022 92.513737) - (xy 81.962086 92.729849) - (xy 81.962089 92.729851) - (xy 82.223905 92.915187) - (xy 82.223915 92.915193) - (xy 82.506516 93.066948) - (xy 82.506522 93.06695) - (xy 82.506529 93.066954) - (xy 82.66799 93.129504) - (xy 82.805644 93.182832) - (xy 82.805647 93.182832) - (xy 82.805653 93.182835) - (xy 83.116751 93.261079) - (xy 83.236134 93.275861) - (xy 83.435102 93.3005) - (xy 83.435107 93.3005) - (xy 83.675612 93.3005) - (xy 83.675626 93.3005) - (xy 83.915678 93.285694) - (xy 84.231003 93.22675) - (xy 84.536694 93.129502) - (xy 84.828118 92.995426) - (xy 85.100856 92.826554) - (xy 85.350775 92.625445) - (xy 85.574085 92.395148) - (xy 85.767403 92.139155) - (xy 85.927796 91.861345) - (xy 86.052834 91.565931) - (xy 86.140622 91.25739) - (xy 86.189828 90.9404) - (xy 86.199706 90.619765) - (xy 86.194259 90.560986) - (xy 86.170108 90.300348) - (xy 86.170107 90.300342) - (xy 86.101481 89.986986) - (xy 86.062705 89.87695) - (xy 85.994866 89.684436) - (xy 85.851879 89.397279) - (xy 85.674688 89.12987) - (xy 85.465978 88.886263) - (xy 85.296549 88.731808) - (xy 85.22892 88.670156) - (xy 85.22891 88.670148) - (xy 84.967094 88.484812) - (xy 84.967084 88.484806) - (xy 84.684483 88.333051) - (xy 84.684473 88.333047) - (xy 84.684471 88.333046) - (xy 84.616305 88.306638) - (xy 84.385355 88.217167) - (xy 84.385351 88.217166) - (xy 84.074245 88.13892) - (xy 83.755898 88.0995) - (xy 83.755893 88.0995) - (xy 83.515374 88.0995) - (xy 83.462656 88.102751) - (xy 83.275324 88.114305) - (xy 82.959999 88.173249) - (xy 82.959997 88.17325) - (xy 82.654314 88.270495) - (xy 82.65431 88.270496) - (xy 82.654306 88.270498) - (xy 82.493007 88.344707) - (xy 82.362881 88.404574) - (xy 82.090156 88.573437) - (xy 82.090136 88.573451) - (xy 81.840228 88.774551) - (xy 81.616913 89.004853) - (xy 81.423595 89.260847) - (xy 81.263202 89.538658) - (xy 81.238192 89.597748) - (xy 81.193934 89.651812) - (xy 81.127471 89.673365) - (xy 81.059907 89.655565) - (xy 81.012692 89.604063) - (xy 81 89.549414) + (xy 85.368115 101.3573) + (xy 85.396222 101.234157) + (xy 85.410948 101.037652) + (xy 85.415268 100.980004) + (xy 85.415268 100.979995) + (xy 85.397275 100.73989) + (xy 85.396222 100.725843) + (xy 85.339508 100.477363) + (xy 85.246393 100.240112) + (xy 85.118959 100.019388) + (xy 84.96005 99.820123) + (xy 84.773217 99.646768) + (xy 84.562634 99.503195) + (xy 84.56263 99.503193) + (xy 84.562627 99.503191) + (xy 84.562626 99.50319) + (xy 84.333006 99.392612) + (xy 84.333008 99.392612) + (xy 84.089466 99.317489) + (xy 84.089462 99.317488) + (xy 84.089458 99.317487) + (xy 83.968231 99.299214) + (xy 83.83744 99.2795) + (xy 83.837435 99.2795) + (xy 83.582565 99.2795) + (xy 83.582559 99.2795) + (xy 83.425609 99.303157) + (xy 83.330542 99.317487) + (xy 83.330538 99.317488) + (xy 83.330539 99.317488) + (xy 83.330533 99.317489) + (xy 83.086992 99.392612) + (xy 82.857373 99.50319) + (xy 82.857372 99.503191) + (xy 82.646782 99.646768) + (xy 82.459952 99.820121) + (xy 82.45995 99.820123) + (xy 82.301041 100.019388) + (xy 82.173608 100.240109) + (xy 82.080492 100.477362) + (xy 82.08049 100.477369) + (xy 82.023777 100.725845) + (xy 82.004732 100.979995) + (xy 82.004732 100.980004) + (xy 82.023777 101.234154) + (xy 82.079161 101.476809) + (xy 82.080492 101.482637) + (xy 82.13892 101.631509) + (xy 82.173608 101.71989) + (xy 82.182655 101.73556) + (xy 82.301041 101.940612) + (xy 82.45995 102.139877) + (xy 82.646783 102.313232) + (xy 82.857366 102.456805) + (xy 82.857371 102.456807) + (xy 82.857372 102.456808) + (xy 82.857373 102.456809) + (xy 82.933084 102.493269) + (xy 83.086992 102.567387) + (xy 83.086993 102.567387) + (xy 83.086996 102.567389) + (xy 83.19336 102.600197) + (xy 83.230029 102.611509) + (xy 83.288288 102.65008) + (xy 83.316446 102.714024) + (xy 83.305562 102.783041) + (xy 83.259093 102.835218) + (xy 83.230029 102.848491) + (xy 83.086992 102.892612) + (xy 82.857373 103.00319) + (xy 82.857372 103.003191) + (xy 82.646782 103.146768) + (xy 82.459952 103.320121) + (xy 82.45995 103.320123) + (xy 82.301041 103.519388) + (xy 82.173608 103.740109) + (xy 82.080492 103.977362) + (xy 82.08049 103.977369) + (xy 82.023777 104.225845) + (xy 82.004732 104.479995) + (xy 82.004732 104.480004) + (xy 81 104.480004) + (xy 81 91.588842) + (xy 81.019685 91.521803) + (xy 81.072489 91.476048) + (xy 81.141647 91.466104) + (xy 81.205203 91.495129) + (xy 81.235 91.53357) + (xy 81.369021 91.802721) + (xy 81.543753 92.06642) + (xy 81.546212 92.07013) + (xy 81.754922 92.313737) + (xy 81.991986 92.529849) + (xy 81.991989 92.529851) + (xy 82.253805 92.715187) + (xy 82.253815 92.715193) + (xy 82.536416 92.866948) + (xy 82.536422 92.86695) + (xy 82.536429 92.866954) + (xy 82.69789 92.929504) + (xy 82.835544 92.982832) + (xy 82.835547 92.982832) + (xy 82.835553 92.982835) + (xy 83.146651 93.061079) + (xy 83.266034 93.075861) + (xy 83.465002 93.1005) + (xy 83.465007 93.1005) + (xy 83.705512 93.1005) + (xy 83.705526 93.1005) + (xy 83.945578 93.085694) + (xy 84.260903 93.02675) + (xy 84.566594 92.929502) + (xy 84.858018 92.795426) + (xy 85.130756 92.626554) + (xy 85.380675 92.425445) + (xy 85.603985 92.195148) + (xy 85.797303 91.939155) + (xy 85.957696 91.661345) + (xy 86.082734 91.365931) + (xy 86.170522 91.05739) + (xy 86.219728 90.7404) + (xy 86.229606 90.419765) + (xy 86.224976 90.369804) + (xy 86.200008 90.100348) + (xy 86.200007 90.100342) + (xy 86.131381 89.786986) + (xy 86.09216 89.675686) + (xy 86.024766 89.484436) + (xy 85.881779 89.197279) + (xy 85.704588 88.92987) + (xy 85.495878 88.686263) + (xy 85.319529 88.5255) + (xy 85.25882 88.470156) + (xy 85.25881 88.470148) + (xy 84.996994 88.284812) + (xy 84.996984 88.284806) + (xy 84.714383 88.133051) + (xy 84.714373 88.133047) + (xy 84.714371 88.133046) + (xy 84.646205 88.106638) + (xy 84.415255 88.017167) + (xy 84.415251 88.017166) + (xy 84.104145 87.93892) + (xy 83.785798 87.8995) + (xy 83.785793 87.8995) + (xy 83.545274 87.8995) + (xy 83.492556 87.902751) + (xy 83.305224 87.914305) + (xy 82.989899 87.973249) + (xy 82.989897 87.97325) + (xy 82.684214 88.070495) + (xy 82.68421 88.070496) + (xy 82.684206 88.070498) + (xy 82.510328 88.150494) + (xy 82.392781 88.204574) + (xy 82.120056 88.373437) + (xy 82.120036 88.373451) + (xy 81.870128 88.574551) + (xy 81.646813 88.804853) + (xy 81.453495 89.060847) + (xy 81.293101 89.33866) + (xy 81.238192 89.468389) + (xy 81.193934 89.522454) + (xy 81.127472 89.544007) + (xy 81.059907 89.526207) + (xy 81.012692 89.474705) + (xy 81 89.420056) (xy 81 87.624) (xy 81.019685 87.556961) (xy 81.072489 87.511206) (xy 81.124 87.5) (xy 101 87.5) - (xy 101 66.5) - (xy 81.124 66.5) - (xy 81.056961 66.480315) - (xy 81.011206 66.427511) - (xy 81 66.376) - (xy 81 64.348889) - (xy 81.019685 64.28185) - (xy 81.072489 64.236095) - (xy 81.141647 64.226151) - (xy 81.205203 64.255176) - (xy 81.234999 64.293615) - (xy 81.339121 64.50272) - (xy 81.339121 64.502721) - (xy 81.491862 64.733232) - (xy 81.516312 64.77013) - (xy 81.725022 65.013737) - (xy 81.962086 65.229849) - (xy 81.962089 65.229851) - (xy 82.223905 65.415187) - (xy 82.223915 65.415193) - (xy 82.506516 65.566948) - (xy 82.506522 65.56695) - (xy 82.506529 65.566954) - (xy 82.66799 65.629504) - (xy 82.805644 65.682832) - (xy 82.805647 65.682832) - (xy 82.805653 65.682835) - (xy 83.116751 65.761079) - (xy 83.236134 65.775861) - (xy 83.435102 65.8005) - (xy 83.435107 65.8005) - (xy 83.675612 65.8005) - (xy 83.675626 65.8005) - (xy 83.915678 65.785694) - (xy 84.231003 65.72675) - (xy 84.536694 65.629502) - (xy 84.828118 65.495426) - (xy 85.100856 65.326554) - (xy 85.350775 65.125445) - (xy 85.574085 64.895148) - (xy 85.767403 64.639155) - (xy 85.927796 64.361345) - (xy 86.052834 64.065931) - (xy 86.140622 63.75739) - (xy 86.189828 63.4404) - (xy 86.199706 63.119765) - (xy 86.170108 62.800347) - (xy 86.170107 62.800345) - (xy 86.170107 62.80034) - (xy 86.101481 62.486986) - (xy 86.072474 62.404671) - (xy 85.994866 62.184436) - (xy 85.851879 61.897279) - (xy 85.674688 61.62987) - (xy 85.465978 61.386263) - (xy 85.27881 61.215637) - (xy 85.242528 61.155926) - (xy 85.244289 61.086078) - (xy 85.283532 61.028271) - (xy 85.347799 61.000856) - (xy 85.362348 61) - (xy 130.204129 61) + (xy 101 66) + (xy 81.124 66) + (xy 81.056961 65.980315) + (xy 81.011206 65.927511) + (xy 81 65.876) + (xy 81 64.088842) + (xy 81.019685 64.021803) + (xy 81.072489 63.976048) + (xy 81.141647 63.966104) + (xy 81.205203 63.995129) + (xy 81.234999 64.033569) + (xy 81.298621 64.161339) + (xy 81.369021 64.302721) + (xy 81.539418 64.559878) + (xy 81.546212 64.57013) + (xy 81.754922 64.813737) + (xy 81.901062 64.946961) + (xy 81.981188 65.020006) + (xy 81.991986 65.029849) + (xy 81.991989 65.029851) + (xy 82.253805 65.215187) + (xy 82.253815 65.215193) + (xy 82.536416 65.366948) + (xy 82.536422 65.36695) + (xy 82.536429 65.366954) + (xy 82.69789 65.429504) + (xy 82.835544 65.482832) + (xy 82.835547 65.482832) + (xy 82.835553 65.482835) + (xy 83.146651 65.561079) + (xy 83.266034 65.575861) + (xy 83.465002 65.6005) + (xy 83.465007 65.6005) + (xy 83.705512 65.6005) + (xy 83.705526 65.6005) + (xy 83.945578 65.585694) + (xy 84.260903 65.52675) + (xy 84.566594 65.429502) + (xy 84.858018 65.295426) + (xy 85.130756 65.126554) + (xy 85.380675 64.925445) + (xy 85.603985 64.695148) + (xy 85.797303 64.439155) + (xy 85.957696 64.161345) + (xy 86.082734 63.865931) + (xy 86.170522 63.55739) + (xy 86.219728 63.2404) + (xy 86.229606 62.919765) + (xy 86.219165 62.807092) + (xy 86.200008 62.600348) + (xy 86.200007 62.600342) + (xy 86.131381 62.286986) + (xy 86.085246 62.156065) + (xy 86.024766 61.984436) + (xy 85.881779 61.697279) + (xy 85.828272 61.616528) + (xy 85.704591 61.429873) + (xy 85.704584 61.429865) + (xy 85.511655 61.204676) + (xy 85.482986 61.140959) + (xy 85.493317 61.071857) + (xy 85.539367 61.019311) + (xy 85.605821 61) + (xy 130.024057 61) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 109.855809 148.870185) + (xy 109.901564 148.922989) + (xy 109.911508 148.992147) + (xy 109.882483 149.055703) + (xy 109.876451 149.062181) + (xy 104.320699 154.617931) + (xy 104.259376 154.651416) + (xy 104.196469 154.648741) + (xy 104.11947 154.62499) + (xy 104.119463 154.624988) + (xy 104.119458 154.624987) + (xy 103.998231 154.606714) + (xy 103.86744 154.587) + (xy 103.867435 154.587) + (xy 103.612565 154.587) + (xy 103.612559 154.587) + (xy 103.455609 154.610657) + (xy 103.360542 154.624987) + (xy 103.360538 154.624988) + (xy 103.360539 154.624988) + (xy 103.360533 154.624989) + (xy 103.116992 154.700112) + (xy 102.887373 154.81069) + (xy 102.887372 154.810691) + (xy 102.676782 154.954268) + (xy 102.489952 155.127621) + (xy 102.48995 155.127623) + (xy 102.331041 155.326888) + (xy 102.203608 155.547609) + (xy 102.110492 155.784862) + (xy 102.109122 155.789304) + (xy 102.107999 155.788957) + (xy 102.076509 155.84523) + (xy 102.014841 155.878076) + (xy 101.945205 155.872368) + (xy 101.889709 155.829918) + (xy 101.871134 155.789229) + (xy 101.8704 155.789456) + (xy 101.869026 155.785005) + (xy 101.775941 155.547828) + (xy 101.775942 155.547828) + (xy 101.648544 155.327171) + (xy 101.606546 155.274506) + (xy 100.802772 156.078279) + (xy 100.764099 155.984912) + (xy 100.667925 155.859575) + (xy 100.542588 155.763401) + (xy 100.44922 155.724727) + (xy 101.253185 154.920761) + (xy 101.092377 154.811124) + (xy 101.092376 154.811123) + (xy 100.862823 154.700578) + (xy 100.862825 154.700578) + (xy 100.619347 154.625475) + (xy 100.619341 154.625473) + (xy 100.367404 154.5875) + (xy 100.112595 154.5875) + (xy 99.860658 154.625473) + (xy 99.860652 154.625475) + (xy 99.617175 154.700578) + (xy 99.387624 154.811123) + (xy 99.387616 154.811128) + (xy 99.226813 154.920761) + (xy 100.030779 155.724727) + (xy 99.937412 155.763401) + (xy 99.812075 155.859575) + (xy 99.715901 155.984911) + (xy 99.677227 156.078279) + (xy 98.873453 155.274506) + (xy 98.831455 155.32717) + (xy 98.704058 155.547828) + (xy 98.610973 155.785005) + (xy 98.6096 155.789456) + (xy 98.608432 155.789095) + (xy 98.577026 155.845226) + (xy 98.51536 155.878075) + (xy 98.445724 155.872371) + (xy 98.390226 155.829923) + (xy 98.371581 155.789087) + (xy 98.370878 155.789304) + (xy 98.369509 155.784869) + (xy 98.369508 155.784863) + (xy 98.276393 155.547612) + (xy 98.148959 155.326888) + (xy 97.99005 155.127623) + (xy 97.803217 154.954268) + (xy 97.592634 154.810695) + (xy 97.592631 154.810694) + (xy 97.592629 154.810692) + (xy 97.571828 154.800675) + (xy 97.560696 154.795314) + (xy 97.508838 154.748493) + (xy 97.490499 154.683598) + (xy 97.490499 154.139678) + (xy 97.510184 154.07264) + (xy 97.526813 154.052003) + (xy 102.691998 148.886819) + (xy 102.753322 148.853334) + (xy 102.77968 148.8505) + (xy 109.78877 148.8505) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 119.015809 150.270185) + (xy 119.061564 150.322989) + (xy 119.071508 150.392147) + (xy 119.042483 150.455703) + (xy 119.036451 150.462181) + (xy 114.866555 154.632075) + (xy 114.805232 154.66556) + (xy 114.742325 154.662885) + (xy 114.61947 154.62499) + (xy 114.619463 154.624988) + (xy 114.619458 154.624987) + (xy 114.498231 154.606714) + (xy 114.36744 154.587) + (xy 114.367435 154.587) + (xy 114.112565 154.587) + (xy 114.112559 154.587) + (xy 113.955609 154.610657) + (xy 113.860542 154.624987) + (xy 113.860538 154.624988) + (xy 113.860539 154.624988) + (xy 113.860533 154.624989) + (xy 113.616992 154.700112) + (xy 113.387373 154.81069) + (xy 113.387372 154.810691) + (xy 113.176782 154.954268) + (xy 112.989952 155.127621) + (xy 112.98995 155.127623) + (xy 112.831041 155.326888) + (xy 112.703608 155.547609) + (xy 112.610492 155.784862) + (xy 112.609122 155.789304) + (xy 112.607999 155.788957) + (xy 112.576509 155.84523) + (xy 112.514841 155.878076) + (xy 112.445205 155.872368) + (xy 112.389709 155.829918) + (xy 112.371134 155.789229) + (xy 112.3704 155.789456) + (xy 112.369026 155.785005) + (xy 112.275941 155.547828) + (xy 112.275942 155.547828) + (xy 112.148544 155.327171) + (xy 112.106546 155.274506) + (xy 111.302772 156.078279) + (xy 111.264099 155.984912) + (xy 111.167925 155.859575) + (xy 111.042588 155.763401) + (xy 110.94922 155.724727) + (xy 111.753185 154.920761) + (xy 111.592377 154.811124) + (xy 111.592376 154.811123) + (xy 111.362823 154.700578) + (xy 111.362825 154.700578) + (xy 111.119347 154.625475) + (xy 111.119341 154.625473) + (xy 110.867404 154.5875) + (xy 110.612595 154.5875) + (xy 110.360658 154.625473) + (xy 110.360652 154.625475) + (xy 110.117175 154.700578) + (xy 109.887624 154.811123) + (xy 109.887616 154.811128) + (xy 109.726813 154.920761) + (xy 110.530779 155.724727) + (xy 110.437412 155.763401) + (xy 110.312075 155.859575) + (xy 110.215901 155.984911) + (xy 110.177226 156.078279) + (xy 109.373453 155.274506) + (xy 109.331455 155.32717) + (xy 109.204058 155.547828) + (xy 109.110973 155.785005) + (xy 109.1096 155.789456) + (xy 109.108432 155.789095) + (xy 109.077026 155.845226) + (xy 109.01536 155.878075) + (xy 108.945724 155.872371) + (xy 108.890226 155.829923) + (xy 108.871581 155.789087) + (xy 108.870878 155.789304) + (xy 108.869509 155.784869) + (xy 108.869508 155.784863) + (xy 108.776393 155.547612) + (xy 108.648959 155.326888) + (xy 108.49005 155.127623) + (xy 108.303217 154.954268) + (xy 108.092634 154.810695) + (xy 108.060696 154.795314) + (xy 108.008838 154.748492) + (xy 107.9905 154.683595) + (xy 107.9905 154.112179) + (xy 108.010185 154.04514) + (xy 108.026814 154.024503) + (xy 111.764499 150.286818) + (xy 111.825822 150.253334) + (xy 111.85218 150.2505) + (xy 118.94877 150.2505) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 128.085285 151.653418) + (xy 128.135467 151.702034) + (xy 128.151399 151.770063) + (xy 128.128022 151.835906) + (xy 128.115271 151.850859) + (xy 125.341716 154.624414) + (xy 125.280393 154.657899) + (xy 125.217485 154.655224) + (xy 125.119466 154.624989) + (xy 125.119462 154.624988) + (xy 125.119458 154.624987) + (xy 124.998231 154.606714) + (xy 124.86744 154.587) + (xy 124.867435 154.587) + (xy 124.612565 154.587) + (xy 124.612559 154.587) + (xy 124.455609 154.610657) + (xy 124.360542 154.624987) + (xy 124.360538 154.624988) + (xy 124.360539 154.624988) + (xy 124.360533 154.624989) + (xy 124.116992 154.700112) + (xy 123.887373 154.81069) + (xy 123.887372 154.810691) + (xy 123.676782 154.954268) + (xy 123.489952 155.127621) + (xy 123.48995 155.127623) + (xy 123.331041 155.326888) + (xy 123.203608 155.547609) + (xy 123.110492 155.784862) + (xy 123.109122 155.789304) + (xy 123.107999 155.788957) + (xy 123.076509 155.84523) + (xy 123.014841 155.878076) + (xy 122.945205 155.872368) + (xy 122.889709 155.829918) + (xy 122.871134 155.789229) + (xy 122.8704 155.789456) + (xy 122.869026 155.785005) + (xy 122.775941 155.547828) + (xy 122.775942 155.547828) + (xy 122.648544 155.327171) + (xy 122.606546 155.274506) + (xy 121.802772 156.078279) + (xy 121.764099 155.984912) + (xy 121.667925 155.859575) + (xy 121.542588 155.763401) + (xy 121.44922 155.724727) + (xy 122.253185 154.920761) + (xy 122.092377 154.811124) + (xy 122.092376 154.811123) + (xy 121.862823 154.700578) + (xy 121.862825 154.700578) + (xy 121.619347 154.625475) + (xy 121.619341 154.625473) + (xy 121.367404 154.5875) + (xy 121.112595 154.5875) + (xy 120.860658 154.625473) + (xy 120.860652 154.625475) + (xy 120.617175 154.700578) + (xy 120.387624 154.811123) + (xy 120.387616 154.811128) + (xy 120.226813 154.920761) + (xy 121.030779 155.724727) + (xy 120.937412 155.763401) + (xy 120.812075 155.859575) + (xy 120.715901 155.984911) + (xy 120.677227 156.078279) + (xy 119.873453 155.274506) + (xy 119.831455 155.32717) + (xy 119.704058 155.547828) + (xy 119.610973 155.785005) + (xy 119.6096 155.789456) + (xy 119.608432 155.789095) + (xy 119.577026 155.845226) + (xy 119.51536 155.878075) + (xy 119.445724 155.872371) + (xy 119.390226 155.829923) + (xy 119.371581 155.789087) + (xy 119.370878 155.789304) + (xy 119.369509 155.784869) + (xy 119.369508 155.784863) + (xy 119.276393 155.547612) + (xy 119.148959 155.326888) + (xy 118.99005 155.127623) + (xy 118.803217 154.954268) + (xy 118.592634 154.810695) + (xy 118.560696 154.795314) + (xy 118.508838 154.748492) + (xy 118.4905 154.683595) + (xy 118.4905 154.17218) + (xy 118.510185 154.105141) + (xy 118.526819 154.084499) + (xy 120.924499 151.686819) + (xy 120.985822 151.653334) + (xy 121.01218 151.6505) + (xy 127.796295 151.6505) + (xy 127.814265 151.651809) + (xy 127.838023 151.655289) + (xy 127.890068 151.650735) + (xy 127.89547 151.6505) + (xy 127.903704 151.6505) + (xy 127.903709 151.6505) + (xy 127.935458 151.646788) + (xy 127.937075 151.646622) + (xy 128.012797 151.639999) + (xy 128.012797 151.639998) + (xy 128.016785 151.63965) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 139.846694 144.751518) + (xy 139.897699 144.782289) + (xy 140.859194 145.743784) + (xy 140.869019 145.756048) + (xy 140.86924 145.755866) + (xy 140.87421 145.761874) + (xy 140.923949 145.808582) + (xy 140.925316 145.809906) + (xy 140.94553 145.83012) + (xy 140.951004 145.834366) + (xy 140.955442 145.838156) + (xy 140.989418 145.870062) + (xy 140.989422 145.870064) + (xy 141.006973 145.879713) + (xy 141.023231 145.890392) + (xy 141.039064 145.902674) + (xy 141.061015 145.912172) + (xy 141.081837 145.921183) + (xy 141.087081 145.923752) + (xy 141.127908 145.946197) + (xy 141.147312 145.951179) + (xy 141.16571 145.957478) + (xy 141.184105 145.965438) + (xy 141.230129 145.972726) + (xy 141.235832 145.973907) + (xy 141.280981 145.9855) + (xy 141.301016 145.9855) + (xy 141.320413 145.987026) + (xy 141.340196 145.99016) + (xy 141.386583 145.985775) + (xy 141.392422 145.9855) + (xy 142.192129 145.9855) + (xy 142.259168 146.005185) + (xy 142.295937 146.041678) + (xy 142.399842 146.200716) + (xy 142.39985 146.200727) + (xy 142.55295 146.367036) + (xy 142.552954 146.36704) + (xy 142.552957 146.367042) + (xy 142.55296 146.367045) + (xy 142.681662 146.467218) + (xy 142.722475 146.523928) + (xy 142.7295 146.565071) + (xy 142.7295 147.68527) + (xy 142.709815 147.752309) + (xy 142.693181 147.772951) + (xy 135.841717 154.624414) + (xy 135.780394 154.657899) + (xy 135.717487 154.655224) + (xy 135.61947 154.62499) + (xy 135.619463 154.624988) + (xy 135.619458 154.624987) + (xy 135.498231 154.606714) + (xy 135.36744 154.587) + (xy 135.367435 154.587) + (xy 135.112565 154.587) + (xy 135.112559 154.587) + (xy 134.955609 154.610657) + (xy 134.860542 154.624987) + (xy 134.860538 154.624988) + (xy 134.860539 154.624988) + (xy 134.860533 154.624989) + (xy 134.616992 154.700112) + (xy 134.387373 154.81069) + (xy 134.387372 154.810691) + (xy 134.176782 154.954268) + (xy 133.989952 155.127621) + (xy 133.98995 155.127623) + (xy 133.831041 155.326888) + (xy 133.703608 155.547609) + (xy 133.610492 155.784862) + (xy 133.609122 155.789304) + (xy 133.607999 155.788957) + (xy 133.576509 155.84523) + (xy 133.514841 155.878076) + (xy 133.445205 155.872368) + (xy 133.389709 155.829918) + (xy 133.371134 155.789229) + (xy 133.3704 155.789456) + (xy 133.369026 155.785005) + (xy 133.275941 155.547828) + (xy 133.275942 155.547828) + (xy 133.148544 155.327171) + (xy 133.106545 155.274505) + (xy 132.302772 156.078278) + (xy 132.264099 155.984912) + (xy 132.167925 155.859575) + (xy 132.042588 155.763401) + (xy 131.949219 155.724726) + (xy 132.753185 154.920761) + (xy 132.592377 154.811124) + (xy 132.592376 154.811123) + (xy 132.362823 154.700578) + (xy 132.362825 154.700578) + (xy 132.119347 154.625475) + (xy 132.119341 154.625473) + (xy 131.867404 154.5875) + (xy 131.612595 154.5875) + (xy 131.360658 154.625473) + (xy 131.360652 154.625475) + (xy 131.117175 154.700578) + (xy 130.887624 154.811123) + (xy 130.887616 154.811128) + (xy 130.726813 154.920761) + (xy 131.530778 155.724727) + (xy 131.437412 155.763401) + (xy 131.312075 155.859575) + (xy 131.215901 155.984911) + (xy 131.177226 156.078279) + (xy 130.373453 155.274506) + (xy 130.331455 155.32717) + (xy 130.204058 155.547828) + (xy 130.110973 155.785005) + (xy 130.1096 155.789456) + (xy 130.108432 155.789095) + (xy 130.077026 155.845226) + (xy 130.01536 155.878075) + (xy 129.945724 155.872371) + (xy 129.890226 155.829923) + (xy 129.871581 155.789087) + (xy 129.870878 155.789304) + (xy 129.869509 155.784869) + (xy 129.869508 155.784863) + (xy 129.776393 155.547612) + (xy 129.648959 155.326888) + (xy 129.49005 155.127623) + (xy 129.303217 154.954268) + (xy 129.092634 154.810695) + (xy 129.060696 154.795314) + (xy 129.008838 154.748492) + (xy 128.9905 154.683595) + (xy 128.9905 154.13968) + (xy 129.010185 154.072641) + (xy 129.026819 154.051999) + (xy 129.991999 153.086819) + (xy 130.053322 153.053334) + (xy 130.07968 153.0505) + (xy 131.366295 153.0505) + (xy 131.384265 153.051809) + (xy 131.408023 153.055289) + (xy 131.460068 153.050735) + (xy 131.46547 153.0505) + (xy 131.473704 153.0505) + (xy 131.473709 153.0505) + (xy 131.505458 153.046788) + (xy 131.507075 153.046622) + (xy 131.582797 153.039999) + (xy 131.582805 153.039996) + (xy 131.589866 153.038539) + (xy 131.589878 153.038598) + (xy 131.597243 153.036965) + (xy 131.597229 153.036906) + (xy 131.604251 153.035241) + (xy 131.604255 153.035241) + (xy 131.675587 153.009277) + (xy 131.677286 153.008688) + (xy 131.749334 152.984814) + (xy 131.749342 152.984808) + (xy 131.755882 152.98176) + (xy 131.755908 152.981816) + (xy 131.76269 152.978532) + (xy 131.762663 152.978478) + (xy 131.769109 152.975239) + (xy 131.769117 152.975237) + (xy 131.832612 152.933475) + (xy 131.833977 152.932605) + (xy 131.898656 152.892712) + (xy 131.898661 152.892706) + (xy 131.904325 152.888229) + (xy 131.904362 152.888277) + (xy 131.910204 152.883518) + (xy 131.910164 152.883471) + (xy 131.915686 152.878835) + (xy 131.915696 152.87883) + (xy 131.9678 152.823601) + (xy 131.968994 152.822372) + (xy 138.053553 146.737812) + (xy 138.114874 146.704329) + (xy 138.161638 146.703186) + (xy 138.286967 146.7241) + (xy 138.286968 146.7241) + (xy 138.513032 146.7241) + (xy 138.513033 146.7241) + (xy 138.736014 146.686891) + (xy 138.949831 146.613488) + (xy 139.148649 146.505893) + (xy 139.327046 146.36704) + (xy 139.480156 146.200719) + (xy 139.603802 146.011465) + (xy 139.694611 145.804441) + (xy 139.750107 145.585293) + (xy 139.768775 145.36) + (xy 139.768775 145.359993) + (xy 139.750107 145.13471) + (xy 139.750107 145.134707) + (xy 139.694611 144.915559) + (xy 139.694609 144.915555) + (xy 139.692948 144.910716) + (xy 139.695206 144.90994) + (xy 139.687552 144.850525) + (xy 139.717506 144.787402) + (xy 139.776832 144.750493) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 147.371905 146.043753) + (xy 147.393804 146.069025) + (xy 147.479844 146.200719) + (xy 147.479849 146.200724) + (xy 147.47985 146.200727) + (xy 147.63295 146.367036) + (xy 147.632954 146.36704) + (xy 147.632957 146.367042) + (xy 147.63296 146.367045) + (xy 147.761662 146.467218) + (xy 147.802475 146.523928) + (xy 147.8095 146.565071) + (xy 147.8095 147.457769) + (xy 147.789815 147.524808) + (xy 147.773181 147.54545) + (xy 145.254358 150.064272) + (xy 145.240729 150.076051) + (xy 145.221468 150.09039) + (xy 145.187898 150.130397) + (xy 145.184253 150.134376) + (xy 145.178407 150.140223) + (xy 145.158618 150.165251) + (xy 145.157481 150.166647) + (xy 145.108694 150.22479) + (xy 145.104729 150.230819) + (xy 145.104682 150.230788) + (xy 145.10063 150.237147) + (xy 145.100679 150.237177) + (xy 145.096889 150.243321) + (xy 145.064812 150.31211) + (xy 145.064027 150.313731) + (xy 145.029957 150.381572) + (xy 145.027488 150.388357) + (xy 145.027432 150.388336) + (xy 145.02496 150.39545) + (xy 145.025015 150.395469) + (xy 145.022743 150.402325) + (xy 145.007391 150.47667) + (xy 145.007001 150.478428) + (xy 144.989499 150.552279) + (xy 144.988661 150.559454) + (xy 144.988601 150.559447) + (xy 144.987835 150.566945) + (xy 144.987895 150.566951) + (xy 144.987265 150.57414) + (xy 144.989474 150.65003) + (xy 144.9895 150.651833) + (xy 144.9895 154.683595) + (xy 144.969815 154.750634) + (xy 144.919303 154.795314) + (xy 144.887366 154.810695) + (xy 144.886737 154.811124) + (xy 144.676782 154.954268) + (xy 144.489952 155.127621) + (xy 144.48995 155.127623) + (xy 144.331041 155.326888) + (xy 144.203608 155.547609) + (xy 144.110492 155.784862) + (xy 144.109122 155.789304) + (xy 144.107999 155.788957) + (xy 144.076509 155.84523) + (xy 144.014841 155.878076) + (xy 143.945205 155.872368) + (xy 143.889709 155.829918) + (xy 143.871134 155.789229) + (xy 143.8704 155.789456) + (xy 143.869026 155.785005) + (xy 143.775941 155.547828) + (xy 143.775942 155.547828) + (xy 143.648544 155.327171) + (xy 143.606546 155.274506) + (xy 142.802772 156.078279) + (xy 142.764099 155.984912) + (xy 142.667925 155.859575) + (xy 142.542588 155.763401) + (xy 142.44922 155.724727) + (xy 143.253185 154.920761) + (xy 143.092377 154.811124) + (xy 143.092376 154.811123) + (xy 142.862823 154.700578) + (xy 142.862825 154.700578) + (xy 142.619347 154.625475) + (xy 142.619341 154.625473) + (xy 142.367404 154.5875) + (xy 142.112595 154.5875) + (xy 141.860658 154.625473) + (xy 141.860652 154.625475) + (xy 141.617175 154.700578) + (xy 141.387624 154.811123) + (xy 141.387616 154.811128) + (xy 141.226813 154.920761) + (xy 142.030779 155.724727) + (xy 141.937412 155.763401) + (xy 141.812075 155.859575) + (xy 141.715901 155.984911) + (xy 141.677227 156.078279) + (xy 140.873453 155.274506) + (xy 140.831455 155.32717) + (xy 140.704058 155.547828) + (xy 140.610973 155.785005) + (xy 140.6096 155.789456) + (xy 140.608432 155.789095) + (xy 140.577026 155.845226) + (xy 140.51536 155.878075) + (xy 140.445724 155.872371) + (xy 140.390226 155.829923) + (xy 140.371581 155.789087) + (xy 140.370878 155.789304) + (xy 140.369509 155.784869) + (xy 140.369508 155.784863) + (xy 140.276393 155.547612) + (xy 140.148959 155.326888) + (xy 139.99005 155.127623) + (xy 139.803217 154.954268) + (xy 139.592634 154.810695) + (xy 139.560696 154.795314) + (xy 139.508838 154.748492) + (xy 139.4905 154.683595) + (xy 139.4905 154.139679) + (xy 139.510185 154.07264) + (xy 139.526814 154.052003) + (xy 146.505642 147.073174) + (xy 146.519271 147.061397) + (xy 146.53853 147.04706) + (xy 146.572101 147.007051) + (xy 146.575761 147.003056) + (xy 146.578287 147.000531) + (xy 146.581591 146.997227) + (xy 146.60138 146.972197) + (xy 146.602509 146.970812) + (xy 146.604879 146.967986) + (xy 146.651302 146.912664) + (xy 146.651305 146.912657) + (xy 146.655274 146.906625) + (xy 146.655325 146.906658) + (xy 146.659372 146.900306) + (xy 146.65932 146.900274) + (xy 146.663111 146.894127) + (xy 146.671394 146.876364) + (xy 146.695226 146.825254) + (xy 146.695952 146.823755) + (xy 146.73004 146.755883) + (xy 146.730043 146.755867) + (xy 146.732509 146.749096) + (xy 146.732567 146.749117) + (xy 146.73504 146.742004) + (xy 146.734983 146.741985) + (xy 146.737254 146.735127) + (xy 146.737257 146.735123) + (xy 146.752625 146.660694) + (xy 146.752991 146.659041) + (xy 146.7705 146.585171) + (xy 146.7705 146.585167) + (xy 146.771339 146.577997) + (xy 146.771398 146.578003) + (xy 146.772164 146.570505) + (xy 146.772105 146.5705) + (xy 146.773364 146.556109) + (xy 146.775619 146.556306) + (xy 146.790556 146.499327) + (xy 146.820621 146.46544) + (xy 146.947046 146.36704) + (xy 147.100156 146.200719) + (xy 147.186193 146.069028) + (xy 147.239338 146.023675) + (xy 147.308569 146.014251) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 152.451905 146.043753) + (xy 152.473804 146.069025) + (xy 152.559844 146.200719) + (xy 152.559849 146.200724) + (xy 152.55985 146.200727) + (xy 152.71295 146.367036) + (xy 152.712954 146.36704) + (xy 152.712957 146.367042) + (xy 152.71296 146.367045) + (xy 152.841662 146.467218) + (xy 152.882475 146.523928) + (xy 152.8895 146.565071) + (xy 152.8895 149.826294) + (xy 152.888191 149.844263) + (xy 152.88471 149.868025) + (xy 152.889264 149.920064) + (xy 152.8895 149.92547) + (xy 152.8895 149.933712) + (xy 152.893202 149.965391) + (xy 152.893383 149.967159) + (xy 152.895182 149.987721) + (xy 152.9 150.042792) + (xy 152.901461 150.049867) + (xy 152.901403 150.049878) + (xy 152.903034 150.057237) + (xy 152.903092 150.057224) + (xy 152.904757 150.064249) + (xy 152.904758 150.064254) + (xy 152.904759 150.064255) + (xy 152.929589 150.132478) + (xy 152.930708 150.135551) + (xy 152.931299 150.137253) + (xy 152.955182 150.209326) + (xy 152.958236 150.215874) + (xy 152.958182 150.215898) + (xy 152.96147 150.222688) + (xy 152.961521 150.222663) + (xy 152.964761 150.229113) + (xy 152.964762 150.229114) + (xy 152.964763 150.229117) + (xy 153.006494 150.292567) + (xy 153.007443 150.294058) + (xy 153.047289 150.358657) + (xy 153.051766 150.364319) + (xy 153.051719 150.364356) + (xy 153.056482 150.370202) + (xy 153.056528 150.370164) + (xy 153.061173 150.375699) + (xy 153.116364 150.427769) + (xy 153.117658 150.429026) + (xy 154.297606 151.608974) + (xy 155.453181 152.764548) + (xy 155.486666 152.825871) + (xy 155.4895 152.852229) + (xy 155.4895 154.683595) + (xy 155.469815 154.750634) + (xy 155.419303 154.795314) + (xy 155.387366 154.810695) + (xy 155.386737 154.811124) + (xy 155.176782 154.954268) + (xy 154.989952 155.127621) + (xy 154.98995 155.127623) + (xy 154.831041 155.326888) + (xy 154.703608 155.547609) + (xy 154.610492 155.784862) + (xy 154.609122 155.789304) + (xy 154.607999 155.788957) + (xy 154.576509 155.84523) + (xy 154.514841 155.878076) + (xy 154.445205 155.872368) + (xy 154.389709 155.829918) + (xy 154.371134 155.789229) + (xy 154.3704 155.789456) + (xy 154.369026 155.785005) + (xy 154.275941 155.547828) + (xy 154.275942 155.547828) + (xy 154.148544 155.327171) + (xy 154.106546 155.274506) + (xy 153.302772 156.078279) + (xy 153.264099 155.984912) + (xy 153.167925 155.859575) + (xy 153.042588 155.763401) + (xy 152.94922 155.724727) + (xy 153.753185 154.920761) + (xy 153.592377 154.811124) + (xy 153.592376 154.811123) + (xy 153.362823 154.700578) + (xy 153.362825 154.700578) + (xy 153.119347 154.625475) + (xy 153.119341 154.625473) + (xy 152.867404 154.5875) + (xy 152.612595 154.5875) + (xy 152.360658 154.625473) + (xy 152.360652 154.625475) + (xy 152.117175 154.700578) + (xy 151.887624 154.811123) + (xy 151.887616 154.811128) + (xy 151.726813 154.920761) + (xy 152.530779 155.724727) + (xy 152.437412 155.763401) + (xy 152.312075 155.859575) + (xy 152.215901 155.984911) + (xy 152.177227 156.078279) + (xy 151.373453 155.274506) + (xy 151.331455 155.32717) + (xy 151.204058 155.547828) + (xy 151.110973 155.785005) + (xy 151.1096 155.789456) + (xy 151.108432 155.789095) + (xy 151.077026 155.845226) + (xy 151.01536 155.878075) + (xy 150.945724 155.872371) + (xy 150.890226 155.829923) + (xy 150.871581 155.789087) + (xy 150.870878 155.789304) + (xy 150.869509 155.784869) + (xy 150.869508 155.784863) + (xy 150.776393 155.547612) + (xy 150.648959 155.326888) + (xy 150.49005 155.127623) + (xy 150.303217 154.954268) + (xy 150.092634 154.810695) + (xy 150.060696 154.795314) + (xy 150.008838 154.748492) + (xy 149.9905 154.683595) + (xy 149.9905 153.944046) + (xy 149.993843 153.915448) + (xy 149.994128 153.914244) + (xy 150.0105 153.84517) + (xy 150.0105 153.845167) + (xy 150.011339 153.837997) + (xy 150.011397 153.838003) + (xy 150.012164 153.830505) + (xy 150.012104 153.8305) + (xy 150.012733 153.823309) + (xy 150.010526 153.747437) + (xy 150.0105 153.745634) + (xy 150.0105 152.102229) + (xy 150.030185 152.03519) + (xy 150.046814 152.014553) + (xy 151.585642 150.475724) + (xy 151.599271 150.463947) + (xy 151.61853 150.44961) + (xy 151.652101 150.409601) + (xy 151.655761 150.405606) + (xy 151.661588 150.39978) + (xy 151.661588 150.399779) + (xy 151.661591 150.399777) + (xy 151.68138 150.374747) + (xy 151.682509 150.373362) + (xy 151.694849 150.358656) + (xy 151.731302 150.315214) + (xy 151.731305 150.315207) + (xy 151.735274 150.309175) + (xy 151.735325 150.309208) + (xy 151.739372 150.302856) + (xy 151.73932 150.302824) + (xy 151.743111 150.296677) + (xy 151.755464 150.270185) + (xy 151.775226 150.227804) + (xy 151.775952 150.226305) + (xy 151.81004 150.158433) + (xy 151.810043 150.158417) + (xy 151.812509 150.151646) + (xy 151.812567 150.151667) + (xy 151.815043 150.144546) + (xy 151.814986 150.144528) + (xy 151.817256 150.137677) + (xy 151.817938 150.134376) + (xy 151.832626 150.063234) + (xy 151.832976 150.061655) + (xy 151.8505 149.987721) + (xy 151.8505 149.987712) + (xy 151.851338 149.980548) + (xy 151.851398 149.980555) + (xy 151.852164 149.973055) + (xy 151.852105 149.97305) + (xy 151.852734 149.96586) + (xy 151.850526 149.889968) + (xy 151.8505 149.888165) + (xy 151.8505 146.565071) + (xy 151.870185 146.498032) + (xy 151.898338 146.467218) + (xy 151.92804 146.4441) + (xy 152.027046 146.36704) + (xy 152.180156 146.200719) + (xy 152.266193 146.069028) + (xy 152.319338 146.023675) + (xy 152.388569 146.014251) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 157.531905 146.043753) + (xy 157.553804 146.069025) + (xy 157.639844 146.200719) + (xy 157.639849 146.200724) + (xy 157.63985 146.200727) + (xy 157.79295 146.367036) + (xy 157.792954 146.36704) + (xy 157.971351 146.505893) + (xy 158.170169 146.613488) + (xy 158.170172 146.613489) + (xy 158.383982 146.68689) + (xy 158.383984 146.68689) + (xy 158.383986 146.686891) + (xy 158.586769 146.720729) + (xy 158.649653 146.751179) + (xy 158.654038 146.755356) + (xy 165.953182 154.0545) + (xy 165.986666 154.115821) + (xy 165.9895 154.142179) + (xy 165.9895 154.683595) + (xy 165.969815 154.750634) + (xy 165.919303 154.795314) + (xy 165.887366 154.810695) + (xy 165.886737 154.811124) + (xy 165.676782 154.954268) + (xy 165.489952 155.127621) + (xy 165.48995 155.127623) + (xy 165.331041 155.326888) + (xy 165.203608 155.547609) + (xy 165.110492 155.784862) + (xy 165.109122 155.789304) + (xy 165.107999 155.788957) + (xy 165.076509 155.84523) + (xy 165.014841 155.878076) + (xy 164.945205 155.872368) + (xy 164.889709 155.829918) + (xy 164.871134 155.789229) + (xy 164.8704 155.789456) + (xy 164.869026 155.785005) + (xy 164.775941 155.547828) + (xy 164.775942 155.547828) + (xy 164.648544 155.327171) + (xy 164.606545 155.274505) + (xy 163.802772 156.078278) + (xy 163.764099 155.984912) + (xy 163.667925 155.859575) + (xy 163.542588 155.763401) + (xy 163.44922 155.724727) + (xy 164.253185 154.920761) + (xy 164.092377 154.811124) + (xy 164.092376 154.811123) + (xy 163.862823 154.700578) + (xy 163.862825 154.700578) + (xy 163.619347 154.625475) + (xy 163.619341 154.625473) + (xy 163.367404 154.5875) + (xy 163.112595 154.5875) + (xy 162.860658 154.625473) + (xy 162.860652 154.625475) + (xy 162.617175 154.700578) + (xy 162.387624 154.811123) + (xy 162.387616 154.811128) + (xy 162.226813 154.920761) + (xy 163.030779 155.724727) + (xy 162.937412 155.763401) + (xy 162.812075 155.859575) + (xy 162.715901 155.984911) + (xy 162.677227 156.078279) + (xy 161.873453 155.274506) + (xy 161.831455 155.32717) + (xy 161.704058 155.547828) + (xy 161.610973 155.785005) + (xy 161.6096 155.789456) + (xy 161.608432 155.789095) + (xy 161.577026 155.845226) + (xy 161.51536 155.878075) + (xy 161.445724 155.872371) + (xy 161.390226 155.829923) + (xy 161.371581 155.789087) + (xy 161.370878 155.789304) + (xy 161.369509 155.784869) + (xy 161.369508 155.784863) + (xy 161.276393 155.547612) + (xy 161.148959 155.326888) + (xy 160.99005 155.127623) + (xy 160.803217 154.954268) + (xy 160.592634 154.810695) + (xy 160.560696 154.795314) + (xy 160.508838 154.748492) + (xy 160.4905 154.683595) + (xy 160.4905 151.493705) + (xy 160.491809 151.475735) + (xy 160.495289 151.451974) + (xy 160.490736 151.399939) + (xy 160.4905 151.394532) + (xy 160.4905 151.386296) + (xy 160.4905 151.386291) + (xy 160.486787 151.354534) + (xy 160.48662 151.352898) + (xy 160.482082 151.301025) + (xy 160.479999 151.277208) + (xy 160.478538 151.270135) + (xy 160.478598 151.270122) + (xy 160.476965 151.262757) + (xy 160.476906 151.262772) + (xy 160.475241 151.255749) + (xy 160.475241 151.255745) + (xy 160.449274 151.184403) + (xy 160.448698 151.182746) + (xy 160.424814 151.110665) + (xy 160.424809 151.110658) + (xy 160.421761 151.104118) + (xy 160.421815 151.104092) + (xy 160.418533 151.097312) + (xy 160.41848 151.09734) + (xy 160.415238 151.090885) + (xy 160.406117 151.077017) + (xy 160.373527 151.027466) + (xy 160.37258 151.02598) + (xy 160.332714 150.961347) + (xy 160.328234 150.955681) + (xy 160.32828 150.955643) + (xy 160.323519 150.949799) + (xy 160.323474 150.949838) + (xy 160.318831 150.944305) + (xy 160.263634 150.892229) + (xy 160.262374 150.891006) + (xy 156.966819 147.59545) + (xy 156.933334 147.534127) + (xy 156.9305 147.507769) + (xy 156.9305 146.565071) + (xy 156.950185 146.498032) + (xy 156.978338 146.467218) + (xy 157.00804 146.4441) + (xy 157.107046 146.36704) + (xy 157.260156 146.200719) + (xy 157.346193 146.069028) + (xy 157.399338 146.023675) + (xy 157.468569 146.014251) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 149.911905 146.043753) + (xy 149.933804 146.069025) + (xy 150.019844 146.200719) + (xy 150.019849 146.200724) + (xy 150.01985 146.200727) + (xy 150.17295 146.367036) + (xy 150.172954 146.36704) + (xy 150.172957 146.367042) + (xy 150.17296 146.367045) + (xy 150.301662 146.467218) + (xy 150.342475 146.523928) + (xy 150.3495 146.565071) + (xy 150.3495 149.537769) + (xy 150.329815 149.604808) + (xy 150.313181 149.62545) + (xy 148.774358 151.164272) + (xy 148.760729 151.176051) + (xy 148.741468 151.19039) + (xy 148.707898 151.230397) + (xy 148.704253 151.234376) + (xy 148.698407 151.240223) + (xy 148.678618 151.265251) + (xy 148.677481 151.266647) + (xy 148.628694 151.32479) + (xy 148.624729 151.330819) + (xy 148.624682 151.330788) + (xy 148.62063 151.337147) + (xy 148.620679 151.337177) + (xy 148.616889 151.343321) + (xy 148.584812 151.41211) + (xy 148.584027 151.413731) + (xy 148.549957 151.481572) + (xy 148.547488 151.488357) + (xy 148.547432 151.488336) + (xy 148.54496 151.49545) + (xy 148.545015 151.495469) + (xy 148.542743 151.502325) + (xy 148.527391 151.57667) + (xy 148.527001 151.578428) + (xy 148.509499 151.652279) + (xy 148.508661 151.659454) + (xy 148.508601 151.659447) + (xy 148.507835 151.666945) + (xy 148.507895 151.666951) + (xy 148.507265 151.67414) + (xy 148.509474 151.75003) + (xy 148.5095 151.751833) + (xy 148.5095 153.590844) + (xy 148.506158 153.619439) + (xy 148.489499 153.689732) + (xy 148.488661 153.696903) + (xy 148.488601 153.696896) + (xy 148.487835 153.704394) + (xy 148.487895 153.7044) + (xy 148.487265 153.711589) + (xy 148.489474 153.787479) + (xy 148.4895 153.789282) + (xy 148.4895 154.683595) + (xy 148.469815 154.750634) + (xy 148.419303 154.795314) + (xy 148.387366 154.810695) + (xy 148.386737 154.811124) + (xy 148.176782 154.954268) + (xy 147.989952 155.127621) + (xy 147.98995 155.127623) + (xy 147.831041 155.326888) + (xy 147.703608 155.547609) + (xy 147.610492 155.784862) + (xy 147.609122 155.789304) + (xy 147.607677 155.788858) + (xy 147.57678 155.844093) + (xy 147.515117 155.876949) + (xy 147.44548 155.871252) + (xy 147.389978 155.828811) + (xy 147.371805 155.789017) + (xy 147.370878 155.789304) + (xy 147.369509 155.784869) + (xy 147.369508 155.784863) + (xy 147.276393 155.547612) + (xy 147.148959 155.326888) + (xy 146.99005 155.127623) + (xy 146.803217 154.954268) + (xy 146.592634 154.810695) + (xy 146.560696 154.795314) + (xy 146.508838 154.748492) + (xy 146.4905 154.683595) + (xy 146.4905 151.002228) + (xy 146.510185 150.935189) + (xy 146.526814 150.914552) + (xy 149.045638 148.395727) + (xy 149.059267 148.38395) + (xy 149.07853 148.36961) + (xy 149.078532 148.369606) + (xy 149.078534 148.369606) + (xy 149.104503 148.338656) + (xy 149.112113 148.329585) + (xy 149.115767 148.325599) + (xy 149.12159 148.319777) + (xy 149.141376 148.29475) + (xy 149.142494 148.293378) + (xy 149.191302 148.235214) + (xy 149.191303 148.235211) + (xy 149.195272 148.229179) + (xy 149.195323 148.229212) + (xy 149.199369 148.22286) + (xy 149.199317 148.222828) + (xy 149.203109 148.216679) + (xy 149.203111 148.216677) + (xy 149.235195 148.147869) + (xy 149.235958 148.146292) + (xy 149.27004 148.078433) + (xy 149.270043 148.078417) + (xy 149.27251 148.071644) + (xy 149.272568 148.071665) + (xy 149.275043 148.064546) + (xy 149.274985 148.064527) + (xy 149.277255 148.057677) + (xy 149.277256 148.057673) + (xy 149.292608 147.983319) + (xy 149.29299 147.981596) + (xy 149.301572 147.945391) + (xy 149.3105 147.907721) + (xy 149.3105 147.90772) + (xy 149.310501 147.907716) + (xy 149.311339 147.900548) + (xy 149.311397 147.900554) + (xy 149.312164 147.893056) + (xy 149.312104 147.893051) + (xy 149.312733 147.88586) + (xy 149.310526 147.809988) + (xy 149.3105 147.808185) + (xy 149.3105 146.565071) + (xy 149.330185 146.498032) + (xy 149.358338 146.467218) + (xy 149.38804 146.4441) + (xy 149.487046 146.36704) + (xy 149.640156 146.200719) + (xy 149.726193 146.069028) + (xy 149.779338 146.023675) + (xy 149.848569 146.014251) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 154.991905 146.043753) + (xy 155.013804 146.069025) + (xy 155.099844 146.200719) + (xy 155.099849 146.200724) + (xy 155.09985 146.200727) + (xy 155.25295 146.367036) + (xy 155.252954 146.36704) + (xy 155.252957 146.367042) + (xy 155.25296 146.367045) + (xy 155.381662 146.467218) + (xy 155.422475 146.523928) + (xy 155.4295 146.565071) + (xy 155.4295 147.806294) + (xy 155.428191 147.824263) + (xy 155.42471 147.848025) + (xy 155.429264 147.900064) + (xy 155.4295 147.90547) + (xy 155.4295 147.913712) + (xy 155.433202 147.945391) + (xy 155.433386 147.947185) + (xy 155.44 148.022792) + (xy 155.441461 148.029867) + (xy 155.441403 148.029878) + (xy 155.443034 148.037237) + (xy 155.443092 148.037224) + (xy 155.444757 148.044249) + (xy 155.444758 148.044254) + (xy 155.444759 148.044255) + (xy 155.457199 148.078436) + (xy 155.470708 148.115551) + (xy 155.471299 148.117253) + (xy 155.495182 148.189326) + (xy 155.498236 148.195874) + (xy 155.498182 148.195898) + (xy 155.50147 148.202688) + (xy 155.501521 148.202663) + (xy 155.504761 148.209113) + (xy 155.504762 148.209114) + (xy 155.504763 148.209117) + (xy 155.546494 148.272567) + (xy 155.547443 148.274058) + (xy 155.580415 148.327514) + (xy 155.587289 148.338657) + (xy 155.591766 148.344319) + (xy 155.591719 148.344356) + (xy 155.596482 148.350202) + (xy 155.596528 148.350164) + (xy 155.601173 148.355699) + (xy 155.656364 148.407769) + (xy 155.657658 148.409026) + (xy 157.319291 150.070659) + (xy 158.953181 151.704548) + (xy 158.986666 151.765871) + (xy 158.9895 151.792229) + (xy 158.9895 154.683595) + (xy 158.969815 154.750634) + (xy 158.919303 154.795314) + (xy 158.887366 154.810695) + (xy 158.886737 154.811124) + (xy 158.676782 154.954268) + (xy 158.489952 155.127621) + (xy 158.48995 155.127623) + (xy 158.331041 155.326888) + (xy 158.203608 155.547609) + (xy 158.110492 155.784862) + (xy 158.109122 155.789304) + (xy 158.107677 155.788858) + (xy 158.07678 155.844093) + (xy 158.015117 155.876949) + (xy 157.94548 155.871252) + (xy 157.889978 155.828811) + (xy 157.871805 155.789017) + (xy 157.870878 155.789304) + (xy 157.869509 155.784869) + (xy 157.869508 155.784863) + (xy 157.776393 155.547612) + (xy 157.648959 155.326888) + (xy 157.49005 155.127623) + (xy 157.303217 154.954268) + (xy 157.092634 154.810695) + (xy 157.060696 154.795314) + (xy 157.008838 154.748492) + (xy 156.9905 154.683595) + (xy 156.9905 152.553705) + (xy 156.991809 152.535735) + (xy 156.995289 152.511974) + (xy 156.990736 152.459939) + (xy 156.9905 152.454532) + (xy 156.9905 152.446296) + (xy 156.9905 152.446291) + (xy 156.986787 152.414534) + (xy 156.98662 152.412898) + (xy 156.982082 152.361025) + (xy 156.979999 152.337208) + (xy 156.978538 152.330135) + (xy 156.978598 152.330122) + (xy 156.976965 152.322757) + (xy 156.976906 152.322772) + (xy 156.975241 152.315749) + (xy 156.975241 152.315745) + (xy 156.949274 152.244403) + (xy 156.948698 152.242746) + (xy 156.924814 152.170665) + (xy 156.924809 152.170658) + (xy 156.921761 152.164118) + (xy 156.921815 152.164092) + (xy 156.918533 152.157312) + (xy 156.91848 152.15734) + (xy 156.915238 152.150885) + (xy 156.915237 152.150883) + (xy 156.873527 152.087466) + (xy 156.87258 152.08598) + (xy 156.832714 152.021347) + (xy 156.828234 152.015681) + (xy 156.82828 152.015643) + (xy 156.823519 152.009799) + (xy 156.823474 152.009838) + (xy 156.818831 152.004305) + (xy 156.763634 151.952229) + (xy 156.762374 151.951006) + (xy 154.426819 149.615451) + (xy 154.393334 149.554128) + (xy 154.3905 149.52777) + (xy 154.3905 146.565071) + (xy 154.410185 146.498032) + (xy 154.438338 146.467218) + (xy 154.46804 146.4441) + (xy 154.567046 146.36704) + (xy 154.720156 146.200719) + (xy 154.806193 146.069028) + (xy 154.859338 146.023675) + (xy 154.928569 146.014251) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 134.671905 146.043753) + (xy 134.693804 146.069025) + (xy 134.779844 146.200719) + (xy 134.779849 146.200724) + (xy 134.77985 146.200727) + (xy 134.93295 146.367036) + (xy 134.932954 146.36704) + (xy 134.932957 146.367042) + (xy 134.93296 146.367045) + (xy 135.035091 146.446537) + (xy 135.075904 146.503247) + (xy 135.079579 146.57302) + (xy 135.04661 146.632071) + (xy 130.865501 150.813181) + (xy 130.804178 150.846666) + (xy 130.77782 150.8495) + (xy 129.491205 150.8495) + (xy 129.473235 150.848191) + (xy 129.449472 150.84471) + (xy 129.404033 150.848686) + (xy 129.397431 150.849264) + (xy 129.39203 150.8495) + (xy 129.383783 150.8495) + (xy 129.352106 150.853202) + (xy 129.350332 150.853384) + (xy 129.3323 150.854961) + (xy 129.270714 150.860349) + (xy 129.202214 150.846582) + (xy 129.152031 150.797967) + (xy 129.136098 150.729938) + (xy 129.159474 150.664094) + (xy 129.17222 150.649146) + (xy 133.067823 146.753543) + (xy 133.129144 146.72006) + (xy 133.175913 146.718918) + (xy 133.182757 146.72006) + (xy 133.206965 146.7241) + (xy 133.206967 146.7241) + (xy 133.433032 146.7241) + (xy 133.433033 146.7241) + (xy 133.656014 146.686891) + (xy 133.869831 146.613488) + (xy 134.068649 146.505893) + (xy 134.247046 146.36704) + (xy 134.400156 146.200719) + (xy 134.486193 146.069028) + (xy 134.539338 146.023675) + (xy 134.608569 146.014251) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 129.591905 146.043753) + (xy 129.613804 146.069025) + (xy 129.699844 146.200719) + (xy 129.699849 146.200724) + (xy 129.69985 146.200727) + (xy 129.85295 146.367036) + (xy 129.852954 146.36704) + (xy 129.852957 146.367042) + (xy 129.85296 146.367045) + (xy 129.981662 146.467218) + (xy 130.022475 146.523928) + (xy 130.0295 146.565073) + (xy 130.029499 146.627822) + (xy 130.009813 146.694861) + (xy 129.99318 146.715501) + (xy 127.295501 149.413181) + (xy 127.234178 149.446666) + (xy 127.20782 149.4495) + (xy 125.58118 149.4495) + (xy 125.514141 149.429815) + (xy 125.468386 149.377011) + (xy 125.458442 149.307853) + (xy 125.487467 149.244297) + (xy 125.493499 149.237819) + (xy 125.880818 148.8505) + (xy 127.97921 146.752106) + (xy 128.040531 146.718623) + (xy 128.087295 146.71748) + (xy 128.126967 146.7241) + (xy 128.126969 146.7241) + (xy 128.353032 146.7241) + (xy 128.353033 146.7241) + (xy 128.576014 146.686891) + (xy 128.789831 146.613488) + (xy 128.988649 146.505893) + (xy 129.167046 146.36704) + (xy 129.320156 146.200719) + (xy 129.406193 146.069028) + (xy 129.459338 146.023675) + (xy 129.528569 146.014251) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 124.511903 146.043753) + (xy 124.533807 146.069031) + (xy 124.619842 146.200716) + (xy 124.61985 146.200727) + (xy 124.77295 146.367036) + (xy 124.772954 146.36704) + (xy 124.772957 146.367042) + (xy 124.77296 146.367045) + (xy 124.901662 146.467218) + (xy 124.942475 146.523928) + (xy 124.9495 146.565071) + (xy 124.9495 146.61777) + (xy 124.929815 146.684809) + (xy 124.913181 146.705451) + (xy 123.605451 148.013181) + (xy 123.544128 148.046666) + (xy 123.51777 148.0495) + (xy 121.979757 148.0495) + (xy 121.912718 148.029815) + (xy 121.866963 147.977011) + (xy 121.857019 147.907853) + (xy 121.882486 147.848596) + (xy 121.893367 147.834831) + (xy 121.901386 147.82469) + (xy 121.902508 147.823313) + (xy 121.913689 147.809988) + (xy 121.951302 147.765164) + (xy 121.951305 147.765157) + (xy 121.954139 147.76085) + (xy 121.970055 147.741311) + (xy 122.951195 146.760171) + (xy 123.012516 146.726688) + (xy 123.041838 146.724758) + (xy 123.041838 146.7241) + (xy 123.273032 146.7241) + (xy 123.273033 146.7241) + (xy 123.496014 146.686891) + (xy 123.709831 146.613488) + (xy 123.908649 146.505893) + (xy 124.087046 146.36704) + (xy 124.240156 146.200719) + (xy 124.326193 146.069029) + (xy 124.379336 146.023675) + (xy 124.448567 146.014251) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 119.885191 143.610185) + (xy 119.905833 143.626819) + (xy 119.958181 143.679167) + (xy 119.991666 143.74049) + (xy 119.9945 143.766848) + (xy 119.9945 144.073573) + (xy 119.974815 144.140612) + (xy 119.929519 144.182627) + (xy 119.871356 144.214103) + (xy 119.871353 144.214105) + (xy 119.692955 144.352959) + (xy 119.69295 144.352963) + (xy 119.53985 144.519272) + (xy 119.539842 144.519283) + (xy 119.416198 144.708533) + (xy 119.325388 144.91556) + (xy 119.269892 145.13471) + (xy 119.251225 145.359993) + (xy 119.251225 145.360006) + (xy 119.269892 145.585289) + (xy 119.325388 145.804439) + (xy 119.416198 146.011466) + (xy 119.539842 146.200716) + (xy 119.53985 146.200727) + (xy 119.69295 146.367036) + (xy 119.692955 146.367041) + (xy 119.770821 146.427647) + (xy 119.811634 146.484358) + (xy 119.815307 146.554131) + (xy 119.780676 146.614814) + (xy 119.718734 146.64714) + (xy 119.694658 146.6495) + (xy 116.465341 146.6495) + (xy 116.398302 146.629815) + (xy 116.352547 146.577011) + (xy 116.342603 146.507853) + (xy 116.371628 146.444297) + (xy 116.389179 146.427647) + (xy 116.415319 146.4073) + (xy 116.467046 146.36704) + (xy 116.620156 146.200719) + (xy 116.743802 146.011465) + (xy 116.834611 145.804441) + (xy 116.890107 145.585293) + (xy 116.908775 145.36) + (xy 116.890107 145.134707) + (xy 116.834611 144.915559) + (xy 116.743802 144.708535) + (xy 116.620156 144.519281) + (xy 116.620153 144.519278) + (xy 116.620149 144.519272) + (xy 116.467049 144.352963) + (xy 116.467047 144.352961) + (xy 116.467046 144.35296) + (xy 116.288649 144.214107) + (xy 116.218716 144.176261) + (xy 116.089832 144.106512) + (xy 116.089827 144.10651) + (xy 115.876017 144.033109) + (xy 115.708778 144.005202) + (xy 115.653033 143.9959) + (xy 115.426967 143.9959) + (xy 115.397771 144.000772) + (xy 115.203982 144.033109) + (xy 114.990172 144.10651) + (xy 114.990167 144.106512) + (xy 114.791352 144.214106) + (xy 114.612955 144.352958) + (xy 114.558186 144.412453) + (xy 114.498298 144.448443) + (xy 114.42846 144.446342) + (xy 114.370845 144.406817) + (xy 114.350775 144.371802) + (xy 114.306954 144.254313) + (xy 114.30695 144.254306) + (xy 114.22079 144.139212) + (xy 114.220787 144.139209) + (xy 114.105693 144.053049) + (xy 114.105686 144.053045) + (xy 113.970979 144.002803) + (xy 113.970972 144.002801) + (xy 113.911444 143.9964) + (xy 113.25 143.9964) + (xy 113.249999 144.915702) + (xy 113.144592 144.867565) + (xy 113.036334 144.852) + (xy 112.963666 144.852) + (xy 112.855408 144.867565) + (xy 112.75 144.915702) + (xy 112.75 143.9964) + (xy 112.088555 143.9964) + (xy 112.029027 144.002801) + (xy 112.02902 144.002803) + (xy 111.894313 144.053045) + (xy 111.894307 144.053049) + (xy 111.804309 144.120421) + (xy 111.738845 144.144838) + (xy 111.670572 144.129986) + (xy 111.655688 144.12042) + (xy 111.565693 144.053049) + (xy 111.565686 144.053045) + (xy 111.430979 144.002803) + (xy 111.430972 144.002801) + (xy 111.371444 143.9964) + (xy 110.71 143.9964) + (xy 110.71 144.915702) + (xy 110.604592 144.867565) + (xy 110.496334 144.852) + (xy 110.423666 144.852) + (xy 110.315408 144.867565) + (xy 110.209999 144.915702) + (xy 110.21 143.9964) + (xy 109.548555 143.9964) + (xy 109.489027 144.002801) + (xy 109.48902 144.002803) + (xy 109.354313 144.053045) + (xy 109.354306 144.053049) + (xy 109.239212 144.139209) + (xy 109.239209 144.139212) + (xy 109.153049 144.254306) + (xy 109.153046 144.254312) + (xy 109.109224 144.371803) + (xy 109.067352 144.427736) + (xy 109.001887 144.452153) + (xy 108.933615 144.437301) + (xy 108.901813 144.412452) + (xy 108.847049 144.352963) + (xy 108.847047 144.352961) + (xy 108.847046 144.35296) + (xy 108.668649 144.214107) + (xy 108.598716 144.176261) + (xy 108.469832 144.106512) + (xy 108.469827 144.10651) + (xy 108.256017 144.033109) + (xy 108.088778 144.005202) + (xy 108.033033 143.9959) + (xy 107.806967 143.9959) + (xy 107.707351 144.012522) + (xy 107.637986 144.00414) + (xy 107.599261 143.977894) + (xy 107.423549 143.802181) + (xy 107.390064 143.740858) + (xy 107.395048 143.671166) + (xy 107.43692 143.615233) + (xy 107.502384 143.590816) + (xy 107.51123 143.5905) + (xy 119.818152 143.5905) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 112.533155 145.146799) + (xy 112.492 145.286961) + (xy 112.492 145.433039) + (xy 112.533155 145.573201) + (xy 112.556804 145.61) + (xy 110.903196 145.61) + (xy 110.926845 145.573201) + (xy 110.968 145.433039) + (xy 110.968 145.286961) + (xy 110.926845 145.146799) + (xy 110.903196 145.11) + (xy 112.556804 145.11) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 124.055191 142.710185) + (xy 124.075833 142.726819) + (xy 125.038181 143.689167) + (xy 125.071666 143.75049) + (xy 125.0745 143.776848) + (xy 125.0745 144.073573) + (xy 125.054815 144.140612) + (xy 125.009519 144.182627) + (xy 124.951356 144.214103) + (xy 124.951353 144.214105) + (xy 124.772955 144.352959) + (xy 124.77295 144.352963) + (xy 124.61985 144.519272) + (xy 124.619842 144.519283) + (xy 124.533808 144.650968) + (xy 124.480662 144.696325) + (xy 124.41143 144.705748) + (xy 124.348095 144.676246) + (xy 124.326192 144.650968) + (xy 124.274741 144.572217) + (xy 124.240156 144.519281) + (xy 124.240153 144.519278) + (xy 124.240149 144.519272) + (xy 124.087049 144.352963) + (xy 124.087047 144.352961) + (xy 124.087046 144.35296) + (xy 123.908649 144.214107) + (xy 123.838716 144.176261) + (xy 123.709832 144.106512) + (xy 123.709827 144.10651) + (xy 123.496017 144.033109) + (xy 123.328778 144.005202) + (xy 123.273033 143.9959) + (xy 123.046967 143.9959) + (xy 123.017771 144.000772) + (xy 122.82398 144.033109) + (xy 122.818066 144.03514) + (xy 122.748267 144.038286) + (xy 122.690128 144.005538) + (xy 121.586772 142.902181) + (xy 121.553287 142.840858) + (xy 121.558271 142.771166) + (xy 121.600143 142.715233) + (xy 121.665607 142.690816) + (xy 121.674453 142.6905) + (xy 123.988152 142.6905) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 128.225191 141.810185) + (xy 128.245833 141.826819) + (xy 130.118181 143.699167) + (xy 130.151666 143.76049) + (xy 130.1545 143.786848) + (xy 130.1545 144.073573) + (xy 130.134815 144.140612) + (xy 130.089519 144.182627) + (xy 130.031356 144.214103) + (xy 130.031353 144.214105) + (xy 129.852955 144.352959) + (xy 129.85295 144.352963) + (xy 129.69985 144.519272) + (xy 129.699846 144.519278) + (xy 129.613807 144.650969) + (xy 129.56066 144.696325) + (xy 129.491429 144.705748) + (xy 129.428093 144.676245) + (xy 129.406192 144.650969) + (xy 129.320156 144.519281) + (xy 129.320151 144.519276) + (xy 129.320149 144.519272) + (xy 129.167049 144.352963) + (xy 129.167047 144.352961) + (xy 129.167046 144.35296) + (xy 128.988649 144.214107) + (xy 128.918716 144.176261) + (xy 128.789832 144.106512) + (xy 128.789827 144.10651) + (xy 128.576017 144.033109) + (xy 128.408778 144.005202) + (xy 128.353033 143.9959) + (xy 128.126967 143.9959) + (xy 128.071221 144.005202) + (xy 127.903983 144.033109) + (xy 127.890625 144.037695) + (xy 127.820826 144.040843) + (xy 127.762684 144.008094) + (xy 125.756772 142.002181) + (xy 125.723287 141.940858) + (xy 125.728271 141.871166) + (xy 125.770143 141.815233) + (xy 125.835607 141.790816) + (xy 125.844453 141.7905) + (xy 128.158152 141.7905) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 132.425191 140.910185) + (xy 132.445833 140.926819) + (xy 135.198181 143.679167) + (xy 135.231666 143.74049) + (xy 135.2345 143.766848) + (xy 135.2345 144.073573) + (xy 135.214815 144.140612) + (xy 135.169519 144.182627) + (xy 135.111356 144.214103) + (xy 135.111353 144.214105) + (xy 134.932955 144.352959) + (xy 134.93295 144.352963) + (xy 134.77985 144.519272) + (xy 134.779842 144.519283) + (xy 134.693808 144.650968) + (xy 134.640662 144.696325) + (xy 134.57143 144.705748) + (xy 134.508095 144.676246) + (xy 134.486192 144.650968) + (xy 134.434741 144.572217) + (xy 134.400156 144.519281) + (xy 134.400153 144.519278) + (xy 134.400149 144.519272) + (xy 134.247049 144.352963) + (xy 134.247047 144.352961) + (xy 134.247046 144.35296) + (xy 134.068649 144.214107) + (xy 133.998716 144.176261) + (xy 133.869832 144.106512) + (xy 133.869827 144.10651) + (xy 133.656017 144.033109) + (xy 133.488778 144.005202) + (xy 133.433033 143.9959) + (xy 133.206967 143.9959) + (xy 133.177771 144.000772) + (xy 132.983982 144.033109) + (xy 132.963177 144.040251) + (xy 132.893378 144.043398) + (xy 132.835239 144.010649) + (xy 129.926772 141.102181) + (xy 129.893287 141.040858) + (xy 129.898271 140.971166) + (xy 129.940143 140.915233) + (xy 130.005607 140.890816) + (xy 130.014453 140.8905) + (xy 132.358152 140.8905) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 136.324607 124.495185) + (xy 136.345249 124.511819) + (xy 147.898181 136.064751) + (xy 147.931666 136.126074) + (xy 147.9345 136.152432) + (xy 147.9345 144.073573) + (xy 147.914815 144.140612) + (xy 147.869519 144.182627) + (xy 147.811356 144.214103) + (xy 147.811353 144.214105) + (xy 147.632955 144.352959) + (xy 147.63295 144.352963) + (xy 147.47985 144.519272) + (xy 147.479842 144.519283) + (xy 147.393808 144.650968) + (xy 147.340662 144.696325) + (xy 147.27143 144.705748) + (xy 147.208095 144.676246) + (xy 147.186192 144.650968) + (xy 147.134741 144.572217) + (xy 147.100156 144.519281) + (xy 147.100153 144.519278) + (xy 147.100149 144.519272) + (xy 146.947049 144.352963) + (xy 146.947047 144.352961) + (xy 146.947046 144.35296) + (xy 146.768649 144.214107) + (xy 146.698716 144.176261) + (xy 146.569832 144.106512) + (xy 146.569827 144.10651) + (xy 146.356017 144.033109) + (xy 146.188778 144.005202) + (xy 146.133033 143.9959) + (xy 145.906967 143.9959) + (xy 145.877771 144.000772) + (xy 145.683982 144.033109) + (xy 145.678067 144.03514) + (xy 145.608268 144.038286) + (xy 145.550129 144.005538) + (xy 145.060803 143.516212) + (xy 145.05098 143.50395) + (xy 145.050759 143.504134) + (xy 145.045786 143.498122) + (xy 144.996066 143.451432) + (xy 144.994666 143.450075) + (xy 144.974476 143.429884) + (xy 144.968986 143.425625) + (xy 144.964561 143.421847) + (xy 144.930582 143.389938) + (xy 144.93058 143.389936) + (xy 144.930577 143.389935) + (xy 144.913029 143.380288) + (xy 144.896763 143.369604) + (xy 144.880933 143.357325) + (xy 144.838168 143.338818) + (xy 144.832922 143.336248) + (xy 144.792093 143.313803) + (xy 144.792092 143.313802) + (xy 144.772693 143.308822) + (xy 144.754281 143.302518) + (xy 144.735898 143.294562) + (xy 144.735892 143.29456) + (xy 144.689874 143.287272) + (xy 144.684152 143.286087) + (xy 144.639021 143.2745) + (xy 144.639019 143.2745) + (xy 144.618984 143.2745) + (xy 144.599586 143.272973) + (xy 144.592162 143.271797) + (xy 144.579805 143.26984) + (xy 144.579804 143.26984) + (xy 144.533416 143.274225) + (xy 144.527578 143.2745) + (xy 140.846848 143.2745) + (xy 140.779809 143.254815) + (xy 140.759167 143.238181) + (xy 138.660992 141.140006) + (xy 140.801225 141.140006) + (xy 140.819892 141.365289) + (xy 140.875388 141.584439) + (xy 140.966198 141.791466) + (xy 141.089842 141.980716) + (xy 141.08985 141.980727) + (xy 141.24295 142.147036) + (xy 141.242954 142.14704) + (xy 141.421351 142.285893) + (xy 141.620169 142.393488) + (xy 141.620172 142.393489) + (xy 141.833982 142.46689) + (xy 141.833984 142.46689) + (xy 141.833986 142.466891) + (xy 142.056967 142.5041) + (xy 142.056968 142.5041) + (xy 142.283032 142.5041) + (xy 142.283033 142.5041) + (xy 142.506014 142.466891) + (xy 142.719831 142.393488) + (xy 142.918649 142.285893) + (xy 143.097046 142.14704) + (xy 143.250156 141.980719) + (xy 143.373802 141.791465) + (xy 143.464611 141.584441) + (xy 143.520107 141.365293) + (xy 143.532723 141.213039) + (xy 143.538775 141.140006) + (xy 143.538775 141.139993) + (xy 143.523295 140.953181) + (xy 143.520107 140.914707) + (xy 143.464611 140.695559) + (xy 143.373802 140.488535) + (xy 143.354397 140.458834) + (xy 143.295373 140.368491) + (xy 143.250156 140.299281) + (xy 143.250153 140.299278) + (xy 143.250149 140.299272) + (xy 143.097049 140.132963) + (xy 143.097048 140.132962) + (xy 143.097046 140.13296) + (xy 142.918649 139.994107) + (xy 142.85496 139.95964) + (xy 142.719832 139.886512) + (xy 142.719827 139.88651) + (xy 142.506017 139.813109) + (xy 142.338778 139.785202) + (xy 142.283033 139.7759) + (xy 142.056967 139.7759) + (xy 142.01237 139.783341) + (xy 141.833982 139.813109) + (xy 141.620172 139.88651) + (xy 141.620167 139.886512) + (xy 141.421352 139.994106) + (xy 141.242955 140.132959) + (xy 141.24295 140.132963) + (xy 141.08985 140.299272) + (xy 141.089842 140.299283) + (xy 140.966198 140.488533) + (xy 140.875388 140.69556) + (xy 140.819892 140.91471) + (xy 140.801225 141.139993) + (xy 140.801225 141.140006) + (xy 138.660992 141.140006) + (xy 134.697199 137.176212) + (xy 134.687376 137.16395) + (xy 134.687155 137.164134) + (xy 134.682182 137.158122) + (xy 134.632462 137.111432) + (xy 134.631062 137.110075) + (xy 134.610872 137.089884) + (xy 134.605382 137.085625) + (xy 134.600957 137.081847) + (xy 134.566978 137.049938) + (xy 134.566976 137.049936) + (xy 134.566973 137.049935) + (xy 134.549425 137.040288) + (xy 134.533159 137.029604) + (xy 134.524897 137.023195) + (xy 134.517332 137.017327) + (xy 134.517331 137.017326) + (xy 134.517329 137.017325) + (xy 134.474564 136.998818) + (xy 134.469318 136.996248) + (xy 134.428489 136.973803) + (xy 134.428488 136.973802) + (xy 134.409089 136.968822) + (xy 134.390677 136.962518) + (xy 134.372294 136.954562) + (xy 134.372288 136.95456) + (xy 134.32627 136.947272) + (xy 134.320548 136.946087) + (xy 134.275417 136.9345) + (xy 134.275415 136.9345) + (xy 134.25538 136.9345) + (xy 134.235982 136.932973) + (xy 134.228558 136.931797) + (xy 134.216201 136.92984) + (xy 134.2162 136.92984) + (xy 134.169812 136.934225) + (xy 134.163974 136.9345) + (xy 123.006848 136.9345) + (xy 122.939809 136.914815) + (xy 122.919167 136.898181) + (xy 122.090603 136.069617) + (xy 121.261816 135.240829) + (xy 121.228333 135.179509) + (xy 121.225499 135.15316) + (xy 121.225499 135.000006) + (xy 124.531225 135.000006) + (xy 124.549892 135.225289) + (xy 124.605388 135.444439) + (xy 124.696198 135.651466) + (xy 124.819842 135.840716) + (xy 124.81985 135.840727) + (xy 124.97295 136.007036) + (xy 124.972954 136.00704) + (xy 125.151351 136.145893) + (xy 125.350169 136.253488) + (xy 125.350172 136.253489) + (xy 125.563982 136.32689) + (xy 125.563984 136.32689) + (xy 125.563986 136.326891) + (xy 125.786967 136.3641) + (xy 125.786968 136.3641) + (xy 126.013032 136.3641) + (xy 126.013033 136.3641) + (xy 126.236014 136.326891) + (xy 126.449831 136.253488) + (xy 126.648649 136.145893) + (xy 126.827046 136.00704) + (xy 126.951246 135.872124) + (xy 126.980149 135.840727) + (xy 126.98015 135.840725) + (xy 126.980156 135.840719) + (xy 127.103802 135.651465) + (xy 127.194611 135.444441) + (xy 127.250107 135.225293) + (xy 127.268775 135) + (xy 127.250107 134.774707) + (xy 127.194611 134.555559) + (xy 127.103802 134.348535) + (xy 127.097037 134.338181) + (xy 127.041085 134.252539) + (xy 126.980156 134.159281) + (xy 126.980153 134.159278) + (xy 126.980149 134.159272) + (xy 126.827049 133.992963) + (xy 126.827048 133.992962) + (xy 126.827046 133.99296) + (xy 126.648649 133.854107) + (xy 126.648647 133.854106) + (xy 126.648646 133.854105) + (xy 126.648639 133.8541) + (xy 126.620836 133.839055) + (xy 126.571244 133.789837) + (xy 126.556135 133.72162) + (xy 126.580306 133.656064) + (xy 126.620836 133.620945) + (xy 126.648639 133.605899) + (xy 126.648642 133.605896) + (xy 126.648649 133.605893) + (xy 126.827046 133.46704) + (xy 126.953274 133.329921) + (xy 126.980149 133.300727) + (xy 126.98015 133.300725) + (xy 126.980156 133.300719) + (xy 127.103802 133.111465) + (xy 127.194611 132.904441) + (xy 127.250107 132.685293) + (xy 127.268775 132.46) + (xy 127.250107 132.234707) + (xy 127.194611 132.015559) + (xy 127.103802 131.808535) + (xy 126.980156 131.619281) + (xy 126.980153 131.619278) + (xy 126.980149 131.619272) + (xy 126.827049 131.452963) + (xy 126.827048 131.452962) + (xy 126.827046 131.45296) + (xy 126.648649 131.314107) + (xy 126.648647 131.314106) + (xy 126.648646 131.314105) + (xy 126.648643 131.314103) + (xy 126.620833 131.299053) + (xy 126.571243 131.249833) + (xy 126.556136 131.181616) + (xy 126.580307 131.116061) + (xy 126.620835 131.080945) + (xy 126.648649 131.065893) + (xy 126.827046 130.92704) + (xy 126.970264 130.771465) + (xy 126.980149 130.760727) + (xy 126.98015 130.760725) + (xy 126.980156 130.760719) + (xy 127.103802 130.571465) + (xy 127.194611 130.364441) + (xy 127.250107 130.145293) + (xy 127.268775 129.92) + (xy 127.250107 129.694707) + (xy 127.194611 129.475559) + (xy 127.103802 129.268535) + (xy 126.980156 129.079281) + (xy 126.980153 129.079278) + (xy 126.980149 129.079272) + (xy 126.827049 128.912963) + (xy 126.827048 128.912962) + (xy 126.827046 128.91296) + (xy 126.648649 128.774107) + (xy 126.648647 128.774106) + (xy 126.648646 128.774105) + (xy 126.648643 128.774103) + (xy 126.620833 128.759053) + (xy 126.571243 128.709833) + (xy 126.556136 128.641616) + (xy 126.580307 128.576061) + (xy 126.620833 128.540946) + (xy 126.648649 128.525893) + (xy 126.827046 128.38704) + (xy 126.949377 128.254154) + (xy 126.980149 128.220727) + (xy 126.98015 128.220725) + (xy 126.980156 128.220719) + (xy 127.103802 128.031465) + (xy 127.194611 127.824441) + (xy 127.250107 127.605293) + (xy 127.268775 127.38) + (xy 127.250107 127.154707) + (xy 127.194611 126.935559) + (xy 127.103802 126.728535) + (xy 126.980156 126.539281) + (xy 126.980153 126.539278) + (xy 126.980149 126.539272) + (xy 126.827045 126.372959) + (xy 126.756925 126.318382) + (xy 126.648649 126.234107) + (xy 126.580002 126.196957) + (xy 126.449832 126.126512) + (xy 126.449827 126.12651) + (xy 126.236017 126.053109) + (xy 126.054388 126.022801) + (xy 126.013033 126.0159) + (xy 125.786967 126.0159) + (xy 125.745612 126.022801) + (xy 125.563982 126.053109) + (xy 125.350172 126.12651) + (xy 125.350167 126.126512) + (xy 125.151352 126.234106) + (xy 124.972955 126.372959) + (xy 124.81985 126.539272) + (xy 124.819842 126.539283) + (xy 124.696198 126.728533) + (xy 124.605388 126.93556) + (xy 124.549892 127.15471) + (xy 124.531225 127.379993) + (xy 124.531225 127.380006) + (xy 124.549892 127.605289) + (xy 124.605388 127.824439) + (xy 124.696198 128.031466) + (xy 124.819842 128.220716) + (xy 124.81985 128.220727) + (xy 124.966008 128.379495) + (xy 124.972954 128.38704) + (xy 125.151351 128.525893) + (xy 125.151353 128.525894) + (xy 125.151356 128.525896) + (xy 125.160803 128.531008) + (xy 125.179163 128.540944) + (xy 125.228754 128.590161) + (xy 125.243864 128.658378) + (xy 125.219694 128.723934) + (xy 125.179167 128.759052) + (xy 125.151361 128.7741) + (xy 125.151353 128.774105) + (xy 124.972955 128.912959) + (xy 124.97295 128.912963) + (xy 124.81985 129.079272) + (xy 124.819842 129.079283) + (xy 124.696198 129.268533) + (xy 124.605388 129.47556) + (xy 124.549892 129.69471) + (xy 124.531225 129.919993) + (xy 124.531225 129.920006) + (xy 124.549892 130.145289) + (xy 124.605388 130.364439) + (xy 124.696198 130.571466) + (xy 124.819842 130.760716) + (xy 124.81985 130.760727) + (xy 124.93444 130.885203) + (xy 124.972954 130.92704) + (xy 125.151351 131.065893) + (xy 125.179159 131.080942) + (xy 125.179165 131.080945) + (xy 125.228755 131.130165) + (xy 125.243863 131.198382) + (xy 125.219692 131.263937) + (xy 125.179165 131.299055) + (xy 125.151352 131.314106) + (xy 124.972955 131.452959) + (xy 124.97295 131.452963) + (xy 124.81985 131.619272) + (xy 124.819842 131.619283) + (xy 124.696198 131.808533) + (xy 124.605388 132.01556) + (xy 124.549892 132.23471) + (xy 124.531225 132.459993) + (xy 124.531225 132.460006) + (xy 124.549892 132.685289) + (xy 124.605388 132.904439) + (xy 124.696198 133.111466) + (xy 124.819842 133.300716) + (xy 124.81985 133.300727) + (xy 124.97295 133.467036) + (xy 124.972954 133.46704) + (xy 125.151351 133.605893) + (xy 125.179165 133.620945) + (xy 125.228755 133.670165) + (xy 125.243863 133.738382) + (xy 125.219692 133.803937) + (xy 125.179165 133.839055) + (xy 125.151352 133.854106) + (xy 124.972955 133.992959) + (xy 124.97295 133.992963) + (xy 124.81985 134.159272) + (xy 124.819842 134.159283) + (xy 124.696198 134.348533) + (xy 124.605388 134.55556) + (xy 124.549892 134.77471) + (xy 124.531225 134.999993) + (xy 124.531225 135.000006) + (xy 121.225499 135.000006) + (xy 121.225499 126.182743) + (xy 121.227224 126.167128) + (xy 121.226937 126.167101) + (xy 121.22767 126.15934) + (xy 121.227672 126.159332) + (xy 121.225695 126.096401) + (xy 121.225531 126.09117) + (xy 121.2255 126.089223) + (xy 121.2255 126.060651) + (xy 121.2255 126.06065) + (xy 121.224629 126.053759) + (xy 121.224172 126.047945) + (xy 121.224143 126.047036) + (xy 121.222709 126.001372) + (xy 121.21712 125.982137) + (xy 121.213174 125.963084) + (xy 121.210664 125.943208) + (xy 121.193501 125.899859) + (xy 121.191614 125.894346) + (xy 121.187657 125.880727) + (xy 121.178617 125.84961) + (xy 121.168931 125.833232) + (xy 121.168421 125.832369) + (xy 121.15986 125.814893) + (xy 121.152486 125.796269) + (xy 121.152486 125.796267) + (xy 121.137459 125.775585) + (xy 121.125083 125.75855) + (xy 121.1219 125.753705) + (xy 121.09817 125.713579) + (xy 121.098165 125.713573) + (xy 121.084005 125.699413) + (xy 121.07137 125.68462) + (xy 121.059593 125.668412) + (xy 121.023693 125.638713) + (xy 121.019381 125.63479) + (xy 120.071772 124.68718) + (xy 120.038287 124.625858) + (xy 120.043271 124.556166) + (xy 120.085143 124.500233) + (xy 120.150607 124.475816) + (xy 120.159453 124.4755) + (xy 136.257568 124.4755) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 149.390703 136.921323) + (xy 149.397181 136.927355) + (xy 150.438181 137.968355) + (xy 150.471666 138.029678) + (xy 150.4745 138.056036) + (xy 150.4745 144.073573) + (xy 150.454815 144.140612) + (xy 150.409519 144.182627) + (xy 150.351356 144.214103) + (xy 150.351353 144.214105) + (xy 150.172955 144.352959) + (xy 150.17295 144.352963) + (xy 150.01985 144.519272) + (xy 150.019842 144.519283) + (xy 149.933808 144.650968) + (xy 149.880662 144.696325) + (xy 149.81143 144.705748) + (xy 149.748095 144.676246) + (xy 149.726192 144.650968) + (xy 149.674741 144.572217) + (xy 149.640156 144.519281) + (xy 149.640153 144.519278) + (xy 149.640149 144.519272) + (xy 149.487049 144.352963) + (xy 149.487047 144.352961) + (xy 149.487046 144.35296) + (xy 149.308649 144.214107) + (xy 149.308647 144.214106) + (xy 149.308646 144.214105) + (xy 149.308643 144.214103) + (xy 149.250481 144.182627) + (xy 149.200891 144.133407) + (xy 149.1855 144.073573) + (xy 149.1855 137.015036) + (xy 149.205185 136.947997) + (xy 149.257989 136.902242) + (xy 149.327147 136.892298) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 151.930703 138.824927) + (xy 151.937181 138.830959) + (xy 152.978181 139.871959) + (xy 153.011666 139.933282) + (xy 153.0145 139.95964) + (xy 153.0145 144.073573) + (xy 152.994815 144.140612) + (xy 152.949519 144.182627) + (xy 152.891356 144.214103) + (xy 152.891353 144.214105) + (xy 152.712955 144.352959) + (xy 152.71295 144.352963) + (xy 152.55985 144.519272) + (xy 152.559842 144.519283) + (xy 152.473808 144.650968) + (xy 152.420662 144.696325) + (xy 152.35143 144.705748) + (xy 152.288095 144.676246) + (xy 152.266192 144.650968) + (xy 152.214741 144.572217) + (xy 152.180156 144.519281) + (xy 152.180153 144.519278) + (xy 152.180149 144.519272) + (xy 152.027049 144.352963) + (xy 152.027047 144.352961) + (xy 152.027046 144.35296) + (xy 151.848649 144.214107) + (xy 151.848647 144.214106) + (xy 151.848646 144.214105) + (xy 151.848643 144.214103) + (xy 151.790481 144.182627) + (xy 151.740891 144.133407) + (xy 151.7255 144.073573) + (xy 151.7255 138.91864) + (xy 151.745185 138.851601) + (xy 151.797989 138.805846) + (xy 151.867147 138.795902) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 154.470703 140.728531) + (xy 154.477181 140.734563) + (xy 155.518181 141.775563) + (xy 155.551666 141.836886) + (xy 155.5545 141.863244) + (xy 155.5545 144.073573) + (xy 155.534815 144.140612) + (xy 155.489519 144.182627) + (xy 155.431356 144.214103) + (xy 155.431353 144.214105) + (xy 155.252955 144.352959) + (xy 155.25295 144.352963) + (xy 155.09985 144.519272) + (xy 155.099842 144.519283) + (xy 155.013808 144.650968) + (xy 154.960662 144.696325) + (xy 154.89143 144.705748) + (xy 154.828095 144.676246) + (xy 154.806192 144.650968) + (xy 154.754741 144.572217) + (xy 154.720156 144.519281) + (xy 154.720153 144.519278) + (xy 154.720149 144.519272) + (xy 154.567049 144.352963) + (xy 154.567047 144.352961) + (xy 154.567046 144.35296) + (xy 154.388649 144.214107) + (xy 154.388647 144.214106) + (xy 154.388646 144.214105) + (xy 154.388643 144.214103) + (xy 154.330481 144.182627) + (xy 154.280891 144.133407) + (xy 154.2655 144.073573) + (xy 154.2655 140.822244) + (xy 154.285185 140.755205) + (xy 154.337989 140.70945) + (xy 154.407147 140.699506) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 157.010703 142.632135) + (xy 157.017181 142.638167) + (xy 158.058181 143.679167) + (xy 158.091666 143.74049) + (xy 158.0945 143.766848) + (xy 158.0945 144.073573) + (xy 158.074815 144.140612) + (xy 158.029519 144.182627) + (xy 157.971356 144.214103) + (xy 157.971353 144.214105) + (xy 157.792955 144.352959) + (xy 157.79295 144.352963) + (xy 157.63985 144.519272) + (xy 157.639842 144.519283) + (xy 157.553808 144.650968) + (xy 157.500662 144.696325) + (xy 157.43143 144.705748) + (xy 157.368095 144.676246) + (xy 157.346192 144.650968) + (xy 157.294741 144.572217) + (xy 157.260156 144.519281) + (xy 157.260153 144.519278) + (xy 157.260149 144.519272) + (xy 157.107049 144.352963) + (xy 157.107047 144.352961) + (xy 157.107046 144.35296) + (xy 156.928649 144.214107) + (xy 156.928647 144.214106) + (xy 156.928646 144.214105) + (xy 156.928643 144.214103) + (xy 156.870481 144.182627) + (xy 156.820891 144.133407) + (xy 156.8055 144.073573) + (xy 156.8055 142.725848) + (xy 156.825185 142.658809) + (xy 156.877989 142.613054) + (xy 156.947147 142.60311) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 169.709319 132.611246) + (xy 169.756 132.64059) + (xy 174.82751 137.7121) + (xy 174.860995 137.773423) + (xy 174.856011 137.843115) + (xy 174.855257 137.845083) + (xy 174.806877 137.968355) + (xy 174.795493 137.997362) + (xy 174.795489 137.997374) + (xy 174.738777 138.245845) + (xy 174.719732 138.499995) + (xy 174.719732 138.500004) + (xy 174.738777 138.754154) + (xy 174.793403 138.993488) + (xy 174.795492 139.002637) + (xy 174.884256 139.228803) + (xy 174.888608 139.23989) + (xy 174.914424 139.284604) + (xy 175.016041 139.460612) + (xy 175.17495 139.659877) + (xy 175.361783 139.833232) + (xy 175.572366 139.976805) + (xy 175.572371 139.976807) + (xy 175.572372 139.976808) + (xy 175.572373 139.976809) + (xy 175.694328 140.035538) + (xy 175.801992 140.087387) + (xy 175.801993 140.087387) + (xy 175.801996 140.087389) + (xy 175.90836 140.120197) + (xy 175.945029 140.131509) + (xy 176.003288 140.17008) + (xy 176.031446 140.234024) + (xy 176.020562 140.303041) + (xy 175.974093 140.355218) + (xy 175.945029 140.368491) + (xy 175.801992 140.412612) + (xy 175.572373 140.52319) + (xy 175.572372 140.523191) + (xy 175.361782 140.666768) + (xy 175.174952 140.840121) + (xy 175.17495 140.840123) + (xy 175.016041 141.039388) + (xy 174.888609 141.260107) + (xy 174.888607 141.260111) + (xy 174.888607 141.260112) + (xy 174.874599 141.295803) + (xy 174.831785 141.351015) + (xy 174.765915 141.374317) + (xy 174.759172 141.3745) + (xy 173.310452 141.3745) + (xy 173.243413 141.354815) + (xy 173.222771 141.338181) + (xy 169.611819 137.727228) + (xy 169.578334 137.665905) + (xy 169.5755 137.639547) + (xy 169.5755 133.032738) + (xy 169.577224 133.017124) + (xy 169.576938 133.017097) + (xy 169.577672 133.009334) + (xy 169.575531 132.941171) + (xy 169.5755 132.939224) + (xy 169.5755 132.910651) + (xy 169.5755 132.91065) + (xy 169.574629 132.903759) + (xy 169.574172 132.897945) + (xy 169.573774 132.885289) + (xy 169.572709 132.851373) + (xy 169.567122 132.832144) + (xy 169.563174 132.813084) + (xy 169.560664 132.793208) + (xy 169.553026 132.773919) + (xy 169.54665 132.704342) + (xy 169.578901 132.642362) + (xy 169.639542 132.607656) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 165.873155 140.066799) + (xy 165.832 140.206961) + (xy 165.832 140.353039) + (xy 165.873155 140.493201) + (xy 165.896804 140.53) + (xy 164.243196 140.53) + (xy 164.266845 140.493201) + (xy 164.308 140.353039) + (xy 164.308 140.206961) + (xy 164.266845 140.066799) + (xy 164.243196 140.03) + (xy 165.896804 140.03) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 172.106587 127.995185) + (xy 172.127229 128.011819) + (xy 174.82751 130.712101) + (xy 174.860995 130.773424) + (xy 174.856011 130.843116) + (xy 174.855257 130.845084) + (xy 174.796327 130.995236) + (xy 174.795493 130.997362) + (xy 174.795489 130.997374) + (xy 174.738777 131.245845) + (xy 174.719732 131.499995) + (xy 174.719732 131.500004) + (xy 174.738777 131.754154) + (xy 174.753642 131.819283) + (xy 174.795492 132.002637) + (xy 174.888607 132.239888) + (xy 175.016041 132.460612) + (xy 175.17495 132.659877) + (xy 175.361783 132.833232) + (xy 175.572366 132.976805) + (xy 175.572371 132.976807) + (xy 175.572372 132.976808) + (xy 175.572373 132.976809) + (xy 175.688512 133.032738) + (xy 175.801992 133.087387) + (xy 175.801993 133.087387) + (xy 175.801996 133.087389) + (xy 175.880052 133.111466) + (xy 175.945029 133.131509) + (xy 176.003288 133.17008) + (xy 176.031446 133.234024) + (xy 176.020562 133.303041) + (xy 175.974093 133.355218) + (xy 175.945029 133.368491) + (xy 175.801992 133.412612) + (xy 175.572373 133.52319) + (xy 175.572372 133.523191) + (xy 175.361782 133.666768) + (xy 175.174952 133.840121) + (xy 175.17495 133.840123) + (xy 175.016041 134.039388) + (xy 174.888609 134.260107) + (xy 174.888607 134.260111) + (xy 174.888607 134.260112) + (xy 174.874599 134.295803) + (xy 174.831785 134.351015) + (xy 174.765915 134.374317) + (xy 174.759172 134.3745) + (xy 173.946848 134.3745) + (xy 173.879809 134.354815) + (xy 173.859167 134.338181) + (xy 168.037199 128.516212) + (xy 168.027376 128.50395) + (xy 168.027155 128.504134) + (xy 168.022182 128.498122) + (xy 167.972462 128.451432) + (xy 167.971062 128.450075) + (xy 167.950872 128.429884) + (xy 167.945382 128.425625) + (xy 167.940957 128.421847) + (xy 167.906978 128.389938) + (xy 167.906976 128.389936) + (xy 167.906973 128.389935) + (xy 167.889425 128.380288) + (xy 167.873159 128.369604) + (xy 167.857329 128.357325) + (xy 167.814564 128.338818) + (xy 167.809318 128.336248) + (xy 167.768489 128.313803) + (xy 167.768488 128.313802) + (xy 167.749089 128.308822) + (xy 167.730677 128.302518) + (xy 167.712294 128.294562) + (xy 167.71229 128.294561) + (xy 167.687568 128.290645) + (xy 167.624434 128.260714) + (xy 167.587504 128.201401) + (xy 167.588504 128.131539) + (xy 167.593414 128.118361) + (xy 167.623537 128.049689) + (xy 167.668493 127.996203) + (xy 167.735229 127.975514) + (xy 167.737092 127.9755) + (xy 172.039548 127.9755) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 175.003339 125.455185) + (xy 175.033245 125.482185) + (xy 175.17495 125.659877) + (xy 175.361783 125.833232) + (xy 175.572366 125.976805) + (xy 175.572371 125.976807) + (xy 175.572372 125.976808) + (xy 175.572373 125.976809) + (xy 175.667882 126.022803) + (xy 175.801992 126.087387) + (xy 175.801993 126.087387) + (xy 175.801996 126.087389) + (xy 175.90836 126.120197) + (xy 175.945029 126.131509) + (xy 176.003288 126.17008) + (xy 176.031446 126.234024) + (xy 176.020562 126.303041) + (xy 175.974093 126.355218) + (xy 175.945029 126.368491) + (xy 175.801992 126.412612) + (xy 175.572373 126.52319) + (xy 175.572372 126.523191) + (xy 175.361782 126.666768) + (xy 175.174952 126.840121) + (xy 175.17495 126.840123) + (xy 175.016041 127.039388) + (xy 174.888609 127.260107) + (xy 174.888607 127.260111) + (xy 174.888607 127.260112) + (xy 174.874599 127.295803) + (xy 174.831785 127.351015) + (xy 174.765915 127.374317) + (xy 174.759172 127.3745) + (xy 173.946848 127.3745) + (xy 173.879809 127.354815) + (xy 173.859167 127.338181) + (xy 172.437199 125.916212) + (xy 172.427376 125.90395) + (xy 172.427155 125.904134) + (xy 172.422182 125.898122) + (xy 172.372462 125.851432) + (xy 172.371062 125.850075) + (xy 172.350872 125.829884) + (xy 172.345382 125.825625) + (xy 172.340957 125.821847) + (xy 172.306978 125.789938) + (xy 172.306976 125.789936) + (xy 172.306973 125.789935) + (xy 172.289425 125.780288) + (xy 172.273159 125.769604) + (xy 172.257329 125.757325) + (xy 172.214564 125.738818) + (xy 172.209318 125.736248) + (xy 172.168489 125.713803) + (xy 172.168488 125.713802) + (xy 172.149089 125.708822) + (xy 172.130677 125.702518) + (xy 172.112294 125.694562) + (xy 172.112288 125.69456) + (xy 172.06627 125.687272) + (xy 172.060548 125.686087) + (xy 172.035299 125.679605) + (xy 171.97526 125.643867) + (xy 171.944074 125.581343) + (xy 171.951641 125.511885) + (xy 171.99556 125.457544) + (xy 172.061885 125.435573) + (xy 172.066135 125.4355) + (xy 174.9363 125.4355) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 174.826211 118.145185) + (xy 174.871966 118.197989) + (xy 174.874588 118.20417) + (xy 174.888607 118.239888) + (xy 174.888609 118.239892) + (xy 174.915791 118.286972) + (xy 175.016041 118.460612) + (xy 175.17495 118.659877) + (xy 175.361783 118.833232) + (xy 175.572366 118.976805) + (xy 175.572371 118.976807) + (xy 175.572372 118.976808) + (xy 175.572373 118.976809) + (xy 175.694328 119.035538) + (xy 175.801992 119.087387) + (xy 175.801993 119.087387) + (xy 175.801996 119.087389) + (xy 175.905358 119.119272) + (xy 175.945029 119.131509) + (xy 176.003288 119.17008) + (xy 176.031446 119.234024) + (xy 176.020562 119.303041) + (xy 175.974093 119.355218) + (xy 175.945029 119.368491) + (xy 175.801992 119.412612) + (xy 175.572373 119.52319) + (xy 175.572372 119.523191) + (xy 175.361782 119.666768) + (xy 175.174952 119.840121) + (xy 175.17495 119.840123) + (xy 175.016041 120.039388) + (xy 174.888608 120.260109) + (xy 174.795492 120.497362) + (xy 174.79549 120.497369) + (xy 174.738777 120.745845) + (xy 174.719732 120.999995) + (xy 174.719732 121.000004) + (xy 174.738777 121.254154) + (xy 174.793283 121.492959) + (xy 174.795492 121.502637) + (xy 174.821681 121.569365) + (xy 174.834118 121.601055) + (xy 174.840286 121.670651) + (xy 174.807847 121.732535) + (xy 174.80637 121.734037) + (xy 173.402228 123.138181) + (xy 173.340905 123.171666) + (xy 173.314547 123.1745) + (xy 167.723494 123.1745) + (xy 167.656455 123.154815) + (xy 167.6107 123.102011) + (xy 167.600756 123.032853) + (xy 167.609938 123.000689) + (xy 167.623536 122.969689) + (xy 167.668493 122.916204) + (xy 167.735229 122.895514) + (xy 167.737092 122.8955) + (xy 168.708653 122.8955) + (xy 168.724273 122.897224) + (xy 168.7243 122.896939) + (xy 168.732062 122.897673) + (xy 168.732062 122.897672) + (xy 168.732063 122.897673) + (xy 168.735395 122.897568) + (xy 168.800243 122.895531) + (xy 168.80219 122.8955) + (xy 168.830743 122.8955) + (xy 168.830746 122.8955) + (xy 168.837624 122.89463) + (xy 168.843437 122.894172) + (xy 168.890023 122.892709) + (xy 168.909265 122.887117) + (xy 168.928308 122.883174) + (xy 168.948188 122.880664) + (xy 168.991518 122.863507) + (xy 168.997042 122.861617) + (xy 169.000792 122.860527) + (xy 169.041786 122.848618) + (xy 169.059025 122.838422) + (xy 169.076499 122.829862) + (xy 169.095123 122.822488) + (xy 169.095123 122.822487) + (xy 169.095128 122.822486) + (xy 169.132845 122.795082) + (xy 169.137701 122.791892) + (xy 169.177816 122.76817) + (xy 169.191985 122.753999) + (xy 169.206775 122.741368) + (xy 169.222983 122.729594) + (xy 169.252695 122.693676) + (xy 169.256608 122.689376) + (xy 173.784166 118.161819) + (xy 173.84549 118.128334) + (xy 173.871848 118.1255) + (xy 174.759172 118.1255) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 174.826211 111.145185) + (xy 174.871966 111.197989) + (xy 174.874588 111.20417) + (xy 174.881112 111.22079) + (xy 174.888609 111.239892) + (xy 174.896459 111.253488) + (xy 175.016041 111.460612) + (xy 175.17495 111.659877) + (xy 175.361783 111.833232) + (xy 175.572366 111.976805) + (xy 175.572371 111.976807) + (xy 175.572372 111.976808) + (xy 175.572373 111.976809) + (xy 175.694328 112.035538) + (xy 175.801992 112.087387) + (xy 175.801993 112.087387) + (xy 175.801996 112.087389) + (xy 175.895756 112.11631) + (xy 175.945029 112.131509) + (xy 176.003288 112.17008) + (xy 176.031446 112.234024) + (xy 176.020562 112.303041) + (xy 175.974093 112.355218) + (xy 175.945029 112.368491) + (xy 175.801992 112.412612) + (xy 175.572373 112.52319) + (xy 175.572372 112.523191) + (xy 175.361782 112.666768) + (xy 175.174952 112.840121) + (xy 175.17495 112.840123) + (xy 175.016041 113.039388) + (xy 174.888608 113.260109) + (xy 174.795492 113.497362) + (xy 174.79549 113.497369) + (xy 174.738777 113.745845) + (xy 174.719732 113.999995) + (xy 174.719732 114.000004) + (xy 174.738777 114.254154) + (xy 174.792238 114.488382) + (xy 174.795492 114.502637) + (xy 174.823032 114.572808) + (xy 174.834118 114.601055) + (xy 174.840286 114.670651) + (xy 174.807847 114.732535) + (xy 174.80637 114.734037) + (xy 169.002228 120.538181) + (xy 168.940905 120.571666) + (xy 168.914547 120.5745) + (xy 168.025328 120.5745) + (xy 167.958289 120.554815) + (xy 167.912534 120.502011) + (xy 167.90259 120.432853) + (xy 167.931615 120.369297) + (xy 167.990393 120.331523) + (xy 167.990733 120.331424) + (xy 167.995041 120.330171) + (xy 168.00039 120.328618) + (xy 168.017629 120.318422) + (xy 168.035103 120.309862) + (xy 168.053727 120.302488) + (xy 168.053727 120.302487) + (xy 168.053732 120.302486) + (xy 168.091449 120.275082) + (xy 168.096305 120.271892) + (xy 168.13642 120.24817) + (xy 168.150589 120.233999) + (xy 168.165379 120.221368) + (xy 168.181587 120.209594) + (xy 168.211299 120.173676) + (xy 168.215212 120.169376) + (xy 173.133788 115.250801) + (xy 173.146042 115.240986) + (xy 173.145859 115.240764) + (xy 173.151868 115.235791) + (xy 173.151877 115.235786) + (xy 173.198607 115.186022) + (xy 173.199846 115.184743) + (xy 173.22012 115.164471) + (xy 173.224379 115.158978) + (xy 173.228152 115.154561) + (xy 173.260062 115.120582) + (xy 173.269715 115.10302) + (xy 173.280389 115.08677) + (xy 173.292673 115.070936) + (xy 173.31118 115.028167) + (xy 173.313749 115.022924) + (xy 173.336196 114.982093) + (xy 173.336197 114.982092) + (xy 173.341177 114.962691) + (xy 173.347478 114.944288) + (xy 173.355438 114.925896) + (xy 173.36273 114.879849) + (xy 173.363911 114.874152) + (xy 173.368903 114.85471) + (xy 173.3755 114.829019) + (xy 173.3755 114.808974) + (xy 173.377025 114.789591) + (xy 173.38016 114.769804) + (xy 173.375775 114.723415) + (xy 173.3755 114.717577) + (xy 173.3755 111.621848) + (xy 173.395185 111.554809) + (xy 173.411819 111.534167) + (xy 173.784168 111.161819) + (xy 173.845491 111.128334) + (xy 173.871849 111.1255) + (xy 174.759172 111.1255) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 124.689168 115.725185) + (xy 124.725937 115.761678) + (xy 124.829842 115.920716) + (xy 124.82985 115.920727) + (xy 124.98295 116.087036) + (xy 124.982954 116.08704) + (xy 125.161351 116.225893) + (xy 125.189159 116.240942) + (xy 125.189165 116.240945) + (xy 125.238755 116.290165) + (xy 125.253863 116.358382) + (xy 125.229692 116.423937) + (xy 125.189165 116.459055) + (xy 125.161352 116.474106) + (xy 124.982955 116.612959) + (xy 124.98295 116.612963) + (xy 124.82985 116.779272) + (xy 124.829842 116.779283) + (xy 124.706198 116.968533) + (xy 124.615388 117.17556) + (xy 124.559892 117.39471) + (xy 124.541225 117.619993) + (xy 124.541225 117.620006) + (xy 124.559892 117.845289) + (xy 124.615388 118.064439) + (xy 124.706198 118.271466) + (xy 124.829842 118.460716) + (xy 124.82985 118.460727) + (xy 124.98295 118.627036) + (xy 124.982954 118.62704) + (xy 125.161351 118.765893) + (xy 125.360169 118.873488) + (xy 125.360172 118.873489) + (xy 125.573982 118.94689) + (xy 125.573984 118.94689) + (xy 125.573986 118.946891) + (xy 125.796967 118.9841) + (xy 125.796968 118.9841) + (xy 126.023032 118.9841) + (xy 126.023033 118.9841) + (xy 126.246014 118.946891) + (xy 126.459831 118.873488) + (xy 126.658649 118.765893) + (xy 126.837046 118.62704) + (xy 126.990156 118.460719) + (xy 127.067927 118.341679) + (xy 127.121076 118.296322) + (xy 127.171738 118.2855) + (xy 143.880547 118.2855) + (xy 143.947586 118.305185) + (xy 143.993341 118.357989) + (xy 144.003285 118.427147) + (xy 143.97426 118.490703) + (xy 143.968228 118.497181) + (xy 141.977228 120.488181) + (xy 141.915905 120.521666) + (xy 141.889547 120.5245) + (xy 124.860453 120.5245) + (xy 124.793414 120.504815) + (xy 124.772772 120.488181) + (xy 123.111819 118.827227) + (xy 123.078334 118.765904) + (xy 123.0755 118.739546) + (xy 123.0755 117.660649) + (xy 123.0755 117.245843) + (xy 123.075499 116.750451) + (xy 123.095183 116.683413) + (xy 123.111818 116.662771) + (xy 123.331737 116.442853) + (xy 123.802403 115.972187) + (xy 124.032772 115.741819) + (xy 124.094095 115.708334) + (xy 124.120453 115.7055) + (xy 124.622129 115.7055) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 127.228671 110.734618) + (xy 127.234448 110.740038) + (xy 133.317228 116.822819) + (xy 133.350713 116.884142) + (xy 133.345729 116.953834) + (xy 133.303857 117.009767) + (xy 133.238393 117.034184) + (xy 133.229547 117.0345) + (xy 127.223389 117.0345) + (xy 127.15635 117.014815) + (xy 127.117103 116.972505) + (xy 127.116608 116.972829) + (xy 127.114712 116.969927) + (xy 127.114337 116.969523) + (xy 127.1138 116.968532) + (xy 127.052899 116.875316) + (xy 126.990156 116.779281) + (xy 126.990153 116.779278) + (xy 126.990149 116.779272) + (xy 126.837049 116.612963) + (xy 126.837048 116.612962) + (xy 126.837046 116.61296) + (xy 126.658649 116.474107) + (xy 126.658647 116.474106) + (xy 126.658646 116.474105) + (xy 126.658639 116.4741) + (xy 126.630836 116.459055) + (xy 126.581244 116.409837) + (xy 126.566135 116.34162) + (xy 126.590306 116.276064) + (xy 126.630836 116.240945) + (xy 126.658639 116.225899) + (xy 126.658642 116.225896) + (xy 126.658649 116.225893) + (xy 126.837046 116.08704) + (xy 126.990156 115.920719) + (xy 127.113802 115.731465) + (xy 127.204611 115.524441) + (xy 127.260107 115.305293) + (xy 127.278775 115.08) + (xy 127.260107 114.854707) + (xy 127.204611 114.635559) + (xy 127.113802 114.428535) + (xy 126.990156 114.239281) + (xy 126.990153 114.239278) + (xy 126.990149 114.239272) + (xy 126.837049 114.072963) + (xy 126.837048 114.072962) + (xy 126.837046 114.07296) + (xy 126.658649 113.934107) + (xy 126.658647 113.934106) + (xy 126.658646 113.934105) + (xy 126.658639 113.9341) + (xy 126.630836 113.919055) + (xy 126.581244 113.869837) + (xy 126.566135 113.80162) + (xy 126.590306 113.736064) + (xy 126.630836 113.700945) + (xy 126.658639 113.685899) + (xy 126.658642 113.685896) + (xy 126.658649 113.685893) + (xy 126.837046 113.54704) + (xy 126.95812 113.415519) + (xy 126.990149 113.380727) + (xy 126.99015 113.380725) + (xy 126.990156 113.380719) + (xy 127.113802 113.191465) + (xy 127.204611 112.984441) + (xy 127.260107 112.765293) + (xy 127.278775 112.54) + (xy 127.260107 112.314707) + (xy 127.204611 112.095559) + (xy 127.113802 111.888535) + (xy 127.095454 111.860452) + (xy 126.990157 111.699283) + (xy 126.990149 111.699272) + (xy 126.837049 111.532963) + (xy 126.837048 111.532962) + (xy 126.837046 111.53296) + (xy 126.658649 111.394107) + (xy 126.658647 111.394106) + (xy 126.658646 111.394105) + (xy 126.658639 111.3941) + (xy 126.630836 111.379055) + (xy 126.581244 111.329837) + (xy 126.566135 111.26162) + (xy 126.590306 111.196064) + (xy 126.630836 111.160945) + (xy 126.658639 111.145899) + (xy 126.658642 111.145896) + (xy 126.658649 111.145893) + (xy 126.837046 111.00704) + (xy 126.990156 110.840719) + (xy 126.995797 110.832086) + (xy 127.042958 110.759899) + (xy 127.096103 110.714541) + (xy 127.165335 110.705117) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 142.291905 97.783753) + (xy 142.313804 97.809025) + (xy 142.399844 97.940719) + (xy 142.399849 97.940724) + (xy 142.39985 97.940727) + (xy 142.53662 98.089297) + (xy 142.552954 98.10704) + (xy 142.731351 98.245893) + (xy 142.930169 98.353488) + (xy 142.930172 98.353489) + (xy 143.143982 98.42689) + (xy 143.143984 98.42689) + (xy 143.143986 98.426891) + (xy 143.366967 98.4641) + (xy 143.366968 98.4641) + (xy 143.593032 98.4641) + (xy 143.593033 98.4641) + (xy 143.816014 98.426891) + (xy 143.821918 98.424863) + (xy 143.891714 98.421708) + (xy 143.94987 98.454461) + (xy 144.908181 99.412771) + (xy 144.941666 99.474094) + (xy 144.9445 99.500452) + (xy 144.9445 116.196754) + (xy 144.924815 116.263793) + (xy 144.908181 116.284435) + (xy 144.644436 116.548181) + (xy 144.583113 116.581666) + (xy 144.556755 116.5845) + (xy 142.061511 116.5845) + (xy 141.994472 116.564815) + (xy 141.948717 116.512011) + (xy 141.938773 116.442853) + (xy 141.967798 116.379297) + (xy 142.011075 116.347221) + (xy 142.139222 116.290165) + (xy 142.15273 116.284151) + (xy 142.305871 116.172888) + (xy 142.432533 116.032216) + (xy 142.527179 115.868284) + (xy 142.585674 115.688256) + (xy 142.603321 115.520344) + (xy 142.629904 115.455734) + (xy 142.638951 115.445638) + (xy 144.033788 114.050801) + (xy 144.046042 114.040986) + (xy 144.045859 114.040764) + (xy 144.051868 114.035791) + (xy 144.051877 114.035786) + (xy 144.098607 113.986022) + (xy 144.099846 113.984743) + (xy 144.12012 113.964471) + (xy 144.124379 113.958978) + (xy 144.128152 113.954561) + (xy 144.160062 113.920582) + (xy 144.169713 113.903024) + (xy 144.180396 113.886761) + (xy 144.192673 113.870936) + (xy 144.211185 113.828153) + (xy 144.213738 113.822941) + (xy 144.236197 113.782092) + (xy 144.24118 113.76268) + (xy 144.247481 113.74428) + (xy 144.255437 113.725896) + (xy 144.262729 113.679852) + (xy 144.263906 113.674171) + (xy 144.2755 113.629019) + (xy 144.2755 113.608982) + (xy 144.277027 113.589582) + (xy 144.28016 113.569804) + (xy 144.275775 113.523415) + (xy 144.2755 113.517577) + (xy 144.2755 111.632742) + (xy 144.277224 111.617122) + (xy 144.276939 111.617095) + (xy 144.277673 111.609333) + (xy 144.275531 111.541139) + (xy 144.2755 111.539192) + (xy 144.2755 111.510656) + (xy 144.2755 111.51065) + (xy 144.274631 111.503779) + (xy 144.274173 111.497952) + (xy 144.27271 111.451373) + (xy 144.267119 111.43213) + (xy 144.263173 111.413078) + (xy 144.260664 111.393208) + (xy 144.243501 111.349859) + (xy 144.241624 111.344379) + (xy 144.228618 111.29961) + (xy 144.218422 111.28237) + (xy 144.209861 111.264894) + (xy 144.202487 111.24627) + (xy 144.202486 111.246268) + (xy 144.175079 111.208545) + (xy 144.171888 111.203686) + (xy 144.148172 111.163583) + (xy 144.148165 111.163574) + (xy 144.134006 111.149415) + (xy 144.121368 111.134619) + (xy 144.114743 111.1255) + (xy 144.109594 111.118413) + (xy 144.093617 111.105196) + (xy 144.073688 111.088709) + (xy 144.069376 111.084786) + (xy 137.261819 104.277228) + (xy 137.228334 104.215905) + (xy 137.2255 104.189547) + (xy 137.2255 101.140006) + (xy 140.801225 101.140006) + (xy 140.819892 101.365289) + (xy 140.875388 101.584439) + (xy 140.966198 101.791466) + (xy 141.089842 101.980716) + (xy 141.08985 101.980727) + (xy 141.179984 102.078637) + (xy 141.242954 102.14704) + (xy 141.421351 102.285893) + (xy 141.620169 102.393488) + (xy 141.620172 102.393489) + (xy 141.833982 102.46689) + (xy 141.833984 102.46689) + (xy 141.833986 102.466891) + (xy 142.056967 102.5041) + (xy 142.056968 102.5041) + (xy 142.283032 102.5041) + (xy 142.283033 102.5041) + (xy 142.506014 102.466891) + (xy 142.719831 102.393488) + (xy 142.918649 102.285893) + (xy 143.097046 102.14704) + (xy 143.250156 101.980719) + (xy 143.373802 101.791465) + (xy 143.464611 101.584441) + (xy 143.520107 101.365293) + (xy 143.538775 101.14) + (xy 143.538775 101.139999) + (xy 143.538775 101.139993) + (xy 143.520114 100.914797) + (xy 143.520107 100.914707) + (xy 143.464611 100.695559) + (xy 143.373802 100.488535) + (xy 143.368004 100.479661) + (xy 143.281668 100.347514) + (xy 143.250156 100.299281) + (xy 143.250153 100.299278) + (xy 143.250149 100.299272) + (xy 143.097049 100.132963) + (xy 143.097048 100.132962) + (xy 143.097046 100.13296) + (xy 142.918649 99.994107) + (xy 142.89239 99.979896) + (xy 142.719832 99.886512) + (xy 142.719827 99.88651) + (xy 142.506017 99.813109) + (xy 142.338778 99.785202) + (xy 142.283033 99.7759) + (xy 142.056967 99.7759) + (xy 142.01237 99.783341) + (xy 141.833982 99.813109) + (xy 141.620172 99.88651) + (xy 141.620167 99.886512) + (xy 141.421352 99.994106) + (xy 141.242955 100.132959) + (xy 141.24295 100.132963) + (xy 141.08985 100.299272) + (xy 141.089842 100.299283) + (xy 140.966198 100.488533) + (xy 140.875388 100.69556) + (xy 140.819892 100.91471) + (xy 140.801225 101.139993) + (xy 140.801225 101.140006) + (xy 137.2255 101.140006) + (xy 137.2255 98.156017) + (xy 137.245185 98.088978) + (xy 137.297989 98.043223) + (xy 137.367147 98.033279) + (xy 137.430703 98.062304) + (xy 137.440725 98.07203) + (xy 137.472954 98.10704) + (xy 137.651351 98.245893) + (xy 137.850169 98.353488) + (xy 137.850172 98.353489) + (xy 138.063982 98.42689) + (xy 138.063984 98.42689) + (xy 138.063986 98.426891) + (xy 138.286967 98.4641) + (xy 138.286968 98.4641) + (xy 138.513032 98.4641) + (xy 138.513033 98.4641) + (xy 138.736014 98.426891) + (xy 138.741919 98.424864) + (xy 138.769492 98.415398) + (xy 138.949831 98.353488) + (xy 139.148649 98.245893) + (xy 139.327046 98.10704) + (xy 139.480156 97.940719) + (xy 139.566193 97.809028) + (xy 139.619338 97.763675) + (xy 139.688569 97.754251) + (xy 139.751905 97.783753) + (xy 139.773804 97.809025) + (xy 139.859844 97.940719) + (xy 139.859849 97.940724) + (xy 139.85985 97.940727) + (xy 139.99662 98.089297) + (xy 140.012954 98.10704) + (xy 140.191351 98.245893) + (xy 140.390169 98.353488) + (xy 140.390172 98.353489) + (xy 140.603982 98.42689) + (xy 140.603984 98.42689) + (xy 140.603986 98.426891) + (xy 140.826967 98.4641) + (xy 140.826968 98.4641) + (xy 141.053032 98.4641) + (xy 141.053033 98.4641) + (xy 141.276014 98.426891) + (xy 141.281919 98.424864) + (xy 141.309492 98.415398) + (xy 141.489831 98.353488) + (xy 141.688649 98.245893) + (xy 141.867046 98.10704) + (xy 142.020156 97.940719) + (xy 142.106193 97.809028) + (xy 142.159338 97.763675) + (xy 142.228569 97.754251) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 164.02 89.9336) + (xy 164.681428 89.9336) + (xy 164.681444 89.933599) + (xy 164.740972 89.927198) + (xy 164.740979 89.927196) + (xy 164.875686 89.876954) + (xy 164.875693 89.87695) + (xy 164.990787 89.79079) + (xy 164.99079 89.790787) + (xy 165.07695 89.675693) + (xy 165.076954 89.675686) + (xy 165.120775 89.558197) + (xy 165.162646 89.502263) + (xy 165.22811 89.477846) + (xy 165.296383 89.492698) + (xy 165.328186 89.517547) + (xy 165.369578 89.56251) + (xy 165.382954 89.57704) + (xy 165.382957 89.577042) + (xy 165.38296 89.577045) + (xy 165.511662 89.677218) + (xy 165.552475 89.733928) + (xy 165.5595 89.775071) + (xy 165.5595 95.918277) + (xy 165.539815 95.985316) + (xy 165.511663 96.01613) + (xy 165.412955 96.092958) + (xy 165.41295 96.092963) + (xy 165.25985 96.259272) + (xy 165.259842 96.259283) + (xy 165.173808 96.390968) + (xy 165.120662 96.436325) + (xy 165.05143 96.445748) + (xy 164.988095 96.416246) + (xy 164.966192 96.390968) + (xy 164.893713 96.280032) + (xy 164.880156 96.259281) + (xy 164.88015 96.259274) + (xy 164.880149 96.259272) + (xy 164.727049 96.092963) + (xy 164.727048 96.092962) + (xy 164.727046 96.09296) + (xy 164.548649 95.954107) + (xy 164.4255 95.887462) + (xy 164.349832 95.846512) + (xy 164.349827 95.84651) + (xy 164.136017 95.773109) + (xy 163.954388 95.742801) + (xy 163.913033 95.7359) + (xy 163.686967 95.7359) + (xy 163.645612 95.742801) + (xy 163.463982 95.773109) + (xy 163.250172 95.84651) + (xy 163.250167 95.846512) + (xy 163.051352 95.954106) + (xy 162.872955 96.092959) + (xy 162.87295 96.092963) + (xy 162.71985 96.259272) + (xy 162.719842 96.259283) + (xy 162.596198 96.448533) + (xy 162.505388 96.65556) + (xy 162.449892 96.87471) + (xy 162.431225 97.099993) + (xy 162.431225 97.100006) + (xy 162.449892 97.325289) + (xy 162.505388 97.544439) + (xy 162.596198 97.751466) + (xy 162.719842 97.940716) + (xy 162.71985 97.940727) + (xy 162.85662 98.089297) + (xy 162.872954 98.10704) + (xy 163.051351 98.245893) + (xy 163.079165 98.260945) + (xy 163.128755 98.310165) + (xy 163.143863 98.378382) + (xy 163.119692 98.443937) + (xy 163.079165 98.479054) + (xy 163.076116 98.480705) + (xy 163.051352 98.494106) + (xy 162.872955 98.632959) + (xy 162.87295 98.632963) + (xy 162.71985 98.799272) + (xy 162.719842 98.799283) + (xy 162.596198 98.988533) + (xy 162.505388 99.19556) + (xy 162.449892 99.41471) + (xy 162.431225 99.639993) + (xy 162.431225 99.640006) + (xy 162.449892 99.865289) + (xy 162.505388 100.084438) + (xy 162.512727 100.101171) + (xy 162.521627 100.170472) + (xy 162.491648 100.233583) + (xy 162.432307 100.270467) + (xy 162.414442 100.273483) + (xy 162.414509 100.274013) + (xy 162.403778 100.275367) + (xy 162.397959 100.275825) + (xy 162.351374 100.277289) + (xy 162.351368 100.27729) + (xy 162.332126 100.28288) + (xy 162.313087 100.286823) + (xy 162.293217 100.289334) + (xy 162.293203 100.289337) + (xy 162.249883 100.306488) + (xy 162.244358 100.30838) + (xy 162.199613 100.32138) + (xy 162.19961 100.321381) + (xy 162.182366 100.331579) + (xy 162.164905 100.340133) + (xy 162.146274 100.34751) + (xy 162.146262 100.347517) + (xy 162.10857 100.374902) + (xy 162.103687 100.378109) + (xy 162.06358 100.401829) + (xy 162.049414 100.415995) + (xy 162.034624 100.428627) + (xy 162.018414 100.440404) + (xy 162.018411 100.440407) + (xy 161.98871 100.476309) + (xy 161.984777 100.480631) + (xy 161.504645 100.960762) + (xy 161.443322 100.994247) + (xy 161.37363 100.989263) + (xy 161.317697 100.947391) + (xy 161.296758 100.903521) + (xy 161.244136 100.695721) + (xy 161.15336 100.488774) + (xy 161.074888 100.368663) + (xy 160.439521 101.00403) + (xy 160.416845 100.926799) + (xy 160.337869 100.80391) + (xy 160.22747 100.708248) + (xy 160.094592 100.647565) + (xy 160.089599 100.646847) + (xy 160.722859 100.013587) + (xy 160.722858 100.013585) + (xy 160.698378 99.994531) + (xy 160.698368 99.994524) + (xy 160.499639 99.886977) + (xy 160.499624 99.88697) + (xy 160.285893 99.813596) + (xy 160.06299 99.7764) + (xy 159.83701 99.7764) + (xy 159.614106 99.813596) + (xy 159.400375 99.88697) + (xy 159.400369 99.886972) + (xy 159.201623 99.994529) + (xy 159.201617 99.994533) + (xy 159.17714 100.013584) + (xy 159.17714 100.013586) + (xy 159.810401 100.646847) + (xy 159.805408 100.647565) + (xy 159.67253 100.708248) + (xy 159.562131 100.80391) + (xy 159.483155 100.926799) + (xy 159.460477 101.00403) + (xy 158.82511 100.368664) + (xy 158.746638 100.488777) + (xy 158.746637 100.488779) + (xy 158.655863 100.695721) + (xy 158.600388 100.914786) + (xy 158.600386 100.914797) + (xy 158.581727 101.139993) + (xy 158.581727 101.140006) + (xy 158.600386 101.365202) + (xy 158.600388 101.365213) + (xy 158.655863 101.584278) + (xy 158.746639 101.791225) + (xy 158.825109 101.911334) + (xy 159.460477 101.275967) + (xy 159.483155 101.353201) + (xy 159.562131 101.47609) + (xy 159.67253 101.571752) + (xy 159.805408 101.632435) + (xy 159.810399 101.633152) + (xy 159.177139 102.266412) + (xy 159.17714 102.266413) + (xy 159.201622 102.285468) + (xy 159.201632 102.285475) + (xy 159.40036 102.393022) + (xy 159.400375 102.393029) + (xy 159.614107 102.466404) + (xy 159.70635 102.481796) + (xy 159.769235 102.512246) + (xy 159.805675 102.571861) + (xy 159.804101 102.641713) + (xy 159.773622 102.691786) + (xy 146.857181 115.608228) + (xy 146.795858 115.641713) + (xy 146.726166 115.636729) + (xy 146.670233 115.594857) + (xy 146.645816 115.529393) + (xy 146.6455 115.520547) + (xy 146.6455 98.386425) + (xy 146.665185 98.319386) + (xy 146.710481 98.277371) + (xy 146.768649 98.245893) + (xy 146.947046 98.10704) + (xy 147.100156 97.940719) + (xy 147.186193 97.809028) + (xy 147.239338 97.763675) + (xy 147.308569 97.754251) + (xy 147.371905 97.783753) + (xy 147.393804 97.809025) + (xy 147.479844 97.940719) + (xy 147.479849 97.940724) + (xy 147.47985 97.940727) + (xy 147.61662 98.089297) + (xy 147.632954 98.10704) + (xy 147.811351 98.245893) + (xy 148.010169 98.353488) + (xy 148.010172 98.353489) + (xy 148.223982 98.42689) + (xy 148.223984 98.42689) + (xy 148.223986 98.426891) + (xy 148.446967 98.4641) + (xy 148.446968 98.4641) + (xy 148.673032 98.4641) + (xy 148.673033 98.4641) + (xy 148.896014 98.426891) + (xy 148.901919 98.424864) + (xy 148.929492 98.415398) + (xy 149.109831 98.353488) + (xy 149.308649 98.245893) + (xy 149.487046 98.10704) + (xy 149.640156 97.940719) + (xy 149.726193 97.809028) + (xy 149.779338 97.763675) + (xy 149.848569 97.754251) + (xy 149.911905 97.783753) + (xy 149.933804 97.809025) + (xy 150.019844 97.940719) + (xy 150.019849 97.940724) + (xy 150.01985 97.940727) + (xy 150.15662 98.089297) + (xy 150.172954 98.10704) + (xy 150.351351 98.245893) + (xy 150.550169 98.353488) + (xy 150.550172 98.353489) + (xy 150.763982 98.42689) + (xy 150.763984 98.42689) + (xy 150.763986 98.426891) + (xy 150.986967 98.4641) + (xy 150.986968 98.4641) + (xy 151.213032 98.4641) + (xy 151.213033 98.4641) + (xy 151.436014 98.426891) + (xy 151.441919 98.424864) + (xy 151.469492 98.415398) + (xy 151.649831 98.353488) + (xy 151.848649 98.245893) + (xy 152.027046 98.10704) + (xy 152.180156 97.940719) + (xy 152.266193 97.809028) + (xy 152.319338 97.763675) + (xy 152.388569 97.754251) + (xy 152.451905 97.783753) + (xy 152.473804 97.809025) + (xy 152.559844 97.940719) + (xy 152.559849 97.940724) + (xy 152.55985 97.940727) + (xy 152.69662 98.089297) + (xy 152.712954 98.10704) + (xy 152.891351 98.245893) + (xy 153.090169 98.353488) + (xy 153.090172 98.353489) + (xy 153.303982 98.42689) + (xy 153.303984 98.42689) + (xy 153.303986 98.426891) + (xy 153.526967 98.4641) + (xy 153.526968 98.4641) + (xy 153.753032 98.4641) + (xy 153.753033 98.4641) + (xy 153.976014 98.426891) + (xy 153.981919 98.424864) + (xy 154.009492 98.415398) + (xy 154.189831 98.353488) + (xy 154.388649 98.245893) + (xy 154.567046 98.10704) + (xy 154.720156 97.940719) + (xy 154.806193 97.809028) + (xy 154.859338 97.763675) + (xy 154.928569 97.754251) + (xy 154.991905 97.783753) + (xy 155.013804 97.809025) + (xy 155.099844 97.940719) + (xy 155.099849 97.940724) + (xy 155.09985 97.940727) + (xy 155.23662 98.089297) + (xy 155.252954 98.10704) + (xy 155.431351 98.245893) + (xy 155.630169 98.353488) + (xy 155.630172 98.353489) + (xy 155.843982 98.42689) + (xy 155.843984 98.42689) + (xy 155.843986 98.426891) + (xy 156.066967 98.4641) + (xy 156.066968 98.4641) + (xy 156.293032 98.4641) + (xy 156.293033 98.4641) + (xy 156.516014 98.426891) + (xy 156.521919 98.424864) + (xy 156.549492 98.415398) + (xy 156.729831 98.353488) + (xy 156.928649 98.245893) + (xy 157.107046 98.10704) + (xy 157.260156 97.940719) + (xy 157.383802 97.751465) + (xy 157.474611 97.544441) + (xy 157.530107 97.325293) + (xy 157.548775 97.1) + (xy 157.548775 97.099993) + (xy 157.530107 96.87471) + (xy 157.530107 96.874707) + (xy 157.474611 96.655559) + (xy 157.383802 96.448535) + (xy 157.260156 96.259281) + (xy 157.26015 96.259274) + (xy 157.260149 96.259272) + (xy 157.107049 96.092963) + (xy 157.107048 96.092962) + (xy 157.107046 96.09296) + (xy 156.928649 95.954107) + (xy 156.928647 95.954106) + (xy 156.928646 95.954105) + (xy 156.928643 95.954103) + (xy 156.870481 95.922627) + (xy 156.820891 95.873407) + (xy 156.8055 95.813573) + (xy 156.8055 93.570452) + (xy 156.825185 93.503413) + (xy 156.841819 93.482771) + (xy 157.062772 93.261819) + (xy 157.124095 93.228334) + (xy 157.150453 93.2255) + (xy 158.897257 93.2255) + (xy 158.912877 93.227224) + (xy 158.912904 93.226939) + (xy 158.920666 93.227673) + (xy 158.920666 93.227672) + (xy 158.920667 93.227673) + (xy 158.923999 93.227568) + (xy 158.988847 93.225531) + (xy 158.990794 93.2255) + (xy 159.019347 93.2255) + (xy 159.01935 93.2255) + (xy 159.026228 93.22463) + (xy 159.032041 93.224172) + (xy 159.078627 93.222709) + (xy 159.097869 93.217117) + (xy 159.116912 93.213174) + (xy 159.136792 93.210664) + (xy 159.180122 93.193507) + (xy 159.185646 93.191617) + (xy 159.189396 93.190527) + (xy 159.23039 93.178618) + (xy 159.247629 93.168422) + (xy 159.265103 93.159862) + (xy 159.283727 93.152488) + (xy 159.283727 93.152487) + (xy 159.283732 93.152486) + (xy 159.321449 93.125082) + (xy 159.326305 93.121892) + (xy 159.36642 93.09817) + (xy 159.380589 93.083999) + (xy 159.395379 93.071368) + (xy 159.411587 93.059594) + (xy 159.441299 93.023676) + (xy 159.445212 93.019376) + (xy 161.613786 90.850802) + (xy 161.626048 90.84098) + (xy 161.625865 90.840759) + (xy 161.631873 90.835788) + (xy 161.631877 90.835786) + (xy 161.678649 90.785977) + (xy 161.679891 90.784697) + (xy 161.70012 90.76447) + (xy 161.704373 90.758986) + (xy 161.70815 90.754563) + (xy 161.740062 90.720582) + (xy 161.749714 90.703023) + (xy 161.760389 90.686772) + (xy 161.772674 90.670936) + (xy 161.791186 90.628152) + (xy 161.793742 90.622935) + (xy 161.816197 90.582092) + (xy 161.82118 90.56268) + (xy 161.827477 90.544291) + (xy 161.835438 90.525895) + (xy 161.842729 90.479853) + (xy 161.843908 90.474162) + (xy 161.8555 90.429019) + (xy 161.8555 90.408982) + (xy 161.857027 90.389582) + (xy 161.86016 90.369804) + (xy 161.855775 90.323415) + (xy 161.8555 90.317577) + (xy 161.8555 89.856425) + (xy 161.875185 89.789386) + (xy 161.920481 89.747371) + (xy 161.978649 89.715893) + (xy 162.157046 89.57704) + (xy 162.211815 89.517545) + (xy 162.271699 89.481557) + (xy 162.341537 89.483657) + (xy 162.399153 89.52318) + (xy 162.419224 89.558196) + (xy 162.463046 89.675688) + (xy 162.463049 89.675693) + (xy 162.549209 89.790787) + (xy 162.549212 89.79079) + (xy 162.664306 89.87695) + (xy 162.664313 89.876954) + (xy 162.79902 89.927196) + (xy 162.799027 89.927198) + (xy 162.858555 89.933599) + (xy 162.858572 89.9336) + (xy 163.52 89.9336) + (xy 163.52 89.014297) + (xy 163.625408 89.062435) + (xy 163.733666 89.078) + (xy 163.806334 89.078) + (xy 163.914592 89.062435) + (xy 164.02 89.014297) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 136.980703 105.765739) + (xy 136.987181 105.771771) + (xy 142.988181 111.772771) + (xy 143.021666 111.834094) + (xy 143.0245 111.860452) + (xy 143.0245 112.707954) + (xy 143.004815 112.774993) + (xy 142.952011 112.820748) + (xy 142.882853 112.830692) + (xy 142.819297 112.801667) + (xy 142.80835 112.790926) + (xy 142.747345 112.723173) + (xy 142.705871 112.677112) + (xy 142.700835 112.673453) + (xy 142.552734 112.565851) + (xy 142.552729 112.565848) + (xy 142.379807 112.488857) + (xy 142.379802 112.488855) + (xy 142.234001 112.457865) + (xy 142.194646 112.4495) + (xy 142.005354 112.4495) + (xy 141.972897 112.456398) + (xy 141.820197 112.488855) + (xy 141.820192 112.488857) + (xy 141.647271 112.565848) + (xy 141.524187 112.655273) + (xy 141.45838 112.678752) + (xy 141.390326 112.662926) + (xy 141.363621 112.642635) + (xy 136.811819 108.090832) + (xy 136.778334 108.029509) + (xy 136.7755 108.003151) + (xy 136.7755 105.859452) + (xy 136.795185 105.792413) + (xy 136.847989 105.746658) + (xy 136.917147 105.736714) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 144.538862 64.625017) + (xy 144.594795 64.666889) + (xy 144.619212 64.732353) + (xy 144.615734 64.771636) + (xy 144.609893 64.794702) + (xy 144.609892 64.794708) + (xy 144.591225 65.019993) + (xy 144.591225 65.020006) + (xy 144.609892 65.245289) + (xy 144.665388 65.464439) + (xy 144.756198 65.671466) + (xy 144.879842 65.860716) + (xy 144.87985 65.860727) + (xy 145.031238 66.025176) + (xy 145.032954 66.02704) + (xy 145.211351 66.165893) + (xy 145.269517 66.19737) + (xy 145.319107 66.246588) + (xy 145.3345 66.306425) + (xy 145.3345 71.583573) + (xy 145.314815 71.650612) + (xy 145.269519 71.692627) + (xy 145.211356 71.724103) + (xy 145.211353 71.724105) + (xy 145.032955 71.862959) + (xy 145.03295 71.862963) + (xy 144.87985 72.029272) + (xy 144.879842 72.029283) + (xy 144.756198 72.218533) + (xy 144.665388 72.42556) + (xy 144.609892 72.64471) + (xy 144.591225 72.869993) + (xy 144.591225 72.870006) + (xy 144.609892 73.095289) + (xy 144.665388 73.314439) + (xy 144.756198 73.521466) + (xy 144.879842 73.710716) + (xy 144.87985 73.710727) + (xy 145.03295 73.877036) + (xy 145.032954 73.87704) + (xy 145.211351 74.015893) + (xy 145.269517 74.04737) + (xy 145.319107 74.096588) + (xy 145.3345 74.156425) + (xy 145.3345 79.433573) + (xy 145.314815 79.500612) + (xy 145.269519 79.542627) + (xy 145.211356 79.574103) + (xy 145.211353 79.574105) + (xy 145.032955 79.712959) + (xy 145.03295 79.712963) + (xy 144.87985 79.879272) + (xy 144.879842 79.879283) + (xy 144.756198 80.068533) + (xy 144.665388 80.27556) + (xy 144.609892 80.49471) + (xy 144.591225 80.719993) + (xy 144.591225 80.720006) + (xy 144.609892 80.945289) + (xy 144.665388 81.164439) + (xy 144.756198 81.371466) + (xy 144.879842 81.560716) + (xy 144.87985 81.560727) + (xy 145.03295 81.727036) + (xy 145.032954 81.72704) + (xy 145.211351 81.865893) + (xy 145.269517 81.89737) + (xy 145.319107 81.946588) + (xy 145.3345 82.006425) + (xy 145.3345 87.283573) + (xy 145.314815 87.350612) + (xy 145.269519 87.392627) + (xy 145.211356 87.424103) + (xy 145.211353 87.424105) + (xy 145.032955 87.562959) + (xy 145.03295 87.562963) + (xy 144.87985 87.729272) + (xy 144.879842 87.729283) + (xy 144.756198 87.918533) + (xy 144.665388 88.12556) + (xy 144.609892 88.34471) + (xy 144.591225 88.569993) + (xy 144.591225 88.570006) + (xy 144.609892 88.795289) + (xy 144.665388 89.014439) + (xy 144.756198 89.221466) + (xy 144.879842 89.410716) + (xy 144.87985 89.410727) + (xy 145.03295 89.577036) + (xy 145.032954 89.57704) + (xy 145.211351 89.715893) + (xy 145.269517 89.74737) + (xy 145.319107 89.796588) + (xy 145.3345 89.856425) + (xy 145.3345 91.597255) + (xy 145.332775 91.612872) + (xy 145.333061 91.612899) + (xy 145.332326 91.620666) + (xy 145.334469 91.688846) + (xy 145.3345 91.690793) + (xy 145.3345 91.719343) + (xy 145.334501 91.71936) + (xy 145.335368 91.726231) + (xy 145.335826 91.73205) + (xy 145.33729 91.778624) + (xy 145.337291 91.778627) + (xy 145.34288 91.797867) + (xy 145.346824 91.816911) + (xy 145.349336 91.836792) + (xy 145.36649 91.880119) + (xy 145.368382 91.885647) + (xy 145.380537 91.927484) + (xy 145.381382 91.93039) + (xy 145.386565 91.939155) + (xy 145.39158 91.947634) + (xy 145.400136 91.9651) + (xy 145.402998 91.972326) + (xy 145.407514 91.983732) + (xy 145.434898 92.021423) + (xy 145.438106 92.026307) + (xy 145.461827 92.066416) + (xy 145.461833 92.066424) + (xy 145.47599 92.08058) + (xy 145.488628 92.095376) + (xy 145.500405 92.111586) + (xy 145.500406 92.111587) + (xy 145.536309 92.141288) + (xy 145.54062 92.14521) + (xy 146.190835 92.795425) + (xy 146.829194 93.433784) + (xy 146.839019 93.446048) + (xy 146.83924 93.445866) + (xy 146.84421 93.451874) + (xy 146.893949 93.498582) + (xy 146.895316 93.499906) + (xy 146.91553 93.52012) + (xy 146.921004 93.524366) + (xy 146.925442 93.528156) + (xy 146.959418 93.560062) + (xy 146.959422 93.560064) + (xy 146.976973 93.569713) + (xy 146.993231 93.580392) + (xy 147.009064 93.592674) + (xy 147.031015 93.602172) + (xy 147.051837 93.611183) + (xy 147.057081 93.613752) + (xy 147.097908 93.636197) + (xy 147.117312 93.641179) + (xy 147.13571 93.647478) + (xy 147.154105 93.655438) + (xy 147.200129 93.662726) + (xy 147.205832 93.663907) + (xy 147.250981 93.6755) + (xy 147.271016 93.6755) + (xy 147.290413 93.677026) + (xy 147.310196 93.68016) + (xy 147.356583 93.675775) + (xy 147.362422 93.6755) + (xy 150.419548 93.6755) + (xy 150.486587 93.695185) + (xy 150.507229 93.711819) + (xy 151.341038 94.545629) + (xy 151.374523 94.606952) + (xy 151.376678 94.620348) + (xy 151.384731 94.696959) + (xy 151.394326 94.788256) + (xy 151.394327 94.788259) + (xy 151.452818 94.968277) + (xy 151.452821 94.968284) + (xy 151.547467 95.132216) + (xy 151.578578 95.166768) + (xy 151.674129 95.272888) + (xy 151.827265 95.384148) + (xy 151.82727 95.384151) + (xy 152.000192 95.461142) + (xy 152.000197 95.461144) + (xy 152.185354 95.5005) + (xy 152.185355 95.5005) + (xy 152.374644 95.5005) + (xy 152.374646 95.5005) + (xy 152.559803 95.461144) + (xy 152.73273 95.384151) + (xy 152.885871 95.272888) + (xy 153.012533 95.132216) + (xy 153.107179 94.968284) + (xy 153.165674 94.788256) + (xy 153.18546 94.6) + (xy 153.165674 94.411744) + (xy 153.107179 94.231716) + (xy 153.012533 94.067784) + (xy 152.885871 93.927112) + (xy 152.88587 93.927111) + (xy 152.732734 93.815851) + (xy 152.732729 93.815848) + (xy 152.559807 93.738857) + (xy 152.559802 93.738855) + (xy 152.414 93.707865) + (xy 152.374646 93.6995) + (xy 152.374645 93.6995) + (xy 152.315452 93.6995) + (xy 152.248413 93.679815) + (xy 152.227771 93.663181) + (xy 152.001772 93.437181) + (xy 151.968287 93.375858) + (xy 151.973271 93.306166) + (xy 152.015143 93.250233) + (xy 152.080607 93.225816) + (xy 152.089453 93.2255) + (xy 155.209548 93.2255) + (xy 155.276587 93.245185) + (xy 155.297229 93.261819) + (xy 155.518181 93.482771) + (xy 155.551666 93.544094) + (xy 155.5545 93.570452) + (xy 155.5545 95.813573) + (xy 155.534815 95.880612) + (xy 155.489519 95.922627) + (xy 155.431356 95.954103) + (xy 155.431353 95.954105) + (xy 155.252955 96.092959) + (xy 155.25295 96.092963) + (xy 155.09985 96.259272) + (xy 155.099842 96.259283) + (xy 155.013808 96.390968) + (xy 154.960662 96.436325) + (xy 154.89143 96.445748) + (xy 154.828095 96.416246) + (xy 154.806192 96.390968) + (xy 154.733713 96.280032) + (xy 154.720156 96.259281) + (xy 154.72015 96.259274) + (xy 154.720149 96.259272) + (xy 154.567049 96.092963) + (xy 154.567048 96.092962) + (xy 154.567046 96.09296) + (xy 154.388649 95.954107) + (xy 154.2655 95.887462) + (xy 154.189832 95.846512) + (xy 154.189827 95.84651) + (xy 153.976017 95.773109) + (xy 153.794388 95.742801) + (xy 153.753033 95.7359) + (xy 153.526967 95.7359) + (xy 153.485612 95.742801) + (xy 153.303982 95.773109) + (xy 153.090172 95.84651) + (xy 153.090167 95.846512) + (xy 152.891352 95.954106) + (xy 152.712955 96.092959) + (xy 152.71295 96.092963) + (xy 152.55985 96.259272) + (xy 152.559842 96.259283) + (xy 152.473808 96.390968) + (xy 152.420662 96.436325) + (xy 152.35143 96.445748) + (xy 152.288095 96.416246) + (xy 152.266192 96.390968) + (xy 152.193713 96.280032) + (xy 152.180156 96.259281) + (xy 152.18015 96.259274) + (xy 152.180149 96.259272) + (xy 152.027049 96.092963) + (xy 152.027048 96.092962) + (xy 152.027046 96.09296) + (xy 151.848649 95.954107) + (xy 151.7255 95.887462) + (xy 151.649832 95.846512) + (xy 151.649827 95.84651) + (xy 151.436017 95.773109) + (xy 151.254388 95.742801) + (xy 151.213033 95.7359) + (xy 150.986967 95.7359) + (xy 150.945612 95.742801) + (xy 150.763982 95.773109) + (xy 150.550172 95.84651) + (xy 150.550167 95.846512) + (xy 150.351352 95.954106) + (xy 150.172955 96.092959) + (xy 150.17295 96.092963) + (xy 150.01985 96.259272) + (xy 150.019846 96.259278) + (xy 149.933807 96.390969) + (xy 149.88066 96.436325) + (xy 149.811429 96.445748) + (xy 149.748093 96.416245) + (xy 149.726192 96.390969) + (xy 149.640156 96.259281) + (xy 149.64015 96.259274) + (xy 149.640149 96.259272) + (xy 149.487049 96.092963) + (xy 149.487048 96.092962) + (xy 149.487046 96.09296) + (xy 149.308649 95.954107) + (xy 149.1855 95.887462) + (xy 149.109832 95.846512) + (xy 149.109827 95.84651) + (xy 148.896017 95.773109) + (xy 148.714388 95.742801) + (xy 148.673033 95.7359) + (xy 148.446967 95.7359) + (xy 148.405612 95.742801) + (xy 148.223982 95.773109) + (xy 148.010172 95.84651) + (xy 148.010167 95.846512) + (xy 147.811352 95.954106) + (xy 147.632955 96.092959) + (xy 147.63295 96.092963) + (xy 147.47985 96.259272) + (xy 147.479842 96.259283) + (xy 147.393808 96.390968) + (xy 147.340662 96.436325) + (xy 147.27143 96.445748) + (xy 147.208095 96.416246) + (xy 147.186192 96.390968) + (xy 147.113713 96.280032) + (xy 147.100156 96.259281) + (xy 147.10015 96.259274) + (xy 147.100149 96.259272) + (xy 146.947049 96.092963) + (xy 146.947048 96.092962) + (xy 146.947046 96.09296) + (xy 146.768649 95.954107) + (xy 146.6455 95.887462) + (xy 146.569832 95.846512) + (xy 146.569827 95.84651) + (xy 146.356017 95.773109) + (xy 146.174388 95.742801) + (xy 146.133033 95.7359) + (xy 145.906967 95.7359) + (xy 145.865612 95.742801) + (xy 145.683982 95.773109) + (xy 145.470172 95.84651) + (xy 145.470167 95.846512) + (xy 145.271352 95.954106) + (xy 145.092955 96.092959) + (xy 145.09295 96.092963) + (xy 144.93985 96.259272) + (xy 144.939842 96.259283) + (xy 144.853808 96.390968) + (xy 144.800662 96.436325) + (xy 144.73143 96.445748) + (xy 144.668095 96.416246) + (xy 144.646192 96.390968) + (xy 144.573713 96.280032) + (xy 144.560156 96.259281) + (xy 144.56015 96.259274) + (xy 144.560149 96.259272) + (xy 144.407049 96.092963) + (xy 144.407048 96.092962) + (xy 144.407046 96.09296) + (xy 144.228649 95.954107) + (xy 144.1055 95.887462) + (xy 144.029832 95.846512) + (xy 144.029827 95.84651) + (xy 143.816017 95.773109) + (xy 143.634388 95.742801) + (xy 143.593033 95.7359) + (xy 143.366967 95.7359) + (xy 143.325612 95.742801) + (xy 143.143982 95.773109) + (xy 142.930172 95.84651) + (xy 142.930167 95.846512) + (xy 142.731352 95.954106) + (xy 142.552955 96.092959) + (xy 142.55295 96.092963) + (xy 142.39985 96.259272) + (xy 142.399842 96.259283) + (xy 142.313808 96.390968) + (xy 142.260662 96.436325) + (xy 142.19143 96.445748) + (xy 142.128095 96.416246) + (xy 142.106192 96.390968) + (xy 142.033713 96.280032) + (xy 142.020156 96.259281) + (xy 142.02015 96.259274) + (xy 142.020149 96.259272) + (xy 141.867049 96.092963) + (xy 141.867048 96.092962) + (xy 141.867046 96.09296) + (xy 141.688649 95.954107) + (xy 141.5655 95.887462) + (xy 141.489832 95.846512) + (xy 141.489827 95.84651) + (xy 141.276017 95.773109) + (xy 141.094388 95.742801) + (xy 141.053033 95.7359) + (xy 140.826967 95.7359) + (xy 140.785612 95.742801) + (xy 140.603982 95.773109) + (xy 140.390172 95.84651) + (xy 140.390167 95.846512) + (xy 140.191352 95.954106) + (xy 140.012955 96.092959) + (xy 140.01295 96.092963) + (xy 139.85985 96.259272) + (xy 139.859842 96.259283) + (xy 139.773808 96.390968) + (xy 139.720662 96.436325) + (xy 139.65143 96.445748) + (xy 139.588095 96.416246) + (xy 139.566192 96.390968) + (xy 139.493713 96.280032) + (xy 139.480156 96.259281) + (xy 139.48015 96.259274) + (xy 139.480149 96.259272) + (xy 139.327049 96.092963) + (xy 139.327048 96.092962) + (xy 139.327046 96.09296) + (xy 139.148649 95.954107) + (xy 139.0255 95.887462) + (xy 138.949832 95.846512) + (xy 138.949827 95.84651) + (xy 138.736017 95.773109) + (xy 138.554388 95.742801) + (xy 138.513033 95.7359) + (xy 138.286967 95.7359) + (xy 138.245612 95.742801) + (xy 138.063982 95.773109) + (xy 137.850172 95.84651) + (xy 137.850167 95.846512) + (xy 137.651352 95.954106) + (xy 137.472955 96.092959) + (xy 137.47295 96.092963) + (xy 137.440729 96.127965) + (xy 137.380842 96.163956) + (xy 137.311004 96.161855) + (xy 137.253388 96.122331) + (xy 137.226287 96.057931) + (xy 137.2255 96.043982) + (xy 137.2255 91.132741) + (xy 137.245185 91.065702) + (xy 137.297989 91.019947) + (xy 137.367147 91.010003) + (xy 137.430703 91.039028) + (xy 137.468477 91.097806) + (xy 137.470629 91.106213) + (xy 137.494018 91.213013) + (xy 137.600635 91.515566) + (xy 137.743621 91.802721) + (xy 137.918353 92.06642) + (xy 137.920812 92.07013) + (xy 138.129522 92.313737) + (xy 138.366586 92.529849) + (xy 138.366589 92.529851) + (xy 138.628405 92.715187) + (xy 138.628415 92.715193) + (xy 138.911016 92.866948) + (xy 138.911022 92.86695) + (xy 138.911029 92.866954) + (xy 139.07249 92.929504) + (xy 139.210144 92.982832) + (xy 139.210147 92.982832) + (xy 139.210153 92.982835) + (xy 139.521251 93.061079) + (xy 139.640634 93.075861) + (xy 139.839602 93.1005) + (xy 139.839607 93.1005) + (xy 140.080112 93.1005) + (xy 140.080126 93.1005) + (xy 140.320178 93.085694) + (xy 140.635503 93.02675) + (xy 140.941194 92.929502) + (xy 141.232618 92.795426) + (xy 141.505356 92.626554) + (xy 141.755275 92.425445) + (xy 141.978585 92.195148) + (xy 142.171903 91.939155) + (xy 142.332296 91.661345) + (xy 142.457334 91.365931) + (xy 142.545122 91.05739) + (xy 142.594328 90.7404) + (xy 142.604206 90.419765) + (xy 142.599576 90.369804) + (xy 142.574608 90.100348) + (xy 142.574607 90.100342) + (xy 142.505981 89.786986) + (xy 142.46676 89.675686) + (xy 142.399366 89.484436) + (xy 142.256379 89.197279) + (xy 142.079188 88.92987) + (xy 141.870478 88.686263) + (xy 141.694129 88.5255) + (xy 141.63342 88.470156) + (xy 141.63341 88.470148) + (xy 141.371594 88.284812) + (xy 141.371584 88.284806) + (xy 141.088983 88.133051) + (xy 141.088973 88.133047) + (xy 141.088971 88.133046) + (xy 141.020805 88.106638) + (xy 140.789855 88.017167) + (xy 140.789851 88.017166) + (xy 140.478745 87.93892) + (xy 140.160398 87.8995) + (xy 140.160393 87.8995) + (xy 139.919874 87.8995) + (xy 139.867156 87.902751) + (xy 139.679824 87.914305) + (xy 139.364499 87.973249) + (xy 139.364497 87.97325) + (xy 139.058814 88.070495) + (xy 139.05881 88.070496) + (xy 139.058806 88.070498) + (xy 138.884928 88.150494) + (xy 138.767381 88.204574) + (xy 138.494656 88.373437) + (xy 138.494636 88.373451) + (xy 138.244728 88.574551) + (xy 138.021413 88.804853) + (xy 137.828095 89.060847) + (xy 137.667701 89.33866) + (xy 137.542668 89.634062) + (xy 137.54266 89.634086) + (xy 137.468766 89.893796) + (xy 137.431487 89.95289) + (xy 137.368177 89.982447) + (xy 137.298938 89.973085) + (xy 137.245751 89.927775) + (xy 137.225504 89.860903) + (xy 137.2255 89.859862) + (xy 137.2255 76.557242) + (xy 137.227224 76.541622) + (xy 137.226939 76.541596) + (xy 137.227673 76.533833) + (xy 137.225531 76.465652) + (xy 137.2255 76.463705) + (xy 137.2255 76.435154) + (xy 137.2255 76.43515) + (xy 137.224631 76.428272) + (xy 137.224172 76.422443) + (xy 137.222709 76.375872) + (xy 137.217122 76.356644) + (xy 137.213174 76.337584) + (xy 137.210663 76.317704) + (xy 137.193512 76.274387) + (xy 137.191619 76.268858) + (xy 137.178618 76.224109) + (xy 137.178616 76.224106) + (xy 137.168423 76.206871) + (xy 137.159861 76.189394) + (xy 137.152487 76.17077) + (xy 137.152486 76.170768) + (xy 137.125079 76.133045) + (xy 137.121888 76.128186) + (xy 137.098172 76.088083) + (xy 137.098165 76.088074) + (xy 137.084006 76.073915) + (xy 137.071368 76.059119) + (xy 137.059594 76.042913) + (xy 137.023688 76.013209) + (xy 137.019376 76.009286) + (xy 135.860316 74.850225) + (xy 135.826831 74.788902) + (xy 135.831815 74.71921) + (xy 135.834441 74.712733) + (xy 135.860011 74.654441) + (xy 135.915507 74.435293) + (xy 135.922974 74.345175) + (xy 135.934175 74.210006) + (xy 135.934175 74.209993) + (xy 135.920699 74.047369) + (xy 135.915507 73.984707) + (xy 135.860011 73.765559) + (xy 135.769202 73.558535) + (xy 135.645556 73.369281) + (xy 135.645553 73.369278) + (xy 135.645549 73.369272) + (xy 135.492449 73.202963) + (xy 135.492448 73.202962) + (xy 135.492446 73.20296) + (xy 135.314049 73.064107) + (xy 135.314047 73.064106) + (xy 135.314046 73.064105) + (xy 135.314039 73.0641) + (xy 135.286236 73.049055) + (xy 135.236644 72.999837) + (xy 135.221535 72.93162) + (xy 135.245706 72.866064) + (xy 135.286236 72.830945) + (xy 135.314039 72.815899) + (xy 135.314042 72.815896) + (xy 135.314049 72.815893) + (xy 135.492446 72.67704) + (xy 135.507656 72.660517) + (xy 135.567544 72.624526) + (xy 135.598886 72.6205) + (xy 136.066295 72.6205) + (xy 136.084265 72.621809) + (xy 136.108023 72.625289) + (xy 136.160068 72.620735) + (xy 136.16547 72.6205) + (xy 136.173704 72.6205) + (xy 136.173709 72.6205) + (xy 136.205458 72.616788) + (xy 136.207075 72.616622) + (xy 136.282797 72.609999) + (xy 136.282805 72.609996) + (xy 136.289866 72.608539) + (xy 136.289878 72.608598) + (xy 136.297243 72.606965) + (xy 136.297229 72.606906) + (xy 136.304251 72.605241) + (xy 136.304255 72.605241) + (xy 136.375587 72.579277) + (xy 136.377286 72.578688) + (xy 136.379827 72.577846) + (xy 136.449334 72.554814) + (xy 136.449342 72.554808) + (xy 136.455882 72.55176) + (xy 136.455908 72.551816) + (xy 136.46269 72.548532) + (xy 136.462663 72.548478) + (xy 136.469109 72.545239) + (xy 136.469117 72.545237) + (xy 136.532612 72.503475) + (xy 136.533977 72.502605) + (xy 136.598656 72.462712) + (xy 136.598661 72.462706) + (xy 136.604325 72.458229) + (xy 136.604362 72.458277) + (xy 136.610204 72.453518) + (xy 136.610164 72.453471) + (xy 136.615686 72.448835) + (xy 136.615696 72.44883) + (xy 136.6678 72.393601) + (xy 136.668994 72.392372) + (xy 144.407849 64.653516) + (xy 144.46917 64.620033) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 147.311905 89.253753) + (xy 147.333804 89.279025) + (xy 147.419844 89.410719) + (xy 147.419849 89.410724) + (xy 147.41985 89.410727) + (xy 147.57295 89.577036) + (xy 147.572954 89.57704) + (xy 147.751351 89.715893) + (xy 147.809517 89.74737) + (xy 147.859107 89.796588) + (xy 147.8745 89.856425) + (xy 147.8745 91.437255) + (xy 147.872775 91.452872) + (xy 147.873061 91.452899) + (xy 147.872326 91.460666) + (xy 147.874469 91.528846) + (xy 147.8745 91.530793) + (xy 147.8745 91.559343) + (xy 147.874501 91.55936) + (xy 147.875368 91.566231) + (xy 147.875826 91.57205) + (xy 147.87729 91.618624) + (xy 147.877291 91.618627) + (xy 147.88288 91.637867) + (xy 147.886824 91.656911) + (xy 147.889336 91.676792) + (xy 147.90649 91.720119) + (xy 147.908382 91.725647) + (xy 147.910242 91.73205) + (xy 147.921382 91.77039) + (xy 147.926251 91.778624) + (xy 147.93158 91.787634) + (xy 147.940138 91.805103) + (xy 147.947514 91.823732) + (xy 147.974898 91.861423) + (xy 147.978106 91.866307) + (xy 148.001827 91.906416) + (xy 148.001833 91.906424) + (xy 148.01599 91.92058) + (xy 148.028627 91.935375) + (xy 148.040406 91.951587) + (xy 148.068103 91.9745) + (xy 148.076309 91.981288) + (xy 148.08062 91.98521) + (xy 148.197239 92.101829) + (xy 148.308229 92.212819) + (xy 148.341714 92.274142) + (xy 148.33673 92.343834) + (xy 148.294858 92.399767) + (xy 148.229394 92.424184) + (xy 148.220548 92.4245) + (xy 147.640452 92.4245) + (xy 147.573413 92.404815) + (xy 147.552771 92.388181) + (xy 146.621819 91.457228) + (xy 146.588334 91.395905) + (xy 146.5855 91.369547) + (xy 146.5855 89.856425) + (xy 146.605185 89.789386) + (xy 146.650481 89.747371) + (xy 146.708649 89.715893) + (xy 146.887046 89.57704) + (xy 147.040156 89.410719) + (xy 147.126193 89.279028) + (xy 147.179338 89.233675) + (xy 147.248569 89.224251) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 164.951809 62.970185) + (xy 164.972451 62.986819) + (xy 165.393181 63.407548) + (xy 165.426666 63.468871) + (xy 165.4295 63.495229) + (xy 165.4295 63.916111) + (xy 165.409815 63.98315) + (xy 165.386243 64.008955) + (xy 165.38673 64.009484) + (xy 165.382955 64.012958) + (xy 165.328186 64.072453) + (xy 165.268298 64.108443) + (xy 165.19846 64.106342) + (xy 165.140845 64.066817) + (xy 165.120775 64.031802) + (xy 165.076954 63.914313) + (xy 165.07695 63.914306) + (xy 164.99079 63.799212) + (xy 164.990787 63.799209) + (xy 164.875693 63.713049) + (xy 164.875686 63.713045) + (xy 164.740979 63.662803) + (xy 164.740972 63.662801) + (xy 164.681444 63.6564) + (xy 164.02 63.6564) + (xy 164.02 64.575702) + (xy 163.914592 64.527565) + (xy 163.806334 64.512) + (xy 163.733666 64.512) + (xy 163.625408 64.527565) + (xy 163.52 64.575702) + (xy 163.52 63.6564) + (xy 162.858555 63.6564) + (xy 162.799027 63.662801) + (xy 162.79902 63.662803) + (xy 162.664313 63.713045) + (xy 162.664306 63.713049) + (xy 162.549212 63.799209) + (xy 162.549209 63.799212) + (xy 162.463049 63.914306) + (xy 162.463046 63.914312) + (xy 162.419224 64.031803) + (xy 162.377352 64.087736) + (xy 162.311887 64.112153) + (xy 162.243615 64.097301) + (xy 162.211813 64.072452) + (xy 162.157049 64.012963) + (xy 162.157048 64.012962) + (xy 162.157046 64.01296) + (xy 161.978649 63.874107) + (xy 161.915479 63.839921) + (xy 161.779832 63.766512) + (xy 161.779827 63.76651) + (xy 161.566017 63.693109) + (xy 161.384388 63.662801) + (xy 161.343033 63.6559) + (xy 161.116967 63.6559) + (xy 161.075612 63.662801) + (xy 160.893982 63.693109) + (xy 160.680172 63.76651) + (xy 160.680167 63.766512) + (xy 160.481352 63.874106) + (xy 160.302955 64.012959) + (xy 160.30295 64.012963) + (xy 160.14985 64.179272) + (xy 160.149846 64.179278) + (xy 160.063807 64.310969) + (xy 160.01066 64.356325) + (xy 159.941429 64.365748) + (xy 159.878093 64.336245) + (xy 159.856192 64.310969) + (xy 159.770156 64.179281) + (xy 159.770151 64.179276) + (xy 159.770149 64.179272) + (xy 159.617049 64.012963) + (xy 159.617048 64.012962) + (xy 159.617046 64.01296) + (xy 159.438649 63.874107) + (xy 159.375479 63.839921) + (xy 159.239832 63.766512) + (xy 159.239827 63.76651) + (xy 159.026017 63.693109) + (xy 158.844388 63.662801) + (xy 158.803033 63.6559) + (xy 158.576967 63.6559) + (xy 158.535612 63.662801) + (xy 158.353982 63.693109) + (xy 158.140172 63.76651) + (xy 158.140167 63.766512) + (xy 157.941352 63.874106) + (xy 157.762955 64.012959) + (xy 157.76295 64.012963) + (xy 157.60985 64.179272) + (xy 157.609842 64.179283) + (xy 157.486198 64.368533) + (xy 157.395388 64.57556) + (xy 157.339892 64.79471) + (xy 157.321225 65.019993) + (xy 157.321225 65.020006) + (xy 157.339892 65.245289) + (xy 157.395388 65.464439) + (xy 157.486198 65.671466) + (xy 157.609842 65.860716) + (xy 157.60985 65.860727) + (xy 157.761238 66.025176) + (xy 157.762954 66.02704) + (xy 157.941351 66.165893) + (xy 157.999517 66.19737) + (xy 158.049107 66.246588) + (xy 158.0645 66.306425) + (xy 158.0645 71.583573) + (xy 158.044815 71.650612) + (xy 157.999519 71.692627) + (xy 157.941356 71.724103) + (xy 157.941353 71.724105) + (xy 157.762955 71.862959) + (xy 157.76295 71.862963) + (xy 157.60985 72.029272) + (xy 157.609842 72.029283) + (xy 157.486198 72.218533) + (xy 157.395388 72.42556) + (xy 157.339892 72.64471) + (xy 157.321225 72.869993) + (xy 157.321225 72.870006) + (xy 157.339892 73.095289) + (xy 157.395388 73.314439) + (xy 157.486198 73.521466) + (xy 157.609842 73.710716) + (xy 157.60985 73.710727) + (xy 157.76295 73.877036) + (xy 157.762954 73.87704) + (xy 157.941351 74.015893) + (xy 157.999517 74.04737) + (xy 158.049107 74.096588) + (xy 158.0645 74.156425) + (xy 158.0645 79.433573) + (xy 158.044815 79.500612) + (xy 157.999519 79.542627) + (xy 157.941356 79.574103) + (xy 157.941353 79.574105) + (xy 157.762955 79.712959) + (xy 157.76295 79.712963) + (xy 157.60985 79.879272) + (xy 157.609842 79.879283) + (xy 157.486198 80.068533) + (xy 157.395388 80.27556) + (xy 157.339892 80.49471) + (xy 157.321225 80.719993) + (xy 157.321225 80.720006) + (xy 157.339892 80.945289) + (xy 157.395388 81.164439) + (xy 157.486198 81.371466) + (xy 157.609842 81.560716) + (xy 157.60985 81.560727) + (xy 157.76295 81.727036) + (xy 157.762954 81.72704) + (xy 157.941351 81.865893) + (xy 157.999517 81.89737) + (xy 158.049107 81.946588) + (xy 158.0645 82.006425) + (xy 158.0645 87.283573) + (xy 158.044815 87.350612) + (xy 157.999519 87.392627) + (xy 157.941356 87.424103) + (xy 157.941353 87.424105) + (xy 157.762955 87.562959) + (xy 157.76295 87.562963) + (xy 157.60985 87.729272) + (xy 157.609842 87.729283) + (xy 157.486198 87.918533) + (xy 157.395388 88.12556) + (xy 157.339892 88.34471) + (xy 157.321225 88.569993) + (xy 157.321225 88.570006) + (xy 157.339892 88.795289) + (xy 157.395388 89.014439) + (xy 157.486198 89.221466) + (xy 157.609842 89.410716) + (xy 157.60985 89.410727) + (xy 157.76295 89.577036) + (xy 157.762954 89.57704) + (xy 157.941351 89.715893) + (xy 158.140169 89.823488) + (xy 158.140172 89.823489) + (xy 158.353982 89.89689) + (xy 158.353984 89.89689) + (xy 158.353986 89.896891) + (xy 158.576967 89.9341) + (xy 158.576968 89.9341) + (xy 158.803032 89.9341) + (xy 158.803033 89.9341) + (xy 159.026014 89.896891) + (xy 159.03503 89.893796) + (xy 159.084089 89.876954) + (xy 159.239831 89.823488) + (xy 159.438649 89.715893) + (xy 159.617046 89.57704) + (xy 159.770156 89.410719) + (xy 159.856193 89.279028) + (xy 159.909338 89.233675) + (xy 159.978569 89.224251) + (xy 160.041905 89.253753) + (xy 160.063804 89.279025) + (xy 160.149844 89.410719) + (xy 160.149849 89.410724) + (xy 160.14985 89.410727) + (xy 160.30295 89.577036) + (xy 160.302954 89.57704) + (xy 160.481351 89.715893) + (xy 160.539517 89.74737) + (xy 160.589107 89.796588) + (xy 160.6045 89.856425) + (xy 160.6045 90.039547) + (xy 160.584815 90.106586) + (xy 160.568181 90.127228) + (xy 158.757228 91.938181) + (xy 158.695905 91.971666) + (xy 158.669547 91.9745) + (xy 156.922743 91.9745) + (xy 156.907122 91.972775) + (xy 156.907096 91.973061) + (xy 156.899333 91.972326) + (xy 156.831153 91.974469) + (xy 156.829206 91.9745) + (xy 156.800649 91.9745) + (xy 156.793766 91.975369) + (xy 156.787949 91.975826) + (xy 156.741373 91.97729) + (xy 156.722129 91.982881) + (xy 156.703079 91.986825) + (xy 156.683211 91.989334) + (xy 156.639884 92.006488) + (xy 156.634358 92.008379) + (xy 156.589614 92.021379) + (xy 156.58961 92.021381) + (xy 156.572366 92.031579) + (xy 156.554905 92.040133) + (xy 156.536274 92.04751) + (xy 156.536262 92.047517) + (xy 156.49857 92.074902) + (xy 156.493687 92.078109) + (xy 156.45358 92.101829) + (xy 156.439414 92.115995) + (xy 156.424624 92.128627) + (xy 156.408414 92.140404) + (xy 156.408411 92.140407) + (xy 156.37871 92.176309) + (xy 156.374777 92.180631) + (xy 156.26768 92.287728) + (xy 156.206357 92.321213) + (xy 156.136665 92.316229) + (xy 156.092322 92.287731) + (xy 156.020797 92.216206) + (xy 156.01098 92.20395) + (xy 156.010759 92.204134) + (xy 156.005786 92.198122) + (xy 155.956066 92.151432) + (xy 155.954666 92.150075) + (xy 155.934476 92.129884) + (xy 155.928986 92.125625) + (xy 155.924561 92.121847) + (xy 155.890582 92.089938) + (xy 155.89058 92.089936) + (xy 155.890577 92.089935) + (xy 155.873029 92.080288) + (xy 155.856763 92.069604) + (xy 155.840936 92.057327) + (xy 155.840935 92.057326) + (xy 155.840933 92.057325) + (xy 155.798168 92.038818) + (xy 155.792922 92.036248) + (xy 155.752093 92.013803) + (xy 155.752092 92.013802) + (xy 155.732693 92.008822) + (xy 155.714281 92.002518) + (xy 155.695898 91.994562) + (xy 155.695892 91.99456) + (xy 155.649874 91.987272) + (xy 155.644152 91.986087) + (xy 155.599021 91.9745) + (xy 155.599019 91.9745) + (xy 155.578984 91.9745) + (xy 155.559586 91.972973) + (xy 155.551333 91.971666) + (xy 155.539805 91.96984) + (xy 155.539804 91.96984) + (xy 155.493416 91.974225) + (xy 155.487578 91.9745) + (xy 149.890452 91.9745) + (xy 149.823413 91.954815) + (xy 149.802771 91.938181) + (xy 149.161819 91.297228) + (xy 149.128334 91.235905) + (xy 149.1255 91.209547) + (xy 149.1255 89.856425) + (xy 149.145185 89.789386) + (xy 149.190481 89.747371) + (xy 149.248649 89.715893) + (xy 149.427046 89.57704) + (xy 149.481815 89.517545) + (xy 149.541699 89.481557) + (xy 149.611537 89.483657) + (xy 149.669153 89.52318) + (xy 149.689224 89.558196) + (xy 149.733046 89.675688) + (xy 149.733049 89.675693) + (xy 149.819209 89.790787) + (xy 149.819212 89.79079) + (xy 149.934306 89.87695) + (xy 149.934313 89.876954) + (xy 150.06902 89.927196) + (xy 150.069027 89.927198) + (xy 150.128555 89.933599) + (xy 150.128572 89.9336) + (xy 150.79 89.9336) + (xy 150.79 89.014297) + (xy 150.895408 89.062435) + (xy 151.003666 89.078) + (xy 151.076334 89.078) + (xy 151.184592 89.062435) + (xy 151.29 89.014297) + (xy 151.29 89.9336) + (xy 151.951428 89.9336) + (xy 151.951444 89.933599) + (xy 152.010972 89.927198) + (xy 152.010979 89.927196) + (xy 152.145686 89.876954) + (xy 152.145693 89.87695) + (xy 152.260787 89.79079) + (xy 152.26079 89.790787) + (xy 152.34695 89.675693) + (xy 152.346954 89.675686) + (xy 152.390775 89.558197) + (xy 152.432646 89.502263) + (xy 152.49811 89.477846) + (xy 152.566383 89.492698) + (xy 152.598186 89.517547) + (xy 152.639578 89.56251) + (xy 152.652954 89.57704) + (xy 152.831351 89.715893) + (xy 153.030169 89.823488) + (xy 153.030172 89.823489) + (xy 153.243982 89.89689) + (xy 153.243984 89.89689) + (xy 153.243986 89.896891) + (xy 153.466967 89.9341) + (xy 153.466968 89.9341) + (xy 153.693032 89.9341) + (xy 153.693033 89.9341) + (xy 153.916014 89.896891) + (xy 153.92503 89.893796) + (xy 153.974089 89.876954) + (xy 154.129831 89.823488) + (xy 154.328649 89.715893) + (xy 154.507046 89.57704) + (xy 154.660156 89.410719) + (xy 154.783802 89.221465) + (xy 154.874611 89.014441) + (xy 154.930107 88.795293) + (xy 154.942984 88.639888) + (xy 154.948775 88.570006) + (xy 154.948775 88.569993) + (xy 154.932488 88.373446) + (xy 154.930107 88.344707) + (xy 154.874611 88.125559) + (xy 154.783802 87.918535) + (xy 154.781038 87.914305) + (xy 154.721979 87.823908) + (xy 154.660156 87.729281) + (xy 154.660153 87.729278) + (xy 154.660149 87.729272) + (xy 154.507049 87.562963) + (xy 154.507044 87.562958) + (xy 154.378337 87.46278) + (xy 154.337524 87.406069) + (xy 154.3305 87.364927) + (xy 154.3305 81.925071) + (xy 154.350185 81.858032) + (xy 154.378338 81.827218) + (xy 154.380719 81.825364) + (xy 154.507046 81.72704) + (xy 154.62013 81.604199) + (xy 154.660149 81.560727) + (xy 154.660151 81.560724) + (xy 154.660156 81.560719) + (xy 154.783802 81.371465) + (xy 154.874611 81.164441) + (xy 154.930107 80.945293) + (xy 154.937574 80.855175) + (xy 154.948775 80.720006) + (xy 154.948775 80.719993) + (xy 154.935517 80.559999) + (xy 154.930107 80.494707) + (xy 154.874611 80.275559) + (xy 154.783802 80.068535) + (xy 154.660156 79.879281) + (xy 154.660153 79.879278) + (xy 154.660149 79.879272) + (xy 154.507049 79.712963) + (xy 154.507044 79.712958) + (xy 154.378337 79.61278) + (xy 154.337524 79.556069) + (xy 154.3305 79.514927) + (xy 154.3305 74.075071) + (xy 154.350185 74.008032) + (xy 154.378338 73.977218) + (xy 154.477547 73.9) + (xy 154.507046 73.87704) + (xy 154.660156 73.710719) + (xy 154.783802 73.521465) + (xy 154.874611 73.314441) + (xy 154.930107 73.095293) + (xy 154.942975 72.94) + (xy 154.948775 72.870006) + (xy 154.948775 72.869993) + (xy 154.930107 72.64471) + (xy 154.930107 72.644707) + (xy 154.874611 72.425559) + (xy 154.783802 72.218535) + (xy 154.774789 72.20474) + (xy 154.686811 72.07008) + (xy 154.660156 72.029281) + (xy 154.660153 72.029278) + (xy 154.660149 72.029272) + (xy 154.507049 71.862963) + (xy 154.507044 71.862958) + (xy 154.378337 71.76278) + (xy 154.337524 71.706069) + (xy 154.3305 71.664927) + (xy 154.3305 66.225071) + (xy 154.350185 66.158032) + (xy 154.378338 66.127218) + (xy 154.380719 66.125364) + (xy 154.507046 66.02704) + (xy 154.660156 65.860719) + (xy 154.783802 65.671465) + (xy 154.874611 65.464441) + (xy 154.930107 65.245293) + (xy 154.942723 65.093039) + (xy 154.948775 65.020006) + (xy 154.948775 65.019993) + (xy 154.931684 64.813737) + (xy 154.930107 64.794707) + (xy 154.874611 64.575559) + (xy 154.783802 64.368535) + (xy 154.660156 64.179281) + (xy 154.660153 64.179278) + (xy 154.660149 64.179272) + (xy 154.507049 64.012963) + (xy 154.507044 64.012958) + (xy 154.378337 63.91278) + (xy 154.337524 63.856069) + (xy 154.3305 63.814927) + (xy 154.3305 63.71423) + (xy 154.350185 63.647191) + (xy 154.366819 63.626549) + (xy 155.006549 62.986819) + (xy 155.067872 62.953334) + (xy 155.09423 62.9505) + (xy 164.88477 62.9505) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 151.29 82.0836) + (xy 151.951428 82.0836) + (xy 151.951444 82.083599) + (xy 152.010972 82.077198) + (xy 152.010979 82.077196) + (xy 152.145686 82.026954) + (xy 152.145693 82.02695) + (xy 152.260787 81.94079) + (xy 152.26079 81.940787) + (xy 152.34695 81.825693) + (xy 152.346954 81.825686) + (xy 152.390775 81.708197) + (xy 152.432646 81.652263) + (xy 152.49811 81.627846) + (xy 152.566383 81.642698) + (xy 152.598186 81.667547) + (xy 152.65295 81.727036) + (xy 152.652954 81.72704) + (xy 152.652957 81.727042) + (xy 152.65296 81.727045) + (xy 152.781662 81.827218) + (xy 152.822475 81.883928) + (xy 152.8295 81.925071) + (xy 152.8295 87.364927) + (xy 152.809815 87.431966) + (xy 152.781663 87.46278) + (xy 152.652955 87.562958) + (xy 152.598186 87.622453) + (xy 152.538298 87.658443) + (xy 152.46846 87.656342) + (xy 152.410845 87.616817) + (xy 152.390775 87.581802) + (xy 152.346954 87.464313) + (xy 152.34695 87.464306) + (xy 152.26079 87.349212) + (xy 152.260787 87.349209) + (xy 152.145693 87.263049) + (xy 152.145686 87.263045) + (xy 152.010979 87.212803) + (xy 152.010972 87.212801) + (xy 151.951444 87.2064) + (xy 151.29 87.2064) + (xy 151.29 88.125702) + (xy 151.184592 88.077565) + (xy 151.076334 88.062) + (xy 151.003666 88.062) + (xy 150.895408 88.077565) + (xy 150.79 88.125702) + (xy 150.79 87.2064) + (xy 150.128555 87.2064) + (xy 150.069027 87.212801) + (xy 150.06902 87.212803) + (xy 149.934313 87.263045) + (xy 149.934306 87.263049) + (xy 149.819212 87.349209) + (xy 149.819209 87.349212) + (xy 149.733049 87.464306) + (xy 149.733046 87.464312) + (xy 149.689224 87.581803) + (xy 149.647352 87.637736) + (xy 149.581887 87.662153) + (xy 149.513615 87.647301) + (xy 149.481813 87.622452) + (xy 149.427049 87.562963) + (xy 149.427048 87.562962) + (xy 149.427046 87.56296) + (xy 149.248649 87.424107) + (xy 149.248647 87.424106) + (xy 149.248646 87.424105) + (xy 149.248643 87.424103) + (xy 149.190481 87.392627) + (xy 149.140891 87.343407) + (xy 149.1255 87.283573) + (xy 149.1255 82.006425) + (xy 149.145185 81.939386) + (xy 149.190481 81.897371) + (xy 149.248649 81.865893) + (xy 149.427046 81.72704) + (xy 149.481815 81.667545) + (xy 149.541699 81.631557) + (xy 149.611537 81.633657) + (xy 149.669153 81.67318) + (xy 149.689224 81.708196) + (xy 149.733046 81.825688) + (xy 149.733049 81.825693) + (xy 149.819209 81.940787) + (xy 149.819212 81.94079) + (xy 149.934306 82.02695) + (xy 149.934313 82.026954) + (xy 150.06902 82.077196) + (xy 150.069027 82.077198) + (xy 150.128555 82.083599) + (xy 150.128572 82.0836) + (xy 150.79 82.0836) + (xy 150.79 81.164297) + (xy 150.895408 81.212435) + (xy 151.003666 81.228) + (xy 151.076334 81.228) + (xy 151.184592 81.212435) + (xy 151.29 81.164297) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 164.02 82.0836) + (xy 164.681428 82.0836) + (xy 164.681444 82.083599) + (xy 164.740972 82.077198) + (xy 164.740979 82.077196) + (xy 164.875686 82.026954) + (xy 164.875693 82.02695) + (xy 164.990787 81.94079) + (xy 164.99079 81.940787) + (xy 165.07695 81.825693) + (xy 165.076954 81.825686) + (xy 165.120775 81.708197) + (xy 165.162646 81.652263) + (xy 165.22811 81.627846) + (xy 165.296383 81.642698) + (xy 165.328186 81.667547) + (xy 165.38295 81.727036) + (xy 165.382954 81.72704) + (xy 165.382957 81.727042) + (xy 165.38296 81.727045) + (xy 165.511662 81.827218) + (xy 165.552475 81.883928) + (xy 165.5595 81.925071) + (xy 165.5595 87.364927) + (xy 165.539815 87.431966) + (xy 165.511663 87.46278) + (xy 165.382955 87.562958) + (xy 165.328186 87.622453) + (xy 165.268298 87.658443) + (xy 165.19846 87.656342) + (xy 165.140845 87.616817) + (xy 165.120775 87.581802) + (xy 165.076954 87.464313) + (xy 165.07695 87.464306) + (xy 164.99079 87.349212) + (xy 164.990787 87.349209) + (xy 164.875693 87.263049) + (xy 164.875686 87.263045) + (xy 164.740979 87.212803) + (xy 164.740972 87.212801) + (xy 164.681444 87.2064) + (xy 164.02 87.2064) + (xy 164.02 88.125702) + (xy 163.914592 88.077565) + (xy 163.806334 88.062) + (xy 163.733666 88.062) + (xy 163.625408 88.077565) + (xy 163.52 88.125702) + (xy 163.52 87.2064) + (xy 162.858555 87.2064) + (xy 162.799027 87.212801) + (xy 162.79902 87.212803) + (xy 162.664313 87.263045) + (xy 162.664306 87.263049) + (xy 162.549212 87.349209) + (xy 162.549209 87.349212) + (xy 162.463049 87.464306) + (xy 162.463046 87.464312) + (xy 162.419224 87.581803) + (xy 162.377352 87.637736) + (xy 162.311887 87.662153) + (xy 162.243615 87.647301) + (xy 162.211813 87.622452) + (xy 162.157049 87.562963) + (xy 162.157048 87.562962) + (xy 162.157046 87.56296) + (xy 161.978649 87.424107) + (xy 161.978647 87.424106) + (xy 161.978646 87.424105) + (xy 161.978643 87.424103) + (xy 161.920481 87.392627) + (xy 161.870891 87.343407) + (xy 161.8555 87.283573) + (xy 161.8555 82.006425) + (xy 161.875185 81.939386) + (xy 161.920481 81.897371) + (xy 161.978649 81.865893) + (xy 162.157046 81.72704) + (xy 162.211815 81.667545) + (xy 162.271699 81.631557) + (xy 162.341537 81.633657) + (xy 162.399153 81.67318) + (xy 162.419224 81.708196) + (xy 162.463046 81.825688) + (xy 162.463049 81.825693) + (xy 162.549209 81.940787) + (xy 162.549212 81.94079) + (xy 162.664306 82.02695) + (xy 162.664313 82.026954) + (xy 162.79902 82.077196) + (xy 162.799027 82.077198) + (xy 162.858555 82.083599) + (xy 162.858572 82.0836) + (xy 163.52 82.0836) + (xy 163.52 81.164297) + (xy 163.625408 81.212435) + (xy 163.733666 81.228) + (xy 163.806334 81.228) + (xy 163.914592 81.212435) + (xy 164.02 81.164297) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 147.311905 81.403753) + (xy 147.333804 81.429025) + (xy 147.419844 81.560719) + (xy 147.419849 81.560724) + (xy 147.41985 81.560727) + (xy 147.57295 81.727036) + (xy 147.572954 81.72704) + (xy 147.751351 81.865893) + (xy 147.809517 81.89737) + (xy 147.859107 81.946588) + (xy 147.8745 82.006425) + (xy 147.8745 87.283573) + (xy 147.854815 87.350612) + (xy 147.809519 87.392627) + (xy 147.751356 87.424103) + (xy 147.751353 87.424105) + (xy 147.572955 87.562959) + (xy 147.57295 87.562963) + (xy 147.41985 87.729272) + (xy 147.419842 87.729283) + (xy 147.333808 87.860968) + (xy 147.280662 87.906325) + (xy 147.21143 87.915748) + (xy 147.148095 87.886246) + (xy 147.126192 87.860968) + (xy 147.074741 87.782217) + (xy 147.040156 87.729281) + (xy 147.040153 87.729278) + (xy 147.040149 87.729272) + (xy 146.887049 87.562963) + (xy 146.887048 87.562962) + (xy 146.887046 87.56296) + (xy 146.708649 87.424107) + (xy 146.708647 87.424106) + (xy 146.708646 87.424105) + (xy 146.708643 87.424103) + (xy 146.650481 87.392627) + (xy 146.600891 87.343407) + (xy 146.5855 87.283573) + (xy 146.5855 82.006425) + (xy 146.605185 81.939386) + (xy 146.650481 81.897371) + (xy 146.708649 81.865893) + (xy 146.887046 81.72704) + (xy 147.00013 81.604199) + (xy 147.040149 81.560727) + (xy 147.040149 81.560726) + (xy 147.040156 81.560719) + (xy 147.126193 81.429028) + (xy 147.179338 81.383675) + (xy 147.248569 81.374251) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 160.041903 81.403753) + (xy 160.063807 81.429031) + (xy 160.149842 81.560716) + (xy 160.14985 81.560727) + (xy 160.30295 81.727036) + (xy 160.302954 81.72704) + (xy 160.481351 81.865893) + (xy 160.539517 81.89737) + (xy 160.589107 81.946588) + (xy 160.6045 82.006425) + (xy 160.6045 87.283573) + (xy 160.584815 87.350612) + (xy 160.539519 87.392627) + (xy 160.481356 87.424103) + (xy 160.481353 87.424105) + (xy 160.302955 87.562959) + (xy 160.30295 87.562963) + (xy 160.14985 87.729272) + (xy 160.149842 87.729283) + (xy 160.063808 87.860968) + (xy 160.010662 87.906325) + (xy 159.94143 87.915748) + (xy 159.878095 87.886246) + (xy 159.856192 87.860968) + (xy 159.804741 87.782217) + (xy 159.770156 87.729281) + (xy 159.770153 87.729278) + (xy 159.770149 87.729272) + (xy 159.617049 87.562963) + (xy 159.617048 87.562962) + (xy 159.617046 87.56296) + (xy 159.438649 87.424107) + (xy 159.438647 87.424106) + (xy 159.438646 87.424105) + (xy 159.438643 87.424103) + (xy 159.380481 87.392627) + (xy 159.330891 87.343407) + (xy 159.3155 87.283573) + (xy 159.3155 82.006425) + (xy 159.335185 81.939386) + (xy 159.380481 81.897371) + (xy 159.438649 81.865893) + (xy 159.617046 81.72704) + (xy 159.73013 81.604199) + (xy 159.770149 81.560727) + (xy 159.770151 81.560724) + (xy 159.770156 81.560719) + (xy 159.856193 81.429029) + (xy 159.909336 81.383675) + (xy 159.978567 81.374251) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 133.377305 82.513753) + (xy 133.399204 82.539025) + (xy 133.485244 82.670719) + (xy 133.485249 82.670724) + (xy 133.48525 82.670727) + (xy 133.615865 82.812611) + (xy 133.638354 82.83704) + (xy 133.816751 82.975893) + (xy 134.015569 83.083488) + (xy 134.015572 83.083489) + (xy 134.229382 83.15689) + (xy 134.229384 83.15689) + (xy 134.229386 83.156891) + (xy 134.452367 83.1941) + (xy 134.452368 83.1941) + (xy 134.678432 83.1941) + (xy 134.678433 83.1941) + (xy 134.901414 83.156891) + (xy 135.115231 83.083488) + (xy 135.314049 82.975893) + (xy 135.324338 82.967884) + (xy 135.389327 82.942241) + (xy 135.457868 82.955805) + (xy 135.508194 83.004272) + (xy 135.5245 83.065737) + (xy 135.5245 87.604149) + (xy 135.504815 87.671188) + (xy 135.452011 87.716943) + (xy 135.382853 87.726887) + (xy 135.319297 87.697862) + (xy 135.312819 87.69183) + (xy 130.861819 83.240831) + (xy 130.828334 83.179508) + (xy 130.8255 83.15315) + (xy 130.8255 82.858426) + (xy 130.845185 82.791387) + (xy 130.897989 82.745632) + (xy 130.967147 82.735688) + (xy 131.030703 82.764713) + (xy 131.040721 82.774435) + (xy 131.098354 82.83704) + (xy 131.276751 82.975893) + (xy 131.475569 83.083488) + (xy 131.475572 83.083489) + (xy 131.689382 83.15689) + (xy 131.689384 83.15689) + (xy 131.689386 83.156891) + (xy 131.912367 83.1941) + (xy 131.912368 83.1941) + (xy 132.138432 83.1941) + (xy 132.138433 83.1941) + (xy 132.361414 83.156891) + (xy 132.575231 83.083488) + (xy 132.774049 82.975893) + (xy 132.952446 82.83704) + (xy 133.052232 82.728643) + (xy 133.105549 82.670727) + (xy 133.105549 82.670726) + (xy 133.105556 82.670719) + (xy 133.191593 82.539028) + (xy 133.244738 82.493675) + (xy 133.313969 82.484251) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 174.826211 81.545185) + (xy 174.871966 81.597989) + (xy 174.874588 81.60417) + (xy 174.886162 81.633657) + (xy 174.888609 81.639892) + (xy 174.904576 81.667547) + (xy 175.016041 81.860612) + (xy 175.17495 82.059877) + (xy 175.361783 82.233232) + (xy 175.572366 82.376805) + (xy 175.572371 82.376807) + (xy 175.572372 82.376808) + (xy 175.572373 82.376809) + (xy 175.694328 82.435538) + (xy 175.801992 82.487387) + (xy 175.801993 82.487387) + (xy 175.801996 82.487389) + (xy 175.887466 82.513753) + (xy 175.945029 82.531509) + (xy 176.003288 82.57008) + (xy 176.031446 82.634024) + (xy 176.020562 82.703041) + (xy 175.974093 82.755218) + (xy 175.945029 82.768491) + (xy 175.801992 82.812612) + (xy 175.572373 82.92319) + (xy 175.572372 82.923191) + (xy 175.361782 83.066768) + (xy 175.174952 83.240121) + (xy 175.17495 83.240123) + (xy 175.016041 83.439388) + (xy 174.888608 83.660109) + (xy 174.795492 83.897362) + (xy 174.79549 83.897369) + (xy 174.738777 84.145845) + (xy 174.719732 84.399995) + (xy 174.719732 84.400004) + (xy 174.738777 84.654154) + (xy 174.79549 84.90263) + (xy 174.795493 84.902642) + (xy 174.841164 85.019008) + (xy 174.847333 85.088605) + (xy 174.814895 85.150488) + (xy 174.813417 85.151991) + (xy 172.687181 87.278227) + (xy 172.625858 87.311712) + (xy 172.556166 87.306728) + (xy 172.500233 87.264856) + (xy 172.475816 87.199392) + (xy 172.4755 87.190546) + (xy 172.4755 82.946848) + (xy 172.495185 82.879809) + (xy 172.511819 82.859167) + (xy 173.809167 81.561819) + (xy 173.87049 81.528334) + (xy 173.896848 81.5255) + (xy 174.759172 81.5255) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 174.826211 74.545185) + (xy 174.871966 74.597989) + (xy 174.874588 74.60417) + (xy 174.888607 74.639888) + (xy 175.016041 74.860612) + (xy 175.17495 75.059877) + (xy 175.361783 75.233232) + (xy 175.572366 75.376805) + (xy 175.572371 75.376807) + (xy 175.572372 75.376808) + (xy 175.572373 75.376809) + (xy 175.662404 75.420165) + (xy 175.801992 75.487387) + (xy 175.801993 75.487387) + (xy 175.801996 75.487389) + (xy 175.90836 75.520197) + (xy 175.945029 75.531509) + (xy 176.003288 75.57008) + (xy 176.031446 75.634024) + (xy 176.020562 75.703041) + (xy 175.974093 75.755218) + (xy 175.945029 75.768491) + (xy 175.801992 75.812612) + (xy 175.572373 75.92319) + (xy 175.572372 75.923191) + (xy 175.361782 76.066768) + (xy 175.174952 76.240121) + (xy 175.17495 76.240123) + (xy 175.016041 76.439388) + (xy 174.888608 76.660109) + (xy 174.795492 76.897362) + (xy 174.79549 76.897369) + (xy 174.738777 77.145845) + (xy 174.719732 77.399995) + (xy 174.719732 77.400004) + (xy 174.738777 77.654154) + (xy 174.793953 77.895894) + (xy 174.795492 77.902637) + (xy 174.818068 77.960161) + (xy 174.841164 78.019007) + (xy 174.847333 78.088604) + (xy 174.814895 78.150487) + (xy 174.813417 78.15199) + (xy 171.787181 81.178227) + (xy 171.725858 81.211712) + (xy 171.656166 81.206728) + (xy 171.600233 81.164856) + (xy 171.575816 81.099392) + (xy 171.5755 81.090546) + (xy 171.5755 76.846848) + (xy 171.595185 76.779809) + (xy 171.611819 76.759167) + (xy 173.809168 74.561819) + (xy 173.870491 74.528334) + (xy 173.896849 74.5255) + (xy 174.759172 74.5255) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 151.29 74.2336) + (xy 151.951428 74.2336) + (xy 151.951444 74.233599) + (xy 152.010972 74.227198) + (xy 152.010979 74.227196) + (xy 152.145686 74.176954) + (xy 152.145693 74.17695) + (xy 152.260787 74.09079) + (xy 152.26079 74.090787) + (xy 152.34695 73.975693) + (xy 152.346954 73.975686) + (xy 152.390775 73.858197) + (xy 152.432646 73.802263) + (xy 152.49811 73.777846) + (xy 152.566383 73.792698) + (xy 152.598186 73.817547) + (xy 152.65295 73.877036) + (xy 152.652954 73.87704) + (xy 152.652957 73.877042) + (xy 152.65296 73.877045) + (xy 152.781662 73.977218) + (xy 152.822475 74.033928) + (xy 152.8295 74.075071) + (xy 152.8295 79.514927) + (xy 152.809815 79.581966) + (xy 152.781663 79.61278) + (xy 152.652955 79.712958) + (xy 152.598186 79.772453) + (xy 152.538298 79.808443) + (xy 152.46846 79.806342) + (xy 152.410845 79.766817) + (xy 152.390775 79.731802) + (xy 152.346954 79.614313) + (xy 152.34695 79.614306) + (xy 152.26079 79.499212) + (xy 152.260787 79.499209) + (xy 152.145693 79.413049) + (xy 152.145686 79.413045) + (xy 152.010979 79.362803) + (xy 152.010972 79.362801) + (xy 151.951444 79.3564) + (xy 151.29 79.3564) + (xy 151.29 80.275702) + (xy 151.184592 80.227565) + (xy 151.076334 80.212) + (xy 151.003666 80.212) + (xy 150.895408 80.227565) + (xy 150.79 80.275702) + (xy 150.79 79.3564) + (xy 150.128555 79.3564) + (xy 150.069027 79.362801) + (xy 150.06902 79.362803) + (xy 149.934313 79.413045) + (xy 149.934306 79.413049) + (xy 149.819212 79.499209) + (xy 149.819209 79.499212) + (xy 149.733049 79.614306) + (xy 149.733046 79.614312) + (xy 149.689224 79.731803) + (xy 149.647352 79.787736) + (xy 149.581887 79.812153) + (xy 149.513615 79.797301) + (xy 149.481813 79.772452) + (xy 149.427049 79.712963) + (xy 149.427048 79.712962) + (xy 149.427046 79.71296) + (xy 149.248649 79.574107) + (xy 149.248647 79.574106) + (xy 149.248646 79.574105) + (xy 149.248643 79.574103) + (xy 149.190481 79.542627) + (xy 149.140891 79.493407) + (xy 149.1255 79.433573) + (xy 149.1255 74.156425) + (xy 149.145185 74.089386) + (xy 149.190481 74.047371) + (xy 149.248649 74.015893) + (xy 149.427046 73.87704) + (xy 149.481815 73.817545) + (xy 149.541699 73.781557) + (xy 149.611537 73.783657) + (xy 149.669153 73.82318) + (xy 149.689224 73.858196) + (xy 149.733046 73.975688) + (xy 149.733049 73.975693) + (xy 149.819209 74.090787) + (xy 149.819212 74.09079) + (xy 149.934306 74.17695) + (xy 149.934313 74.176954) + (xy 150.06902 74.227196) + (xy 150.069027 74.227198) + (xy 150.128555 74.233599) + (xy 150.128572 74.2336) + (xy 150.79 74.2336) + (xy 150.79 73.314297) + (xy 150.895408 73.362435) + (xy 151.003666 73.378) + (xy 151.076334 73.378) + (xy 151.184592 73.362435) + (xy 151.29 73.314297) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 164.02 74.2336) + (xy 164.681428 74.2336) + (xy 164.681444 74.233599) + (xy 164.740972 74.227198) + (xy 164.740979 74.227196) + (xy 164.875686 74.176954) + (xy 164.875693 74.17695) + (xy 164.990787 74.09079) + (xy 164.99079 74.090787) + (xy 165.07695 73.975693) + (xy 165.076954 73.975686) + (xy 165.120775 73.858197) + (xy 165.162646 73.802263) + (xy 165.22811 73.777846) + (xy 165.296383 73.792698) + (xy 165.328186 73.817547) + (xy 165.38295 73.877036) + (xy 165.382954 73.87704) + (xy 165.382957 73.877042) + (xy 165.38296 73.877045) + (xy 165.511662 73.977218) + (xy 165.552475 74.033928) + (xy 165.5595 74.075071) + (xy 165.5595 79.514927) + (xy 165.539815 79.581966) + (xy 165.511663 79.61278) + (xy 165.382955 79.712958) + (xy 165.328186 79.772453) + (xy 165.268298 79.808443) + (xy 165.19846 79.806342) + (xy 165.140845 79.766817) + (xy 165.120775 79.731802) + (xy 165.076954 79.614313) + (xy 165.07695 79.614306) + (xy 164.99079 79.499212) + (xy 164.990787 79.499209) + (xy 164.875693 79.413049) + (xy 164.875686 79.413045) + (xy 164.740979 79.362803) + (xy 164.740972 79.362801) + (xy 164.681444 79.3564) + (xy 164.02 79.3564) + (xy 164.02 80.275702) + (xy 163.914592 80.227565) + (xy 163.806334 80.212) + (xy 163.733666 80.212) + (xy 163.625408 80.227565) + (xy 163.52 80.275702) + (xy 163.52 79.3564) + (xy 162.858555 79.3564) + (xy 162.799027 79.362801) + (xy 162.79902 79.362803) + (xy 162.664313 79.413045) + (xy 162.664306 79.413049) + (xy 162.549212 79.499209) + (xy 162.549209 79.499212) + (xy 162.463049 79.614306) + (xy 162.463046 79.614312) + (xy 162.419224 79.731803) + (xy 162.377352 79.787736) + (xy 162.311887 79.812153) + (xy 162.243615 79.797301) + (xy 162.211813 79.772452) + (xy 162.157049 79.712963) + (xy 162.157048 79.712962) + (xy 162.157046 79.71296) + (xy 161.978649 79.574107) + (xy 161.978647 79.574106) + (xy 161.978646 79.574105) + (xy 161.978643 79.574103) + (xy 161.920481 79.542627) + (xy 161.870891 79.493407) + (xy 161.8555 79.433573) + (xy 161.8555 74.156425) + (xy 161.875185 74.089386) + (xy 161.920481 74.047371) + (xy 161.978649 74.015893) + (xy 162.157046 73.87704) + (xy 162.211815 73.817545) + (xy 162.271699 73.781557) + (xy 162.341537 73.783657) + (xy 162.399153 73.82318) + (xy 162.419224 73.858196) + (xy 162.463046 73.975688) + (xy 162.463049 73.975693) + (xy 162.549209 74.090787) + (xy 162.549212 74.09079) + (xy 162.664306 74.17695) + (xy 162.664313 74.176954) + (xy 162.79902 74.227196) + (xy 162.799027 74.227198) + (xy 162.858555 74.233599) + (xy 162.858572 74.2336) + (xy 163.52 74.2336) + (xy 163.52 73.314297) + (xy 163.625408 73.362435) + (xy 163.733666 73.378) + (xy 163.806334 73.378) + (xy 163.914592 73.362435) + (xy 164.02 73.314297) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 147.311905 73.553753) + (xy 147.333804 73.579025) + (xy 147.419844 73.710719) + (xy 147.419849 73.710724) + (xy 147.41985 73.710727) + (xy 147.57295 73.877036) + (xy 147.572954 73.87704) + (xy 147.751351 74.015893) + (xy 147.809517 74.04737) + (xy 147.859107 74.096588) + (xy 147.8745 74.156425) + (xy 147.8745 79.433573) + (xy 147.854815 79.500612) + (xy 147.809519 79.542627) + (xy 147.751356 79.574103) + (xy 147.751353 79.574105) + (xy 147.572955 79.712959) + (xy 147.57295 79.712963) + (xy 147.41985 79.879272) + (xy 147.419842 79.879283) + (xy 147.333808 80.010968) + (xy 147.280662 80.056325) + (xy 147.21143 80.065748) + (xy 147.148095 80.036246) + (xy 147.126192 80.010968) + (xy 147.070709 79.926046) + (xy 147.040156 79.879281) + (xy 147.040153 79.879278) + (xy 147.040149 79.879272) + (xy 146.887049 79.712963) + (xy 146.887048 79.712962) + (xy 146.887046 79.71296) + (xy 146.708649 79.574107) + (xy 146.708647 79.574106) + (xy 146.708646 79.574105) + (xy 146.708643 79.574103) + (xy 146.650481 79.542627) + (xy 146.600891 79.493407) + (xy 146.5855 79.433573) + (xy 146.5855 74.156425) + (xy 146.605185 74.089386) + (xy 146.650481 74.047371) + (xy 146.708649 74.015893) + (xy 146.887046 73.87704) + (xy 147.040156 73.710719) + (xy 147.126193 73.579028) + (xy 147.179338 73.533675) + (xy 147.248569 73.524251) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 160.041905 73.553753) + (xy 160.063804 73.579025) + (xy 160.149844 73.710719) + (xy 160.149849 73.710724) + (xy 160.14985 73.710727) + (xy 160.30295 73.877036) + (xy 160.302954 73.87704) + (xy 160.481351 74.015893) + (xy 160.539517 74.04737) + (xy 160.589107 74.096588) + (xy 160.6045 74.156425) + (xy 160.6045 79.433573) + (xy 160.584815 79.500612) + (xy 160.539519 79.542627) + (xy 160.481356 79.574103) + (xy 160.481353 79.574105) + (xy 160.302955 79.712959) + (xy 160.30295 79.712963) + (xy 160.14985 79.879272) + (xy 160.149842 79.879283) + (xy 160.063808 80.010968) + (xy 160.010662 80.056325) + (xy 159.94143 80.065748) + (xy 159.878095 80.036246) + (xy 159.856192 80.010968) + (xy 159.800709 79.926046) + (xy 159.770156 79.879281) + (xy 159.770153 79.879278) + (xy 159.770149 79.879272) + (xy 159.617049 79.712963) + (xy 159.617048 79.712962) + (xy 159.617046 79.71296) + (xy 159.438649 79.574107) + (xy 159.438647 79.574106) + (xy 159.438646 79.574105) + (xy 159.438643 79.574103) + (xy 159.380481 79.542627) + (xy 159.330891 79.493407) + (xy 159.3155 79.433573) + (xy 159.3155 74.156425) + (xy 159.335185 74.089386) + (xy 159.380481 74.047371) + (xy 159.438649 74.015893) + (xy 159.617046 73.87704) + (xy 159.770156 73.710719) + (xy 159.856193 73.579028) + (xy 159.909338 73.533675) + (xy 159.978569 73.524251) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 174.826211 67.545185) + (xy 174.871966 67.597989) + (xy 174.874588 67.60417) + (xy 174.888607 67.639888) + (xy 175.016041 67.860612) + (xy 175.17495 68.059877) + (xy 175.361783 68.233232) + (xy 175.572366 68.376805) + (xy 175.572371 68.376807) + (xy 175.572372 68.376808) + (xy 175.572373 68.376809) + (xy 175.694328 68.435538) + (xy 175.801992 68.487387) + (xy 175.801993 68.487387) + (xy 175.801996 68.487389) + (xy 175.90836 68.520197) + (xy 175.945029 68.531509) + (xy 176.003288 68.57008) + (xy 176.031446 68.634024) + (xy 176.020562 68.703041) + (xy 175.974093 68.755218) + (xy 175.945029 68.768491) + (xy 175.801992 68.812612) + (xy 175.572373 68.92319) + (xy 175.572372 68.923191) + (xy 175.361782 69.066768) + (xy 175.174952 69.240121) + (xy 175.17495 69.240123) + (xy 175.016041 69.439388) + (xy 174.888608 69.660109) + (xy 174.795492 69.897362) + (xy 174.79549 69.897369) + (xy 174.738777 70.145845) + (xy 174.719732 70.399995) + (xy 174.719732 70.400004) + (xy 174.738777 70.654154) + (xy 174.762606 70.758555) + (xy 174.795492 70.902637) + (xy 174.840978 71.018535) + (xy 174.841164 71.019007) + (xy 174.847333 71.088604) + (xy 174.814895 71.150487) + (xy 174.813417 71.15199) + (xy 170.887181 75.078226) + (xy 170.825858 75.111711) + (xy 170.756166 75.106727) + (xy 170.700233 75.064855) + (xy 170.675816 74.999391) + (xy 170.6755 74.990545) + (xy 170.6755 70.746848) + (xy 170.695185 70.679809) + (xy 170.711819 70.659167) + (xy 173.809168 67.561819) + (xy 173.870491 67.528334) + (xy 173.896849 67.5255) + (xy 174.759172 67.5255) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 151.29 66.3836) + (xy 151.951428 66.3836) + (xy 151.951444 66.383599) + (xy 152.010972 66.377198) + (xy 152.010979 66.377196) + (xy 152.145686 66.326954) + (xy 152.145693 66.32695) + (xy 152.260787 66.24079) + (xy 152.26079 66.240787) + (xy 152.34695 66.125693) + (xy 152.346954 66.125686) + (xy 152.390775 66.008197) + (xy 152.432646 65.952263) + (xy 152.49811 65.927846) + (xy 152.566383 65.942698) + (xy 152.598186 65.967547) + (xy 152.651238 66.025176) + (xy 152.652954 66.02704) + (xy 152.652957 66.027042) + (xy 152.65296 66.027045) + (xy 152.781662 66.127218) + (xy 152.822475 66.183928) + (xy 152.8295 66.225071) + (xy 152.8295 71.664927) + (xy 152.809815 71.731966) + (xy 152.781663 71.76278) + (xy 152.652955 71.862958) + (xy 152.598186 71.922453) + (xy 152.538298 71.958443) + (xy 152.46846 71.956342) + (xy 152.410845 71.916817) + (xy 152.390775 71.881802) + (xy 152.346954 71.764313) + (xy 152.34695 71.764306) + (xy 152.26079 71.649212) + (xy 152.260787 71.649209) + (xy 152.145693 71.563049) + (xy 152.145686 71.563045) + (xy 152.010979 71.512803) + (xy 152.010972 71.512801) + (xy 151.951444 71.5064) + (xy 151.29 71.5064) + (xy 151.29 72.425702) + (xy 151.184592 72.377565) + (xy 151.076334 72.362) + (xy 151.003666 72.362) + (xy 150.895408 72.377565) + (xy 150.79 72.425702) + (xy 150.79 71.5064) + (xy 150.128555 71.5064) + (xy 150.069027 71.512801) + (xy 150.06902 71.512803) + (xy 149.934313 71.563045) + (xy 149.934306 71.563049) + (xy 149.819212 71.649209) + (xy 149.819209 71.649212) + (xy 149.733049 71.764306) + (xy 149.733046 71.764312) + (xy 149.689224 71.881803) + (xy 149.647352 71.937736) + (xy 149.581887 71.962153) + (xy 149.513615 71.947301) + (xy 149.481813 71.922452) + (xy 149.427049 71.862963) + (xy 149.427048 71.862962) + (xy 149.427046 71.86296) + (xy 149.248649 71.724107) + (xy 149.248647 71.724106) + (xy 149.248646 71.724105) + (xy 149.248643 71.724103) + (xy 149.190481 71.692627) + (xy 149.140891 71.643407) + (xy 149.1255 71.583573) + (xy 149.1255 66.306425) + (xy 149.145185 66.239386) + (xy 149.190481 66.197371) + (xy 149.248649 66.165893) + (xy 149.427046 66.02704) + (xy 149.481815 65.967545) + (xy 149.541699 65.931557) + (xy 149.611537 65.933657) + (xy 149.669153 65.97318) + (xy 149.689224 66.008196) + (xy 149.733046 66.125688) + (xy 149.733049 66.125693) + (xy 149.819209 66.240787) + (xy 149.819212 66.24079) + (xy 149.934306 66.32695) + (xy 149.934313 66.326954) + (xy 150.06902 66.377196) + (xy 150.069027 66.377198) + (xy 150.128555 66.383599) + (xy 150.128572 66.3836) + (xy 150.79 66.3836) + (xy 150.79 65.464297) + (xy 150.895408 65.512435) + (xy 151.003666 65.528) + (xy 151.076334 65.528) + (xy 151.184592 65.512435) + (xy 151.29 65.464297) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 164.02 66.3836) + (xy 164.681428 66.3836) + (xy 164.681444 66.383599) + (xy 164.740972 66.377198) + (xy 164.740979 66.377196) + (xy 164.875686 66.326954) + (xy 164.875693 66.32695) + (xy 164.990787 66.24079) + (xy 164.99079 66.240787) + (xy 165.07695 66.125693) + (xy 165.076954 66.125686) + (xy 165.120775 66.008197) + (xy 165.162646 65.952263) + (xy 165.22811 65.927846) + (xy 165.296383 65.942698) + (xy 165.328186 65.967547) + (xy 165.381238 66.025176) + (xy 165.382954 66.02704) + (xy 165.382957 66.027042) + (xy 165.38296 66.027045) + (xy 165.511662 66.127218) + (xy 165.552475 66.183928) + (xy 165.5595 66.225071) + (xy 165.5595 71.664927) + (xy 165.539815 71.731966) + (xy 165.511663 71.76278) + (xy 165.382955 71.862958) + (xy 165.328186 71.922453) + (xy 165.268298 71.958443) + (xy 165.19846 71.956342) + (xy 165.140845 71.916817) + (xy 165.120775 71.881802) + (xy 165.076954 71.764313) + (xy 165.07695 71.764306) + (xy 164.99079 71.649212) + (xy 164.990787 71.649209) + (xy 164.875693 71.563049) + (xy 164.875686 71.563045) + (xy 164.740979 71.512803) + (xy 164.740972 71.512801) + (xy 164.681444 71.5064) + (xy 164.02 71.5064) + (xy 164.02 72.425702) + (xy 163.914592 72.377565) + (xy 163.806334 72.362) + (xy 163.733666 72.362) + (xy 163.625408 72.377565) + (xy 163.52 72.425702) + (xy 163.52 71.5064) + (xy 162.858555 71.5064) + (xy 162.799027 71.512801) + (xy 162.79902 71.512803) + (xy 162.664313 71.563045) + (xy 162.664306 71.563049) + (xy 162.549212 71.649209) + (xy 162.549209 71.649212) + (xy 162.463049 71.764306) + (xy 162.463046 71.764312) + (xy 162.419224 71.881803) + (xy 162.377352 71.937736) + (xy 162.311887 71.962153) + (xy 162.243615 71.947301) + (xy 162.211813 71.922452) + (xy 162.157049 71.862963) + (xy 162.157048 71.862962) + (xy 162.157046 71.86296) + (xy 161.978649 71.724107) + (xy 161.978647 71.724106) + (xy 161.978646 71.724105) + (xy 161.978643 71.724103) + (xy 161.920481 71.692627) + (xy 161.870891 71.643407) + (xy 161.8555 71.583573) + (xy 161.8555 66.306425) + (xy 161.875185 66.239386) + (xy 161.920481 66.197371) + (xy 161.978649 66.165893) + (xy 162.157046 66.02704) + (xy 162.211815 65.967545) + (xy 162.271699 65.931557) + (xy 162.341537 65.933657) + (xy 162.399153 65.97318) + (xy 162.419224 66.008196) + (xy 162.463046 66.125688) + (xy 162.463049 66.125693) + (xy 162.549209 66.240787) + (xy 162.549212 66.24079) + (xy 162.664306 66.32695) + (xy 162.664313 66.326954) + (xy 162.79902 66.377196) + (xy 162.799027 66.377198) + (xy 162.858555 66.383599) + (xy 162.858572 66.3836) + (xy 163.52 66.3836) + (xy 163.52 65.464297) + (xy 163.625408 65.512435) + (xy 163.733666 65.528) + (xy 163.806334 65.528) + (xy 163.914592 65.512435) + (xy 164.02 65.464297) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 147.311905 65.703753) + (xy 147.333804 65.729025) + (xy 147.419844 65.860719) + (xy 147.419849 65.860724) + (xy 147.41985 65.860727) + (xy 147.571238 66.025176) + (xy 147.572954 66.02704) + (xy 147.751351 66.165893) + (xy 147.809517 66.19737) + (xy 147.859107 66.246588) + (xy 147.8745 66.306425) + (xy 147.8745 71.583573) + (xy 147.854815 71.650612) + (xy 147.809519 71.692627) + (xy 147.751356 71.724103) + (xy 147.751353 71.724105) + (xy 147.572955 71.862959) + (xy 147.57295 71.862963) + (xy 147.41985 72.029272) + (xy 147.419842 72.029283) + (xy 147.333808 72.160968) + (xy 147.280662 72.206325) + (xy 147.21143 72.215748) + (xy 147.148095 72.186246) + (xy 147.126192 72.160968) + (xy 147.066811 72.07008) + (xy 147.040156 72.029281) + (xy 147.040153 72.029278) + (xy 147.040149 72.029272) + (xy 146.887049 71.862963) + (xy 146.887048 71.862962) + (xy 146.887046 71.86296) + (xy 146.708649 71.724107) + (xy 146.708647 71.724106) + (xy 146.708646 71.724105) + (xy 146.708643 71.724103) + (xy 146.650481 71.692627) + (xy 146.600891 71.643407) + (xy 146.5855 71.583573) + (xy 146.5855 66.306425) + (xy 146.605185 66.239386) + (xy 146.650481 66.197371) + (xy 146.708649 66.165893) + (xy 146.887046 66.02704) + (xy 147.040156 65.860719) + (xy 147.126193 65.729028) + (xy 147.179338 65.683675) + (xy 147.248569 65.674251) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 160.041905 65.703753) + (xy 160.063804 65.729025) + (xy 160.149844 65.860719) + (xy 160.149849 65.860724) + (xy 160.14985 65.860727) + (xy 160.301238 66.025176) + (xy 160.302954 66.02704) + (xy 160.481351 66.165893) + (xy 160.539517 66.19737) + (xy 160.589107 66.246588) + (xy 160.6045 66.306425) + (xy 160.6045 71.583573) + (xy 160.584815 71.650612) + (xy 160.539519 71.692627) + (xy 160.481356 71.724103) + (xy 160.481353 71.724105) + (xy 160.302955 71.862959) + (xy 160.30295 71.862963) + (xy 160.14985 72.029272) + (xy 160.149842 72.029283) + (xy 160.063808 72.160968) + (xy 160.010662 72.206325) + (xy 159.94143 72.215748) + (xy 159.878095 72.186246) + (xy 159.856192 72.160968) + (xy 159.796811 72.07008) + (xy 159.770156 72.029281) + (xy 159.770153 72.029278) + (xy 159.770149 72.029272) + (xy 159.617049 71.862963) + (xy 159.617048 71.862962) + (xy 159.617046 71.86296) + (xy 159.438649 71.724107) + (xy 159.438647 71.724106) + (xy 159.438646 71.724105) + (xy 159.438643 71.724103) + (xy 159.380481 71.692627) + (xy 159.330891 71.643407) + (xy 159.3155 71.583573) + (xy 159.3155 66.306425) + (xy 159.335185 66.239386) + (xy 159.380481 66.197371) + (xy 159.438649 66.165893) + (xy 159.617046 66.02704) + (xy 159.770156 65.860719) + (xy 159.856193 65.729028) + (xy 159.909338 65.683675) + (xy 159.978569 65.674251) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 152.809817 62.970185) + (xy 152.855572 63.022989) + (xy 152.865516 63.092147) + (xy 152.863435 63.103097) + (xy 152.8295 63.246277) + (xy 152.8295 63.262655) + (xy 152.827835 63.278945) + (xy 152.827895 63.278951) + (xy 152.827265 63.28614) + (xy 152.829474 63.36203) + (xy 152.8295 63.363833) + (xy 152.8295 63.814927) + (xy 152.809815 63.881966) + (xy 152.781663 63.91278) + (xy 152.652955 64.012958) + (xy 152.598186 64.072453) + (xy 152.538298 64.108443) + (xy 152.46846 64.106342) + (xy 152.410845 64.066817) + (xy 152.390775 64.031802) + (xy 152.346954 63.914313) + (xy 152.34695 63.914306) + (xy 152.26079 63.799212) + (xy 152.260787 63.799209) + (xy 152.145693 63.713049) + (xy 152.145686 63.713045) + (xy 152.010979 63.662803) + (xy 152.010972 63.662801) + (xy 151.951444 63.6564) + (xy 151.29 63.6564) + (xy 151.29 64.575702) + (xy 151.184592 64.527565) + (xy 151.076334 64.512) + (xy 151.003666 64.512) + (xy 150.895408 64.527565) + (xy 150.79 64.575702) + (xy 150.79 63.6564) + (xy 150.128555 63.6564) + (xy 150.069027 63.662801) + (xy 150.06902 63.662803) + (xy 149.934313 63.713045) + (xy 149.934306 63.713049) + (xy 149.819212 63.799209) + (xy 149.819209 63.799212) + (xy 149.733049 63.914306) + (xy 149.733046 63.914312) + (xy 149.689224 64.031803) + (xy 149.647352 64.087736) + (xy 149.581887 64.112153) + (xy 149.513615 64.097301) + (xy 149.481813 64.072452) + (xy 149.427049 64.012963) + (xy 149.427048 64.012962) + (xy 149.427046 64.01296) + (xy 149.248649 63.874107) + (xy 149.185479 63.839921) + (xy 149.049832 63.766512) + (xy 149.049827 63.76651) + (xy 148.836017 63.693109) + (xy 148.654388 63.662801) + (xy 148.613033 63.6559) + (xy 148.386967 63.6559) + (xy 148.345612 63.662801) + (xy 148.163982 63.693109) + (xy 147.950172 63.76651) + (xy 147.950167 63.766512) + (xy 147.751352 63.874106) + (xy 147.572955 64.012959) + (xy 147.57295 64.012963) + (xy 147.41985 64.179272) + (xy 147.419842 64.179283) + (xy 147.333808 64.310968) + (xy 147.280662 64.356325) + (xy 147.21143 64.365748) + (xy 147.148095 64.336246) + (xy 147.126192 64.310968) + (xy 147.040157 64.179283) + (xy 147.040149 64.179272) + (xy 146.887049 64.012963) + (xy 146.887048 64.012962) + (xy 146.887046 64.01296) + (xy 146.708649 63.874107) + (xy 146.645479 63.839921) + (xy 146.509832 63.766512) + (xy 146.509827 63.76651) + (xy 146.296017 63.693109) + (xy 146.114388 63.662801) + (xy 146.073033 63.6559) + (xy 145.846967 63.6559) + (xy 145.698826 63.68062) + (xy 145.629461 63.672238) + (xy 145.575639 63.627685) + (xy 145.554449 63.561106) + (xy 145.572617 63.49364) + (xy 145.590736 63.47063) + (xy 145.6175 63.443867) + (xy 146.074547 62.986819) + (xy 146.135871 62.953334) + (xy 146.162229 62.9505) + (xy 152.742778 62.9505) ) ) ) + (group "" (id c65cef92-0908-472a-bac4-14475a8af1cf) + (members + 0870fd2b-7d78-4d34-ab65-e5996bd75b2c + 134d5239-39aa-4972-934c-2f8d2885b137 + 34d0c624-3ae2-4fae-b155-b5aec7b1893d + 43c34fc8-0a5a-4c68-91a4-001d94a80186 + 4af7cc07-30f8-4d3b-9710-4d98bafc5f11 + 5413e94c-31de-41e2-a0fe-5a5bc69fae51 + 692cb429-4dfb-4f9b-a0c8-eec1a0367bd2 + 7c3e6923-87e6-4bae-8c5b-d9798e1fd438 + a3bf52cb-1de1-43be-acde-35e1f0b92f3d + badb959f-7848-419f-9ae2-e186378bf2b6 + c860844d-e23c-4888-909a-d2a725ce1348 + ) + ) + (group "" (id d36dbf1d-8ca7-409e-964e-80a8066eb67d) + (members + 1e121dde-22b6-4d8c-8999-e590e6a6f045 + 82ba54e0-d9a3-4eb8-b16f-836390da95cf + c0e2f77e-fd7d-41d2-8805-719f891a55dd + ) + ) + (group "" (id e8911415-7e3a-4688-ab50-041bcc613efb) + (members + 53de20ba-e98d-4d74-9eed-8daebddb3441 + a4df2bc3-cecc-4f97-856b-65a32de38d37 + bb3e3067-836f-4a57-bd41-9b1d3df97f58 + ) + ) + (group "" (id af59c988-6ea5-4d6d-ad06-d807a645292d) + (members + 2054ae83-2573-4d5d-9a5e-70a97f1739b1 + 31c6e43d-e86e-489b-b748-a84ff067c116 + 4c6740f6-5dac-49fc-8459-32ab5f2d0be4 + 96c91110-ca24-4cda-9193-9f7a1f8a10ac + cd26bbb2-4245-424c-9648-3635474d91e9 + df9e7fa2-7250-4e52-bf2a-4d1a25330398 + e8f34ce8-7e89-4e2e-9b82-df4b9cc79707 + ) + ) ) diff --git a/PCB/megaPCB/megaPCB.kicad_prl b/PCB/megaPCB/megaPCB.kicad_prl index 354c2ab..aef187c 100644 --- a/PCB/megaPCB/megaPCB.kicad_prl +++ b/PCB/megaPCB/megaPCB.kicad_prl @@ -1,6 +1,6 @@ { "board": { - "active_layer": 37, + "active_layer": 31, "active_layer_preset": "", "auto_track_width": true, "hidden_netclasses": [], @@ -15,17 +15,17 @@ "zones": 0.6 }, "selection_filter": { - "dimensions": false, + "dimensions": true, "footprints": true, - "graphics": false, - "keepouts": false, + "graphics": true, + "keepouts": true, "lockedItems": false, - "otherItems": false, - "pads": false, - "text": false, - "tracks": false, - "vias": false, - "zones": false + "otherItems": true, + "pads": true, + "text": true, + "tracks": true, + "vias": true, + "zones": true }, "visible_items": [ 0, diff --git a/PCB/megaPCB/megaPCB.kicad_pro b/PCB/megaPCB/megaPCB.kicad_pro index de369a6..82d02f6 100644 --- a/PCB/megaPCB/megaPCB.kicad_pro +++ b/PCB/megaPCB/megaPCB.kicad_pro @@ -439,7 +439,7 @@ "last_paths": { "gencad": "", "idf": "", - "netlist": "", + "netlist": "./", "specctra_dsn": "", "step": "", "vrml": "" diff --git a/PCB/megaPCB/megaPCB.kicad_sch b/PCB/megaPCB/megaPCB.kicad_sch index c4329a9..b16201c 100644 --- a/PCB/megaPCB/megaPCB.kicad_sch +++ b/PCB/megaPCB/megaPCB.kicad_sch @@ -2460,9 +2460,6 @@ (junction (at 106.68 30.48) (diameter 0) (color 0 0 0 0) (uuid 98679850-3bcd-4a90-b6f2-f514d96f26ae) ) - (junction (at 93.98 166.37) (diameter 0) (color 0 0 0 0) - (uuid a1141d8b-c74c-4bd0-afbd-2c60b4677880) - ) (junction (at 142.24 29.21) (diameter 0) (color 0 0 0 0) (uuid b9d912cd-5d5c-407d-bacc-4d56e313a0b3) ) @@ -2510,10 +2507,6 @@ (stroke (width 0) (type default)) (uuid 044cbd82-0414-4cd2-abde-8a00550c2e1c) ) - (wire (pts (xy 93.98 161.29) (xy 93.98 166.37)) - (stroke (width 0) (type default)) - (uuid 045ad5b3-cb4e-4e6f-84b8-306d30cee2db) - ) (wire (pts (xy 93.98 83.82) (xy 97.79 83.82)) (stroke (width 0) (type default)) (uuid 05b1eb3d-14b8-46e5-b71a-2991f910cb5b) @@ -2602,10 +2595,6 @@ (stroke (width 0) (type default)) (uuid 1d41bd80-983b-4aa4-bff3-d5f4d799d126) ) - (wire (pts (xy 93.98 166.37) (xy 99.06 166.37)) - (stroke (width 0) (type default)) - (uuid 1d43dabf-e71d-4a5a-949a-8baac1002898) - ) (wire (pts (xy 203.2 115.57) (xy 210.82 115.57)) (stroke (width 0) (type default)) (uuid 1f614d15-c7f7-4b26-af8f-a2b034a85a69) @@ -2742,10 +2731,6 @@ (stroke (width 0) (type default)) (uuid 4213a033-312f-4925-adac-625b0d164905) ) - (wire (pts (xy 99.06 161.29) (xy 93.98 161.29)) - (stroke (width 0) (type default)) - (uuid 42359107-d39d-42e1-ae31-2d0f9712903a) - ) (wire (pts (xy 125.73 39.37) (xy 129.54 39.37)) (stroke (width 0) (type default)) (uuid 4350c89a-2637-4214-a95f-5e19cb88f71b) @@ -3382,10 +3367,6 @@ (stroke (width 0) (type default)) (uuid e9f1e099-6b6a-43a9-b6a3-f0dc20f4ccd4) ) - (wire (pts (xy 99.06 166.37) (xy 99.06 163.83)) - (stroke (width 0) (type default)) - (uuid eaf47c35-ef99-4801-ba01-0c5e1217de72) - ) (wire (pts (xy 156.21 34.29) (xy 158.75 34.29)) (stroke (width 0) (type default)) (uuid eb1ec8a7-4b78-412b-80e0-7746b367457f) @@ -4657,31 +4638,6 @@ ) ) - (symbol (lib_id "power:GND") (at 93.98 166.37 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) - (uuid 0bb826e6-8792-4246-bee8-1d5a2b6c1db9) - (property "Reference" "#PWR018" (at 93.98 172.72 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (at 93.98 171.45 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (at 93.98 166.37 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (at 93.98 166.37 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 99903bd5-8160-4fb5-b5a1-bb0fe39fb99b)) - (instances - (project "megaPCB" - (path "/6969f8a3-205d-401c-ae37-2e26183a6afa" - (reference "#PWR018") (unit 1) - ) - ) - ) - ) - (symbol (lib_id "Connector:Conn_01x04_Pin") (at 173.99 54.61 0) (unit 1) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) (uuid 114114d0-2df9-40ab-aa29-b92059ff0cc9) @@ -4751,7 +4707,7 @@ (property "Value" "R" (at 133.35 29.21 90) (effects (font (size 1.27 1.27))) ) - (property "Footprint" "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (at 133.35 30.988 90) + (property "Footprint" "ScitechKorea:R250" (at 133.35 30.988 90) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (at 133.35 29.21 0) @@ -4777,7 +4733,7 @@ (property "Value" "R" (at 162.56 34.29 90) (effects (font (size 1.27 1.27))) ) - (property "Footprint" "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (at 162.56 36.068 90) + (property "Footprint" "ScitechKorea:R250" (at 162.56 36.068 90) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (at 162.56 34.29 0) @@ -4803,7 +4759,7 @@ (property "Value" "R" (at 133.35 46.99 90) (effects (font (size 1.27 1.27))) ) - (property "Footprint" "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (at 133.35 48.768 90) + (property "Footprint" "ScitechKorea:R250" (at 133.35 48.768 90) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (at 133.35 46.99 0) @@ -4882,7 +4838,7 @@ (property "Value" "R" (at 162.56 29.21 90) (effects (font (size 1.27 1.27))) ) - (property "Footprint" "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (at 162.56 30.988 90) + (property "Footprint" "ScitechKorea:R250" (at 162.56 30.988 90) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (at 162.56 29.21 0) @@ -4908,7 +4864,7 @@ (property "Value" "R" (at 133.35 36.83 90) (effects (font (size 1.27 1.27))) ) - (property "Footprint" "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (at 133.35 38.608 90) + (property "Footprint" "ScitechKorea:R250" (at 133.35 38.608 90) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (at 133.35 36.83 0) @@ -4987,7 +4943,7 @@ (property "Value" "Arduino_Mega2560_Shield" (at 60.96 19.05 0) (effects (font (size 1.524 1.524))) ) - (property "Footprint" "ScitechKorea:mega_socket_no_center" (at 60.96 6.35 0) + (property "Footprint" "ScitechKorea:mega_socket_simplest" (at 60.96 6.35 0) (effects (font (size 1.524 1.524)) hide) ) (property "Datasheet" "https://docs.arduino.cc/hardware/mega-2560" (at 60.96 10.16 0) @@ -5187,7 +5143,7 @@ (property "Value" "R" (at 133.35 41.91 90) (effects (font (size 1.27 1.27))) ) - (property "Footprint" "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (at 133.35 43.688 90) + (property "Footprint" "ScitechKorea:R250" (at 133.35 43.688 90) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (at 133.35 41.91 0) @@ -5264,7 +5220,7 @@ (property "Value" "R" (at 133.35 44.45 90) (effects (font (size 1.27 1.27))) ) - (property "Footprint" "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (at 133.35 46.228 90) + (property "Footprint" "ScitechKorea:R250" (at 133.35 46.228 90) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (at 133.35 44.45 0) @@ -5315,7 +5271,7 @@ (property "Value" "R" (at 162.56 36.83 90) (effects (font (size 1.27 1.27))) ) - (property "Footprint" "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (at 162.56 38.608 90) + (property "Footprint" "ScitechKorea:R250" (at 162.56 38.608 90) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (at 162.56 36.83 0) @@ -5444,7 +5400,7 @@ (property "Value" "R" (at 133.35 39.37 90) (effects (font (size 1.27 1.27))) ) - (property "Footprint" "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (at 133.35 41.148 90) + (property "Footprint" "ScitechKorea:R250" (at 133.35 41.148 90) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (at 133.35 39.37 0) @@ -5502,7 +5458,7 @@ (property "Value" "R" (at 133.35 31.75 90) (effects (font (size 1.27 1.27))) ) - (property "Footprint" "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (at 133.35 33.528 90) + (property "Footprint" "ScitechKorea:R250" (at 133.35 33.528 90) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (at 133.35 31.75 0) @@ -5544,32 +5500,6 @@ ) ) - (symbol (lib_id "Connector:Screw_Terminal_01x02") (at 104.14 161.29 0) (unit 1) - (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) - (uuid bf432b4f-8aab-4257-96d7-f2fb4ce78f5d) - (property "Reference" "GND_0" (at 106.68 161.29 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "Screw_Terminal_01x02" (at 106.68 163.83 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "ScitechKorea:Terminal_02" (at 104.14 161.29 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (at 104.14 161.29 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 0033b868-0483-4804-8a0e-0c2162e34fce)) - (pin "2" (uuid 5ab408ed-05b0-4862-98a5-6df5bfd6b6a5)) - (instances - (project "megaPCB" - (path "/6969f8a3-205d-401c-ae37-2e26183a6afa" - (reference "GND_0") (unit 1) - ) - ) - ) - ) - (symbol (lib_id "Connector:Conn_01x04_Pin") (at 250.19 59.69 270) (unit 1) (in_bom yes) (on_board yes) (dnp no) (fields_autoplaced) (uuid c429add8-fa46-4489-84eb-acde574b5075) @@ -5632,7 +5562,7 @@ (property "Value" "R" (at 133.35 34.29 90) (effects (font (size 1.27 1.27))) ) - (property "Footprint" "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (at 133.35 36.068 90) + (property "Footprint" "ScitechKorea:R250" (at 133.35 36.068 90) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (at 133.35 34.29 0) @@ -5658,7 +5588,7 @@ (property "Value" "R" (at 162.56 24.13 90) (effects (font (size 1.27 1.27))) ) - (property "Footprint" "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (at 162.56 25.908 90) + (property "Footprint" "ScitechKorea:R250" (at 162.56 25.908 90) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (at 162.56 24.13 0) @@ -5737,7 +5667,7 @@ (property "Value" "R" (at 162.56 26.67 90) (effects (font (size 1.27 1.27))) ) - (property "Footprint" "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (at 162.56 28.448 90) + (property "Footprint" "ScitechKorea:R250" (at 162.56 28.448 90) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (at 162.56 26.67 0) @@ -5850,7 +5780,7 @@ (property "Value" "R" (at 162.56 31.75 90) (effects (font (size 1.27 1.27))) ) - (property "Footprint" "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (at 162.56 33.528 90) + (property "Footprint" "ScitechKorea:R250" (at 162.56 33.528 90) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (at 162.56 31.75 0) @@ -5951,7 +5881,7 @@ (property "Value" "R" (at 133.35 26.67 90) (effects (font (size 1.27 1.27))) ) - (property "Footprint" "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (at 133.35 28.448 90) + (property "Footprint" "ScitechKorea:R250" (at 133.35 28.448 90) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (at 133.35 26.67 0) @@ -6002,7 +5932,7 @@ (property "Value" "R" (at 133.35 24.13 90) (effects (font (size 1.27 1.27))) ) - (property "Footprint" "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (at 133.35 25.908 90) + (property "Footprint" "ScitechKorea:R250" (at 133.35 25.908 90) (effects (font (size 1.27 1.27)) hide) ) (property "Datasheet" "~" (at 133.35 24.13 0) diff --git a/test_ENC28J60/test_ENC28J60.ino b/test_ENC28J60/test_ENC28J60.ino new file mode 100644 index 0000000..196a45f --- /dev/null +++ b/test_ENC28J60/test_ENC28J60.ino @@ -0,0 +1,80 @@ +/* + * Modifed from UIPEthernet EchoServer example. + * + * UIPEthernet is a TCP/IP stack that can be used with a enc28j60 based + * Ethernet-shield. + * + */ +#define DEBUG 1 +#define MACADDRESS 0x00,0x01,0x02,0x03,0x04,0x05 +#define MYIPADDR 192,168,20,177 +#define MYIPMASK 255,255,255,0 +#define MYDNS 192,168,20,1 +#define MYGW 192,168,20,1 +#define LISTENPORT 5025 +#define UARTBAUD 115200 + +#include +#include +#include +#include "utility/logging.h" + +uint8_t mac[6] = {MACADDRESS}; +uint8_t myIP[4] = {MYIPADDR}; +uint8_t myMASK[4] = {MYIPMASK}; +uint8_t myDNS[4] = {MYDNS}; +uint8_t myGW[4] = {MYGW}; + +EthernetClient client; +EthernetServer server = EthernetServer(LISTENPORT); + +void setup() { + + Serial.begin(9600); + Ethernet.begin(mac,myIP,myDNS,myGW,myMASK); + // start listening for clients + server.begin(); +} + +void loop() { + size_t size; + + String message = ""; + client = server.available(); + + if (client){ + + Serial.println("Client Connected!!!"); + while(client.connected()){ + // Recive Command + if((size = client.available()) > 0){ + uint8_t* msg = (uint8_t*)malloc(size); + + size = client.read(msg,size); + for(int i = 0 ; i < size ; i++){ + message += (char)msg[i]; + } + if(size > 2){ + if((msg[size-1] == '\n') && (msg[size-2] == '\r')){ + #if DEBUG + Serial.print(size); + Serial.println(" >> " + message); + #endif + + //cmd = demuxCMD(message, &cmdData); // for IFB + client.print(message); + message = ""; + } + } + free(msg); + + } + + // Action by Command + //if(cmd) + + } + Serial.println("Client Disconnected..."); + } +} +